]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
*** empty log message ***
[gnu-emacs] / lisp / ChangeLog
1 2001-11-30 Stefan Monnier <monnier@cs.yale.edu>
2
3 * man.el (Man-build-section-alist): Remove last Man-match-substring.
4
5 2001-11-30 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6
7 * textmodes/paragraphs.el (mark-paragraph): Clarify doc.
8 Clarify error message. Suggestion from Richard Stallman.
9
10 2001-11-29 Kai Grossjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
11
12 * textmodes/paragraphs.el (mark-paragraph): Allow prefix arg.
13
14 2001-11-30 Andre Spiegel <spiegel@gnu.org>
15
16 * vc-cvs.el (vc-cvs-parse-status): Store file state in property,
17 don't just return it.
18
19 2001-11-30 Eli Zaretskii <eliz@is.elta.co.il>
20
21 * menu-bar.el (menu-bar-read-lispref, menu-bar-read-lispintro)
22 (menu-bar-read-emacs-man, search-emacs-glossary)
23 (emacs-index-search, elisp-index-search): New functions.
24 (apropso-documentation, apropos, apropos-value, apropos-variable)
25 (apropos-commands): Modify menu item names and help text.
26 (elisp-index-search, emacs-index-search, emacs-glossary):
27 New menu items.
28 (menu-bar-manuals-menu): Move the Ordering Manuals item to a
29 submenu.
30 (info-elisp, info-elintro): New menu items.
31 (apropos): Modify the menu item name.
32
33 2001-11-30 Stefan Monnier <monnier@cs.yale.edu>
34
35 * emacs-lisp/lisp-mode.el (read-if): Add lisp-indent-function prop.
36
37 * textmodes/outline.el (outline-promote, outline-demote): Typo.
38
39 * man.el (man-follow-mouse): New function.
40 (Man-mode-map): Bind mouse-2 to it.
41 (Man-match-substring): Remove. Replace with `match-string'.
42 (man): Use the `default-value' argument to `read-string'.
43 (Man-fontify-manpage): Add mouse-face to cross references.
44
45 * emacs-lisp/cl-macs.el (shiftf): Fix more. Simplify.
46
47 2001-11-29 Stefan Monnier <monnier@cs.yale.edu>
48
49 * emacs-lisp/crm.el (completing-read-multiple): Better preserve
50 the value of require-match in minibuffer-completion-confirm.
51 Use crm-local-completion-map.
52
53 * emacs-lisp/cl-macs.el (shiftf): Fix the fast case so
54 (let ((a 1) (b 2)) (shiftf a b (cons a b)) b) returns (1 . 2).
55 (cl-make-type-test): Use char-valid-p for `character'.
56
57 * info.el (Info-complete-next-re, Info-complete-cache): New vars.
58 (Info-complete-menu-item): Rewrite. Add the ability to search
59 several sequential nodes. Add a simple caching mechanism.
60 (Info-goto-index): New function extracted from Info-index.
61 (Info-index): Use it. Add completion to the interactive spec.
62 (Info-menu-update): Simplify call to `Info-complete-menu-item'.
63
64 2001-11-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
65
66 * COPYING: Removed.
67
68 2001-11-29 Dave Love <fx@gnu.org>
69
70 * progmodes/fortran.el: Fontify rewind, backspace. Doc fixes.
71 (fortran-window-create, fortran-window-create-momentarily):
72 Rewrite, moving error condition.
73 (fortran-beginning-do, fortran-beginning-if): Fix regexps.
74 (fortran-mode-syntax-table): Revert last change.
75
76 * international/mule.el: Doc fixes.
77 (map-charset-chars): New function.
78 (register-char-codings): Use it to cope with generic chars in
79 safe-chars.
80
81 2001-11-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
82
83 * play/blackbox.el (blackbox-mode, blackbox): Doc fix.
84
85 * play/cookie1.el (cookie, cookie-insert, shuffle-vector): Doc fixes.
86
87 * play/studly.el (studlify-word, studlify-region)
88 (studlify-buffer): Fix doc-string.
89 (studlify-buffer): Add autoload cookie.
90
91 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
92
93 * textmodes/outline.el (outline-up-heading): Add `invisible-ok' arg.
94 (outline-up-heading-all): Remove.
95 (hide-sublevels): Move to end-of-heading before calling flag-region.
96 (outline-copy-overlay, outline-discard-overlays): Remove.
97 (outline-flag-region): Use `remove-overlays'.
98 Don't move to end-of-heading.
99 (outline-next-visible-heading, outline-back-to-heading)
100 (outline-on-heading-p): Use outline-invisible-p.
101 (outline-font-lock-level): Use outline-up-heading's new arg.
102 (outline-minor-mode): Simplify.
103 (outline-map-tree, outline-reveal-toggle-invisible): New funs.
104 (outline): Put a `reveal-toggle-invisible' property.
105 (outline-level-heading): New var.
106 (outline-insert-heading, outline-promote, outline-demote)
107 (outline-toggle-children): New commands.
108
109 * progmodes/hideif.el (hif-end-of-line): New function.
110 (hide-ifdef-mode): Set line-move-ignore-invisible.
111 (hide-ifdef-region-internal): New function.
112 (hide-ifdef-region): Use it.
113 (hif-defined): Return an integer.
114 (hif-infix-to-prefix): Remove.
115 (hif-tokenize): Parse from the buffer rather than from a string.
116 Correctly tokenize integers. Use forward-comment.
117 (hif-expr): Use hif-or.
118 (hif-term): Use hif-and.
119 (hif-factor): Use hif-not. Handle numbers properly.
120 Don't require parenthesis around `defined's argument.
121 (hif-and, hif-or, hif-not): New funs.
122 (hif-canonicalize): Pass a region to hif-tokenize. Use hif-not.
123 (hif-hide-line): Don't hide the \n before the line.
124 (hif-possibly-hide): Correctly handle numeric evaluation results.
125
126 * progmodes/make-mode.el: Use line-(end|beginning)-position.
127 (makefile-mode): Set indent-line-function.
128 (makefile-browser-insert-continuation): Use with-current-buffer.
129 (makefile-beginning-of-line-point, makefile-end-of-line-point): Remove.
130
131 2001-11-28 Karl Fogel <kfogel@red-bean.com>
132
133 * isearch.el (isearch-yank-internal): New helper function.
134 (isearch-yank-char): New function.
135 (isearch-yank-word, isearch-yank-line): Rewrite to use
136 isearch-yank-internal.
137
138 2001-11-28 Eli Zaretskii <eliz@is.elta.co.il>
139
140 * mouse.el (mouse-set-font): Make it a no-op if multiple fonts
141 aren't supported. Print a message to that effect if invoked.
142
143 2001-11-27 Stephen Eglen <stephen@gnu.org>
144
145 * locate.el (locate): Put point at first matching file rather
146 than top of buffer.
147
148 2001-11-27 Stefan Monnier <monnier@cs.yale.edu>
149
150 * reveal.el: New file.
151
152 * progmodes/hideif.el: Misc cleanup.
153 (hide-ifdef-mode-submap): Put the def in the defvar.
154 Use substitute-key-definition.
155 (hide-ifdef-mode): Use define-minor-mode.
156 (hif-outline-flag-region): Remove.
157 (hif-show-all): Define in terms of hif-show-ifdef-region.
158 (hif-after-revert-function): Rename from hif-before-revert-function.
159 (hide-ifdef-region, hif-show-ifdef-region): Use overlays.
160 (hif-tokenize): Use with-syntax-table.
161 (hif-make-range): Use `else' also for `else-p'.
162 (hif-range-else-p): Remove.
163 (hif-find-range): Simplify.
164 (hif-hide-line): Don't bother preserving buffer-modified-p.
165 (hide-ifdefs, show-ifdefs, hide-ifdef-block, show-ifdef-block):
166 Don't use selective-display and inhibit-read-only.
167
168 * subr.el (copy-overlay, remove-overlays): New funs.
169
170 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix off-by-two error.
171
172 2001-11-27 Sam Steingold <sds@gnu.org>
173
174 * ansi-color.el, bookmark.el, dired.el, emerge.el, fast-lock.el
175 * lazy-lock.el, mouse-sel.el, mail/feedmail.el
176 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el, emacs-lisp/ewoc.el
177 * obsolete/c-mode.el, obsolete/cplus-md.el
178 * progmodes/dcl-mode.el, progmodes/idlw-shell.el, progmodes/idlwave.el
179 * term/sun-mouse.el, textmodes/artist.el:
180 Converted backquote to the new style.
181 * mouse.el, reposition.el: Likewise (in comments).
182 * expand.el: Likewise (in a string).
183
184 2001-11-27 Richard M. Stallman <rms@gnu.org>
185
186 * cus-edit.el (custom-load-symbol): Don't always load locate-library.
187
188 2001-11-26 Richard M. Stallman <rms@gnu.org>
189
190 * wid-edit.el (widget-toggle-value-create): On graphic terminal,
191 if :on-glyph or :off-glyph is a list, eval it and store it back.
192 (checkbox): Quote the values for :on-glyph and :off-glyph.
193
194 * cus-start.el (recursive-load-depth-limit): Delete item.
195
196 2001-11-26 Stefan Monnier <monnier@cs.yale.edu>
197
198 * help-fns.el (describe-categories, help-describe-category-set): New.
199 describe-categories moved here from src/category.c.
200
201 2001-11-26 Sam Steingold <sds@gnu.org>
202
203 * progmodes/cc-mode.el (c-submit-bug-report): Make sure that the
204 arguments to `insert' are strings.
205
206 2001-11-26 Richard M. Stallman <rms@gnu.org>
207
208 * startup.el (command-line-1): Call kill-buffer only in non-fancy case.
209
210 2001-11-26 Eli Zaretskii <eliz@is.elta.co.il>
211
212 * loaddefs.el: Regenerated.
213
214 * international/mule-diag.el: Require help-fns instead of
215 help-funs.
216
217 * help-fns.el: Renamed from help-funs.el.
218
219 * startup.el (command-line-1): Don't try to call process-list if
220 it is not fboundp.
221
222 2001-11-26 Sam Steingold <sds@gnu.org>
223
224 * frame.el (show-trailing-whitespace): Remove :set argument (the
225 value was essentially identical to the defalt).
226
227 2001-11-26 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
228
229 * hexl.el (hexl-mode, hexl-follow-ascii): Remove make-local-hook.
230
231 * icomplete.el (icomplete-minibuffer-setup): Likewise.
232
233 * hilit-chg.el (hilit-chg-set): Likewise.
234
235 * speedbar.el (speedbar-mode): Likewise.
236
237 * calendar/calendar.el (calendar-mode): Likewise.
238
239 * play/yow.el (psychoanalyze-pinhead): Use insert instead of
240 insert-string.
241
242 * play/gamegrid.el (gamegrid-init-buffer): Likewise.
243
244 * term/bg-mouse.el (bg-insert-moused-sexp): Likewise.
245
246 * term/sun-mouse.el (sun-yank-selection): Likewise.
247
248 * textmodes/bib-mode.el (return-key-bib): Likewise.
249
250 * calendar/appt.el (appt-disp-window): Likewise.
251
252 * calendar/diary-lib.el (list-diary-entries): Likewise.
253
254 * array.el (array-reconfigure-rows): Likewise.
255
256 * filecache.el (file-cache-minibuffer-complete): Likewise.
257
258 * obsolete/cplus-md.el (fill-c++-comment): Likewise.
259
260 * strokes.el (strokes-prompt-user-save-strokes): Likewise.
261
262 * allout.el (outline-version, outline-open-topic)
263 (outline-rebullet-heading, outline-insert-listified)
264 (outline-latex-verbatim-quote-curr-line)
265 (outline-latexify-one-item, outlineify-sticky): Likewise.
266
267 * vc.el (vc-next-action-on-file): Likewise.
268 (vc-dired-mode): Remove make-local-hook.
269
270 2001-11-26 Andre Spiegel <spiegel@gnu.org>
271
272 * vc.el (vc-find-version): New function.
273 (vc-version-other-window): Redefined in terms of the above.
274
275 * log-view.el (log-view-find-version): New function.
276 (log-view-mode-map): Bind it to `f'.
277
278 2001-11-26 Gerd Moellmann <gerd@gnu.org>
279
280 * language/devan-util.el (dev-char-glyph): Escape `"' in
281 string literals.
282 (dev-glyph-glyph, dev-glyph-glyph-2)
283 (devanagari-compose-syllable-region): Likewise.
284
285 2001-11-26 Richard M. Stallman <rms@gnu.org>
286
287 * window.el (save-selected-window): No error if saved window is dead.
288
289 * help-funs.el (describe-syntax): Put (interactive) after doc string.
290
291 2001-11-26 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
292
293 * international/quail.el (quail-help): Require help-mode in
294 top-level instead.
295
296 * iswitchb.el (iswitchb-exhibit): Use insert instead of
297 insert-string.
298
299 * icomplete.el (icomplete-exhibit): Likewise.
300
301 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
302
303 * diff-mode.el (diff-end-of-hunk): Watch out for ambiguities.
304 (diff-hunk-kill): Simplify.
305 (diff-post-command-hook): Only apply to a single hunk.
306 (diff-hunk-text): Make `char-offset' non-optional.
307 (diff-find-text): Return a cons cell.
308 (diff-find-approx-text): New fun.
309 (diff-find-source-location): Use it.
310 (diff-apply-hunk, diff-test-hunk, diff-goto-source):
311 Adapt to new retval of diff-find-text.
312
313 * vc-cvs.el (vc-cvs-parse-entry): Rewrite, comparing the string-
314 rather than integer- representation of dates.
315
316 * textmodes/fill.el (fill-indent-according-to-mode): Default to nil.
317
318 * emacs-lisp/syntax.el: Don't profile syntax-ppss any more.
319 (syntax-after): New fun.
320
321 * help-funs.el (describe-syntax): New fun.
322
323 * font-lock.el (font-lock-cache-state, font-lock-cache-position)
324 (font-lock-ppss-stats, font-lock-ppss): Remove.
325 (font-lock-fontify-syntactically-region): Remove tuning code.
326 (font-lock-compile-keywords): Fix off-by-one bug.
327 (font-lock-set-defaults): Don't set removed vars.
328 (c-keywords): Add `inline'.
329 (c-type-names): Add `_Complex', `_Imaginary' and `_Bool'.
330
331 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
332 Set syntax-begin-function.
333 (lisp-interaction-mode-abbrev-table): Defvar to its correct value.
334 (lisp-interaction-mode): Don't set local-abbrev-table any more.
335 (lisp-mode-auto-fill): Use syntax-ppss and obey
336 comment-auto-fill-only-comments.
337 (lisp-fill-paragraph): Use syntax-ppss.
338
339 2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
340
341 * mail/rmail.el (rmail-enable-mime-composing): New. A lightweight
342 version of rmail-enable-mime.
343 (rmail-forward): Use it.
344
345 2001-11-25 Richard M. Stallman <rms@gnu.org>
346
347 * emacs-lisp/lisp-mode.el (lisp-indent-function): Add doc string.
348
349 * international/quail.el (quail-keyboard-layout-button):
350 Define button type.
351 (quail-keyboard-customize-button): Likewise.
352 (quail-help): Use those button types. Require `help-mode'.
353 Avoid altering the argument `package'.
354
355 * help-mode.el (help-function, help-variable, help-face)
356 (help-coding-system, help-input-method, help-character-set):
357 Define each button type with its own explicit define-button-type.
358
359 * language/devan-util.el: Comment out parts of the file
360 which apparently are garbled.
361
362 2001-11-25 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
363
364 * mail/smtpmail.el (smtpmail-deduce-address-list): Don't use
365 insert-string.
366
367 2001-11-25 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
368
369 * play/snake.el (snake-mode): Remove make-local-hook.
370
371 * play/tetris.el (tetris-mode): Likewise.
372
373 * play/decipher.el (decipher-mode): Likewise.
374
375 * tmm.el (tmm-add-prompt): Likewise.
376
377 2001-11-25 Sam Steingold <sds@gnu.org>
378
379 * menu-bar.el (menu-bar-apropos-menu): New variable.
380 Moved all `apropos' bindings to this menu.
381 (menu-bar-help-menu): Added `menu-bar-apropos-menu'.
382
383 2001-11-24 KAWABATA, Taichi <batta@beige.ocn.ne.jp>
384
385 The following changes are for new indian languages support based
386 on Unicode charset and CDAC fonts.
387
388 * international/mule-conf.el: Change indian-1-column charset to
389 indian-glyph charset.
390
391 * international/characters.el: Adjusted for the change of
392 indian-1-column -> indian-glyph.
393
394 * international/fontset.el: Delete the setting for indian-1-column
395 and add the setting for indian-glyph in the default fontset.
396
397 * language/indian.el: Completely re-written.
398
399 * language/devanagari.el: Completely re-written.
400
401 * language/devan-util.el: Completely re-written.
402
403 * language/ind-util.el: New file.
404
405 2001-11-24 Richard M. Stallman <rms@gnu.org>
406
407 * startup.el (command-line-1): Don't do startup screen
408 if a subprocess is running. Call the startup screen buffer
409 "GNU Emacs". Make a special mode-line-format for it.
410
411 * net/browse-url.el (browse-url-galeon-new-window-is-tab): New var.
412 (browse-url-galeon): Use that variable.
413
414 * mail/supercite.el (sc-toggle-var): Don't use set-variable or
415 eval-expression. Eval and set the variable simply.
416
417 * files.el (temporary-file-directory): Use defcustom.
418 (small-temporary-file-directory): Likewise.
419 (normal-backup-enable-predicate): Move down in file
420 after definition of temporary-file-directory.
421
422 * bindings.el (last-buffer, unbury-buffer): Doc fixes.
423
424 2001-11-24 Colin Walters <walters@debian.org>
425
426 * calc/calc-ext.el (calc-init-extensions): Update the rest of the
427 autoload names to match files renamed on initial calc import.
428
429 * calc/calc.el (Commentary): Cleanup, and add logistic curve
430 fitting suggestion from Robert J. Chassell <bob@rattlesnake.com>.
431
432 2001-11-23 Colin Walters <walters@debian.org>
433
434 * Makefile.in (finder_setwins, setwins): Include Calc again.
435
436 * calc/calc-rules.el: Add header comment.
437
438 2001-11-23 Andre Spiegel <spiegel@gnu.org>
439
440 * vc.el (with-vc-properties): Don't bind `filename' locally.
441 (with-vc-file, edit-vc-file): Use `make-symbol' for local bindings
442 to avoid name clashes. Fix `lisp-indent-function' property for
443 both.
444
445 2001-11-23 Francesco Potorti` <pot@gnu.org>
446
447 * generic-x.el (mailrc-generic-mode): Highlight the `source' keyword.
448
449 2001-11-22 Colin Walters <walters@debian.org>
450
451 * calc/calc-misc.el (report-calc-bug):
452 Use `reporter-prompt-for-summary-p'.
453
454 * calc/INSTALL, calc/Makefile: Remove.
455
456 2001-11-22 Miles Bader <miles@gnu.org>
457
458 * emacs-lisp/re-builder.el (reb-match-0, reb-match-1)
459 (reb-match-2, reb-match-3): Add dark-background variants.
460
461 2001-11-22 Colin Walters <walters@debian.org>
462
463 * calc/calc-misc.el (calc-info): Don't perform voodoo, just
464 (info "Calc").
465 (report-calc-bug): Use reporter.el.
466
467 * mail/reporter.el (reporter-submit-bug-report): Doc fixes.
468
469 2001-11-21 Richard M. Stallman <rms@gnu.org>
470
471 * which-func.el (which-function): Call imenu--make-index-alist
472 if necessary to get a list of functions.
473 (which-function-imenu-failed): New variable.
474 (which-func-update): Handle all visible windows.
475 (which-func-update-1): New subroutine broken out of which-func-update.
476
477 * files.el (temporary-file-directory, null-device)
478 (small-temporary-file-directory): Definitions moved up.
479
480 * progmodes/cperl-mode.el (cperl-problems, cperl-tips)
481 (cperl-non-problems, cperl-praise): Doc fixes.
482
483 * progmodes/sh-script.el (sh-mode): Don't use define-derived-mode.
484 (sh-mode-syntax-table): Function restored.
485 Variable set up for use by function sh-mode-syntax-table.
486 (sh-set-shell): Set the syntax table.
487
488 * play/gomoku.el (gomoku-mode): Don't use define-derived-mode.
489
490 * progmodes/perl-mode.el (perl-mode): Don't use define-derived-mode.
491
492 * international/encoded-kb.el: Don't alter minor-map-alist.
493
494 2001-11-20 Kai Grossjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
495
496 * files.el (auto-save-file-name-transforms): Put remote files in
497 temporary-file-directory rather than /tmp.
498
499 2001-11-21 Colin Walters <walters@debian.org>
500
501 * calc/calc-macs.el (calc-slow-wrapper): Move (point) call outside
502 of (function ...) wrapper.
503
504 2001-11-20 Stefan Monnier <monnier@cs.yale.edu>
505
506 * derived.el (define-derived-mode): Create the abbrev-table
507 from inside the `defvar'.
508
509 * jit-lock.el (jit-lock-defer-time): New var.
510 (jit-lock-defer-timer, jit-lock-buffers): New vars.
511 (jit-lock-mode): Initialize them. Cancel the timers more carefully.
512 (jit-lock-function): Defer fontification if requested.
513 (jit-lock-stealth-chunk-start): Pay attention to the new non-nil value.
514 (jit-lock-stealth-fontify): Check the new `jit-lock-defer-multiline'
515 text property.
516 (jit-lock-deferred-fontify): New fun.
517
518 2001-11-20 Richard M. Stallman <rms@gnu.org>
519
520 * emacs-lisp/lisp-mode.el (lisp-interaction-mode):
521 Set local-abbrev-table to lisp-mode-abbrev-table.
522
523 * emacs-lisp/re-builder.el (reb-mode):
524 Don't use define-derived-mode. Call kill-all-local-variables.
525
526 * emacs-lisp/lisp-mode.el (lisp-mode, emacs-lisp-mode):
527 Don't use define-derived-mode.
528
529 * help-mode.el (help-mode): Undo 2001-10-07 change.
530
531 * replace.el (occur-mode): Undo 2001-5-20 change.
532
533 2001-11-20 Jason Rumney <jasonr@gnu.org>
534
535 * w32-fns.el (w32-system-coding-system): Change to an alias for
536 locale-coding-system.
537 (set-w32-system-coding-system): Document the above change.
538 Set locale-coding-system instead.
539
540 2001-11-20 Richard M. Stallman <rms@gnu.org>
541
542 * ruler-mode.el: Add pagination.
543 (ruler-mode-toggle-show-tab-stops): No need to
544 test `ruler-mode' variable.
545
546 2001-11-20 Eli Zaretskii <eliz@is.elta.co.il>
547
548 * play/landmark.el: Mark lm-mode as special.
549
550 * play/gomoku.el: Mark gomoku-mode as special.
551
552 2001-11-20 Juanma Barranquero <lektu@terra.es>
553
554 * emacs-lisp/re-builder.el (reb-change-target-buffer): New function.
555 (top-level): Bind it to C-c C-b.
556 (re-builder): Don't re-enter RE Builder Mode.
557
558 * bs.el (bs-delete): Signal an error if the buffer cannot be deleted.
559
560 2001-11-20 Stefan Monnier <monnier@cs.yale.edu>
561
562 * progmodes/cperl-mode.el (cperl-perldoc): Require man before binding
563 `manual-program'.
564
565 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Don't move back
566 to a line without a comment.
567
568 2001-11-20 Eli Zaretskii <eliz@is.elta.co.il>
569
570 * dired.el (dired-listing-switches): Mention in the doc string
571 that some switches are not supported by ls-lisp.el
572
573 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
574
575 * imenu.el (imenu--split-menu): Use dolist and copy-sequence.
576 (imenu--create-keymap-2): Remove.
577 (imenu--create-keymap-1): Simplify, remove third argument.
578 (imenu--generic-function): Use dolist.
579 (imenu-find-default): New function.
580 (imenu--completion-buffer): Use it.
581 (imenu--mouse-menu): Use popup-menu.
582 (imenu--menubar-select): Return t rather than calling imenu.
583
584 * textmodes/fill.el (fill-delete-prefix, fill-delete-newlines):
585 New functions, extracted from fill-region-as-paragraph.
586 (fill-region-as-paragraph): Use them.
587 Use an end marker instead of eob.
588 Ignore whitespace-only fill-prefixes when indenting according to mode.
589 Simplify the loop that searches for spaces backwards.
590
591 * textmodes/picture.el (picture-vertical-step)
592 (picture-horizontal-step): Don't use defconst for variables.
593
594 * mail/mail-extr.el: Use backquote/dolist/mapc/when. Docstring fixes.
595 (mail-extract-address-components): Downcase domain names.
596 (mail-extr-delete-char): Remove. Use delete-char instead.
597
598 * emulation/pc-select.el: Doc string fixes.
599 (pc-selection-mode): Don't treat macos as a tty.
600
601 * emacs-lisp/lisp.el (mark-sexp): Mark more if repeated.
602
603 * progmodes/cc-engine.el (c-parse-state): Typo. From Martin Stjernholm.
604
605 * mwheel.el (mouse-wheel-scroll-amount): Allow float values.
606 (mouse-wheel-progessive-speed): New var.
607 (mwheel-scroll): Use it and handle float values.
608
609 * lazy-lock.el (lazy-lock-install-hooks): Remove make-local-hook.
610
611 * iswitchb.el (iswitchb-mode): Use define-minor-mode.
612 (iswitchb): Fix the case where the result was selected with the mouse.
613 (iswitchb-completion-help): Use the normal *Completions* now that
614 mouse selection works.
615 (iswitchb-minibuffer-setup): Simplify.
616
617 * newcomment.el (comment-column, comment-style, comment-multi-line)
618 (comment-auto-fill-only-comments): Remove :group arg.
619 (comment-padding): Add :type.
620 (comment-indent-new-line): Ignore comment-auto-fill-only-comments
621 if called interactively.
622
623 2001-11-19 Colin Walters <walters@verbum.org>
624
625 * calc/calc.el (toplevel): Add comment and version header.
626 (calc-init-base): Bump version to 2.02f, update date.
627
628 2001-11-19 Richard M. Stallman <rms@gnu.org>
629
630 * net/browse-url.el: Support Mozilla and Galeon.
631 By default, find the installed browser whichever it is.
632 (browse-url-mozilla): New function.
633 (browse-url-mozilla-sentinel): New function.
634 (browse-url-galeon, browse-url-galeon-sentinel): New functions.
635 (browse-url-default-browser): New function.
636 (browse-url-process-environment): Use browse-url-browser-display.
637 (browse-url-browser-display): Renamed from browse-url-netscape-display.
638 (browse-url-mozilla-startup-arguments, browse-url-galeon-program)
639 (browse-url-galeon-arguments, browse-url-galeon-startup-arguments)
640 (browse-url-mozilla-program, browse-url-mozilla-arguments): New vars.
641 (browse-url-browser-function): New default, new options.
642
643 2001-11-19 Sam Steingold <sds@gnu.org>
644
645 * bindings.el (last-buffer, unbury-buffer): New function.
646 (mode-line-unbury-buffer): Use `unbury-buffer'.
647
648 2001-11-18 Stephen Eglen <stephen@gnu.org>
649
650 * iswitchb.el (iswitchb-cannot-complete-hook): New variable to
651 control behaviour when no further completion is possible.
652
653 2001-11-19 Colin Walters <walters@verbum.org>
654
655 * calc/calc-macs.el (calc-wrapper, calc-slow-wrapper)
656 (math-showing-full-precision, math-with-extra-prec, math-working)
657 (calc-with-default-simplification)
658 (calc-with-trail-buffer): Use backtick.
659 (Math-zerop, Math-integer-negp, Math-integer-posp, Math-negp)
660 (Math-looks-negp, Math-posp, Math-integerp, Math-natnump)
661 (Math-ratp, Math-realp, Math-anglep, Math-numberp, Math-scalarp)
662 (Math-vectorp, Math-messy-integerp, Math-objectp, Math-objvecp)
663 (Math-integer-neg, Math-equal, Math-lessp, Math-primp)
664 (Math-num-integerp, Math-bignum-test, Math-equal-int)
665 (Math-natnum-lessp, math-format-radix-digit): Change to `defsubst'.
666 (calc-record-compilation-date-macro): Deleted. Callers updated.
667 (math-format-radix-digit): Move to calc-bin.el.
668
669 * calc/calc.el (calc-record-compilation-date): Remove.
670 (calc-bug-address): Update.
671 (calc-settings-file): Use `user-init-file'.
672
673 * calc/calc-mode.el (calc-settings-file-name, calc-save-modes):
674 Handle null `calc-settings-file'.
675
676 * calc/calc-frac.el (calc-over-notation): Use `completing-read'.
677 * calc/calc-keypd.el (calc-keypad-mode): New.
678 (calc-do-keypad): Use it.
679 (calc-keypad-map): Move into `calc-keypad-mode'.
680
681 * calc-math.el (calcFunc-sqrt, calcFunc-hypot): Add missing quote
682 to defalias argument.
683
684 * calc-misc.el (math-fixnump, math-fixnatnump, calcFunc-trunc)
685 (calcFunc-floor): Ditto.
686
687 * calc-units.el (calcFunc-usimplify): Ditto.
688
689 * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
690 * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
691 * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
692 * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
693 * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
694 * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
695 * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
696 * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
697 * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
698 * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
699 * calcsel2.el: Change all toplevel `setq' forms to `defvar' forms,
700 and move them before their first use. Use `when', `unless'.
701 Remove trailing periods from error forms. Add description and
702 headers suggested by Emacs Lisp coding conventions.
703
704 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
705
706 * newcomment.el (comment-indent):
707 Fix misindentation for comment-only lines.
708 (comment-indent-new-line): Only obey comment-multi-line if the
709 comment-ender is not the end-of-line.
710
711 2001-11-19 Richard M. Stallman <rms@gnu.org>
712
713 * net/net-utils.el (network-connection-service-abbrev-alist):
714 New variable.
715
716 * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
717 Advance to start of 3rd sexp by moving fwd and backing over it.
718 At first three elements, act like defun.
719
720 * delsel.el (delete-selection-pre-hook): Handle and resignal
721 file-supersession errors to interact properly with userlock.el.
722
723 2001-11-18 Richard M. Stallman <rms@gnu.org>
724
725 * progmodes/fortran.el (fortran-mode-syntax-table):
726 Specify punctuation syntax for backslash.
727
728 * progmodes/sh-script.el (sh-must-be-shell-mode): Function deleted.
729 All calls deleted.
730
731 * international/mule-util.el (string-to-sequence): Make it obsolete.
732 (string-to-list, string-to-vector): Implement them directly
733 using append and vconcat, not with string-to-sequence.
734
735 * startup.el (command-line): Set abbrevs-changed to nil after
736 reading the init file and the abbrevs file.
737
738 * isearch.el (isearch): Use magenta2 as bg for (background light)
739
740 2001-11-17 Richard M. Stallman <rms@gnu.org>
741
742 * menu-bar.el (menu-bar-update-buffers-1): Don't pad the buffer name.
743
744 * simple.el (minibuffer-history-sexp-flag): Doc fix.
745
746 2001-11-17 Stefan Monnier <monnier@cs.yale.edu>
747
748 * font-lock.el (font-lock-compile-keywords): New arg `regexp'.
749 If set and if applicable, add a regexp to highlight defun-like
750 text inside comments and strings.
751 (font-lock-fontify-keywords-region): Pass that new arg.
752 (font-lock-set-defaults): Move the code to set `font-lock-keywords'
753 to the end and pass that new arg.
754 (c-font-lock-keywords-2): Fix regex for labels.
755 (font-lock-match-c++-style-declaration-item-and-skip-to-next):
756 Make it work when LIMIT is several lines further.
757 (c-font-lock-keywords-3, c++-font-lock-keywords-3)
758 (objc-font-lock-keywords-3, java-font-lock-keywords-3):
759 Use backquote and make the regexes for `int a, b, c;' work on
760 multiple lines.
761
762 * emacs-lisp/re-builder.el (reb-mode): Use define-derived-mode.
763 (font-lock-defaults-alist): Don't change it any more.
764 (reb-subexp-mode-map): Cleanup.
765
766 * custom.el (custom-current-group-alist): New var.
767 (custom-declare-group): Set it.
768 (custom-current-group): New fun.
769 (custom-declare-variable, custom-handle-all-keywords):
770 Use it as a default if no :group argument is specified.
771
772 * international/mule-cmds.el (locale-name-match): Use \` and \(?:.
773 (standard-keyboard-coding-systems): New var.
774 (set-locale-environment): Use it to decide whether or not to call
775 set-keyboard-coding-system.
776 (locale-language-names): Use \"French\" for "fr".
777
778 2001-11-17 Richard M. Stallman <rms@gnu.org>
779
780 * emacs-lisp/checkdoc.el (princ-list, checkdoc-read-event)
781 (add-to-list): Delete compatibility code.
782 (checkdoc-next-message-error): Doc fix.
783
784 2001-11-17 Stephen Eglen <stephen@gnu.org>
785
786 * locate.el (locate): Show default locate pattern within the
787 prompt, but don't insert it into the minibuffer contents.
788 Catch the case when pattern is the empty string.
789
790 2001-11-17 Eli Zaretskii <eliz@is.elta.co.il>
791
792 * language/european.el ("French"): New language environment.
793
794 2001-11-16 Richard M. Stallman <rms@gnu.org>
795
796 * calendar/todo-mode.el (todo-save): Fix previous change.
797
798 * subr.el (functionp): Do use cdr-safe on object.
799
800 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
801
802 * bindings.el (mode-line-mode-name): Only put the help-echo property
803 if the local-map property was put as well.
804 (global-map): Bind switch-frame, delete-frame, iconify-frame
805 and make-frame-visible events.
806
807 * emacs-lisp/elp.el (elp-not-profilable): New var.
808 (elp-not-profilable-p): New function.
809 (elp-instrument-function): Use it. Use backquotes and push.
810
811 * emacs-lisp/bytecomp.el (byte-compile-call-tree, byte-code-vector)
812 (byte-stack+-info, byte-compile-last-warned-form)
813 (byte-compile-last-logged-file): Don't defconst a variable.
814 (no-byte-compile): Declare.
815 (byte-compile-file): Don't boundp-check no-byte-compile any more.
816 (byte-compile-defvar): Leave defconst as is.
817
818 * emacs-lisp/edebug.el (edebug-form-data, edebug-offsets)
819 (edebug-offsets-stack, edebug-read-dotted-list, edebug-def-name)
820 (edebug-current-offset, edebug-old-def-name, edebug-error-point)
821 (edebug-best-error): Don't defconst a variable.
822 (edebug-read-syntax-table): Use a char-table.
823 (edebug-lemacs-specific): Remove.
824 Toplevel: Eliminate check for Lucid Emacs.
825
826 * pcvs-util.el (cvs-prefix-define): Don't defconst a variable.
827
828 * rect.el (move-to-column-force): Mark obsolete.
829 (operate-on-rectangle, delete-extract-rectangle-line)
830 (insert-rectangle, delete-whitespace-rectangle-line)
831 (open-rectangle-line, clear-rectangle-line): Use move-to-column.
832 (string-rectangle-history): New var.
833 (string-rectangle, string-insert-rectangle): Use it.
834 (delete-rectangle-line): Fix pos/column mixup and simplify.
835
836 * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
837 (normal-top-level, command-line, command-line-1): Simplify.
838
839 * tar-mode.el (tar-mode): Use define-derived-mode.
840
841 * view.el (view-mode-enable): Don't use make-local-hook.
842
843 * emacs-lisp/eldoc.el (eldoc-mode): Use define-minor-mode.
844
845 2001-11-16 Richard M. Stallman <rms@gnu.org>
846
847 * mail/mail-extr.el (mail-extr-voodoo): Treat a number as a word
848 if it doesn't make sense as anything else.
849 Don't recognize a "telephone number" at the beginning of the name.
850 (mail-extr-leading-garbage): Match non-word characters only.
851
852 2001-11-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
853
854 * startup.el (command-line-processed): Doc fix.
855
856 * apropos.el (apropos-next-label-button): Doc fix.
857
858 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
859
860 * comint.el (comint-mode): Simplify.
861 (make-comint-in-buffer): Run `comint-mode' only if necessary.
862
863 * subr.el (eval-after-load): Make it work with features as well.
864
865 * log-view.el (log-view-mode): Don't mark the buffer unmodified.
866
867 * international/mule-cmds.el (describe-input-method): Setup xref.
868 (set-language-environment): Use functionp.
869 (locale-language-names, locale-charset-language-names)
870 (locale-preferred-coding-systems): Defconst and purecopy.
871
872 * language/european.el (mac-roman): Add mime-charset property.
873
874 2001-11-15 Richard M. Stallman <rms@gnu.org>
875
876 * emacs-lisp/cl.el (values, values-list, multiple-value-list)
877 (multiple-value-apply, nth-value): Use defsubst rather than defalias
878 to get better doc strings.
879
880 2001-11-15 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
881
882 * derived.el: Fix autoload cookie.
883
884 2001-11-15 Richard M. Stallman <rms@gnu.org>
885
886 * jka-compr.el (jka-compr-partial-uncompress): Fix previous change.
887
888 2001-11-15 Stefan Monnier <monnier@cs.yale.edu>
889
890 * menu-bar.el (menu-bar-edit-menu) <copy>: Put an explicit key binding.
891
892 2001-11-15 Richard M. Stallman <rms@gnu.org>
893
894 * dired.el (dired-undo): Display a message to explain
895 that this does not undo file system changes.
896
897 2001-11-15 David Kastrup <David.Kastrup@t-online.de>
898
899 * mouse-drag.el (mouse-drag-throw): Push back non-drag events
900 into `unread-command-events' instead of trying keymap
901 lookups ourselves. This makes mouse-clicks do the right
902 thing even when keymaps of overlays are involved.
903 (mouse-drag-drag): Likewise.
904
905 2001-11-15 Andreas Schwab <schwab@suse.de>
906
907 * progmodes/ada-mode.el (ada-add-extensions): Quote regexp special
908 characters and append anchor to pattern added to auto-mode-alist.
909
910 2001-11-15 Stefan Monnier <monnier@cs.yale.edu>
911
912 * server.el (server-process-filter): Run pore/post-comment-hook
913 before/after visiting the file.
914
915 * info-look.el (makefile-mode): Add info for automake.
916 (autoconf-mode): Fix the name of the index for automake.
917
918 * international/latin-9.el: Give pilcrow punctuation syntax.
919
920 2001-11-15 Andre Spiegel <spiegel@gnu.org>
921
922 * vc.el: Documentation fixes.
923
924 2001-11-14 Stefan Monnier <monnier@cs.yale.edu>
925
926 * smerge-mode.el (smerge-match-conflict): Fix typo.
927 (smerge-diff): Be careful to read match-data early enough.
928
929 2001-11-14 Colin Walters <walters@verbum.org>
930
931 * calc/calc-alg.el (calcFunc-esimplify, calcFunc-simplify)
932 (calcFunc-subst): Use `defalias' instead of `fset' and
933 `symbol-function'.
934
935 * calc/calc-arith.el (calcFunc-abs, calcFunc-float)
936 (calcFunc-ceil, calcFunc-round): Ditto.
937
938 * calc/calc-bin.el (calcFunc-clip): Ditto.
939
940 * calc/calc-ext.el (calcFunc-evalv): Ditto.
941
942 * calc/calc-math.el (calcFunc-sqrt, calcFunc-hypot): Ditto.
943
944 * calc/calc-misc.el (math-fixnump, math-fixnatnump)
945 (calcFunc-trunc, calcFunc-floor, calc-report-bug): Ditto.
946
947 * calc/calc-units.el (calcFunc-unsimplify): Ditto.
948
949 * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
950 * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
951 * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
952 * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
953 * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
954 * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
955 * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
956 * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
957 * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
958 * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
959 * calcsel2.el: Style cleanup; don't put closing parens on their
960 own line, add "foo.el ends here" to each file, and update
961 copyright date.
962
963 * README: Update maintainer.
964
965 2001-11-13 Alan Shutko <ats@acm.org>
966
967 * compile.el (recompile): Use compilation-arguments if set, so as
968 to be able to M-x recompile the exact command which created a
969 compilation-mode buffer.
970
971 2001-11-13 Richard M. Stallman <rms@gnu.org>
972
973 * progmodes/ada-mode.el (ada-fill-comment-prefix): Doc fix.
974
975 2001-11-13 Gerd Moellmann <gerd@gnu.org>
976
977 * mouse.el (mouse-drag-region): Don't run the up-event
978 handler if window start changed due to the down-mouse event.
979
980 2001-11-13 Richard M. Stallman <rms@gnu.org>
981
982 * mouse.el (mouse-show-mark): Either move point to the mark
983 or use highlighting, never both.
984 (mouse-buffer-menu): If WINDOW is a frame, select its selected window.
985
986 2001-11-13 Simon Josefsson <jas@extundo.com>
987
988 * mail/smtpmail.el (top-level): Change maintainer to Simon
989 Josefsson, cleanup the smtpmail.el header.
990
991 * mail/smtpmail.el (top-level): Don't require cl or base64.
992 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
993 (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd):
994 Defsubst instead of defmacro.
995 (smtpmail-intersection): Return value in reverse order.
996 (smtpmail-open-stream): Use stringp instead of string-to-list.
997 (smtpmail-open-stream, smtpmail-try-auth-methods): New functions,
998 separated from smtpmail-via-smtp.
999
1000 * mail/smtpmail.el (top-level): Autoload starttls, mail-utils and
1001 rfc2104. Require base64 and cl.
1002 (smtpmail-smtp-service): Doc fix. :type fix.
1003 (smtpmail-debug-info): Doc fix.
1004 (smtpmail-debug-verb, smtpmail-auth-credentials)
1005 (smtpmail-starttls-credentials, smtpmail-auth-supported):
1006 New variables.
1007 (smtpmail-deduce-address-list, smtpmail-send-it): Don't require
1008 mail-utils (it is autoloaded).
1009 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
1010 (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd)
1011 (smtpmail-find-credentials, smtpmail-intersection): New utility funs.
1012 (smtpmail-via-smtp): Support STARTTLS, if binary is installed.
1013 (smtpmail-via-smtp): Support AUTH.
1014 (smtpmail-via-smtp): Use `smtpmail-debug-verb' to control VERB.
1015
1016 2001-11-13 Richard M. Stallman <rms@gnu.org>
1017
1018 * ebuff-menu.el (electric-buffer-update-highlight): New function.
1019 (electric-buffer-overlay): New variable.
1020 (electric-buffer-menu-looper): Call electric-buffer-update-highlight.
1021 (electric-buffer-list): Likewise.
1022
1023 2001-11-13 Per Starback <starback@ling.uu.se>
1024
1025 * isearch.el (isearch-whitespace-chars): Doc fix.
1026 (isearch-mode): Handle negative search-slow-window-lines correctly.
1027
1028 2001-11-13 Stefan Monnier <monnier@cs.yale.edu>
1029
1030 * newcomment.el (comment-normalize-vars): Handle a nil comment-padding.
1031
1032 * progmodes/ada-mode.el (ada-fill-comment-prefix): GNAT wants 2 spaces.
1033 From Emmanuel Briot <briot@act-europe.fr>.
1034
1035 2001-11-13 Colin Walters <walters@debian.org>
1036
1037 * calc/calc.el (calc-unread-command): Use `unread-command-events'.
1038
1039 * calc/calc-mode.el (calc-settings-file-name): Don't hardcode
1040 "~/.emacs"; use `read-file-name'.
1041
1042 * calc/calc-graph.el, calc/calc-embed.el, calc/calc-graph.el
1043 * calc/calc-misc.el, calc/calc-mode.el, calc/calc-prog.el
1044 * calc/calc-sel.el, calc/calc-store.el, calc/calc-yank.el
1045 * calc/calc.el: Use `frame-width' instead of `screen-width',
1046 `frame-height' instead of `screen-height', and,
1047 `executing-kbd-macro' instead of `executing-macro'.
1048
1049 * calc/calc-embed.el (calc-do-embedded): Call `y-or-n-p' with
1050 correct number of arguments.
1051
1052 * calc/calc-aent.el (calc-do-alg-entry):
1053 Use `blink-paren-function' instead of `blink-paren-hook'.
1054
1055 2001-11-12 Richard M. Stallman <rms@gnu.org>
1056
1057 * calendar/todo-mode.el (todo-save): Add save-excursion
1058 and save-restriction.
1059
1060 * server.el (server-edit, server-done): Doc fix.
1061
1062 * simple.el (clone-indirect-buffer): Error if major mode symbol
1063 has a no-clone-indirect property.
1064 (clone-buffer): Check for obvious errors before reading clone name.
1065
1066 * info.el (Info-mode): Add a no-clone-indirect property.
1067
1068 2001-11-12 Sam Steingold <sds@gnu.org>
1069
1070 * vc.el (vc-print-log): Bind `inhibit-read-only' to t before and
1071 set-buffer-modified-p to nil after `vc-exec-after'.
1072 * log-view.el (log-view-mode-map): Bind "q", "z", "m" and "d".
1073 (log-view-mode): Make read-only.
1074 (log-view-current-file): Do final `expand-file-name' in the
1075 current `default-directory'.
1076 (log-view-current-tag): Take an optional `where' arg.
1077 (log-view-diff): New user command.
1078
1079 2001-11-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1080
1081 * progmodes/cpp.el (cpp-choose-face): Fix typo.
1082
1083 2001-11-12 Sam Steingold <sds@gnu.org>
1084
1085 * emacs-lisp/cl-indent.el (toplevel): Indent properly
1086 `generic-flet', `generic-labels', `with-accessors',
1087 `with-condition-restarts'.
1088
1089 2001-11-12 Richard M. Stallman <rms@gnu.org>
1090
1091 * dired.el: Many trivial doc fixes.
1092 (dired-get-file-for-visit): New function.
1093 (dired-find-alternate-file, dired-mouse-find-file-other-window):
1094 (dired-view-file, dired-find-file-other-window, dired-display-file):
1095 (dired-find-file): Use dired-get-file-for-visit.
1096
1097 2001-11-12 Alex Schroeder <kensanata@yahoo.com>
1098
1099 * sql.el (sql-mode): Doc change.
1100
1101 * sql.el (sql-mode-syntax-table): The backslash is no longer an
1102 escape character.
1103
1104 2001-11-12 Colin Walters <walters@debian.org>
1105
1106 * calc/calc-keypd.el (toplevel): Bind mouse buttons.
1107 (calc-do-keypad): Don't attempt to use nonexistent global
1108 mouse-map, use calc-keypad-map.
1109 (calc-keypad-x-left-click): Renamed to calc-keypad-left-click.
1110 (calc-keypad-left-click): Don't use mouse-map; update to new event
1111 interface.
1112 (calc-keypad-x-middle-click, calc-keypad-x-right-click): Ditto.
1113 (calc-keypad-press): Use `unread-command-events' instead of
1114 `unread-command-char'.
1115
1116 * calc/calc-ext.el (calc-init-extensions): Update autoload names
1117 to match files renamed on initial calc import.
1118
1119 2001-11-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1120
1121 * textmodes/flyspell.el (flyspell-default-dictionary):
1122 Fix previous change.
1123
1124 2001-11-12 Richard M. Stallman <rms@gnu.org>
1125
1126 * textmodes/flyspell.el (flyspell-default-dictionary):
1127 Fix custom type.
1128
1129 2001-11-11 Richard M. Stallman <rms@gnu.org>
1130
1131 * calendar/solar.el (solar-sunrise-and-sunset):
1132 Exchange the two extreme values of day-length.
1133
1134 * progmodes/sh-script.el (sh-must-be-shell-mode):
1135 Allow modes derived from sh-mode.
1136
1137 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
1138 Turn off error in some re-search-forward calls.
1139
1140 * replace.el (query-replace-skip-read-only): New variable.
1141 (perform-replace): If that variable is non-nil, ignore matches
1142 that have a read-only property.
1143
1144 * derived.el (define-derived-mode): Doc fix.
1145
1146 * server.el (server-buffer-done): Test of server-existing-buffer
1147 was backwards.
1148 (server-existing-buffer): Doc fix.
1149
1150 * textmodes/flyspell.el (flyspell-default-dictionary):
1151 Allow nil as value, and make nil the default.
1152
1153 2001-11-11 Eli Zaretskii <eliz@is.elta.co.il>
1154
1155 * subdirs.el: Regenerated.
1156
1157 * menu-bar.el (menu-bar-edit-menu): Don't use x-selection-exists-p if
1158 it is not fboundp.
1159 (clipboard-yank): Ditto.
1160
1161 2001-11-11 Colin Walters <walters@verbum.org>
1162
1163 The following changes are based on patches from
1164 Eli Zaretskii <eliz@is.elta.co.il>, Kai Gro\e,A_\e(Bjohann
1165 <Kai.Grossjohann@CS.Uni-Dortmund.DE>, and others.
1166
1167 * calc/calc.el (toplevel): Require calc-macs.
1168 (calc-minibuffer-size): New.
1169 (calcDigit-nondigit): Use it instead of `buffer-size'.
1170 (calcDigit-backspace): Likewise.
1171 (calcDigit-nondigit): Use `minibuffer-contents' instead of
1172 `buffer-string'.
1173 (calc-minibuffer-contains): Use `minibuffer-prompt-end' instead of
1174 `point-min'.
1175 (calcDigit-key): Use `calc-minibuffer-contains' instead of a
1176 `save-excursion'.
1177
1178 * calc/calc-macs.el (calc-record-compilation-date-macro): Return a
1179 simple `setq' form.
1180
1181 * calc/calc-ext.el: (toplevel): Require calc.
1182 (calc-fancy-prefix-map): New.
1183 (calc-fancy-prefix): Use it.
1184 (calc-fancy-prefix-other-key): New.
1185
1186 * calc/calc-aent.el (toplevel): Require calc-macs during compilation.
1187 (calc-do-quick-calc): Use `frame-width' instead of `screen-width'.
1188 (calcAlg-edit): Use `minibuffer-contents' instead of `buffer-string'.
1189 (calcAlg-enter): Likewise.
1190 (calcAlg-enter): Use `minibuffer-prompt-end' instead of `point-min'.
1191
1192 2001-11-10 Richard M. Stallman <rms@gnu.org>
1193
1194 * abbrev.el (read-abbrev-file): Don't set save-abbrevs.
1195 (quietly-read-abbrev-file): Doc fix.
1196
1197 * startup.el (command-line): Read standard abbrev
1198 file (abbrev-file-name), if it exists.
1199
1200 * files.el (save-abbrevs): Default value is t.
1201
1202 * progmodes/compile.el (compile-goto-error): Fix previous change
1203 in the case where subsequent errors have not been parsed yet
1204 because they are in a different source file.
1205
1206 2001-11-10 Peter Kleiweg <kleiweg@let.rug.nl>
1207
1208 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
1209 Merge two regular expressions into one.
1210 (ps-mode): Make local bindings for `comment-start' and
1211 `comment-start-skip'.
1212 (ps-mode-looking-at-nested): Simplify an if-else construct;
1213 use `set-match-data' to set the result.
1214
1215 2001-11-10 Richard M. Stallman <rms@gnu.org>
1216
1217 * textmodes/flyspell.el (flyspell-correct-word/local-keymap):
1218 Function deleted.
1219 (flyspell-correct-word): Old definition deleted.
1220 (flyspell-correct-word/mouse-keymap): Renamed to flyspell-correct-word.
1221 All references renamed too.
1222
1223 2001-11-10 Gerd Moellmann <gerd@gnu.org>
1224
1225 * Makefile.in (finder_setwins, setwins): Exclude Calc.
1226
1227 2001-11-09 Per Abrahamsen <abraham@dina.kvl.dk>
1228
1229 * wid-edit.el (checklist): Removed `:menu-tag'.
1230 (radio-button-choice): Ditto.
1231 (editable-list): Ditto.
1232
1233 2001-11-09 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1234
1235 * play/gomoku.el: Move definitions of constants to the beginning
1236 of file, before their use.
1237
1238 2001-11-09 Richard M. Stallman <rms@gnu.org>
1239
1240 * textmodes/flyspell.el: Use the keymap property
1241 instead of local-map, and don't use a minor-mode map.
1242 (flyspell-mode-map): Variable deleted.
1243 Don't mess with minor-mode-map-alist.
1244 (calling add-minor-mode): Specify nil for keymap.
1245 And always use add-minor-mode, now that it exists.
1246 (flyspell-overlay-keymap-property-name): Set it to `keymap'.
1247 (flyspell-mode-on): Don't locally bind flyspell-mouse-map
1248 or flyspell-local-mouse-map.
1249 (make-flyspell-overlay): Use flyspell-mouse-map directly.
1250 (flyspell-mode): Doc fix.
1251 (flyspell-mode-on): Don't call make-local-hook.
1252
1253 2001-11-09 Sam Steingold <sds@gnu.org>
1254
1255 * emacs-lisp/debug.el (debugger-make-xrefs):
1256 Add buttons to all symbols.
1257
1258 2001-11-09 Andre Spiegel <spiegel@gnu.org>
1259
1260 * vc.el: Add John David Smith to credits.
1261
1262 Suggested by Kalle Olavi Niemitalo <kon@iki.fi>:
1263
1264 * vc-hooks.el (vc-error-occured): Backquotified.
1265 (vc-file-prop-obarray): Use prime length for better efficiency.
1266
1267 * vc.el (vc-clear-context): Fill obarray with 0, not nil.
1268
1269 2001-11-09 Eli Zaretskii <eliz@is.elta.co.il>
1270
1271 * info.el (Info-file-list-for-emacs): Add entries for Calc.
1272
1273 2001-11-09 Miles Bader <miles@gnu.org>
1274
1275 * subr.el (functionp): Don't consider macros as functions.
1276
1277 2001-11-08 Miles Bader <miles@gnu.org>
1278
1279 * subr.el (functionp): Make work correctly for macros and unbound
1280 symbols.
1281
1282 * comint.el (comint-send-input): Fix description of
1283 `comint-process-echoes' in the doc-string.
1284
1285 2001-11-08 Eli Zaretskii <eliz@is.elta.co.il>
1286
1287 * international/mule.el (make-translation-table): Doc fix.
1288 Suggested by Alex Schroeder <alex@gnu.org>.
1289
1290 2001-11-07 Richard M. Stallman <rms@gnu.org>
1291
1292 * info.el (Info-fontify-node): Highlight every third menu item.
1293
1294 2001-11-07 Per Abrahamsen <abraham@dina.kvl.dk>
1295
1296 * cus-edit.el (custom-face-value-create): Don't ignore the
1297 `customized-face' attribute when finding the current face spec.
1298
1299 2001-11-07 Stefan Monnier <monnier@cs.yale.edu>
1300
1301 * subr.el (with-local-quit): New macro.
1302 (make-syntax-table): Always inherit.
1303 (functionp): Be more careful when `object' is a symbol.
1304
1305 * dabbrev.el (dabbrev-completion): Use "*Completions*".
1306
1307 2001-11-07 Paul Eggert <eggert@twinsun.com>
1308
1309 * dired.el (dired-move-to-filename-regexp):
1310 Do not distinguish between ASCII letters and non-ASCII characters.
1311 Don't allow comma except in the form "month day, year".
1312 Don't allow space between month name and comma.
1313 Clean up the code that checks for trailing period, comma, and space.
1314 Remove now-obsolete comments, and add more commentary about
1315 Japanese dates.
1316 Always gobble up trailing spaces, instead of doing it only sometimes.
1317
1318 2001-11-07 Miles Bader <miles@gnu.org>
1319
1320 * paren.el (show-paren-match-face): Add dark-background variant.
1321
1322 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
1323
1324 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Paren typo.
1325 (lisp-mode-variables): Don't set paragraph-{start,separate}.
1326 Don't disable adaptive-fill-mode.
1327 (lisp-fill-paragraph): Use tab-width rather than 8.
1328 Prevent filling the first line of docstrings.
1329
1330 2001-11-06 Richard M. Stallman <rms@gnu.org>
1331
1332 * play/gomoku.el (gomoku): Doc fix.
1333
1334 * jka-compr.el (jka-compr-partial-uncompress):
1335 Support an alternative of not using dd.
1336 (jka-compr-dd-program): Use defcustom to define this.
1337 (jka-compr-load-suffixes): Use defcustom.
1338 (jka-compr-mode-alist-additions): Use defcustom.
1339
1340 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
1341
1342 * font-lock.el (font-lock-match-c-style-declaration-item-and-skip-to-next):
1343 Also work when LIMIT is further than the end of line.
1344
1345 2001-11-06 Eli Zaretskii <eliz@is.elta.co.il>
1346
1347 * international/quail.el (quail-update-leim-list-file): Print the
1348 offending file name if some of its quail-define-package forms is broken.
1349
1350 2001-11-05 Richard M. Stallman <rms@gnu.org>
1351
1352 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Return the value
1353 of the evaluated form.
1354
1355 2001-11-05 Paul Eggert <eggert@twinsun.com>
1356
1357 * ls-lisp.el (ls-lisp-time-to-seconds): New function.
1358 (ls-lisp-format-time): Emulate GNU fileutils 4.1.1 ls, whose time
1359 stamps always line up by default. Also, it uses a slightly
1360 different window to determine whether files are "recent".
1361
1362 2001-11-05 Andrew Innes <andrewi@gnu.org>
1363
1364 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
1365 Don't attempt to remake autoloads before nuking .elc files.
1366
1367 2001-11-04 Richard M. Stallman <rms@gnu.org>
1368
1369 * emacs-lisp/lisp-mode.el (last-sexp-toggle-display): Cope if
1370 previous-single-property-change or next-single-char-property-change
1371 returns nil.
1372
1373 * international/mule-cmds.el (set-locale-environment):
1374 Make it interactive; make arg optional.
1375
1376 * international/mule-diag.el (help-funs): Require help-funs.
1377
1378 2001-11-04 Eli Zaretskii <eliz@is.elta.co.il>
1379
1380 * term/internal.el (term-setup-hook): Add IT-setup-unicode-display.
1381
1382 2001-11-04 Miles Bader <miles@gnu.org>
1383
1384 * startup.el (fancy-splash-head): Reapply Gerd's hack to make the
1385 shadow of the splash image grey on a dark background instead of black.
1386
1387 2001-11-03 Stefan Monnier <monnier@cs.yale.edu>
1388
1389 * term.el (all faces): Don't (copy-face 'default <foo>).
1390
1391 * term/xterm.el (function-key-map):
1392 Add entry for `ESC [ 3 ~' -> <delete>
1393 Add entries `ESC O 5 [ABCD]' -> C-{up,down,right,left}.
1394 Use inheritance so that .emacs and terminfo take precedence.
1395
1396 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
1397
1398 * tooltip.el (tooltip-delay): Decrease to 0.7.
1399 (tooltip-hide-delay): Enlarge to 10.
1400
1401 2001-11-03 Richard M. Stallman <rms@gnu.org>
1402
1403 * startup.el (fancy-splash-tail): Explain how to recover
1404 from a crash, if there was a crash.
1405 (command-line-1): Reorganize display of startup screen,
1406 to simplify the logic. Use a temp buffer for it.
1407
1408 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
1409
1410 * frame.el (set-background-color, set-foreground-color):
1411 Call face-set-after-frame-default, to propagate the new colors to
1412 the frame's parameters alist.
1413
1414 * calendar/timeclock.el (timeclock-out): Signal an error if
1415 timeclock-last-event is nil.
1416
1417 2001-11-02 Stefan Monnier <monnier@cs.yale.edu>
1418
1419 * textmodes/fill.el (fill-context-prefix): Fix braino.
1420
1421 * international/quail.el (quail-help):
1422 Use `help-buffer' and move `help-setup-xref' to beginning.
1423
1424 * international/mule-cmds.el (describe-language-environment):
1425 Use `help-buffer' and move `help-setup-xref' to beginning.
1426
1427 * international/mule-diag.el (list-character-sets)
1428 (sort-listed-character-sets, describe-character-set)
1429 (describe-coding-system, describe-fontset, list-fontsets):
1430 Use `help-buffer' and move `help-setup-xref' to beginning.
1431 (describe-char-after): Use `internal-describe-syntax-value'.
1432
1433 2001-11-02 Richard M. Stallman <rms@gnu.org>
1434
1435 * mouse.el (popup-menu): If the user refuses to select
1436 from a menu, don't try to invoke the menu.
1437
1438 2001-11-02 Miles Bader <miles@gnu.org>
1439
1440 * help-mode.el (help-xref): New button type.
1441 (help-function, help-variable, help-face, help-coding-system)
1442 (help-input-method, help-character-set, help-type, help-symbol)
1443 (help-back, help-info, help-customize-variable, help-customize-face)
1444 (help-function-def, help-variable-def): Use it as a supertype.
1445 Remove `action' property.
1446
1447 * international/mule-diag.el (describe-character-set)
1448 (describe-coding-system): Pass correct args to `help-xref-button'.
1449 (sort-listed-character-sets): New button type.
1450 (list-character-sets): Use it.
1451 (list-charset-chars): New button type.
1452 (list-character-sets-1): Use it.
1453
1454 2001-11-01 Stefan Monnier <monnier@rum.cs.yale.edu>
1455
1456 * indent.el (tab-always-indent, indent-for-tab-command):
1457 Remove redundant `never' setting.
1458
1459 * fill.el (fill-region-as-paragraph): Don't forget to skip
1460 over current whitespace before looking for a preceding space.
1461
1462 2001-11-01 Richard M. Stallman <rms@gnu.org>
1463
1464 * files.el (file-newest-backup): Don't pass backup file name
1465 thru file-name-sans-versions, because it never has version numbers.
1466
1467 * textmodes/sgml-mode.el (sgml-xml-guess): Fix regexp
1468 to avoid ambiguous nested loops.
1469
1470 * files.el (find-file-noselect): Offer to change buffer-read-only
1471 only when the file's read-only status has changed from before
1472 as well as disagreeing with the buffer's current status.
1473 (buffer-file-read-only): New var, local in all buffers.
1474
1475 * buff-menu.el (buffer-menu): Doc fix.
1476 (buffer-menu-other-window): Doc fix.
1477 (list-buffers, list-buffers-noselect): Doc fix.
1478
1479 2001-11-01 Gerd Moellmann <gerd@gnu.org>
1480
1481 * startup.el (command-line): If the terminal Emacs is running on
1482 has erase char set to ^H, use the Backspace key for deleting
1483 backward, and the Delete key for deleting forward.
1484
1485 2001-11-01 Miles Bader <miles@gnu.org>
1486
1487 * button.el (define-button-type): Make sure every user-defined
1488 button type has a supertype.
1489
1490 2001-10-31 Jason Rumney <jasonr@gnu.org>
1491
1492 * international/mule-cmds.el (locale-language-names): Add chs and
1493 cht as aliases for Chinese-GB and Chinese-BIG5.
1494
1495 2001-10-31 Richard M. Stallman <rms@gnu.org>
1496
1497 * bindings.el (mode-line-frame-identification): Add doc string.
1498 (mode-line-position, mode-line-modes): New variables.
1499 (mode-line-format): Use mode-line-position for the part
1500 that displays the position-in-buffer info.
1501 Use mode-line-modes for the part that displays major and minor modes.
1502
1503 2001-10-31 Sam Steingold <sds@gnu.org>
1504
1505 * emacs-lisp/debug.el (debugger-make-xrefs): New function.
1506 (debugger-setup-buffer): Call it.
1507 (debugger-mode-map): Bind RET and mouse-2.
1508
1509 2001-10-31 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1510
1511 * startup.el: Document command line option --no-window-system
1512 instead of --no-windows.
1513
1514 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
1515
1516 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip.
1517
1518 * font-lock.el (java-font-lock-syntactic-face-function): New fun.
1519 (font-lock-defaults-alist): Use it.
1520 From David Ponce <david.ponce@wanadoo.fr>
1521
1522 * progmodes/perl-mode.el (perl-indent-line): Use `eq' to compare
1523 output of `char-after'.
1524
1525 * bindings.el (ctl-x-map): Add binding for C-x (, C-x ) and C-x e.
1526
1527 * simple.el (reindent-then-newline-and-indent): Insert the newline
1528 before indenting the first line.
1529 (undo-get-state, undo-revert-to-state): New funs.
1530 (shell-command): Don't kill the buffer even if empty.
1531 (transpose-subr-start1, transpose-subr-start2, transpose-subr-end1)
1532 (transpose-subr-end2): Remove.
1533 (transpose-subr): Add `special' arg and simplify.
1534 (transpose-subr-1): Rewrite.
1535 (do-auto-fill): Use fill-indent-according-to-mode and fill-nobreak-p.
1536 (rfc822-goto-eoh): Simplify.
1537
1538 2001-10-30 Richard M. Stallman <rms@gnu.org>
1539
1540 * enriched.el (enriched-face-ans): FIx previous change.
1541
1542 2001-10-30 Gerd Moellmann <gerd@gnu.org>
1543
1544 * international/iso-acc.el (iso-accents-compose): Remove a
1545 superfluous setq.
1546
1547 2001-10-30 Eli Zaretskii <eliz@is.elta.co.il>
1548
1549 * buff-menu.el (list-buffers-noselect): If the buffer's name
1550 starts with a blank, but it visits a file, do show it (for files
1551 whose names start with a blank).
1552
1553 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
1554
1555 * textmodes/fill.el (sentence-end-double-space)
1556 (sentence-end-without-period): Move to paragraphs.el.
1557 (fill-indent-according-to-mode): Change default to t.
1558 (fill-context-prefix): Simplify control-flow and use a more
1559 sophisticated merge that unifies both previous checks.
1560 (fill-single-word-nobreak-p, fill-french-nobreak-p): New funs.
1561 (fill-nobreak-predicate): Make it into a defcustom'd hook.
1562 (fill-nobreak-p): New fun.
1563 (fill-region-as-paragraph): Use it.
1564 Handle `fill-indent-according-to-mode' slightly differently.
1565 (fill-individual-paragraphs-prefix): Simplify the control-flow.
1566 (fill-individual-paragraphs-citation): Fix.
1567
1568 * textmodes/paragraphs.el (use-hard-newlines): Use define-minor-mode.
1569 (paragraph-start): Change default to the `text-mode' value.
1570 (sentence-end-double-space, sentence-end-without-period):
1571 Move from fill.el.
1572 (forward-paragraph): Use `parstart' and `parsep' for temp variables
1573 rather than rebinding `paragraph-start' and `paragraph-separate'.
1574
1575 * indent.el (indent-line-function): Change default to indent-relative.
1576 (tab-always-indent): Add an `never' setting.
1577 (indent-according-to-mode): Handle `indent-relative' and
1578 `indent-relative-maybe' specially.
1579 (indent-for-tab-command): Rename `prefix-arg' to `arg'.
1580 Handle the `never' case for `tab-always-indent'.
1581 Don't call indent-according-to-mode for indent-relative' and
1582 `indent-relative-maybe'.
1583 (insert-tab): Rename `prefix-arg' to `arg'.
1584 (indent-region): Indent the first line as well.
1585 (indent-relative): Don't mark the buffer modified if the indentation
1586 is unchanged.
1587
1588 * textmodes/text-mode.el (paragraph-indent-minor-mode):
1589 Don't set paragraph-separate. Set paragraph-start more carefully.
1590 Set indent-line-function.
1591 (paragraph-indent-text-mode): Use it and define-derived-mode.
1592 (text-mode-map): Remove the \t binding.
1593 (text-mode): Simplify now that the default is more favorable.
1594
1595 2001-10-29 Stefan Monnier <monnier@cs.yale.edu>
1596
1597 * emacs-lisp/find-func.el (find-function-search-for-symbol):
1598 If the regexp doesn't match, use a looser one.
1599 (find-variable-noselect): Add `file' argument.
1600
1601 * pcvs.el (cvs-mode-commit-hook): New hook.
1602 (cvs-mode-commit): Run it.
1603
1604 * log-edit.el (log-edit): Run hook after `log-edit-files'.
1605
1606 * emacs-lisp/edebug.el (delay-mode-hooks): Add edebug-spec.
1607 (edebug-instrument-function): Use `find-function-noselect'.
1608
1609 2001-10-29 Richard M. Stallman <rms@gnu.org>
1610
1611 * term.el (term-if-emacs19): Macro deleted.
1612 Callers changed to use progn instead.
1613
1614 * frame.el (blink-cursor-mode): Doc fix.
1615
1616 * files.el (find-backup-file-name): Use make-backup-file-name.
1617
1618 * emacs-lisp/edebug.el (edebug-window-live-p): Always alias to
1619 window-live-p.
1620 (edebug-set-conditional-breakpoint): Unconditionally use
1621 the former Emacs >=19 definition.
1622 (edebug-mark): Define unconditionally.
1623 (edebug-eval-expression): Always call read-from-minibuffer
1624 and specify history list.
1625 (edebug-lemacs-specific): Override emacs-mark, edebug-window-live-p,
1626 edebug-set-conditional-breakpoint.
1627 (edebug-emacs-version-specific): Function deleted;
1628 do the job at top level.
1629 (edebug-emacs-19-specific): Function deleted, this is the default.
1630
1631 2001-10-29 Sam Steingold <sds@gnu.org>
1632
1633 * w32-fns.el (convert-standard-filename): Handle cygwin-specific
1634 "/cygdrive/LETTER/" pathnames.
1635
1636 2001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
1637
1638 * faces.el (invert-face): Check for 'unspecified, not for nil,
1639 when testing whether face colors are not specified.
1640 From David.Kastrup@t-online.de (David Kastrup).
1641 (read-face-name): Doc fix.
1642 (make-face-bold, make-face-unbold, make-face-italic)
1643 (make-face-unitalic, make-face-bold-italic, invert-face):
1644 Remove trailing blank from the prompt passed to read-face-name.
1645
1646 2001-10-29 Sam Steingold <sds@gnu.org>
1647
1648 * emacs-lisp/bytecomp.el (byte-recompile-directory):
1649 Report numbers of files skipped and failed too.
1650 (byte-compile-file): Return 'no-byte-compile for skipped files.
1651
1652 2001-10-29 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
1653
1654 * log-view.el (log-view-mode-map): Bind `M-n' and `M-p', not `M n'
1655 and `M p'.
1656
1657 2001-10-29 Gerd Moellmann <gerd@gnu.org>
1658
1659 * international/iso-acc.el (iso-accents-compose): Push SECOND-CHAR
1660 as is on unread-command-events instead of `(SECOND-CHAR)'.
1661
1662 2001-10-29 Andre Spiegel <spiegel@gnu.org>
1663
1664 * vc.el: Mention vc-*-switches in backend API documentation.
1665 (vc-annotate): Adapt doc string to recent change.
1666
1667 2001-10-29 Gerd Moellmann <gerd@gnu.org>
1668
1669 * enriched.el (enriched-face-ans): Handle face attributes
1670 of the form `(FACE1 FACE2 ...)'.
1671
1672 * dired-x.el (dired-omit-startup): Show ``Omit'' only in Dired buffers.
1673
1674 2001-10-29 Alex Schroeder <kensanata@yahoo.com>
1675
1676 * progmodes/sql.el (sql-mysql): Doc change by RMS.
1677
1678 * progmodes/sql.el (sql-db2): Doc change.
1679 (sql-help): Doc change by Christian Egli <christian.egli@stest.ch>.
1680 (sql-mysql): Doc change by Christian Egli <christian.egli@stest.ch>.
1681
1682 2001-10-29 Gerd Moellmann <gerd@gnu.org>
1683
1684 * env.el (substitute-env-vars): Don't quote argument to `rx';
1685 it's a macro.
1686
1687 2001-10-28 Per Abrahamsen <abraham@dina.kvl.dk>
1688
1689 * cus-start.el (recursive-load-depth-limit): Added.
1690
1691 2001-10-28 Richard M. Stallman <rms@gnu.org>
1692
1693 * textmodes/ispell.el (version18p, version20p): Vars deleted.
1694 All uses removed--assume Emacs version is >= 20.
1695
1696 * mail/supercite.el (sc-emacs-features): Test for "Emacs 19"
1697 by really checking that it is not version 18.
1698
1699 * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
1700
1701 2001-10-28 Miles Bader <miles@gnu.org>
1702
1703 * faces.el (face-attribute): Add INHERIT argument, consider face
1704 inheritance if it's non-nil.
1705 (face-attribute-merged-with): New function.
1706 (face-attribute-specified-or): New macro.
1707 (face-foreground, face-background, face-stipple): Add INHERIT
1708 argument. Use `face-attribute-specified-or'.
1709
1710 2001-10-28 Stefan Monnier <monnier@cs.yale.edu>
1711
1712 * font-lock.el: Require `syntax'.
1713 (font-lock-defaults-alist): Don't define keywords for lisp languages.
1714 Use `c-font-lock-syntactic-face-function' for c languages.
1715 (font-lock-mode): Don't unset vars when turning the mode off.
1716 (font-lock-default-fontify-buffer): Don't unset vars at the end.
1717 (font-lock-extra-managed-props): New var.
1718 (font-lock-default-unfontify-region): Use it.
1719 (font-lock-apply-syntactic-highlight): Flush the syntax cache.
1720 Don't eval the value when there's no match.
1721 (font-lock-ppss-stats): New var.
1722 (font-lock-ppss): New fun.
1723 (font-lock-fontify-syntactically-region): Use it and syntax.ppss.
1724 (font-lock-apply-highlight): Allow `highlight' to set several props.
1725 (font-lock-set-defaults): Use dolist.
1726 (font-lock-unset-defaults): Remove.
1727 (font-lock-match-c-style-declaration-item-and-skip-to-next):
1728 Try to recognize prototypes using `foo P_ ((args))'.
1729 ({c,c++,java,objc}-font-lock-keywords-{1,2,3}): Don't setq a defconst.
1730 (c-font-lock-keywords-2): Fix last change to still use Anders' trick.
1731 (c-font-lock-syntactic-face-function): New function.
1732 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
1733 (c++-keywords): Use a more sophisticated regexp to handle
1734 shallowly nested templates.
1735
1736 2001-10-27 Stefan Monnier <monnier@cs.yale.edu>
1737
1738 * textmodes/sgml-mode.el (sgml-empty-tags): New var.
1739 (sgml-tag): Use it. Cleanup with `cond'.
1740 (sgml-tags-invisible): Make sgml-tags-invisible buffer-local.
1741 Mark the overlays and only delete those that are marked.
1742 (sgml-skip-close-p): Remove.
1743 (sgml-value): Replace sgml-skip-close-p with its definition.
1744 (html-tag-alist): Use sgml-xml a bit more.
1745 (html-mode): Set sgml-empty-tags.
1746
1747 * textmodes/texnfo-upd.el: Use `when', `dolist', `push', ...
1748 (texinfo-update-node, texinfo-sequential-node-update):
1749 Don't bind the obsolete `auto-fill-hook'.
1750 (texinfo-multi-file-included-list,texinfo-multi-file-master-menu-list):
1751 Use `set-buffer' rather than `switch-to-buffer'.
1752 (texinfo-multi-file-update): Use "Top" rather than `up-node-name'.
1753 Use `set-buffer' rather than `switch-to-buffer'.
1754
1755 * mail/sendmail.el (mail-mode-syntax-table): Let it inherit from
1756 text-mode-syntax-table.
1757 (mail-mode): Use define-derived-mode.
1758 Fix ordering of alternatives in adaptive-fill-regexp.
1759 (mail-mode-map): Don't rely on keymap's internal representation.
1760
1761 2001-10-27 Sam Steingold <sds@gnu.org>
1762
1763 * textmodes/sgml-mode.el (sgml-xml): Renamed from `html-xhtml'.
1764 (sgml-xml-guess): Extracted from `html-mode' and generalized.
1765 (sgml-mode-common): Call it.
1766 (sgml-mode, html-mode): Set `mode-name' based on `sgml-xml'.
1767 (sgml-tag, sgml-skip-close-p, html-tag-alist, html-line)
1768 (html-horizontal-rule, html-image, html-ordered-list):
1769 (html-unordered-list, html-list-item, html-paragraph):
1770 (html-checkboxes, html-radio-buttons): Use `sgml-xml' instead of
1771 `html-xhtml'.
1772
1773 2001-10-26 Masayuki Ataka <ataka@milk.freemail.ne.jp>
1774
1775 * textmodes/texinfmt.el (texinfo-format-ifnotinfo): New function.
1776 (ifnothtml): New alias.
1777
1778 2001-10-27 Stefan Monnier <monnier@cs.yale.edu>
1779
1780 * textmodes/text-mode.el (text-mode): Use define-derived-mode.
1781 (toggle-text-mode-auto-fill): Use derived-mode-p.
1782
1783 2001-10-27 Gerd Moellmann <gerd.moellmann@t-online.de>
1784
1785 * net/ange-ftp.el (ange-ftp-send-cmd): Call fix-name-func for
1786 `mdtm'. From "Forrest Cahoon" <forrest.cahoon@merrillcorp.com>.
1787
1788 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
1789
1790 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
1791 Add make-obsolete cookies, to follow faces.el.
1792
1793 These changes avoid warnings from the byte compiler in faces.el:
1794
1795 * faces.el (internal-get-face): Use facep instead of the obsolete
1796 internal-find-face.
1797 (internal-frob-font-weight, internal-frob-font-slant):
1798 New defaliases for obsolete functions.
1799 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
1800 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
1801 (x-make-font-bold-italic): Use internal-frob-font-weight and
1802 internal-frob-font-slant aliases instead of the obsolete
1803 x-frob-... functions.
1804
1805 2001-10-26 Sam Steingold <sds@gnu.org>
1806
1807 * textmodes/sgml-mode.el (html-mode): Set `html-xhtml' from the
1808 DOCTYPE; set `mode-name' based on it.
1809 (html-tag-alist): Use `html-xhtml' for "li", "dt" and "dd".
1810 (sgml-tag): Close empty tags in XHTML.
1811
1812 2001-10-26 Jason Rumney <jasonr@gnu.org>
1813
1814 * w32-fns.el: (w32-charset-info-alist): Use ANSI for iso10646-1
1815 when UNICODE is not defined.
1816
1817 2001-10-26 Sam Steingold <sds@gnu.org>
1818
1819 * font-lock.el (c-font-lock-keywords-2): Do not require labels to
1820 be alone on the line.
1821
1822 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
1823
1824 * button.el (button): Special face definition for MS-DOS terminals.
1825
1826 2001-10-26 Sam Steingold <sds@gnu.org>
1827
1828 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
1829 Protect the /= test by checking that the args are non-nil.
1830 (sh-font-lock-close-heredoc): Check eof for being non-nil.
1831
1832 2001-10-26 Tomas Abrahamsson <tab@lysator.liu.se>
1833
1834 * textmodes/artist.el (artist-version): 1.2.4.
1835 (artist-butlast-fn): New variable.
1836 (artist-butlast): New function.
1837 (artist-ellipse-mirror-quadrant): Use it.
1838 (artist-mouse-draw-poly): Use nil for `point-list'.
1839 (artist-mouse-draw-poly): Check for point-list being nil.
1840
1841 2001-10-26 Peter Kleiweg <kleiweg@let.rug.nl>
1842
1843 * progmodes/ps-mode.el (ps-mode-print-function): Remove quote for
1844 lambda expression.
1845 (ps-mode-menu-main): Submenu with options on/off was replaced with
1846 a toggle button.
1847 (ps-mode, ps-run-mode): Define with `define-derived-mode'
1848 (ps-mode): Autoload cookie added on same line as comment
1849 (ps-mode-tabkey, ps-mode-backward-delete-char):
1850 (ps-mode-r-balance): Replace `delete-horizontal-space' and
1851 `indent-to' with `indent-line-to'
1852 (ps-mode-print-buffer, ps-mode-print-region): Use `funcall'
1853 instead of `eval'.
1854 (ps-mode-print-region): Use `with-temp-buffer'.
1855 (ps-run-start): Use of `mapconcat'. Use `apply' instead of `eval'.
1856 (numerous places): Add back-tick and tick around names in
1857 docstrings, fix punctuation in docstrings, remove trailing spaces.
1858
1859 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
1860
1861 * textmodes/sgml-mode.el (sgml-font-lock-keywords-1): Ignore comments.
1862 (sgml-font-lock-keywords-2): Use `eval'. Moved from sgml-mode-common.
1863 (sgml-font-lock-syntactic-keywords): New var.
1864 (sgml-mode-common): Drop the two args.
1865 Don't make buffer-local variables that aren't used.
1866 Don't set sgml-font-lock-keywords-2 now that it uses `eval instead.
1867 Don't set `before-string' props from sgml-display-text.
1868 (sgml-mode): Use define-derived-mode.
1869 (sgml-tags-invisible): Use sgml-display-text.
1870 (sgml-quote): New command.
1871 (html-tag-alist): Add args for `span'.
1872 (html-mode): Use define-derived-mode.
1873 Set sgml-display-text and sgml-tag-face-alist.
1874
1875 2001-10-25 Sam Steingold <sds@gnu.org>
1876
1877 * add-log.el (add-log-always-start-new-record): New user option.
1878 (add-change-log-entry): Use it.
1879
1880 2001-10-25 Richard M. Stallman <rms@gnu.org>
1881
1882 * progmodes/etags.el (tags-query-replace): Make tags-loop-scan
1883 bind case-fold-search if FROM is not all lower case.
1884
1885 2001-10-25 Gerd Moellmann <gerd@gnu.org>
1886
1887 * startup.el (normal-top-level): Check for frame-initial-frame
1888 only if it's really used.
1889
1890 * mail/mh-utils.el (mh-recenter): Call recenter with arg `(4)'.
1891
1892 * progmodes/compile.el (compilation-parse-errors-filename-function):
1893 New variable.
1894 (compilation-parse-errors): Use it.
1895
1896 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
1897
1898 * emacs-lisp/checkdoc.el (checkdoc-eval-defun): Call eval-defun
1899 interactively so that C-u M-C-x still does edebug.
1900 (checkdoc-sentencespace-region-engine): Don't force a double-space
1901 after `.' if it doesn't look like an end-of-sentence.
1902 (debug-ignored-errors): Add `disambiguate ...'.
1903
1904 2001-10-24 Stefan Monnier <monnier@cs.yale.edu>
1905
1906 * textmodes/texinfo.el (texinfo-environments)
1907 (texinfo-environment-regexp): Hoist.
1908 (texinfo-font-lock-keywords): Use `italic' and `bold' faces.
1909 Only highlight the menu name in menu items.
1910 Setup `@foo ... @end foo' as text clones.
1911 (texinfo-clone-environment): New function.
1912 (texinfo-mode): Simplify auto-fill-inhibit-regexp.
1913 (texinfo-insert-block): Simplify.
1914 (texinfo-insert-quote): Insert a plain " if preceded by \ or if
1915 the command is repeated.
1916 (texinfo-last-unended-begin, texinfo-next-unmatched-end): New funs.
1917 (texinfo-insert-@end): Simplify.
1918
1919 * textmodes/texnfo-upd.el (texinfo-section-types-regexp)
1920 (texinfo-section-level-regexp, texinfo-subsection-level-regexp)
1921 (texinfo-subsubsection-level-regexp)
1922 (texinfo-update-menu-same-level-regexps)
1923 (texinfo-update-menu-higher-regexps)
1924 (texinfo-update-menu-lower-regexps): Hoist to eliminate warnings.
1925
1926 * derived.el (define-derived-mode): Use {delay,run}-mode-hooks.
1927 (derived-mode-p): Autoload.
1928
1929 * subr.el (delay-mode-hooks, delayed-mode-hooks, run-mode-hooks):
1930 New vars and functions.
1931 (text-clone-maintain, text-clone-create): New functions.
1932
1933 2001-10-25 Miles Bader <miles@gnu.org>
1934
1935 * facemenu.el (facemenu-add-new-face): Fix variable names.
1936
1937 2001-10-24 Richard M. Stallman <rms@gnu.org>
1938
1939 * facemenu.el (facemenu-unlisted-faces): Improve doc strings
1940 of t and nil values.
1941 (facemenu-set-face): Handle START and END interactively.
1942 (facemenu-set-foreground): Don't use a face; specify color directly.
1943 (facemenu-set-background): Likewise.
1944 (facemenu-set-face-from-menu): Doc fix.
1945 (facemenu-active-faces): Use face-attribute-vector
1946 to handle bare attributes not in faces.
1947 (facemenu-get-face): Don't handle face names fg:... and bg:...
1948 specially.
1949 (facemenu-add-new-face): New argument MENU.
1950 New way to handle adding colors to the color menus.
1951
1952 * env.el (substitute-env-vars): Quote the arg to rx.
1953
1954 2001-10-24 Sam Steingold <sds@gnu.org>
1955
1956 * mouse.el (mouse-buffer-menu-mode-groups): Added "Version
1957 Control" and "SGML" groups.
1958
1959 2001-10-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1960
1961 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
1962 Better handling of C++ template args to avoid confusion with `<'
1963 and `>' used as operators in member init expressions.
1964
1965 2001-10-24 Gerd Moellmann <gerd@gnu.org>
1966
1967 * replace.el (perform-replace): Move START and END parameters
1968 to the end of the argument list and make them optional.
1969
1970 * progmodes/ebrowse.el, progmodes/etags.el: Adapt to change in
1971 perform-replace.
1972
1973 * international/fontset.el (x-must-resolve-font-name): New function.
1974 (x-complement-fontset-spec): Use it.
1975
1976 2001-10-23 Stefan Monnier <monnier@cs.yale.edu>
1977
1978 * uniquify.el (uniquify-get-proposed-name): Fix (.. "usr" "/usr" 0).
1979
1980 * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
1981 Turn caadr into caar of cdr.
1982
1983 2001-10-23 Gerd Moellmann <gerd@gnu.org>
1984
1985 * info.el (Info-fontify-node): Bind down-mouse-{1,2} instead
1986 of mouse-{1,2} since dragging is on the down event.
1987
1988 * play/doctor.el (make-doctor-variables): Remove a '($ please)'.
1989
1990 * mail/mh-utils.el (mh-recenter): Call `recenter' with arg t
1991 if ARG is nil.
1992
1993 * desktop.el (desktop-last-buffer): New variable.
1994 (desktop-create-buffer): Set it.
1995 (desktop-read): Bind it and switch to that buffer.
1996
1997 2001-10-22 Gerd Moellmann <gerd@gnu.org>
1998
1999 * progmodes/compile.el (compilation-set-window-height):
2000 Select old window only if it's still live.
2001
2002 2001-10-22 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2003
2004 * help-mode.el (help-buffer): Remove debugging code.
2005 From Stefan Monnier <monnier@cs.yale.edu>.
2006
2007 2001-10-22 Eli Zaretskii <eliz@is.elta.co.il>
2008
2009 * files.el (file-name-sans-extension, file-name-extension):
2010 Don't count the leading dots in file names as signaling an extension.
2011
2012 2001-10-22 Andre Spiegel <spiegel@gnu.org>
2013
2014 * vc.el (vc-diff-switches): Doc rewritten.
2015
2016 2001-10-22 Eli Zaretskii <eliz@is.elta.co.il>
2017
2018 * tooltip.el (tooltip-set-param): Doc fix.
2019
2020 * textmodes/sgml-mode.el (sgml-mode-map): Bind 8-bit codes above
2021 127 to sgml-maybe-name-self.
2022 (sgml-name-8bit-mode): Doc fix.
2023 (sgml-char-names-table): New variable.
2024 (sgml-name-char): Support non-ASCII and mule-unicode-*
2025 characters. Doc fix.
2026 (sgml-maybe-name-self): Convert unibyte characters to multibyte.
2027
2028 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Mention in the
2029 doc string the effect of `left' and `top' parameters in
2030 tooltip-frame-parameters, the default values, and the units.
2031 (tooltip-frame-parameters): Mention `top' and `left' in the doc string.
2032 (tooltip-show): Mention in the doc string the `top' and `left'
2033 parameters in tooltip-frame-parameters, and x-max-tooltip-size.
2034
2035 2001-10-22 Andre Spiegel <spiegel@gnu.org>
2036
2037 Add autoscaling support for vc-annotate.
2038 From J.D. Smith <jdsmith@alum.mit.edu>.
2039
2040 * vc.el (vc-annotate-display-default): Accept colormap scaling
2041 ratio (now deprecated).
2042 (vc-annotate-display-autoscale): Added.
2043 (vc-annotate-add-menu): New autoscaling menu options "Span to
2044 Oldest" and "Span Oldest->Newest". Easymenu support added for
2045 toggle menus driven by customize variable `vc-annotate-display-mode'.
2046 (vc-annotate-display-select): Added.
2047 (vc-annotate): Changed temp-buffer-show-function to
2048 `vc-annotate-display-select'.
2049 (vc-annotate-display): Removed arguments BUFFER and BACKEND.
2050 Added argument OFFSET. Instead of backend function, calls now
2051 generic `vc-annotate-difference'.
2052 (vc-annotate-difference): Added as generic function instead of
2053 backend-specific function. No longer takes argument POINT, but
2054 instead accepts a time OFFSET.
2055 (vc-default-annotate-current-time): Added.
2056
2057 * vc-cvs.el (vc-cvs-annotate-difference): Removed to generic
2058 version in vc.el, with
2059 (vc-cvs-annotate-current-time): Added, as override of default.
2060 (vc-cvs-annotate-time) Added. Taken mostly from the (now removed)
2061 `vc-cvs-annotate-difference'.
2062
2063 2001-10-22 Gerd Moellmann <gerd@gnu.org>
2064
2065 * saveplace.el (save-place): Require `saveplace'.
2066
2067 * progmodes/cwarn.el (cwarn-font-lock-feature-keywords-alist):
2068 Use `sexp' for :value-type instead of `face'.
2069
2070 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
2071
2072 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Fix the
2073 regexps due to 5-digit message IDs.
2074
2075 2001-10-21 Jason Rumney <jasonr@gnu.org>
2076
2077 * term/w32-win.el (redisplay-dont-pause): Don't set.
2078
2079 2001-10-21 Miles Bader <miles@gnu.org>
2080
2081 * help-funs.el (help-manyarg-func-alist): Variable removed.
2082
2083 2001-10-21 Miles Bader <miles@gnu.org>
2084
2085 * help-funs.el (help-manyarg-func-alist): Remove entries for
2086 `insert', `insert-and-inherit', `insert-before-markers',
2087 `insert-before-markers-and-inherit', `message', `message-box',
2088 `message-or-box', `propertize', `format', `encode-time', `append',
2089 `concat', `vconcat', `nconc', `widget-apply', `make-hash-table',
2090 `insert-string', `ml-if', `ml-provide-prefix-argument', and
2091 `ml-prefix-argument-loop'.
2092
2093 2001-10-21 Andre Spiegel <spiegel@gnu.org>
2094
2095 * vc.el (vc-diff-internal, vc-coding-system-for-diff)
2096 (vc-default-diff-tree): New functions.
2097 (vc-version-diff): Use them. As a result, coding systems are now
2098 set up properly for all sorts of diffs, and tree diffs can now
2099 also be done locally.
2100 (vc-diff): With a prefix argument, don't require that it's called
2101 from a buffer under version control.
2102 (diff-switches): Remove duplicate definition.
2103
2104 * vc-cvs.el (vc-cvs-diff-tree): New function.
2105
2106 2001-10-21 Miles Bader <miles@gnu.org>
2107
2108 * help-funs.el (help-manyarg-func-alist): Remove entries for
2109 `list', `vector', `make-byte-code', `call-process',
2110 `call-process-region', `string', `+', `-', `*', `/', `max', `min',
2111 `logand', `logior', and `logxor'.
2112
2113 * wid-edit.el (checkbox): Swap bg/fg colors in image, and invert
2114 image bits to compensate. Use `make-string' instead of
2115 `make-bool-vector' (XBM apparently wants byte-aligned rows).
2116
2117 2001-10-20 Kim F. Storm <storm@cua.dk>
2118
2119 * simple.el (kill-ring-save): Don't show extent of copied region
2120 if using transient-mark-mode and region is fully visible.
2121
2122 2001-10-20 Gerd Moellmann <gerd@gnu.org>
2123
2124 * (Version 21.1 released.)
2125
2126 2001-10-19 Eli Zaretskii <eliz@is.elta.co.il>
2127
2128 * files.el (auto-mode-alist): Associate .indent.pro with
2129 Fundamental mode. Suggested by Samuel Padgett <spadgett1@nc.rr.com>.
2130
2131 2001-10-18 Sam Steingold <sds@gnu.org>
2132
2133 Put the *Compile-Log* buffer in `compilation-mode'.
2134 * emacs-lisp/bytecomp.el (byte-goto-log-buffer): New function.
2135 (byte-compile-log-1, byte-compile-log-file)
2136 (displaying-byte-compile-warnings): Use it
2137
2138 2001-10-18 Stefan Monnier <monnier@cs.yale.edu>
2139
2140 * mail/smtpmail.el (smtpmail-via-smtp): Use mail-envelope-from if set.
2141
2142 * xml.el (xml-parse-tag): Use eq on char-after's return value.
2143
2144 2001-10-18 Gerd Moellmann <gerd@gnu.org>
2145
2146 * isearch.el (isearch-mode-map): Bind `mouse-movement' to nil.
2147
2148 * obsolete/hilit19.el (hilit-lookup-face-create):
2149 Call set-face-font only if display-graphic-p.
2150 (toplevel): Remove references to window-system.
2151
2152 2001-10-18 Miles Bader <miles@gnu.org>
2153
2154 * simple.el (what-line): Avoid problems with field properties.
2155
2156 2001-10-17 Eli Zaretskii <eliz@is.elta.co.il>
2157
2158 * wid-edit.el (widget-field-face, widget-single-line-field-face):
2159 Define special colors for a tty.
2160
2161 2001-10-17 Francesco Potorti` <pot@gnu.org>
2162
2163 * comint.el (comint-password-prompt-regexp): Make it less
2164 restrictive, letting comint recognise OpenSSH2 passphrase prompts.
2165
2166 2001-10-17 John Wiegley <johnw@gnu.org>
2167
2168 * eshell/em-unix.el (eshell/cat): Do a quick test if something is
2169 a regular file, before checking if it is a directory or symlink.
2170 This avoids a call to eshell-file-attributes, which can be
2171 expensive in some situations.
2172
2173 * eshell/em-ls.el (eshell-ls-dired-initial-args): Added an extra
2174 customization variable, to differentiate ls-in-dired from regular
2175 uses of ls.
2176
2177 2001-10-17 Miles Bader <miles@gnu.org>
2178
2179 * custom.el (defface): Mention `:inherit' in doc-string.
2180
2181 2001-10-16 Eli Zaretskii <eliz@is.elta.co.il>
2182
2183 * paren.el: Update the Commentary with installation instructions.
2184
2185 2001-10-15 Dave Love <fx@gnu.org>
2186
2187 * international/mule.el (set-auto-coding): Fix regexps for local
2188 variables section not to eat newlines.
2189
2190 2001-10-15 Miles Bader <miles@gnu.org>
2191
2192 * simple.el (display-message-or-buffer): Pass the correct buffer
2193 to `display-buffer'.
2194
2195 2001-10-14 Stefan Monnier <monnier@cs.yale.edu>
2196
2197 * progmodes/executable.el (executable-binary-suffixes): Make varalias.
2198 (executable-find): Use exec-suffixes.
2199 (executable-set-magic): Don't use make-local-hook.
2200
2201 * bindings.el (exec-suffixes): Initialize to a system-dependent value.
2202
2203 2001-10-14 Eli Zaretskii <eliz@is.elta.co.il>
2204
2205 * bindings.el (completion-ignored-extensions) [ms-dos, windows-nt]:
2206 Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386.
2207 Add .so to the Unix and GNU branch.
2208
2209 * international/latin-1.el:
2210 * international/latin-2.el:
2211 * international/latin-3.el:
2212 * international/latin-4.el:
2213 * international/latin-5.el:
2214 * international/latin-8.el:
2215 * international/latin-9.el: Add no-byte-compile: t, since
2216 Makefile.in instructs make-docfile to look at .el files.
2217
2218 2001-10-14 Miles Bader <miles@gnu.org>
2219
2220 * button.el (define-button-type): Allow supertype property to be
2221 specified with a keyword `:supertype' too.
2222 (button-put, make-text-button): Allow button type property to be
2223 specified using the keyword `:type' too.
2224 (button-type): New function.
2225 (button): Add `button-category-symbol' property.
2226
2227 2001-10-13 Stefan Monnier <monnier@cs.yale.edu>
2228
2229 * bindings.el (esc-map): Revert `j' and `C-j' bindings to
2230 indent-new-comment-line from comment-indent-new-line.
2231
2232 * textmodes/refill.el (refill-mode):
2233 Bind DEL to backward-delete-char-untabify.
2234 Set backward-delete-char-untabify-method to `hungry'.
2235
2236 * textmodes/bib-mode.el (bib-mode):
2237 * play/gomoku.el (gomoku-mode):
2238 * textmodes/page-ext.el (pages-directory-mode):
2239 * textmodes/scribe.el (scribe-mode): Use define-derived-mode.
2240
2241 * textmodes/two-column.el (2C-mode): Don't use make-local-hook.
2242
2243 * emacs-lisp/syntax.el (syntax-ppss): Autoload.
2244
2245 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
2246 Handle here-docs differently.
2247 (sh-font-lock-heredoc): Remove.
2248 (sh-here-doc-open-re, sh-here-doc-markers, sh-here-doc-re): New vars.
2249 (sh-font-lock-here-doc, sh-font-lock-close-heredoc)
2250 (sh-font-lock-open-heredoc): New functions.
2251 (sh-mode): Don't copy sh-font-lock-syntactic-keywords any more.
2252 (sh-font-lock-keywords-1): Use regexp-opt.
2253 (sh-in-comment-or-string): Use syntax-ppss.
2254 (sh-case, sh-for, sh-indexed-loop, sh-function, sh-if, sh-repeat)
2255 (sh-select, sh-tmp-file): Add explicit terminating \n.
2256
2257 * net/ange-ftp.el (ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
2258 Use with-current-buffer.
2259 (ange-ftp-cd): New arg `noerror' to prevent signalling an error.
2260 (ange-ftp-send-cmd): If a `cd' is used (because of a space in the
2261 filename), catch any error that occurs in `ange-ftp-cd'.
2262 If an error happened, don't bother sending `cmd' at all.
2263 Fix a parenthesis typo.
2264 (ange-ftp-write-region): Don't blindly use binary if the remote host
2265 is unix-like.
2266
2267 * play/pong.el (pong-init): Don't use make-local-hook.
2268
2269 2001-10-13 Michael Kifer <kifer@cs.sunysb.edu>
2270
2271 * viper-ex.el (ex-edit): Make checks for modified buffer/file.
2272 (viper-get-ex-address-subr): More precise addr for the $ marker
2273
2274 2001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
2275
2276 * version.el (emacs-version): Bump to 21.1.50.
2277
2278 2001-10-13 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2279
2280 * mail/mailalias.el (mail-directory-stream): Do not double
2281 variables in the lambda-list.
2282
2283 * play/gomoku.el (gomoku-init-display): Ditto.
2284
2285 * play/landmark.el (lm-init-display): Ditto.
2286
2287 * delim-col.el (delimit-columns-rectangle-max): Ditto.
2288 (delimit-columns-rectangle-line): Ditto.
2289
2290 2001-10-12 Stefan Monnier <monnier@cs.yale.edu>
2291
2292 * newcomment.el (comment-region-internal): Don't rebind
2293 invisibility_spec now that the C routines handle it correctly.
2294
2295 * help-funs.el (locate-library): Use load-suffixes and abbrev filename.
2296
2297 * frame.el (special-display-popup-frame): Obey new specs `same-window'
2298 and `same-frame'.
2299
2300 * menu-bar.el (minibuffer-local-*map): Take inheritance into account.
2301
2302 * simple.el (minibuffer-local*-map): Remove redundant bindings.
2303
2304 * bindings.el (minibuffer-local-map): Also bind next, C-n, C-s, prior,
2305 C-p and C-r. Remove redundant bindings from inheriting maps.
2306
2307 * progmodes/cperl-mode.el: Merged in changes from v4.32.
2308 After 4.23 and: After 4.24:
2309 (cperl-contract-levels): Restore position.
2310 (cperl-beautify-level): Likewise.
2311 (cperl-beautify-regexp): Likewise.
2312 (cperl-commentify): Rudimental support for length=1 runs
2313 (cperl-find-pods-heres): Process 1-char long REx comments too /a#/x
2314 After 4.25:
2315 (cperl-commentify): Was recognizing length=2 "strings" as length=1.
2316 (imenu-example--create-perl-index): Was not enforcing
2317 syntaxification-to-the-end.
2318 (cperl-invert-if-unless): Allow `for', `foreach'.
2319 (cperl-find-pods-heres): Quote `cperl-nonoverridable-face'.
2320 Mark qw(), m()x as indentable.
2321 (cperl-init-faces): Highlight `sysopen' too.
2322 Highlight $var in `for my $var' too.
2323 (cperl-invert-if-unless): Was leaving whitespace at end.
2324 (cperl-linefeed): Was splitting $var{$foo} if point after `{'.
2325 (cperl-calculate-indent): Remove old commented out code.
2326 Support (primitive) indentation of qw(), m()x.
2327 After 4.26:
2328 (cperl-problems): Mention `fill-paragraph' on comment. \"" and
2329 q [] with intervening newlines.
2330 (cperl-autoindent-on-semi): New customization variable.
2331 (cperl-electric-semi): Use `cperl-autoindent-on-semi'.
2332 (cperl-tips): Mention how to make CPerl the default mode.
2333 (cperl-mode): Support `outline-minor-mode'. From Mark A. Hershberger.
2334 (cperl-outline-level): New function.
2335 (cperl-highlight-variables-indiscriminately): New customization var.
2336 (cperl-init-faces): Use `cperl-highlight-variables-indiscriminately'.
2337 From Sean Kamath <kamath@pogo.wv.tek.com>.
2338 (cperl-after-block-p): Support CHECK and INIT.
2339 (cperl-init-faces, cperl-short-docs): Likewise and "our".
2340 From Doug MacEachern <dougm@covalent.net>.
2341 After 4.27:
2342 (cperl-find-pods-heres): Recognize \"" as a string.
2343 Mark whitespace between q and [] as `syntax-type' => `prestring'.
2344 Allow whitespace between << and "FOO".
2345 (cperl-problems): Remove \"" and q [] with intervening newlines.
2346 Mention multiple <<EOF as unsupported.
2347 (cperl-highlight-variables-indiscriminately): Doc misprint fixed.
2348 (cperl-indent-parens-as-block): New configuration variable.
2349 (cperl-calculate-indent): Merge cases of indenting non-BLOCK groups.
2350 Use `cperl-indent-parens-as-block'.
2351 (cperl-find-pods-heres): Test for =cut without empty line instead of
2352 complaining about no =cut.
2353 (cperl-electric-pod): Change the REx for POD from "\n\n=" to "^\n=".
2354 (cperl-find-pods-heres): Likewise.
2355 (cperl-electric-pod): Change `forward-sexp' to `forward-word':
2356 POD could've been marked as comment already.
2357 (cperl-unwind-to-safe): Unwind before start of POD too.
2358 After 4.28:
2359 (cperl-forward-re): Throw an error at proper moment REx unfinished.
2360 After 4.29:
2361 (x-color-defined-p): Make an extra case to peacify the warning.
2362 Toplevel: `defvar' to peacify the warnings.
2363 (cperl-find-pods-heres): Could access `font-lock-comment-face' in -nw.
2364 No -nw-compile time warnings now.
2365 (cperl-find-tags): TAGS file had too short substring-to-search.
2366 Be less verbose in non-interactive mode
2367 (imenu-example--create-perl-index): Set index-marker after name
2368 (cperl-outline-regexp): New variable.
2369 (cperl-outline-level): Made compatible with `cperl-outline-regexp'.
2370 (cperl-mode): Made use `cperl-outline-regexp'.
2371 After 4.30:
2372 (cperl-find-pods-heres): =cut the last thing, no blank line, was error.
2373 (cperl-outline-level): Make start-of-file same level as `package'.
2374 After 4.31:
2375 (cperl-electric-pod): `head1' and `over' electric only if empty.
2376 (cperl-unreadable-ok): New variable.
2377 (cperl-find-tags): Use `cperl-unreadable-ok', do not fail
2378 on an unreadable file.
2379 (cperl-write-tags): Use `cperl-unreadable-ok', do not fail
2380 on an unreadable directory.
2381
2382 * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
2383 Consider the text between two errors as belonging to the first error.
2384 (compilation-goto-locus): Use pop-to-buffer rather than
2385 switch-to-buffer-other-frame.
2386
2387 * progmodes/awk-mode.el (awk-mode-syntax-table): / has string syntax.
2388 (awk-font-lock-syntactic-keywords): New var.
2389 (awk-mode): Use it.
2390
2391 * expand.el (expand-c-for-skeleton): Add explicit terminating \n.
2392
2393 * faces.el (describe-face): Call help-setup-xref earlier.
2394
2395 * jka-compr.el (jka-compr-load-suffixes): New var.
2396 (jka-compr-install): Add its content to load-suffixes.
2397 (jka-compr-uninstall): Remove its content from load-suffixes.
2398
2399 2001-10-12 Sam Steingold <sds@gnu.org>
2400
2401 * bindings.el (completion-ignored-extensions): CL-related
2402 extensions are platform-independent.
2403
2404 * net/ange-ftp.el (ange-ftp-copy-files-async): New function for
2405 asynchronous multiple file copying.
2406
2407 2001-10-12 Gerd Moellmann <gerd@gnu.org>
2408
2409 * emacs-lisp/bytecomp.el (byte-compile-check-lambda-list):
2410 Turn error for repeated variables into warning.
2411
2412 * emacs-lisp/bytecomp.el (byte-compile-check-lambda-list):
2413 New function checking that lambda-list consists of non-constant
2414 symbols, that &rest and &optional are followed by variable names,
2415 that &rest VAR is the last element, and that variables aren't doubled.
2416 (byte-compile-lambda): Use it.
2417
2418 2001-10-12 Eli Barzilay <eli@barzilay.org>
2419
2420 * calculator.el (calculator-eng-display): Don't call concat
2421 with an integer argument.
2422
2423 2001-10-12 Miles Bader <miles@gnu.org>
2424
2425 * help-mode.el (help-customize-face): New button-type.
2426
2427 * faces.el (list-faces-display): Fix args to `help-xref-button'.
2428 (describe-face): Fix args to `help-xref-button'.
2429 Don't switch to help-buffer around call to `help-setup-xref'.
2430 Use `help-buffer' instead of hard-wired "*Help*".
2431 Require `help-mode'.
2432
2433 2001-10-11 Stefan Monnier <monnier@cs.yale.edu>
2434
2435 * net/goto-addr.el (goto-address-mail-regexp): Allow + in username.
2436
2437 * help-mode.el (help-buffer): New function.
2438 Returns the buffer-name to use for help output.
2439 Change all the code to use it instead of hard-coding *Help*.
2440 (help-mode-map): Put back the mouse-2 binding.
2441 (help-xref-stack): Change the format and make buffer-local.
2442 (help-xref-stack-item): Make buffer-local.
2443 (help-setup-xref): Do the `push' here rather than in help-do-xref.
2444 (help-xref-interned): Display the face doc as well.
2445 (help-follow-mouse): Re-introduce.
2446 (help-xref-go-back): Adapt to the new use of help-xref-stack.
2447 (help-do-xref): Don't `push' any more.
2448 (help-follow): Also follow face names.
2449
2450 * help-funs.el (describe-function-1): Remove unused `parens' arg.
2451 Don't call help-setup-xref anymore and remove its `interactive-p' arg.
2452 Autoload and cleanup.
2453 (describe-function): Call help-setup-xref.
2454 (describe-variable): Call help-setup-xref earlier.
2455
2456 * help.el (describe-bindings-internal): New fun moved from keymap.c.
2457 (view-lossage): Call help-setup-xref correctly and earlier.
2458 (describe-bindings): Call help-setup-xref earlier.
2459 (describe-key): Call help-setup-xref. Fix call to describe-function-1.
2460 (describe-mode): Don't autoload. Call help-setup-xref earlier.
2461
2462 2001-10-11 Gerd Moellmann <gerd@gnu.org>
2463
2464 * master.el (master-mode): Use define-minor-mode instead of
2465 easy-mmode-define-minor-mode. Add autload cookie.
2466 (Commentary): Remove the line showing how to autoload master-mode,
2467 since it's always autoloaded.
2468
2469 * master.el: New file.
2470
2471 2001-10-11 Dave Love <fx@gnu.org>
2472
2473 * emacs-lisp/byte-opt.el (byte-optimize-lapcode)
2474 <byte-constref-ops>: Consider byte-constant2 and clarify the code.
2475 <const-C varset-X const-C>: Fix car/cdr typo.
2476
2477 2001-10-11 Gerd Moellmann <gerd@gnu.org>
2478
2479 * emacs-lisp/bytecomp.el (byte-compile-display-log-head-p):
2480 New function extracted from byte-compile-log-1.
2481 (byte-compile-log-1): Change output to be more in line with
2482 the output of other GNU tools.
2483 (byte-compile-warn): Emit `warning' instead of `**' for warnings.
2484 (byte-compile-report-error): Downcase error message.
2485 Use `error' instead of `!!' for error messages.
2486 (byte-compile-print-syms): Treat non-interactive case specially.
2487 (displaying-byte-compile-warnings): Use backquote.
2488 (byte-compile-from-buffer): Bind byte-compile-last-line.
2489 (batch-byte-compile): Remove `Done' message.
2490
2491 2001-10-11 Stefan Monnier <monnier@cs.yale.edu>
2492
2493 * emacs-lisp/copyright.el (copyright): Add final \n.
2494
2495 2001-10-11 Miles Bader <miles@gnu.org>
2496
2497 * diff.el (diff): Display default values in prompts as
2498 `(default ...)', not `(...)'.
2499
2500 * info.el (Info-follow-reference): Likewise.
2501
2502 2001-10-10 Stefan Monnier <monnier@cs.yale.edu>
2503
2504 * emacs-lisp/autoload.el (doc-string-elt): Remove.
2505
2506 * newcomment.el (comment-indent): Be a little more robust in case
2507 comment-indent-function does funny things.
2508 (comment-normalize-vars): Autoload.
2509 (comment-region-internal): Fiddle with the visibility spec.
2510 (comment-valid-prefix): New function.
2511 (comment-indent-new-line): Use it. Ignore adaptive-fill-prefixes
2512 that would turn comment-text into non-comment-text.
2513
2514 * emacs-lisp/syntax.el: New file.
2515
2516 * progmodes/tcl.el: Change maintainer to FSF and remove loads of
2517 compatibility cruft.
2518 (tcl-using-emacs-19, tcl-using-emacs-19-23, tcl-using-xemacs-19)
2519 (tcl-version, tcl-maintainer, tcl-use-hairy-comment-detector): Remove.
2520 (tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
2521 tcl-end-of-defun, tcl-mark-defun, tcl-indent-for-comment,
2522 tcl-submit-bug-report.
2523 (tcl-mode-syntax-table): Leave \f alone.
2524 (inferior-tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
2525 tcl-end-of-defun, tcl-submit-bug-report.
2526 (tcl-xemacs-menu): Fix up and pass it directly to easymenu.
2527 (tcl-add-emacs-menu): Remove.
2528 (tcl-fill-mode-map, tcl-fill-inferior-map): Moved into the defvar.
2529 (tcl-keyword-list): Add `chain'.
2530 (tcl-font-lock-syntactic-keywords): New variable.
2531 (tcl-pps-has-arg-6): Remove.
2532 (tcl-internal-beginning-of-defun, tcl-internal-end-of-defun)
2533 (tcl-internal-mark-defun): Remove.
2534 (tcl-set-proc-regexp, tcl-set-font-lock-keywords): Use regexp-opt.
2535 (tcl-mode): Use define-derived-mode. Simplify.
2536 Set comment-indent-function.
2537 (tcl-indent-command): Use line-beginning-position and comment-indent.
2538 (tcl-calculate-indent): Renamed from calculate-tcl-indent.
2539 (tcl-indent-line): Use tcl-calculate-indent.
2540 (tcl-indent-exp): Renamed from indent-tcl-exp. Use new names.
2541 (tcl-add-log-defun): Renamed from add-log-tcl-defun. Use match-string.
2542 (tcl-filter): Use with-current-buffer, simplify.
2543 (inferior-tcl-mode): Use define-derived-mode.
2544 (tcl-hairy-in-comment): Renamed tcl-in-comment.
2545 (tcl-simple-in-comment, tcl-in-comment): Removed.
2546 (tcl-files-alist): New function.
2547 (tcl-help-snarf-commands): Use it and return the result directly
2548 rather than through a global variable.
2549 (tcl-reread-help-files): Fix up the call to tcl-help-snarf-commands.
2550 (tcl-help-on-word): Provide the default value to completing-read.
2551 (tcl-hilit): Remove.
2552 (tcl-hashify-buffer, tcl-popup-menu): Simplify.
2553 (tcl-comment-indent): New function.
2554 (tcl-submit-bug-report): Remove.
2555 (tcl-uncomment-region, tcl-indent-for-comment, add-log-tcl-defun)
2556 (indent-tcl-exp, calculate-tcl-indent, tcl-beginning-of-defun)
2557 (tcl-end-of-defun, tcl-mark-defun, tcl-mark): Redefine as aliases.
2558
2559 2001-10-10 Miles Bader <miles@gnu.org>
2560
2561 * info.el (Info-insert-dir): Don't call `Info-fontify-menu-headers'.
2562 (Info-fontify-node): Don't fontify the node if it's already been done.
2563
2564 2001-10-10 Gerd Moellmann <gerd@gnu.org>
2565
2566 * international/iso-transl.el (iso-transl-e-caret)
2567 (iso-transl-i-caret, iso-transl-o-caret, iso-transl-u-caret):
2568 Fix duplicates. From Dave Love <d.love@dl.ac.uk>.
2569
2570 * simple.el (end-of-buffer): Fix code scrolling specially
2571 for the buffer end.
2572
2573 * startup.el (command-line-1): Bind tab-width to 8.
2574
2575 2001-10-10 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2576
2577 * emulation/tpu-edt.el: Use defalias instead of fset for
2578 user-visible commands. From Rob Riepel
2579 <riepel@Networking.Stanford.EDU>.
2580
2581 2001-10-09 Gerd Moellmann <gerd@gnu.org>
2582
2583 * ruler-mode.el: New file.
2584
2585 2001-10-09 Miles Bader <miles@gnu.org>
2586
2587 * apropos.el (button): New require.
2588
2589 * help-funs.el: New file, contents mostly from `help.el'.
2590 (describe-variable): Use `condition-case' instead of `ignore-errors'.
2591
2592 * help-mode.el: New file, contents mostly from `help.el'.
2593
2594 * help.el: Don't require `view' when compiling.
2595 (help-with-tutorial, describe-function, describe-function-1)
2596 (variable-at-point, describe-variable, locate-library):
2597 Functions moved into `help-funs.el'.
2598 (help-manyarg-func-alist): Variable moved into `help-funs.el'.
2599 (help-mode, help-mode-setup, help-mode-finish, help-button-action)
2600 (help-setup-xref, help-xref-following, help-make-xrefs)
2601 (help-xref-button, help-insert-xref-button, help-xref-interned)
2602 (help-xref-go-back, help-go-back, help-do-xref, help-follow)
2603 (help-xref-on-pp): Functions moved into `help-mode.el'
2604 (help-mode-map, help-xref-stack, help-xref-stack-item)
2605 (help-highlight-p, help-highlight-face, help-back-label)
2606 (help-xref-symbol-regexp, help-xref-mule-regexp)
2607 (help-xref-info-regexp): Variables moved into `help-mode.el'.
2608 (help-symbol, help-back, help-info, help-customize-variable)
2609 (help-function-def, help-variable-def):
2610 Button-types moved into `help-mode.el'.
2611 (load-symbol-file-load-history, symbol-file):
2612 Functions moved into `subr.el'.
2613 (symbol-file-load-history-loaded): Variable moved into `subr.el'.
2614 (view-lossage): Call `help-setup-xref' instead of doing it manually.
2615
2616 * subr.el (symbol-file-load-history-loaded)
2617 (load-symbol-file-load-history, symbol-file): Moved from `help.el'.
2618
2619 * loadup.el ("button"): Load removed.
2620
2621 * button.el (define-button-type): Respect any `supertype' property.
2622 (button-type-subtype-p, button-has-type-p): New functions.
2623
2624 * rfn-eshadow.el (rfn-eshadow-regexp): Deal correctly with escaped
2625 dollar-signs.
2626
2627 * comint.el (comint-insert-previous-argument): New function.
2628 (comint-mode-map): Bind `C-c .' to `comint-input-previous-argument'.
2629 (comint-insert-previous-argument-last-start-pos)
2630 (comint-insert-previous-argument-last-index): New variables.
2631
2632 * apropos.el (apropos-next-label-button): Use the presence of a
2633 `apropos-label' property to detect label buttons.
2634
2635 2001-10-08 Miles Bader <miles@gnu.org>
2636
2637 * button.el (next-button, previous-button): Remove N and WRAP
2638 parameters. Don't pay attention to `skip' properties.
2639 (forward-button): Implement wrapping, iterating, and skipping here
2640 instead.
2641 (button-activate): USE-MOUSE-ACTION is optional.
2642 (button-nop): Function removed.
2643 (default-button): Use `ignore' as default button action.
2644
2645 * apropos.el (apropos-next-label-button): Update arguments to
2646 `next-button'.
2647 (apropos-symbol): Add `skip' property.
2648 (apropos-function, apropos-macro, apropos-command)
2649 (apropos-variable, apropos-face, apropos-group, apropos-widget)
2650 (apropos-plist): New button types.
2651 (apropos-label-properties): Variable removed.
2652 (apropos-print): Pass button-type to apropos-print-doc, rather
2653 than help function and label text.
2654 (apropos-print-doc): Remove ACTION and STR args, add TYPE arg.
2655 Get button label from TYPE.
2656
2657 2001-10-07 Stefan Monnier <monnier@cs.yale.edu>
2658
2659 * help.el (help-mode): Use define-derived-mode.
2660 (describe-mode): Add optional `buffer' arg.
2661 Use it instead of going through help-xref-mode.
2662 Avoid doubling the word `minor' when prettifying.
2663 (describe-function-1): List the corresponding key bindings.
2664 (describe-variable): Say if the var is automatically buffer-local.
2665 If the source is `loaddefs.el', look for the real source.
2666 (help-xref-mode): Remove.
2667
2668 * emacs-lisp/bytecomp.el (byte-compile-file): Return success when
2669 the file says no-byte-compile.
2670
2671 2001-10-08 Miles Bader <miles@gnu.org>
2672
2673 * button.el (next-button, previous-button): Respect `skip' property.
2674
2675 2001-10-07 Miles Bader <miles@gnu.org>
2676
2677 * woman.el (woman-mode-map): Copy button-buffer-map instead of
2678 making a new keymap. Don't bind mouse-2. Bind M-mouse-2 to
2679 `woman-follow-word' instead of `woman-mouse-2'.
2680 (woman-follow-word): Renamed from `woman-mouse-2'.
2681 Follow current unconditionally, since this function is now only
2682 bound to M-mouse-2. Use accessor functions.
2683 (WoMan-highlight-references): Use `make-text-button'.
2684 (woman-xref): New button type.
2685
2686 * loadup.el ("faces"): Move load before loading "loaddefs.el".
2687 ("button"): New load, just before "help" (which uses it).
2688
2689 * help.el (help-mode-map): Make button-buffer-map our parent.
2690 Don't bind mouse events or tab/backtab.
2691 (help-function, help-variable, help-face, help-coding-system)
2692 (help-input-method, help-character-set, help-back, help-info)
2693 (help-customize-variable, help-function-def, help-variable-def):
2694 New button types.
2695 (help-button-action): New function.
2696 (describe-function-1): Pass help button-types to
2697 `help-xref-button' rather than help function and help-echo string.
2698 Don't put multiple help-function args in a list to pass them to
2699 help-xref-button, just pass them as multiple arguments.
2700 Use `help-insert-xref-button' to make [back]-button, rather than
2701 `help-xref-button'.
2702 (help-xref-button): Take a button-type TYPE as a parameter rather
2703 than a function. Remove HELP-ECHO parameter. Remove DATA parameter
2704 and add a &rest parameter ARGS to serve the same purpose.
2705 Use `make-text-button' to add the button.
2706 (help-insert-xref-button): Use `insert-text-button' to add the button.
2707 (help-follow-mouse, help-next-ref, help-previous-ref):
2708 Functions removed.
2709 (help-do-xref): New function.
2710 (help-follow): Use `push-button' and `help-do-xref' to do most of
2711 the work.
2712
2713 * apropos.el (apropos-symbol, apropos-label): New button types.
2714 (apropos-symbol-button-display-help)
2715 (apropos-label-button-display-help, apropos-next-label-button):
2716 New functions.
2717 (apropos-mode-map): Make button-buffer-map our parent.
2718 Don't bind mouse events.
2719 (apropos-print, apropos-print-doc): Create buttons instead of text
2720 properties.
2721 (apropos-mouse-follow): Function removed.
2722 (apropos-follow): Use buttons.
2723
2724 * button.el: New file.
2725
2726 2001-10-07 Gerd Moellmann <gerd@gnu.org>
2727
2728 * emacs-lisp/cl.el (most-positive-fixnum, most-negative-fixnum):
2729 Remove.
2730
2731 2001-10-05 Richard M. Stallman <rms@gnu.org>
2732
2733 * add-log.el (add-change-log-entry): Skip copyright notice
2734 and copying permission notice at start of file, if any.
2735 Make use of terms "entry" and "item" accord with Emacs manual.
2736 Simplify the logic for moving point while entering or creating
2737 an entry and then an item.
2738 (add-change-log-entry-other-window): Doc fix.
2739
2740 2001-10-06 Miles Bader <miles@gnu.org>
2741
2742 * rfn-eshadow.el (read-file-name-electric-shadow): Autoload cookie
2743 removed; they apparently don't work with faces.
2744
2745 2001-10-05 Sam Steingold <sds@gnu.org>
2746
2747 * textmodes/sgml-mode.el (html-xhtml): New user option.
2748 (html-tag-alist, html-horizontal-rule, html-image, html-line)
2749 (html-ordered-list, html-unordered-list, html-list-item)
2750 (html-paragraph, html-checkboxes, html-radio-buttons): Use it.
2751 (sgml-skip-close-p): New function.
2752 (sgml-value): Use it.
2753
2754 2001-10-05 Sam Steingold <sds@gnu.org>
2755
2756 * calendar/diary-lib.el (diary-entry-compare): When times are
2757 identical, compare the entries lexicographically.
2758
2759 2001-10-06 Miles Bader <miles@gnu.org>
2760
2761 * rfn-eshadow.el (rfn-eshadow-update-overlay):
2762 Use `minibuffer-prompt-end'.
2763
2764 * simple.el (previous-matching-history-element): Fix misplaced
2765 parentheses.
2766
2767 2001-10-05 Miles Bader <miles@gnu.org>
2768
2769 * rfn-eshadow.el: New file.
2770
2771 2001-10-05 Miles Bader <miles@gnu.org>
2772
2773 * cus-face.el (custom-face-attributes): Make sure each attribute
2774 has a valid default value. Remove hacks that mapped `nil' to
2775 `off' and used nil to mean `unspecified'. Remove `unspecified'
2776 choices from all attributes (unspecified is handled by the parent
2777 checklist).
2778 * cus-edit.el (custom-face-edit-convert-widget)
2779 (custom-face-edit-deactivate, custom-face-edit-activate)
2780 (custom-face-edit-delete, custom-face-edit-attribute-tag):
2781 New functions.
2782 (custom-face-edit): Specify a custom :convert-widget.
2783 (custom-pre-filter-face-spec, custom-post-filter-face-spec):
2784 Don't pass in default filters that map between `nil' and `off' and
2785 `unspecified' and `nil'.
2786
2787 2001-10-05 Gerd Moellmann <gerd@gnu.org>
2788
2789 * progmodes/compile.el (compilation-buffer-name): New function.
2790 (compile-internal): Use it to determine the name of the
2791 compilation buffer.
2792
2793 2001-10-05 Miles Bader <miles@gnu.org>
2794
2795 * progmodes/compile.el (grep-use-null-device): New variable.
2796 (grep-command): Mention `grep-use-null-device'.
2797 (grep-compute-defaults): Compute `grep-use-null-device' if necessary.
2798 Make computation of `grep-command' respect `grep-use-null-device'.
2799 (grep): Respect `grep-use-null-device'.
2800 Call `grep-compute-defaults' even if grep-command is set, if
2801 grep-use-null-device is still tentative.
2802
2803 * subr.el (call-process-shell-command): New function.
2804
2805 2001-10-05 Miles Bader <miles@gnu.org>
2806
2807 * simple.el (previous-matching-history-element)
2808 (next-history-element, next-complete-history-element): Use
2809 `minibuffer-' functions instead of calling `field-' functions directly.
2810 (minibuffer-prompt-end, minibuffer-contents):
2811 (minibuffer-contents-no-properties, delete-minibuffer-contents):
2812 Functions removed (now subrs).
2813 (minibuffer-prompt-width): Use `minibuffer-prompt-end'.
2814
2815 * minibuf-eldef.el (minibuf-eldef-setup-minibuffer)
2816 (minibuf-eldef-update-minibuffer): Use `minibuffer-' functions
2817 instead of calling `field-' functions directly.
2818 (minibuf-eldef-setup-minibuffer): Remove unused variable `prompt'.
2819
2820 2001-10-05 Gerd Moellmann <gerd@gnu.org>
2821
2822 * files.el (find-file-noselect): If file's read-only status has
2823 changed on disk, ask if buffer's read-only status should be
2824 changed, unless NOWARN is set.
2825
2826 * emacs-lisp/cl-macs.el (define-setf-expander): Make it an
2827 alias for define-setf-method.
2828
2829 * bindings.el: Remove no-byte-compile from file local variables
2830 to enable bootstrapping.
2831
2832 2001-10-04 Andrew Innes <andrewi@gnu.org>
2833
2834 * faces.el (face-font-registry-alternatives) [windows-nt]:
2835 Make gb2312 an alias for gb2312.1980.
2836
2837 2001-10-04 Stefan Monnier <monnier@cs.yale.edu>
2838
2839 * uniquify.el (uniquify-get-proposed-name): Don't assume dirsep is /.
2840 (uniquify-reverse-components): Remove.
2841
2842 * emacs-lisp/bytecomp.el (byte-recompile-directory):
2843 Make sure the file is readable.
2844 (byte-compile-file): Don't compile if `no-byte-compile' is set.
2845 (byte-compile-defvar): Update to reflect the change in Fdefvar.
2846 (batch-byte-recompile-directory): Pass arg=0.
2847
2848 * progmodes/perl-mode.el (perl-indent-continued-arguments): New var.
2849 (perl-calculate-indent): Use it.
2850 (perl-backward-to-noncomment): Use forward-comment.
2851
2852 * derived.el (define-derived-mode, derived-mode-make-docstring):
2853 Allow `parent' to be nil.
2854
2855 * textmodes/nroff-mode.el (nroff-mode-abbrev-table, nroff-mode):
2856 Use define-derived-mode.
2857 (nroff-mode-map, nroff-mode-syntax-table): Massage.
2858
2859 * mail/mailabbrev.el (mail-abbrev-in-expansion-header-p): Simplify.
2860
2861 * emacs-lisp/lselect.el: Use facep iso find-face.
2862
2863 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
2864 Use regexp-opt.
2865 (doc-string-elt): Set symbols' prop. Copied from autoload.el.
2866 (lisp-font-lock-syntactic-face-function): New function.
2867 (lisp-mode-variables): Use it. Make arg optional.
2868 (emacs-lisp-mode): Don't pass an arg to lisp-mode-variables.
2869 (lisp-mode): Don't pass an arg to lisp-mode-variables.
2870 Set comment-start-skip.
2871
2872 * emacs-lisp/lisp-mnt.el (lm-history-header): Accept `ChangeLog'.
2873
2874 * emacs-lisp/cl-macs.el (frame-parameter): Add a setf method.
2875 (ignore-errors): Don't bother using a `err' symbol.
2876
2877 * emacs-lisp/autoload.el (autoload-ensure-default-file)
2878 (autoload-insert-section-header, autoload-before-p)
2879 (autoload-remove-section): New functions.
2880 (generate-file-autoloads): Use them.
2881 (update-file-autoloads): Use them. Return FILE if there's no cookie.
2882 Make sure the autoload file is properly formatted when creating it.
2883 (update-autoloads-from-directories): Use them as well.
2884 Only update autoloads for files whose timestamp has changed.
2885 Add a dummy entry to remember the files which had no autoload cookies.
2886
2887 * timer.el (timer-relative-time): Fix computation for negative `micro'.
2888
2889 * subr.el (define-key-after): Allow `key' to be longer than 1.
2890 (make-local-hook): Make obsolete.
2891 (add-hook, remove-hook): Don't use make-local-hook any more.
2892 (make-syntax-table): Inherit all chars from s-s-t.
2893
2894 2001-10-04 Gerd Moellmann <gerd@gnu.org>
2895
2896 This is a fix for a report saying that resuming a search with C-s
2897 C-s doesn't use the case-fold-search setting of the previous
2898 search (C-s ... M-c ... then C-s C-s).
2899
2900 * isearch.el (isearch-last-case-fold-search): New variable.
2901 (isearch-mode): Remember value of isearch-case-fold-search
2902 in isearch-last-case-fold-search.
2903 (isearch-done): Quote value of isearch-case-fold-search.
2904 (isearch-repeat): When resuming a search, restore
2905 isearch-case-fold-search from isearch-last-case-fold-search.
2906
2907 Added to NEWS.
2908
2909 * startup.el (inhibit-startup-buffer-menu): New user-option.
2910 (command-line-1): If inhibit-startup-buffer-menu is set, don't
2911 display the buffer menu. From Simon Josefsson <jas@extundo.com>.
2912
2913 This allows upto 99999 messages in the summary without screwing up
2914 the summary sorting. Previously 9999 was the maximum. Added to NEWS.
2915
2916 * mail/rmailsum.el (rmail-make-summary-line)
2917 (rmail-make-summary-line-1, rmail-summary-next-same-subject)
2918 (rmail-summary-goto-msg, rmail-summary-goto-msg):
2919 Allow 5-digit message ids instead of 4.
2920
2921 This adds expansion of environment variables in the value
2922 specified with M-x setenv. Added to NEWS.
2923
2924 * env.el (substitute-env-vars): New function.
2925 (setenv): Add parameter SUBSTITUTE-ENV-VARS. If set, substitute
2926 environment variables in VALUE. Return VALUE.
2927
2928 2001-10-04 Gerd Moellmann <gerd@gnu.org>
2929
2930 * Branch for 21.1.
2931
2932 2001-10-03 Stefan Monnier <monnier@cs.yale.edu>
2933
2934 * pcvs-util.el (cvs-prefix-define): Typo cons->concat.
2935
2936 2001-10-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2937
2938 * emulation/tpu-edt.el: Make messages match original TPU/edt
2939 editor. From riepel@Stanford.EDU (Rob Riepel).
2940
2941 2001-10-03 Eli Zaretskii <eliz@is.elta.co.il>
2942
2943 * rect.el: Update maintainer's email address.
2944
2945 2001-10-02 Andreas Schwab <schwab@suse.de>
2946
2947 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 227 and 228 for Long
2948 and Extended Passive Mode, resp.
2949
2950 2001-10-01 Eli Zaretskii <eliz@is.elta.co.il>
2951
2952 These changes add support for Calendar-related items in the
2953 menu bar on tty's as well:
2954
2955 * calendar/calendar.el (calendar-mode-map): Require cal-menu
2956 unconditionally.
2957 (calendar-mode): Set up activate-menubar-hook unconditionally.
2958
2959 * calendar/cal-menu.el (cal-menu-x-popup-menu): New function,
2960 calls x-popup-menu only if popup menus are supported.
2961 (calendar-mouse-insert-hebrew-diary-entry)
2962 (calendar-mouse-insert-islamic-diary-entry)
2963 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
2964 (calendar-mouse-view-other-diary-entries)
2965 (calendar-mouse-print-dates, calendar-mouse-2-date-menu)
2966 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
2967 Call cal-menu-x-popup-menu instead of x-popup-menu.
2968
2969 2001-10-01 Gerd Moellmann <gerd@gnu.org>
2970
2971 * gs.el (gs-set-ghostview-window-prop): Fix args of `elt'.
2972
2973 * emacs-lisp/edebug.el (rx): Add def-edebug-spec.
2974
2975 * emacs-lisp/rx.el: New file.
2976
2977 2001-10-01 Eli Zaretskii <eliz@is.elta.co.il>
2978
2979 * help.el (help-for-help): Doc fix. From Pavel@Janik.cz (Pavel Janik).
2980
2981 2001-09-30 Eli Zaretskii <eliz@is.elta.co.il>
2982
2983 * frame.el (select-frame-by-name, other-frame): Doc fix.
2984
2985 2001-09-29 Eli Zaretskii <eliz@is.elta.co.il>
2986
2987 * play/snake.el (snake-score-file): Use temporary-file-directory
2988 instead of a literal "/tmp". Suggested by Robert
2989 <robert@chezmarshall.freeserve.co.uk>.
2990
2991 * play/tetris.el (tetris-score-file): Ditto.
2992
2993 2001-09-28 Eli Zaretskii <eliz@is.elta.co.il>
2994
2995 * apropos.el (apropos-print): Make the directions inserted at the
2996 beginning of the *Apropos* buffer more clear.
2997
2998 2001-09-27 Michael Kifer <kifer@cs.sunysb.edu>
2999
3000 * ediff-mult.el (ediff-get-meta-info): Installed Gerd's changes.
3001 Added comments.
3002
3003 2001-09-27 Stefan Monnier <monnier@cs.yale.edu>
3004
3005 * newcomment.el (comment-normalize-vars): Use " \t" rather than
3006 "\\s-" when defining comment-end-skip.
3007
3008 2001-09-27 Gerd Moellmann <gerd@gnu.org>
3009
3010 * mail/feedmail.el (feedmail-queue-send-edit-prompt-help):
3011 Call get-buffer-window first second arg `visible'.
3012
3013 * international/mule-diag.el (list-input-methods-1):
3014 Output something that's independent of Emacs' version.
3015
3016 * tar-mode.el (tar-mode-write-file): Don't signal an error by
3017 calling byte-to-position with a nil tar-header-offset.
3018
3019 2001-09-27 Simon Josefsson <jas@extundo.com>
3020
3021 * mail/sendmail.el (send-mail-function): Doc fix.
3022 (mail-do-fcc): Error if header-end is not a marker.
3023 (mail-do-fcc): Add a comment.
3024 (mail-reply-to): Doc fix.
3025 (mail-signature): Make ATPOINT optional.
3026 (mail-yank-original): Use cond instead of nestled if.
3027
3028 2001-09-26 Stefan Monnier <monnier@cs.yale.edu>
3029
3030 * info.el (Info-on-current-buffer): Default arg to "Top".
3031
3032 2001-09-25 Eli Barzilay <eli@barzilay.org>
3033
3034 * calculator.el (calculator-copy-displayer): New user-option.
3035 (calculator-displayer-prev, calculator-displayer-next):
3036 Renamed from calculator-displayed-{left,right}.
3037 (calculator, calculator-standard-displayer)
3038 (calculator-num-to-string, calculator-update-display)
3039 (calculator-copy, calculator-put-value): Bug and display fixes.
3040
3041 2001-09-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3042
3043 * ebnf2ps.el: Eliminate make-local-hook calls. Doc fix.
3044 (ebnf-version): New version (3.6.1).
3045
3046 * ebnf-bnf.el: Fix character range regexp. Doc fix.
3047 (ebnf-bnf-non-terminal-chars): New internal const.
3048 (ebnf-bnf-lex): Fix code.
3049
3050 * ebnf-iso.el: Fix character range regexp. Doc fix.
3051 (ebnf-iso-non-terminal-chars): New internal const.
3052 (ebnf-iso-lex): Fix code.
3053
3054 * ebnf-yac.el: Fix character range regexp. Doc fix.
3055 (ebnf-yac-skip-chars): New internal const.
3056 (ebnf-yac-skip-code): Fix code.
3057
3058 2001-09-24 Stefan Monnier <monnier@cs.yale.edu>
3059
3060 * vc.el (vc-checkin): Use vc-delete-automatic-version-backups.
3061
3062 * pcvs-parse.el (cvs-parse-commit): Expand the file name before
3063 passing it to VC.
3064
3065 * vc-hooks.el (vc-delete-automatic-version-backups): Handle the
3066 case where the file is relative.
3067
3068 2001-09-24 Gerd Moellmann <gerd@gnu.org>
3069
3070 * xml.el (xml-parse-attlist): Quotes around attributes must be the
3071 same on each side. Make sure we properly handle simple quotes.
3072 From Daiki Ueno <ueno@unixuser.org>.
3073
3074 2001-09-23 Eli Zaretskii <eliz@is.elta.co.il>
3075
3076 * mail/sendmail.el (mail-mode): Doc fix. From Simon Josefsson
3077 <jas@extundo.com>.
3078
3079 * menu-bar.el (top-level): Minor fixes for text of help-echo in
3080 some items of the Options menu.
3081
3082 2001-09-22 Stefan Monnier <monnier@cs.yale.edu>
3083
3084 * pcvs-parse.el (cvs-parse-commit): Remove the temp files used by VC.
3085
3086 * vc-hooks.el (vc-delete-automatic-version-backups):
3087 Don't fail if the directory doesn't exist.
3088
3089 * diff-mode.el (diff-default-read-only): New var.
3090 (diff-mode): Use it.
3091
3092 2001-09-22 Eli Zaretskii <eliz@is.elta.co.il>
3093
3094 * hexl.el (hexl-mode-map): Fix the change of 2001-08-23:
3095 Use make-keymap instead of copy-keymap, since copying the global
3096 keymap messes up the menu bar.
3097
3098 * info.el (Info-goto-node, Info-menu): Doc fix. Suggested by
3099 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
3100
3101 2001-09-21 Eli Zaretskii <eliz@is.elta.co.il>
3102
3103 * dired.el (dired-build-subdir-alist): Accept optional arg SWITCHES.
3104
3105 * dired-aux.el (dired-insert-subdir): Pass switches to
3106 dired-build-subdir-alist.
3107
3108 2001-09-21 Stephen Gildea <gildea@stop.mail-abuse.org>
3109
3110 * time-stamp.el (time-stamp-string-preprocess): Fix bug that
3111 caused %#a and %#b to be mis-formatted.
3112
3113 2001-09-20 Eli Zaretskii <eliz@is.elta.co.il>
3114
3115 * info.el (Info-file-list-for-emacs): Add elements for ada-mode,
3116 ccmode, emacs-mime, and eudc manuals.
3117
3118 2001-09-19 Sam Steingold <sds@gnu.org>
3119
3120 w32 find cannot be used with `grep-find'.
3121 * progmodes/compile.el (find-program): New variable.
3122 (grep-compute-defaults): Use it to set `grep-find-command'.
3123
3124 2001-09-19 Gerd Moellmann <gerd@gnu.org>
3125
3126 * ps-bdf.el (bdf-read-bitmap): Initialize returned values to defaults.
3127
3128 2001-09-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3129
3130 * ebnf2ps.el: Replace "Prologue" by "Prolog" in PostScript
3131 programming. Doc fix.
3132 (ebnf-version): New version (3.6).
3133 (ebnf-eps-begin): Data fix.
3134 (ebnf-begin-file): Code fix.
3135
3136 * ebnf-bnf.el: Doc fix.
3137 (ebnf-bnf-lex): Fix regexp for non-terminal and terminal tokens.
3138
3139 * ebnf-iso.el, ebnf-otz.el, ebnf-yac.el: Doc fix.
3140
3141 2001-09-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3142
3143 * ps-print.el: Better face mapping for black/white PostScript printers.
3144 Check if mark is active when printing a region. Doc fix.
3145 (ps-print-version): New version number (6.5.5).
3146 (ps-print-color-p): Customization fix.
3147 (ps-black-white-faces): New option.
3148 (ps-black-white-faces-alist): New internal var.
3149 (ps-count-lines-preprint, ps-print-preprint-region): New funs.
3150 (ps-print-region, ps-print-region-with-faces, ps-nb-pages-buffer)
3151 (ps-nb-pages-region): Interactive fix.
3152 (ps-extend-face-list, ps-extend-face, ps-setup, ps-begin-job)
3153 (ps-face-attributes, ps-generate-postscript-with-faces): Code fix.
3154
3155 2001-09-18 Eli Zaretskii <eliz@is.elta.co.il>
3156
3157 * dired.el (dired-move-to-filename-regexp): Allow one digit in the
3158 numeric month value, and allow the Kanji character after the it to
3159 be missing (happens with ls-lisp's output on Japanese versions of
3160 MS-Windows).
3161
3162 2001-09-18 Miles Bader <miles@gnu.org>
3163
3164 * diff-mode.el (diff-mode): Don't make the buffer read-only if
3165 it's empty (and thus probably a new patch file about to be edited).
3166
3167 2001-09-17 Gerd Moellmann <gerd@gnu.org>
3168
3169 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
3170 Check for '(' in column 0 of doc string.
3171
3172 * gs.el (gs-set-ghostview-window-prop): Use `elt' instead
3173 of `nth' so that using a vector as bounding-box works.
3174 From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
3175
3176 2001-09-17 Andre Spiegel <spiegel@gnu.org>
3177
3178 * vc.el (vc-annotate): Use current workfile version explicitly as
3179 a default, suggested by Gustav H\e,Ae\e(Bllberg <gustav@virtutech.se>.
3180
3181 2001-09-16 Eli Zaretskii <eliz@is.elta.co.il>
3182
3183 * ps-bdf.el (bdf-cache-file) <ms-dos>: Use _bdfcache.el, since
3184 convert-standard-filename doesn't guarantee that the .el extension
3185 is preserved.
3186
3187 * dos-fns.el (convert-standard-filename): Replace invalid
3188 characters only after converting dash/underscore to a period.
3189 (original-make-auto-save-file-name): New.
3190 (make-auto-save-file-name): New function, overrides the definition
3191 on files.el and calls the original function via
3192 original-make-auto-save-file-name.
3193
3194 * mail/rmail.el (top-level): Require mule-utils when compiling.
3195 (rmail-decode-babyl-format): Use detect-coding-with-priority
3196 instead of detect-coding-region, to favor detection of emacs-mule
3197 encoded Babyl files written by rmailout.el etc. Suggested by
3198 Kenichi Handa <handa@etl.go.jp>.
3199
3200 2001-09-14 Eli Zaretskii <eliz@is.elta.co.il>
3201
3202 * eshell/em-unix.el (eshell-shuffle-files, eshell-shuffle-files):
3203 Use `equal', not `=', since the device number can be a cons cell.
3204
3205 2001-09-14 Gerd Moellmann <gerd@gnu.org>
3206
3207 * simple.el: Comment out change of 2001-09-13.
3208
3209 2001-09-13 Milan Zamazal <pdm@zamazal.org>
3210
3211 * progmodes/compile.el (grep-compute-defaults): Don't set
3212 grep-command/grep-find-command when it is already non-nil.
3213 (grep-command): Make it a user option.
3214 (grep-find-command): Likewise.
3215
3216 2001-09-13 Michael Kifer <kifer@cs.sunysb.edu>
3217
3218 * viper-cmd.el (viper-replace-char-subr, viper-envelop-ESC-key):
3219 inhibit quit.
3220
3221 2001-09-13 Eli Zaretskii <eliz@is.elta.co.il>
3222
3223 * files.el (make-auto-save-file-name): If long file names are not
3224 supported on MS-DOS, truncate the file name to DOS 8+3 limits before
3225 generating an auto-save file name from it.
3226
3227 2001-09-13 Gerd Moellmann <gerd@gnu.org>
3228
3229 * ps-print.el (ps-print-region, ps-print-region-with-faces)
3230 (ps-nb-pages-region): Signal an error if called interactively
3231 and the mark is not active.
3232
3233 * simple.el (minibuffer-prompt-modification)
3234 (minibuffer-prompt-insertion): New functions.
3235 (minibuffer-prompt-properties): Use `modification-hooks' and
3236 `insert-in-front-hooks'.
3237
3238 2001-09-12 Richard M. Stallman <rms@gnu.org>
3239
3240 * textmodes/outline.el (outline-regexp): Doc fix.
3241 Initialize it in the defcustom, the usual way.
3242
3243 2001-09-12 Gerd Moellmann <gerd@gnu.org>
3244
3245 * ediff-mult.el (ediff-get-meta-info): Take into account that data
3246 from `ediff-meta-info' properties need not be an overlay.
3247 From David Ponce <dponce@voila.fr>.
3248
3249 * isearch.el (isearch-intersects-p): Fix end checks.
3250
3251 2001-09-11 Eli Zaretskii <a34785@is.elta.co.il>
3252
3253 * gud.el (dbx) <gud-dbx-use-stopformat-p>: Move this case into the
3254 `t' branch of `cond', since Irix 6.1 and up is a special case of
3255 the standard dbx interface.
3256
3257 2001-09-11 Miles Bader <miles@gnu.org>
3258
3259 * comint.el (comint-send-input): When waiting for echoed input,
3260 don't save the expected end position in `echo-end', so that things
3261 work properly even if the buffer is modified elsewhere at the same
3262 time [this happens if `comint-truncate-buffer' is used].
3263
3264 2001-09-11 Gerd Moellmann <gerd@gnu.org>
3265
3266 * textmodes/outline.el (outline-mode): Use `^' and a shy group
3267 when constructing imenu-generic-expression from outline-regexp.
3268
3269 2001-09-10 Eli Zaretskii <eliz@is.elta.co.il>
3270
3271 * eshell/em-unix.el (eshell-shuffle-files): Compare inodes with
3272 `equal' instead of `=', since they can be cons cells. From Nils
3273 Goesche <cartan@cartan.de>.
3274
3275 2001-09-10 Andre Spiegel <spiegel@gnu.org>
3276
3277 * vc.el (vc-annotate): Rewrote doc string.
3278
3279 2001-09-10 Eli Zaretskii <eliz@is.elta.co.il>
3280
3281 * time-stamp.el: Update Stephen Gildea's email address.
3282
3283 2001-09-10 Gerd Moellmann <gerd@gnu.org>
3284
3285 * mail/sendmail.el (mail-send): Obey mail-send-nonascii when
3286 enable-multibyte-characters = nil. From Hallvard B Furuseth
3287 <h.b.furuseth@usit.uio.no>.
3288
3289 2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
3290
3291 * ediff-init.el (ediff-highest-priority): Bug fix.
3292
3293 * viper-cmd.el (viper-special-read-and-insert-char): New function
3294 that reads a character and uses the current input method or
3295 iso-accents when appropriate.
3296
3297 * viper.el and all others: Corrections to the comment blocks at
3298 the top.
3299
3300 2001-09-09 Eli Zaretskii <eliz@is.elta.co.il>
3301
3302 * info.el (Info-goto-node): Doc fix.
3303
3304 2001-09-07 Gerd Moellmann <gerd@gnu.org>
3305
3306 * isearch.el (isearch-intersects-p): New function.
3307 (isearch-close-unnecessary-overlays): Renamed from *unecessary*,
3308 use isearch-intersects-p, and clean up.
3309
3310 2001-09-07 Eli Zaretskii <eliz@is.elta.co.il>
3311
3312 * textmodes/ispell.el (ispell-dictionary-alist-4): Add "german"
3313 and "german8", for the new German orthography dictionaries,
3314 (ispell-dictionary-alist-5, ispell-dictionary-alist-6): Rearrange
3315 the entries, to keep the line length balanced for loaddefs.el.
3316
3317 2001-09-07 Dr Francis J. Wright <F.J.Wright@qmw.ac.uk>
3318
3319 * comint.el (comint-send-input): Handle comint-process-echoes
3320 differently.
3321
3322 2001-09-07 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3323
3324 * locate.el (locate-insert-header): Remove unnecessary whitespace.
3325
3326 2001-09-07 Eli Zaretskii <eliz@is.elta.co.il>
3327
3328 * arc-mode.el (archive-dostime): Fix a typo in minutes' computation.
3329
3330 2001-09-07 Gerd Moellmann <gerd@gnu.org>
3331
3332 * server.el (server-switch-buffer):
3333 * textmodes/refer.el (refer-find-entry-internal):
3334 * term/sup-mouse.el (sup-pos-to-window):
3335 * term/bg-mouse.el (bg-window-from-x-y):
3336 * emacs-lisp/edebug.el (edebug-window-live-p):
3337 Use get-window-with-predicate.
3338
3339 * window.el (get-window-with-predicate): Renamed from some-window.
3340 (some-window): Make it an alias.
3341
3342 2001-09-06 Gerd Moellmann <gerd@gnu.org>
3343
3344 * simple.el (undo): Remove positions from buffer-undo-list up to
3345 the next undo boundary only.
3346
3347 2001-09-06 Eli Zaretskii <eliz@is.elta.co.il>
3348
3349 * makefile.nt (install): Don't copy sc.el. Reported by Richard
3350 Kim <ryk@dspwiz.com>
3351
3352 * cus-edit.el (custom-buffer-create-internal): Remove "100%" from
3353 the message "Creating customization items...done".
3354
3355 2001-09-05 Gerd Moellmann <gerd@gnu.org>
3356
3357 * font-lock.el (toplevel): Require `jit-lock' only if
3358 font-lock-support-mode is set to jit-lock-mode.
3359
3360 2001-09-05 Eli Zaretskii <eliz@is.elta.co.il>
3361
3362 * international/quail.el (quail-use-package, quail-inactivate)
3363 (quail-activate): Mention the hooks these functions run in their
3364 doc strings.
3365
3366 2001-09-05 Edward M. Reingold <reingold@iit.edu>
3367
3368 * cal-menu.el (calendar-mouse-view-other-diary-entries): Fix name
3369 of file in header of menu.
3370
3371 2001-09-04 Gerd Moellmann <gerd@gnu.org>
3372
3373 * env.el (setenv): Interactively, if VARIABLE has a current value,
3374 add that to the front of the history, as the doc string says.
3375
3376 * comint.el (comint-send-input): Change help-echo.
3377 From "Dr Francis J. Wright" <F.J.Wright@qmw.ac.uk>.
3378
3379 * bookmark.el (bookmark-write-file): Bind print-length and
3380 print-level to nil. From Tom Capey <tomc@edina.co.uk>.
3381
3382 * obsolete/uncompress.el: Moved there from lisp/.
3383
3384 * comint.el (comint-insert-clicked-input): Goto point-max before
3385 deleting previous input. From "Dr Francis J. Wright"
3386 <F.J.Wright@qmw.ac.uk>.
3387
3388 * simple.el (backward-word): Doc fix.
3389
3390 2001-09-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3391
3392 * emacs-lisp/levents.el, emacs-lisp/lucid.el, emacs-lisp/pp.el
3393 * uncompress.el, uniquify.el, vc.el, view.el, window.el
3394 * w32-fns.el: Add Keywords header.
3395
3396 2001-09-04 Eli Zaretskii <eliz@is.elta.co.il>
3397
3398 * menu-bar.el: Fix separators in the Edit menu. Bring "Fill" near
3399 "Text Properties". Suggested by Simon Marshall
3400 <Simon.Marshall@midas-kapiti.com>.
3401
3402 2001-09-04 Andrew Choi <akochoi@cse.cuhk.edu.hk>
3403
3404 * term/mac-win.el (mac-drag-n-drop): Decode file name by
3405 consulting the value of file-name-coding-system.
3406
3407 2001-09-03 Stefan Monnier <monnier@cs.yale.edu>
3408
3409 * help.el (describe-function-1): Save precomputed `file-name' rather
3410 than recomputing it (incorrectly) with `symbol-file'.
3411
3412 2001-09-03 Gerd Moellmann <gerd@gnu.org>
3413
3414 * international/isearch-x.el (isearch-exit-recursive-edit):
3415 Take three parameters, since it's used as an after-change-function.
3416
3417 * emacs-lisp/backquote.el (backquote-backquote-symbol)
3418 (backquote-unquote-symbol, backquote-splice-symbol): Remove `*'
3419 from doc strings.
3420
3421 2001-09-02 Milan Zamazal <pdm@zamazal.org>
3422
3423 * progmodes/glasses.el (glasses-convert-to-unreadable):
3424 Consider underscores as in `glasses-make-readable'.
3425
3426 2001-09-02 Eli Zaretskii <eliz@is.elta.co.il>
3427
3428 * progmodes/cmacexp.el (c-macro-preprocessor): Use "gcc -E" for
3429 MS-DOS, since cpp might not be available.
3430
3431 * menu-bar.el (menu-bar-edit-menu) <yank-menu, yank>:
3432 Mention "yank" in the help-echo text.
3433 Suggested by Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3434
3435 2001-09-01 Stefan Monnier <monnier@cs.yale.edu>
3436
3437 * newcomment.el (comment-indent): Insert spaces more carefully.
3438
3439 2001-08-31 Eli Zaretskii <eliz@is.elta.co.il>
3440
3441 * mail/emacsbug.el (report-emacs-bug): Make sure *Messages*
3442 exists. From Andy Petrusenco <andy@int.spb.ru>.
3443
3444 * hi-lock.el (hi-lock-unface-buffer): Don't call x-popup-menu if
3445 display-popup-menus-p returns nil. Suggested by Andy Petrusenco
3446 <andy@int.spb.ru>.
3447
3448 2001-08-31 Gerd Moellmann <gerd@gnu.org>
3449
3450 * isearch.el (isearch-mouse-2): Renamed from isearch-mouse-yank.
3451 Instead of running mouse-yank-at-click, see what the event is
3452 bound to outside Isearch and run that.
3453
3454 2001-08-31 Eli Zaretskii <eliz@is.elta.co.il>
3455
3456 * menu-bar.el (menu-bar-options-menu) <transient-mark-mode>:
3457 Fix the menu entry to mention transient-mark-mode.
3458
3459 2001-08-30 Gerd Moellmann <gerd@gnu.org>
3460
3461 * simple.el (eval-expression-print-level): Fix last change.
3462
3463 * bindings.el (mode-line-coding-system-map): New variable.
3464 (mode-line-mule-info): Give the "%Z" a local-map keymap.
3465
3466 * simple.el (eval-expression-print-level): Change the type
3467 of the defcustom to allow nil.
3468
3469 * emacs-lisp/find-gc.el: Moved here from lisp/.
3470
3471 * international/quail.el (quail-completion-1):
3472 Reverse the ((CHAR . DEFN) ...) list before processing it.
3473 From Kenichi Handa <handa@etl.go.jp>.
3474
3475 * obsolete/rsz-mini.el, obsolete/sun-curs.el, obsolete/sun-fns.el
3476 * obsolete/x-apollo.el, obsolete/x-menu.el: Moved here from lisp/.
3477
3478 2001-08-30 Eli Zaretskii <eliz@is.elta.co.il>
3479
3480 * toolbar/tool-bar.el (tool-bar-mode): Make it a no-op if images
3481 aren't supported. This avoids the annoying gray strip drawn by
3482 the Windows version instead of the missing tool bar.
3483
3484 2001-08-29 Gerd Moellmann <gerd@gnu.org>
3485
3486 * menu-bar.el (menu-bar-options-menu): Make option text, messages
3487 and tooltips more consistent. From "Marshall, Simon"
3488 <Simon.Marshall@midas-kapiti.com>.
3489
3490 * startup.el (fancy-splash-screens): Temporarily set
3491 minor-mode-map-alist to nil while displaying splash screens.
3492
3493 2001-08-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3494
3495 * buff-menu.el: Add Keywords header.
3496 Doc fix (C-x C-b is bound to list-buffers).
3497
3498 * dired-x.el: Add keyword files to get listed in finder.
3499 Remove confusing notes about GNU Emacs 19.
3500
3501 * dired.el, dired-aux.el: Add Keywords header.
3502
3503 2001-08-28 Andre Spiegel <spiegel@gnu.org>
3504
3505 * vc.el (vc-revert-file): Call the backend even if the FILE's
3506 contents can be reverted locally; pass new arg CONTENTS-DONE
3507 down to the backend.
3508
3509 * vc-cvs.el, vc-rcs.el, vc-sccs.el (vc-*-revert-file): Handle new
3510 optional arg CONTENTS-DONE.
3511
3512 2001-08-28 Andrew Innes <andrewi@gnu.org>
3513
3514 * makefile.nt (DONTCOMPILE): Sync list from makefile.w32-in.
3515
3516 2001-08-28 Eli Zaretskii <eliz@is.elta.co.il>
3517
3518 * makefile.nt (install): Copy more *.el files.
3519
3520 2001-08-28 Gerd Moellmann <gerd@gnu.org>
3521
3522 * dired.el (dired-mode-map): Bind `y' to dired-show-file-type
3523 instead of `w' which is already in use.
3524
3525 * gs.el (gs-load-image): Use sleep-for.
3526 From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
3527
3528 2001-08-28 Miles Bader <miles@gnu.org>
3529
3530 * replace.el (query-replace-regexp-eval): Return args from
3531 `interactive' form in correct order.
3532
3533 2001-08-28 Eli Zaretskii <eliz@is.elta.co.il>
3534
3535 * mouse.el (mouse-buffer-menu): If the buffer menu is split by
3536 major modes, don't create panes for modes for which
3537 mouse-buffer-menu-alist returns an empty alist.
3538
3539 2001-08-28 Thien-Thi Nguyen <ttn@gnu.org>
3540
3541 * progmodes/hideshow.el: Update first-line description.
3542 Sync comments w/ maintainer version 5.31.
3543
3544 (hs-isearch-open): Default value now `code'.
3545 Fix docstring to use "code blocks" vs "comment blocks",
3546 as opposed to "block" vs "comment".
3547 (hs-flag-region): Accept `hs-isearch-open' value
3548 of `block' as synonymous w/ `code'.
3549 (hs-hide-block-at-point): For code blocks, pass `code'
3550 to `hs-flag-region' instead of `block'.
3551
3552 2001-08-28 Miles Bader <miles@gnu.org>
3553
3554 * comint.el (comint-next-prompt): Don't loop infinitely if
3555 {next,previous}-single-char-property-change returns its input
3556 position when the search fails.
3557
3558 2001-08-27 Miles Bader <miles@gnu.org>
3559
3560 * comint.el (comint-get-old-input-default): Don't signal an error
3561 if point is not on an input field; instead, return the current
3562 line (using `comint-bol' to skip any prompt, in case we're not
3563 using fields at all).
3564
3565 * man.el (Man-mode-line-format): Variable removed.
3566 (Man-mode): Change `mode-line-buffer-identification' instead of
3567 `mode-line-format'.
3568
3569 2001-08-27 Gerd Moellmann <gerd@gnu.org>
3570
3571 * mail/sendmail.el (mail-send-hook): Remove a duplicate defcustom.
3572 From Simon Josefsson <jas@extundo.com>.
3573
3574 2001-08-26 Eli Zaretskii <eliz@is.elta.co.il>
3575
3576 * textmodes/texnfo-upd.el: Remove dots and exclams at end of error
3577 messages. From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3578
3579 * emacs-lisp/levents.el: Specify FSF as Maintainer. From Pavel
3580 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3581
3582 * emacs-lisp/lselect.el: Ditto.
3583
3584 * hexl.el (hexl-insert-multibyte-char, hexl-insert-char):
3585 Remove periods from the end of error message strings.
3586 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3587
3588 * progmodes/antlr-mode.el: Add Keywords header. From Pavel
3589 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3590
3591 * net/telnet.el: Ditto.
3592
3593 2001-08-26 Gerd Moellmann <gerd@gnu.org>
3594
3595 * hl-line.el (hl-line-mode): Add args INIT-VALUE, LIGHTER, and
3596 KEYMAP to the call to define-minor-mode.
3597
3598 2001-08-24 Eli Zaretskii <eliz@is.elta.co.il>
3599
3600 * term/internal.el (IT-character-translations) <hebrew-iso8859-8>:
3601 Replace some of the undefined characters with emulations of bidi
3602 formatting characters and Niqud as per SI 1311-1.
3603 (IT-unicode-translations): Ditto.
3604 (IT-display-table-setup, IT-setup-unicode-display):
3605 Fill characters without translations with dos-unsupported-char-glyph.
3606
3607 2001-08-24 Simon Josefsson <jas@extundo.com>
3608
3609 * hl-line.el (hl-line-mode): Don't be a global mode.
3610 (global-hl-line-mode): New function.
3611
3612 2001-08-24 Gerd Moellmann <gerd@gnu.org>
3613
3614 * gs.el (gs-load-image): Wait for GHOSTVIEW window property
3615 being reset by Ghostscript. Don't kill the gs process.
3616 From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
3617
3618 2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
3619
3620 * term/mac-win.el: Require scroll-bar.
3621
3622 2001-08-23 Stefan Monnier <monnier@cs.yale.edu>
3623
3624 * ebuff-menu.el (electric-buffer-list): Use list-buffers-noselect.
3625
3626 2001-08-23 Eli Zaretskii <eliz@is.elta.co.il>
3627
3628 * hexl.el (hexl-insert-multibyte-char) New function.
3629 (hexl-quoted-insert, hexl-self-insert-command)
3630 (hexl-insert-hex-char, hexl-insert-decimal-char)
3631 (hexl-insert-octal-char): Call it instead of hexl-insert-char.
3632 Fix the doc strings accordingly.
3633 (hexl-insert-char): Reject characters whose code is above 255.
3634 Doc fix.
3635 (hexl-mode-map): Copy the global keymap instead of creating a
3636 sparse keymap, and bind all self-inserting characters to
3637 hexl-self-insert-command.
3638
3639 2001-08-22 Stefan Monnier <monnier@cs.yale.edu>
3640
3641 * wid-edit.el (text): Re-order docstring correctly.
3642
3643 * mail/sendmail.el (mail-mode): Use adaptive-fill-regexp.
3644
3645 * textmodes/fill.el (adaptive-fill-regexp): Admit tabs as well.
3646
3647 2001-08-22 Eli Zaretskii <eliz@is.elta.co.il>
3648
3649 * simple.el (line-number-mode): Mention the variable
3650 line-number-display-limit-width in the doc string.
3651
3652 2001-08-22 Gerd Moellmann <gerd@gnu.org>
3653
3654 * bindings.el (mode-line-unbury-buffer): Add EVENT parameter.
3655 Temporarily select EVENT's window for switching buffers.
3656 (mode-line-bury-buffer): New function.
3657 (mode-line-buffer-identification-keymap): Use it instead of
3658 bury-buffer. Bind down-mouse events to prevent global down-mouse
3659 events from shining through.
3660
3661 2001-08-21 Stefan Monnier <monnier@cs.yale.edu>
3662
3663 * newcomment.el (comment-beginning): Make sure the comment-start
3664 we found isn't a comment-end (in cases where confusion is possible).
3665
3666 2001-08-22 Miles Bader <miles@gnu.org>
3667
3668 * emacs-lisp/bytecomp.el (byte-compile-file): Remove TARGET-FILE
3669 before writing it, so that hard-links don't see new version.
3670
3671 2001-08-21 Gerd Moellmann <gerd@gnu.org>
3672
3673 * gs.el (gs-set-ghostview-colors-window-prop):
3674 Call x-change-window-property with 3rd arg FRAME.
3675 (gs-load-image): Wait for a previous Ghostscript process
3676 to complete before starting a new one.
3677
3678 * image.el (image-type-regexps): Make sure that the TIFF
3679 pattern is only matched at the beginning of a string.
3680 From Markus Rost <rost@math.ohio-state.edu>.
3681
3682 * international/swedish.el: Pre-Mule file removed. From Jonas
3683 Oberg <jonas@gnu.org>.
3684
3685 2001-08-20 Rajesh Vaidheeswarran <rv@gnu.org>
3686
3687 * whitespace.el (whitespace-abort-on-error): Add custom variable
3688 to whitespace to abort a write-file if whitespace is detected in file.
3689
3690 * whitespace.el (whitespace-write-file-hook): Hook to be called
3691 when writing a file. If `whitespace-abort-on-error' is set, the
3692 write will abort on detecting whitespaces.
3693 If `whitespace-auto-cleanup' is set, the file will be cleaned
3694 automatically prior to writing.
3695
3696 * whitespace.el (whitespace-buffer-search): Let's not insert bogus
3697 whitespaces in the error output!
3698
3699 * whitespace.el (whitespace-check-indent-whitespace): Defaults to
3700 `indent-tabs-mode', since the latter notes user preferences on
3701 TABs anyway.
3702
3703 * whitespace.el (whitespace-version): 3.1. All of the above issues
3704 were raised by Fran\e,Ag\e(Bois Pinard, which led to the fixes described.
3705
3706 2001-08-20 Gerd Moellmann <gerd@gnu.org>
3707
3708 * textmodes/texnfo-upd.el (texinfo-every-node-update): Remove
3709 some spaces from a message. From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3710
3711 * whitespace.el (whitespace-global-mode): Add autoload cookie.
3712
3713 2001-08-20 Alex Schroeder <alex@gnu.org>
3714
3715 * sql.el (sql-db2): Doc change.
3716
3717 2001-08-20 Alex Schroeder <alex@gnu.org>
3718
3719 * sql.el (sql-postgres): Add the database at the end of the
3720 parameters instead of at the beginning.
3721 (sql-postgres-options): Doc change.
3722
3723 2001-08-17 Gerd Moellmann <gerd@gnu.org>
3724
3725 * custom.el (defcustom): Doc fix.
3726
3727 2001-08-16 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3728
3729 * ps-mule.el (find-composition): Check if (char-after POS)
3730 returns a valid character.
3731
3732 2001-08-16 Eli Zaretskii <eliz@is.elta.co.il>
3733
3734 * hexl.el (hexl-mode, hexl-mode-exit): Adjust hexl-max-address and
3735 original-point for extra CR characters that are added/removed when
3736 the buffer is written/read whose EOL type is -dos.
3737
3738 2001-08-16 Miles Bader <miles@gnu.org>
3739
3740 * simple.el (line-move): Undo previous change.
3741
3742 * comint.el (comint-send-input): Add `inhibit-line-move-field-capture'
3743 property to input-terminating `boundary' overlays to avoid
3744 line-move wierdness.
3745
3746 2001-08-16 Gerd Moellmann <gerd@gnu.org>
3747
3748 * lazy-lock.el (lazy-lock-fontify-region): Widen the current
3749 buffer in a save-restriction. Under one test case with Ediff,
3750 window-scroll-functions are run with a window start that's
3751 temporarily outside of the restriction.
3752
3753 2001-08-16 Robert J. Chassell <bug-texinfo@gnu.org>
3754
3755 * textmodes/texnfo-upd.el: Update copyright notice, fix minor typos.
3756 (texinfo-find-lower-level-node, texinfo-find-higher-level-node)
3757 (texinfo-menu-locate-entry-p, texinfo-start-menu-description)
3758 (texinfo-update-menu-region-beginning)
3759 (texinfo-update-menu-region-end, texinfo-find-pointer): Add new
3760 command, @ifnottex, to regexps, so it is found.
3761
3762 2001-08-16 Andrew Innes <andrewi@gnu.org>
3763
3764 * makefile.nt (DONTCOMPILE): Omit bindings.el.
3765 (DONTCOMPILE): Omit sc.el.
3766
3767 * makefile.w32-in (DONTCOMPILE): Omit bindings.el.
3768 (DONTCOMPILE): Omit sc.el.
3769
3770 2001-08-16 Gerd Moellmann <gerd@gnu.org>
3771
3772 * replace.el (occur): Bind inhibit-read-only to t.
3773
3774 2001-08-16 Miles Bader <miles@gnu.org>
3775
3776 * simple.el (line-move): Pass an ESCAPE-FROM-EDGE argument of t when
3777 calling `constrain-to-field', to avoid problems with comint prompts.
3778
3779 2001-08-15 Gerd Moellmann <gerd@gnu.org>
3780
3781 * emacs-lisp/cl-indent.el (lisp-indent-defmethod): New function.
3782 (toplevel): Set it as `common-lisp-indent-function' for `defmethod'.
3783
3784 * ediff-mult.el (ediff-get-meta-info): Fix the condition
3785 of a while-loop.
3786
3787 * Makefile.in (DONTCOMPILE): Remove sc.el.
3788
3789 * Makefile.in (finder_setwins): Renamed from nonobsolete_setwins.
3790 Don't include term/.
3791
3792 * mail/sc.el: Moved to obsolete/.
3793
3794 2001-08-14 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3795
3796 * ps-print.el: Change error function arguments to follow Emacs
3797 message convention. Doc fix.
3798 (ps-print-version): New version number (6.5.4).
3799 (coding-system-for-write): Change declaration position to avoid
3800 XEmacs compilation gripes.
3801 (coding-system-for-read, buffer-file-coding-system):
3802 Declarations to avoid XEmacs compilation gripes.
3803
3804 * ps-mule.el: Doc fix.
3805 (ps-mule-encode-header-string): If STRING is not a string, replace
3806 STRING by empty string.
3807
3808 2001-08-14 Eli Zaretskii <eliz@is.elta.co.il>
3809
3810 * frame.el (show-trailing-whitespace): Doc fix.
3811
3812 2001-08-13 Eli Zaretskii <eliz@is.elta.co.il>
3813
3814 * desktop.el (desktop-save): Insert the coding: tag before
3815 desktop-header.
3816
3817 2001-08-13 Gerd Moellmann <gerd@gnu.org>
3818
3819 * Makefile.in (TAGS, TAGS-LISP): Remove "loaddefs.el" including
3820 its path from $els.
3821
3822 * image.el (image-jpeg-p): Fix call of substring.
3823
3824 2001-08-10 Gerd Moellmann <gerd@gnu.org>
3825
3826 * play/animate.el (animate-string): Doc fix. Use a buffer
3827 name with stars in it.
3828 (animate-sequence): New function.
3829 From Richard Stallman <rms@gnu.org>.
3830
3831 * frame.el (select-frame-set-input-focus): New function
3832 extracted from other-frame.
3833 (other-frame): Use it.
3834 (next-multiframe-window, previous-multiframe-window): Use it.
3835
3836 * isearch.el (isearch-other-meta-char): Don't switch to the
3837 buffer of a window clicked on, when the current buffer is
3838 in Isearch mode.
3839
3840 * image.el (image-jpeg-p): Test for APPn markers in the range
3841 #xe0..#xef.
3842
3843 2001-08-09 Gerd Moellmann <gerd@gnu.org>
3844
3845 * desktop.el (desktop-save): Don't use concat to form a file
3846 name, use expand-file-name.
3847
3848 * mouse.el (mouse-delete-window): Do nothing if frame has just
3849 one window.
3850
3851 * bindings.el (minor-mode-alist): Use mode-line-minor-mode-keymap
3852 for the minor mode name.
3853
3854 * view.el (toplevel): Use mode-line-minor-mode-keymap for the
3855 minor mode name.
3856
3857 * time.el (display-time-string-forms): Use make-mode-line-mouse-map
3858 instead of make-mode-line-mouse2-map.
3859
3860 * subr.el (add-minor-mode): Use mode-line-minor-mode-keymap for
3861 the minor mode name.
3862
3863 * emacs-lisp/easy-mmode.el (define-minor-mode):
3864 Use mode-line-minor-mode-keymap for the minor mode name.
3865
3866 * calendar/calendar.el (calendar-mode-line-format):
3867 Use make-mode-line-mouse-map instead of make-mode-line-mouse2-map.
3868
3869 * bindings.el (make-mode-line-mouse-map): Renamed from
3870 make-mode-line-mouse2-map. Take additional arg MOUSE.
3871 (mode-line-modified): Use mouse-3 instead of mouse-2.
3872 (mode-line-buffer-identification-keymap): Bind keys differently.
3873 (propertized-buffer-identification): Adapt help-echo to new bindings.
3874
3875 * bindings.el (mode-line-format): Specify help-echo for line
3876 number, column number and buffer-percent part of the mode-line.
3877
3878 * image.el (image-type-regexps): Allow whitespace at the start
3879 of the image data for XPM, XBM and Postscript, which are
3880 text files.
3881 (image-jpeg-p): Correct calculation of next field offset.
3882
3883 2001-08-08 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3884
3885 * battery.el: Fix typo.
3886
3887 2001-08-08 Gerd Moellmann <gerd@gnu.org>
3888
3889 * image.el (image-type-regexps): Allow predicates. Change the way
3890 JPEG images are recognized.
3891 (image-jpeg-p): New function.
3892 (image-type-from-data): Handle predicates in image-type-regexps.
3893
3894 * emacs-lisp/edebug.el (edebug-read-function): Fix handling of
3895 #:, #x, #o, and similar constructs.
3896
3897 2001-08-07 Gerd Moellmann <gerd@gnu.org>
3898
3899 * vc.el (vc-transfer-file): Fix malformed autoload cookie.
3900
3901 * emulation/viper-util.el (viper-file-checked-in-p): Use `and'
3902 instead of `progn'.
3903
3904 * tar-mode.el (tar-extract): Avoid generating a new buffer
3905 for each file visited. From Markus Rost <rost@math.ohio-state.edu>.
3906
3907 * textmodes/paragraphs.el (forward-sentence): Avoid building
3908 a regexp from sentence-end. From Kenichi Handa <handa@etl.go.jp>.
3909
3910 * progmodes/executable.el (executable-set-magic):
3911 If executable-find returns a quoted file name, unquote it before
3912 inserting it.
3913
3914 * image.el (image-type-regexps): For JPEG files, use a regexp
3915 derived from the JFIF spec.
3916
3917 * image.el (image-type-regexps): Use `\`' instead of `^' in
3918 most regular expressions.
3919
3920 2001-08-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3921
3922 * play/animate.el: Re-insert a reference to re-inserted function.
3923
3924 2001-08-06 Gerd Moellmann <gerd@gnu.org>
3925
3926 * help.el (describe-function-1): Use find-function-search-for-symbol
3927 instead of find-function-noselect because the latter follows aliases.
3928
3929 * play/animate.el (animate-birthday-present): Re-insert.
3930
3931 * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
3932 Handle old-style menu definitions.
3933
3934 2001-08-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3935
3936 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/page.el,
3937 * textmodes/text-mode.el, textmodes/two-column.el: Keywords added.
3938
3939 * play/studly.el, mail/unrmail.el, emacs-lisp/lucid.el,
3940 * emulation/pc-mode.el, diff.el, textmodes/fill.el, abbrev.el,
3941 * add-log.el, faces.el, mail/sc.el: Specify FSF as Maintainer.
3942
3943 2001-08-05 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3944
3945 * textmodes/tildify.el: Milan Zamazal has new address.
3946
3947 2001-08-03 Gerd Moellmann <gerd@gnu.org>
3948
3949 * custom.el (custom-set-variables): Don't test `custom-requests'
3950 properties, check the third element of the options passed to
3951 custom-set-variables instead.
3952
3953 * info.el (info-insert-file-contents): Use info-file-exists-p
3954 instead of file-exists-p.
3955
3956 * play/zone.el (zone-pgm-stress): Use unwind-protect to make sure
3957 the mode-line face is restored. Fix several bugs.
3958
3959 * replace.el (perform-replace): Doc fix.
3960
3961 2001-08-02 Francesco Potorti` <pot@gnu.org>
3962
3963 * uniquify.el (uniquify-ref-base, uniquify-ref-filename)
3964 (uniquify-ref-buffer, uniquify-ref-proposed): New functions.
3965 (uniquify-fix-item-base, uniquify-fix-item-filename)
3966 (uniquify-fix-item-buffer, uniquify-fix-item-proposed): Deleted.
3967 Callers changed.
3968 (uniquify-set-proposed): Changed to work with a vector item.
3969 (uniquify-rationalize-file-buffer-names): Use a list of arrays for
3970 the fix list, and a list of strings for the non-file buffer
3971 names. Both changes reduce consing.
3972 (uniquify-rationalize-a-list): Local variable renaming.
3973 (uniquify-rationalize-conflicting-sublist): Use member instead of
3974 assoc.
3975 (uniquify-rename-buffer): Use unless instead of if not.
3976
3977 2001-08-02 Gerd Moellmann <gerd@gnu.org>
3978
3979 * recentf.el (recentf-dump-variable): Handle a value of nil correctly.
3980
3981 * custom.el (custom-set-variables): Set options with :require
3982 clauses last.
3983
3984 * custom.el (defcustom): Doc fix.
3985
3986 * Makefile.in (TAGS, TAGS-LISP): Exclude loaddefs.el.
3987
3988 2001-08-01 Eli Zaretskii <eliz@is.elta.co.il>
3989
3990 * man.el (man): Mention Man-switches in the doc string.
3991 (Man-switches): Mention -a in the doc string.
3992
3993 * textmodes/ispell.el (ispell-alternate-dictionary):
3994 Add /usr/share/lib/dict/words, for Irix.
3995
3996 * bindings.el: Bind shifted and control-shifted kp-* keys to the
3997 corresponding non-kp keys. Suggested by Stephen Gildea
3998 <gildea@stop.mail-abuse.org>.
3999
4000 2001-08-01 Francesco Potorti` <pot@gnu.org>
4001
4002 * uniquify.el: These changes correct a corner case that the old
4003 code managed correctly.
4004 (uniquify-fix-item-proposed): Renamed from
4005 uniquify-fix-item-min-proposed.
4006 (uniquify-set-proposed): New function.
4007 (uniquify-rationalize-file-buffer-names): Code reshuffled for
4008 clarity and speed.
4009 (uniquify-item-greaterp): Substitutes uniquify-item-lessp.
4010 This is equivalent to what the old code did.
4011 (uniquify-rationalize-a-list): Never recompute the proposed
4012 name. Sort the conflicting sublist before rationalising it: this
4013 is equivalent to what the old code did, but one directory element
4014 at a time, and only when necessary.
4015 (uniquify-rationalize-conflicting-sublist): Recompute here the
4016 proposed name.
4017
4018 2001-08-01 Gerd Moellmann <gerd@gnu.org>
4019
4020 * play/animate.el: Add Keywords and Maintainer. Remove a
4021 reference to a removed function.
4022
4023 * play/animate.el (animate-string): Handle case that the string is
4024 longer than the window is wide.
4025
4026 2001-07-31 Gerd Moellmann <gerd@gnu.org>
4027
4028 * desktop.el (desktop-save): Bind coding-system-for-write to
4029 `emacs-mule' for write-region.
4030
4031 * delsel.el (delete-selection-pre-hook): Don't set this-command
4032 to `ignore' if the region is empty.
4033
4034 * international/mule.el (set-keyboard-coding-system):
4035 Set keyboard-coding-system.
4036
4037 * smerge-mode.el (smerge-mode): Check if `font-lock-mode' is bound
4038 before accessing it.
4039
4040 2001-07-30 Andreas Schwab <schwab@suse.de>
4041
4042 * menu-bar.el (toggle-highlight-paren-mode):
4043 Use `(show-paren-mode)' as body.
4044
4045 2001-07-30 Andre Spiegel <spiegel@gnu.org>
4046
4047 * vc.el (vc-checkout-hook): New hook.
4048 (vc-checkout): Run it.
4049
4050 2001-07-30 Eli Zaretskii <eliz@is.elta.co.il>
4051
4052 * progmodes/make-mode.el (makefile-macroassign-regex):
4053 Recognize the ?= operator. From Jonathan Kamens <jik@curl.com>.
4054
4055 2001-07-30 Gerd Moellmann <gerd@gnu.org>
4056
4057 * vc.el (vc-switch-backend): Fix autoload cookie.
4058
4059 * desktop.el (desktop-save): Add `-*- coding: emacs-mule -*-' to
4060 the desktop file.
4061
4062 2001-07-30 Simon Josefsson <jas@extundo.com>
4063
4064 * mail/mail-utils.el (mail-strip-quoted-names): Replace text
4065 literally. Reported by Sean Rima <sean@**Delete**.tcob1.net>.
4066
4067 2001-07-27 Gerd Moellmann <gerd@gnu.org>
4068
4069 * emacs-lisp/lisp-mode.el (last-sexp-setup-props): New function.
4070 (last-sexp-toggle-display): Renamed from last-sexp-print.
4071 (last-sexp-toggle-display, eval-last-sexp-1):
4072 Use last-sexp-setup-props.
4073
4074 * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button):
4075 New user-options.
4076 (mouse-wheel-change-button): New function.
4077 (mouse-wheel-mode): Use mouse-wheel-{up,down}-button.
4078 (mwheel-scroll): Ditto.
4079
4080 2001-07-26 Gerd Moellmann <gerd@gnu.org>
4081
4082 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Don't search for
4083 `...', compare with unabbreviated printed representation instead.
4084 (last-sexp-print): Bind print-length and print-level to nil.
4085
4086 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Look for a `...'
4087 before assigning text properties. Make properties rear-nonsticky.
4088
4089 * emacs-lisp/lisp-mode.el (last-sexp-print): New function.
4090 (eval-last-sexp-1): Give printed text a `keymap' property and bind
4091 <mouse-2> and <RET> in that map to a function printing the
4092 unabbreviated value.
4093
4094 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): If standard-output
4095 is a buffer, put a text property `printed-value' on the printed
4096 representation, with the Lisp object printed as value.
4097
4098 2001-07-25 Eli Zaretskii <eliz@is.elta.co.il>
4099
4100 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-defun):
4101 Mention the effect of eval-expression-print-length and
4102 eval-expression-print-level in the doc strings. Suggested by
4103 Kevin Gallagher <kevingal@onramp.net>.
4104
4105 2001-07-25 Gerd Moellmann <gerd@gnu.org>
4106
4107 * xt-mouse.el (xterm-mouse-event): Recognize control sequences
4108 for buttons > 3.
4109 (xterm-mouse-translate): Handle the case that we don't get a
4110 down-event.
4111
4112 * emacs-lisp/find-func.el (find-function-regexp):
4113 Add easy-mmode-define-global-mode to the regexp. Allow newlines
4114 in front of the function name.
4115
4116 * isearch.el (isearch-other-meta-char): Fix last change.
4117
4118 * isearch.el (isearch-other-meta-char): Don't modify mode-line and
4119 similar events for which fake prefix keys are generated. It's no
4120 longer necessary since read_key_sequence doesn't modify these
4121 events for internal purposes anymore.
4122
4123 * files.el (auto-mode-alist): Use nroff-mode for files ending
4124 in `.9'. From Assar Westerlund <assar@stacken.kth.se>.
4125
4126 2001-07-24 Eli Zaretskii <eliz@is.elta.co.il>
4127
4128 * avoid.el (mouse-avoidance-too-close-p): If the frame lacks a
4129 tool-bar-lines parameter, behave as if its value were zero.
4130 (mouse-avoidance-set-pointer-shape): Don't do anything if
4131 x-pointer-shape is not boundp.
4132
4133 2001-07-23 Francesco Potorti` <pot@gnu.org>
4134
4135 * uniquify.el: Overall speedup changes when using many buffers.
4136 (uniquify-fix-item-base, uniquify-fix-item-filename)
4137 (uniquify-fix-item-buffer): Changed defmacro to defalias (cosmetic).
4138 (uniquify-fix-item-unrationalized-buffer): Deleted: was the fourth
4139 place in the item, but was never used.
4140 (uniquify-fix-item-min-proposed): New defalias: the fourth place
4141 in the item is now used as cache for the proposed name.
4142 (uniquify-rationalize-file-buffer-names): Move computation made on
4143 newbuffile out of the loop, in the newbuffile-nd local var.
4144 Use dolist (cosmetic change). Compute the proposed name for the most
4145 common case and cache it in the fourth place in the item.
4146 (uniquify-rationalize-file-buffer-names): Used to return a a list
4147 of buffer whose name was changed, but that return value was never used.
4148 (uniquify-item-lessp): Replaces uniquify-filename-lessp, works on
4149 the cached proposed name, does much less consing and is quicker.
4150 (uniquify-filename-lessp): Deleted.
4151 (uniquify-rationalize-a-list): Use dolist (cosmetic change).
4152 Do not bind locally the uniquify-possibly-resolvable flag. Use the
4153 cached proposed name is possible.
4154 (uniquify-get-proposed-name): Arguments changed, callers changed.
4155 (uniquify-rationalize-conflicting-sublist): Explicitely reset the
4156 uniquify-possibly-resolvable flag, which is no more bound locally.
4157 (uniquify-rename-buffer): Do not set the old unrationalised-buffer
4158 flag, which does not exist any more.
4159
4160 2001-07-23 Eli Zaretskii <eliz@is.elta.co.il>
4161
4162 * term/internal.el (IT-unicode-translations): Fix the appearance of
4163 "6`".
4164
4165 * progmodes/compile.el (compile-internal): If EMACS is already
4166 defined in the environment, don't override its value.
4167
4168 2001-07-23 Gerd Moellmann <gerd@gnu.org>
4169
4170 * play/fortune.el: Undo change of 2001-07-13.
4171 Fix autoload cookies. Add types to defcustoms.
4172 (fortune) <defgroup>: Add :link.
4173 (fortune-from-region): Use eq, not eql.
4174 From Dave Love <fx@gnu.org>.
4175
4176 * play/animate.el (animate-birthday-present): Function removed.
4177
4178 * play/animate.el: New file.
4179
4180 2001-07-22 Eli Zaretskii <eliz@is.elta.co.il>
4181
4182 * startup.el (normal-top-level-add-subdirs-to-load-path):
4183 On Windows, put into normal-top-level-add-subdirs-inode-list the
4184 canonicalized names of the directories instead of inode numbers.
4185
4186 2001-07-21 Michael Kifer <kifer@cs.sunysb.edu>
4187
4188 * ediff-util.el: Copyright years.
4189 (ediff-choose-syntax-table): New function.
4190 (ediff-setup): Use ediff-choose-syntax-table.
4191 (ediff-file-checked-out-p,ediff-file-checked-in-p): Check if
4192 vc-state is available.
4193 (ediff-make-temp-file): Use ediff-coding-system-for-write.
4194
4195 * ediff-init.el (ediff-with-syntax-table): New macro, uses
4196 with-syntax-table.
4197 (ediff-coding-system-for-read): From ediff-diff.el
4198 (ediff-coding-system-for-write): New variable.
4199 (ediff-highest-priority): Fixed the bug having to do with disappearing
4200 overlays.
4201 (ediff-file-remote-p): Use file-remote-p, if available.
4202 (ediff-listable-file): New function.
4203 (ediff-file-attributes): Use ediff-listable-file.
4204
4205 * ediff-mult.el (ediff-meta-insert-file-info1):
4206 Use ediff-listable-file.
4207
4208 * ediff-ptch.el (ediff-prompt-for-patch-file):
4209 Use ediff-coding-system-for-read.
4210 (ediff-patch-file-internal): Use ediff-coding-system-for-write.
4211
4212 * ediff-diff.el (ediff-coding-system-for-read): Moved to ediff-init.el.
4213 (ediff-match-diff3-line,ediff-get-diff3-group): Improved pattern.
4214
4215 * ediff.el: Date of last update, copyright years.
4216
4217 * ediff-wind (ediff-setup-control-frame): Nill->nil.
4218
4219 * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
4220 of Scott Bronson.
4221 (ex-cmd-assoc,ex-compile,ex-cmd-one-letr): New functions.
4222 (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
4223 Deleted functions.
4224 (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
4225 ex-token-list.
4226 (viper-get-ex-address-subr): Convert registers to char data type.
4227
4228 * viper-util.el (viper-int-to-char,viper-char-equal): New functions.
4229 (viper-memq-char): Use viper-int-to-char.
4230 (viper-file-checked-in-p): Use vc-locking-user, if vc doesn't have
4231 vc-locking-state.
4232 (viper-read-key): Use viper-read-key-sequence.
4233
4234 * viper.el (viper-major-mode-modifier-list):
4235 Added inferior-emacs-lisp-mode.
4236 (this-major-mode-requires-vi-state): New function that uses simple
4237 heuristics to decide if vi state is appropriate.
4238 (set-viper-state-in-major-mode): Use this-major-mode-requires-vi-state.
4239 (viper-non-hook-settings): Don't advise read-key-sequence.
4240 (viper-read-key-sequence): New function that replaces the
4241 previously used advice to read-key-sequence.
4242
4243 * viper-cmd.el (viper-test-com-defun,viper-exec-change)
4244 (viper-exec-Change,viper-execute-com,viper-insert,viper-append)
4245 (viper-Append,viper-Insert,viper-open-line,viper-Open-line)
4246 (viper-open-line-at-point,viper-substitute,viper-overwrite)
4247 (viper-replace-char-subr,viper-forward-word,viper-forward-Word):
4248 Got rid of the negative character hack.
4249 (viper-escape-to-state,viper-replace-state-exit-cmd):
4250 Use viper-read-key-sequence.
4251 (viper-envelop-ESC-key): No need for ad-get-orig-definition.
4252 (viper-minibuffer-standard-hook,viper-read-string-with-history):
4253 Don't override existing minibuffer-setup-hook.
4254 (viper-mark-point,viper-goto-mark-subr,viper-brac-function):
4255 Convert registers to char data type.
4256 (viper-autoindent): Use viper-indent-line.
4257
4258 * viper-keym.el: Use viper-exec-key-in-emacs.
4259
4260 2001-07-20 Stefan Monnier <monnier@cs.yale.edu>
4261
4262 * server.el (server-visit-files): Fix variable name typo.
4263
4264 2001-07-20 Gerd Moellmann <gerd@gnu.org>
4265
4266 * simple.el (delete-trailing-whitespace): Save match data
4267 around looking-at. From Markus Rost <rost@math.ohio-state.edu>.
4268
4269 2001-07-19 Stefan Monnier <monnier@cs.yale.edu>
4270
4271 * progmodes/compile.el (compilation-parse-errors): `linenum' might
4272 return a this-error using the alternative format (a pair of markers).
4273
4274 2001-07-19 Gerd Moellmann <gerd@gnu.org>
4275
4276 * font-lock.el (c++-keywords): Add Standard C++ operator names.
4277
4278 * mail/mh-utils.el (mh-find-progs): Also search in `lib'.
4279 From Mats Bengtsson <mats.bengtsson@s3.kth.se>,
4280
4281 2001-07-17 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4282
4283 * international/iso-transl.el: Fix typo in the header of the file.
4284
4285 * textmodes/picture.el (picture): Doc fix.
4286
4287 * international/ja-dic-cnv.el (skkdic-convert): Some fixes to
4288 follow coding conventions in generated files.
4289
4290 2001-07-17 Eli Zaretskii <eliz@is.elta.co.il>
4291
4292 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
4293 (tool-bar-add-item): Don't call image-related primitives if the
4294 display doesn't support images.
4295
4296 * frame.el (display-images-p): New function.
4297
4298 2001-07-17 Gerd Moellmann <gerd@gnu.org>
4299
4300 * server.el (server-visit-files): Handle the case the specified
4301 column number is <= 0.
4302
4303 2001-07-17 Jan Nieuwenhuizen <jan@netland.nl>
4304
4305 * startup.el (command-line-1): Add support for +LINE:COLUMN
4306 command line argument.
4307
4308 2000-07-17 Han-Wen Nienhuys <hanwen@cs.uu.nl>
4309
4310 * server.el (server-process-filter, server-visit-files):
4311 Add support for +LINE:COLUMN style emacsclient calls.
4312
4313 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4314
4315 * emacs-lisp/easy-mmode.el: Add Keywords header.
4316
4317 * play/pong.el: Author has new address.
4318
4319 * play/landmark.el: Author is no more reachable.
4320
4321 * play/handwrite.el: Author is no more reachable.
4322
4323 2001-07-17 Stefan Monnier <monnier@cs.yale.edu>
4324
4325 * term/sun.el (ignore-key, sun-esc-bracket, meta-flag): Remove.
4326 (sun-raw-prefix): Replace t3, t4, t6, and t7 with f3, f4, f6 and f7.
4327 Complete bindings for F<1..12> keys.
4328 (global-map): Remove `undo' binding (already in the default).
4329 Replace `t<n>' bindings with `f<n>' bindings.
4330
4331 2001-07-16 Stefan Monnier <monnier@cs.yale.edu>
4332
4333 * progmodes/tcl.el (tcl-fill-mode-map): Use tcl-indent-exp.
4334 (tcl-mode): Use tcl-add-log-defun.
4335 (tcl-indent-line): Use tcl-calculate-indent.
4336 (tcl-calculate-indent): Renamed from calculate-tcl-indent.
4337 (tcl-indent-exp): Renamed from indent-tcl-exp.
4338 (tcl-add-log-defun): Renamed from add-log-tcl-defun.
4339 (tcl-indent-for-comment): Call comment-indent-function properly
4340 and handle the case where it returns nil.
4341
4342 2001-07-16 Gerd Moellmann <gerd@gnu.org>
4343
4344 * calendar/cal-islam.el (calendar-goto-islamic-date):
4345 Remove autoload cookie.
4346
4347 * calendar/calendar.el (calendar-goto-islamic-date):
4348 Add call to autoload.
4349
4350 2001-07-16 Stefan Monnier <monnier@cs.yale.edu>
4351
4352 * progmodes/ada-mode.el (ada-mode): Avoid unneeded version checks.
4353 Don't change compile-auto-highlight globally.
4354 Don't bother with `font-lock-defaults' property since XEmacs
4355 also understands the `font-lock-defaults' variable.
4356 Use make-local-variable rather than make-variable-buffer-local.
4357 Don't `defconst' comment-indent-function: keep the default.
4358 Call easy-menu-add unconditionally.
4359 (ada-create-keymap): Use [(shift tab)] so it works on both Emacsen.
4360 (ada-create-menu): Use :included for Emacs as well.
4361
4362 * vc.el (vc-do-command): Autoload.
4363
4364 * progmodes/ada-xref.el (ada-xref-initialize): Fix call to add-hook.
4365
4366 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4367
4368 * ps-print.el: Fix Author: header.
4369
4370 2001-07-16 Gerd Moellmann <gerd@gnu.org>
4371
4372 * mouse-sel.el (mouse-sel-bindings): Instead of unbinding
4373 mouse-1 etc., bind them to `ignore'.
4374
4375 * eshell/esh-mode.el (eshell-send-invisible): Renamed from
4376 send-invisible, which is already defined in Comint.
4377 (eshell-watch-for-password-prompt): Use it.
4378
4379 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4380
4381 * which-func.el (which-func-mode): Doc fix.
4382
4383 * align.el, apropos.el, autorevert.el, battery.el, bookmark.el,
4384 * calculator.el, calendar/todo-mode.el, complete.el, cus-dep.el,
4385 * cus-edit.el, cus-face.el, delim-col.el, dos-fns.el, double.el,
4386 * edmacro.el, elide-head.el, emacs-lisp/autoload.el,
4387 * emacs-lisp/checkdoc.el, emacs-lisp/cl-compat.el,
4388 * emacs-lisp/cl-specs.el, emacs-lisp/copyright.el,
4389 * emacs-lisp/cust-print.el, emacs-lisp/easy-mmode.el,
4390 * emacs-lisp/elint.el, emacs-lisp/ewoc.el, emacs-lisp/find-func.el,
4391 * emacs-lisp/pp.el, emacs-lisp/re-builder.el, emacs-lisp/shadow.el,
4392 * emacs-lisp/sregex.el, emerge.el, emulation/edt-lk201.el,
4393 * emulation/edt-mapper.el, emulation/edt-pc.el,
4394 * emulation/edt-vt100.el, emulation/edt.el, emulation/pc-select.el,
4395 * emulation/tpu-edt.el, emulation/tpu-extras.el,
4396 * emulation/tpu-mapper.el, emulation/vip.el, expand.el, finder.el,
4397 * foldout.el, follow.el, format.el, forms-d2.el, forms.el,
4398 * generic.el, hi-lock.el, hilit-chg.el, hippie-exp.el, info-look.el,
4399 * international/isearch-x.el, international/iso-cvt.el,
4400 * international/ogonek.el, international/quail.el,
4401 * international/utf-8.el, jit-lock.el, language/devan-util.el,
4402 * language/devanagari.el, language/ethio-util.el,
4403 * language/ethiopic.el, language/european.el, language/indian.el,
4404 * language/romanian.el, language/tibet-util.el, language/tibetan.el,
4405 * mail/feedmail.el, mail/footnote.el, mail/mail-hist.el,
4406 * mail/mailheader.el, mail/mspools.el, mail/supercite.el,
4407 * mouse-sel.el, net/browse-url.el, net/net-utils.el,
4408 * net/quickurl.el, net/snmp-mode.el, net/webjump.el,
4409 * net/zone-mode.el, pcomplete.el, progmodes/antlr-mode.el,
4410 * progmodes/autoconf.el, progmodes/cmacexp.el,
4411 * progmodes/cperl-mode.el, progmodes/cpp.el, progmodes/cwarn.el,
4412 * progmodes/delphi.el, progmodes/ebnf-bnf.el, progmodes/ebnf-iso.el,
4413 * progmodes/ebnf-otz.el, progmodes/ebnf-yac.el,
4414 * progmodes/ebnf2ps.el, progmodes/executable.el,
4415 * progmodes/fortran.el, progmodes/idlw-shell.el,
4416 * progmodes/idlw-toolbar.el, progmodes/idlwave.el,
4417 * progmodes/m4-mode.el, progmodes/mantemp.el,
4418 * progmodes/meta-mode.el, progmodes/octave-inf.el,
4419 * progmodes/ps-mode.el, progmodes/scheme.el, progmodes/simula.el,
4420 * progmodes/tcl.el, ps-bdf.el, ps-mule.el, ps-print.el, recentf.el,
4421 * rect.el, regi.el, rsz-mini.el, s-region.el, scroll-all.el,
4422 * shadowfile.el, speedbar.el, term/AT386.el, term/internal.el,
4423 * term/iris-ansi.el, term/mac-win.el, term/tvi970.el,
4424 * textmodes/artist.el, textmodes/flyspell.el, textmodes/ispell.el,
4425 * textmodes/page-ext.el, textmodes/refer.el, textmodes/texinfmt.el,
4426 * textmodes/texinfo.el, textmodes/texnfo-upd.el,
4427 * textmodes/two-column.el, time-stamp.el, timezone.el,
4428 * toolbar/tool-bar.el, vc-rcs.el, vc-sccs.el, view.el, w32-fns.el,
4429 * which-func.el, whitespace.el, wid-browse.el, widget.el,
4430 * windmove.el, woman.el, xt-mouse.el: Some fixes to follow coding
4431 conventions.
4432
4433 2001-07-16 Gerd Moellmann <gerd@gnu.org>
4434
4435 * simple.el (set-variable): Require 'cus-edit' instead of
4436 `wid-edit', so that the Custom widgets get defined.
4437
4438 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4439
4440 * allout.el: A fix to follow coding conventions.
4441
4442 * find-lisp.el: A fix to follow coding conventions.
4443
4444 * term/w32-win.el: A fix to follow coding conventions.
4445
4446 * textmodes/sgml-mode.el: A fix to follow coding conventions.
4447
4448 * term/xterm.el: A fix to follow coding conventions.
4449
4450 * term/news.el: A fix to follow coding conventions.
4451
4452 * emulation/vi.el: A fix to follow coding conventions, Maintainer:
4453 header line fixed.
4454
4455 * sun-curs.el: Fix Maintainer: header line.
4456
4457 * emacs-lisp/easymenu.el: Address of the author added.
4458
4459 2001-07-16 Gerd Moellmann <gerd@gnu.org>
4460
4461 * dired.el (dired-insert-set-properties): Fix invalid mouse-face
4462 property.
4463
4464 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4465
4466 * play/5x5.el, play/decipher.el, play/dunnet.el, play/fortune.el,
4467 * play/gamegrid.el, play/handwrite.el, play/landmark.el,
4468 * play/morse.el, play/pong.el, play/snake.el, play/tetris.el:
4469 Some fixes to follow coding conventions.
4470
4471 2001-07-16 Gerd Moellmann <gerd@gnu.org>
4472
4473 * which-func.el (which-func-mode): Doc fix.
4474
4475 2001-07-15 Stefan Monnier <monnier@cs.yale.edu>
4476
4477 * net/rcompile.el (remote-compile): Use make-local-variable.
4478
4479 * progmodes/hideshow.el (hs-minor-mode): Use make-local-variable.
4480
4481 * progmodes/make-mode.el (makefile-browse): Use make-local-variable.
4482
4483 * mail/reporter.el (reporter-submit-bug-report):
4484 Don't abuse make-variable-buffer-local. Fix call to add-hook.
4485
4486 2001-07-15 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4487
4488 * calendar/cal-china.el, calendar/cal-coptic.el,
4489 * calendar/cal-dst.el, calendar/cal-french.el,
4490 * calendar/cal-hebrew.el, calendar/cal-islam.el,
4491 * calendar/cal-iso.el, calendar/cal-julian.el,
4492 * calendar/cal-mayan.el, calendar/cal-persia.el,
4493 * calendar/cal-tex.el, calendar/calendar.el, calendar/diary-lib.el,
4494 * calendar/lunar.el, calendar/solar.el, ediff-diff.el,
4495 * ediff-help.el, ediff-hook.el, ediff-init.el, ediff-merg.el,
4496 * ediff-ptch.el, ediff-util.el, ediff-vers.el, ediff-wind.el,
4497 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
4498 * net/eudc-vars.el, net/ldap.el, pcvs-defs.el, pcvs-info.el,
4499 * pcvs-parse.el, pcvs-util.el, pcvs.el, progmodes/ada-mode.el,
4500 * progmodes/ada-prj.el, progmodes/ada-stmt.el,
4501 * progmodes/ada-xref.el, progmodes/cc-align.el,
4502 * progmodes/cc-bytecomp.el, progmodes/cc-cmds.el,
4503 * progmodes/cc-defs.el, progmodes/cc-engine.el,
4504 * progmodes/cc-langs.el, progmodes/cc-menus.el,
4505 * progmodes/cc-styles.el, progmodes/cc-vars.el,
4506 * textmodes/reftex-auc.el, textmodes/reftex-cite.el,
4507 * textmodes/reftex-dcr.el, textmodes/reftex-global.el,
4508 * textmodes/reftex-index.el, textmodes/reftex-parse.el,
4509 * textmodes/reftex-ref.el, textmodes/reftex-sel.el,
4510 * textmodes/reftex-toc.el, textmodes/reftex-vars.el,
4511 * textmodes/reftex.el: Some fixes to follow coding
4512 conventions in Eshell files with known maintainers.
4513
4514 * emulation/viper.el: A fix to follow coding conventions.
4515
4516 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el,
4517 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el,
4518 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el,
4519 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el,
4520 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el,
4521 * eshell/em-xtra.el, eshell/esh-arg.el, eshell/esh-cmd.el,
4522 * eshell/esh-ext.el, eshell/esh-io.el, eshell/esh-maint.el,
4523 * eshell/esh-mode.el, eshell/esh-module.el, eshell/esh-opt.el,
4524 * eshell/esh-proc.el, eshell/esh-test.el, eshell/esh-util.el,
4525 * eshell/esh-var.el, eshell/eshell.el: Some fixes to follow coding
4526 conventions in Eshell files.
4527
4528 * composite.el, diff.el, emacs-lisp/levents.el,
4529 * emacs-lisp/lmenu.el, emacs-lisp/lselect.el, emacs-lisp/lucid.el,
4530 * emulation/pc-mode.el, emulation/viper-cmd.el,
4531 * emulation/viper-ex.el, emulation/viper-init.el,
4532 * emulation/viper-keym.el, emulation/viper-macs.el,
4533 * emulation/viper-mous.el, emulation/viper-util.el,
4534 * emulation/viper.el, forms-pass.el, international/ccl.el,
4535 * international/characters.el, international/encoded-kb.el,
4536 * international/fontset.el, international/ja-dic-cnv.el,
4537 * international/ja-dic-utl.el, international/kinsoku.el,
4538 * international/kkc.el, international/mule-cmds.el,
4539 * international/mule-diag.el, international/mule-util.el,
4540 * international/mule.el, international/titdic-cnv.el,
4541 * language/china-util.el, language/chinese.el,
4542 * language/cyril-util.el, language/cyrillic.el, language/english.el,
4543 * language/greek.el, language/hebrew.el, language/japan-util.el,
4544 * language/japanese.el, language/korea-util.el, language/korean.el,
4545 * language/lao-util.el, language/lao.el, language/misc-lang.el,
4546 * language/slovak.el, language/thai-util.el, language/thai.el,
4547 * language/viet-util.el, language/vietnamese.el, mail/mh-comp.el,
4548 * mail/mh-e.el, mail/mh-funcs.el, mail/mh-mime.el, mail/mh-pick.el,
4549 * mail/mh-seq.el, mail/mh-utils.el, mail/sc.el, mail/unrmail.el,
4550 * midnight.el, patcomp.el, pcmpl-cvs.el, pcmpl-gnu.el,
4551 * pcmpl-linux.el, pcmpl-rpm.el, pcmpl-unix.el, play/studly.el,
4552 * play/zone.el, replace.el, select.el, subr.el, talk.el, term.el,
4553 * term/apollo.el, term/bobcat.el, term/linux.el, term/lk201.el,
4554 * term/vt102.el, term/vt125.el, term/vt200.el, term/vt201.el,
4555 * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el,
4556 * term/vt400.el, term/vt420.el, x-apollo.el, x-menu.el: Some fixes
4557 to follow coding conventions in files without maintainer or in files
4558 with clear maintainer (but without Maintainer header stating so).
4559
4560 * emacs-lisp/elp.el: A fix to follow coding conventions.
4561
4562 * gnus/binhex.el, gnus/binhex.el, gnus/earcon.el,
4563 * gnus/gnus-agent.el, gnus/gnus-art.el, gnus/gnus-audio.el,
4564 * gnus/gnus-logic.el, gnus/gnus-ml.el, gnus/gnus-mlspl.el,
4565 * gnus/gnus-setup.el, gnus/gnus-srvr.el, gnus/gnus-sum.el,
4566 * gnus/gnus-uu.el, gnus/gnus-vm.el, gnus/ietf-drums.el,
4567 * gnus/mail-parse.el, gnus/mail-prsvr.el, gnus/mail-source.el,
4568 * gnus/mm-bodies.el, gnus/mm-decode.el, gnus/mm-encode.el,
4569 * gnus/mm-partial.el, gnus/mm-util.el, gnus/mm-uu.el,
4570 * gnus/mm-view.el, gnus/mml.el, gnus/nnimap.el, gnus/nnoo.el,
4571 * gnus/parse-time.el, gnus/rfc1843.el, gnus/rfc2045.el,
4572 * gnus/rfc2047.el, gnus/rfc2104.el, gnus/rfc2231.el,
4573 * gnus/time-date.el, gnus/uudecode.el: Some fixes to follow coding
4574 conventions in files from Gnus.
4575
4576 * abbrevlist.el, array.el, buff-menu.el, calendar/appt.el,
4577 * case-table.el, cdl.el, cmuscheme.el, compare-w.el, completion.el,
4578 * custom.el, derived.el, dired-aux.el, disp-table.el, dos-vars.el,
4579 * echistory.el, electric.el, emacs-lisp/authors.el,
4580 * emacs-lisp/backquote.el, emacs-lisp/byte-opt.el,
4581 * emacs-lisp/bytecomp.el, emacs-lisp/float.el, emacs-lisp/gulp.el,
4582 * emacs-lisp/helper.el, emacs-lisp/lisp-mode.el,
4583 * emacs-lisp/regexp-opt.el, emulation/mlconvert.el,
4584 * emulation/mlsupport.el, env.el, fast-lock.el, find-dired.el,
4585 * float-sup.el, frame.el, gnus/gnus-mule.el, gnus/pop3.el, gs.el,
4586 * gud.el, help-macro.el, hexl.el, imenu.el, info.el, informat.el,
4587 * international/codepage.el, international/iso-ascii.el,
4588 * international/iso-insert.el, international/iso-transl.el,
4589 * international/swedish.el, isearch.el, jka-compr.el, kermit.el,
4590 * lazy-lock.el, ledit.el, loadup.el, lpr.el, ls-lisp.el, macros.el,
4591 * mail/blessmail.el, mail/emacsbug.el, mail/mail-extr.el,
4592 * mail/mailabbrev.el, mail/mailpost.el, mail/rmail.el,
4593 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmsc.el,
4594 * mail/rmailout.el, mail/rmailsort.el, mail/rmailsum.el,
4595 * mail/vms-pmail.el, man.el, map-ynp.el, menu-bar.el, misc.el,
4596 * msb.el, net/ange-ftp.el, net/goto-addr.el, novice.el,
4597 * obsolete/auto-show.el, obsolete/hilit19.el, obsolete/ooutline.el,
4598 * obsolete/rnews.el, obsolete/rnewspost.el, options.el, paren.el,
4599 * paths.el, play/dissociate.el, play/doctor.el, play/hanoi.el,
4600 * play/meese.el, progmodes/compile.el, progmodes/ebrowse.el,
4601 * progmodes/hideif.el, progmodes/modula2.el, register.el, rot13.el,
4602 * saveplace.el, scroll-bar.el, server.el, sort.el, soundex.el,
4603 * term/bg-mouse.el, term/pc-win.el, term/sup-mouse.el,
4604 * term/tty-colors.el, terminal.el, textmodes/bib-mode.el,
4605 * textmodes/makeinfo.el, textmodes/page.el, textmodes/paragraphs.el,
4606 * textmodes/picture.el, textmodes/scribe.el, textmodes/spell.el,
4607 * textmodes/tex-mode.el, textmodes/text-mode.el,
4608 * textmodes/underline.el, thingatpt.el, time.el, timer.el,
4609 * unused.el, vcursor.el, version.el, vms-patch.el, vmsproc.el,
4610 * vt100-led.el, window.el: Some fixes to follow coding conventions in
4611 files maintained by FSF.
4612
4613 2001-07-13 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4614
4615 * arc-mode.el: A fix to follow coding conventions.
4616
4617 * bindings.el: Ditto.
4618
4619 * cdl.el: Ditto.
4620
4621 * comint.el: Ditto.
4622
4623 * cus-start.el: Ditto.
4624
4625 * shell.el: Ditto.
4626
4627 * skeleton.el: Ditto.
4628
4629 2001-07-13 Stefan Monnier <monnier@cs.yale.edu>
4630
4631 * info.el (Info-build-node-completions):
4632 Make Info-current-file-completions buffer local.
4633
4634 2001-07-13 Gerd Moellmann <gerd@gnu.org>
4635
4636 * which-func.el (which-func-mode, which-func-ff-hook)
4637 (which-function-mode): Remove references to which-func-mode-global.
4638
4639 * calendar/cal-islam.el (calendar-goto-islamic-date):
4640 Add autoload cookie.
4641
4642 * play/fortune.el: Add types to defcustoms.
4643
4644 2001-07-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4645
4646 * language/czech.el: A fix to follow coding conventions.
4647
4648 2001-07-11 Eli Zaretskii <eliz@is.elta.co.il>
4649
4650 * speedbar.el (speedbar-supported-extension-expressions): Add .g
4651 to the extension list, for antlr-mode. From Christoph Wedler
4652 <Christoph.Wedler@sap.com>.
4653
4654 2001-07-11 Stefan Monnier <monnier@cs.yale.edu>
4655
4656 * vc.el (vc-prefix-map): Moved back to vc-hooks.el.
4657 (vc-dired-mode-map): Fix the madness.
4658
4659 * vc-hooks.el (vc-mode): Dummy function for doc purposes.
4660 (vc-prefix-map): Moved back from vc.el.
4661
4662 2001-07-11 Gerd Moellmann <gerd@gnu.org>
4663
4664 * mail/mail-extr.el (mail-extr-all-top-level-domains):
4665 Increase the size of the obarray.
4666 (mail-extr-all-top-level-domains): Add more toplevel domains,
4667 add more long names.
4668 From: Per Starback <starback@ling.uu.se>.
4669
4670 2001-07-11 Eli Zaretskii <eliz@is.elta.co.il>
4671
4672 * progmodes/ada-prj.el: Say that the file _is_ part of Emacs.
4673 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4674
4675 * progmodes/ada-mode.el: Ditto.
4676
4677 * progmodes/ada-xref.el: Ditto.
4678
4679 2001-07-11 Miles Bader <miles@gnu.org>
4680
4681 * finder.el (finder-insert-at-column): Also move to the next line
4682 if exactly at COLUMN.
4683
4684 2001-07-10 Gerd Moellmann <gerd@gnu.org>
4685
4686 * help.el (describe-function-1): When printing FUNCTION's
4687 documentation, don't assume FUNCTION is a symbol.
4688
4689 * startup.el (normal-top-level): Don't operate on the initial
4690 frame if we failed to create one.
4691
4692 2001-07-10 Martin Stjernholm <bug-cc-mode@gnu.org>
4693
4694 * cc-cmds.el (c-indent-exp): Keep the indentation of the block
4695 itself, i.e. only indent the contents in it.
4696
4697 2001-07-10 Markus Rost <rost@math.ohio-state.edu>
4698
4699 * mail/rmail.el (rmail-show-message): Show beginning of message in
4700 all windows containing it.
4701
4702 2001-07-10 Eli Zaretskii <eliz@is.elta.co.il>
4703
4704 * term/tty-colors.el: Fix the header line and copyright years.
4705
4706 2001-07-09 Gerd Moellmann <gerd@gnu.org>
4707
4708 * emacs-lisp/advice.el (ad-make-advised-definition): If the
4709 original definition has an interactive form, but is Elp
4710 instrumented, use the interactive form of the function called by
4711 elp-wrapper.
4712
4713 * winner.el (winner-equal): Make it a defun. Don't compare Winner
4714 configurations with compare-window-configuration; they aren't
4715 window configurations.
4716
4717 * net/ange-ftp.el (ange-ftp-file-modtime): Check a 213 response
4718 from the server for the format we expect. Don't use it if it
4719 doesn't look like what the Internet draft for FTP extensions specifies.
4720
4721 * toolbar/*.pbm: Cleaned up.
4722 From Luis Fernandes <elf@ee.ryerson.ca>.
4723
4724 2001-07-09 Martin Stjernholm <bug-cc-mode@gnu.org>
4725
4726 * cc-cmds.el: Extended the kludge to interoperate with the
4727 delsel and pending-del packages wrt to the new function
4728 `c-electric-delete-forward'.
4729
4730 2001-07-08 Stefan Monnier <monnier@cs.yale.edu>
4731
4732 * emacs-lisp/easy-mmode.el (define-minor-mode): Use eval-after-load
4733 to delay the call to <mode> for global minor modes.
4734 (easy-mmode-define-navigation): Only recenter if interactive.
4735
4736 2001-07-06 Gerd Moellmann <gerd@gnu.org>
4737
4738 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind TAB
4739 to lisp-indent-line.
4740
4741 * net/ange-ftp.el (ange-ftp-file-modtime): Ignore 226 responses
4742 from the server. Call encode-time only when we are sure that we
4743 got a 213 response.
4744
4745 2001-07-06 Simon Josefsson <jas@extundo.com>
4746
4747 * mail/sendmail.el (mail-specify-envelope-from): Doc fix.
4748 (mail-envelope-from): New user option.
4749 (sendmail-send-it): Use it.
4750
4751 2001-07-06 Vinicius Jose Latorre <vinicius@cpqd.com.br>
4752
4753 * ps-print.el: Use locale dependant date to print date in header.
4754 Doc fix.
4755 (ps-print-version): New version number (6.5.3).
4756 (ps-right-header, ps-right-footer): Initialization and doc fix.
4757 (ps-time-stamp-locale-default): New fun.
4758
4759 2001-07-06 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
4760
4761 * mail/rmailout.el (rmail-output): Fix duplicate MIME-Version:
4762 field problem with MIME-mode.
4763
4764 * mail/rmailout.el (rmail-output): Fix bug in MIME-mode.
4765
4766 2001-07-06 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
4767
4768 * mail/rmail.el (rmail-reply): Don't forget to narrow header in
4769 MIME-mode.
4770
4771 2001-07-06 Eli Zaretskii <eliz@is.elta.co.il>
4772
4773 * bindings.el (mode-line-mule-info): Don't show the tip with
4774 buffer-file-coding-system if that is nil.
4775
4776 2001-07-05 Gerd Moellmann <gerd@gnu.org>
4777
4778 * calendar/todo-mode.el (todo-top-priorities): Use delete-region
4779 instead of kill-line.
4780
4781 * play/pong.el: Fix first line. From Pavel Jan\e,Bm\e(Bk
4782 <Pavel@Janik.cz>.
4783
4784 * battery.el (battery-update): Add help-echo. From Pavel Jan\e,Bm\e(Bk
4785 <Pavel@Janik.cz>.
4786
4787 2001-07-04 Gerd Moellmann <gerd@gnu.org>
4788
4789 * font-lock.el (c-font-lock-keywords-3): When matching something
4790 like `struct X Y', finish with point after Y.
4791
4792 2001-07-04 Simon Josefsson <jas@extundo.com>
4793
4794 * mail/sendmail.el (sendmail-send-it): Look at `sendmail-program'
4795 in caller buffer.
4796
4797 2001-07-03 Eli Zaretskii <eliz@is.elta.co.il>
4798
4799 * find-file.el (ff-find-the-other-file): Use file-name-nondirectory
4800 instead of string-match to find the basename of the file.
4801 From Pascal Obry <p.obry@wanadoo.fr>.
4802
4803 * net/browse-url.el (browse-url-default-windows-browser):
4804 Support the MS-DOS port when it runs on Windows.
4805 (browse-url-browser-function) [ms-dos]: Default to
4806 browse-url-default-windows-browser.
4807
4808 * help.el (locate-library): Enable code that looks for compressed
4809 libraries if auto-compression-mode is on.
4810
4811 2001-07-02 Stefan Monnier <monnier@cs.yale.edu>
4812
4813 * info.el (Info-clone-buffer-hook): Really unconditionally copy marker.
4814
4815 2001-07-02 Gerd Moellmann <gerd@gnu.org>
4816
4817 * emacs-lisp/cl-macs.el (cl-do-arglist): Revert change of 2000-10-15.
4818
4819 2001-07-02 Eli Zaretskii <eliz@is.elta.co.il>
4820
4821 * allout.el: Fix the header line, so that finder.el recognizes it.
4822 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
4823
4824 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Doc fix.
4825 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
4826
4827 2001-06-29 Eli Zaretskii <eliz@is.elta.co.il>
4828
4829 * term/w32-win.el (x-colors): Add colors from the recent rgb.txt file.
4830
4831 * ps-bdf.el (bdf-directory-list): Use the value relative to
4832 installation-directory for MS-Windows as well.
4833
4834 2001-06-29 Richard M. Stallman <rms@gnu.org>
4835
4836 * wid-edit.el (widget-color-sample-face-get):
4837 Return ((foreground-color . COLOR)) instead of constructing a face.
4838
4839 2001-06-29 Eli Zaretskii <eliz@is.elta.co.il>
4840
4841 * faces.el (region): Change the background color for the
4842 light-background color display to lightgoldenrod2, to make it
4843 visible on some laptops.
4844
4845 2001-06-28 Richard M. Stallman <rms@gnu.org>
4846
4847 * mail/rmail.el (rmail-reformat-message): Bind inhibit-read-only to t.
4848 (rmail-msg-restore-non-pruned-header): Likewise.
4849 If point was in the old pruned header, put it at the top.
4850 (rmail-msg-prune-header): If point was at the top, keep it there.
4851
4852 * mail/rmail.el (rmail-narrow-to-non-pruned-header): New function.
4853 (rmail-retry-failure): Use rmail-narrow-to-non-pruned-header.
4854
4855 2001-06-28 Stefan Monnier <monnier@cs.yale.edu>
4856
4857 * info.el (Info-clone-buffer-hook): Unconditionally copy marker.
4858
4859 2001-06-28 Karl Fogel <kfogel@red-bean.com>
4860
4861 * saveplace.el: Update maintainer email address.
4862
4863 2001-06-27 Francesco Potorti` <pot@gnu.org>
4864
4865 * uniquify.el: (uniquify-rationalize-file-buffer-names):
4866 Undo previous change.
4867
4868 2001-06-27 Francesco Potorti` <pot@gnu.org>
4869
4870 * uniquify.el (uniquify-rationalize-file-buffer-names): Do a
4871 preliminary quick reordering. Can speed things up dramatically.
4872
4873 2001-06-26 Richard M. Stallman <rms@gnu.org>
4874
4875 * dired.el (dired-get-filename): A file name starting with ~
4876 is not absolute in this context.
4877
4878 * which-func.el (which-func-maxout): Increase default to 500000.
4879 (which-function-mode): This is now the "real" name of the function.
4880 (which-func-mode): Now an alias.
4881 (which-func-mode-global): Name deleted.
4882
4883 * progmodes/hideshow.el (hs-minor-mode-map): Use mouse-2, not
4884 button-2, when binding hs-mouse-toggle-hiding.
4885
4886 2001-06-26 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
4887
4888 * mail/rmail.el (rmail-msg-restore-non-pruned-header): New function.
4889 (rmail-msg-prune-header): Likewise.
4890 (rmail-toggle-header): Use `rmail-msg-restore-non-pruned-header'
4891 and `rmail-msg-prune-header'.
4892
4893 2001-06-25 Stefan Monnier <monnier@cs.yale.edu>
4894
4895 * textmodes/fill.el (fill-region-as-paragraph): Don't look further
4896 back than LINEBEG.
4897
4898 2001-06-25 Eli Zaretskii <eliz@is.elta.co.il>
4899
4900 * xt-mouse.el (xterm-mouse-event): If the buffer displayed in the
4901 window where they clicked the mouse has a header line, adjust
4902 vertical movement by one.
4903
4904 2001-06-25 Milan Zamazal <pdm@zamazal.org>
4905
4906 * progmodes/glasses.el (glasses-make-readable): Consider underscores
4907 too when separating a parenthesis.
4908
4909 2001-06-24 Eli Zaretskii <eliz@is.elta.co.il>
4910
4911 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
4912 (bookmark-bmenu-hide-filenames): Add help-echo to
4913 mouse-highlighted text.
4914 (bookmark-bmenu-show-filenames): Remove help-echo property from
4915 the whitespace.
4916
4917 2001-06-23 Eli Zaretskii <eliz@is.elta.co.il>
4918
4919 * files.el (auto-mode-alist): Add configure.ac (autoconf).
4920 From Karl Eichwalder <ke@suse.de>.
4921
4922 2001-06-23 Richard M. Stallman <rms@gnu.org>
4923
4924 * emacs-lisp/lisp-mode.el (eval-last-sexp): Doc fix.
4925
4926 * progmodes/cc-styles.el (c-set-style): Don't specify initial
4927 contents for completing-read.
4928
4929 2001-06-22 Richard M. Stallman <rms@gnu.org>
4930
4931 * menu-bar.el (menu-bar-make-toggle): Construct the
4932 function's doc string from HELP, not DOC, and make it accurate by
4933 adding "Toggle whether to " at the front and downcasing the initial.
4934 Change the HELP arg in some calls to make it fit this usage.
4935
4936 * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error):
4937 Undo previous change.
4938
4939 2001-06-22 Eli Zaretskii <eliz@is.elta.co.il>
4940
4941 * indent.el (indent-relative-maybe, indent-relative): Doc fix.
4942
4943 * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error): Doc fix.
4944
4945 2001-06-21 Eli Zaretskii <eliz@is.elta.co.il>
4946
4947 * toolbar/tool-bar.el (tool-bar-setup): Remove the EXIT button.
4948
4949 * dabbrev.el (dabbrev--select-buffers): Fix last change.
4950
4951 2001-06-20 Richard M. Stallman <rms@gnu.org>
4952
4953 * dabbrev.el (dabbrev--make-friend-buffer-list): New function,
4954 broken out from dabbrev--find-expansion. Handle minibuffer
4955 specially here.
4956 (dabbrev--find-expansion): Simplify code in various ways.
4957 Don't treat minibuffers specially.
4958 Call dabbrev--make-friend-buffer-list.
4959 (dabbrev--select-buffers): Don't treat minibuffers specially. Simplify.
4960 (dabbrev--scanning-message): Do nothing when minibuffer is current.
4961
4962 2001-06-19 John Wiegley <johnw@gnu.org>
4963
4964 * eshell/eshell.el: Don't load in esh-util if it's already loaded.
4965 Also, added a comment describing how to greatly speedup Eshell
4966 loadup time, by concatenating together all of Eshell's .elc files.
4967
4968 2001-06-19 John Wiegley <johnw@gnu.org>
4969
4970 * eshell/esh-mode.el: Disabled a test that often yields false failures.
4971
4972 2001-06-19 Eli Zaretskii <eliz@is.elta.co.il>
4973
4974 * woman.el (WoMan-highlight-references): Add help-echo to
4975 mouse-highlighted text.
4976
4977 2001-06-18 Stefan Monnier <monnier@cs.yale.edu>
4978
4979 * textmodes/sgml-mode.el (sgml-mode-map): Fix thinko.
4980
4981 2001-06-18 Gerd Moellmann <gerd@gnu.org>
4982
4983 * international/quail.el (quail-start-conversion):
4984 Reset quail-translating to nil.
4985
4986 * antlr-mode.el (antlr-mode): Check that `c-Java-access-key' is
4987 bound. Suggested by David B. Malkovsky <David.Malkovsky@sas.com>.
4988
4989 2001-06-18 Eli Zaretskii <eliz@is.elta.co.il>
4990
4991 * bs.el (bs--get-name, bs--get-file-name): Add help-echo to
4992 mouse-highlighted text.
4993
4994 * dired.el (dired-mark-pop-up): Fix last change.
4995
4996 2001-06-17 Eli Zaretskii <eliz@is.elta.co.il>
4997
4998 * calendar/calendar.el (generate-calendar-month): Add help-echo to
4999 mouse-highlighted text.
5000
5001 * net/quickurl.el (quickurl-url-file): Run through
5002 convert-standard-filename.
5003 (quickurl-list-populate-buffer): Add help-echo to
5004 mouse-highlighted text.
5005 (top-level): Update Dave's URL.
5006
5007 * textmodes/tex-mode.el (tex-validate-buffer): Add help-echo to
5008 mouse-highlighted text.
5009
5010 * textmodes/page-ext.el (pages-copy-header-and-position):
5011 Add help-echo to mouse-highlighted text.
5012
5013 * tar-mode.el (tar-header-block-summarize): Add help-echo to
5014 mouse-highlighted text.
5015
5016 * replace.el (occur): Add help-echo to mouse-highlighted text.
5017
5018 * progmodes/sh-script.el (sh-mark-line): Add help-echo to
5019 mouse-highlighted text.
5020
5021 * progmodes/cpp.el (cpp-make-button): Add help-echo to
5022 mouse-highlighted text.
5023
5024 * progmodes/compile.el (compile-reinitialize-errors):
5025 Add help-echo to mouse-highlighted messages.
5026 (compilation-forget-errors): Remove help-echo property as well.
5027
5028 * play/landmark.el (lm-plot-square, lm-init-display):
5029 Add help-echo to mouse-highlighted text.
5030
5031 * play/gomoku.el (gomoku-plot-square, gomoku-init-display):
5032 Add help-echo to mouse-highlighted text.
5033
5034 * dired.el (dired-insert-set-properties): Add help-echo to
5035 mouse-highlighted text.
5036 (dired-mark-pop-up): Remove help-echo property from the file name.
5037
5038 * comint.el (comint-send-input): Add help-echo to
5039 mouse-highlighted text.
5040
5041 * buff-menu.el (list-buffers-noselect): Add help-echo to
5042 mouse-highlighted text.
5043
5044 * arc-mode.el (archive-summarize-files): Add help-echo to
5045 mouse-highlighted text.
5046
5047 * ffap.el (ffap-machine-p): Always return nil if
5048 open-network-stream is not fboundp.
5049
5050 2001-06-17 Stefan Monnier <monnier@cs.yale.edu>
5051
5052 * textmodes/sgml-mode.el: Move `provide' to the end. Update copyright.
5053 (sgml-mode-map): Use `make-keymap' rather than make the keymap by hand.
5054 Bind the latin-1 charset-char to sgml-maybe-name-self rather than
5055 incorrectly binding chars between 128 and 256 to it.
5056 (sgml-maybe-name-self): Handle latin-1 chars properly.
5057 (sgml-tags-invisible): Bind buffer-file-name to nil.
5058 Use unwind-protect and restore-buffer-modified-p.
5059 (sgml-point-entered): Use buffer-substring-no-properties.
5060 (html-tag-alist): Add `div' and `span' and fix backquote/unquote typos.
5061 (html-mode): Don't force `imenu-sort-function'.
5062
5063 2001-06-15 Eli Zaretskii <eliz@is.elta.co.il>
5064
5065 * tar-mode.el: Fix the copyright notice.
5066
5067 * font-lock.el (font-lock-comment-face): For tty's with dark
5068 background, use "red1", since "lightred" is not one of the colors
5069 recognized by tty-colors.el.
5070
5071 * tar-mode.el (tar-extract): Call generate-new-buffer-name to
5072 create a buffer for extracted file, in case there's more than one
5073 file by that name in an archive, possibly in different
5074 directories. From Kevin Rodgers <kevinr@ihs.com>.
5075
5076 * format.el (format-alist): Doc fix. Suggested by Alex Schroeder
5077 <alex@gnu.org>.
5078
5079 2001-06-15 Miles Bader <miles@gnu.org>
5080
5081 * textmodes/texinfmt.el (texinfo-format-syntax-table):
5082 Revert previous change.
5083
5084 2001-06-14 Richard M. Stallman <rms@gnu.org>
5085
5086 * replace.el (keep-lines-read-args): Return just a regexp.
5087 Provide nil for the region args.
5088 (keep-lines, flush-lines, how-many):
5089 Calculate the defaults for the region here, when args are nil.
5090
5091 2001-06-14 Eli Zaretskii <eliz@is.elta.co.il>
5092
5093 * rot13.el (rot13-other-window): Some more doc fix.
5094
5095 2001-06-14 Per Starback <starback@ling.uu.se>
5096
5097 * replace.el (case-replace, query-replace-from-history-variable)
5098 (query-replace-to-history-variable, keep-lines-read-args)
5099 (occur-revert-function, query-replace-help): Dox fix.
5100
5101 2001-06-14 Eli Zaretskii <eliz@is.elta.co.il>
5102
5103 * rot13.el (rot13-other-window): Doc fix.
5104
5105 2001-06-14 Miles Bader <miles@gnu.org>
5106
5107 * textmodes/texinfo.el (texinfo-mode-syntax-table): Change syntax
5108 of " and \ to "." (punctuation).
5109 * textmodes/texinfmt.el (texinfo-format-syntax-table): Likewise.
5110
5111 2001-06-13 Richard M. Stallman <rms@gnu.org>
5112
5113 * emacs-lisp/backquote.el (backquote-process): Handle `[,@SYMBOL].
5114
5115 * simple.el (shell-command-on-region): Never kill the
5116 *Shell Command Output* buffer.
5117
5118 2001-06-13 Stefan Monnier <monnier@cs.yale.edu>
5119
5120 * diff-mode.el (diff-font-lock-keywords): Fix unanchored regexp.
5121
5122 2001-06-10 Stefan Monnier <monnier@cs.yale.edu>
5123
5124 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
5125 New var, to recognize ${ $' and PODs.
5126 (perl-font-lock-syntactic-face-function): New function.
5127 (perl-mode): Use them.
5128 (perl-continuation-line-p): New function, from perl-calculate-indent.
5129 (perl-calculate-indent): Use it, to properly handle continuation
5130 lines of continuation lines.
5131
5132 2001-06-10 Eli Zaretskii <eliz@is.elta.co.il>
5133
5134 * server.el (server-process, server-buffer-clients): Doc fix.
5135 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5136
5137 2001-06-09 John Wiegley <johnw@gnu.org>
5138
5139 * eshell/esh-cmd.el (eshell-exit-success-p): Use a string-match to
5140 test if the last command was Lisp or not.
5141 (eshell-rewrite-if-command): "if" syntax is "if A B C", not "if A
5142 B x C".
5143
5144 2001-06-08 Eli Zaretskii <eliz@is.elta.co.il>
5145
5146 * dos-w32.el (grep-regexp-alist): Remove definition, since the
5147 general one on compile.el supports drive letters.
5148
5149 2001-06-08 Carsten Dominik <dominik@strw.leidenuniv.nl>
5150
5151 * textmodes/reftex-ref.el (reftex-select-label-help): Add "z"
5152 key description.
5153
5154 * textmodes/reftex-sel.el (reftex-select-jump): New command.
5155
5156 * textmodes/reftex-toc.el (reftex-toc-help): Add "z" key description.
5157 (reftex-toc-jump): New command.
5158
5159 * textmodes/reftex-cite.el (reftex-parse-bibitem): Regexp changed
5160 to parse international characters as well.
5161
5162 * textmodes/reftex.el: Add autoloads for `reftex-varioref-vref',
5163 `reftex-fancyref-fref', `reftex-fancyref-Fref'.
5164
5165 * textmodes/reftex-vars.el: Protect single backslash in docstrings.
5166
5167 * textmodes/reftex-dcr.el (reftex-view-crossref): Add SPACE and
5168 TAB to the key separators.
5169
5170 2001-06-07 Eli Zaretskii <eliz@is.elta.co.il>
5171
5172 * international/mule.el (auto-coding-alist): Remove redundant
5173 up-cased versions of the extensions (auto-coding-alist-lookup is
5174 case-insensitive where needed). Recognize .gz, .Z, .bz, .bz2, and
5175 .gpg files as binary. Suggested by Karl Berry <karl@gnu.org>.
5176
5177 2001-06-05 Eli Zaretskii <eliz@is.elta.co.il>
5178
5179 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Add a doc string.
5180
5181 2001-06-01 Richard M. Stallman <rms@gnu.org>
5182
5183 * help.el (describe-variable): Put value on same line
5184 with preceding text, if it is short enough to look good that way.
5185
5186 2001-06-01 Eli Zaretskii <eliz@is.elta.co.il>
5187
5188 * term/internal.el (IT-unicode-translations): New variable.
5189 (IT-setup-unicode-display): New function.
5190
5191 2001-06-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5192
5193 * ps-print.el: Handle before-string and after-string overlay properties
5194 in ps-print-*-with-faces commands. Doc fix.
5195 (ps-print-version): New version number (6.5.2).
5196 (ps-e-overlay-end): Alias for overlay-end to avoid compilation gripes
5197 for XEmacs.
5198 (ps-prefix-quote): Doc fix.
5199 (ps-setup, ps-print-quote, ps-generate-postscript-with-faces): Code fix.
5200 (ps-basic-plot-str, ps-plot-string): New funs.
5201
5202 2001-05-31 Stefan Monnier <monnier@cs.yale.edu>
5203
5204 * progmodes/etags.el (tags-compression-info-list): Fix docstring
5205 and :type spec.
5206
5207 2001-05-31 Gerd Moellmann <gerd@gnu.org>
5208
5209 * international/mule-cmds.el (inactivate-input-method):
5210 Set input-method-function to nil.
5211
5212 * xml.el (xml-parse-tag): The document may contain invalid characters.
5213 From ShengHuo ZHU <zsh@cs.rochester.edu>
5214
5215 2001-05-31 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
5216
5217 * mail/rmailsum.el (rmail-message-subject-p): Don't call
5218 `rmail-summary-line-decoder' if the message does not have
5219 a Subject: field.
5220
5221 * mail/rmail.el (rmail-revert): Modify to work in rmail-view-buffer.
5222
5223 * mail/rmail.el (rmail-insert-mime-resent-message-function):
5224 New variable.
5225 (rmail-resend): Modify to work in `rmail-view-buffer'; call
5226 `rmail-insert-mime-resent-message-function' if `rmail-enable-mime'
5227 is non-nil.
5228
5229 2001-05-30 Stefan Monnier <monnier@rum.cs.yale.edu>
5230
5231 * textmodes/tex-mode.el (latex-find-indent): Handle the BOBP case.
5232
5233 2001-05-29 Sam Steingold <sds@gnu.org>
5234
5235 * faces.el (face-valid-attribute-values): Bind `valid' directly
5236 instead of using `setq'.
5237
5238 * textmodes/tex-mode.el (tex-feed-input, tex-display-shell):
5239 Use `tex-shell-buf'.
5240 (tex-shell-proc): Use `tex-shell-running'.
5241 (tex-shell-buf-no-error): New function.
5242 (tex-send-tex-command): Use it.
5243 (tex-shell-running): Kill tex-shell when the buffer is dead for w32.
5244 (tex-kill-job): Check the process before calling `quit-process'.
5245
5246 2001-05-29 Gerd Moellmann <gerd@gnu.org>
5247
5248 * international/utf-8.el (ccl-decode-mule-utf-8): Handle invalid
5249 UTF-8 sequences.
5250
5251 2001-05-28 Miles Bader <miles@gnu.org>
5252
5253 * comint.el (comint-carriage-motion): Renamed from
5254 `comint-cr-magic'. Operate on the buffer instead of the string
5255 (for use as a comint post-output filter, instead of as a
5256 pre-output filter). Handle backspaces too. Add to the
5257 `comint-output-filter-functions' hook instead of
5258 `comint-preoutput-filter-functions'.
5259
5260 2001-05-28 Gerd Moellmann <gerd@gnu.org>
5261
5262 * language/japan-util.el (japanese-hankaku): Prefer the charset
5263 `jisx0201' when the optional argument `ascii-only' is not specified.
5264 (japanese-hankaku-region): Ditto.
5265 From Katsumi Yamaoka <yamaoka@jpl.org>
5266
5267 2001-05-28 Stefan Monnier <monnier@cs.yale.edu>
5268
5269 * textmodes/outline.el (outline-mode): Fix font-lock-defaults.
5270 (outline-invisible-p): New function.
5271 (hide-leaves): Save excursion.
5272 (hide-other): Stop looping when reaching bobp.
5273
5274 2001-05-28 Eli Zaretskii <eliz@is.elta.co.il>
5275
5276 * cus-edit.el (custom-file): Fix last change.
5277
5278 2001-05-27 Stefan Monnier <monnier@cs.yale.edu>
5279
5280 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload): Use the
5281 same definition in byte-compile-function-environment as `autoload'
5282 would put in `symbol-function'.
5283
5284 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Complete Dave's
5285 patch to correct the error message as well.
5286
5287 2001-05-27 Eli Zaretskii <eliz@is.elta.co.il>
5288
5289 * cus-edit.el (custom-file): Don't assume we were invoked with -q
5290 unless ~/.emacs exists.
5291
5292 * novice.el (enable-command): If user-init-file is nil or does not
5293 exist, default to "~/.emacs" (~/_emacs on DOS and, maybe, Windows).
5294
5295 2001-05-25 Stefan Monnier <monnier@cs.yale.edu>
5296
5297 * textmodes/tex-mode.el (tex-mode-syntax-table): Add ^.
5298 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
5299 Allow spaces around macro arguments.
5300 (tex-mode-map): Inherit from text-mode-map, but rebind \t to
5301 indent-for-tab-command.
5302 (latex-mode-map, plain-tex-mode-map): New keymaps.
5303 Inherit from tex-mode-map.
5304 (tex-common-initialization): Don't setup the keymap any more
5305 since it's now done right by define-derived-mode.
5306 (latex-mode): Set skeleton-end-hook to nil.
5307 (latex-skeleton-end-hook): Remove.
5308 (tex-latex-block, latex-insert-item): Simplify.
5309 (latex-syntax-after): Use following-char rather than char-after.
5310 (tex-discount-args-cmds, tex-count-words): New functions.
5311
5312 * textmodes/tildify.el (tildify-ignored-environments-alist):
5313 Recognize \verb* as well.
5314
5315 * progmodes/perl-mode.el (perl-mode): Use define-derived-mode.
5316 (perl-comment-indent): Simplify to let newcomment.el do its job.
5317 (perl-electric-terminator, perl-calculate-indent, perl-indent-exp)
5318 (perl-mark-function): Cleanup the namespace.
5319 (perl-calculate-indent): Don't be fooled by nested functions.
5320
5321 * speedbar.el (speedbar-find-selected-file): RE-quote the filename.
5322
5323 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
5324 Fix the arg of `load'. From Dave Love <fx@gnu.org>.
5325
5326 2001-05-25 Andrew Choi <akochoi@i-cable.com>
5327
5328 * international/titdic-cnv.el (ctlau-gb-converter): `\' should
5329 actually be `\\'.
5330 (ctlau-b5-converter): Likewise.
5331
5332 2001-05-24 Andrew Choi <akochoi@i-cable.com>
5333
5334 * international/titdic-cnv.el (quail-misc-package-ext-info):
5335 Change CTLauB.el to CTLau-b5.el.
5336
5337 2001-05-23 Stefan Monnier <monnier@cs.yale.edu>
5338
5339 * gud.el (gud-gdb-run-command-fetch-lines): Use forward-line
5340 rather than beginning-of-line to avoid problems with fields.
5341 (gud-perldb-massage-args): Use unless and push.
5342 (gud-chdir-before-run): New var.
5343 (gud-common-init): Use it.
5344
5345 2001-05-24 Andrew Choi <akochoi@i-cable.com>
5346
5347 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
5348 delete entries for chinese-ctlau and chinese-ctlaub.
5349 (quail-misc-package-ext-info): Add entries for chinese-ctlau and
5350 chinese-ctlaub.
5351 (ctlau-converter, ctlau-gb-converter, ctlau-b5-converter):
5352 New functions.
5353
5354 2001-05-22 Gerd Moellmann <gerd@gnu.org>
5355
5356 * cus-edit.el (custom-comment-show): Remove debug code.
5357
5358 * language/japan-util.el (japanese-symbol-table): Fix handling of
5359 Japanese long tone sign. From Kenichi Handa <handa@etl.go.jp>.
5360
5361 2001-05-21 Stefan Monnier <monnier@cs.yale.edu>
5362
5363 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly):
5364 Renamed by removing the silly `-flag' suffix.
5365 (diff-mode, diff-minor-mode, diff-find-source-location): Update.
5366
5367 2001-05-20 Stefan Monnier <monnier@cs.yale.edu>
5368
5369 * replace.el (keep-lines-read-args): Use `copy-marker'.
5370 (how-many): Save excursion properly.
5371 (occur-mode): Use define-derived-mode.
5372 (perform-replace): Use with-current-buffer.
5373
5374 2001-05-20 Richard M. Stallman <rms@gnu.org>
5375
5376 * play/landmark.el (lm): Use "p" not "P" for interactive spec.
5377
5378 * mail/rmail.el (rmail-retry-failure): Do save-window-excursion.
5379
5380 * info.el (Info-read-subfile): Widen before finding the
5381 desired node in the subfile.
5382
5383 * startup.el (command-line-1): When >2 files visited,
5384 leave the last one visible, and make that the selected window.
5385
5386 2001-05-20 Gerd Moellmann <gerd@gnu.org>
5387
5388 * font-lock.el (lisp-font-lock-keywords-1): Add `defvaralias'.
5389
5390 2001-05-20 Eli Zaretskii <eliz@is.elta.co.il>
5391
5392 * international/ccl.el (define-ccl-program): Fix a typo.
5393 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5394
5395 * international/mule.el (decode-char): Fix a typo. From Pavel
5396 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5397
5398 * textmodes/artist.el (artist-mode): Fix a typo. From Pavel
5399 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5400
5401 * frame.el (automatic-hscrolling): Fix a typo. From Pavel
5402 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5403
5404 2001-05-18 Sam Steingold <sds@gnu.org>
5405
5406 * pcvs-defs.el (cvs-mode-map): Bind "z" to `kill-this-buffer'
5407 and [RET] to `cvs-mode-find-file'.
5408
5409 2001-05-18 John Wiegley <johnw@gnu.org>
5410
5411 * eshell/esh-ext.el (eshell-explicit-command-char): A new
5412 configuration variable, which determines the initial character
5413 that forces use of an external version of a command. The default
5414 is *, but may be set to \, for example.
5415
5416 * eshell/esh-ext.el (eshell-explicit-command):
5417 Use `eshell-explicit-command-char' instead of ?*.
5418
5419 * eshell/esh-cmd.el (eshell/which):
5420 Use `eshell-explicit-command-char' instead of ?*.
5421
5422 * eshell/em-cmpl.el (eshell-completion-command-name)
5423 (eshell-complete-commands-list): Use `eshell-explicit-command-char'
5424 instead of ?*.
5425
5426 2001-05-18 Gerd Moellmann <gerd@gnu.org>
5427
5428 * net/ange-ftp.el (ange-ftp-fix-name-for-vms): Reverse args of
5429 subst-char-in-string.
5430 (ange-ftp-after-parse-ls-hook): New variable.
5431 (ange-ftp-ls): Run that hook.
5432 From Peter Milliken <Peter.Milliken@GTECH.COM>.
5433
5434 * tmm.el (tmm-get-keymap): Fix handling of :filter.
5435 (tmm-add-prompt): Bind buffer-read-only to nil when inserting
5436 text into *Completions*.
5437
5438 * net/goto-addr.el (goto-address-at-point): Deal with URLs
5439 part of which look like email addresses.
5440
5441 2001-05-18 Andrew Innes <andrewi@gnu.org>
5442
5443 * makefile.w32-in (compile-files-CMD, bootstrap-clean-CMD):
5444 Use . instead of absolute path for lisp dir, to avoid bug in W2K
5445 cmd.exe's handling of FOR loops.
5446 (autoloads): Set find-file-suppress-same-file-warnings to t to
5447 avoid slew of spurious messages.
5448
5449 2001-05-18 Simon Josefsson <simon@josefsson.org>
5450
5451 * mail/smtpmail.el (maybe-append-domain): Renamed to
5452 `smtpmail-maybe-append-domain'.
5453 (smtpmail-via-smtp): Use the new name.
5454
5455 * net/browse-url.el (browse-url-browser-function): Add kde.
5456 (browse-url-kde-program, browse-url-kde-args): New variables.
5457 (browse-url-kde): New function.
5458
5459 2001-05-18 Miles Bader <miles@gnu.org>
5460
5461 * simple.el (delete-horizontal-space, just-one-space):
5462 Use `constrain-to-field' instead of `field-end'/`field-beginning',
5463 because it's more efficient for large files.
5464
5465 2001-05-17 Gerd Moellmann <gerd@gnu.org>
5466
5467 * mail/rmail.el (rmail-require-mime-maybe): New function.
5468 (rmail): Use it.
5469 (rmail-mode): Handle the case of finding Rmail files.
5470
5471 * emacs-lisp/elp.el (elp-instrument-function): Handle advised
5472 functions.
5473
5474 2001-05-17 Stefan Monnier <monnier@cs.yale.edu>
5475
5476 * jit-lock.el (jit-lock-after-change): Check the font-lock-multiline
5477 text-property after moving to the beginning of line and regardless
5478 of the value of font-lock-multiline.
5479
5480 2001-05-17 Gerd Moellmann <gerd@gnu.org>
5481
5482 * startup.el (fancy-splash-screens): Ignore events on the mode-line.
5483
5484 * net/ange-ftp.el (ange-ftp-write-region): Make sure to record the
5485 last coding system used before calling set-buffer-modified-p
5486 because that function changes last-coding-system.
5487
5488 2001-05-17 Eli Zaretskii <eliz@is.elta.co.il>
5489
5490 * files.el (switch-to-buffer-other-window)
5491 (switch-to-buffer-other-frame): Add an xref to display-buffer in
5492 the doc string.
5493
5494 2001-05-17 Gerd Moellmann <gerd@gnu.org>
5495
5496 * language/slovak.el, language/czech.el: New maintainer.
5497
5498 2001-05-16 Sam Steingold <sds@gnu.org>
5499
5500 * emacs-lisp/cl-indent.el (toplevel): Indent the :method
5501 sub-form of `defgeneric' correctly.
5502
5503 2001-05-16 Gerd Moellmann <gerd@gnu.org>
5504
5505 * tooltip.el (tooltip) <defgroup>: Put it in `gud' group instead
5506 of `c'.
5507
5508 * textmodes/outline.el (outline-font-lock-level): Remove the
5509 condition-case, test what outline-level returns instead, to
5510 ease debugging.
5511
5512 * international/mule.el (auto-coding-regexp-alist): New user-option.
5513 (auto-coding-from-file-contents): New function.
5514 (set-auto-coding): Use it to determine a coding system.
5515
5516 2001-05-15 Gerd Moellmann <gerd@gnu.org>
5517
5518 * mouse.el (mouse-delete-other-windows): Doc fix.
5519
5520 * emacs-lisp/lisp-mode.el (lisp-mode):
5521 Make font-lock-keywords-case-fold-search a buffer-local variable with
5522 make-local-variable before setting it.
5523
5524 2001-05-14 Eli Zaretskii <eliz@is.elta.co.il>
5525
5526 * emacs-lisp/elp.el (elp-instrument-package): Don't allow empty
5527 prefixes.
5528
5529 2001-05-14 Gerd Moellmann <gerd@gnu.org>
5530
5531 * hexl.el (hexl-current-address): Print a message when called
5532 interactively.
5533
5534 2001-05-11 Stefan Monnier <monnier@cs.yale.edu>
5535
5536 * gud.el (gud-jdb-build-source-files-list): Fix paren typo.
5537
5538 * pcvs-defs.el (cvs-mode-map): Don't rebind `undo'.
5539
5540 * files.el (auto-mode-alist): Add *.perl and fix the *.<rev> case.
5541
5542 2001-05-11 Gerd Moellmann <gerd@gnu.org>
5543
5544 * startup.el (command-line): If parameters have been changed in
5545 the init files which influence font selection, clear the face
5546 cache so that faces get realized with the new parameters.
5547
5548 * Makefile.in (compile-files): Redirect output of chmod to /dev/null.
5549
5550 2001-05-10 Stefan Monnier <monnier@cs.yale.edu>
5551
5552 * smerge-mode.el (smerge-mode): Force font-lock-multiline to t.
5553
5554 2001-05-10 Eli Zaretskii <eliz@is.elta.co.il>
5555
5556 * mail/emacsbug.el (report-emacs-bug): Don't switch the buffer to
5557 unibyte. Suggested by Kenichi Handa <handa@etl.go.jp>.
5558
5559 2001-05-10 Gerd Moellmann <gerd@gnu.org>
5560
5561 * net/browse-url.el (browse-url-filename-alist): Allow UNC file
5562 names for MS-Windows and MS-DOS. From Dan Holmsand <dan@eyebee.com>.
5563
5564 2001-05-09 John Wiegley <johnw@gnu.org>
5565
5566 * eshell/esh-util.el (eshell-convert-numeric-arguments):
5567 Annotated the documentation string to tell users about
5568 `eshell-no-numeric-conversions'.
5569
5570 * eshell/esh-cmd.el (eshell-lisp-command): Don't perform numeric
5571 conversions if a Lisp function has the property
5572 `eshell-no-numeric-conversions' set to a non-nil value.
5573
5574 * eshell/em-dirs.el, eshell/em-ls.el, eshell/em-script.el,
5575 eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-cmd.el: Set the
5576 property `eshell-no-numeric-conversions' on the following
5577 functions (which all deal with filesystem entities, and never Lisp
5578 numerical values): eshell/cd, eshell/pushd, eshell/popd,
5579 eshell/ls, eshell/source, eshell/., eshell/man, eshell/rm,
5580 eshell/mkdir, eshell/rmdir, eshell/mv, eshell/cp, eshell/ln,
5581 eshell/cat, eshell/make, eshell/diff, eshell/locate, eshell/occur,
5582 eshell/which, eshell/addpath.
5583
5584 2001-05-09 John Wiegley <johnw@gnu.org>
5585
5586 * eshell/esh-arg.el (eshell-parse-argument-hook): If a number is
5587 encountered as an argument, don't convert it right away, but tag
5588 the first character of the string with the text properties
5589 `number', which signifies to `eshell-lisp-command' that the
5590 argument should be passed through `string-to-number' if it is
5591 actually used in the call to a Lisp function.
5592
5593 * eshell/esh-cmd.el (eshell-lisp-command): Before calling a Lisp
5594 function, convert any string arguments that have been tagged as
5595 "numbers", by calling string-to-number.
5596
5597 * eshell/esh-util.el (eshell-number-regexp): Now that number
5598 conversions only happen for Lisp function calls, the number regexp
5599 should now match all integer and floating point forms.
5600
5601 * eshell/esh-proc.el: Disable `eshell-stop-process' and
5602 `eshell-continue-process', since they are both nonfunctional at
5603 the moment.
5604 (eshell-proc-initialize): Don't bind keys for
5605 `eshell-stop-process' or `eshell-continue-process'.
5606
5607 * eshell/em-unix.el (eshell-shuffle-files):
5608 Apply `directory-file-name' before calling `file-name-directory'.
5609
5610 * eshell/em-hist.el (eshell-add-to-history): Reference to
5611 `eshell-history-ring' needed to be `eshell-history-index'.
5612
5613 * calendar/timeclock.el (timeclock-find-discrep):
5614 Initialize `elapsed' to 0.
5615 (timeclock-find-discrep): Set `timeclock-last-event-workday' if
5616 it's still nil.
5617
5618 2001-05-09 Stefan Monnier <monnier@cs.yale.edu>
5619
5620 * arc-mode.el (archive-int-to-mode): Construct the string directly.
5621 (archive-mode): Use capitalize.
5622 (archive-unique-fname): Use make-temp-file.
5623
5624 2001-05-09 Gerd Moellmann <gerd@gnu.org>
5625
5626 * emacs-lisp/lisp-mode.el (lisp-interaction-mode): Doc fix.
5627
5628 2001-05-09 Eli Zaretskii <eliz@is.elta.co.il>
5629
5630 * tar-mode.el (tar-extract): Pay attention to the value of
5631 coding-system-for-read, if it is non-nil.
5632
5633 * calendar/holidays.el (holidays): Add an autoload cookie.
5634 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5635
5636 2001-05-08 John Wiegley <johnw@gnu.org>
5637
5638 * calendar/timeclock.el (timeclock-workday-remaining):
5639 Changed logic for determining how much time is remaining.
5640 (timeclock-workday-elapsed): Don't accept a "relative" argument
5641 for the current day's elapsed time. What could that have meant?
5642 (timeclock-workday-elapsed-string): No "relative" argument anymore.
5643 (timeclock-when-to-leave): Changed logic, similarly to what was
5644 done for `timeclock-workday-remaining'.
5645 (timeclock-find-discrep): Removed "today-only" argument, which had
5646 no meaning. Fixed some more math problems. The function now
5647 returns a three member list: (TOTAL-TIME-DISCREPANCY
5648 TODAYS-TIME-DISCREPANCY TODAYS-ELAPSED-TIME).
5649
5650 2001-05-08 Eli Zaretskii <eliz@is.elta.co.il>
5651
5652 * w32-fns.el (convert-standard-filename): Start replacing slashes
5653 from the beginning of the file name, not from where the last
5654 invalid character was. From "Andrew Maguire (SWW)"
5655 <Andrew.Maguire@Smallworld.co.uk>
5656
5657 2001-05-07 MORIOKA Tomohiko <tomo@m17n.org>
5658
5659 The following changes are to provide infrastructure for handling
5660 MIME messages to rmail. They don't affect the original behaviour
5661 if rmail-enable-mime is nil.
5662
5663 * mail/rmail.el (rmail-insert-mime-forwarded-message-function)
5664 (rmail-search-mime-message-function)
5665 (rmail-search-mime-header-function): New variables.
5666 (rmail-expunge-and-save): Be sure to set-buffer to the Rmail buffer.
5667 (rmail-quit, rmail-get-new-mail): Bury `rmail-buffer' after
5668 `rmail-view-buffer' is hidden.
5669 (rmail-toggle-header): Likewise. If rmail-enable-mime is non-nil,
5670 call rmai-show-mime-function.
5671 (rmail-display-labels): If rmail-enable-mime is non-nil, update
5672 mode-line-process of rmail-view-buffer.
5673 (rmail-set-attribute): Be sure to set-buffer to the Rmail buffer.
5674 (rmail-show-message): Be sure to call rmail-auto-file in the Rmail
5675 buffer.
5676 (rmail-next-message, rmail-next-undeleted-message): Be sure to
5677 set-buffer to the Rmail buffer.
5678 (rmail-message-regexp-p): If rmail-enable-mime is non-nil, call
5679 rmail-search-mime-header-function.
5680 (rmail-search-message): New function.
5681 (rmail-search): Call rmail-search-message to check if a message
5682 matches REGEXP, lastly update point after calling
5683 rmail-show-message.
5684 (rmail-undelete-previous-message, rmail-expunge-confirmed)
5685 (rmail-only-expunge): Be sure to set-buffer to the Rmail buffer.
5686 (rmail-reply): If rmail-enable-mime is non-nil, don't narrow to
5687 header region, refer to rmail-msgref-vector while setting the
5688 current buffer to rmail-buffer temporarily.
5689 (rmail-forward): Be sure to bind forward-buffer to the Rmail buffer.
5690 If rmail-enable-mime is non-nil, call
5691 rmail-insert-mime-forwarded-message-function instead of inserting
5692 forwarded message by itself.
5693
5694 * mail/rmailkwd.el (rmail-read-label): Be sure to work in the
5695 Rmail buffer.
5696 (rmail-set-label, rmail-next-labeled-message): Likewise.
5697
5698 * mail/rmailout.el (rmail-output-read-rmail-file-name): Be sure to
5699 set-buffer to the Rmail buffer.
5700 (rmail-output-to-rmail-file): Likewise.
5701 (rmail-output): Likewise.
5702
5703 * mail/rmailsum.el (rmail-message-subject-p): Process the result
5704 of mail-fetch-field by rmail-summary-line-decoder.
5705 (rmail-new-summary): Be sure to go to the Rmail buffer.
5706 If rmail-enable-mime is non-nil, set rmail-summary-buffer of
5707 rmail-view-buffer to nil.
5708 (rmail-summary-undelete): If rmail-enable-mime is non-nil, pop to
5709 rmail-view-buffer.
5710 (rmail-summary-scroll-msg-up): Handle rmail-view-buffer, not
5711 rmail-buffer.
5712 (rmail-summary-scroll-msg-down): Likewise.
5713 (rmail-summary-beginning-of-message): Likewise.
5714 (rmail-summary-wipe): Likewise.
5715 (rmail-summary-toggle-header): Use save-window-excursion, not
5716 save-excursion. Update point in rmail-view-buffer, not in
5717 rmail-buffer.
5718 (rmail-summary-reply): Before calling rmail-reply, set buffer to
5719 rmail-view-buffer, not rmail-buffer.
5720
5721 2001-05-07 Gerd Moellmann <gerd@gnu.org>
5722
5723 * cus-edit.el (custom-file): Signal an error if user-init-file is
5724 nil (running -q).
5725
5726 * mail/rmailedit.el (rmail-edit-mode-hook): Add :version.
5727
5728 * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
5729 Add :version.
5730
5731 * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
5732 New option.
5733 (smtpmail-via-smtp): Print warnings about unknown SMTP extensions
5734 only if smtpmail-warn-about-unknown-extensions is set.
5735
5736 * mail/rmail.el (rmail-mode-map): Use rmail-sort-by-labels
5737 instead of rmail-sort-by-keywords.
5738
5739 * mail/rmailsort.el (rmail-sort-by-labels): Renamed from
5740 rmail-sort-by-keywords.
5741
5742 * mail/rmailsum.el (rmail-summary-sort-by-labels): Renamed from
5743 rmail-summary-sort-by-keywords. Doc fix.
5744 (rmail-summary-mode): Doc fix.
5745
5746 * mail/rmail.el (rmail-edit): New Custom group.
5747
5748 * mail/rmailedit.el (rmail-edit-mode): Doc fix.
5749 (rmail-edit-mode-hook): New user-option.
5750
5751 2001-05-05 Richard M. Stallman <rms@gnu.org>
5752
5753 * help.el (help-xref-symbol-regexp): Recognize "source of"
5754 and friends, meaning make a link to the source file.
5755 (help-make-xrefs): Handle "source of" and friends
5756 by constructing a link that visits the source file.
5757
5758 * dabbrev.el (dabbrev-select-buffers-function): Doc fix.
5759
5760 2001-05-04 Stefan Monnier <monnier@cs.yale.edu>
5761
5762 * progmodes/cperl-mode.el (cperl-font-lock-keywords)
5763 (cperl-font-lock-keywords-1, cperl-font-lock-keywords-2):
5764 Renamed from perl-font-lock-keywords to avoid clashes.
5765 (cperl-mode, cperl-load-font-lock-keywords, cperl-init-faces)
5766 (cperl-load-font-lock-keywords-1, cperl-load-font-lock-keywords-2):
5767 Updated correspondingly.
5768
5769 * diff-mode.el (diff-nonexistent-face, diff-font-lock-keywords):
5770 Typo `nonexistant' -> `nonexistent'.
5771
5772 2001-05-04 Martin Stjernholm <bug-cc-mode@gnu.org>
5773
5774 * cc-cmds.el (c-electric-delete, c-electric-delete-forward):
5775 Split `c-electric-delete' into two functions where
5776 `c-electric-delete-forward' always deletes forward and
5777 `c-electric-delete' only contains the code necessary for XEmacs to
5778 choose between backward and forward deletion.
5779
5780 * cc-mode.el: `c-electric-delete-forward' is now bound to C-d to
5781 get the electric behavior on that key too.
5782 (c-fill-paragraph): Fixed bogus direct use of
5783 c-comment-prefix-regexp, which caused an error when it's a list.
5784
5785 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
5786
5787 * dired-aux.el (dired-diff): Doc fix.
5788
5789 * dired.el (dired-diff): Likewise.
5790
5791 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
5792
5793 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
5794
5795 2001-05-02 Stefan Monnier <monnier@cs.yale.edu>
5796
5797 * vc.el (vc-next-action-on-file): Only force buffer+file to writable
5798 if both the buffer and the file are read-only.
5799
5800 * progmodes/sh-script.el (sh-prev-line): Look for sh-heredoc-face
5801 rather than font-lock-string-face.
5802 (sh-get-indent-info): Treat heredocs like strings.
5803
5804 2001-05-02 Gerd Moellmann <gerd@gnu.org>
5805
5806 * textmodes/texinfmt.el (texinfo-format-parse-args): Don't consume
5807 a newline following `}'.
5808 (texinfo-format-email): New function.
5809 (toplevel): Use texinfo-format-email for @email.
5810 (texinfo-format-kbd-regexp, texinfo-format-kbd-end-regexp):
5811 Add `display'.
5812 (texinfo-sort-region): Goto point-min before sorting.
5813 (texinfo-set): Remove leading white space from value.
5814 From yagi@is.titech.ac.jp.
5815
5816 * replace.el (query-replace-regexp-eval): Doc fix.
5817
5818 2001-05-01 Stefan Monnier <monnier@cs.yale.edu>
5819
5820 * diff-mode.el (diff-nonexistant-face): New face.
5821 (diff-font-lock-keywords): Use it.
5822
5823 2001-04-30 Eli Zaretskii <eliz@is.elta.co.il>
5824
5825 * font-lock.el (font-lock-mode): Doc fix.
5826
5827 * dired-aux.el (dired-do-rename-regexp, dired-do-copy-regexp)
5828 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
5829
5830 2001-04-30 Gerd Moellmann <gerd@gnu.org>
5831
5832 * progmodes/sh-script.el (sh-font-lock-heredoc): Allow optional
5833 backslash at the start of the here-document delimiter.
5834 (sh-font-lock-syntactic-keywords): Likewise.
5835
5836 * mail/rmail.el (rmail-message-regexp-p): Yet another fix.
5837
5838 2001-04-29 Eli Zaretskii <eliz@is.elta.co.il>
5839
5840 * term/tty-colors.el (tty-color-define, tty-color-off-gray-diag)
5841 (tty-color-translate, tty-color-by-index, tty-color-values)
5842 (tty-color-desc): Doc fix.
5843
5844 2001-04-27 Eli Zaretskii <eliz@is.elta.co.il>
5845
5846 * dired-aux.el (dired-do-create-files, dired-do-copy)
5847 (dired-do-symlink, dired-do-hardlink, dired-do-rename):
5848 Mention dired-dwim-target in the doc string.
5849
5850 2001-04-28 Miles Bader <miles@gnu.org>
5851
5852 * dabbrev.el (dabbrev--ignore-buffer-p): New function.
5853 (dabbrev--find-expansion): Use it.
5854 (dabbrev--select-buffers): Don't select ignored buffers.
5855
5856 2001-04-27 Gerd Moellmann <gerd@gnu.org>
5857
5858 * mail/rmail.el (rmail-message-regexp-p): Don't match before headers.
5859
5860 2001-04-26 Richard M. Stallman <rms@gnu.org>
5861
5862 * dabbrev.el: Add doc strings for some functions.
5863 (dabbrev--eliminate-newlines): New variable.
5864 (dabbrev--substitute-expansion): Convert newlines to spaces
5865 if dabbrev--eliminate-newlines is set.
5866 If abbrev and expansion are both all-lower-case,
5867 leave dabbrev--last-case-pattern nil.
5868
5869 2001-04-26 Gerd Moellmann <gerd@gnu.org>
5870
5871 * mail/rmail.el (rmail-message-regexp-p): Use rfc822-goto-eoh
5872 if necessary, like in rmail-show-message.
5873
5874 2001-04-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5875
5876 * ps-print.el: Color specified by number is forced to be float number.
5877 (ps-print-version): New version number (6.5.1.1).
5878 (ps-header-frame-alist, ps-footer-frame-alist): Adjust color
5879 initialization.
5880 (ps-prefix-quote): New internal var.
5881 (ps-print-quote): New fun.
5882 (ps-setup, ps-output-frame-properties, ps-float-format)
5883 (ps-format-color): Code fix.
5884 (ps-plot-region): Eliminate redundant foreground color text setting.
5885
5886 2001-04-26 Eli Zaretskii <eliz@is.elta.co.il>
5887
5888 * dabbrev.el (dabbrev--select-buffers): Add a doc string.
5889
5890 2001-04-25 Gerd Moellmann <gerd@gnu.org>
5891
5892 * faces.el (tty-handle-reverse-video): Don't set inverse-video.
5893
5894 2001-04-25 Eli Zaretskii <eliz@is.elta.co.il>
5895
5896 * info.el (Info-additional-directory-list): Doc fix.
5897
5898 * find-lisp.el (find-lisp-find-dired-filter)
5899 (find-lisp-find-dired-subdirectories, find-lisp-find-dired):
5900 Add autoload cookies. From Richard Y. Kim <ryk@dspwiz.com>.
5901
5902 2001-04-25 Stefan Monnier <monnier@cs.yale.edu>
5903
5904 * progmodes/make-mode.el (makefile-font-lock-keywords):
5905 Rationalize the rules for includes and conditionals and use the
5906 keyword face for them.
5907
5908 * faces.el (modify-face): Add compatibility for non-interactive use.
5909
5910 2001-04-24 John Wiegley <johnw@gnu.org>
5911
5912 * eshell/esh-cmd.el (eshell-find-alias-function): Corrected the
5913 fix from last night, since it wasn't finding eshell/cd.
5914
5915 2001-04-24 Gerd Moellmann <gerd@gnu.org>
5916
5917 * rect.el (string-rectangle): Revert to 20.x behaviour.
5918 (replace-rectangle): Make it an alias for string-rectangle.
5919 (string-insert-rectangle): New function.
5920
5921 2001-04-23 John Wiegley <johnw@gnu.org>
5922
5923 * eshell/em-unix.el (eshell/diff): Fixed problems that were
5924 occurring with Emacs 21's diff.el/compile.el interaction layer.
5925
5926 2001-04-23 Colin Walters <walters@cis.ohio-state.edu>
5927
5928 * eshell/esh-cmd.el (eshell-find-alias-function): Return t in the
5929 case where the function was defined in a file, but not part of an
5930 eshell module.
5931
5932 2001-04-23 John Wiegley <johnw@gnu.org>
5933
5934 * eshell/em-smart.el (eshell-smart-redisplay): Added some safety
5935 code to work around a redisplay problem I've been having.
5936
5937 2001-04-23 John Wiegley <johnw@gnu.org>
5938
5939 * calendar/timeclock.el (timeclock-day-required): If the time
5940 required for a particular day is not set, use `timeclock-workday'.
5941 (timeclock-find-discrep): Added some sample code in a comment.
5942
5943 * eshell/eshell.el (eshell-command): Made a few changes so that
5944 `eshell-command' could be called programmatically.
5945
5946 * eshell/esh-mode.el (eshell-non-interactive-p): Moved to eshell.el.
5947
5948 * eshell/eshell.el (eshell-non-interactive-p): Moved from esh-mode.el.
5949
5950 2001-04-23 John Wiegley <johnw@gnu.org>
5951
5952 * calendar/timeclock.el: Updated copyright.
5953 (timeclock-generate-report): Don't report the daily or two-week
5954 total, if no time has been worked in that period.
5955 (timeclock-find-discrep): Moved call to `file-readable-p'; removed
5956 final computational form, which was unnecessary; corrected a
5957 parsing problem when timeclock-relative was nil.
5958
5959 2001-04-23 Kahlil Hodgson <kahlil@discus.anu.edu.au>
5960
5961 * calendar/timeclock.el (timeclock-modeline-display): Check if
5962 `list-entry' is null.
5963 (timeclock-use-display-time): The first argument to `set-variable'
5964 must be a symbol.
5965
5966 2001-04-23 Eli Zaretskii <eliz@is.elta.co.il>
5967
5968 * calendar/calendar.el (diary-entry-marker)
5969 (calendar-today-marker, calendar-holiday-marker):
5970 Use display-color-p instead of window-system.
5971 (calendar-mode-map, calendar-mode): Use display-popup-menus-p
5972 instead of window-system.
5973 (calendar-hide-window): Use display-multi-frame-p instead of
5974 window-system.
5975
5976 * calendar/cal-x.el (calendar-two-frame-setup)
5977 (calendar-only-one-frame-setup, calendar-one-frame-setup):
5978 Use display-multi-frame-p instead of window-system.
5979
5980 2001-04-23 Gerd Moellmann <gerd@gnu.org>
5981
5982 * play/fortune.el (fortune-from-region): Use `eq' instead of `eql'.
5983
5984 * textmodes/ispell.el, emacs-lisp/checkdoc.el,
5985 * progmodes/ebrowse.el, play/fortune.el: Fix autoload cookies.
5986
5987 2001-04-23 Alex Schroeder <alex@gnu.org>
5988
5989 * goto-addr.el: Instead of defining line-beginning-position and
5990 line-end-position a defalias is used for point-at-bol and point-at-eol.
5991
5992 2001-04-23 Alex Schroeder <alex@gnu.org>
5993
5994 * goto-addr.el: Added XEmacs compatibility code.
5995 (goto-address-highlight-keymap): Made keybindings XEmacs compatible.
5996
5997 2001-04-22 Eli Zaretskii <eliz@is.elta.co.il>
5998
5999 * textmodes/paragraphs.el (sentence-end): Doc fix.
6000
6001 2001-04-20 Alex Schroeder <alex@gnu.org>
6002
6003 * sql.el (sql-escape-newlines-and-send): New function.
6004 (sql-db2): Set comint-input-sender to sql-escape-newlines-and-send.
6005
6006 2001-04-20 Alex Schroeder <alex@gnu.org>
6007
6008 * sql.el (sql-db2-program): New option.
6009 (sql-db2-options): New option.
6010 (sql-db2): New function.
6011
6012 2001-04-20 Alex Schroeder <alex@gnu.org>
6013
6014 * sql.el (sql-mode-menu): Added highlighting entries.
6015 (sql-highlight-oracle-keywords): New function.
6016 (sql-highlight-postgres-keywords): New function.
6017 (sql-highlight-ansi-keywords): New function.
6018
6019 2001-04-20 Alex Schroeder <alex@gnu.org>
6020
6021 * sql.el (sql-help): Doc change.
6022
6023 2001-04-19 Karl Fogel <kfogel@collab.net>
6024
6025 * saveplace.el (save-place-alist-to-file): Removed no-effect code
6026 that inserted file content only to delete it immediately.
6027 Probably a cut-and-paste bug. Thanks to Juanma Barranquero
6028 <lektu@uol.com.br> for the patch.
6029
6030 2001-04-19 Stefan Monnier <monnier@cs.yale.edu>
6031
6032 * emacs-lisp/easy-mmode.el (easy-mmode-defsyntax): Unquote `doc'.
6033
6034 2001-04-18 Gerd Moellmann <gerd@gnu.org>
6035
6036 * emacs-lisp/cl-indent.el (toplevel): Comment out the spec
6037 for defmethod.
6038
6039 * comint.el (comint-cr-magic): New function.
6040 (toplevel): Add it to comint-preoutput-filter-functions.
6041
6042 2001-04-18 Andrew Innes <andrewi@gnu.org>
6043
6044 * makefile.w32-in (EMACSLOADPATH): Define.
6045 (custom-deps, autoloads, .el.elc, compile-files-CMD, compile-files-SH)
6046 (recompile): Remove stuff to set EMACSLOADPATH.
6047
6048 2001-04-18 Gerd Moellmann <gerd@gnu.org>
6049
6050 * language/slovak.el ("Slovak"): Add tutorial entry.
6051
6052 * net/browse-url.el (browse-url-new-window-flag): Renamed from
6053 browse-url-new-window-p.
6054
6055 2001-04-17 Eli Zaretskii <eliz@is.elta.co.il>
6056
6057 * info.el (Info-menu-update): When there are no menus and/or no
6058 cross references in the node, make the respective items of the
6059 Info menu-bar menu inactive.
6060
6061 2001-04-17 Gerd Moellmann <gerd@gnu.org>
6062
6063 * indent.el (indent-for-tab-command): Call indent-line-function
6064 with no argument if PREFIX-ARG is non-nil.
6065
6066 * frame.el (delete-other-frames): Handle minibuffer-only frames.
6067
6068 2001-04-17 Eli Zaretskii <eliz@is.elta.co.il>
6069
6070 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Don't invoke CVS as
6071 an async subprocess if start-process is unavailable. Suggested by
6072 Tim Van Holder <tim.van.holder@pandora.be>.
6073
6074 2001-04-15 Eli Zaretskii <eliz@is.elta.co.il>
6075
6076 * info.el (Info-additional-directory-list): Doc fix. Suggested by
6077 Kai Grossjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>.
6078
6079 2001-04-14 Eli Zaretskii <eliz@is.elta.co.il>
6080
6081 * info.el (Info-file-list-for-emacs): Add an entry for the "info"
6082 manual.
6083
6084 2001-04-13 Stefan Monnier <monnier@cs.yale.edu>
6085
6086 * pcvs-defs.el (cvs-mode-map): Bind C-o like in dired.
6087 (cvs-menu): Add a few entries.
6088
6089 * pcvs.el (cvs-addto-collection): Don't merge MESSAGE fileinfos.
6090 (cvs-update-filter): Only advertise `cvs-mode-delete-lock' if the
6091 lock file appears to be reachable from Emacs.
6092 (cvs-mode-mark-on-state, cvs-mode-display-file): New functions.
6093 (cvs-mode-find-file): Look for cvs-header-face rather than
6094 cvs-dirname-face (which doesn't exist).
6095 (cvs-mode-find-file): Allow `other' to be set to `dont-select'.
6096
6097 * pcvs-parse.el (cvs-parse-run-table): Remove misleading text.
6098
6099 2001-04-13 Eli Zaretskii <eliz@is.elta.co.il>
6100
6101 * emulation/pc-select.el (pc-selection-mode): Don't turn on
6102 normal-erase-is-backspace on a tty. Instead, bind some keys such
6103 as [delete] directly, like pc-select.el did before
6104 normal-erase-is-backspace was invented.
6105
6106 2001-04-12 Eli Zaretskii <eliz@is.elta.co.il>
6107
6108 * ls-lisp.el (ls-lisp-format): Leave a blank before "root".
6109
6110 2001-04-11 John Wiegley <johnw@gnu.org>
6111
6112 * eshell/em-ls.el (eshell-ls-insert-directory):
6113 Set font-lock-defaults to nil, to prevent fontification in dired
6114 buffers, if Eshell's ls is being used.
6115
6116 2001-04-11 John Wiegley <johnw@gnu.org>
6117
6118 * calendar/timeclock.el (timeclock-completing-read): New function.
6119 (timeclock-ask-for-project, timeclock-ask-for-reason):
6120 Call `timeclock-completing-read'.
6121
6122 * eshell/em-alias.el (eshell-command-aliased-p): `assoc' was
6123 required where `member' was being used.
6124
6125 2001-04-11 Colin Walters <walters@cis.ohio-state.edu>
6126
6127 * eshell/em-hist.el (eshell-previous-matching-input):
6128 Don't display "History item" if the the minibuffer is active.
6129
6130 2001-04-11 Gerd Moellmann <gerd@gnu.org>
6131
6132 * startup.el (command-line): Output a newline after printing
6133 an error from loading the window system's init file.
6134
6135 2001-04-11 Eli Zaretskii <eliz@is.elta.co.il>
6136
6137 * textmodes/texinfo.el (texinfo-font-lock-keywords):
6138 Add fontification for @value, @dfn, @dmn, @acronym, @anchor, and
6139 @inforef. Add an OVERRIDE of `keep' to highlight specs of
6140 keywords whose arguments routinely include @@.
6141
6142 2001-04-10 Gerd Moellmann <gerd@gnu.org>
6143
6144 * emacs-lisp/advice.el (ad-make-advised-definition):
6145 Construct advice for subrs differently.
6146
6147 * textmodes/paragraphs.el (forward-sentence): Put the sentence-end
6148 regexp in parentheses when building the regexp for searching backwards.
6149
6150 * simple.el (completion-list-mode-finish): New function.
6151 (toplevel): Add completion-list-mode-finish to temp-buffer-show-hook.
6152
6153 * language/european.el ("Polish"): Change sample text.
6154 From jsbien@mimuw.edu.pl (Janusz S. Bie\e,Bq\e(B).
6155
6156 * progmodes/sh-script.el (sh-indent-line): Add optional PREFIX-ARG
6157 parameter.
6158
6159 * faces.el (menu): Doc fix.
6160
6161 2001-04-10 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6162
6163 * ps-print.el: Footer implementation. Doc fix.
6164 (ps-print-version): New version number (6.5.1).
6165 (ps-header-frame-alist): New customization var for header frame
6166 properties.
6167 (ps-line-number-color): New customization var for line number color.
6168 (ps-footer-offset, ps-footer-line-pad, ps-print-footer)
6169 (ps-print-footer-frame, ps-footer-frame-alist, ps-footer-lines)
6170 (ps-footer-font-family, ps-footer-font-size, ps-left-footer)
6171 (ps-right-footer): New customization vars for footers.
6172 (ps-footer-pad, ps-footer-font-size-internal): New internal vars for
6173 footers.
6174 (ps-setup, ps-get-page-dimensions, ps-generate-header-line)
6175 (ps-generate-header, ps-begin-file, ps-begin-job, ps-begin-page):
6176 Code fix.
6177 (ps-prologue-file): Indentation fix.
6178 (ps-print-quote): Fun eliminated.
6179 (ps-value, ps-get, ps-put, ps-del): New funs for alist handling.
6180 (ps-output-frame-properties): New fun.
6181 (ps-fonts, ps-font-number, ps-rgb-color, ps-end-page, ps-next-page)
6182 (ps-skip-newline): Replace defun by defsubst.
6183
6184 2001-04-10 Colin Walters <walters@cis.ohio-state.edu>
6185
6186 * eshell/eshell.el (eshell-command): Needed a "%s" format
6187 specifier, in case the buffer contains percent characters.
6188
6189 2001-04-10 John Wiegley <johnw@gnu.org>
6190
6191 * calendar/timeclock.el (timeclock-generate-report): Added a
6192 missing insert of the project name.
6193
6194 2001-04-09 Gerd Moellmann <gerd@gnu.org>
6195
6196 * obsolete/profile.el: Moved from emacs-lisp/.
6197
6198 * Makefile.in (nonobsolete_setwins): New macro.
6199 (finder-data): Use it instead of `setwins'.
6200 From: Dave Love <fx@gnu.org>.
6201
6202 * server.el (server-visit-files): Set server-existing-buffer correctly.
6203 (server-visit-files): Run server-visit-hook after going to
6204 line 1 so that the hook can set point as it sees fit.
6205
6206 * bindings.el (mode-line-modified): Unify help messages.
6207
6208 2001-04-07 Eli Zaretskii <eliz@is.elta.co.il>
6209
6210 * dos-fns.el (dos-8+3-filename): Rename from dos-truncate-to-8+3.
6211 All callers changed.
6212
6213 2001-04-06 Eli Zaretskii <eliz@is.elta.co.il>
6214
6215 * international/titdic-cnv.el (miscdic-convert): For MS-DOS, if
6216 long file names aren't supported, truncate the file names in
6217 quail-misc-package-ext-info to 8+3 before matching them against
6218 FILENAME.
6219
6220 * dos-fns.el (dos-truncate-to-8+3): New function.
6221
6222 * progmodes/compile.el (grep-compute-defaults): Use null-device
6223 instead of literal /dev/null. Reported by Jens Schmidt
6224 <schmidt@mathematik.uni-kl.de>.
6225
6226 * simple.el (normal-erase-is-backspace-mode): Doc fix.
6227
6228 2001-04-06 Stefan Monnier <monnier@cs.yale.edu>
6229
6230 * textmodes/sgml-mode.el: Add unknown maintainer.
6231 (sgml-tag): Pass `str' explicitly through skeleton-transformation.
6232 (html-mode-map): Use set-keymap-parent.
6233
6234 2001-04-06 Dave Love <fx@gnu.org>
6235
6236 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
6237 Remove redundant string-to-list.
6238
6239 2001-04-05 Stefan Monnier <monnier@cs.yale.edu>
6240
6241 * composite.el (reference-point-alist): Doc fix.
6242
6243 2001-04-05 Sam Steingold <sds@gnu.org>
6244
6245 * font-lock.el (font-lock-keywords-case-fold-search):
6246 Make buffer-local. This fixes a very annoying bug when loading a Lisp
6247 file made font-lock case-insensitive.
6248
6249 2001-04-05 Gerd Moellmann <gerd@gnu.org>
6250
6251 * faces.el (defface menu): Doc fix.
6252
6253 * wid-edit.el (widget-color-sample-face-get): Don't make
6254 faces for undefined colors.
6255
6256 * version.el (emacs-version): Include LessTif/Motif version info.
6257
6258 2001-04-04 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6259
6260 * ps-mule.el: Eliminate cl package dependence.
6261 (char-valid-p, multibyte-string-p, string-make-multibyte): Define funs
6262 if they aren't defined yet.
6263 (ps-mule-encode-header-string, ps-mule-header-string-charsets):
6264 Eliminate cl package dependence.
6265
6266 2001-04-04 Stefan Monnier <monnier@cs.yale.edu>
6267
6268 * progmodes/cc-cmds.el (c-outline-level):
6269 Bind buffer-invisibility-spec. Originally from Dave Love, but
6270 got lost when incorporating version 5.26.
6271
6272 2001-04-04 Eli Zaretskii <eliz@is.elta.co.il>
6273
6274 * emulation/pc-select.el (pc-selection-mode):
6275 Call normal-erase-is-backspace-mode instead of binding
6276 keys individually.
6277
6278 * cus-load.el (normal-erase-is-backspace): Use it instead of
6279 delete-key-deletes-forward.
6280
6281 * startup.el (command-line): Use normal-erase-is-backspace and
6282 normal-erase-is-backspace-mode.
6283
6284 * simple.el (normal-erase-is-backspace): Rename from
6285 delete-key-deletes-forward. Doc fix.
6286 (normal-erase-is-backspace-mode): Rename from
6287 delete-key-deletes-forward-mode. Doc fix.
6288 Run normal-erase-is-backspace-hook.
6289
6290 * dired.el (dired-move-to-filename-regexp): Support file sizes in
6291 ``human-readable'' format produced by GNU `ls'.
6292 (dired-move-to-filename-regexp): Recognize ISO format dates.
6293 From Paul Eggert <eggert@twinsun.com>.
6294
6295 2001-04-04 Gerd Moellmann <gerd@gnu.org>
6296
6297 * emacs-lisp/lisp-mnt.el (lm-keywords-list, lm-keywords-finder-p):
6298 New functions.
6299 (lm-verify): Check keywords.
6300 From Eric M. Ludlam <eric@siege-engine.com>.
6301
6302 2001-04-03 Eric M. Ludlam <eric@siege-engine.com>
6303
6304 * speedbar.el (speedbar-insert-image-button-maybe): Check for
6305 `xemacs' feature instead of for the function `set-extent-property'.
6306
6307 2001-04-03 Stefan Monnier <monnier@cs.yale.edu>
6308
6309 * mail/mh-utils.el (mh-folder-hist): New var.
6310 (mh-prompt-for-folder): Use it and pass `default' to completing-read.
6311
6312 2001-04-03 Eli Zaretskii <eliz@is.elta.co.il>
6313
6314 * hexl.el (hexl-scroll-up): If scrolling gets outside the hexl
6315 region, position point on the first or last 16-byte group.
6316 (hexl-mode-map): Bind C-Home and C-End to hexl-beginning-of-buffer
6317 and hexl-end-of-buffer. Bind End and Home to hexl-end-of-line and
6318 hexl-beginning-of-line.
6319
6320 2001-04-03 Gerd Moellmann <gerd@gnu.org>
6321
6322 * icomplete.el (icomplete-mode): Treat an argument like other
6323 modes do.
6324
6325 * startup.el (fancy-splash-head): Use splash8.xpm for color
6326 depth 8.
6327
6328 * emacs-lisp/checkdoc.el (checkdoc-common-verbs-wrong-voice):
6329 Add an antry for ``converts''.
6330
6331 * language/slovak.el ("Slovak"): Add documentation string.
6332 From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk).
6333
6334 * language/czech.el ("Czech"): Add documentation string.
6335 From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk).
6336
6337 * ps-mule.el (ps-mule-font-info-database-bdf): Change `isci24-etl.bdf'
6338 to `isci24-mule.bdf'. From: Kenichi Handa <handa@etl.go.jp>.
6339
6340 2001-04-02 Stefan Monnier <monnier@cs.yale.edu>
6341
6342 * mail/mail-extr.el (mail-extr-delete-char, mail-extr-safe-move-sexp)
6343 (mail-extr-skip-whitespace-forward, mail-extr-nuke-char-at)
6344 (mail-extr-skip-whitespace-backward, mail-extr-undo-backslash-quoting):
6345 Use `defsubst' rather than a macro to ease debugging.
6346 (mail-extr-last): Remove (use `last' instead).
6347 (mail-extract-address-components): Properly reset the syntax-table
6348 after parsing an address. Use `last' rather than mail-extr-last.
6349 Make sure the end marker stays at the very end.
6350
6351 2001-04-02 Eli Zaretskii <eliz@is.elta.co.il>
6352
6353 * international/titdic-cnv.el (miscdic-convert): Fix a typo in the
6354 last change.
6355
6356 2001-04-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6357
6358 * ps-print.el: Line and paragraph spacing feature. Region to cut
6359 out when printing. Doc fix.
6360 (ps-print-version): New version number (6.5).
6361 (ps-line-spacing, ps-paragraph-spacing, ps-paragraph-regexp):
6362 New vars. Line and paragraph spacing feature.
6363 (ps-begin-cut-regexp, ps-end-cut-regexp): New vars. Region to cut
6364 out when printing.
6365 (ps-setup, ps-nb-pages, ps-get-page-dimensions, ps-begin-file)
6366 (ps-get-font-size, ps-begin-job, ps-continue-line)
6367 (ps-plot-region): Code fix.
6368 (ps-print-prologue-2): Var eliminated.
6369 (ps-line-spacing-internal, ps-paragraph-spacing-internal):
6370 New internal vars.
6371 (ps-get-size): New fun.
6372 (ps-output-string-prim, ps-init-output-queue, ps-print-page-p)
6373 (ps-next-line): Replace defun by defsubst.
6374 (ps-mule-plot-string): Autoload doc fix.
6375
6376 * ps-bdf.el: XEmacs compatibility. Doc fix.
6377 (installation-directory, coding-system-for-read): Declare vars if
6378 it's not declared yet.
6379 (bdf-read-font-info, bdf-read-bitmap, bdf-get-bitmaps): Code fix.
6380
6381 * ps-mule.el: XEmacs compatibility. Doc fix.
6382 (leading-code-private-22): Declare var if it's not declared yet.
6383 (charset-bytes, charset-dimension, charset-id, charset-width)
6384 (find-charset-region, split-char, char-width, chars-in-region)
6385 (forward-point, decompose-composite-char, encode-coding-string)
6386 (coding-system-p, ccl-execute-on-string, define-ccl-program):
6387 Define funs if not defined yet.
6388 (encode-composition-rule, find-composition): Define funs if not
6389 loaded yet.
6390 (ps-mule-prologue): PostScript code fix.
6391
6392 2001-04-02 Kenichi Handa <handa@etl.go.jp>
6393
6394 * ps-mule.el (ps-mule-generate-font): New arg HEADER-P. If it is
6395 non-nil, generate font for the header strings.
6396 (ps-mule-prepare-font): Likewise.
6397 (ps-mule-generate-glyphs): Likewise.
6398 (ps-mule-string-encoding): Likewise.
6399 (ps-mule-header-charsets): New variable.
6400 (ps-mule-encode-header-string): New function.
6401 (ps-mule-header-string-charsets): New function.
6402 (ps-mule-begin-job): Check charsets in the header strings. If there
6403 are non-ASCII and non-Latin1 charsets, prepare fonts for them.
6404
6405 * ps-print.el (ps-generate-header-line): Encode the header string by
6406 ps-mule-encode-header-string.
6407 (ps-mule-encode-header-string): Declare autoload.
6408
6409 2001-04-02 Gerd Moellmann <gerd@gnu.org>
6410
6411 * frame.el (cursor-in-non-selected-windows):
6412 Replaces show-cursor-in-non-selected-windows.
6413
6414 2001-03-31 Kenichi Handa <handa@etl.go.jp>
6415
6416 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
6417 Delete entries for "chinese-py" and "chinese-ziranma".
6418 (quail-misc-package-ext-info): New variable.
6419 (tsang-quick-converter): New function.
6420 (tsang-b5-converter, quick-b5-converter, tsang-cns-converter)
6421 (quick-cns-converter, py-converter, ziranma-converter)
6422 (miscdic-convert, batch-miscdic-convert): New functions.
6423
6424 2001-03-30 Kenichi Handa <handa@etl.go.jp>
6425
6426 * international/utf-8.el (ccl-encode-mule-utf-8): Fix handling of
6427 eight-bit-control chars.
6428
6429 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
6430 Reduce making temporary vector (suggested by Dave Love).
6431
6432 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
6433
6434 * simple.el (transient-mark-mode): Mention ESC ESC ESC in the doc
6435 string as well.
6436
6437 2001-03-30 Andreas Schwab <schwab@suse.de>
6438
6439 * files.el (backup-directory-alist): Fix typo.
6440
6441 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
6442
6443 * time-stamp.el (time-stamp-format): Doc fix. From Paul Eggert
6444 <eggert@twinsun.com>.
6445
6446 2001-03-30 Dave Love <fx@gnu.org>
6447
6448 * progmodes/fortran.el (fortran-comment-region): Fix typo.
6449
6450 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
6451
6452 * simple.el (transient-mark-mode): Mention C-g in the doc string.
6453
6454 2001-03-30 Miles Bader <miles@gnu.org>
6455
6456 * subr.el (interactive-form): Fix paren typo.
6457
6458 2001-03-29 Eli Zaretskii <eliz@is.elta.co.il>
6459
6460 * emacs-lisp/profile.el: Say that it's obsolete in the header
6461 line, so that finder.el puts that into its data-base.
6462 Suggested by Alex Schroeder <alex@gnu.org>.
6463
6464 2001-03-29 Paul Eggert <eggert@twinsun.com>
6465
6466 * mail/emacsbug.el (report-emacs-bug): Report LC_COLLATE,
6467 LC_MESSAGES, LC_MONETARY, LC_NUMERIC, and LC_TIME as well.
6468
6469 2001-03-29 Stefan Monnier <monnier@cs.yale.edu>
6470
6471 * generic.el (generic-mode-set-comments): Use "" rather than nil
6472 for comment-end.
6473
6474 2001-03-29 Gerd Moellmann <gerd@gnu.org>
6475
6476 * emacs-lisp/advice.el (ad-make-advised-definition):
6477 Call interactive-form to obtain the interactive spec of subrs.
6478
6479 * subr.el (interactive-form): New function.
6480
6481 2001-03-29 Andre Spiegel <spiegel@gnu.org>
6482
6483 * vc-sccs.el (vc-sccs-register): Use relative file names.
6484
6485 2001-03-28 Gerd Moellmann <gerd@gnu.org>
6486
6487 * bookmark.el (bookmark-get-bookmark): Handle case that
6488 BOOKMARK is not a string.
6489
6490 * image.el (image-type-regexps): Change type for PS files
6491 to `postscript'.
6492
6493 * subr.el (read-passwd): Clear command history after each
6494 character entered. From: Stephen Gildea
6495 <gildea@stop.mail-abuse.org>.
6496
6497 2001-03-27 Kenichi Handa <handa@etl.go.jp>
6498
6499 * international/kkc.el (kkc-save-init-file): Locally bind
6500 print-length to nil.
6501
6502 2001-03-26 Gerd Moellmann <gerd@gnu.org>
6503
6504 * textmodes/flyspell.el: Some doc fixes.
6505 (flyspell-maybe-correct-transposition)
6506 (flyspell-maybe-correct-doubling): Use a temporary buffer
6507
6508 * textmodes/ispell.el (ispell-parse-output): Doc fix.
6509
6510 * emacs-lisp/byte-opt.el (byte-optimize-while)
6511 (byte-optimize-form-code-walker): Diagnose too few arguments
6512 for `if' and `while'.
6513
6514 2001-03-26 Kenichi Handa <handa@etl.go.jp>
6515
6516 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
6517 Prepend `\' to "\<quail-translation-docstring>".
6518
6519 2001-03-26 Gerd Moellmann <gerd@gnu.org>
6520
6521 * autorevert.el (global-auto-revert-non-file-buffers):
6522 Remove duplicate defcustom.
6523
6524 2001-03-26 Miles Bader <miles@gnu.org>
6525
6526 * international/latin1-disp.el (latin1-char-displayable-p):
6527 Add leading "-" for X font pattern.
6528
6529 2001-03-26 Kenichi Handa <handa@etl.go.jp>
6530
6531 * international/mule-diag.el (describe-coding-system):
6532 For raw-text and emacs-mule, don't add anymore text about what
6533 charsets they can encode.
6534
6535 2001-03-25 Eli Zaretskii <eliz@is.elta.co.il>
6536
6537 * help.el (view-lossage): Mention open-dribble-file in the doc
6538 string. Suggested by Riku Saikkonen <rjs@lloke.dna.fi>.
6539
6540 2001-03-23 Stefan Monnier <monnier@cs.yale.edu>
6541
6542 * skeleton.el (skeleton-internal-list): Fix bogus logic.
6543 (skeleton-pair-insert-maybe): Don't pair after a backslash.
6544
6545 2001-03-23 Kenichi Handa <handa@etl.go.jp>
6546
6547 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
6548 Call ccl-execute-on-string directly so that CCL program handling
6549 multibyte sequence can work correctly.
6550 (encoded-kbd-setup-keymap): Fix the default value of `valid-codes'
6551 property of the coding system.
6552
6553 2001-03-23 Stefan Monnier <monnier@cs.yale.edu>
6554
6555 * textmodes/fill.el (fill-individual-paragraphs-prefix):
6556 Fix transcription typo.
6557
6558 2001-03-22 Rajesh Vaidheeswarran <rv@gnu.org>
6559
6560 * whitespace.el: Add buffer local variables to toggle testing of
6561 whitespaces in buffers without affecting the default values.
6562 Bump version to 3.0 to account for a few other changes.
6563 (whitespace-toggle-ateol-check, whitespace-toggle-leading-check)
6564 (whitespace-toggle-trailing-check, whitespace-toggle-indent-check)
6565 (whitespace-toggle-spacetab-check): New functions.
6566
6567 2001-03-21 Stefan Monnier <monnier@cs.yale.edu>
6568
6569 * obsolete/cplus-md.el: Moved from progmodes/cplus-md.el.
6570
6571 2001-03-21 Gerd Moellmann <gerd@gnu.org>
6572
6573 * bs.el (bs-cycle-next, bs-cycle-previous): Fix handling of
6574 bs-cycle-configuration-name. From Juanma Barranquero
6575 <lektu@uol.com.br>.
6576
6577 * Makefile.in, makefile.w32-in (COMPILE_FIRST): Add cc-mode.el
6578 and cc-vars.el.
6579
6580 * mail/sendmail.el (sendmail-send-it): Don't parse Resent-*
6581 headers. Always invoke sendmail with option -t.
6582
6583 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6584
6585 * Release of cc-mode 5.28.
6586
6587 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6588
6589 * cc-mode.el, cc-vars.el (c-common-init, c-default-style):
6590 Removed the hardcoded switch to "java" style in Java mode.
6591 It's instead taken care of by the default value for c-default-style.
6592
6593 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6594
6595 * cc-align.el (c-lineup-math): Fix bug where lineup was
6596 triggered by equal signs in string literals.
6597
6598 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6599
6600 * cc-cmds.el (c-fill-paragraph): Fixed bug in the paragraph
6601 limit detection when at the ends of the buffer.
6602
6603 * cc-engine.el (c-guess-basic-syntax): Removed bogus check for
6604 "for" statement clause in case 7F; a better one is done
6605 earlier in case 7D anyway.
6606
6607 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6608
6609 * cc-cmds.el (c-guess-fill-prefix): Improved the heuristics
6610 somewhat more and did a small optimization.
6611
6612 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6613
6614 * cc-cmds.el (c-beginning-of-statement, c-end-of-statement):
6615 Use the limit argument only to limit the syntactic context
6616 search, not to limit the actual movement.
6617
6618 * cc-cmds.el (c-beginning-of-statement): Move by sentence
6619 inside multiline strings, just like in comments. Also various
6620 fixes to the paragraph and comment prefix recognition, block
6621 comment ender handling etc.
6622
6623 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6624
6625 * cc-cmds.el (c-fill-paragraph): Take more care to preserve
6626 the relative position of the point.
6627
6628 * cc-cmds.el (c-electric-continued-statement): New function to
6629 use as abbrev hook to reindent for keywords such as "else"
6630 that continues an earlier statement.
6631
6632 * cc-menus.el (cc-imenu-c++-generic-expression): Treat structs
6633 like classes.
6634
6635 * cc-mode.el (c-mode, c++-mode, java-mode, objc-mode)
6636 (pike-mode): Populate the default abbrev tables to reindent for
6637 keywords such as "else" that can continue earlier statements.
6638 Abbrev mode is therefore turned on by default now. (Note that
6639 this doesn't apply to idl-mode, since IDL afaik doesn't have
6640 statements at all.)
6641
6642 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6643
6644 * cc-engine.el (c-inside-bracelist-p): Fix for handling
6645 bracelists where the declaration contains template arguments.
6646
6647 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6648
6649 * cc-cmds.el (c-comment-indent):
6650 Use `c-get-syntactic-indentation' to correctly calculate the
6651 syntactic indentation. Fixes bug with lineup functions that
6652 return vectors.
6653
6654 * cc-engine.el (c-get-syntactic-indentation): Split the
6655 indentation sum calculation from `c-indent-line' to a separate
6656 function.
6657
6658 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6659
6660 * cc-cmds.el (c-beginning-of-statement, c-comment-indent):
6661 Fixed places where it was assumed that preprocessor directives
6662 have to start in column zero.
6663
6664 * cc-engine.el (c-beginning-of-member-init-list): Handle C++
6665 template arguments after a class identifier properly.
6666
6667 * cc-engine.el (c-guess-basic-syntax): Treat initializer brace
6668 lists for `new Foo[]' constructs in Java as expressions and
6669 not top level definition brace lists on the top level, so that
6670 they'll get indented consistently with the same type of
6671 expression in a normal block.
6672
6673 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6674
6675 * cc-cmds.el (c-fill-paragraph): The kludge that checks
6676 whether the adaptive filling package fails to keep the comment
6677 prefix is now kludged further to check for filladapt-mode
6678 which doesn't have that problem. This is really icky, but it's
6679 the only way that works with the current misfeatures/bugs in
6680 both adaptive-fill-mode and filladapt-mode.
6681
6682 * cc-cmds.el (c-fill-paragraph): Made the way the paragraph
6683 around point is recognized more robust.
6684
6685 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6686
6687 * cc-cmds.el, cc-engine.el, cc-lobotomy.el (c-state-cache)
6688 (c-in-literal-cache, c-auto-fill-prefix, c-lit-limits)
6689 (c-lit-type): Fixed all internal variables used dynamically so
6690 that they are always bound.
6691
6692 * cc-cmds.el, cc-engine.el: Improved recovery of syntactic
6693 errors:
6694
6695 (c-indent-region): Fixed reporting of syntactic errors so that
6696 the region is fully reindented even when an error occurs.
6697 The last syntactic error is printed afterwards. Also cleanup up a
6698 whole lot of code that tried to optimize indentation of whole
6699 sexps but in reality accomplishes nothing.
6700
6701 (c-indent-sexp): Use c-indent-region.
6702
6703 (c-parsing-error): Changed this variable to hold the message
6704 for any syntactic error that is discovered.
6705
6706 (c-parse-state): Search backward from point instead of the bod
6707 position when the latter is invalid. This makes CC Mode
6708 recover faster when there are unbalanced close braces.
6709
6710 (c-backward-to-start-of-if): Use c-parsing-error to report
6711 dangling "else" clauses instead of throwing an error, and fall
6712 back to a reasonable position.
6713
6714 (c-indent-line): Added argument to avoid reporting syntactic errors.
6715
6716 (c-show-syntactic-information): Don't report any syntactic errors.
6717
6718 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6719
6720 * cc-cmds.el (c-beginning-of-statement): Fixed bugs with
6721 paragraph recognition when moving by sentence in literals.
6722
6723 * cc-langs.el (c-Java-javadoc-paragraph-start): Modified paragraph
6724 start regexp for javadoc to recognize javadoc markup in general instead
6725 of a specific set of keywords, to be more future-safe.
6726
6727 (c-Pike-pikedoc-paragraph-start)
6728 (c-Pike-pikedoc-paragraph-separate): New regexps to recognize
6729 pikedoc markup.
6730
6731 * cc-mode.el: Fixed initialization and use of c-current-comment-prefix.
6732
6733 (pike-mode): Initialize paragraph settings pikedoc recognition.
6734
6735 * cc-vars.el (c-default-style): Made a nicer Customize widget.
6736
6737 (c-comment-prefix-regexp): Made it possible to use an
6738 association list on this to specify mode specific regexps.
6739 The default value now use a special regexp in Pike mode to
6740 recognize pikedoc markup.
6741
6742 (c-current-comment-prefix): New variable containing the actual
6743 regexp from c-comment-prefix-regexp for the current buffer.
6744
6745 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6746
6747 * cc-cmds.el (c-electric-brace): Fixed check for special brace
6748 lists: We can't look at the syntax, since a brace list can get
6749 recognized as a plain statement-cont.
6750
6751 * cc-engine.el (c-guess-basic-syntax): Fixed bug where a
6752 special brace list opener broken over two lines got recognized
6753 as a statement on the second line. Case 9A changed.
6754
6755 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6756
6757 * cc-cmds.el (c-electric-brace): Fixed bug in c-state-cache
6758 adjustment after line is reindented.
6759
6760 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6761
6762 * cc-defs.el (c-point): Added optional argument for position
6763 to use instead of the current point.
6764
6765 * cc-defs.el, cc-engine.el (c-add-class-syntax): Do not add
6766 the in-expression block symbols when the construct starts at
6767 boi, to avoid the extra level of indentation in that case.
6768 Cases 4, 16A and 17E affected.
6769
6770 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6771
6772 * cc-cmds.el: Use `indent-according-to-mode' instead of direct
6773 calls to `c-indent-line', to adhere better to Emacs conventions.
6774
6775 * cc-engine.el (c-indent-line): Use the syntax already bound
6776 to `c-syntactic-context', if there is any.
6777
6778 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6779
6780 * cc-engine.el (c-get-offset): Fixed bug where the indentation
6781 wasn't added up correctly when a lineup function returned nil.
6782
6783 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6784
6785 * cc-engine.el (c-collect-line-comments): Fixed bug where
6786 empty lines were ignored when collecting line comments backwards.
6787
6788 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6789
6790 * cc-align.el (c-lineup-dont-change): Return an absolute
6791 indentation column to work correctly in the case when several
6792 syntactic elements are processed for the same line.
6793
6794 * cc-engine.el, cc-styles.el, cc-vars.el (c-evaluate-offset)
6795 (c-get-offset, c-indent-line, c-valid-offset, c-read-offset)
6796 (c-set-offset): Added absolute indentation column settings by
6797 using the vector type.
6798
6799 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6800
6801 * cc-cmds.el, cc-vars.el (c-electric-paren, c-cleanup-list):
6802 Implemented two new cleanups `space-before-funcall' and
6803 `compact-empty-funcall'.
6804
6805 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6806
6807 * cc-defs.el (c-paren-re, c-identifier-re): Two new macros for
6808 helping building regexps.
6809
6810 * cc-engine.el (c-on-identifier): New function for detecting
6811 identifiers. It takes keywords into account.
6812
6813 * cc-langs.el, cc-mode.el: Added regexps for complete keyword
6814 lists. `c-keywords' is set to a regexp matching all keywords
6815 in the current language.
6816
6817 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6818
6819 * cc-engine.el (c-beginning-of-statement-1): Added '#' to the
6820 list of characters to skip backwards over at the beginning of
6821 a statement, since it can precede string literals in Pike.
6822
6823 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6824
6825 * cc-cmds.el (c-guess-fill-prefix): Fixed bug with prefix
6826 recognition when standing on the last line in a C++ comment
6827 with nothing but whitespace after the prefix.
6828
6829 * cc-engine.el (c-backward-to-start-of-if): Fixed bug when
6830 given no limit argument.
6831
6832 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6833
6834 * cc-engine.el (c-inside-bracelist-p): Fixed brace list
6835 recognition for the `[]= operator symbol in Pike.
6836
6837 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6838
6839 * cc-bytecomp.el (cc-eval-when-compile): New macro that works
6840 around a bug in `eval-when-compile' in the byte compiler.
6841
6842 * cc-engine.el (c-forward-token-1): Fixed bug with return
6843 value when count is zero and there's no token start within the limit.
6844
6845 (c-guess-basic-syntax): Don't add 'comment-intro to lines with
6846 "prefix comments", i.e. comments which are followed by code on
6847 the same line.
6848
6849 * cc-mode-19.el: Fixes so that checks that must be done at
6850 compile time also are done then.
6851
6852 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6853
6854 * cc-defs.el: Make sure cc-mode-19 is loaded both at compile
6855 time and at runtime, and only when it's needed.
6856
6857 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6858
6859 Major cleanup for less error prone and more warning free
6860 compilation, including some fixes for bugs due to different
6861 compilation orders. Thanks to Martin Buchholz for providing
6862 the basis for all this.
6863
6864 * cc-bytecomp.el: New file that provides some byte compilation
6865 features: It ensures that files always are loaded from the
6866 current source directory during compilation, and it provides a
6867 set of macros to turn off specific compiler warnings for
6868 specific symbols. (It's not CC Mode specific in any way.)
6869
6870 Fixed a nearly acyclic dependency tree (both runtime and
6871 compile-time) between all files.
6872
6873 * cc-defs.el: Separated all macros before the inline functions,
6874 to ensure correct compilation.
6875
6876 * cc-defs.el, cc-engine.el: Moved c-beginning-of-macro to from
6877 cc-defs.el to cc-engine.el and made it a function instead.
6878
6879 * cc-mode-19.el: Patch the byte compiler in Emacs 19 not to warn
6880 about char-after.
6881
6882 * cc-vars.el: Cope even when there isn't a custom package
6883 containing defcustom available.
6884
6885 * cc-make.el: Removed since it's no longer necessary.
6886
6887 README: Updated installation instructions.
6888
6889 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6890
6891 * cc-cmds.el, cc-langs.el, cc-mode.el: Moved around things to
6892 improve the modularity: Moved all mode init stuff from
6893 cc-langs.el to cc-mode.el, including the keymap
6894 initialization; cc-langs now only contains the various
6895 variables for configuring the language syntax.
6896
6897 * cc-engine.el, cc-styles.el (c-evaluate-offset)
6898 (c-get-offset): Moved from cc-styles to cc-engine since file
6899 dependency analysis suggests they belong there (which also
6900 makes more sense). Thanks to Martin Buchholz for doing the analysis.
6901
6902 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6903
6904 * cc-cmds.el (c-fn-region-is-active-p): New function that
6905 wraps the corresponding macro, for use in places that aren't
6906 compiled. Thanks to Martin Buchholz for pointing out this.
6907
6908 * cc-langs.el (c-mode-menu): Use c-fn-region-is-active-p.
6909
6910 * cc-mode.el (c-prepare-bug-report-hooks): Hook variable to
6911 add things to the bug report.
6912
6913 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6914
6915 * cc-cmds.el (c-guess-fill-prefix): Fixed bug where the
6916 returned prefix could contain a newline when the search for a
6917 good prefix line failed.
6918
6919 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6920
6921 * cc-cmds.el (c-toggle-auto-state, c-toggle-hungry-state)
6922 (c-toggle-auto-hungry-state): Made the argument optional, as
6923 the documentation says it is.
6924
6925 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6926
6927 * cc-engine.el (c-guess-basic-syntax): Don't treat the Pike
6928 multiline string syntax, #"...", as a cpp macro.
6929
6930 2001-03-21 Paul Eggert <eggert@twinsun.com>
6931
6932 * international/mule-cmds.el (set-locale-environment):
6933 Set system-messages-locale and system-time-locale, but only if the
6934 caller specifies a non-nil locale name.
6935
6936 2001-03-20 Gerd Moellmann <gerd@gnu.org>
6937
6938 * pcvs-util.el (cvs-bury-buffer): Bodiless `if' statements cause
6939 problems for the interpreter. From: John Wiegley <johnw@gnu.org>
6940
6941 2001-03-20 Gerd Moellmann <gerd@gnu.org>
6942
6943 * follow.el (follow-avoid-tail-recenter): Doc fix.
6944
6945 * custom.el (custom-set-variables): Avoid reversing the list
6946 of args needlessly.
6947
6948 * startup.el (fancy-splash-head): Don't change the colors of the
6949 XPM image on a dark background.
6950
6951 * comint.el (comint-exec-1): Set columns of the terminal to
6952 window-width instead of frame-width.
6953
6954 * info.el (Info-scroll-down): Add missing WINDOW arg for
6955 pos-visible-in-window-p.
6956
6957 * ehelp.el (electric-help-mode-hook): Add defcustom.
6958
6959 * mail/sendmail.el (mail-mode): Activate case-folding in
6960 font-lock-defaults.
6961
6962 2001-03-19 Stefan Monnier <monnier@cs.yale.edu>
6963
6964 * bindings.el (mode-line-mode-menu): `glasses-mode' might be unbound.
6965 (completion-ignored-extensions): Remove duplicate ".class".
6966
6967 2001-03-19 Andreas Schwab <schwab@suse.de>
6968
6969 * textmodes/reftex-dcr.el (reftex-view-crossref): Doc fix.
6970 From Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
6971
6972 2001-03-19 Gerd Moellmann <gerd@gnu.org>
6973
6974 * language/european.el ("Latin-5", "Latin-4"): Use postfix input
6975 methods since there are not prefix input methods.
6976
6977 2001-03-19 Kenichi Handa <handa@etl.go.jp>
6978
6979 * international/mule-cmds.el (read-input-method-name):
6980 Locally bind enable-recursive-minibuffers to t.
6981
6982 2001-03-18 Stefan Monnier <monnier@cs.yale.edu>
6983
6984 * emacs-lisp/lmenu.el (add-menu): Re-added (was erroneously removed).
6985
6986 2001-03-17 Michael Kifer <kifer@cs.sunysb.edu>
6987
6988 * ediff-util.el: Copyright years.
6989 (ediff-choose-syntax-table): New function.
6990 (ediff-setup): Use ediff-choose-syntax-table.
6991
6992 * ediff-init.el (ediff-with-syntax-table): New macro, uses
6993 with-syntax-table.
6994
6995 * ediff.el: Date of last update, copyright years.
6996
6997 * ediff-wind (ediff-setup-control-frame): Nill->nil.
6998
6999 * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
7000 of Scott Bronson.
7001 (ex-cmd-assoc,ex-cmd-one-letr): New functions.
7002 (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
7003 Deleted functions.
7004 (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
7005 ex-token-list.
7006
7007 * viper-util.el: Spaces, indentation.
7008
7009 * viper.el: Changed version, modification time.
7010
7011 2001-03-16 John Wiegley <johnw@gnu.org>
7012
7013 * calendar/timeclock.el (timeclock-workday-remaining):
7014 Check whether `discrep' is non-null before using it.
7015
7016 2001-03-16 John Wiegley <johnw@gnu.org>
7017
7018 * calendar/timeclock.el (timeclock-reread-log): Fixed problem with
7019 first-time checkins.
7020 (timeclock-log-data): Fixed problem with reading timelog log file.
7021 Resulting data in the "day list" was incorrect.
7022 (timeclock-find-discrep): Check if `timeclock-file' is readable
7023 before opening it.
7024 (timeclock-time-less-p): New function.
7025 (timeclock-day-base): New function.
7026 (timeclock-geometric-mean): New function.
7027 (timeclock-generate-report): Generate a summary report based on
7028 the contents of the log file. This uses `timeclock-log-data', and
7029 is an example of writing a timelog manipulation function.
7030 (timeclock-visit-timelog): A quick command for opening the timelog
7031 file.
7032 (timeclock-log-data): Bound the variable event.
7033
7034 2001-03-16 Kenichi Handa <handa@etl.go.jp>
7035
7036 * international/mule-cmds.el (select-safe-coding-system):
7037 Fix typo: symbol-name -> symbol-value.
7038
7039 * mail/rmail.el (rmail-insert-inbox-text): Call expand-file-name
7040 before substitute-in-file-name to handle double slashes in FILE
7041 correctly.
7042
7043 2001-03-15 Gerd Moellmann <gerd@gnu.org>
7044
7045 * textmodes/ispell.el (ispell-dictionary-alist-6): Add support
7046 for Slovak. From Pavel.Janik@suse.cz (Pavel Jan\e,Bm\e(Bk ml.).
7047
7048 2001-03-14 Gerd Moellmann <gerd@gnu.org>
7049
7050 * bindings.el (features): Add `md5' and `overlay' to the list.
7051
7052 * scroll-bar.el (toplevel): Test if `x-toolkit-scroll-bars' is
7053 bound before using it. It's not bound when configured without X,
7054 for instance.
7055
7056 2001-03-13 Thien-Thi Nguyen <ttn@gnu.org>
7057
7058 * progmodes/hideshow.el: Update copyright.
7059 (hs-minor-mode-map): Change bindings to use `C-c @' prefix.
7060 (hs-minor-mode-hook): Include `:version' in defcustom form.
7061
7062 2001-03-13 Gerd Moellmann <gerd@gnu.org>
7063
7064 * help.el (string-key-binding): Don't call event-start on
7065 a non-list.
7066
7067 2001-03-13 Eli Zaretskii <eliz@is.elta.co.il>
7068
7069 * startup.el (fancy-splash-tail, command-line-1): Fix the
7070 copyright year.
7071
7072 2001-03-13 Kenichi Handa <handa@etl.go.jp>
7073
7074 * term.el: These changes are based on a patch sent from Yong Lu
7075 <lyongu@yahoo.com>.
7076 (term-set-escape-char): Bind M-x to execute-extended-command in
7077 term-raw-escape-map.
7078 (term-move-columns): Don't try to move to negagive column.
7079 (term-emulate-terminal): Insert a string before deleting a text to
7080 overwrite.
7081
7082 2001-03-12 Gerd Moellmann <gerd@gnu.org>
7083
7084 * play/life.el (life): Rearrange code so that all calls to
7085 life-display-generation are in a catch-form.
7086
7087 * progmodes/etags.el (tags-loop-continue): Don't change point in a
7088 file that isn't interesting. In an interesting file, push the old
7089 value of point on the mark ring.
7090
7091 * mail/rmailsum.el (rmail-summary-override-mail-send-and-exit):
7092 New function.
7093 (rmail-summary-mail, rmail-summary-reply, rmail-summary-forward):
7094 Use it.
7095
7096 * emacs-lisp/autoload.el (generate-file-autoloads):
7097 Remove warning about line lengths.
7098
7099 2001-03-12 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be>
7100
7101 * progmodes/etags.el (tags-compression-info-list): New variable.
7102 (find-tag-in-order): Use it to deal with compressed source files.
7103 (tag-file-name-match-p): New function.
7104 (etags-recognize-tags-table): Use it for better match of file names.
7105
7106 2001-03-12 Kenichi Handa <handa@etl.go.jp>
7107
7108 * international/mule-cmds.el (register-input-method): Doc fix.
7109
7110 * international/quail.el (quail-translate-key): Fix condition to
7111 check if there's another breaking point in the current key.
7112
7113 2001-03-11 Eli Zaretskii <eliz@is.elta.co.il>
7114
7115 * mail/rmailout.el (rmail-output-to-rmail-file): When writing the
7116 Babyl header to the newly-created output file, bind
7117 coding-system-for-write to either rmail-file-coding-system or
7118 emacs-mule-unix.
7119
7120 2001-03-11 Stefan Monnier <monnier@cs.yale.edu>
7121
7122 * textmodes/texnfo-upd.el (texinfo-update-menu-lower-regexps):
7123 Fix the name and regexp used for subsubsections.
7124
7125 2001-03-10 Dave Love <fx@gnu.org>
7126
7127 * toolbar/tool-bar.el (tool-bar-setup): Don't suppress write-file
7128 and save-buffer if buffer-file-name non-nil. From rms.
7129
7130 2001-03-10 Andre Spiegel <spiegel@gnu.org>
7131
7132 * vc.el (vc-do-command): If the destination buffer is already
7133 current, don't set it up and don't erase it. Updated doc string
7134 to reflect that.
7135 (vc-version-diff): When doing a single file diff, don't switch to the
7136 *vc-diff* buffer before the command. This is to preserve local
7137 variable bindings that might affect the diff command.
7138 (vc-print-log): Don't switch to the *vc* buffer before the
7139 command, so that local variable bindings are preserved.
7140
7141 * vc-{cvs,rcs,sccs}.el (vc-*-print-log): Output to buffer *vc*,
7142 not the current buffer.
7143 (vc-*-diff): Output to buffer *vc-diff*, not the current buffer.
7144
7145 * vc-cvs.el (vc-cvs-checkin): When removing the sticky tag,
7146 make output go to buffer *vc*, not the current buffer.
7147
7148 2001-03-09 Stefan Monnier <monnier@cs.yale.edu>
7149
7150 * hi-lock.el (hi-lock-line-face-buffer): Wrap the regexp in a group
7151 so ^, $, *, ? and + are interpreted correctly.
7152
7153 2001-03-09 Gerd Moellmann <gerd@gnu.org>
7154
7155 * help.el (string-key-binding): Renamed from
7156 mode-line-key-binding. Handle any event on a string.
7157 Check for `keymap' properties as well as `local-map' properties.
7158
7159 * comint.el (comint-insert-clicked-input): Use the last key
7160 from this-command-keys to lookup the global key definition.
7161
7162 2001-03-09 Kenichi Handa <handa@etl.go.jp>
7163
7164 * international/characters.el: Add category `j' for
7165 katakana-jisx0201. Fix syntaxes of katakana-jisx0201.
7166
7167 * international/mule-conf.el (no-conversion): Fix docstring.
7168 (raw-text): Fix docstring.
7169
7170 2001-03-08 Gerd Moellmann <gerd@gnu.org>
7171
7172 * simple.el (choose-completion-string): When not leaving the
7173 minibuffer, raise the minibuffer frame when minibuffer-auto-raise
7174 is set.
7175
7176 * window.el (shrink-window-if-larger-than-buffer): Handle frame
7177 parameter `(minibuffer . t)'.
7178
7179 2001-03-07 Stefan Monnier <monnier@cs.yale.edu>
7180
7181 * progmodes/sh-script.el (sh-st-symbol): New symbol.
7182 (sh-font-lock-syntactic-keywords): Use it and fix bogus comment regexp.
7183 (sh-mode): Remove `make-local-variable' for unused var
7184 `font-lock-unfontify-region-function'.
7185
7186 2001-03-07 Richard M. Stallman <rms@gnu.org>
7187
7188 * info.el (Info-scroll-down): Fix previous change.
7189
7190 * mail/rmail.el (rmail-toggle-header): Use a window which
7191 is showing the Rmail buffer, rather than the selected window.
7192
7193 2001-03-07 Dave Love <fx@gnu.org>
7194
7195 * imenu.el (imenu--create-keymap-2): Revert use of menu-item for
7196 now, to avoid problems with binding imenu directly to a mouse event.
7197
7198 2001-03-07 Gerd Moellmann <gerd@gnu.org>
7199
7200 * info.el (Info-scroll-down): Call pos-visible-in-window-p with
7201 second arg t.
7202
7203 2001-03-07 Stefan Monnier <monnier@cs.yale.edu>
7204
7205 * log-edit.el (log-edit-common-indent): New var.
7206 (log-edit-set-common-indentation): Renamed from
7207 log-edit-delete-common-indentation. Use the new var.
7208 (log-edit-insert-changelog, log-edit-done-hook): Use the new name.
7209
7210 * pcvs.el (cvs-ignore-marks-modif): Use `rassoc' rather than `member*'.
7211 (cvs-mode-add-change-log-entry-other-window):
7212 Don't presume change-log-default-name is defined.
7213
7214 * pcvs-util.el (cvs-bury-buffer): In doubt, don't delete window.
7215
7216 * pcvs-defs.el (cvs-buffer-name-alist): Use *cvs-info* for
7217 the "tree" operation as well.
7218
7219 * pcvs-parse.el (cvs-parse-table): Add another ignored message.
7220
7221 * textmodes/fill.el (fill-context-prefix): Allow first-line-prefix
7222 to match paragraph-start.
7223
7224 * textmodes/sgml-mode.el (sgml-mode-common): Correct value of
7225 comment-start-skip and set comment-end-skip as well.
7226 (sgml-comment-indent): Fix for new value of comment-start-skip.
7227 (html-autoview-mode): Don't bother using make-local-hook.
7228
7229 2001-03-07 Gerd Moellmann <gerd@gnu.org>
7230
7231 * cus-edit.el (custom-save-delete): Move in front of local
7232 variables, otherwise long Custom entries would make them ineffective.
7233
7234 * uniquify.el: Set maintainer to FSF.
7235
7236 2001-03-07 Eli Zaretskii <eliz@is.elta.co.il>
7237
7238 * dired-aux.el (dired-do-shell-command): Doc fix.
7239
7240 2001-03-06 Stefan Monnier <monnier@cs.yale.edu>
7241
7242 * emulation/viper.el (viper-vi-state-mode-list): Add cperl-mode.
7243
7244 * which-func.el (which-func-modes): Add cperl-mode.
7245 (which-func-mode-global): Use define-minor-mode.
7246
7247 * info-look.el: Docstring fixes and dead code eliminated.
7248 (cperl-mode): Add support.
7249 (emacs-lisp-mode): List all entries from elisp manual, whether
7250 or not they are currently (f)bound or not. Update regexp.
7251
7252 * add-log.el (add-log-current-defun): Accept `cperl-mode' as well.
7253
7254 * progmodes/cperl-mode.el (cperl-mode): Set major-mode to cperl-mode
7255 so that C-h m shows the correct information.
7256 Use make-local-variable rather than make-variable-buffer-local.
7257 (cperl-info-buffer, cperl-setup-tmp-buf):
7258 Use make-local-variable rather than make-variable-buffer-local.
7259 (cperl-msb-fix, cperl-get-help-defer):
7260 Check major-mode for `cperl-mode' as well.
7261
7262 * progmodes/cperl-mode.el: Updated to author version 4.23.
7263 (cperl-electric-pod): SYNOPSIS was misspelled.
7264 (cperl-find-pods-heres): @if ? a : b was considered a REx.
7265 (cperl-after-expr-p): Make true after __END__.
7266
7267 2001-03-06 Gerd Moellmann <gerd@gnu.org>
7268
7269 * bookmark.el (bookmark-get-bookmark): Use assoc-ignore-case if
7270 bookmark-completion-ignore-case is t.
7271
7272 * term/x-win.el (x-handle-xrm-switch): Accept more than one -xrm
7273 switch, like xterm, and concat resource strings, with a newline
7274 between them.
7275
7276 2001-03-06 Eli Zaretskii <eliz@is.elta.co.il>
7277
7278 * international/codepage.el (cp770-decode-table)
7279 (cp773-decode-table, cp774-decode-table): New variables.
7280
7281 * man.el (Man-hyphenated-reference-regexp): New variable.
7282 (Man-build-references-alist): Use it to search for referenced
7283 manpages. If hyphenated is non-nil, record a concatenated word in
7284 Man-refpages-alist only if it matches Man-reference-regexp.
7285 Update word's length when it is concatenated. Reverse the list,
7286 to get the first manpage at the head.
7287 (Man-possibly-hyphenated-word): New function.
7288 (Man-follow-manual-reference): Use it instead of current-word to
7289 find a manpage at point, in a way that accounts for hyphenated
7290 references.
7291
7292 2001-03-06 Alex Schroeder <alex@gnu.org>
7293
7294 * sql.el (sql-interbase): New function.
7295 (sql-interbase-program): New option.
7296 (sql-interbase-options): New option.
7297 And some typos fixed: "customise" to "customize".
7298
7299 2001-03-06 Dave Love <fx@gnu.org>
7300
7301 * textmodes/flyspell.el (flyspell-region):
7302 Set up flyspell-local-mouse-map.
7303
7304 2001-03-05 Richard M. Stallman <rms@gnu.org>
7305
7306 * mail/rmail.el (rmail-retry-failure):
7307 Don't call rmail-beginning-of-message.
7308 Don't discard From: field. Do discard Received: field.
7309 Use unwind-protect to re-prune.
7310 (rmail-retry-ignored-headers): Discard X-Authentication-Warning field.
7311
7312 2001-03-06 Kenichi Handa <handa@etl.go.jp>
7313
7314 * international/quail.el (quail-title): Add autoload cookie.
7315
7316 2001-03-05 Dave Love <fx@gnu.org>
7317
7318 * emacs-lisp/cl.el (dotimes, dolist): Undef prior to autoloading
7319 new defs.
7320
7321 2001-03-05 Kenichi Handa <handa@etl.go.jp>
7322
7323 * language/ethio-util.el (ethio-toggle-space):
7324 Update current-input-method-title if necessary.
7325 (ethio-toggle-punctuation): Likewise.
7326
7327 * international/quail.el (quail-title): Fix for the case that a
7328 title of an input method is specified by a list of the same form
7329 as used in mode-line-format.
7330
7331 * international/mule-cmds.el (activate-input-method):
7332 If current-input-method-title is set by activating INPUT-METHOD,
7333 respect that value.
7334
7335 2001-03-05 Gerd Moellmann <gerd@gnu.org>
7336
7337 * play/dunnet.el (dun-mode): Set major-mode to `dun-mode'.
7338
7339 2001-03-05 Alex Schroeder <alex@gnu.org>
7340
7341 * sql.el (sql-sybase): Fix typo (was: query user about server two
7342 times instead of server and database).
7343
7344 * sql.el (sql-sybase): Doc change.
7345 (sql-mysql): Doc change.
7346 (sql-postgres): Doc change.
7347
7348 2001-03-05 Kenichi Handa <handa@etl.go.jp>
7349
7350 * international/mule-conf.el (emacs-mule, raw-text):
7351 Docstring modified.
7352
7353 2001-03-04 Eli Zaretskii <eliz@is.elta.co.il>
7354
7355 * term/internal.el: Update copyright notice.
7356
7357 * term/pc-win.el: Update copyright notice.
7358
7359 2001-03-02 Dave Love <fx@gnu.org>
7360
7361 * files.el (insert-file-contents-literally):
7362 Bind inhibit-file-name-handlers and inhibit-file-name-operation,
7363 not jka-compr-compression-info-list.
7364
7365 2001-03-02 Stefan Monnier <monnier@cs.yale.edu>
7366
7367 * newcomment.el (comment-normalize-vars): Use [ \t] for the trailing
7368 spaces in default comment-start-skip settings rather than \s-.
7369
7370 2001-03-02 Eli Zaretskii <eliz@is.elta.co.il>
7371
7372 * term/pc-win.el (msdos-handle-reverse-video): Look for reverse in
7373 default-frame-alist as well.
7374
7375 2001-03-01 Dave Love <fx@gnu.org>
7376
7377 * textmodes/reftex.el (defvar): Wrap some defvars in
7378 eval-when-compile. From Markus Rost <rost@math.ohio-state.edu>.
7379
7380 * subr.el (event-basic-type): Doc fix.
7381
7382 * international/quail.el: Doc fixes.
7383
7384 * international/utf-8.el: Doc fixes.
7385
7386 * international/mule-cmds.el: Doc fixes.
7387 (leim-list-header): Fix header text.
7388
7389 * international/mule.el (coding-system-category): Doc fix.
7390
7391 * international/ccl.el (ccl-compile): Doc fix.
7392
7393 2001-03-01 Stefan Monnier <monnier@cs.yale.edu>
7394
7395 * font-lock.el (save-buffer-state): Use inhibit-modification-hooks
7396 rather than (before|after)-change-functions.
7397
7398 2001-03-01 Gerd Moellmann <gerd@gnu.org>
7399
7400 * ediff-util.el (ediff-scroll-horizontally): Arrange for
7401 scroll-left and scroll-right being called interactively so that
7402 they set the window's min_hscroll.
7403
7404 2001-03-01 Eli Zaretskii <eliz@is.elta.co.il>
7405
7406 * info.el (info-insert-file-contents-1): Accept an additional
7407 argument `lfn': if it is non-nil, concatenate `filename' and
7408 `suffix'; otherwise use the complicated MS-DOS code.
7409 All callers changed.
7410 (info-insert-file-contents, Info-find-node): If the MS-DOS port
7411 can access long file names, try the long file-name version of
7412 `info-insert-file-contents-1', then the short file-name version.
7413
7414 2001-02-28 TAKAHASHI Naoto <ntakahas@m17n.org>
7415
7416 * language/ethio-util.el (setup-ethiopic-environment-internal):
7417 Change bindings of functions keys to conform to "Emacs Lisp Coding
7418 Convention".
7419
7420 * language/ethiopic.el ("Ethiopic"): Add documentation.
7421
7422 2001-02-28 Kenichi Handa <handa@etl.go.jp>
7423
7424 * international/utf-8.el (mule-utf-8): Set coding-category
7425 property to coding-category-utf-8.
7426
7427 2001-02-27 Richard M. Stallman <rms@gnu.org>
7428
7429 * lpr.el (lpr-page-header-switches, print-region-1):
7430 Undo 2000-07-06 change.
7431 (lpr-add-switches): Default to t on gnu/linux.
7432
7433 2001-02-27 Gerd Moellmann <gerd@gnu.org>
7434
7435 * bs.el (bs-attributes-list): Doc fix.
7436
7437 2001-02-26 Gerd Moellmann <gerd@gnu.org>
7438
7439 * help.el (describe-project): Display the file THE-GNU-PROJECT.
7440
7441 * help.el (view-order-manuals): Use goto-address.
7442
7443 * startup.el (command-line-1): Add info about ordering manuals
7444 to the not so fancy splash screens.
7445
7446 2001-02-26 Andre Spiegel <spiegel@gnu.org>
7447
7448 * vc.el (vc-default-workfile-unchanged-p)
7449 (vc-default-latest-on-branch-p): Add missing BACKEND argument.
7450
7451 2001-02-26 Gerd Moellmann <gerd@gnu.org>
7452
7453 * lazy-lock.el (lazy-lock-fontify-after-idle): Make sure to
7454 fontify in the right buffer.
7455
7456 * allout.el (outline-flag-region): Move macro in front of first
7457 use to avoid a run-time error.
7458
7459 2001-02-24 Andrew Innes <andrewi@gnu.org>
7460
7461 * makefile.w32-in: Fix copyright notice.
7462
7463 2001-02-24 Kenichi Handa <handa@etl.go.jp>
7464
7465 * international/utf-8.el (mule-utf-8): Set correct value for
7466 valid-codes property.
7467
7468 * international/fontset.el (x-complement-fontset-spec): In the
7469 case that we use ASCII font for the other charsets, use only
7470 family and registry part of it.
7471
7472 2001-02-23 Eli Zaretskii <eliz@is.elta.co.il>
7473
7474 * window.el (fit-window-to-buffer, window-safely-shrinkable-p)
7475 (shrink-window-if-larger-than-buffer): Doc fix.
7476
7477 2001-02-23 Stefan Monnier <monnier@cs.yale.edu>
7478
7479 * hi-lock.el (hi-lock-unface-buffer): Use nil rather than t for
7480 predicate passed to completing-read.
7481
7482 2001-02-23 Eli Zaretskii <eliz@is.elta.co.il>
7483
7484 * startup.el (command-line): Fix last change.
7485
7486 2001-02-23 Jason Rumney <jasonr@gnu.org>
7487
7488 * startup.el (tool-bar-originally-present): New variable.
7489 (command-line): Set it if the tool-bar is switched on at startup.
7490
7491 * frame.el (frame-notice-user-settings): Only adjust frame height
7492 for no tool-bar case if tool-bar was originally switched on.
7493 From E. Jay Berkenbilt.
7494
7495 2001-02-22 Stefan Monnier <monnier@cs.yale.edu>
7496
7497 * server.el (server-switch-buffer): Only switch window if the
7498 current one is dedicated.
7499
7500 * textmodes/fill.el (fill-region-as-paragraph): Skip spaces backward
7501 rather than using (match-beginning 0) when searching for break point.
7502
7503 2001-02-22 Eli Zaretskii <eliz@is.elta.co.il>
7504
7505 * textmodes/texinfmt.el (texinfo-format-scan): Signal an error if
7506 @ follows an accent command such as @'. Support optional braces
7507 in commands that insert accents, like makeinfo does.
7508
7509 2001-02-22 Gerd Moellmann <gerd@gnu.org>
7510
7511 * startup.el (fancy-splash-text): Add a line for ordering
7512 manuals. Reverse order of splash screens shown.
7513 (use-fancy-splash-screens-p): Adapt to the text line added.
7514
7515 * menu-bar.el (menu-bar-help-menu): Add an item for ordering
7516 manuals from the FSF.
7517
7518 * help.el (view-order-manuals): New function.
7519 (toplevel): Bind C-h C-m to this function.
7520
7521 2001-02-21 Stefan Monnier <monnier@cs.yale.edu>
7522
7523 * newcomment.el (comment-forward): Skip the comment-start before
7524 searching for the comment-end.
7525
7526 2001-02-21 Dave Love <fx@gnu.org>
7527
7528 * custom.el (custom-initialize-changed, defcustom): Doc fix.
7529
7530 * international/mule-cmds.el, international/mule.el: Doc fixes.
7531
7532 2001-02-21 Gerd Moellmann <gerd@gnu.org>
7533
7534 * startup.el (fancy-splash-screens): Use display-hourglass
7535 instead of display-busy-cursor.
7536
7537 * frame.el (display-hourglass): Renamed from busy-cursor.
7538 (hourglass-delay): Renamed from busy-cursor-delay-seconds.
7539 (show-cursor-in-non-selected-windows): Doc fix.
7540
7541 2001-02-20 Dave Love <fx@gnu.org>
7542
7543 * international/utf-8.el: Doc and commentary fixes.
7544
7545 2001-02-20 Eli Zaretskii <eliz@is.elta.co.il>
7546
7547 * ehelp.el (with-electric-help): Doc fix.
7548
7549 2001-02-20 Gerd Moellmann <gerd@gnu.org>
7550
7551 * msb.el (msb-mode): Call the update-buffers function explicitly
7552 with a FORCE argument.
7553
7554 * menu-bar.el (menu-bar-update-buffers): Add optional parameter
7555 FORCE. If set, update the menu even if frame-or-buffer-changed-p
7556 returns nil.
7557
7558 2001-02-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7559
7560 * ps-print.el: Timestamp package replacement. Some enhancements.
7561 Some XEmacs compatibility. Doc fix.
7562 (ps-print-version): New version number (6.4).
7563 (ps-printer-name): Initialization fix.
7564 (ps-zebra-stripe-follow): Funcionality enhancement.
7565 (ps-prologue-file): Code enhancement.
7566 (ps-right-header): Timestamp package replacement.
7567 (ps-setup, ps-face-bold-p, ps-face-italic-p)
7568 (ps-get-page-dimensions)
7569 (ps-generate-header, ps-begin-file, ps-begin-job)
7570 (ps-generate-postscript-with-faces, ps-do-despool): Code fix.
7571 (ps-time-stamp-mon-dd-yyyy, ps-time-stamp-hh:mm:ss): New funs.
7572 (ps-zebra-stripe-full-p, ps-zebra-stripe-alist): New vars.
7573 (coding-system-for-write): Var declaration (XEmacs compatibility).
7574
7575 2001-02-20 Miles Bader <miles@gnu.org>
7576
7577 * image-file.el (image-file-name-extensions): Add "tif".
7578
7579 2001-02-19 Gerd Moellmann <gerd@gnu.org>
7580
7581 * wid-edit.el (widget-button-click): Save the selected window
7582 around the code handling clicks on buttons.
7583
7584 2001-02-18 Dave Love <fx@gnu.org>
7585
7586 * imenu.el (imenu--generic-function): Use mapc to iterate over
7587 syntax characters.
7588
7589 2001-02-17 Richard M. Stallman <rms@gnu.org>
7590
7591 * progmodes/fortran.el (fortran-strip-sqeuence-nos): Doc fix.
7592
7593 * uniquify.el (uniquify-buffer-name-style): Doc fix.
7594
7595 2001-02-16 Gerd Moellmann <gerd@gnu.org>
7596
7597 * mouse.el (mouse-save-then-kill): If the distance from the new
7598 point to the mark is equal to the distance of point from the new
7599 point, move point instead of the mark.
7600
7601 2001-02-16 Dave Love <fx@gnu.org>
7602
7603 * textmodes/flyspell.el (flyspell-get-word): Return string without
7604 properties.
7605
7606 2001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
7607
7608 * generic.el (generic-find-file-regexp): Doc fix.
7609 (generic-ignore-files-regexp): New defcustom.
7610 (generic-mode-find-file-hook): If the file's name matches the
7611 regexp in `generic-ignore-files-regexp', don't enter
7612 default-generic-mode. Doc fix.
7613
7614 2001-02-16 Gerd Moellmann <gerd@gnu.org>
7615
7616 * textmodes/flyspell.el (flyspell-region, flyspell-buffer):
7617 Add autoload cookies.
7618
7619 * calendar/cal-tex.el (cal-tex-weekly4-box): Respect setting
7620 of cal-tex-24.
7621
7622 2001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
7623
7624 * simple.el (kill-region, kill-line, kill-ring-save): Doc fix.
7625
7626 * progmodes/compile.el (grep-regexp-alist): Remove the blank from
7627 the character class after the (optional) drive, to support file
7628 names with embedded blanks.
7629
7630 2001-02-15 Sam Steingold <sds@gnu.org>
7631
7632 * textmodes/tex-mode.el (tex-shell-running):
7633 Check the process buffer too.
7634
7635 2001-02-15 Dave Love <fx@gnu.org>
7636
7637 * battery.el (battery-status-function): Fix doc, :type.
7638
7639 * calendar/timeclock.el (timeclock-get-workday-function): Fix :type.
7640
7641 2001-02-15 Gerd Moellmann <gerd@gnu.org>
7642
7643 * subr.el (read-passwd): Clear Lisp memory holding password.
7644
7645 2001-02-15 Miles Bader <miles@gnu.org>
7646
7647 * info.el (Info-copy-current-node-name): New function.
7648 (Info-mode-menu): Add it to the menu.
7649
7650 2001-02-14 Richard M. Stallman <rms@theobromine.ai.mit.edu>
7651
7652 * international/mule-cmds.el (toggle-input-method): Doc fix.
7653
7654 2001-02-13 Stefan Monnier <monnier@cs.yale.edu>
7655
7656 * replace.el (occur): Stop at end of buffer.
7657
7658 2001-02-13 Eli Zaretskii <eliz@is.elta.co.il>
7659
7660 * international/mule-cmds.el (set-input-method): Another doc fix.
7661
7662 2001-02-13 David M. Koppelman <koppel@ee.lsu.edu>
7663
7664 * hi-lock.el (hi-lock-find-patterns): Don't activate font-lock-mode.
7665
7666 2001-02-13 Miles Bader <miles@gnu.org>
7667
7668 * faces.el (set-face-background, set-face-foreground)
7669 (set-face-stipple): Treat a value of nil as being `unspecified'.
7670
7671 2001-02-12 Dave Love <d.love@dl.ac.uk>
7672
7673 * international/latin1-disp.el: Doc fixes.
7674 (latin1-display) <defgroup>: Add :link.
7675 (latin1-display) <function>: Set variable latin1-display.
7676
7677 2001-02-12 Eli Zaretskii <eliz@is.elta.co.il>
7678
7679 * international/mule-cmds.el (set-input-method): Doc fix.
7680
7681 2001-02-12 Eric M. Ludlam <zappo@choochoo.ultranet.com>
7682
7683 * speedbar.el (speedbar-frame-parameters): No toolbar lines.
7684 (speedbar-line-file): Return nil if not a file.
7685 (speedbar-buffers-line-path): Return file for tags, and dir for files.
7686
7687 2001-02-12 Michael Kifer <kifer@cs.sunysb.edu>
7688
7689 * ediff-diff.el (ediff-make-diff2-buffer): Removed bogus checks
7690 for remote files.
7691 (ediff-coding-system-for-read): Replaced the no-conversion default
7692 with raw-text.
7693
7694 * ediff-init.el: Removed :version from defcustom vars.
7695
7696 * ediff-util.el (ediff-compute-custom-diffs-maybe):
7697 Better handling of the diff mode.
7698
7699 * ediff.texi: Added ediff-coding-system-for-read.
7700
7701 * viper.texi: Fix typos.
7702
7703 2001-02-11 Dave Love <fx@gnu.org>
7704
7705 * shadowfile.el: Doc fixes.
7706 (shadow) <defgroup>: Add :link.
7707 (shadowfile-unload-hook): New function.
7708 (shadow-initialize): Use defalias, not fset.
7709 (shadow-define-cluster, shadow-define-literal-group)
7710 (shadow-define-regexp-group, shadow-initialize): Add autoload cookie.
7711
7712 * international/mule.el: Doc and message fixes.
7713
7714 * international/ccl.el (define-ccl-program): Doc fix.
7715
7716 2001-02-11 Kenichi Handa <handa@etl.go.jp>
7717
7718 * faces.el (mode-line): Set :line-width property to -1.
7719
7720 2001-02-10 Richard M. Stallman <rms@gnu.org>
7721
7722 * complete.el (partial-completion-mode): Doc fix.
7723
7724 * simple.el (delete-key-deletes-forward-mode):
7725 Change `let' to `let*' to fix gross bug in last change.
7726
7727 * repeat.el (repeat): Don't let execute-kbd-macro alter
7728 real-last-command.
7729
7730 2001-02-10 Eli Zaretskii <eliz@is.elta.co.il>
7731
7732 * simple.el (eval-expression): Doc fix.
7733
7734 2001-02-09 Dave Love <fx@gnu.org>
7735
7736 * imenu.el (imenu-generic-expression): Doc fix.
7737
7738 * emacs-lisp/re-builder.el (reb-mode): Quote the hook name.
7739 From Juanma Barranquero.
7740
7741 * emacs-lisp/authors.el (authors): Expand `root' before running find.
7742
7743 2001-02-09 Kenichi Handa <handa@etl.go.jp>
7744
7745 * faces.el (set-face-attribute): Describe the case of a negative
7746 value specified for :line-width.
7747
7748 2001-02-08 Stefan Monnier <monnier@cs.yale.edu>
7749
7750 * which-func.el (which-func-mode): Invert which-func-mode-global.
7751 From Juanma Barranquero <lektu@uol.com.br>.
7752
7753 2001-02-08 Dave Love <fx@gnu.org>
7754
7755 * wid-edit.el (widget-plist-convert-widget): Replace binding of
7756 widget-plist-value-type.
7757 (widget-alist-convert-widget): Replace binding of
7758 widget-alist-value-type.
7759
7760 * textmodes/paragraphs.el (sentence-end): Doc fix.
7761
7762 * eshell/em-rebind.el (eshell-cannot-leave-input-list):
7763 Remove `backward-line'.
7764
7765 * play/pong.el (pong-blank-color, pong-bat-color)
7766 (pong-ball-color, pong-border-color, pong-left-key)
7767 (pong-right-key, pong-up-key, pong-down-key, pong-quit-key)
7768 (pong-pause-key, pong-resume-key, pong-timer-delay):
7769 * mail/mh-comp.el (mh-compose-letter-function):
7770 * eshell/esh-mode.el (eshell-skip-prompt-function):
7771 * emulation/viper-ex.el (ex-unix-type-shell-options):
7772 * recentf.el (recentf-menu-filter):
7773 * ps-print.el (ps-print-region-function):
7774 * lpr.el (print-region-function):
7775 * forms.el (forms-mode-hooks):
7776 * dirtrack.el (dirtrack-directory-change-hook):
7777 * cus-start.el (temp-buffer-show-function, display-buffer-function):
7778 * textmodes/spell.el (spell-filter):
7779 * textmodes/fill.el (adaptive-fill-function):
7780 * textmodes/bibtex.el (bibtex-autokey-before-presentation-function):
7781 * progmodes/etags.el (find-tag-default-function):
7782 * progmodes/dcl-mode.el (dcl-calc-command-indent-function):
7783 * progmodes/ada-mode.el (ada-popup-key): Fix :type.
7784
7785 2001-02-07 Eli Zaretskii <eliz@is.elta.co.il>
7786
7787 * emulation/viper-init.el (viper-fast-keyseq-timeout)
7788 (viper-translate-all-ESC-keysequences): Doc fix. From Jim
7789 Meyering <jim@meyering.net>.
7790
7791 * loadup.el: Revert last change.
7792
7793 2001-02-07 Kenichi Handa <handa@etl.go.jp>
7794
7795 * international/mule.el (transform-make-coding-system-args):
7796 Make it work also for coding systems not using CCL.
7797
7798 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
7799
7800 * simple.el (previous-matching-history-element)
7801 (next-matching-history-element): Doc fix.
7802
7803 * loadup.el: Load ccl before utf-8; don't load ccl in the ms-dos
7804 specific part.
7805
7806 2001-02-06 Dave Love <fx@gnu.org>
7807
7808 * add-log.el (add-log-current-defun-function)
7809 (add-log-buffer-file-name-function, add-log-file-name-function):
7810 Fix :type.
7811 (change-log-mode) <font-lock-defaults>: Set SYNTAX-BEGIN.
7812
7813 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
7814
7815 * info.el (info-initialize): Remove the test for system-type when
7816 invocation-directory is non-nil.
7817
7818 * progmodes/make-mode.el (makefile-mode): Set SYNTAX-BEGIN member
7819 of `font-lock-defaults' to `backward-paragraph' rather than nil.
7820
7821 2001-02-06 Andrew Innes <andrewi@gnu.org>
7822
7823 * makefile.w32-in (EMACS): Use $(THISDIR) to make emacs.exe path
7824 absolute.
7825
7826 2001-02-06 David M. Koppelman <koppel@ee.lsu.edu>
7827
7828 * hi-lock.el (hi-lock-mode): Toggling hi-lock-mode now affects all
7829 buffers. When hi-lock turned on rather than only checking current
7830 buffer for regexps, all buffers are checked. Moved activation of
7831 font-lock to hi-lock-refontify. When font-lock turned off rather
7832 than removing added highlighting just in current buffer, remove it
7833 in all buffers. Changed edit menu text from "Automatic
7834 Highlighting" to "Regexp Highlighting" Documentation for
7835 highlighting phrases, minor documentation changes.
7836 (hi-lock-set-file-patterns): Execute only if there are new or
7837 existing file patterns.
7838 (hi-lock-refontify): Assume font-lock-fontify-buffer will first
7839 unfontify and, if a support mode is active, will not refontify the
7840 whole buffer. If necessary, turn on font lock. (Removed
7841 font-lock-unfontify and font-lock support-mode-specific calls,
7842 such as lazy-lock-fontify-window.)
7843 (hi-lock-find-patterns): Do not turn on hi-lock-mode even if
7844 patterns are found. Not useful now since find-file-hook is removed
7845 if hi-lock is off, but may be needed for per-buffer hi-lock activation.
7846 (hi-lock-face-phrase-buffer): New function. Also added related
7847 menu item and keybinding.
7848 (highlight-phrase): New alias, to hi-lock-face-phrase-buffer.
7849 (hi-lock-process-phrase): New function.
7850 (hi-lock-line-face-buffer): Doc fixes.
7851 (hi-lock-face-buffer): Doc fixes.
7852 (hi-lock-unface-buffer): Doc fixes.
7853
7854 2001-02-06 Gerd Moellmann <gerd@gnu.org>
7855
7856 * dabbrev.el (dabbrev-ignored-buffer-regexps): Renamed from
7857 dabbrev-ignored-regexps.
7858
7859 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
7860
7861 * simple.el (kill-line): Doc fix.
7862
7863 2001-02-05 Dave Love <fx@gnu.org>
7864
7865 * loadup.el: Revert last two changes -- bootstrapping works with
7866 regenerated loaddefs.
7867
7868 2001-02-05 Eli Zaretskii <eliz@is.elta.co.il>
7869
7870 * isearch.el (isearch-forward): Doc fix.
7871
7872 * textmodes/nroff-mode.el (nroff-mode): Set the SYNTAX-BEGIN part
7873 of font-lock-defaults to backward-paragraph.
7874
7875 2001-02-05 Gerd Moellmann <gerd@gnu.org>
7876
7877 * mail/rmail.el (rmail-ignored-headers): Add X-Trace,
7878 X-Complaints-To, NNTP-Posting-Date, and User-Agent.
7879
7880 2001-02-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7881
7882 * ebnf2ps.el: Eliminate time-stamp functions.
7883 (ebnf-version): New version (3.5).
7884 (ebnf-eps-finish-and-write): Replace time-stamp functions by
7885 format-time-string.
7886
7887 2001-02-05 Gerd Moellmann <gerd@gnu.org>
7888
7889 * simple.el (next-line): Goto end-of-line before inserting a newline.
7890
7891 2001-02-05 Miles Bader <miles@gnu.org>
7892
7893 * image-file.el (insert-image-file): When visiting an image, also
7894 set `truncate-lines' to t so that any fringe arrow looks correct.
7895
7896 2001-02-05 Kenichi Handa <handa@etl.go.jp>
7897
7898 * isearch.el (isearch-forward): Add description about input method
7899 in the docsting.
7900
7901 2001-02-04 Stefan Monnier <monnier@cs.yale.edu>
7902
7903 * skeleton.el (skeleton-internal-1): Always push the mark for @.
7904
7905 2001-02-02 Eli Zaretskii <eliz@is.elta.co.il>
7906
7907 * info.el (info-initialize): If installation-directory is nil, for
7908 DOS/Windows systems try looking in a sibling of invocation-directory.
7909
7910 2001-02-02 Gerd Moellmann <gerd@gnu.org>
7911
7912 * wid-edit.el (widget-button-click): Fix last change.
7913
7914 * frame.el (frame-notice-user-settings): When resizing the initial
7915 frame because the tool bar is off, also change the frame's top
7916 position if a negative top position was specified.
7917
7918 2001-02-02 Miles Bader <miles@gnu.org>
7919
7920 * image-file.el (insert-image-file): When visiting an image,
7921 suppress the cursor in the image buffer.
7922
7923 2001-02-01 Dave Love <fx@gnu.org>
7924
7925 * progmodes/f90.el (f90-mode): Remove startup message.
7926
7927 * vc-cvs.el: Remove autoloads. Require vc when compiling.
7928
7929 2001-02-01 Gerd Moellmann <gerd@gnu.org>
7930
7931 * startup.el (command-line): Fix code determining whether or not
7932 to use delete-key-deletes-forward-mode.
7933
7934 2001-02-01 Andre Spiegel <spiegel@gnu.org>
7935
7936 * vc.el (vc-diff-switches): New user option.
7937 (vc-version-diff): Use it.
7938 (vc-diff-switches-list): New macro.
7939
7940 * vc-{rcs,cvs,sccs}.el: (vc-BACKEND-diff-switches):
7941 New customization options.
7942 (vc-BACKEND-diff): Use new options via vc-diff-switches-list.
7943
7944 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Return correct status.
7945
7946 2001-02-01 Gerd Moellmann <gerd@gnu.org>
7947
7948 * msb.el (toplevel): Quote hook symbols.
7949
7950 2001-02-01 Kenichi Handa <handa@etl.go.jp>
7951
7952 * international/mule.el (make-coding-system): Add description
7953 about recognized properties in the docstring.
7954
7955 * international/mule-conf.el: Remove unused charsets
7956 mac-roman-lower and mac-roman-upper.
7957
7958 2001-01-31 Gerd Moellmann <gerd@gnu.org>
7959
7960 * textmodes/fill.el (set-fill-prefix): Cancel fill prefix if point
7961 is in front of the left-margin, if any.
7962
7963 * simple.el (delete-key-deletes-forward-mode): Treat `kp-delete'
7964 like `delete'.
7965
7966 * bindings.el: Define `kp-delete' like `delete' in function-key-map.
7967
7968 * term/w32-win.el (mouse-set-font): Doc fix.
7969
7970 2001-01-31 Stefan Monnier <monnier@cs.yale.edu>
7971
7972 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer): Doc fix.
7973 (hi-lock-find-patterns): Turn on font-lock-mode, if it is not
7974 on already.
7975
7976 2001-01-31 Markus Rost <rost@math.ohio-state.edu>
7977
7978 * files.el (save-buffer): Don't give message if (buffer-file-name)
7979 returns nil.
7980
7981 2001-01-31 Eli Zaretskii <eliz@is.elta.co.il>
7982
7983 * toolbar/tool-bar.el (tool-bar-add-item): Doc fix.
7984
7985 * emacs-lisp/re-builder.el (reb-update-modestring): Don't use
7986 concat for integers. From Juanma Barranquero <lektu@uol.com.br>.
7987
7988 * term/w32-win.el (redisplay-dont-pause): Set to t to alleviate
7989 display problems.
7990
7991 2001-01-31 Kenichi Handa <handa@etl.go.jp>
7992
7993 * international/mule.el (charset-info): Fix docstring.
7994
7995 * international/mule-diag.el (describe-character-set): Check final
7996 char valid before printing it.
7997
7998 2001-01-30 Gerd Moellmann <gerd@gnu.org>
7999
8000 * lpr.el (lpr-windows-system, lpr-lp-system): Add autoload cookies.
8001
8002 * frame.el (frame-notice-user-settings): Do the tool-bar
8003 stuff only for graphical displays. Fix a braino.
8004
8005 * frame.el (frame-initialize): Create initial frame visible.
8006 (frame-notice-user-settings): When tool-bar has been switched off,
8007 correct the frame size and sync tool-bar-mode.
8008
8009 * startup.el (command-line): Remove manipulation of frame
8010 height for tool bars.
8011
8012 2001-01-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8013
8014 * lpr.el: Compatibility with XEmacs and doc fixes.
8015 (lpr-windows-system, lpr-lp-system): New vars.
8016 (lpr-printer-switch): New defcustom.
8017 (printer-name, lpr-command): Customization fix.
8018 (print-region-1): Code fix.
8019 (print-region-new-buffer, printify-region): Indentation fix.
8020 (lpr-eval-switch, lpr-flatten-list, lpr-flatten-list-1):
8021 New functions.
8022
8023 2001-01-29 Gerd Moellmann <gerd@gnu.org>
8024
8025 * msb.el (toplevel): Fix the eval-after-load.
8026
8027 2001-01-29 Dave Love <fx@gnu.org>
8028
8029 * eshell/esh-ext.el (eshell-windows-shell-file): Fix :type.
8030
8031 * eshell/em-ls.el (eshell-ls-exclude-regexp): Fix :type.
8032
8033 * progmodes/tcl.el (outline, dabbrev, add-log): Require when compiling.
8034 (tcl-using-emacs-19-23): Consider Emacs 21+.
8035 (tcl-help-directory-list, tcl-command-switches): Fix :type.
8036 (tcl-add-emacs-menu): Supply menu name.
8037 (tcl-beginning-of-defun, tcl-end-of-defun): Defalias, don't fset.
8038
8039 2001-01-29 Gerd Moellmann <gerd@gnu.org>
8040
8041 * simple.el (delete-trailing-whitespace): Don't delete formfeeds.
8042
8043 2001-01-29 Stefan Monnier <monnier@cs.yale.edu>
8044
8045 * pcvs.el (cvs-mark-fis-dead): New function.
8046 (cvs-mode-add): Use it.
8047 (cvs-mode-add-change-log-entry-other-window):
8048 Rebind change-log-default-name to itself rather than to nil.
8049
8050 2001-01-29 Sam Steingold <sds@gnu.org>
8051
8052 * vc-cvs.el: Replaced (require 'vc) with a bunch of
8053 `autoload' statements.
8054
8055 2001-01-29 Eli Zaretskii <eliz@is.elta.co.il>
8056
8057 * files.el (confirm-kill-emacs): Doc fix.
8058
8059 * frame.el (frame-initialize): Doc fix.
8060
8061 * time-stamp.el (time-stamp-string): Doc fix.
8062
8063 * woman.el (WoMan-log-1): Make the log buffer writable.
8064 From Markus Rost <rost@math.ohio-state.edu>.
8065
8066 2001-01-29 Gerd Moellmann <gerd@gnu.org>
8067
8068 * imenu.el (imenu-syntax-alist): Add autoload cookie for
8069 the `make-variable-buffer-local'.
8070
8071 2001-01-29 Dave Love <fx@gnu.org>
8072
8073 * ansi-color.el (ansi-color-for-comint-mode): Add :version.
8074 (ansi-color-for-comint-mode-on, ansi-color-process-output):
8075 Add autoload cookie.
8076 (ansi-color-apply-sequence): Fix typo.
8077
8078 2001-01-29 Gerd Moellmann <gerd@gnu.org>
8079
8080 * menu-bar.el (menu-bar-files-menu): Add menu items for
8081 Postscript printing in black and white.
8082
8083 * mail/rmail.el (rmail-ignored-headers): Add X-Sign, X-BeenThere,
8084 X-Mailman-Version, Precedence, List-Help, List-Post,
8085 List-Subscribe, List-Id, List-Unsubscribe, List-Archive,
8086 Content-Type, Content-Length.
8087
8088 2001-01-29 Dave Love <fx@gnu.org>
8089
8090 * elide-head.el (elide-head): Make overlay evaporate.
8091
8092 * international/mule-conf.el (chinese-big5-1, chinese-big5-2): Doc fix.
8093
8094 2001-01-28 Eli Zaretskii <eliz@is.elta.co.il>
8095
8096 * isearch.el (isearch-highlight): Don't punt if the display
8097 doesn't support colors, since isearch faces are defined for
8098 monochrome displays as well.
8099
8100 2001-01-27 Sam Steingold <sds@gnu.org>
8101
8102 * shell.el (shell-write-history-on-exit): Make sure that we are in
8103 the shell buffer (M-x tex-file RET inserted the error message into
8104 the TeX buffer).
8105
8106 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
8107
8108 * simple.el (transient-mark-mode): Doc fix.
8109
8110 2001-01-27 Gerd Moellmann <gerd@gnu.org>
8111
8112 * progmodes/etags.el (find-tag-noselect): Don't bind tags-file-name.
8113
8114 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
8115
8116 * shell.el (shell-unquote-argument): If the shell is one of the
8117 mentioned in shell-dumb-shell-regexp, don't treat a backslash as a
8118 quote character.
8119 (shell-dumb-shell-regexp): Document that the shells which match
8120 this regexp are supposed to not treat a backslash as a quote character.
8121
8122 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Undo the change
8123 from 2001-01-12. It is not needed, since backspace is mapped into DEL.
8124
8125 2001-01-27 Richard M. Stallman <rms@gnu.org>
8126
8127 * dabbrev.el (dabbrev--substitute-expansion):
8128 Treat a one-capital-letter abbrev as "not all upper case",
8129 so as to force preservation of the expansion's pattern
8130 if the expansion starts with a capital letter.
8131
8132 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
8133
8134 * facemenu.el (facemenu-set-face, facemenu-set-face-from-menu):
8135 Doc fix.
8136
8137 * simple.el (transient-mark-mode): Document the fact that many
8138 commands act on the region when mark is active.
8139
8140 2001-01-27 Kenichi Handa <handa@etl.go.jp>
8141
8142 * international/quail.el (quail-setup-completion-buf): Make the
8143 multibyteness of current buffer inherited to Quail completion buffer.
8144 (quail-show-guidance-buf): Make the multibyteness of current
8145 buffer inherited to Quail guidance buffer.
8146 (quail-help): Make the multibyteness of current buffer inherited
8147 to Quail help buffer.
8148
8149 2001-01-26 Dave Love <fx@gnu.org>
8150
8151 * time-stamp.el: Doc fixes.
8152
8153 * progmodes/delphi.el (delphi-comment-face, delphi-string-face)
8154 (delphi-keyword-face, delphi-other-face): Fix :type.
8155
8156 * textmodes/flyspell.el: Doc fixes. Add :version to new options.
8157
8158 * mail/feedmail.el (feedmail): Add :link.
8159 (feedmail-send-it): Doc fix.
8160
8161 * mail/sendmail.el: Doc fixes.
8162 (sendmail-send-it): Fix the non-ASCII regexp and use
8163 rfc2047-encode-string.
8164
8165 * dired.el, dired-aux.el: Revert last change.
8166
8167 2001-01-26 Gerd Moellmann <gerd@gnu.org>
8168
8169 * makefile.w32-in (DONTCOMPILE): Add various term files.
8170
8171 2001-01-26 Dave Love <fx@gnu.org>
8172
8173 * Makefile.in (DONTCOMPILE): Add various term files.
8174
8175 2001-01-26 Gerd Moellmann <gerd@gnu.org>
8176
8177 * man.el (Man-default-man-entry, Man-mode): Doc fix.
8178
8179 * startup.el (display-startup-echo-area-message): Make sure
8180 the echo area is resized to fit the size of the startup message.
8181
8182 * gud.el (gud-perldb-massage-args): Avoid nreverse'ing a list
8183 part of which is a constant.
8184
8185 2001-01-26 Eli Zaretskii <eliz@is.elta.co.il>
8186
8187 * loadup.el (Top-level) [ms-dos]: Don't load international/ccl twice.
8188
8189 2001-01-26 Richard M. Stallman <rms@gnu.org>
8190
8191 * simple.el (next-line): Don't let `newline' expand abbrevs.
8192 Simplify slightly.
8193 (open-line): Don't let `newline' expand abbrevs.
8194
8195 2001-01-25 John Wiegley <johnw@gnu.org>
8196
8197 * eshell/esh-util.el (eshell-ange-ls-uids): Changed use of `alist'
8198 to `repeat' in the :type field.
8199
8200 * pcomplete.el (pcomplete-file-ignore): Changed a :type field to
8201 allow a choice of regexp or nil.
8202 (pcomplete-dir-ignore): Same.
8203
8204 * eshell/em-unix.el (eshell/occur): Fixed bug causing `occur' (as
8205 a command) to always fail.
8206
8207 2001-01-25 Gerd Moellmann <gerd@gnu.org>
8208
8209 * iswitchb.el (iswitchb-make-buflist): When nconc'ing lists, don't
8210 discard the result.
8211 (iswitchb-to-end): Likewise.
8212
8213 2001-01-25 Sam Steingold <sds@gnu.org>
8214
8215 * vc-cvs.el (vc-cvs-mode-line-string): Doc & comment fix.
8216 Require vc.
8217
8218 2001-01-25 Stefan Monnier <monnier@cs.yale.edu>
8219
8220 * smerge-mode.el (smerge-font-lock-keywords): Relax submatch 1.
8221
8222 * emacs-lisp/easy-mmode.el (define-minor-mode): Docstring fix.
8223
8224 2001-01-25 Dave Love <fx@gnu.org>
8225
8226 * lisp/international/mule-diag.el (describe-char-after): Doc fix.
8227 (describe-coding-system): Tweak the English text.
8228
8229 * loadup.el: Preload international/ccl for utf-8.
8230
8231 2001-01-25 Eli Zaretskii <eliz@is.elta.co.il>
8232
8233 * mail/rmail.el (rmail-redecode-body): Doc fix.
8234
8235 2001-01-25 Kenichi Handa <handa@etl.go.jp>
8236
8237 * international/mule-cmds.el (reset-language-environment):
8238 Reset coding-category-utf-8 to mule-utf-8.
8239
8240 * international/mule-conf.el (coding-category-utf-8):
8241 Initialize to mule-utf-8.
8242
8243 * loadup.el: Preload international/utf-8.
8244
8245 * international/utf-8.el: New file.
8246
8247 2001-01-24 Stefan Monnier <monnier@cs.yale.edu>
8248
8249 * diff-mode.el (diff-mode): Disable preliminary support for `compile'.
8250
8251 2001-01-24 Sam Steingold <sds@gnu.org>
8252
8253 * dired.el (dired-replace-in-string): Removed.
8254 (dired-sort-toggle): Use `replace-regexps-in-string'
8255 instead of `dired-replace-in-string'.
8256
8257 * dired-aux.el (dired-shell-stuff-it, dired-rename-subdir)
8258 (dired-rename-subdir-2, dired-insert-subdir-doinsert): Ditto.
8259
8260 * gs.el (gs-replace-in-string): Removed.
8261 (gs-options): Use `replace-regexps-in-string'
8262 instead of `gs-replace-in-string'.
8263
8264 2001-01-24 Eli Zaretskii <eliz@is.elta.co.il>
8265
8266 * mail/emacsbug.el (report-emacs-bug): Mention the fact that the
8267 bug report is mailed to an email list and posted to a news group.
8268
8269 2001-01-24 Gerd Moellmann <gerd@gnu.org>
8270
8271 * comint.el (comint-replace-by-expanded-history-before-point):
8272 Fix change of 2000-08-03 to move point to the start of the line again.
8273
8274 * startup.el (tool-bar-images-pixel-height): New variable.
8275 (command-line): After loading the user's init file, when
8276 tool-bar-mode is on, increase the frame's size by some lines for
8277 the tool-bar.
8278
8279 * frame.el (frame-initialize): Create the initial frame invisible.
8280
8281 2001-01-24 ShengHuo ZHU <zsh@cs.rochester.edu>
8282
8283 * language/chinese.el (chinese-iso-8bit): MIME:GB2312.
8284 (chinese-big5): MIME:Big5.
8285
8286 2001-01-24 Gerd Moellmann <gerd@gnu.org>
8287
8288 * international/mule-cmds.el (universal-coding-system-argument):
8289 Handle commands with prefix args.
8290
8291 2001-01-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
8292
8293 * calendar/diary-lib.el (diary-float): Fix case of MONTH
8294 being a list of numbers.
8295 (diary-mail-entries): Rewritten.
8296
8297 2001-01-23 Dave Love <fx@gnu.org>
8298
8299 * international/mule.el (make-coding-system): Fix typo.
8300
8301 * textmodes/outline.el (outline-mode) <font-lock-defaults>:
8302 Add backward-paragraph as font-lock-beginning-of-syntax-function.
8303
8304 2001-01-23 Eli Zaretskii <eliz@is.elta.co.il>
8305
8306 * font-lock.el (font-lock-mode): Doc fix.
8307
8308 2001-01-23 Kenichi Handa <handa@etl.go.jp>
8309
8310 * international/mule.el (make-translation-table): Fix docstring.
8311
8312 2001-01-22 Eli Zaretskii <eliz@is.elta.co.il>
8313
8314 * mail/rmail.el (rmail-redecode-body): New function.
8315
8316 * icomplete.el (icomplete-minibuffer-setup-hook): Doc fix.
8317
8318 2001-01-22 Gerd Moellmann <gerd@gnu.org>
8319
8320 * isearch.el (isearch-lazy-highlight-case-fold-search)
8321 (isearch-lazy-highlight-regexp): New variables.
8322 (isearch-lazy-highlight-cleanup): Update lazy highlight if
8323 case-fold search or regexp search has been toggled.
8324
8325 * wid-edit.el (widget-button-click): Avoid a save-excursion
8326 around running a global binding.
8327
8328 * isearch.el (isearch-lazy-highlight-initial-delay): Set default
8329 to 0.25.
8330
8331 2001-01-20 Miles Bader <miles@gnu.org>
8332
8333 * cus-edit.el (custom-face-save): Do post-processing on the face's
8334 new value like `custom-face-set' does.
8335
8336 2001-01-19 Eli Zaretskii <eliz@is.elta.co.il>
8337
8338 * mail/emacsbug.el (report-emacs-bug): Report the value of
8339 LC_CTYPE, not LC_TYPE.
8340
8341 * isearch.el (isearch-forward): Add isearch-toggle-case-fold,
8342 isearch-toggle-regexp and isearch-edit-string to doc string.
8343
8344 2001-01-19 Gerd Moellmann <gerd@gnu.org>
8345
8346 * textmodes/texinfo.el (texinfo-mode): Use backward-paragraph
8347 as font-lock-beginning-of-syntax-function in font-lock-defaults.
8348
8349 * jit-lock.el (jit-lock-fontify-now): Don't bind
8350 font-lock-beginning-of-syntax-function to nil.
8351
8352 2001-01-19 Eli Zaretskii <eliz@is.elta.co.il>
8353
8354 * mail/emacsbug.el (report-emacs-bug): Report values of
8355 locale-coding-system, default-enable-multibyte-characters, and the
8356 environment variables LC_ALL, LC_TYPE, and LANG.
8357
8358 2001-01-19 Gerd Moellmann <gerd@gnu.org>
8359
8360 * font-lock.el (font-lock-default-fontify-region): Fix last change.
8361
8362 * font-lock.el (font-lock-multiline): Default to nil.
8363 (font-lock-default-fontify-region): If font-lock-multiline is
8364 nil, don't check the property `font-lock-multiline'.
8365
8366 * jit-lock.el (jit-lock-after-change): If font-lock-multiline
8367 is nil, don't check the `font-lock-multiline' text property.
8368
8369 2001-01-19 Michael Kifer <kifer@cs.sunysb.edu>
8370
8371 * viper.el: Call initial-major-mode on startup.
8372
8373 * ediff.el (ediff-patch-file): Use better defaults.
8374
8375 * ediff-vers.el: Fix for 8+3 DOS file systems.
8376
8377 2001-01-19 Colin Walters <walters@cis.ohio-state.edu>
8378
8379 * ediff-util.el (ediff-compare-custom-diffs-maybe): Put diff in
8380 diff mode, if available.
8381
8382 2001-01-19 Michael Kifer <kifer@cs.sunysb.edu>
8383
8384 * ediff-hook.el (ediff-xemacs-init-menus): Fixed add-menu-button.
8385
8386 * ediff-init.el (subst-char-in-string): Define and use it, unless
8387 it's already defined.
8388
8389 2001-01-18 Gerd Moellmann <gerd@gnu.org>
8390
8391 * tooltip.el (tooltip-hide-delay): New user-option.
8392 (tooltip-show): Use tooltip-hide-delay instead of the default.
8393
8394 2001-01-18 Kenichi Handa <handa@etl.go.jp>
8395
8396 * mail/sendmail.el (mail-setup): Call set-buffer-multibyte because
8397 kill-local-variable doesn't work for enable-multibyte-characters.
8398
8399 2001-01-17 Dave Love <fx@gnu.org>
8400
8401 * ediff-init.el (ediff-before-setup-hook)
8402 (ediff-merge-filename-prefix): Add :version.
8403
8404 * international/latin1-disp.el: Require disp-table.
8405 (latin1-display): Fix :set.
8406
8407 * net/eudc-vars.el (eudc-server, eudc-protocol): Fix :type.
8408
8409 2001-01-17 Gerd Moellmann <gerd@gnu.org>
8410
8411 * isearch.el (isearch-lazy-highlight-initial-delay)
8412 (isearch-lazy-highlight-interval): Default to 0.
8413
8414 2001-01-17 Bob Glickstein <bobg@zanshin.com>
8415
8416 * isearch.el (isearch-highlight): Set isearch-overlay priority to
8417 1 here rather than each time through
8418 isearch-lazy-highlight-new-loop.
8419 (isearch-lazy-highlight-max): Variable deleted.
8420 (isearch-lazy-highlight-max-at-a-time): New user variable, like
8421 isearch-lazy-highlight-max but controls a single invocation of
8422 isearch-lazy-highlight-update.
8423 (isearch-lazy-highlight-wrapped): Variable recreated.
8424 (isearch-lazy-highlight-window-start): New variable.
8425 (isearch-lazy-highlight-cleanup): Restored to behavior of
8426 before 2-Jan.
8427 (isearch-lazy-highlight-remove-overlays): Function deleted;
8428 behavior folded into isearch-lazy-highlight-cleanup. "Keep"
8429 behavior removed.
8430 (isearch-lazy-highlight-new-loop): Restore old behavior of calling
8431 isearch-lazy-highlight-update in a loop rather than just once.
8432 Test isearch-invalid-regexp here and decide not to start a new
8433 loop, rather than testing it each time through
8434 isearch-lazy-highlight-update.
8435 (isearch-lazy-highlight-search): Function restored.
8436 (isearch-lazy-highlight-update): Get called in a timer loop again,
8437 but this time highlight more than one match each time through.
8438 Only highlight matches in the visible part of the window.
8439 Start at point, move in the direction of the search, and wrap around at
8440 the edge of the window. Use sit-for to force redisplay and ensure
8441 window-start is credible. "Face suppressing" behavior removed;
8442 overlay priorities should make it unnecessary, right?
8443 (isearch-highlight): Face suppressing behavior removed.
8444 (isearch-dehighlight): Face suppressing behavior removed.
8445 (isearch-set-lazy-highlight-faces-at): Removed.
8446
8447 2001-01-17 Kenichi Handa <handa@etl.go.jp>
8448
8449 * language/european.el ("Latin-1"): Make the format of description
8450 about additional language environments same as that of Latin-2.
8451
8452 2001-01-16 Dave Love <fx@gnu.org>
8453
8454 * isearch.el (isearch-lazy-highlight): Add :version.
8455
8456 * simple.el (backward-delete-char-untabify-method)
8457 (next-line-add-newlines): Add :version.
8458
8459 2001-01-16 Gerd Moellmann <gerd@gnu.org>
8460
8461 * bindings.el: Bind <backspace> and <delete> via function-key-map.
8462 Don't bind <delete> otherwise.
8463
8464 * simple.el (delete-key-deletes-forward-mode): Bind <backspace>
8465 and <delete> via function-key-map.
8466
8467 * textmodes/flyspell.el (mail-mode-flyspell-verify): Check in
8468 Subject line only if point is after the `Subject:'.
8469
8470 2001-01-16 Kenichi Handa <handa@etl.go.jp>
8471
8472 * language/japanese.el ("Japanese"): Add japanese-jisx0213-1 and
8473 japanese-jisx0213-2 in `charset' property of this lang. env.
8474
8475 * language/european.el ("Latin-1"): Add description for Dutch and
8476 Spanish lang. env.
8477
8478 * international/mule.el (decode-char): Fix conditions.
8479 (encode-char): Handle eight-bit-control too.
8480 (transform-make-coding-system-args): New function.
8481 (make-coding-system): Accept XEmacs style arguments for CCL base
8482 coding system.
8483
8484 2001-01-15 Gerd Moellmann <gerd@gnu.org>
8485
8486 * progmodes/etags.el (find-tag-noselect): Save the value of
8487 tags-file-name before switching buffers, for the case it has a
8488 buffer-local value.
8489
8490 2001-01-15 Alex Schroeder <alex@gnu.org>
8491
8492 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
8493 From Dave Love <fx@gnu.org>.
8494 (ansi-color-for-comint-mode): Fix :version.
8495
8496 2001-01-15 Alex Schroeder <alex@gnu.org>
8497
8498 * ansi-color.el (ansi-color-unfontify-region): Doc change.
8499
8500 2001-01-14 Eli Zaretskii <eliz@is.elta.co.il>
8501
8502 * dired.el (dired-insert-directory): If file-system-info fails,
8503 remove the " free " part, but don't signal an error.
8504
8505 2001-01-12 Sam Steingold <sds@gnu.org>
8506
8507 * bookmark.el (bookmark-maybe-historicize-string):
8508 Use new backquote syntax.
8509
8510 2001-01-12 Richard M. Stallman <rms@gnu.org>
8511
8512 * subr.el (last): Handle a list that doesn't end in nil.
8513
8514 2001-01-12 Sam Steingold <sds@gnu.org>
8515
8516 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind `backspace'
8517 to `backward-delete-char-untabify'.
8518
8519 2001-01-12 Dave Love <fx@gnu.org>
8520
8521 * cus-edit.el (customize-menu-create): Fix the :filter following
8522 easymenu change.
8523
8524 * wid-edit.el (function): Add :match-alternatives.
8525 (widget-color-action): Doc fix.
8526
8527 2001-01-12 Gerd Moellmann <gerd@gnu.org>
8528
8529 * calendar/calendar.el (calendar-basic-setup): Doc fix.
8530
8531 2001-01-12 Kenichi Handa <handa@etl.go.jp>
8532
8533 * international/mule-cmds.el (prefer-coding-system): Fix docstring.
8534
8535 * international/ccl.el (define-ccl-program): Fix docstring.
8536
8537 2001-01-11 Dave Love <fx@gnu.org>
8538
8539 * international/mule-cmds.el (standard-display-european-internal):
8540 Set display table for 2208 as for 160.
8541
8542 * progmodes/ada-mode.el (ada-popup-key): Fix last change.
8543
8544 * progmodes/fortran.el (fortran-mode-map): Modify Customization
8545 entry for custom-menu-create change.
8546 (fortran-strip-sqeuence-nos): Make arg optional. Fix regexp and
8547 don't cons it in the search loop.
8548
8549 * imenu.el (imenu--truncate-items): Revert last change.
8550
8551 2001-01-11 Eli Zaretskii <eliz@is.elta.co.il>
8552
8553 * info.el (Info-setup-header-line): If the node header includes
8554 either Next: or Prev: links, don't show the File: and Node: parts
8555 in the header line.
8556
8557 2001-01-11 Gerd Moellmann <gerd@gnu.org>
8558
8559 * comint.el (comint-goto-process-mark): Don't print a message
8560 when running in batch mode.
8561
8562 * isearch.el (isearch-search): In the condition-case handler for
8563 `error', set isearch-invalid-regexp to the whole error message.
8564
8565 * subr.el (eval-after-load): Call load-symbol-file-load-history to
8566 ensure that eval-after-load works for files dumped with Emacs.
8567
8568 * help.el (load-symbol-file-load-history): New function extracted
8569 from function symbol-file.
8570 (symbol-file): Use it.
8571
8572 * toolbar/save.xpm, toolbar/undo.xpm: Use the same colors as exit.xpm.
8573
8574 2001-01-11 Eli Zaretskii <eliz@is.elta.co.il>
8575
8576 * progmodes/etags.el (find-tag-interactive): If last-tag is nil,
8577 behave as if there were no prefix argument.
8578 (find-tag-noselect): If last-tag is nil, behave as if the NEXT-P
8579 argument were nil.
8580
8581 2001-01-11 Richard M. Stallman <rms@gnu.org>
8582
8583 * isearch.el (isearch-lazy-highlight-update):
8584 Don't look for more potential matches once maximum is exceeded.
8585 Use overlays-in to check correctly for overlap with current match.
8586 Ignore empty matches.
8587
8588 2001-01-11 Miles Bader <miles@gnu.org>
8589
8590 * textmodes/ispell.el (ispell-adjusted-window-height): New function.
8591 (ispell-overlay-window, ispell-help, ispell-show-choices)
8592 (ispell-command-loop): Use it instead of `window-height'.
8593
8594 2001-01-10 Gerd Moellmann <gerd@gnu.org>
8595
8596 * files.el (confirm-kill-emacs): New user-option.
8597 (save-buffers-kill-emacs): Ask for final confirmation before
8598 killing Emacs.
8599
8600 * isearch.el (isearch-done): Set isearch-lazy-highlight-start
8601 to nil.
8602
8603 2001-01-10 Dave Love <fx@gnu.org>
8604
8605 * progmodes/etags.el (tags-apropos-additional-actions): Fix :type.
8606
8607 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix doc, :type.
8608
8609 * hi-lock.el (hi-lock-exclude-modes): Fix :type.
8610
8611 * calculator.el (calculator-number-digits): Fix :type.
8612
8613 * vc-cvs.el (vc-cvs-header): Fix :type.
8614 * vc-rcs.el (vc-rcs-header): Fix :type.
8615 * vc-sccs.el (vc-sccs-header): Fix :type.
8616
8617 * progmodes/ada-mode.el (ada-popup-key): Fix :type.
8618
8619 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
8620
8621 * eshell/esh-util.el (eshell-ange-ls-uids): Fix :type.
8622
8623 2001-01-10 Gerd Moellmann <gerd@gnu.org>
8624
8625 * simple.el (set-variable): Force a thorough redisplay for the
8626 case that the variable has an effect on the display, like
8627 `tab-width' has.
8628
8629 2001-01-10 Andre Spiegel <spiegel@gnu.org>
8630
8631 * vc.el: Add documentation for backend interface.
8632
8633 2001-01-10 Kenichi Handa <handa@etl.go.jp>
8634
8635 * font-lock.el (c-font-lock-extra-types): Add "Lisp_Object".
8636
8637 * international/mule-conf.el (latin-extra-code-table): Set to t
8638 for \223 and \224.
8639
8640 2001-01-09 Kenichi Handa <handa@etl.go.jp>
8641
8642 * international/mule-cmds.el (locale-language-names): Map "es" to
8643 "Spanish" and "nl" to "Dutch".
8644
8645 2001-01-09 Gerd Moellmann <gerd@gnu.org>
8646
8647 * bindings.el (global-map): Bind <home> to beginning-of-line,
8648 <end> to end-of-line, C-<home> to beginning-of-buffer, and
8649 C-<end> to end-of-buffer.
8650
8651 * language/european.el: Add Dutch and Spanish language info
8652 to be able to use the appropriate tutorials.
8653
8654 2001-01-09 Alex Schroeder <alex@gnu.org>
8655
8656 * ansi-color.el (ansi-color-process-output): Use markers instead
8657 of positions for start and end of region.
8658 (ansi-color-apply-on-region): Rewrote code to make it more robust.
8659 Previously, occasional mistakes happend when fontifying many
8660 chunks of output (eg. ls --color=yes /dev). This happened
8661 whenever an overlay was created up to the end of the region, which
8662 coincided with the process-mark. New text would then be added
8663 within that overlay instead of after it.
8664 (ansi-color-make-extent): Overlays are created with the property
8665 `modification-hooks' set to '(ansi-color-freeze-overlay).
8666 (ansi-color-freeze-overlay): New function. When inserting text at
8667 the end of the overlay, the overlay will resize.
8668
8669 2000-01-09 Alex Schroeder <alex@gnu.org>
8670
8671 * ansi-color.el (ansi-color-process-output): Doc change.
8672 (ansi-color-unfontify-region): Doc change. No longer installed
8673 automatically in font-lock-unfontify-region-function.
8674 (ansi-color-apply): Doc change.
8675 (ansi-color-apply-on-region): Use extents or overlays instead of
8676 text-properties.
8677 (ansi-color-make-extent): New function.
8678 (ansi-color-set-extent-face): New function.
8679
8680 2000-01-09 Alex Schroeder <alex@gnu.org>
8681
8682 * ansi-color.el (ansi-color-process): Removed, Emacs and XEmacs
8683 both use ansi-color-process-output, now.
8684 (ansi-color-process-output): Doesn't return string anymore. It is
8685 installed in comint-output-filter-functions for both Emacs and
8686 XEmacs, now.
8687 (ansi-color-unfontify-region): Simplified code removing variables
8688 pos and start-ansi.
8689 (ansi-color-apply): Put text-property ansi-color before putting
8690 text-property face because ansi-color-unfontify-region is called
8691 immediately after the call to put-text-property.
8692 (ansi-color-context-region): Doc change.
8693 (ansi-color-filter-region): Simplified code.
8694 (ansi-color-apply-on-region): Changed start to start-marker, using
8695 a marker explicitly. Put text-property ansi-color before putting
8696 text-property face because ansi-color-unfontify-region is called
8697 immediately after the call to put-text-property.
8698
8699 2000-01-09 Alex Schroeder <alex@gnu.org>
8700
8701 * ansi-color.el (ansi-color-faces-vector): Doc change.
8702 (ansi-color-for-comint-mode): Changed :type property to choice.
8703 (ansi-color-last-context): Removed.
8704 (ansi-color-process-output): Don't use ansi-color-last-context, as
8705 the main functions will store their context now.
8706 (ansi-color-context): Doc change.
8707 (ansi-color-filter-apply): Rewrote it based on ansi-color-apply.
8708 Uses ansi-color-context such that repeated calls will strip
8709 partial escape sequences, too.
8710 (ansi-color-apply): Simplified code. Colorize end of string if
8711 face is not null. Store context in new (FACE STRING) format, such
8712 that repeated calls will strip partial escape sequences, too.
8713 Append faces to face property using ansi-color-apply-sequence such
8714 that cumulative mode actually works.
8715 (ansi-color-context-region): New variable.
8716 (ansi-color-filter-region): Rewrote it based on
8717 ansi-color-apply-on-region. Uses ansi-color-context-region such
8718 that repeated calls will strip partial escape sequences, too.
8719 (ansi-color-apply-on-region): Simplified code. Colorize end of
8720 region if face is not null. Store context in new (FACE POS)
8721 format, such that repeated calls will strip partial escape
8722 sequences, too. Append faces to face property using
8723 ansi-color-apply-sequence such that cumulative mode actually works.
8724 (ansi-color-apply-sequence): New function.
8725 (ansi-color-get-face): When the default face is added to the list
8726 of faces, all previous settings are discarded and the list of
8727 faces is set to '(default).
8728
8729 2000-01-09 Alex Schroeder <alex@gnu.org>
8730
8731 * ansi-color.el (ansi-color-faces-vector): Use nil for the default
8732 face, such that ansi-color-apply and ansi-color-apply-on-region
8733 will do the right thing.
8734 (ansi-color-apply): Do the right thing, ie. if ansi-color-get-face
8735 returns nil, set the list of faces back to nil instead of
8736 appending the result of ansi-color-get-face to the front of the list.
8737
8738 2000-01-09 Alex Schroeder <alex@gnu.org>
8739
8740 * ansi-color.el (ansi-color-for-comint-mode): Doc change.
8741 (ansi-color-process): Doc change.
8742 (ansi-color-last-context): New buffer-local variable.
8743 (ansi-color-process-output): New function. It is automatically
8744 added to comint-output-filter-functions if this is XEmacs.
8745 (ansi-color-unfontify-region): New optional parameter for XEmacs
8746 compatibility. Check wether font-lock-syntactic-keywords is
8747 boundp before removing the syntax table text property, as XEmacs
8748 doesn't have it.
8749 (ansi-color-filter-region): Doc change.
8750 (ansi-color-apply-on-region): Doc change.
8751 (ansi-color-make-face): New function. Compatibility layer for
8752 XEmacs. Return temporary faces instead of cons cells for XEmacs.
8753 (ansi-color-make-color-map): Use ansi-color-make-face.
8754 (ansi-color-get-face): Avoid face text property '(nil) as results
8755 in an errow for XEmacs.
8756
8757 2000-01-09 Alex Schroeder <alex@gnu.org>
8758
8759 * ansi-color.el (ansi-color-unfontify-region): New function.
8760 Uses text-property ansi-color in order to preserve fontification by
8761 ansi-color. When the package is loaded, a lambda expression is
8762 put onto font-lock-mode-hook. This lambda expression will check
8763 font-lock-unfontify-region-function and replace
8764 font-lock-default-unfontify-region with ansi-color-unfontify-region.
8765 (ansi-color-apply): Add text-property ansi-color in addition to
8766 text-property face.
8767 (ansi-color-apply-on-region): Add text-property ansi-color in
8768 addition to text-property face.
8769 (save-buffer-state): Copy of the macro that is also used by
8770 lazy-lock and font-lock.
8771
8772 (ansi-color-for-comint-mode): New option.
8773 (ansi-color-for-comint-mode-on): Set ansi-color-for-comint-mode.
8774 (ansi-color-for-comint-mode-off): Ditto.
8775 (ansi-color-for-comint-mode-filter): Ditto.
8776 (ansi-color-process): New function. Uses ansi-color-for-comint-mode to
8777 decide what to do. This function is added to
8778 comint-preoutput-filter-functions when the package is loaded.
8779
8780 (ansi-color-for-shell-mode-set): Removed.
8781 (ansi-color-for-shell-mode): Removed.
8782
8783 2000-01-09 Alex Schroeder <alex@gnu.org>
8784
8785 * ansi-color.el (ansi-color-for-shell-mode-set): New function with
8786 the lambda expression from the ansi-color-for-shell-mode :set
8787 property. Additionally, modify shell-mode-hook to enable or
8788 disable font-lock-mode for future shell buffers.
8789 (ansi-color-for-shell-mode): The :set property calls
8790 ansi-color-for-shell-mode-set instead of a lambda expression.
8791
8792 2000-01-09 Alex Schroeder <alex@gnu.org>
8793
8794 * ansi-color.el (ansi-color-for-shell-mode): Doc change.
8795 (ansi-color-context): New variable.
8796 (ansi-color-apply): Save context between calls.
8797
8798 2001-01-09 Eli Zaretskii <eliz@is.elta.co.il>
8799
8800 * isearch.el (isearch, isearch-lazy-highlight-face):
8801 New definitions for face colors and attributes.
8802
8803 * wid-edit.el (widget-choose): Call display-popup-menus-p instead
8804 of display-mouse-p.
8805
8806 2001-01-09 Kenichi Handa <handa@etl.go.jp>
8807
8808 * international/mule.el (make-coding-system): If the coding system
8809 accepts extra latin codes, register such codes as safe for the
8810 coding system.
8811
8812 2001-01-08 Richard M. Stallman <rms@gnu.org>
8813
8814 * emacs-lisp/bytecomp.el (byte-compile-log-1): In non-batch case,
8815 don't mention the file name or the date here, because they are
8816 logged at the start of the file.
8817
8818 2001-01-08 Richard M. Stallman <rms@gnu.org>
8819
8820 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
8821 Change screen-width to frame-width.
8822
8823 2001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
8824
8825 * info.el (Info-search): Print the default as part of the prompt.
8826
8827 2001-01-08 Andre Spiegel <spiegel@gnu.org>
8828
8829 * vc.el (vc-default-latest-on-branch-p): New function, replaces
8830 constant implementations in backends.
8831
8832 * vc-cvs.el (vc-cvs-latest-on-branch-p): Removed.
8833 (vc-cvs-checkout): Renamed arg WRITABLE to EDITABLE.
8834
8835 * vc-rcs.el (vc-rcs-checkout, vc-rcs-cancel-version): Renamed arg
8836 WRITABLE to EDITABLE.
8837
8838 * vc-sccs.el (vc-sccs-latest-on-branch-p): Removed.
8839 (vc-sccs-checkout, vc-sccs-cancel-version): Renamed arg WRITABLE
8840 to EDITABLE.
8841
8842 2001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
8843
8844 * emacs-lisp/copyright.el (copyright-current-year): Now a defvar.
8845 (copyright, copyright-update): Compute the current year at run time.
8846
8847 2001-01-08 Gerd Moellmann <gerd@gnu.org>
8848
8849 * isearch.el (isearch-old-signal-hook): Removed.
8850 (isearch-mode): Add isearch-done to kbd-macro-termination-hook
8851 instead of setting signal-hook-function.
8852 (isearch-done): Remove isearch-done from kbd-macro-termination-hook.
8853
8854 2001-01-08 Kevin Gallagher <kevingal@onramp.net>
8855
8856 * emulation/edt.el: Update to version 4.0. Provide support for
8857 EDT scroll margins at top and bottom of the window. Provide an
8858 emulation of the EDT SUBS command (bound to GOLD-Enter, by
8859 default). Enhance edt-quit, bound to GOLD-q by default, to warn
8860 user when file-related buffer modifications exist.
8861 Provide support for running EDT Emulation in XEmacs.
8862 Provide customize access to some user updatable variables.
8863 Add Commentary section to file header.
8864 Fixed a few minor bugs and cleaned up some code.
8865
8866 * emulation/edt-mapper.el: Update to version 4.0. Provide support
8867 for detecting a keypress that generates an ASCII key sequence.
8868 (Previously, only a keypress that generates a vector was
8869 recognized.) Embed Window Manager name into name of the generated
8870 EDT Emulation initialization file since the initialization file is
8871 Window Manager specific. Add Commentary section to file header.
8872
8873 2001-01-07 Eli Zaretskii <eliz@is.elta.co.il>
8874
8875 * mail/sendmail.el (mail-mode): Doc fix.
8876
8877 * info.el (Info-goto-emacs-command-node): Doc fix.
8878 (Info-goto-emacs-key-command-node): Doc fix.
8879
8880 2001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
8881
8882 * ediff-vers.el (noninteractive): Don't load generic-sc on MS-DOS
8883 systems without long file-name support.
8884
8885 2001-01-06 Andrew Innes <andrewi@gnu.org>
8886
8887 * makefile.w32-in (custom-deps): Set EMACSLOADPATH explicitly.
8888
8889 2001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
8890
8891 * isearch.el (isearch-lazy-highlight-remove-overlays): Doc fix.
8892 (isearch-lazy-highlight-update): Doc fix.
8893
8894 * ffap.el (ffap-bindings): Doc fix.
8895
8896 * dired-x.el (dired-virtual-guess-dir): Doc fix.
8897
8898 2001-01-05 Dave Love <fx@gnu.org>
8899
8900 * emacs-lisp/cl-seq.el (remove, remq): Remove.
8901
8902 2001-01-05 Gerd Moellmann <gerd@gnu.org>
8903
8904 * mouse-drag.el (mouse-drag-safe-scroll):
8905 Bind scroll-preserve-screen-position to nil.
8906
8907 * isearch.el (isearch-old-signal-hook): New variable.
8908 (isearch-mode): Set signal-hook-function to isearch-done.
8909 (isearch-done): Restore old signal-hook-function.
8910
8911 * info.el (Info-fontify-node): Mark one more char as intangible.
8912
8913 2000-01-05 Kenichi Handa <handa@etl.go.jp>
8914
8915 * composite.el (compose-last-chars): New argument COMPONENTS.
8916 If it is non-nil, compose preceding characters by compose-region with
8917 COMPONENTS.
8918
8919 * international/quail.el (quail-input-string-to-events): New function.
8920 (quail-input-method): Convert input string to events here.
8921 (quail-start-translation): Return input string, not event list.
8922 (quail-start-conversion): Likewise.
8923
8924 2001-01-04 Gerd Moellmann <gerd@gnu.org>
8925
8926 * tooltip.el (tooltip-cancel-delayed-tip)
8927 (tooltip-start-delayed-tip): Renamed from tooltip-disable-timeout
8928 and tooltip-add-timeout.
8929 (tooltip-show): Set border color from faces's foreground.
8930 (tooltip-show-help-function): If called with the same help string
8931 as last time, do nothing.
8932 (tooltip-help-tips): Don't set tooltip-help-message to nil.
8933
8934 * startup.el (fancy-splash-screens): Don't bind show-help-function
8935 to nil.
8936
8937 * tooltip.el (tooltip-frame-parameters): Remove colors.
8938 (tooltip): New face
8939 (tooltip-set-param): New function.
8940 (tooltip-show): Set up color frame parameters from face `tooltip'.
8941 Display the tooltip text in face `tooltip'.
8942
8943 2001-01-04 Dave Love <fx@gnu.org>
8944
8945 * whitespace.el (whitespace-global-mode): Fix typo.
8946
8947 * hilit19.el, mail/rnewspost.el, mail/rnews.el: Moved to obsolete.
8948
8949 2001-01-04 Eli Zaretskii <eliz@is.elta.co.il>
8950
8951 * help.el (help-for-help): Fix a typo in a doc string.
8952 From kwzh@gnu.org (Karl Heuer).
8953
8954 2001-01-03 Dave Love <fx@gnu.org>
8955
8956 * dired-x.el: Doc fixes. Maintainer change.
8957 (dired-guess-shell-gnutar, dired-guess-shell-znew-switches): Fix :type.
8958 (dired-guess-shell-alist-default): Don't use xloadimage for PNG.
8959 (dired-guess-shell-alist-user): Customize.
8960 (dired-x-help-address): Set to bug-gnu-emacs.
8961 (dired-x-maintainer, dired-x-file, dired-x-version): Deleted.
8962 (dired-default-directory): Renamed from default-directory.
8963
8964 * hl-line.el (hl-line): Doc fix.
8965
8966 2001-01-03 Karl Fogel <kfogel@red-bean.com>
8967
8968 * mail/mail-hist.el (mail-hist-text-too-long-p): Doc fix.
8969
8970 2001-01-02 Richard M. Stallman <rms@gnu.org>
8971
8972 * isearch.el (isearch-lazy-highlight-cleanup): Arg now says
8973 to remove all the current alternative-match highlighting.
8974 If nil, remove only what's outside the current window.
8975 (isearch-lazy-highlight-remove-overlays): Take optional
8976 region within which NOT to remove them.
8977 (isearch-lazy-highlight-new-loop): Greatly simplified.
8978 (isearch-lazy-highlight-update): Find all the other occurrences
8979 visible in the window, in just one call.
8980 (isearch-lazy-highlight-start): Now holds start of region to scan.
8981 (isearch-lazy-highlight-end): Now holds end of region to scan.
8982 (isearch-lazy-highlight-wrapped): Variable deleted.
8983 (isearch-lazy-highlight-search): Function deleted.
8984
8985 2000-01-02 Andrew Innes <andrewi@gnu.org>
8986
8987 * w32-fns.el (convert-standard-filename): Do length check on name
8988 before aref.
8989
8990 2001-01-02 Dave Love <fx@gnu.org>
8991
8992 * progmodes/cperl-mode.el (cperl-invalid-face): Don't double-quote
8993 value.
8994 (cperl-init-faces): Allow cperl-invalid-face to be a normal face.
8995
8996 * ls-lisp.el (ls-lisp) <defgroup>: Add :version.
8997
8998 * net/browse-url.el (browse-url-filename-alist): Avoid backquote
8999 read syntax.
9000
9001 * calendar/todo-mode.el (todo): Add :link, :version.
9002 (todo-save-top-priorities): Remove autoload cookie.
9003 (todo-add-category, todo-add-item-non-interactively)
9004 (todo-insert-item, todo-mode, todo-cp, todo-show): Fix autoload cookie.
9005
9006 2001-01-02 Gerd Moellmann <gerd@gnu.org>
9007
9008 * comint.el (comint-input-history-ignore): New variable.
9009 (comint-read-input-ring): Ignore entries matching
9010 comint-input-history-ignore.
9011
9012 2001-01-02 Eric M. Ludlam <zappo@gnu.org>
9013
9014 * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): New Variable.
9015 (lm-copyright-mark): New function.
9016 (lm-crack-copyright): New function.
9017 (lm-verify): Check that the file has a copyright.
9018 Check that the file is copyright Free Software Foundation.
9019
9020 2000-12-30 Kenichi Handa <handa@etl.go.jp>
9021
9022 * international/mule-diag.el (print-fontset): Indent font name by
9023 24 columns, not 25.
9024
9025 2000-12-29 Gerd Moellmann <gerd@gnu.org>
9026
9027 * textmodes/flyspell.el (mail-mode-flyspell-verify): Spell-check
9028 in Subject line.
9029
9030 * mail/mailabbrev.el (mail-abbrevs-enable, mail-abbrevs-disable):
9031 Use mail-mode-hook instead of mail-setup-hook.
9032 Otherwise continuing an interrupted message with C-u C-x m for
9033 instance, winds up in Mail mode without abbrevs.
9034
9035 2000-12-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9036
9037 * ps-print.el: Handle form feed better when ps-zebra-stripe-follow is
9038 non-nil. Adding almost all customization variables on ps-setup.
9039 Doc fix.
9040 (ps-print-version): New version number (6.3.3).
9041 (ps-end-with-control-d): Initialization fix.
9042 (ps-lines-printed): New var.
9043 (ps-skip-newline): New fun.
9044 (ps-setup, ps-prologue-file, ps-begin-job, ps-begin-page)
9045 (ps-next-line, ps-continue-line, ps-plot-region)
9046 (ps-generate-postscript-with-faces, ps-end-job): Code fix.
9047
9048 2000-12-29 Kenichi Handa <handa@etl.go.jp>
9049
9050 * international/fontset.el (x-complement-fontset-spec):
9051 Resolve ASCII font name so that the same family name is used for fonts
9052 registered in x-font-name-charset-alist.
9053 (create-fontset-from-fontset-spec): Adjusted for the above change.
9054 The name of fontset alias should be a unresolved ASCII font name.
9055
9056 2000-12-28 Gerd Moellmann <gerd@gnu.org>
9057
9058 * simple.el (delete-key-deletes-forward-mode): Bind backspace
9059 and delete in isearch-mode-map.
9060
9061 2000-12-28 Richard M. Stallman <rms@gnu.org>
9062
9063 * dired-x.el (dired-guess-shell-alist-default):
9064 Use xpdf instead of acroread.
9065
9066 2000-12-28 Kenichi Handa <handa@etl.go.jp>
9067
9068 * textmodes/artist.el (artist-butlast): Deleted.
9069 (artist-ellipse-mirror-quadrant): Use butlast instead of
9070 artist-butlast.
9071
9072 * subr.el (butlast, nbutlast): Moved from cl.el to here.
9073
9074 * emacs-lisp/cl.el (butlast, nbutlast): Moved to subr.el.
9075
9076 2000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
9077
9078 From Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>:
9079
9080 * ls-lisp.el: Better support for the Mac and MS-Windows.
9081 (ls-lisp): New defgroup.
9082 (ls-lisp-emulation, ls-lisp-ignore-case, ls-lisp-dirs-first)
9083 (ls-lisp-verbosity, ls-lisp-use-insert-directory-program)
9084 (ls-lisp-support-shell-wildcards): New defcustoms.
9085 (ls-lisp-parse-symlink): New function.
9086 (insert-directory): Code to convert switches to a list and set up
9087 the wildcard argument copied from ls-lisp-insert-directory.
9088 (ls-lisp-insert-directory): New argument TIME-INDEX. Add support
9089 for -C and -R switches.
9090 (ls-lisp-column-format): New function.
9091 (ls-lisp-delete-matching, ls-lisp-handle-switches)
9092 (ls-lisp-format-time): Add doc strings.
9093 (ls-lisp-handle-switches): Handle -U, -S, -X, and -F switches.
9094 Support ls-lisp-dirs-first.
9095 (ls-lisp-classify, ls-lisp-extension): New functions.
9096 (ls-lisp-format): Optionally support emulation of symlinks.
9097 Support -i, -s, and -G switches.
9098
9099 2000-12-27 Gerd Moellmann <gerd@gnu.org>
9100
9101 * textmodes/texinfo.el (texinfo-mode): Set fill-column to 70.
9102
9103 * version.el (emacs-version): Print X scroll bar information.
9104
9105 * scroll-bar.el (toplevel): Check for x-toolkit-scroll-bars
9106 instead of x-toolkit-scroll-bars-p.
9107
9108 * loadup.el (toplevel): Check for x-toolkit-scroll-bars instead
9109 of x-toolkit-scroll-bars-p.
9110
9111 2000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
9112
9113 * ffap.el (ffap-bindings): Make interactive and add an autoload cookie.
9114 (ffap-bindings): Doc fix, to reflect the above change.
9115
9116 2000-12-27 Kenichi Handa <handa@etl.go.jp>
9117
9118 * term.el (term-char-mode): Define all non-ascii self-inserting
9119 characters to 'term-send-raw in term-raw-map.
9120
9121 2000-12-25 Michael Kifer <kifer@cs.sunysb.edu>
9122
9123 * viper-init (viper-restore-cursor-type): Added condition-case guard.
9124
9125 * ediff-init.el (ediff-quit-hook,ediff-suspend-hook):
9126 Changed initialization; use add-hook.
9127 (ediff-file-remote-p): Use file-local-copy.
9128
9129 * ediff-ptch.el (ediff-prompt-for-patch-buffer): Improved defaults.
9130
9131 * ediff.el (ediff-patch-buffer): Bug fix.
9132 (ediff-revision): Allow selection of the file at the prompt.
9133
9134 2000-12-23 Stefan Monnier <monnier@cs.yale.edu>
9135
9136 * subr.el (combine-run-hooks): Remove.
9137
9138 * emacs-lisp/edebug.el (define-minor-mode): Improve the spec
9139 and remove the rogue second spec.
9140
9141 2000-12-23 Gerd Moellmann <gerd@gnu.org>
9142
9143 * progmodes/compile.el (compilation-forget-errors): Fix indentation.
9144
9145 2000-12-22 Stefan Monnier <monnier@cs.yale.edu>
9146
9147 * smerge-mode.el (smerge-basic-map): Use `=' rather than `d'.
9148 Use minibuffer menu prompt for the `=' prefix.
9149 (smerge-command-prefix): Change default to C-^.
9150 (smerge-mode): Don't assume font-lock doesn't move point.
9151
9152 * skeleton.el (skeleton-internal-1): Make sure the first line of
9153 the region is also re-indented.
9154 (skeleton-end-newline): New var.
9155 (skeleton-end-hook): Use it.
9156
9157 2000-12-22 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
9158
9159 * comint.el (comint-password-prompt-regexp): Support CVS.
9160
9161 2000-12-22 Gerd Moellmann <gerd@gnu.org>
9162
9163 * simple.el (delete-key-deletes-forward-mode): Simplify.
9164 Also backspace key combinations, depending on
9165 delete-key-deletes-forward.
9166
9167 * bindings.el ([C-backspace]): Bind C-backspace to kill-word.
9168
9169 * simple.el (delete-key-deletes-forward): Doc fix.
9170
9171 2000-08-22 Emmanuel Briot <briot@gnat.com>
9172
9173 * xml.el (top level comment): Updated to reflect the fact that
9174 white spaces are relevant in the XML file.
9175 (xml-parse-file): Do not kill an existing Emacs buffer if the file
9176 to parse was already edited. This allows for on-the-fly analysis
9177 of XML files.
9178 (xml-parse-tag): Check that the casing is the same in the start
9179 tag and end tag, since XML is case-sensitive. Allows for spaces
9180 in the end tag, after the name of the tag.
9181 (xml-parse-attlist): Allow for the character '-' in the name of
9182 attributes, as in the standard http-equiv attribute Do not save
9183 the properties in the XML tree, since they are not relevant.
9184
9185 2000-12-21 Stefan Monnier <monnier@cs.yale.edu>
9186
9187 * generic.el (generic-read-type): Undo last change, inline into
9188 `generic-mode' and then remove.
9189 (generic-mode): Inline generic-read-type.
9190 (define-generic-mode): Push the symbol name rather than the symbol
9191 onto generic-mode-list.
9192
9193 2000-12-21 Gerd Moellmann <gerd@gnu.org>
9194
9195 * generic.el (generic-read-type): Build an alist for
9196 completing-read as in 20.7.
9197
9198 * play/landmark.el (lm): Use interactive spec `P'.
9199 (toplevel): Don't set debug-on-error.
9200
9201 * server.el (server-switch-buffer): Choose a window on a visible frame.
9202
9203 2000-12-21 Dave Pearson <davep@davep.org>
9204
9205 * quickurl.el: Commentry change, I've moved my web site.
9206
9207 2000-12-21 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9208
9209 * ebnf2ps.el: Fix a problem with skip-chars-forward: it doesn't accept
9210 ranges like \177-\237, but accepts the character sequence from \177 to
9211 \237. Doc fix.
9212 (ebnf-version): New version (3.4).
9213 (ebnf-setup): Code fix.
9214 (ebnf-range-regexp): New fun.
9215 (ebnf-8-bit-chars): Const fix.
9216
9217 * ebnf-bnf.el: Fix the same problem as described on ebnf2ps.el log
9218 entry. Doc fix.
9219 (ebnf-bnf-lex): Code fix.
9220 (ebnf-bnf-comment-chars): Const fix.
9221
9222 * ebnf-iso.el: Fix the same problem as described on ebnf2ps.el log
9223 entry. Doc fix.
9224 (ebnf-iso-comment-chars): Const fix.
9225
9226 * ebnf-otz.el: Doc fix.
9227
9228 * ebnf-yac.el: Fix the same problem as described on ebnf2ps.el log
9229 entry. Doc fix.
9230 (ebnf-yac-skip-code): Code fix.
9231 (ebnf-yac-comment-chars): Const fix.
9232
9233 2000-12-21 Eli Zaretskii <eliz@is.elta.co.il>
9234
9235 * files.el (insert-directory-safely): New function.
9236 (recover-file): Use it instead of insert-directory.
9237 From Markus Rost <markus.rost@mathematik.uni-regensburg.de>
9238
9239 2000-12-21 Kenichi Handa <handa@etl.go.jp>
9240
9241 * international/mule-cmds.el (select-safe-coding-system):
9242 Check coding-category-list more rigidly. Improve help message.
9243
9244 * dired.el (dired-move-to-filename-regexp): Fix previous change.
9245
9246 2000-12-21 Miles Bader <miles@gnu.org>
9247
9248 * mail/sendmail.el (mail-mode): Set `comment-start' to the yank prefix.
9249
9250 2000-12-21 Kenichi Handa <handa@etl.go.jp>
9251
9252 * international/mule-diag.el (describe-char-after): Make *Help*
9253 buffer inherit multibyteness of the current buffer.
9254
9255 * international/mule.el (make-char): Docstring adjusted for the
9256 change of make-char-internal.
9257
9258 2000-12-20 Stefan Monnier <monnier@cs.yale.edu>
9259
9260 * international/iso-cvt.el: Docstrings fix.
9261
9262 2000-12-20 Dave Love <fx@gnu.org>
9263
9264 * subr.el (eval-after-load): Doc fix.
9265
9266 2000-12-20 Kenichi Handa <handa@etl.go.jp>
9267
9268 * jka-compr.el (jka-compr-partial-uncompress): Don't use `concat'
9269 for numbers.
9270
9271 2000-12-20 Miles Bader <miles@gnu.org>
9272
9273 * international/quail.el (quail-help): Resize the help window
9274 again after it has all its contents. Remove unneeded progn.
9275
9276 2000-12-19 Gerd Moellmann <gerd@gnu.org>
9277
9278 * pcmpl-linux.el: Fix copy/paste error.
9279
9280 2000-12-19 Andrew Innes <andrewi@gnu.org>
9281
9282 * simple.el (delete-key-deletes-forward-mode): Fix typo in docstring.
9283
9284 2000-12-19 Carsten Dominik <dominik@strw.leidenuniv.nl>
9285
9286 * progmodes/idlw-rinfo.el: Fixed copyright notice.
9287
9288 * progmodes/idlw-toolbar.el: Fixed copyright notice.
9289
9290 * progmodes/idlw-shell.el: Fixed copyright notice.
9291
9292 * progmodes/idlwave.el: Fixed copyright notice.
9293
9294 * textmodes/reftex-dcr.el (reftex-view-crossref): Added SPACE and
9295 TAB as key separators.
9296
9297 2000-12-19 Alex Schroeder <alex@gnu.org>
9298
9299 * sql.el (sql-sybase-options): New option.
9300 (sql-sybase): Use it. Add sql-database to the list of parameters
9301 provided for login. The options -w 2048 -n are not used any more.
9302 (sql-postgres-options): Changed default from "--pset" to "-P".
9303 (sql-mysql-options): Doc change.
9304 (sql-stop): Doc change.
9305
9306 2000-12-19 Kenichi Handa <handa@etl.go.jp>
9307
9308 * international/quail.el (quail-input-method): Always hide
9309 the guidance buffer on exiting.
9310
9311 2000-12-18 Gerd Moellmann <gerd@gnu.org>
9312
9313 * tooltip.el (tooltip-mode): Signal an error if x-show-tip
9314 isn't fboundp.
9315
9316 * server.el (server-buffer-done): Bury the buffer before
9317 killing it.
9318
9319 * faces.el (face-spec-set): Interpret a nil in specs for
9320 foreground and background colors as `unspecified', for
9321 compatibility with 20.x.
9322
9323 2000-12-18 Dave Love <fx@gnu.org>
9324
9325 * simple.el (mail-user-agent): Doc fix.
9326 (input-mode-8-bit): Removed.
9327
9328 * international/mule.el (set-keyboard-coding-system): Doc fix.
9329 (keyboard-coding-system): New option.
9330
9331 * mail/sendmail.el (send-mail-function): Customize.
9332
9333 2000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
9334
9335 * international/codepage.el (cp866-decode-table): New table.
9336
9337 2000-12-18 Gerd Moellmann <gerd@gnu.org>
9338
9339 * version.el (emacs-version): Remove `%a' from the time format
9340 because the weekday doesn't fit well into each locale.
9341
9342 2000-12-18 Miles Bader <miles@gnu.org>
9343
9344 * image-file.el (image-file-name-extensions): Add "pgm" and "ppm".
9345
9346 * textmodes/artist.el (artist-replace-chars, artist-replace-char):
9347 Check that emacs-major-version is `=' to 20, not `>='.
9348 (artist-replace-chars): Use `make-string' instead of a loop.
9349
9350 2000-12-17 Stefan Monnier <monnier@cs.yale.edu>
9351
9352 * pcvs.el (cvs-diff-backup-extractor): Return full-path for file.
9353 (cvs-execute-single-file): Don't change directory.
9354 Patch from Per Cederqvist.
9355
9356 2000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
9357
9358 * textmodes/ispell.el (check-ispell-version):
9359 If `ispell-program-name' is "aspell", pass it the -v switch instead
9360 of -vv.
9361
9362 2000-12-16 Kenichi Handa <handa@etl.go.jp>
9363
9364 * international/mule-diag.el (mule-diag): Insert information about
9365 configure options, multibyte awareness, language env.
9366
9367 * international/ja-dic-cnv.el (skkdic-get-candidate-list): Fix the
9368 regexp to search for candidates.
9369
9370 2000-12-15 Eli Zaretskii <eliz@is.elta.co.il>
9371
9372 * info.el (Info-forward-node): If the node has an
9373 Info-header-line, widen the buffer before searching for "next:"
9374 and "up:" pointers, and set the search limit to stay in the
9375 current node.
9376
9377 2000-12-16 Miles Bader <miles@gnu.org>
9378
9379 * simple.el (delete-trailing-whitespace): Remove extraneous let.
9380
9381 2000-12-15 Miles Bader <miles@gnu.org>
9382
9383 * comint.el (comint-send-string, comint-send-region): Also accept
9384 a buffer, buffer-name, or nil for PROCESS, for compatibility with
9385 process-send-string/region.
9386
9387 2000-12-15 Gerd Moellmann <gerd@gnu.org>
9388
9389 * isearch.el (isearch-lazy-highlight-max): New user-option.
9390 (isearch-lazy-highlight-update): Don't highlight more than
9391 isearch-lazy-highlight-max matches.
9392
9393 * mail/mh-utils.el (mh-find-path): Set read-mail-command.
9394
9395 2000-12-15 Richard M. Stallman <rms@gnu.org>
9396
9397 * sort.el (sort-columns): Fix error message.
9398
9399 * dabbrev.el (dabbrev--last-case-pattern): Value is now
9400 `upcase' or `downcase' or nil.
9401 (dabbrev-expand): Don't do anything with dabbrev--last-case-pattern.
9402 Pass new record-case-pattern arg to dabbrev--substitute-expansion.
9403 (dabbrev--substitute-expansion): New arg record-case-pattern.
9404 If it is non-nil, set dabbrev--last-case-pattern.
9405 If ABBREV is " ", use dabbrev--last-case-pattern to change EXPANSION.
9406
9407 * dabbrev.el (dabbrev--find-expansion): Remove extra nreverse.
9408
9409 2000-12-15 Miles Bader <miles@gnu.org>
9410
9411 * paths.el (Info-default-directory-list): Don't delete
9412 configure-info-directory from the list of standard info
9413 directories when appending it to the end -- their order is important.
9414
9415 * faces.el (read-face-attribute): If there's no entry for the
9416 user's input in VALID, just use it as-is (this will often result
9417 in an error, but it may be OK for e.g. colors using hexadecimal
9418 notation, and at least will yield a better error message).
9419
9420 * window.el (mode-line-window-height-fudge): Function removed.
9421 (height-affecting-face-attributes, mode-line-window-height-fudge):
9422 Variables removed.
9423 * textmodes/ispell.el (ispell-overlay-window): Ensure that the new
9424 window is really the right size. Use vertical-motion
9425 rather than forward-line.
9426 (ispell-help): Don't use ispell-mode-line-window-height-fudge.
9427 (ispell-command-loop, ispell-show-choices): Use the variable
9428 ispell-choices-win-default-height, rather than the function.
9429 (ispell-choices-win-default-height): Function removed.
9430 (ispell-mode-line-window-height-fudge): Function removed.
9431
9432 2000-12-14 Stefan Monnier <monnier@cs.yale.edu>
9433
9434 * add-log.el (add-change-log-entry): Only expand-file-name if non-nil.
9435
9436 2000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
9437
9438 * paths.el (Info-default-directory-list):
9439 If configure-info-directory is not one of the standard directories,
9440 put it first in the list; otherwise put it last. Doc string
9441 changed accordingly.
9442
9443 * info.el (Info-directory-list): Change doc string to reflect the
9444 change in Info-default-directory-list.
9445
9446 * simple.el (delete-key-deletes-forward-mode): Treat ms-dos and
9447 windows-nt as windowed environments, even under -nw.
9448
9449 * startup.el (command-line): Don't call x-backspace-delete-keys-p
9450 if not fboundp. Switch delete-forward mode for the <delete> key
9451 on all PC platforms, even under -nw.
9452
9453 * term/internal.el ([M-delete]): Remap to M-d.
9454
9455 2000-12-14 Gerd Moellmann <gerd@gnu.org>
9456
9457 * emacs-lisp/lisp-mnt.el: Change maintainer to FSF.
9458
9459 2000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
9460
9461 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
9462
9463 2000-12-14 Gerd Moellmann <gerd@gnu.org>
9464
9465 * startup.el (command-line): Call delete-key-deletes-forward-mode,
9466 if appropriate.
9467
9468 * simple.el (delete-key-deletes-forward): New user-option.
9469 (delete-key-deletes-forward-mode): New function.
9470
9471 * bindings.el: Bind `delete' to backward-delete-char.
9472
9473 * emacs-lisp/easymenu.el (easy-menu-current-active-maps):
9474 Test if symbol is bound before getting its value.
9475
9476 * tooltip.el (tooltip-show): If an error is signaled in
9477 x-show-tip, display that error, and display the help in the
9478 echo area.
9479
9480 2000-12-14 Kenichi Handa <handa@etl.go.jp>
9481
9482 * international/ja-dic-cnv.el (skkdic-set-okuri-nasi):
9483 Show "... entries" messages for every 10000 entries, not 10.
9484
9485 2000-12-13 Karl Fogel <kfogel@red-bean.com>
9486
9487 * bookmark.el: Provide a generic exit hook, as suggested by
9488 Ovidiu Predescu <ovidiu@cup.hp.com>:
9489 (bookmark-exit-hook): New var.
9490 (bookmark-exit-hook-internal): New func, replaces
9491 old raw lambda form in `kill-emacs-hook', and runs new
9492 `bookmark-exit-hooks'. No longer tests for the bookmark feature,
9493 as logically that feature must have been provided if this function
9494 is running.
9495 Removed ;;;###autoload before the `add-hook' call.
9496
9497 2000-12-13 Stefan Monnier <monnier@cs.yale.edu>
9498
9499 * emacs-lisp/easymenu.el (easy-menu-define): Setup indentation.
9500 (easy-menu-current-active-maps): New function.
9501 (easy-menu-get-map): Use it.
9502 Make a proper menu entry when creating a new keymap.
9503
9504 2000-12-13 Kenichi Handa <handa@etl.go.jp>
9505
9506 * international/characters.el: Fix cases and syntaxes for
9507 mule-unicode-0100-24ff.
9508
9509 * dired.el (dired-move-to-filename-regexp): Fixed for the case
9510 that a Japanese character is not appended after day and year.
9511
9512 * info.el (Info-suffix-list): Change format for a command that
9513 requires arguments.
9514 (info-insert-file-contents): Adjusted for the above change.
9515
9516 2000-12-12 Andreas Schwab <schwab@suse.de>
9517
9518 * tar-mode.el (tar-extract): Base the name of the subfile buffer
9519 on the name of the tar buffer. Verify that the existing buffer is
9520 visiting the same subfile.
9521
9522 2000-12-12 Dave Love <fx@gnu.org>
9523
9524 * subdirs.el: Add obsolete.
9525
9526 2000-12-12 Gerd Moellmann <gerd@gnu.org>
9527
9528 * mail/rmailsum.el (rmail-summary-expunge)
9529 (rmail-summary-expunge-and-save): Use rmail-expunge-confirmed
9530 instead of rmail-confirm-expunge.
9531
9532 * replace.el (perform-replace): Don't use an empty match adjacent
9533 to a non-empty match when computing the next match before the
9534 replacement is performed.
9535
9536 2000-12-12 Milan Zamazal <pdm@freesoft.cz>
9537
9538 * progmodes/glasses.el: Use `define-minor-mode' for the minor mode
9539 definition (patch by Stefan Monnier).
9540 (glasses-mode): Use jit-lock instead of `after-change-functions'
9541 (patch by Stefan Monnier).
9542
9543 2000-12-12 Miles Bader <miles@gnu.org>
9544
9545 * info.el (Info-last-preorder): Don't barf on nodes without a prev.
9546 (Info-scroll-down): Respect `Info-scroll-prefer-subnodes'.
9547
9548 2000-12-12 Andrew Choi <akochoi@i-cable.com>
9549
9550 * term/mac-win.el: Remove load for ls-lisp.
9551
9552 * loadup.el: Load ls-lisp for system-type `macos'.
9553
9554 2000-12-12 Miles Bader <miles@gnu.org>
9555
9556 * simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter.
9557 Respect field end too.
9558 (just-one-space): Respect fields as `delete-horizontal-space'.
9559 (newline-and-indent, reindent-then-newline-and-indent):
9560 Use `delete-horizontal-space'.
9561
9562 2000-12-11 Stefan Monnier <monnier@cs.yale.edu>
9563
9564 * newcomment.el (comment-indent-new-line): Use delete-horizontal-space
9565 (so as to obey the field property in the minibuffer).
9566
9567 * obsolete/c-mode.el: Moved from lisp/progmodes.
9568 * obsolete/auto-show.el: Moved from lisp.
9569 * obsolete/ooutline.el: Moved from lisp/textmodes.
9570
9571 2000-12-11 Carsten Dominik <dominik@strw.leidenuniv.nl>
9572
9573 * progmodes/idlwave.el: Updated to IDLWAVE version 4.7. Too many
9574 changes to list them here.
9575
9576 * progmodes/idlw-shell.el: Updated to IDLWAVE version 4.7.
9577 Too many changes to list them here.
9578
9579 * progmodes/idlw-rinfo.el: Updated to IDLWAVE version 4.7.
9580 Too many changes to list them here.
9581
9582 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version 4.7.
9583
9584 2000-12-11 Gerd Moellmann <gerd@gnu.org>
9585
9586 * simple.el (kill-new): Don't try to setcar kill-ring if it is nil.
9587
9588 * cus-edit.el (custom-save-variables, custom-save-faces):
9589 Comment fix.
9590
9591 * hscroll.el: Moved to `obsolete' subdir.
9592
9593 2000-12-11 Miles Bader <miles@gnu.org>
9594
9595 * window.el (window-text-height): Function removed (now in C).
9596
9597 2000-12-10 Stefan Monnier <monnier@cs.yale.edu>
9598
9599 * log-edit.el (log-edit-parent-buffer): New var.
9600 (log-edit): Set it. Add BUFFER argument.
9601 (log-edit-done): Use char-before.
9602 Don't bother checking validity of vc-comment-ring.
9603 Only bury the buffer if log-edit popped it up.
9604
9605 * pcvs.el: Update references to CVS-Edit (now Log-Edit).
9606 (cvs-mode-diff-help): Remove.
9607 (cvs-mode-commit): Use the new `log-edit' BUFFER argument.
9608 (cvs-mode-marked): Set up the default for CMD manually.
9609
9610 * pcvs-defs.el (cvs-mode-diff-map): Use minibuffer menu prompt.
9611 Remove binding for ? now made unnecessary.
9612
9613 2000-12-10 Carsten Dominik <dominik@strw.leidenuniv.nl>
9614
9615 * textmodes/reftex.el (reftex-scanning-info-available-p): New function.
9616 (reftex-TeX-master-file): Check for `tex-main-file' early enough.
9617
9618 * textmodes/reftex-global.el (reftex-create-tags-file): Fixed bug
9619 when master file is not open.
9620
9621 2000-12-09 Stefan Monnier <monnier@cs.yale.edu>
9622
9623 * progmodes/ada-stmt.el: Update `maintainer'.
9624
9625 2000-12-09 Stephen Gildea <gildea@stop.mail-abuse.org>
9626
9627 * time-stamp.el (time-stamp-old-format-warn): Reorder custom
9628 choices to match documentation string.
9629
9630 2000-12-09 Miles Bader <miles@gnu.org>
9631
9632 * minibuf-eldef.el: New file.
9633
9634 * window.el (fit-window-to-buffer): Don't pass last argument to
9635 pos-visible-in-window-p, now that its meaning is inverted.
9636
9637 2000-12-08 Eli Zaretskii <eliz@is.elta.co.il>
9638
9639 * image.el (create-image): Doc fix; spotted by Per Cederqvist
9640 <ceder@lysator.liu.se>.
9641
9642 2000-12-08 Stefan Monnier <monnier@cs.yale.edu>
9643
9644 * autoinsert.el (auto-insert-alist): Add missing final \n.
9645
9646 * pcvs-defs.el (cvs-menu): Move. Make submenu for diff commands.
9647 (cvs-menu-map): Remove.
9648 * pcvs.el (cvs-menu): Use `cvs-menu' rather than `cvs-menu-map'.
9649 (cvs-mode-quit): Turn it back into a plain function.
9650
9651 * textmodes/texnfo-upd.el (texinfo-chapter-level-regexp)
9652 (texinfo-filter): Remove (move to texinfo.el).
9653
9654 * textmodes/texinfo.el: Move the (require 'cl) to the front of the
9655 file where it's more visible.
9656 (texinfo-filter, texinfo-chapter-level-regexp): New variables
9657 moved from texnfo-upd.el (for AUCTeX's compatibility, originally).
9658 (texinfo-mode): Use texinfo-chapter-level-regexp for page-delimiter.
9659 (texinfo-inside-macro-p): Only catch `scan-error's.
9660 (texinfo-inside-env-p): Make better use of the match info.
9661 (texinfo-insert-quote): Collapse calls to `texinfo-inside-macro-p'.
9662 (texinfo-insert-@end): Slight re-organization.
9663 Also remove useless `looking-at' call.
9664
9665 2000-12-08 Andrew Innes <andrewi@gnu.org>
9666
9667 * w32-fns.el: Add clipboard support from term/w32-win.el, so it is
9668 accessible in -nw mode.
9669
9670 * term/w32-win.el: Remove stuff about selection timeout, which is
9671 irrelevant on Windows. Move clipboard support to w32-fns.el, so
9672 it is accessible in -nw mode.
9673
9674 2000-12-08 Dave Love <fx@gnu.org>
9675
9676 * emacs-lisp/lisp-mode.el (lisp-mode):
9677 Set font-lock-keywords-case-fold-search.
9678
9679 2000-12-08 Gerd Moellmann <gerd@gnu.org>
9680
9681 * textmodes/ispell.el (ispell): Doc fix.
9682
9683 2000-12-08 Kenichi Handa <handa@etl.go.jp>
9684
9685 * international/quail.el (quail-insert-decode-map): Check the
9686 frame width of a window displaying the current buffer, not that of
9687 the selected frame.
9688 (quail-help): Make sure that the help buffer has window before
9689 inserting text in it.
9690
9691 2000-12-07 Sam Steingold <sds@gnu.org>
9692
9693 * loadup.el: Load emacs-lisp/backquote instead of autoloading.
9694 Backquote is used in isearch.el, so autoloading saves nothing.
9695
9696 2000-12-07 Eli Zaretskii <eliz@is.elta.co.il>
9697
9698 * startup.el (normal-top-level-add-subdirs-to-load-path):
9699 Ignore the CVS and RCS subdirectories case-insensitively.
9700
9701 * dired.el (dired-insert-directory): If file-system-info is
9702 fboundp, call it instead of invoking dired-free-space-program.
9703
9704 2000-12-07 Gerd Moellmann <gerd@gnu.org>
9705
9706 * server.el (server-visit-files): Push files on file-name-history.
9707
9708 * progmodes/cc-langs.el: Update copyright.
9709
9710 * progmodes/idlw-shell.el, progmodes/idlwave.el: Update copyright.
9711
9712 * bindings.el (mode-line-mode-menu): Add glasses-mode.
9713
9714 * bindings.el (mode-line-mode-menu): Reverse the order
9715 of define-keys so that the menu appears in alphabetical order.
9716
9717 2000-12-07 Milan Zamazal <pdm@freesoft.cz>
9718
9719 * progmodes/glasses.el (glasses-mode): Update mode line at the end
9720 of the function.
9721
9722 2000-12-07 Dave Love <fx@gnu.org>
9723
9724 * jka-compr.el (jka-compr-compression-info-list): Fix :type.
9725
9726 * facemenu.el (facemenu-unlisted-faces): Fix value.
9727
9728 2000-12-07 Stefan Monnier <monnier@cs.yale.edu>
9729
9730 * font-lock.el (font-lock-default-fontify-region):
9731 Include the terminating \n (off-by-one error).
9732 (font-lock-set-defaults): Use dolist.
9733
9734 * derived.el (define-derived-mode): Don't use combine-run-hooks.
9735
9736 2000-12-07 Kenichi Handa <handa@etl.go.jp>
9737
9738 * international/mule-cmds.el (describe-language-environment):
9739 Fix for the case that an input method title is not string but a list.
9740
9741 * ps-bdf.el (bdf-read-font-info): Modify the kludgy code for fonts
9742 of wrong SIZE record.
9743
9744 2000-12-06 Dave Love <fx@gnu.org>
9745
9746 * newcomment.el (comment-region, comment-dwim): Doc fix.
9747
9748 * textmodes/texinfo.el: Require tex-mode when compiling.
9749 (texinfo-update-node): Doc fix.
9750 (texinfo-imenu-generic-expression): Add @anchor.
9751 (texinfo-font-lock-keywords): Add @uref.
9752 (texinfo-inside-macro-p): Don't use ignore-errors.
9753 (texinfo-insert-quote): Match more contexts.
9754
9755 * international/mule.el (decode-char, encode-char): Doc fix.
9756 (auto-coding-alist): Customize.
9757
9758 * files.el (load-file): Fix change of 2000-03-12.
9759
9760 * wid-edit.el (widget-text-keymap): Doc fix.
9761
9762 2000-12-06 Andrew Innes <andrewi@gnu.org>
9763
9764 * makefile.w32-in (lisp): Set to an absolute directory, namely
9765 $(CURDIR).
9766
9767 2000-12-06 Eli Zaretskii <eliz@is.elta.co.il>
9768
9769 * emacs-lisp/autoload.el (update-file-autoloads): Use raw-text to
9770 read generated-autoload-file, and set buffer-file-coding-system to
9771 raw-text-unix after reading the file.
9772
9773 * international/mule-conf.el (file-coding-system-alist):
9774 Use raw-text for reading loaddefs.el and raw-text-unix for writing it.
9775
9776 2000-12-06 Gerd Moellmann <gerd@gnu.org>
9777
9778 * replace.el (occur): Make line-number-width 1 smaller for the
9779 colon following the line number.
9780
9781 * startup.el (fancy-splash-text, command-line-1):
9782 Use `File' for the menu name instead of `Files'.
9783
9784 * tmm.el: Update copyright.
9785
9786 * cus-start.el: Add entry for even-window-heights.
9787
9788 2000-12-06 Miles Bader <miles@gnu.org>
9789
9790 * faces.el (frame-set-background-mode): Avoid stomping on
9791 locally modified faces.
9792
9793 2000-12-06 Kenichi Handa <handa@etl.go.jp>
9794
9795 * international/fontset.el: Correct the font registries for
9796 japanese-jisx0213-1 and japanese-jisx0213-2.
9797
9798 2000-12-05 Gerd Moellmann <gerd@gnu.org>
9799
9800 * textmodes/reftex-toc.el (reftex-toc-menu): Fix typo.
9801
9802 * iswitchb.el: Update customization commentary.
9803
9804 2000-12-05 Rob Riepel <riepel@Stanford.EDU>
9805
9806 * emulation/tpu-edt.el (tpu-help): Fixed previous screen logic.
9807 (tpu-search-highlight): Fixed comparison of overlay end positions.
9808 (tpu-trim-line-ends): Implemented trimming logic locally.
9809
9810 * emulation/tpu-extras.el (tpu-write-file-hook)
9811 (tpu-set-cursor-bound): Replaced picture-clean with tpu-trim-line-ends.
9812
9813 2000-12-05 Kenichi Handa <handa@etl.go.jp>
9814
9815 * language/chinese.el (chinese-iso-8bit): Change mime-charset name
9816 to cn-gb.
9817 (cn-gb, gb2312): New aliases for chinese-iso-8bit.
9818
9819 2000-12-04 Dave Love <fx@gnu.org>
9820
9821 * emacs-lisp/cl-indent.el: Remove erroneous spec for condition-case.
9822
9823 2000-12-04 Gerd Moellmann <gerd@gnu.org>
9824
9825 * mail/rmailsum.el (rmail-summary-expunge)
9826 (rmail-summary-expunge-and-save): Ask for confirmation with
9827 rmail-expunge-confirmed.
9828
9829 * mail/rmail.el (rmail-expunge-confirmed): New function.
9830 (rmail-expunge): Use it.
9831
9832 2000-12-04 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be>
9833
9834 * progmodes/etags.el (tag-partial-file-name-match-p): New function.
9835 (etags-recognize-tags-table, find-tag-in-order):
9836 New functionality: interpret file names as tags.
9837
9838 2000-12-04 Eli Zaretskii <eliz@is.elta.co.il>
9839
9840 * info.el (Info-scroll-prefer-subnodes): New defcustom.
9841 (Info-scroll-up): If Info-scroll-prefer-subnodes is nil, don't visit
9842 the first subnode until the bottom of the current node is visible.
9843
9844 2000-12-04 Gerd Moellmann <gerd@gnu.org>
9845
9846 * format.el (format-decode): Don't change buffer's undo list.
9847
9848 2000-12-04 Kenichi Handa <handa@etl.go.jp>
9849
9850 * faces.el (face-font-registry-alternatives): Add entries for CJK
9851 fonts. Doc-string adjusted for the actual usage of this data.
9852
9853 * international/fontset.el: Change the font registries for CJK
9854 fonts in the default fontset. Don't append '*' to registries.
9855
9856 2000-12-03 Stefan Monnier <monnier@cs.yale.edu>
9857
9858 * emacs-lisp/easy-mmode.el (define-derived-mode)
9859 (easy-mmode-derived-mode-p): Remove (moved to derived.el).
9860
9861 * derived.el (define-derived-mode): Revived, moved from easy-mmode.el.
9862 (derived-mode-p): New function.
9863 (derived-mode-make-docstring): Add `docstring' argument.
9864 Use it if available and complete it if necessary.
9865
9866 2000-12-03 Andreas Schwab <schwab@suse.de>
9867
9868 * type-break.el (type-break): Don't make parent of itself.
9869
9870 2000-12-03 Miles Bader <miles@gnu.org>
9871
9872 * simple.el (delete-trailing-whitespace): Don't delete newlines too.
9873
9874 2000-12-02 Stefan Monnier <monnier@cs.yale.edu>
9875
9876 * textmodes/tex-mode.el (tex-start-shell): Obey shell-file-name.
9877 (tex-main-file, tex-file): Simplify.
9878 (tex-generate-zap-file-name): Use subst-char-in-string.
9879 (tex-strip-dots): Remove.
9880
9881 * tmm.el (tmm-get-keymap): Eval the menu name in `menu-item'.
9882
9883 * textmodes/ispell.el (check-ispell-version): Don't use match-beginning
9884 to check if the match succeeded.
9885
9886 2000-12-02 Gerd Moellmann <gerd@gnu.org>
9887
9888 * startup.el (use-fancy-splash-screens-p): New function.
9889 (command-line-1): Use it to determine whether or not to use
9890 a fancy splash screen.
9891
9892 2000-12-02 Andreas Schwab <schwab@suse.de>
9893
9894 * emacs-lisp/eldoc.el (eldoc): Don't make parent of itself.
9895
9896 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
9897
9898 * international/mule.el (make-char): Fix last change.
9899
9900 * textmode/texinfo.el (texinfo-open-quote, texinfo-close-quote):
9901 New defcustoms.
9902 (texinfo-insert-quote): Don't call tex-insert-quote, to avoid
9903 autoloading tex-mode; instead, do the same manually.
9904 Use texinfo-open-quote and texinfo-close-quote. Insert literal quote
9905 with numeric argument. Docstring fix.
9906 (toplevel): Require cl when compiling.
9907
9908 * international/mule.el (make-char): Doc fix.
9909
9910 2000-12-02 Jason Rumney <jasonr@gnu.org>
9911
9912 * term/w32-win.el (x-select-enable-clipboard): Customize (as per
9913 the Emacs Lisp manual)
9914
9915 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
9916
9917 * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
9918
9919 * term/pc-win.el (x-select-enable-clipboard): Customize (as per
9920 the Emacs Lisp manual).
9921
9922 2000-12-02 Gerd Moellmann <gerd@gnu.org>
9923
9924 * simple.el (next-line-add-newlines): Change default to nil.
9925
9926 2000-12-01 Eli Zaretskii <eliz@is.elta.co.il>
9927
9928 * files.el (revert-buffer, recover-file):
9929 Bind coding-system-for-read to emacs-mule-unix, not to no-conversion.
9930
9931 2000-12-01 Gerd Moellmann <gerd@gnu.org>
9932
9933 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
9934
9935 2000-12-01 Miles Bader <miles@gnu.org>
9936
9937 * window.el (fit-window-to-buffer): Handle non-nil `truncate-lines'.
9938
9939 2000-12-01 Kenichi Handa <handa@etl.go.jp>
9940
9941 * international/mule-diag.el (describe-char-after): Fix typo.
9942 (describe-character-set, non-iso-charset-alist): Fix typo.
9943
9944 2000-12-01 Miles Bader <miles@gnu.org>
9945
9946 * image-file.el (image-file-name-regexp): Automatically add
9947 upper-case variants of each filename extension in
9948 `image-file-name-extensions', since they seem to be common.
9949
9950 * simple.el (minibuffer-contents)
9951 (minibuffer-contents-no-properties, delete-minibuffer-contents):
9952 New functions.
9953 * filecache.el (file-cache-directory-name)
9954 (file-cache-minibuffer-complete): Ignore the minibuffer prompt.
9955
9956 2000-12-01 Milan Zamazal <Milan.Zamazal@qbizm.com>
9957
9958 * filecache.el (file-cache-minibuffer-complete): Don't try to
9959 delete the minibuffer prompt.
9960
9961 2000-11-30 Dave Love <fx@gnu.org>
9962
9963 * cus-start.el: Fix read-buffer-function type.
9964
9965 2000-11-30 Gerd Moellmann <gerd@gnu.org>
9966
9967 * md5.el: Removed. There's a built-in function, now.
9968
9969 2000-11-30 Markus Rost <rost@math.ohio-state.edu>
9970
9971 * mail/rmail.el (rmail-set-message-counters): Don't use "D"
9972 as dummy 0-th char of rmail-deleted-vector.
9973
9974 2000-11-30 Eli Zaretskii <eliz@is.elta.co.il>
9975
9976 * ps-print.el (ps-end-job): Bind case-fold-search only after
9977 switching to ps-spool-buffer.
9978
9979 2000-11-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9980
9981 * ps-print.el: Line number font customization. PostScript: Lines and
9982 PageCount are initialized on each page. Doc Fix.
9983 (ps-print-version): New version number (6.3.2).
9984 (ps-lpr-switches, ps-font-info-database, ps-font-size)
9985 (ps-header-font-size, ps-header-title-font-size, ps-left-header)
9986 (ps-right-header): Customization fix.
9987 (ps-setup, ps-select-font, ps-begin-file, ps-header-sheet, ps-end-job):
9988 Fix code.
9989 (ps-end-with-control-d, ps-line-number-font, ps-line-number-font-size):
9990 New vars.
9991
9992 2000-11-30 Gerd Moellmann <gerd@gnu.org>
9993
9994 * bs.el: Fix typos and spelling errors.
9995 (bs-appearance) <defgroup>: Renamed from bs-appearence.
9996 (bs-configuration): Doc fix.
9997
9998 * bs.el: Undo mistaken change of 2000-11-28. Update copyright.
9999
10000 2000-11-30 Rob Riepel <riepel@Stanford.EDU>
10001
10002 * emulation/tpu-edt.el (tpu-version): New version.
10003 (tpu-search-overlay, tpu-replace-overlay): New initial range.
10004 (tpu-original-mode-line): Variable deleted.
10005 (tpu-mark-flag): New initial value.
10006 (tpu-set-mode-line): Don't redefine mode-line-format.
10007 Add tpu-mark-flag to minor-mode-alist.
10008 (tpu-update-mode-line): New mark flag logic.
10009 (tpu-get): Use find-file-wildcards.
10010 (tpu-search-highlight): Move overlay less, reset overlay properly.
10011 (tpu-unselect): Deactivate mark.
10012 (tpu-lm-replace): Reset overlay properly.
10013 (tpu-forward-line): Use forward-visible-line.
10014 (tpu-edt-on): Set transient mark mode. ispell autoloads deleted.
10015
10016 * emulation/tpu-extras.el (tpu-forward-line): Use forward-visible-line.
10017
10018 2000-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
10019
10020 * cus-edit.el (custom-face-value-create): Always emphasize tag.
10021
10022 2000-11-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10023
10024 * calendar/diary-lib.el (diary-entry-time): Anchor pattern correctly
10025 and skip whitespace and newlines.
10026
10027 2000-11-30 Stefan Monnier <monnier@cs.yale.edu>
10028
10029 * emacs-lisp/cl.el (third...tenth): Really undo change of 2000-08-05.
10030
10031 2000-11-29 Gerd Moellmann <gerd@gnu.org>
10032
10033 * help.el (describe-function-1): Regexp-quote function name
10034 when used as part of a regexp.
10035
10036 * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
10037 Use face-attribute instead of face-foreground and face-background.
10038 (tool-bar-add-item): Likewise, and handle unspecified colors.
10039
10040 * enriched.el (enriched-face-ans): Use face-attribute instead
10041 of face-foreground and face-background.
10042
10043 * faces.el (face-foreground, face-background, face-stipple):
10044 Return nil if attribute is unspecified, for backward compatibility.
10045
10046 * files.el (auto-mode-alist): Add an entry for antlr-mode.
10047
10048 * play/5x5.el: Remove version info.
10049
10050 * toolbar/tool-bar.el (tool-bar-mode): Doc fix.
10051
10052 * frame.el (blink-cursor-mode): Doc fix.
10053
10054 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
10055
10056 * antlr-mode.el: New commands to run ANTLR from within Emacs and
10057 to create Makefile rules.
10058 (antlr-tool-command): New user option.
10059 (antlr-ask-about-save): New user option.
10060 (antlr-makefile-specification): New user option.
10061 (antlr-file-formats-alist): New variable.
10062 (antlr-special-file-formats): New variable.
10063 (antlr-unknown-file-formats): New user option.
10064 (antlr-help-unknown-file-text): New variable.
10065 (antlr-help-rules-intro): New variable.
10066 (antlr-mode-map): Add [C-c C-r] for `antlr-run-tool'.
10067 (antlr-mode-menu): Add entries.
10068 (antlr-file-dependencies): New function.
10069 (antlr-directory-dependencies): New function.
10070 (antlr-superclasses-glibs): New function.
10071 (antlr-run-tool): New command.
10072 (antlr-makefile-insert-variable): New function.
10073 (antlr-insert-makefile-rules): New function.
10074 (antlr-show-makefile-rules): New command.
10075
10076 * antlr-mode.el: More Emacs/XEmacs stuff.
10077 (antlr-no-action-keywords): New constant with value nil.
10078 (antlr-font-lock-keywords-alist): Use it. Old value would break
10079 syntax highlighting in Emacs-21.0.
10080 (antlr-default-directory): Emacs/XEmacs dependend function.
10081 (antlr-read-shell-command): Ditto.
10082 (antlr-with-displaying-help-buffer): Ditto.
10083
10084 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
10085
10086 * antlr-mode.el: imenu, parsing and highlighting changes.
10087 (antlr-imenu-create-index-function): Don't create extra submenus
10088 for definitions in different grammar classes. It is not necessary
10089 for the menu and would make command `imenu' awkward to use.
10090 (antlr-skip-file-prelude): With ANTLR-2.7+, you can specify named
10091 header actions and more than one.
10092 (antlr-font-lock-tokendef-face): Changed color.
10093 (antlr-font-lock-tokenref-face): Changed color.
10094 (antlr-font-lock-additional-keywords): Also highlight lowercase.
10095 (antlr-mode-syntax-table): New variable.
10096 (antlr-mode): Populate and use it instead `java-mode-syntax-table'.
10097 (antlr-with-syntax-table): Don't copy syntax table.
10098
10099 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
10100
10101 * antlr-mode.el: Minor changes: language setting.
10102 (antlr-language-alist): The value for file option "language" can
10103 be both an identifier and a string.
10104 Reported by Rajesh Radhakrishnan <radhakrs@email.uc.edu>.
10105 (antlr-language-limit-n-regexp): Change accordingly.
10106
10107 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
10108
10109 * antlr-mode.el: Minor changes: tabs, hiding.
10110 (antlr-tab-offset-alist): Set `indent-tabs-mode' to nil instead t.
10111 (antlr-action-visibility): Also allow value nil to also hide the
10112 braces. Renamed from `antlr-tiny-action-length'.
10113 Suggested by Jay@aol.com.
10114 (antlr-hide-actions): Change accordingly. Hide line if completely
10115 hidden action is on a line of its own.
10116
10117 2000-11-29 Stefan Monnier <monnier@cs.yale.edu>
10118
10119 * subr.el (combine-run-hooks): Only run-hooks if there's a hook to run.
10120
10121 * sort.el (sort-columns): Don't concat strings with numbers.
10122
10123 2000-11-29 Dave Love <fx@gnu.org>
10124
10125 * cus-edit.el (face): Fix :format.
10126
10127 * mail/feedmail.el: Require smtpmail when compiling.
10128 (mail-do-fcc): Autoload.
10129 (feedmail) <defgroup>: Fix :link.
10130 (feedmail-nuke-body-in-fcc): Fix :type.
10131 (feedmail-send-it): Add autoload cookie.
10132
10133 2000-11-29 Stefan Monnier <monnier@cs.yale.edu>
10134
10135 * newcomment.el (comment-indent): Save excursion around call to
10136 comment-indent-function.
10137
10138 2000-11-29 Miles Bader <miles@gnu.org>
10139
10140 * subr.el (member-ignore-case): Return the tail of the list who's
10141 car matches, like `member', not the matching element itself.
10142
10143 2000-11-29 Kenichi Handa <handa@etl.go.jp>
10144
10145 * xml.el (xml-parse-tag): Fix finding opening tag. A tag name
10146 should not contain `\n'.
10147
10148 2000-11-28 Gerd Moellmann <gerd@gnu.org>
10149
10150 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
10151
10152 * hscroll.el: Add hints to `automatic-hscrolling' to doc strings.
10153
10154 * dired-aux.el (dired-do-create-files): Construct default file
10155 name for dired-mark-read-file-name so that when the user enters
10156 just RET, the target file will end up in the target directory.
10157
10158 * abbrev.el (prepare-abbrev-list-buffer): Get the value of
10159 local-abbrev-table before changing buffers because it might
10160 have a buffer-local binding.
10161
10162 2000-11-28 Miles Bader <miles@gnu.org>
10163
10164 * simple.el (delete-horizontal-space): Handle fields more generally.
10165
10166 2000-11-28 Gerd Moellmann <gerd@gnu.org>
10167
10168 * simple.el (delete-horizontal-space): Handle minibuffer prompt.
10169
10170 2000-11-28 Dave Love <fx@gnu.org>
10171
10172 * progmodes/ps-mode.el (ps-mode): Set comment-start and
10173 comment-start-skip locally.
10174
10175 * progmodes/fortran.el (fortran-mode): Don't set
10176 fortran-comment-line-start-skip. Set comment-start to
10177 fortran-comment-line-start.
10178 (fortran-fill-paragraph) <non-empty-comment>: Remove regexp group.
10179 (fortran-comment-line-start-skip): Simplify slightly.
10180
10181 2000-11-28 Gerd Moellmann <gerd@gnu.org>
10182
10183 * play/5x5.el: Remove RCS keyword.
10184
10185 * bs.el: Mistaken commit, undone 2000-11-30.
10186
10187 2000-11-28 Milan Zamazal <pdm@freesoft.cz>
10188
10189 * textmodes/tildify.el (tildify-string-alist):
10190 Add `plain-tex-mode' here.
10191
10192 2000-11-28 Colin Walters <walters@cis.ohio-state.edu>
10193
10194 * chistory.el (Command-history-setup): Remove extraneous `keymap'
10195 reference.
10196
10197 2000-11-28 Miles Bader <miles@gnu.org>
10198
10199 * cus-face.el (custom-face-attributes): Add post-filter function
10200 for :box. Make pre-filter function for :box handle all cases.
10201
10202 * wid-edit.el (widget-choose): Make sure pop-up window is large
10203 enough to display all the choices, as there's no way to scroll it.
10204
10205 2000-11-28 Kenichi Handa <handa@etl.go.jp>
10206
10207 * international/mule-conf.el: Make the coding system no-conversion
10208 safe for all characters.
10209
10210 2000-11-27 Dave Love <fx@gnu.org>
10211
10212 * net/ldap.el (ldap) <defgroup>: Add :version.
10213
10214 * tooltip.el (tooltip-use-echo-area): Doc fix.
10215
10216 * cus-start.el <minibuffer-prompt-properties>: Add version.
10217 <read-buffer-function>: Add.
10218
10219 * apropos.el (apropos-print): Add help-echo to active text.
10220
10221 * term/x-win.el (x-select-enable-clipboard): Customize (per lispref).
10222
10223 2000-11-27 Gerd Moellmann <gerd@gnu.org>
10224
10225 * mail/rmail.el (rmail-automatic-folder-directives): Add a custom
10226 type, group and version.
10227
10228 2000-11-27 Eli Zaretskii <eliz@is.elta.co.il>
10229
10230 * select.el (x-get-selection): Docstring fix.
10231
10232 2000-11-27 Dave Pearson <davep@hagbard.demon.co.uk>
10233
10234 * play/5x5.el (5x5-play-solution): Bind hinhibit-quit to t.
10235
10236 2000-11-27 Andrew Innes <andrewi@gnu.org>
10237
10238 * makefile.nt (.SUFFIXES): Add .SUFFIXES.
10239
10240 * makefile.w32-in (.SUFFIXES): Add .SUFFIXES.
10241
10242 2000-11-27 Miles Bader <miles@gnu.org>
10243
10244 * dired.el (dired-get-filename): Return filename verbatim if
10245 LOCALP is `verbatim'.
10246 * dired-aux.el (dired-add-entry): Call `dired-get-filename' with
10247 `verbatim' so that we don't inadvertently delete a non-existant
10248 directory name.
10249
10250 2000-11-27 Kenichi Handa <handa@etl.go.jp>
10251
10252 * international/characters.el: Specify cases and syntaxes for
10253 mule-unicode-0100-24ff.
10254
10255 2000-11-27 Gerd Moellmann <gerd@gnu.org>
10256
10257 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Handle case
10258 that foreground and/or background colors of the face `tool-bar'
10259 are unspecified.
10260
10261 2000-11-27 Miles Bader <miles@gnu.org>
10262
10263 * wid-edit.el (widget-field-buffer, widget-field-start)
10264 (widget-field-end): Handle widget field `pseudo-overlays'.
10265 (widget-field-value-delete): Delete WIDGET from `widget-field-new'
10266 if it's there instead of in `widget-field-list'.
10267
10268 * help.el (help-manyarg-func-alist): Correct entry for `vconcat'.
10269 (help-make-xrefs): Delete extraneous newlines at the end of the
10270 docstring.
10271
10272 2000-11-25 Jason Rumney <jasonr@gnu.org>
10273
10274 * startup.el (command-line): Call set-locale-environment after
10275 Window System init file is read, as it can result in a call to
10276 redraw-frame.
10277
10278 2000-11-25 Eli Zaretskii <eliz@is.elta.co.il>
10279
10280 * simple.el (shell-command): Mention the effect of the prefix
10281 argument in the doc string.
10282
10283 2000-11-25 Miles Bader <miles@gnu.org>
10284
10285 * cus-face.el (custom-face-attributes): Add "None" choice to :stipple.
10286
10287 * wid-edit.el (widget-field-value-delete): Don't try to delete
10288 overlay when it's the `pseudo-overlay' that exists at some points.
10289
10290 2000-11-24 Jason Rumney <jasonr@gnu.org>
10291
10292 * international/mule-cmds.el (locale-language-names): Add "jp" as
10293 a non-standard alternative for Japanese.
10294
10295 2000-11-24 Andre Spiegel <spiegel@gnu.org>
10296
10297 * vc-hooks.el: Require 'cl during compilation.
10298
10299 2000-11-24 Gerd Moellmann <gerd@gnu.org>
10300
10301 * faces.el (face-set-after-frame-default): Let face attributes
10302 specified for new frames override frame parameters.
10303
10304 * startup.el (command-line): Fix computation of the source file
10305 for user-init-file when user-init-file is a compiled file.
10306
10307 2000-11-24 Miles Bader <miles@gnu.org>
10308
10309 * cus-edit.el (custom-filter-face-spec, custom-pre-filter-face-spec)
10310 (custom-post-filter-face-spec): New functions.
10311 (custom-face-set, custom-face-value-create): Filter the face spec
10312 before and after customization.
10313 (custom-face-set): If VALUE specifies a null face, pass a
10314 non-null-but-otherwise-ignored face-spec instead to `face-spec-set'.
10315 * cus-face.el (custom-face-attributes): Remove SET and GET
10316 functions. Add some IN-FILTER and OUT-FILTER functions in the few
10317 cases they're needed.
10318
10319 * wid-edit.el (checkbox): Add a small `X' to the the :on-glyph, so
10320 that it's distinguishable from the :off-glyph on dark-background
10321 displays. Set its background color too.
10322
10323 * cus-start.el (all): Restore entry for `mode-line-inverse-video',
10324 so that people can easily turn it off.
10325
10326 2000-11-24 Michael Kifer <kifer@cs.sunysb.edu>
10327
10328 * ediff-diff.el: Moved variables around to have it compile under NT.
10329
10330 * ediff-help.el (ediff-use-long-help-message): Made it customizable.
10331
10332 * ediff-init.el (ediff-abbrev-jobname): Use capitalize.
10333
10334 * ediff-wind.el (ediff-skip-unsuitable-frames): Deleted the
10335 redundant skip-small-frames test.
10336
10337 * viper-cmd.el (viper-change-state-to-vi): Disable overwrite mode.
10338 (viper-downgrade-to-insert): Protect against errors in hooks.
10339
10340 * viper-init.el (viper-vi-state-hook,viper-insert-state-hook)
10341 (viper-replace-state-hook,viper-emacs-state-hook): Do cursor handling.
10342 (viper-restore-cursor-type,viper-set-insert-cursor-type):
10343 New functions.
10344
10345 * viper-util.el (viper-memq-char): Bug fixes.
10346
10347 * viper.el (viper-mode): Fix cursor handling.
10348
10349 2000-11-24 Kenichi Handa <handa@etl.go.jp>
10350
10351 * international/mule-diag.el (list-iso-charset-chars):
10352 For two-byte charset, fix the `while' condition.
10353 (list-non-iso-charset-chars): Fix the `while' condition.
10354
10355 2000-11-23 Stefan Monnier <monnier@cs.yale.edu>
10356
10357 * subr.el (add-hook, remove-hook): Don't call make-local-hook
10358 if the variable is make-variable-buffer-local.
10359
10360 * progmodes/ada-stmt.el (ada-template-map):
10361 Initialize and bind it to C-c t in ada-mode-map.
10362 (ada-stmt-mode-hook): New function extracted from old code.
10363 Only change the buffer-local side of skeleton-*.
10364 (ada-mode-hook): Use it.
10365
10366 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
10367
10368 * iswitchb.el (iswitchb-minibuf-depth): New variable.
10369 (iswitchb-read-buffer): Record in iswitchb-minibuf-depth the value
10370 we expect to be returned by minibuffer-depth once we prompt the
10371 user in the minibuffer.
10372 (iswitchb-entryfn-p): If minibuffer-depth returns the same value
10373 as recorded in iswitchb-minibuf-depth, return non-nil.
10374
10375 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
10376
10377 * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode)
10378 (hscroll-window-maybe): Docstring fix.
10379
10380 2000-11-23 Dave Love <fx@gnu.org>
10381
10382 * rect.el (string-rectangle): Don't test delete-selection-mode.
10383
10384 2000-11-23 Gerd Moellmann <gerd@gnu.org>
10385
10386 * avoid.el (mouse-avoidance-too-close-p): Return nil if mouse
10387 is in the tool bar.
10388
10389 * dired-aux.el (dired-add-entry): Don't call dired-get-filename
10390 with `no-dir'; we want the directory part to be able to remove it.
10391
10392 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
10393
10394 * textmodes/outline.el (outline-flag-region):
10395 Don't bind inhibit-read-only since we don't modify the buffer.
10396 (outline-isearch-open-invisible): Don't jump to overlay-start
10397 since we're trying to unhide text around point.
10398 (outline-discard-overlays): Use dolist.
10399
10400 * autoinsert.el (auto-insert-alist): Add `provide' to elisp skeleton.
10401
10402 2000-11-22 Gerd Moellmann <gerd@gnu.org>
10403
10404 * mail/rmail.el (rmail-confirm-expunge): Default to y-or-n-p.
10405
10406 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
10407
10408 * textmodes/tex-mode.el (tex-font-lock-keywords-1):
10409 Fix ARG regexp to skip quoted braces.
10410 (tex-font-lock-keywords-2): Fix ARG regexp to skip quoted braces.
10411 Remove `bf' and `it' from `bold' and `italic' (they were wrong and
10412 are (correctly) handled separately).
10413 Remove `caption' and `footnote' from `citations': they contain text.
10414 Don't highlight `textmd', `texttt' and `textrm' with bold-italic.
10415 (latex-skeleton-end-hook): New function.
10416 (latex-mode): Use it.
10417 (tex-start-tex-marker): Remove.
10418 (tex-send-tex-command): Don't set tex-start-tex-marker.
10419 (tex-error-parse-syntax-table): New var.
10420 (tex-compilation-parse-errors): Use it.
10421 Ignore tex-start-tex-marker. Don't bother with marker-position.
10422 (tex-validate-buffer): Don't bother with marker-position.
10423
10424 * textmodes/flyspell.el (flyspell-prog-text-faces): New var.
10425 (flyspell-generic-progmode-verify): Use it.
10426
10427 2000-11-22 Sam Steingold <sds@gnu.org>
10428
10429 * simple.el (delete-trailing-whitespace): New interactive function.
10430
10431 * progmodes/ada-mode.el (ada-mode): Use it instead of
10432 `ada-remove-trailing-spaces'.
10433 (ada-remove-trailing-spaces): Removed.
10434
10435 * textmodes/two-column.el (2C-merge): Recommend it in the doc.
10436
10437 * textmodes/picture.el (picture-clean): Removed.
10438 (picture-mode-exit): Call it instead of `picture-clean'.
10439
10440 2000-11-22 Gerd Moellmann <gerd@gnu.org>
10441
10442 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
10443
10444 * hi-lock.el (hi-lock-refontify): Don't call non-existent
10445 jit-lock-fontify-buffer; it should anyway be unneccessary to
10446 do anything special when jit-lock is active.
10447 (hi-yellow, hi-pink, hi-green, hi-blue): Fix defface specs.
10448
10449 2000-11-22 Dave Love <fx@gnu.org>
10450
10451 * calendar/todo-mode.el (todo-top-priorities): Use
10452 todo-tmp-buffer-name. From Milan Zamazal <Milan.Zamazal@qbizm.com>.
10453
10454 * language/chinese.el, language/cyrillic.el:
10455 * language/devanagari.el, language/ethiopic.el, language/greek.el:
10456 * language/hebrew.el, language/indian.el, language/japanese.el:
10457 * language/korean.el, language/lao.el, language/misc-lang.el:
10458 * language/thai.el, language/tibetan.el, language/vietnamese.el:
10459 Use provide.
10460
10461 * cus-edit.el (custom-buffer-create-internal): Save some consing.
10462 (custom-variable-set): Improve validation error mesage.
10463
10464 * rect.el (string-rectangle): Revert last change.
10465 (string-rectangle-line): New arg DELETE.
10466 (string-rectangle): Check delete-selection-mode.
10467
10468 * emacs-lisp/edebug.el (edebug-version)
10469 (edebug-maintainer-address): Deleted.
10470 (edebug-submit-bug-report): Just alias to report-emacs-bug.
10471 (edebug-read-function): Account for other `'#' read forms.
10472 (edebug-mode-menus): Make some items toggles.
10473 (edebug-outside-unread-command-event, unread-command-event):
10474 Remove these to avoid warnings.
10475
10476 2000-11-22 David Ponce <david@dponce.com>
10477
10478 * recentf.el (recentf-menu-items-for-commands)
10479 (recentf-make-menu-items, recentf-make-menu-item)
10480 (recentf-filter-changer): Added :help and :active menu-item properties.
10481
10482 (recentf-build-dir-rules, recentf-dump-variable)
10483 (recentf-edit-list, recentf-open-files-item)
10484 (recentf-open-files): Replaced unnecessary `mapcar' with new
10485 built-in `mapc'.
10486
10487 2000-11-23 Miles Bader <miles@gnu.org>
10488
10489 * faces.el (menu): Make inverse-video on ttys too.
10490
10491 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
10492
10493 * simple.el (comment-line-break-function): Use the new name
10494 indent-new-comment-line -> comment-indent-new-line.
10495 (clone-indirect-buffer): Don't ignore NORECORD.
10496 (next-completion): Properly handle the case where items are adjacent.
10497
10498 * mouse.el (popup-menu): Stupid typo.
10499
10500 2000-11-22 Gerd Moellmann <gerd@gnu.org>
10501
10502 * emacs-lisp/authors.el: Remove autoload cookies, add author,
10503 maintainer, keywords tags.
10504
10505 * rect.el (replace-rectangle): Don't call string-rectangle-line
10506 with too many arguments.
10507
10508 2000-11-22 Andre Spiegel <spiegel@gnu.org>
10509
10510 * ediff-util.el (ediff-file-checked-out-p)
10511 (ediff-file-checked-in-p): Call vc-state instead of
10512 vc-locking-user, which no longer exists.
10513
10514 * emulation/viper-util.el (viper-file-checked-in-p): Same as above.
10515
10516 2000-11-22 Dave Love <fx@gnu.org>
10517
10518 * md5.el (md5): Provide.
10519 (md5): Fix error call.
10520
10521 2000-11-22 Miles Bader <miles@gnu.org>
10522
10523 * textmodes/refill.el (refill-adjust-ignorable-overlay)
10524 (refill-fill-paragraph-at): Remove debugging code.
10525
10526 * calendar/calendar.el (generate-calendar-window): When we don't
10527 call `fit-window-to-buffer', make sure the top line is fully visible.
10528
10529 * image-file.el (insert-image-file): Don't make `read-only'
10530 property rear-nonsticky.
10531
10532 * isearch.el (isearch-original-minibuffer-message-timeout): New var.
10533 (isearch-mode): Set `minibuffer-message-timeout' to nil, after
10534 stashing away its original value.
10535 (isearch-edit-string): Temporarily restore `minibuffer-message-timeout'
10536 in the recursive edit.
10537 Bind `isearch-original-minibuffer-message-timeout' to protect it.
10538 (isearch-done): Restore `minibuffer-message-timeout'.
10539
10540 * cus-start.el: Remove entry for `mode-line-inverse-video'.
10541
10542 2000-11-21 Stefan Monnier <monnier@cs.yale.edu>
10543
10544 * progmodes/ada-mode.el (ada-mode): `set '' -> `setq'.
10545
10546 * find-lisp.el (find-lisp-find-files-internal):
10547 Use dolist, when and file-name-as-directory.
10548
10549 * emacs-lisp/edebug.el (edebug-form-spec prop): Use dolist.
10550 (define-derived-mode, define-minor-mode): Add specs.
10551
10552 * window.el: General comment and spacing fixes.
10553 (save-selected-window): Use backquotes.
10554 (window-safely-shrinkable-p): New function.
10555 (shrink-window-if-larger-than-buffer): Use it.
10556
10557 * subr.el (make-local-hook): Docstring fix.
10558
10559 * shell.el (shell-mode): Use define-derived-mode.
10560
10561 * newcomment.el (comment-indent): Insert comment before calling
10562 comment-indent-function. Don't insert in column 0.
10563 (comment-dwim): Indent before inserting comment.
10564
10565 * isearch.el (isearch-mode-map): Fix docstring. Init in defvar.
10566 (minibuffer-local-isearch-map): Init in defvar. Use inheritance.
10567 (isearch-clean-overlays, isearch-range-invisible, isearch-unread):
10568 Use mapc rather than map.
10569
10570 * files.el (find-buffer-visiting): Compare all attributes before
10571 declaring two files identical (rather than just their inode-no).
10572 (auto-mode-alist): Use \' rather than $.
10573
10574 * which-func.el: Update maintainer line.
10575
10576 * pcvs.el (uniquify-buffer-file-name): Remove advice.
10577 * uniquify.el (uniquify-list-buffers-directory-modes): New var.
10578 (uniquify-buffer-file-name): Use it.
10579
10580 2000-11-22 Miles Bader <miles@gnu.org>
10581
10582 * cus-start.el: Add entry for `minibuffer-prompt-properties'.
10583 * simple.el (minibuffer-avoid-prompt): New function.
10584
10585 2000-11-21 Gerd Moellmann <gerd@gnu.org>
10586
10587 * Makefile.in (.SUFFIXES): Add .SUFFIXES.
10588
10589 2000-11-21 Miles Bader <miles@gnu.org>
10590
10591 * emacs-lisp/advice.el (ad-special-forms): Correct the conditional
10592 inclusion of `track-mouse'.
10593
10594 * textmodes/refill.el (refill-ignorable-overlay): New variable.
10595 (refill-adjust-ignorable-overlay): New function.
10596 (refill-fill-paragraph-at): Use `refill-ignorable-overlay' to fill
10597 only the paragraph's tail if possible.
10598 Update `refill-ignorable-overlay'.
10599 (refill-mode): Initialize/cleanup `refill-ignorable-overlay'.
10600
10601 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
10602 point inside the fill-prefix.
10603
10604 * textmodes/refill.el (refill-post-command-function): Don't reset
10605 refill-doit in the case where a self-insertion command doesn't
10606 case a refill. Use `refill-fill-paragraph-at', getting position
10607 from `refill-doit'.
10608 (refill-after-change-function): Set `refill-doit' to END.
10609 (refill-fill-paragraph-at): New function, mostly from old
10610 refill-fill-paragraph.
10611 (refill-fill-paragraph): Use `refill-fill-paragraph-at'.
10612 (refill-pre-command-function): New function.
10613 (refill-mode): Add it to `pre-command-hook'.
10614
10615 2000-11-20 Gerd Moellmann <gerd@gnu.org>
10616
10617 * textmodes/artist.el (artist-mode): Fix autoload cookie.
10618
10619 * font-lock.el (java-keywords): Add MATCH-HIGHLIGHT part for
10620 javadoc tags.
10621
10622 2000-11-20 Andre Spiegel <spiegel@gnu.org>
10623
10624 * vc.el, vc-hooks.el: Undo prev change (moved functions back to
10625 vc.el).
10626
10627 * vc-rcs.el (vc-rcs-state): Before calling vc-workfile-unchanged-p,
10628 require vc.
10629
10630 * vc-cvs.el (vc-cvs-checkout): Fix bug that broke C-x v ~-style
10631 checkouts.
10632
10633 2000-11-20 Dave Love <fx@gnu.org>
10634
10635 * Makefile.in (DONTCOMPILE): Omit bindings.el.
10636
10637 2000-11-20 Eli Barzilay <eli@www.barzilay.org>
10638
10639 * calculator.el (calculator-paste): Use `if' instead of `and'
10640 and `or'.
10641 (calculator-help): Don't use electric-describe-mode for XEmacs.
10642
10643 2000-11-19 Gerd Moellmann <gerd@gnu.org>
10644
10645 * info.el (info-menu-5): Doc fix.
10646
10647 * textmodes/artist.el: New file.
10648
10649 2000-11-19 Andre Spiegel <spiegel@gnu.org>
10650
10651 * vc-rcs.el (vc-rcs-state): Call vc-workfile-unchanged-p only here,
10652 and differentiate according to checkout model.
10653 (vc-rcs-fetch-master-state): Don't call vc-workfile-unchanged-p,
10654 since this function is only concerned with master state.
10655
10656 * vc-hooks.el (vc-workfile-unchanged-p)
10657 (vc-default-workfile-unchanged-p): Moved here from vc.el.
10658
10659 * vc.el (vc-workfile-unchanged-p)
10660 (vc-default-workfile-unchanged-p): See above.
10661
10662 2000-11-19 Miles Bader <miles@gnu.org>
10663
10664 * image-file.el (insert-image-file): Make `intangible' and
10665 `read-only' properties rear-nonsticky too.
10666
10667 2000-11-18 Gerd Moellmann <gerd@gnu.org>
10668
10669 * ps-print.el: Update copyright notice.
10670
10671 * tooltip.el (tooltip-x-offset, tooltip-y-offset): New user-options.
10672 (tooltip-show): Use the offsets.
10673
10674 * bindings.el (mode-line-modified): Fix a typo.
10675 (mode-line-toggle-modified, mode-line-widen)
10676 (mode-line-abbrev-mode, mode-line-auto-fill-mode): Fix typos.
10677
10678 2000-11-17 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10679
10680 * ps-print.el (toplevel): Test for find-coding-system being
10681 fboundp before calling ps-x-find-coding-system.
10682
10683 2000-11-16 Stefan Monnier <monnier@cs.yale.edu>
10684
10685 * vc.el (vc-version-diff): Bind inhibit-read-only when inserting text.
10686 (vc-version-backup-file): Docstring fix.
10687
10688 2000-11-16 Gerd Moellmann <gerd@gnu.org>
10689
10690 * files.el (basic-save-buffer): Don't add a newline if
10691 find-file-literally is non-nil.
10692 (find-file-literally): Extend doc string.
10693
10694 * sort.el (sort-columns): If sort-fold-case it non-nil, invoke
10695 sort(1) with the `-f' argument.
10696
10697 2000-11-16 Andre Spiegel <spiegel@gnu.org>
10698
10699 * vc.el: Updated backend documentation.
10700 (vc-default-check-headers): New function.
10701
10702 * vc-{cvs,rcs,sccs}.el: Functions reordered.
10703
10704 * vc.el (vc-revert-buffer): Ask for confirmation if file seems
10705 up-to-date.
10706 (vc-do-command): In the asynchronous case, output messages only if
10707 the minibuffer is not active.
10708
10709 * vc-cvs.el (vc-cvs-revert): Use `cvs unedit' only if
10710 `vc-cvs-use-edit' is on.
10711 (vc-cvs-checkout): When this is used for reverting the workfile,
10712 make a backup of the original contents and revert to that in case
10713 of error.
10714 (vc-cvs-print-log, vc-cvs-diff): Use asynchronous mode only for
10715 remote repositories.
10716
10717 * vc.el (vc-annotate): Changed handling of prefix arg; now asks
10718 for both version and ratio in the minibuffer.
10719
10720 * vc-cvs.el (vc-cvs-annotate-command): New optional arg VERSION.
10721 Use vc-do-command to perform the annotation, not call-process.
10722
10723 2000-11-16 Kenichi Handa <handa@etl.go.jp>
10724
10725 * international/quail.el (quail-start-translation): Don't call
10726 `message' before reading key sequence.
10727
10728 2000-11-16 Miles Bader <miles@lsi.nec.co.jp>
10729
10730 * net/ange-ftp.el (ange-ftp-file-modtime): Don't use `caddr'.
10731
10732 2000-11-16 Kenichi Handa <handa@etl.go.jp>
10733
10734 * window.el (fit-window-to-buffer): Be sure to acquire at least
10735 one text line even if the buffer is empty.
10736
10737 2000-11-16 Gerd Moellmann <gerd@gnu.org>
10738
10739 * net/ange-ftp.el (ange-ftp-file-writable-p)
10740 (ange-ftp-file-readable-p, ange-ftp-file-executable-p):
10741 Bind ange-ftp-process-verbose to nil.
10742
10743 2000-11-15 Dave Love <fx@gnu.org>
10744
10745 * wid-edit.el (widget-specify-field, widget-specify-button):
10746 If :help-echo is a function, set help-echo of overlay to
10747 widget-mouse-help.
10748 (widget-mouse-help): New function.
10749 (widget-echo-help): Rewritten for :help-echo functions only taking
10750 a widget arg.
10751
10752 * net/eudc-bob.el (eudc-bob-can-display-inline-images):
10753 Use display-graphic-p.
10754 (eudc-bob-display-jpeg) <!eudc-xemacs-p>: Test create-image bound
10755 and that JPEG is available.
10756 (eudc-bob-toggle-inline-display): Avoid non-existent `imagep'.
10757
10758 * international/mule-cmds.el (locale-charset-language-names):
10759 Match @euro.
10760
10761 2000-11-15 Gerd Moellmann <gerd@gnu.org>
10762
10763 * faces.el (face-set-after-frame-default):
10764 If `inhibit-default-face-x-resources' is bound, don't intialize the
10765 default face from X resources.
10766
10767 2000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
10768
10769 * Makefile.in (custom-deps, finder-data, autoloads, recompile):
10770 Don't set EMACSLOADPATH.
10771
10772 2000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
10773
10774 * textmodes/texinfo.el (texinfo-insert-@uref): Renamed from
10775 texinfo-insert-@url.
10776 (texinfo-insert-@url): A defalias for texinfo-insert-@uref.
10777 (texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref.
10778
10779 2000-11-14 Stefan Monnier <monnier@cs.yale.edu>
10780
10781 * emacs-lisp/checkdoc.el (checkdoc-minor-mode) <defvar>: Remove.
10782 (checkdoc-minor-mode-map): New map, replaces checkdoc-minor-keymap.
10783 (checkdoc-minor-keymap): Backward compatibility.
10784 (checkdoc-minor-menu): Don't bother checking checkdoc-minor-keymap.
10785 (checkdoc-minor-mode) <defun>: Use easy-mmode-define-minor-mode.
10786 (checkdoc-this-string-valid-engine): Be a bit more strict
10787 to avoid matching substrings of `...' quoted vars/funs.
10788 (checkdoc-defun-info): Only look for `interactive' if alone.
10789 (debug-ignored-errors): Add "arg doesn't appear in docstring".
10790
10791 * progmodes/compile.el (grep): `tag-default' can be nil.
10792
10793 * newcomment.el (comment-indent): Paren typo.
10794
10795 2000-11-14 Dave Love <fx@gnu.org>
10796
10797 * calculator.el: New maintainer version.
10798
10799 * diff-mode.el (diff-imenu-generic-expression): Modify unidiff pattern.
10800
10801 * cmuscheme.el: Doc fixes.
10802 (cmuscheme) <defgroup>: Use `scheme' as parent.
10803 (cmuscheme-program-name): Remove. Change uses to scheme-program-name.
10804
10805 * xscheme.el (scheme-program-name): Don't define here.
10806
10807 * progmodes/scheme.el (scheme-program-name): New variable
10808 (originally in cmuscheme).
10809
10810 2000-11-14 Miles Bader <miles@gnu.org>
10811
10812 * window.el (fit-window-to-buffer): Handle windows without mode-lines.
10813 Handle header-lines. Don't loop forever if we can't enlarge the
10814 window anymore. Simplify a bit.
10815
10816 2000-11-14 Kenichi Handa <handa@etl.go.jp>
10817
10818 * window.el (fit-window-to-buffer): Don't check
10819 window-text-height. Assure that the last line is fully visible.
10820
10821 * international/quail.el (quail-show-guidance-buf):
10822 Call fit-window-to-buffer to assure the enough height of the guidance
10823 buffer.
10824 (quail-update-guidance): Avoid making the guidance buffer shorter.
10825
10826 2000-11-14 Stefan Monnier <monnier@cs.yale.edu>
10827
10828 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Use `keep'
10829 rather than `prepend' and add an interesting comment.
10830 (tex-math-face, tex-font-lock-syntactic-face-function):
10831 New face and function to use it.
10832 (tex-define-common-keys, tex-mode-map): Use menu-item rather
10833 than `menu-enable' symbol property.
10834 (tex-mode-map): Bind {, (, [ and $ to skeleton-pair-insert-maybe.
10835 (tex-mode): Add some latex-mode commands for auto-selection.
10836 Use tex-font-lock-syntactic-face-function.
10837 (tex-insert-quote): Simplify.
10838 (tex-shell): New mode.
10839 (tex-start-shell): Use it.
10840 (tex-shell-proc, tex-shell-buf): New functions.
10841 (tex-send-command): Use it.
10842 (tex-main-file): Fix the meaning of the new arg REALFILE.
10843 (tex-send-tex-command): New function split from `tex-start-tex'.
10844 Set compilation-last-buffer and compilation-parsing-end.
10845
10846 * newcomment.el (comment-indent-default): Stick \s<\s< to the left
10847 when it follows non-comment text on the line.
10848
10849 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
10850 Set font-lock-defaults.
10851 (lisp-mode-shared-map): Init inside the defvar.
10852 (emacs-lisp-mode, lisp-mode, lisp-interaction-mode):
10853 Use define-derived-mode.
10854
10855 2000-11-14 Miles Bader <miles@lsi.nec.co.jp>
10856
10857 * faces.el (header-line): Use `:box nil' for color/gs displays too.
10858
10859 2000-11-14 Gerd Moellmann <gerd@gnu.org>
10860
10861 * emacs-lisp/byte-opt.el (byte-compile-unfold-lambda):
10862 Don't recursively optimize body because that can lead to infinite
10863 recursion; see comment there.
10864
10865 2000-11-13 Eli Zaretskii <eliz@is.elta.co.il>
10866
10867 * faces.el (face-spec-set-match-display): Revert the change from
10868 2000-10-24. Add a FIXME for after v21.1.
10869
10870 2000-11-13 Miles Bader <miles@gnu.org>
10871
10872 * textmodes/fill.el (skip-line-prefix): New function.
10873 (fill-region-as-paragraph, fill-region): Return the fill-prefix.
10874 (fill-paragraph): Don't leave point inside the fill-prefix.
10875 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
10876 point inside the fill-prefix.
10877
10878 2000-11-13 Miles Bader <miles@lsi.nec.co.jp>
10879
10880 * calendar/calendar.el (generate-calendar-window):
10881 Use `fit-window-to-buffer'.
10882
10883 2000-11-12 Stefan Monnier <monnier@cs.yale.edu>
10884
10885 * gud.el (gud-minor-mode): New var.
10886 (gud-symbol, gud-val): New functions.
10887 (gud-find-file): Copy gud-minor-mode to the new buffer.
10888 (gud-menu-map): Include entries for commands that are not always
10889 available, using :enable to (de)activate them.
10890 (gud-minor-mode-map): New map. Add it to minor-mode-map-alist.
10891 (gud-mode-map): New map.
10892 (gud-gdb-find-file, gud-sdb-find-file, gud-dbx-find-file)
10893 (gud-xdb-find-file, gud-perldb-find-file, gud-pdb-find-file):
10894 Don't set up gud's menu (it's done by the minor-mode).
10895 (gud-minibuffer-local-map): New.
10896 Replace gdb-minibuffer-local-map and pdb-minibuffer-local-map.
10897 (gud-query-cmdline): New function.
10898 (gdb, sdb, dbx, xdb, perldb, pdb, jdb): Use it. Set gud-minor-mode.
10899 (gud-mode): Use define-derived-mode.
10900 Don't set up gud's menu (it's done by the minor-mode).
10901 (gud-chop-words): Remove.
10902 (gud-common-init): Use split-string instead.
10903 (gud-new-keymap, gud-make-debug-menu): Eradicate.
10904
10905 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
10906 Add keyword arg :name.
10907
10908 * diff-mode.el (diff-mode-menu): Add entry for applying hunk.
10909 (diff-count-matches, diff-split-hunk): New functions.
10910 (diff-mode-map): Bind C-c C-s to diff-split-hunk.
10911
10912 * pcvs-info.el (cvs-fi-conflict-face): New var.
10913
10914 * progmodes/sh-script.el (sh-mode-syntax-table) <defvar>:
10915 Make it into a simple syntax-table, shared among all submodes.
10916 (sh-heredoc-face): Re-introduce.
10917 (sh-font-lock-syntactic-face-function): New function.
10918 (sh-mode): Use it. Also use define-derived-mode.
10919 Remove old bogus setting of indent-region-function.
10920 (sh-set-shell): Don't set the syntax-table any more.
10921 (sh-mode-syntax-table) <defun>: Remove.
10922
10923 2000-11-12 Miles Bader <miles@gnu.org>
10924
10925 * textmodes/flyspell.el (flyspell-mode-on): Only output welcome
10926 message if interactive.
10927
10928 2000-11-12 Dave Love <fx@gnu.org>
10929
10930 * mail/feedmail.el: Fix header,
10931 (feedmail) <defgroup>: Add :link.
10932
10933 * view.el: Use local-map property, not keymap on mode-line string.
10934
10935 * scroll-all.el (scroll-all-mode): Customize variable.
10936 Add autoload cookie to function.
10937
10938 * lazy-lock.el: Remove compatibility code.
10939
10940 * finder.el (finder-known-keywords): Add `files', remove `vms'.
10941 (finder-help-echo): New variable.
10942 (finder-mouse-face-on-line): Add help-echo stuff.
10943 (finder-list-keywords, finder-list-matches): Use mapc.
10944
10945 * faces.el (face-font-registry-alternatives): Add :version.
10946
10947 * progmodes/etags.el (visit-tags-table-buffer): Beware of `t' in
10948 tags-table-list.
10949
10950 * net/browse-url.el (browse-url-browser-function): Update :version.
10951
10952 * mail/sendmail.el (mail-font-lock-keywords): Use [:alpha:], not a-z.
10953 (mail-mode): Use [:alnum:] in some regexps.
10954
10955 2000-11-10 Dave Love <fx@gnu.org>
10956
10957 * ediff.el (ediff-regions-internal, ediff-documentation):
10958 * ediff-vers.el (rcs-ediff-view-revision): Put temp buffer into
10959 fundamental mode.
10960
10961 * ediff-util.el (ediff-status-info, ediff-debug-info): Put temp
10962 buffer into fundamental mode.
10963 (ediff-set-difference): Use copy-sequence if available.
10964
10965 * ediff-ptch.el (ediff-dispatch-file-patching-job):
10966 Check ediff-patch-map non-nil.
10967 (ediff-fixup-patch-map, ediff-fixup-patch-map)
10968 (ediff-fixup-patch-map, ediff-patch-file-internal): Put temp
10969 buffer into fundamental mode.
10970
10971 * ediff-merg.el (state-or-merge): Defvar when compiling.
10972
10973 2000-11-10 Jason Rumney <jasonr@gnu.org>
10974
10975 * w32-fns.el (w32-add-charset-info): New function.
10976 (w32-charset-info-alist): Use it.
10977
10978 2000-11-10 Gerd Moellmann <gerd@gnu.org>
10979
10980 * faces.el (face-font-registry-alternatives): New user-option.
10981
10982 2000-11-10 Stefan Monnier <monnier@cs.yale.edu>
10983
10984 * textmodes/texinfo.el (texinfo-block-default): New var.
10985 (texinfo-insert-block): Use it. Insert a newline if needed.
10986
10987 * textmodes/fill.el (fill-indent-according-to-mode): New var.
10988 (fill-region-as-paragraph): Use it.
10989
10990 * textmodes/tex-mode.el (standard-latex-block-names): Add "math".
10991 (latex-mode): Tweak tex-*-(head|trail)er regexps.
10992 Tweak paragraph regexps to allow a leading [ \t]*.
10993 (tex-latex-block): Insert a newline if necessary.
10994 (latex-insert-item): Only insert a newline if necessary.
10995 (tex-guess-main-file): New function.
10996 (tex-main-file): Use it. Add arg `realfile'. Trim `.tex'.
10997 Set tex-main-file if TeX-master is provided.
10998 (tex-latex-indent-syntax-table): Map ( and ) to punctuation.
10999
11000 2000-11-10 Gerd Moellmann <gerd@gnu.org>
11001
11002 * startup.el (command-line): Set the default tooltip-mode
11003 to t for graphical displays which implement x-show-tip.
11004
11005 * tooltip.el (tooltip-mode): Add a comment about startup.el
11006 setting the default value of this user-option.
11007
11008 2000-11-09 Stefan Monnier <monnier@cs.yale.edu>
11009
11010 * font-lock.el (font-lock-*-face) <defvar>: Move.
11011 (font-lock-defaults-alist): Mark obsolete.
11012 (font-lock-mode, font-lock-mode-hook) <defvar>: Remove.
11013 (font-lock-mode): Use define-minor-mode.
11014 (font-lock-support-mode): Tweak type to default to jit-lock-mode.
11015 (font-lock-turn-off-thing-lock): Be more explicit.
11016 (font-lock-apply-syntactic-highlight): Use string-to-syntax after eval.
11017 (font-lock-syntactic-face-function): New var.
11018 (font-lock-fontify-syntactically-region): Use it.
11019 (font-lock-doc-face): New.
11020
11021 * pcvs.el (cvs-enabledp): Ignore errors.
11022 (cvs-commit-filelist): Never query.
11023 (cvs-mode-insert): Always add a terminating / in the initial prompt.
11024 (cvs-mode-diff-backup): Use cvs-partition rather than delete-if-not.
11025 (cvs-do-removal): Use cvs-partition rather than delete-if.
11026 Use cvs-insert-strings, cvs-pop-to-buffer-same-frame and
11027 cvs-bury-buffer.
11028
11029 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
11030 Allow `next' to jump to after the end of the last match.
11031
11032 2000-11-09 Gerd Moellmann <gerd@gnu.org>
11033
11034 * simple.el (byte-compiling-files-p): New function.
11035
11036 * textmodes/ispell.el (toplevel): Use byte-compiling-files-p
11037 if it is there.
11038
11039 * emacs-lisp/bytecomp.el (byte-compile-current-file): Bind it to
11040 nil again.
11041
11042 * textmodes/ispell.el (ispell-library-path): Don't call
11043 check-ispell-version when byte-compiling because that starts
11044 an ispell process, and ispell might not be installed.
11045 (toplevel): Don't set up a menu when byte-compiling.
11046
11047 * emacs-lisp/bytecomp.el (byte-compile-current-file): Don't bind
11048 it, so that a boundp test can be used to determine if we're
11049 currently byte-compiling.
11050
11051 2000-11-09 Dave Love <fx@gnu.org>
11052
11053 * pcvs.el (uniquify-buffer-file-name): Wrap advice in eval-after-load.
11054
11055 2000-11-09 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11056
11057 * ps-print.el: Patch for variable initialization when spooling.
11058 Doc fix.
11059 (ps-output-list): Fun eliminated.
11060 (ps-begin-file, ps-begin-job): Code fix.
11061
11062 2000-11-08 Dave Love <fx@gnu.org>
11063
11064 * ediff-wind.el (ediff-control-frame-parameters): Zero tool-bar-lines.
11065
11066 2000-11-08 Gerd Moellmann <gerd@gnu.org>
11067
11068 * simple.el (shell-command, display-message-or-buffer)
11069 (shell-command-on-region): Mention resize-mini-windows in the doc
11070 string.
11071 (display-message-or-buffer): Take the value of resize-mini-windows
11072 into account.
11073
11074 2000-11-07 Gerd Moellmann <gerd@gnu.org>
11075
11076 * macros.el (insert-kbd-macro): Print semi-colons as `?\;'.
11077
11078 * dired.el (dired-between-files): Add `^. find' as an alternative
11079 to the regular expression, for find-dired.
11080
11081 2000-11-06 Stefan Monnier <monnier@cs.yale.edu>
11082
11083 * textmodes/texnfo-upd.el: Require texinfo.
11084 (defmacro, defgroup): Remove.
11085 (texinfo-section-to-generic-alist): Remove.
11086 Use texinfo-section-list instead (i.e. level is changed string->int).
11087 (texinfo-filter): New function.
11088 (texinfo-chapter-level-regexp, texinfo-subsubsection-level-regexp)
11089 (texinfo-subsection-level-regexp, texinfo-section-level-regexp):
11090 Use it. And use regexp-opt.
11091 (texinfo-find-higher-level-node, texinfo-hierarchic-level)
11092 (texinfo-update-menu-region-beginning)
11093 (texinfo-update-menu-higher-regexps, texinfo-update-menu-lower-regexps)
11094 (texinfo-update-the-node, texinfo-sequentially-update-the-node)
11095 (texinfo-update-menu-same-level-regexps): Update.
11096 (texinfo-update-node, texinfo-every-node-update)
11097 (texinfo-sequential-node-update): Remove autoload cookie.
11098
11099 * textmodes/texinfo.el (texinfo-section-list): Change majorheading.
11100 (texinfo-font-lock-syntactic-keywords): Use syntax-strings.
11101 (texinfo-chapter-level-regexp): Remove.
11102 (texinfo-mode): Hard code texinfo-chapter-level-regexp.
11103
11104 2000-11-06 Dave Love <fx@gnu.org>
11105
11106 * autoinsert.el (auto-insert-alist) <latex-mode>: Use \documentclass.
11107
11108 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
11109 Match defun*.
11110
11111 2000-11-06 Kenichi Handa <handa@etl.go.jp>
11112
11113 * composite.el (composition-function-table): Variable declaration
11114 moved to src/composite.c.
11115 (compose-chars-after): New optional arg object.
11116
11117 2000-11-06 Gerd Moellmann <gerd@gnu.org>
11118
11119 * bindings.el (mode-line-toggle-read-only)
11120 (mode-line-toggle-modified, mode-line-widen)
11121 (mode-line-abbrev-mode, mode-line-auto-fill-mode): New functions.
11122 (make-mode-line-mouse2-map): Rewritten.
11123 (mode-line-modified, mode-line-format, minor-mode-alist): Use new
11124 functions so that C-h k can show something with a doc string.
11125
11126 * startup.el (fancy-splash-delay): Set to 10 seconds.
11127 (fancy-splash-max-time): New user-option.
11128 (fancy-splash-stop-time): New variable.
11129 (fancy-splash-screens): Set it. Catch `stop-splashing'.
11130 (fancy-splash-screens-1): Throw `stop-splashing' when current
11131 time is greater than fancy-splash-stop-time.
11132
11133 2000-11-06 Stefan Monnier <monnier@cs.yale.edu>
11134
11135 * vc-hooks.el (vc-insert-file): Don't assume byte==char.
11136
11137 * pcvs.el (cvs-mode-marked): New arg `noquery'.
11138 Prompt user for a file rather than raising an error.
11139 (cvs-enabledp): Fix call to cvs-mode-marked.
11140 (cvs-insert-file): New function (extracted from cvs-mode-insert).
11141 (cvs-mode-insert): Use it. Change the init prompt' value.
11142 (cvs-mode-tree): Use cvs-status-cvstrees instead of cvs-status-trees.
11143
11144 * emacs-lisp/ewoc.el (ewoc-goto-prev, ewoc-goto-next):
11145 Don't pass default arg to ewoc-locate.
11146 (ewoc-collect): Return result in the right order.
11147
11148 * log-edit.el (log-edit-show-files): Use cvs-insert-strings.
11149
11150 * cvs-status.el (cvs-tree-merge): Use cvs-butlast (avoid CL).
11151 (cvs-status-get-tags): Fix regexp.
11152 (cvs-status-trees, cvs-status-cvstrees):
11153 Combine after change hooks and don't sit-for.
11154 (cvs-tree-use-jisx0208): Rename from cvs-tree-dstr-2byte-ready.
11155 (cvs-tree-char-*): Rename from cvs-tree-dstr-char-*.
11156 Use make-char rather than hard-coded cryptic data.
11157 (cvs-status-cvstrees): Convert the buffer to multibyte if necessary.
11158
11159 * pcvs-defs.el (cvs-menu): Add entries for tree and insert.
11160
11161 * pcvs-util.el (cvs-butlast, cvs-nbutlast): New (copied from CL).
11162 (cvs-insert-strings): New function.
11163
11164 2000-11-06 Miles Bader <miles@lsi.nec.co.jp>
11165
11166 * mwheel.el (mouse-wheel-scroll-amount): Renamed from
11167 `mwheel-scroll-amount'.
11168 (mouse-wheel-follow-mouse): Renamed from `mwheel-follow-mouse'.
11169 (mouse-wheel-mode): Use (featurep 'xemacs) instead of
11170 string-matching against the version string.
11171
11172 2000-11-06 Kenichi Handa <handa@etl.go.jp>
11173
11174 * language/thai.el ("Thai"): Set a lisp form that produces
11175 composed string in `sample-text' language info.
11176
11177 * language/tibetan.el ("Tibetan"): Set a lisp form that produces
11178 composed string in `sample-text' language info.
11179
11180 * international/mule-cmds.el (describe-language-environment):
11181 Eval `sample-text' data and insert the result.
11182
11183 * international/mule-conf.el (compound-text): Define this coding
11184 system here. Make x-ctext and ctext aliases of it.
11185
11186 * language/european.el (compound-text, ctext): Moved to
11187 international/mule-conf.el.
11188
11189 2000-11-05 Andrew Innes <andrewi@gnu.org>
11190
11191 * w32-fns.el (w32-version): New function.
11192
11193 2000-11-05 Stefan Monnier <monnier@cs.yale.edu>
11194
11195 * progmodes/awk-mode.el: Update copyright.
11196 (awk-mode-abbrev-table): Remove.
11197 (awk-font-lock-keywords): Use regexp-opt.
11198 (awk-mode): Use define-derived-mode.
11199
11200 * emacs-lisp/regexp-opt.el (regexp-opt-group): Sort the strings
11201 when extracting a suffix.
11202
11203 2000-11-04 Andre Spiegel <spiegel@gnu.org>
11204
11205 * vc-hooks.el (vc-insert-file): Rewritten. Don't bother about
11206 auto-save-mode.
11207
11208 2000-11-04 Jason Rumney <jasonr@gnu.org>
11209
11210 * language/european.el (decode-mac-roman): Test against r1 not r0.
11211
11212 2000-11-03 Stefan Monnier <monnier@cs.yale.edu>
11213
11214 * progmodes/icon.el (icon-mode-map): Don't rebind \t.
11215 (icon-mode): Define indent-line-function.
11216 (icon-comment-indent): Simplify.
11217 (icon-font-lock-keywords-2): Use the `words' arg to regexp-opt.
11218
11219 * emacs-lisp/find-func.el (find-function-do-it): Quote the hook.
11220
11221 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
11222 Bind change-log-default-mode to defeat the caching done on it.
11223 Don't bother saving excursion any more.
11224
11225 * menu-bar.el (minibuffer maps): Use dolist rather than mapcar.
11226
11227 * frame.el (after-setting-font-hook): Rename hooks -> hook.
11228 (set-frame-font): Use the new name (and the old for compatibility).
11229
11230 * toolbar/tool-bar.el (tool-bar-mode):
11231 * time.el (display-time-mode):
11232 * recentf.el (recentf-mode):
11233 * paren.el (show-paren-mode):
11234 * mwheel.el (mouse-wheel-mode):
11235 * msb.el (msb-mode):
11236 * jka-compr.el (auto-compression-mode):
11237 * image-file.el (auto-image-file-mode):
11238 * hl-line.el (hl-line-mode):
11239 * delsel.el (delete-selection-mode):
11240 * autoinsert.el (auto-insert-mode):
11241 * complete.el (partial-completion-mode): Drop unneeded positional args.
11242
11243 * info.el (Info-mode):
11244 * comint.el (comint-mode): Don't bother with make-local-hook.
11245
11246 * log-edit.el (log-edit-menu): New menu.
11247
11248 2000-11-03 Miles Bader <miles@gnu.org>
11249
11250 * wid-edit.el (widget-end-of-line): Reinstate, with a new
11251 definition, so that trailing spaces are handled properly.
11252 (widget-field-keymap, widget-text-keymap): Likewise C-e binding.
11253
11254 2000-11-03 Gerd Moellmann <gerd@gnu.org>
11255
11256 * startup.el (fancy-splash-text, fancy-splash-text): Use a single
11257 tab character.
11258 (fancy-splash-screens): Set tab-width to 20.
11259
11260 2000-11-03 Dave Love <fx@gnu.org>
11261
11262 * comint.el (comint-completion-addsuffix): Fix custom type.
11263
11264 2000-11-02 Stefan Monnier <monnier@cs.yale.edu>
11265
11266 * font-lock.el (font-lock-buffers): Remove.
11267 (font-lock-global-modes): Define with easy-mmode-define-global-mode.
11268 (font-lock-change-major-mode): Remove.
11269 (turn-on-font-lock-if-enabled): Only apply to the current buffer.
11270 (font-lock-default-fontify-region): Extend the multiline
11271 fontification to whole lines.
11272 (font-lock-fontify-anchored-keywords)
11273 (font-lock-fontify-keywords-region): If matching just one
11274 line (with \n) only mark the \n as multiline.
11275
11276 * emacs-lisp/easy-mmode.el (define-minor-mode): Remove :toggle arg.
11277 Correctly handle the case where several :group args are supplied.
11278 Allow :extra-args.
11279 (easy-mmode-define-global-mode): Allow :extra-args.
11280 Correctly handle the case where several :group args are supplied.
11281
11282 2000-11-02 Miles Bader <miles@gnu.org>
11283
11284 * calendar/calendar.el (diary-face, calendar-today-face)
11285 (holiday-face): Remove dependency on `window-system'.
11286
11287 2000-11-02 Ken Raeburn <raeburn@gnu.org>
11288
11289 * Makefile.in (emacs): Set EMACSLOADPATH always.
11290 (update-authors, .el.elc, compile-files): Don't do it explicitly here.
11291 (compile-files): Bomb out if compilation of a file fails.
11292
11293 2000-11-02 Dave Love <fx@gnu.org>
11294
11295 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup.
11296
11297 2000-11-02 Eli Zaretskii <eliz@is.elta.co.il>
11298
11299 * mail/emacsbug.el (report-emacs-bug): Fix whitespace and
11300 punctuation in the warning inserted into the *mail* buffer.
11301
11302 2000-11-02 Gerd Moellmann <gerd@gnu.org>
11303
11304 * emacs-lisp/authors.el (authors-public-domain-files): New variable.
11305 (authors-public-domain-p): New function.
11306 (authors-print): Use it.
11307
11308 * help.el (view-emacs-news): Use ONEWS.* instead of NEWS.* files.
11309
11310 * mail/mh-e.el, mail/mh-comp.el: Change maintainer.
11311
11312 2000-11-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11313
11314 * ps-print.el: Extension for even/odd printing. Doc fix.
11315 (ps-print-version): New version number (6.3.1).
11316 (ps-even-or-odd-pages): Customization fix.
11317 (ps-print-page-p, ps-begin-file, ps-begin-job, ps-page-number)
11318 (ps-header-sheet, ps-header-page, ps-end-job): Code fix.
11319 (ps-page-count): Var replaced by `ps-page-column'.
11320 (ps-page-column, ps-page-sheet, ps-page-printed): New vars.
11321 (ps-print-sheet-p): New fun.
11322
11323 2000-11-02 Miles Bader <miles@lsi.nec.co.jp>
11324
11325 * tooltip.el (tooltip-gud-tips-setup): New function.
11326 (tooltip-gud-tips-p): Add :set to call tooltip-gud-tips-setup.
11327 (tooltip-mode): Call tooltip-gud-tips-setup.
11328 (tooltip-gud-tips): Use `gud-basic-call' instead of
11329 process-send-string, so the prompt gets frobbed appropriately.
11330 Handle nil return value from `tooltip-gud-print-command'.
11331
11332 2000-11-01 Eric M. Ludlam <zappo@ultranet.com>
11333
11334 * comint.el (comint-add-to-input-history): New function.
11335 (comint-send-input): Use `comint-add-to-input-history'.
11336
11337 2000-11-02 Miles Bader <miles@lsi.nec.co.jp>
11338
11339 * info.el (info-menu-header): New face.
11340 (Info-fontify-menu-headers): New function.
11341 (Info-fontify-node, Info-insert-dir): Call `Info-fontify-menu-headers'.
11342
11343 * info.el (Info-insert-dir): Don't include blank lines at
11344 beginning of additional dir files (one is added automatically).
11345
11346 2000-11-01 Stefan Monnier <monnier@cs.yale.edu>
11347
11348 * emacs-lisp/easy-mmode.el (define-minor-mode):
11349 Revert the latest changes.
11350 Allow the three positional arguments to be skipped and replaced
11351 by keyword arguments.
11352 Add a :toggle argument to determine whether a nil arg means toggle
11353 or means turn-on. The default is unchanged.
11354 Add a call to force-mode-line-update.
11355
11356 2000-11-01 Dave Love <fx@gnu.org>
11357
11358 * emacs-lisp/elp.el (elp-restore-function): Remove autoload cookie.
11359
11360 2000-11-01 Miles Bader <miles@lsi.nec.co.jp>
11361
11362 * calendar/calendar.el (diary-face, holiday-face):
11363 Add dark-background variants.
11364
11365 2000-10-31 Sam Steingold <sds@gnu.org>
11366
11367 * textmodes/tex-mode.el (tex-file): Use `default-directory' when
11368 `tex-main-file' does not have directory in it.
11369
11370 2000-10-31 Stefan Monnier <monnier@cs.yale.edu>
11371
11372 * cus-edit.el (custom-mode-map): Switch back to a sparse keymap.
11373
11374 2000-10-31 Thien-Thi Nguyen <ttn@gnu.org>
11375
11376 * ediff-init.el (ediff-prepare-buffer-hook): Expand docstring, no
11377 functional change.
11378
11379 2000-10-31 Gerd Moellmann <gerd@gnu.org>
11380
11381 * files.el (find-file-noselect): When we expand a wildcard, return
11382 a list of buffers, as we should do according to the doc string.
11383
11384 2000-10-31 Ken Raeburn <raeburn@gnu.org>
11385
11386 * loadup.el (top level): Adjust load path if program name is
11387 "../src/bootstrap-emacs", in case it's not dumped and thus the
11388 load path adjustment hasn't already been done.
11389
11390 2000-10-31 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11391
11392 * ps-print.el: Fix bug on selected pages for printing.
11393 Use `color-values' for Emacs 21. Ensure fontification when jit-lock
11394 is on. Try to avoid warning messages when compiling. Doc Fix.
11395 (ps-print-version): New version number (6.3).
11396 (ps-color-device): Use `color-values' to determine if device
11397 supports color.
11398 (ps-color-values): Try to use `x-color-values' when using XEmacs.
11399 (ps-print-page-p): Changed from defsubst to defun.
11400 (ps-page-number): Changed from defmacro to defun.
11401 (ps-header-sheet, ps-header-page): Fix bug on selected pages for
11402 printing.
11403 (ps-print-ensure-fontified): Ensure fontification when jit-lock is on.
11404 (ps-end-file, ps-dummy-page): Funs eliminated.
11405 (ps-print-color-scale): Changed default value.
11406 (ps-page-n-up, ps-print-page-p): New internal vars.
11407 (ps-print-preprint, ps-output, ps-begin-file, ps-begin-page)
11408 (ps-plot-region, ps-generate, ps-end-job): Code fix.
11409
11410 * delim-col.el: Little programming improvement.
11411 (delimit-columns-str): New macro.
11412 (delimit-columns-region, delimit-columns-rectangle): Code fix.
11413
11414 2000-10-31 Kenichi Handa <handa@etl.go.jp>
11415
11416 * term/mac-win.el (decode-mac-roman, encode-mac-roman, mac-roman):
11417 Moved to european.el.
11418 (ccl-encode-mac-roman-font, fontset-mac): Modified for
11419 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
11420 (mac-roman-kbd-insert, mac-roman-kbd-mode): These functions deleted.
11421 (mac-roman-kbd-mode, mac-roman-kbd-mode-map): These variables deleted.
11422
11423 2000-10-30 Dave Love <fx@gnu.org>
11424
11425 * progmodes/cc-menus.el (imenu-generic-expression)
11426 (imenu-progress-message): Only defvar when compiling.
11427
11428 * emacs-lisp/elp.el (elp-unload-hook): New function.
11429
11430 * loadhist.el (unload-feature): Call elp-restore-function,
11431 checking for symbols; don't use elp-restore-all.
11432 (loadhist-hook-functions): Doc fix.
11433
11434 2000-10-30 Stefan Monnier <monnier@cs.yale.edu>
11435
11436 * log-edit.el (log-edit-confirm): Fix the default.
11437
11438 2000-10-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11439
11440 * delim-col.el: Little fix: replace delimit-columns-align-columns by
11441 delimit-columns-format.
11442 (delimit-columns-region, delimit-columns-rectangle): Code fix.
11443
11444 2000-10-30 Miles Bader <miles@lsi.nec.co.jp>
11445
11446 * comint.el (comint-replace-by-expanded-history): Don't use
11447 comint-get-old-input (we're not looking at *old* input).
11448 (comint-get-old-input-default): If using fields, signal an error
11449 when the point is not in an input field.
11450
11451 2000-10-30 Kenichi Handa <handa@etl.go.jp>
11452
11453 * international/mule-conf.el: New charsets mule-unicode-2500-33ff
11454 and mule-unicode-e000-ffff.
11455
11456 * international/mule.el (decode-char, encode-char): New functions.
11457 (make-coding-system): Accept a symbol of translation table as a
11458 value of property `safe-chars'.
11459
11460 * international/mule-cmds.el (encode-coding-char): Check property
11461 safe-chars instead of safe-charsets.
11462
11463 * international/fontset.el (fontset-default): Modified for
11464 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
11465 (x-font-name-charset-alist): Likewise.
11466 (ccl-encode-unicode-font): New CCL program. Record it in
11467 font-ccl-encoder-alist to be used for fonts "ISO10646-1".
11468
11469 * language/european.el (mac-roman-decoder, mac-roman-encoder):
11470 New translation tables.
11471 (decode-mac-roman, encode-mac-roman): Definition of these CCL
11472 programs are modified and moved from mac-win.el.
11473 (mac-roman): Definition of this coding system is modified and
11474 moved from mac-win.el.
11475
11476 2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
11477
11478 * ediff-wind.el (ediff-setup-control-frame): Enclose
11479 face-attribute in condition-case to avoid errors in older emacsen.
11480
11481 2000-10-29 Miles Bader <miles@gnu.org>
11482
11483 * custom.el (custom-add-to-group): Allow multiple entries for a
11484 given value OPTION, as long as their widget types are different.
11485 * cus-edit.el (custom-face-value-create): If face name doesn't end
11486 with "face", add such here (similar to custom group widgets).
11487
11488 * comint.el (comint-highlight-prompt): Add :type.
11489
11490 2000-10-28 John Wiegley <johnw@gnu.org>
11491
11492 * calendar/timeclock.el (timeclock-log): Doc fix.
11493 (timeclock-last-event): Doc fix.
11494 (timeclock-log): Kill the timelog buffer after appending a new event.
11495 (timeclock-find-discrep): Use a temp buffer to read in the
11496 timelog, instead of visiting the file.
11497 (timeclock-log-data): A new function, along with a host of helper
11498 functions, for the purpose of making timelog data accessible to
11499 programmers.
11500
11501 * eshell/esh-mode.el (window-height test): Make certain that
11502 `eshell-stringify-t' is non-nil.
11503 (eshell-password-prompt-regexp): Changed to a much simpler
11504 password regexp.
11505 (eshell-send-input): If `eshell-invoke-directly' returns t,
11506 directly invoke the parsed command using `eval'. This improves
11507 turn-around time on simple commands by a factor of three or
11508 greater, such as cd, ls, pwd, etc. -- which get used very often.
11509 It also conserves thousands of cons cells per call (since
11510 `eshell-do-eval' consumes memory like a Cookie Monster set loose
11511 in the Pacific Cookie Company).
11512
11513 * eshell/esh-test.el (eshell-test): Whitespace fix.
11514
11515 * eshell/em-ls.el (eshell-ls-insert-directory):
11516 Make `eshell-ls-initial-args' nil when inserting directory contents.
11517
11518 * eshell/em-script.el (eshell-script-initialize): Add names to
11519 `eshell-complex-commands, since `source' and `.' are complex.
11520
11521 * eshell/esh-cmd.el (eshell-rewrite-for-command)
11522 (eshell-rewrite-while-command): Use `eshell-protect' instead of
11523 `eshell-copy-handles'.
11524 (eshell-rewrite-if-command): Use `eshell-protect' to wrap the call
11525 bodies.
11526 (eshell-separate-commands): Whitespace fix.
11527 (eshell-complex-commands): Added a new list of names, for
11528 determining whether a given command is as simple as it looks.
11529 (eshell-invoke-directly): New function. Returns t if a command
11530 should be invoked directly (using `eval'), rather than indirectly
11531 using `eshell-do-eval'.
11532 (eshell-do-eval): Whitespace fix.
11533
11534 * eshell/em-unix.el (eshell-default-target-is-dot): New variable,
11535 which provides an emulation of the DOS shell behavior of assuming
11536 that cp/mv/ln should copy/move/link to the current directory.
11537 (eshell-remove-entries): Added a doc string.
11538 (eshell-shuffle-files): Removed the check for `target' being null.
11539 (eshell-mvcp-template, eshell-mvcpln-template): Renamed
11540 `eshell-mvcp-template' to `eshell-mvcpln-template', and extended
11541 it to do a smarter check of whether a destination was provided.
11542 (eshell/mv, eshell/cp): Enable `:preserve-args'.
11543 (eshell/ln): Enable `:preserve-args', and use
11544 `eshell-mvcpln-template' to implement the body of the function.
11545 (eshell/cat, eshell/make, eshell-poor-mans-grep, eshell-grep)
11546 (eshell/du, eshell/diff, eshell/locate): Stringify the argument
11547 list after flattening it. This makes it possible to cat files
11548 with numerical names.
11549 (eshell-unix-initialize): Added several names to
11550 `eshell-complex-commands.
11551 (eshell-unix-command-complex-p): Return t if a given command name
11552 may result in external processes being invoked.
11553
11554 * eshell/em-glob.el (eshell-glob-show-progress): Make this
11555 variable nil by default, since it slows down glob processing by a
11556 factor of two or more, and increases memory consumption.
11557
11558 * eshell/em-smart.el: Added a note about how memory consumptive
11559 smart display mode can be (at least this is true in Emacs 21).
11560 (eshell-smart-initialize): Whitespace fix.
11561 (eshell-refresh-windows): Use `if' instead of `when'.
11562 (eshell-smart-scroll-window): Calling `save-current-buffer' was
11563 not necessary.
11564 (eshell-currently-handling-window): Added a missing global variable.
11565
11566 * eshell/em-ls.el (eshell-do-ls): Code simplification.
11567 (eshell-ls-sort-entries, eshell-ls-entries, eshell-ls-dir):
11568 Whitespace fix.
11569 (eshell-ls-exclude-hidden): Added this variable in addition to
11570 `eshell-ls-exclude-regexp'. This one prevents files beginning
11571 with . from even being read, which can improve memory consumption
11572 quite a bit.
11573 (eshell-ls-dir): If `eshell-ls-exclude-hidden' is non-nil, do not
11574 read file entries beginning with a dot. In home directories with
11575 lots of hidden files, fully two-thirds of the time spent in ls is
11576 used to read directory entries that are immediately thrown away.
11577 (eshell-ls-initial-args): Added back this configuration variable,
11578 for specifying default initial arguments to every call to ls.
11579 Much faster than using an alias to do the same thing.
11580 (eshell-do-ls): Use `eshell-ls-initial-args', if set.
11581 (eshell-ls-dir): Whitespace change.
11582
11583 * eshell/em-dirs.el (eshell/pwd): Small code simplification.
11584
11585 * eshell/esh-util.el: Don't require `ange-ftp' if it's not available.
11586 (eshell-stringify-t): Added a customization variable, to indicate
11587 whether `t' should be rendered as a string at all. If not, one
11588 can still determine if the result of an expression is true using
11589 "file-exists-p FILE && echo true".
11590 (eshell-stringify): If `eshell-stringify-t' is nil, don't
11591 stringify t!
11592
11593 * eshell/esh-module.el: Whitespace fix.
11594
11595 * eshell/em-alias.el (eshell-alias-initialize):
11596 Added `eshell-command-aliased-p' to `eshell-complex-commands'.
11597 (eshell-command-aliased-p): New function that returns t if a
11598 command name names an aliased.
11599
11600 2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
11601
11602 * viper-cmd.el (viper-preserve-cursor-color): New test that avoids
11603 redrawing the screen when changing cursor color.
11604 (viper-insert-state-pre-command-sentinel)
11605 (viper-replace-state-pre-command-sentinel)
11606 (viper-replace-state-post-command-sentinel):
11607 Use viper-preserve-cursor-color.
11608 Many functions changed to use viper= instead of = when comparing
11609 characters.
11610 * viper-util.el (viper-memq-char,viper=): New functions for
11611 working with characters.
11612 (viper-change-cursor-color): Fixed buglet.
11613 Many functions changed to use viper= instead of = when comparing
11614 characters.
11615 * viper.el (viper-insert-state-mode-list): Added eshell.
11616
11617 * ediff-init.el (ediff-before-setup-hook): New hook.
11618 Several typos fixed in various docstrings.
11619 * ediff-merg.el (ediff-show-clashes-only): Docstring typo fixed.
11620 * ediff-nult.el (ediff-before-session-group-setup-hooks): New hook.
11621 (ediff-show-meta-buffer): Run ediff-before-session-group-setup-hooks.
11622 * ediff-util.el (ediff-setup): Run ediff-before-setup-hook.
11623 (ediff-other-buffer): Use selected buffers if in Buffer-menu buffer.
11624 (ediff-get-selected-buffers): New function.
11625 * ediff-vers.el (ediff-vc-internal,ediff-rcs-internal)
11626 (ediff-vc-merge-internal,ediff-rcs-merge-internal):
11627 Use save-window-excursion.
11628 * ediff-wind.el (ediff-skip-unsuitable-frames): More robust
11629 termination check in while loop.
11630 * ediff.el (ediff-get-default-file-name): Better defaults when in
11631 dired buffer.
11632 (ediff-files,ediff-merge-files,ediff-files3)
11633 (ediff-merge-files-with-ancestor): Use ediff-get-default-file-name.
11634
11635 2000-10-28 Dave Love <fx@gnu.org>
11636
11637 * info.el (Info-fontify-node): Add help-echo for menu items.
11638
11639 2000-10-28 Eli Zaretskii <eliz@is.elta.co.il>
11640
11641 * startup.el (normal-top-level): If the value of $TERM indicates
11642 we are running from xterm or one of its work-alikes, default to a
11643 light background mode.
11644
11645 Support for -fg, -bg, and -rv command-line arguments for TTYs:
11646 * faces.el (tty-handle-reverse-video): New function.
11647 (tty-create-frame-with-faces): Call it.
11648
11649 * frame.el (frame-notice-user-settings): Don't apply
11650 default-frame-alist and initial-frame-alist to MS-DOS frames.
11651 Call tty-handle-reverse-video, frame-set-background-mode, and
11652 face-set-after-frame-default for non-MS-DOS frames.
11653
11654 * startup.el (tty-long-option-alist): New variable.
11655 (tty-handle-args): New function.
11656 (command-line): Call tty-handle-args.
11657
11658 * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove;
11659 startup.el now does that for all character-terminal frames.
11660
11661 2000-10-28 Miles Bader <miles@gnu.org>
11662
11663 * emacs-lisp/easy-mmode.el (define-minor-mode):
11664 Generate `turn-on-MODE' and `turn-off-MODE' functions unless the mode
11665 is global. If :global is followed by a non-nil but non-t value,
11666 make the mode buffer-local, but also generate a `global-MODE'
11667 version using `easy-mmode-define-global-mode'.
11668 Add :conditional-turn-on keyword argument.
11669
11670 2000-10-28 Dave Love <fx@gnu.org>
11671
11672 * international/latin1-disp.el (latin1-char-displayable-p):
11673 Don't use window-system.
11674
11675 2000-10-27 Eli Zaretskii <eliz@is.elta.co.il>
11676
11677 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
11678 Don't call find-buffer-file-type-coding-system. Instead, just
11679 set eol-type to -unix if inhibit-eol-conversion is in effect, or
11680 if the file is on an untranslated filesystem.
11681 (add-untranslated-filesystem): Use "D" instead of "f" inside
11682 interactive.
11683
11684 2000-10-27 Dave Love <fx@gnu.org>
11685
11686 * textmodes/refill.el (refill-late-fill-paragraph-function): New var.
11687 (refill-mode): Use it.
11688
11689 2000-10-27 Stefan Monnier <monnier@cs.yale.edu>
11690
11691 * international/quail.el (quail-activate): Don't make-local-hook.
11692
11693 2000-10-27 Andre Spiegel <spiegel@gnu.org>
11694
11695 * vc-hooks.el (vc-version-backup-file-name): Use file.~<rev>~ for
11696 manual backups and file.~<rev>.~ for automatic ones.
11697 (vc-make-version-backup): Don't do it on MS-DOS without long file
11698 names.
11699
11700 * vc.el (vc-version-other-window): If an automatic backup of the
11701 desired version exists, rename it instead of copying it.
11702
11703 * vc-cvs.el (vc-cvs-checkin): Check both status and error message
11704 after command. If there's an unexpected error, signal it instead
11705 of being silent.
11706 (vc-cvs-merge-news): Be prepared for no news at all.
11707
11708 2000-10-27 Miles Bader <miles@lsi.nec.co.jp>
11709
11710 * shell.el (shell): Add BUFFER argument.
11711 * comint.el (make-comint-in-buffer): New function.
11712 (make-comint): Use it.
11713
11714 * faces.el (face-spec-choose): Change syntax so that the list of
11715 attribute-value pairs is now the cdr of each clause, not the cadr.
11716 Detect old-style entries, and handle them. Use pop.
11717
11718 2000-10-26 Stefan Monnier <monnier@cs.yale.edu>
11719
11720 * cus-edit.el (custom-mode-map): Use a sparse map.
11721 (custom-mode): Don't bother with make-local-hook.
11722
11723 * wid-edit.el (widget-add-change): Don't bother with make-local-hook.
11724
11725 * vc.el (vc-start-entry): Only erase the buffer if comment is set.
11726
11727 2000-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11728
11729 * ps-print.el: Avoid compilation gripes.
11730 (ps-print-version): New version number (6.2.1).
11731
11732 2000-10-26 Dave Love <fx@gnu.org>
11733
11734 * menu-bar.el: Modify some menu item help strings.
11735 (menu-bar-help-menu): Add link to MORE.STUFF.
11736
11737 * cus-edit.el (custom-mode): Add `special' mode-class property.
11738
11739 * wid-browse.el (widget-browse-mode): Likewise.
11740
11741 * wid-edit.el (widget-specify-field): Revert to using local-map
11742 property, not keymap.
11743
11744 2000-10-26 Miles Bader <miles@lsi.nec.co.jp>
11745
11746 * wid-edit.el (widget-field-end): When checking for a `boundary'
11747 field, do so in the correct buffer.
11748
11749 * simple.el (undo): Correctly distinguish between numeric and
11750 non-numeric prefix args in non-transient-mark-mode, as per the doc
11751 string. When in transient-mark-mode, treat all prefix-args as
11752 numeric.
11753
11754 * simple.el (previous-matching-history-element): Miscellaneous cleanup.
11755 Position point on match. Handle N == 0 correctly.
11756
11757 * comint.el (comint-mode): Locally set `next-line-add-newlines' to nil.
11758 (comint-mode-map): Reverse order of `comint-write-output' and
11759 `comint-append-output-to-file'.
11760 (comint-append-output-to-file): Reinstate this function, for the
11761 benefit of the menu.
11762
11763 2000-10-25 Stefan Monnier <monnier@cs.yale.edu>
11764
11765 * vc.el (vc-version-other-window): Bind `file'.
11766
11767 2000-10-25 Gerd Moellmann <gerd@gnu.org>
11768
11769 * Makefile.in (update-authors): New target for maintenance purposes.
11770
11771 * emacs-lisp/authors.el (batch-update-authors): New function.
11772 (authors-fixed-entries): New defconst.
11773 (authors-add-fixed-entries): New function.
11774 (authors): Call it.: Don't process lispref/.
11775
11776 2000-10-25 Jason Rumney <jasonr@gnu.org>
11777
11778 * cus-edit.el (custom-button-face, custom-button-pressed-face):
11779 Merge x w32 and mac definitions.
11780
11781 2000-10-25 Gerd Moellmann <gerd@gnu.org>
11782
11783 * menu-bar.el (menu-bar-options-menu): Add a help string for
11784 `uniquify'.
11785
11786 2000-10-25 Stephen Gildea <gildea@stop.mail-abuse.org>
11787
11788 * time-stamp.el (time-stamp-string-preprocess):
11789 Fix a wrong type argument error.
11790
11791 2000-10-25 Miles Bader <miles@gnu.org>
11792
11793 * recentf.el (recentf-mode): Variable removed.
11794 (recentf-mode): Use `define-minor-mode'.
11795
11796 * mwheel.el (mouse-wheel-mode): New global minor mode.
11797 (mwheel-install): Use `mouse-wheel-mode'.
11798
11799 2000-10-25 Dave Love <fx@gnu.org>
11800
11801 * progmodes/cperl-mode.el (cperl-mode):
11802 Set normal-auto-fill-function correctly.
11803
11804 * wid-edit.el (widget-field-keymap, widget-text-keymap):
11805 Don't inherit from global-map and don't nullify menu-bar and tool-bar
11806 bindings.
11807
11808 2000-10-25 Miles Bader <miles@lsi.nec.co.jp>
11809
11810 * wid-edit.el (widget-field-at): New function.
11811 (widget-at, widget-field-activate): Use it.
11812 (widget-tabable-at): Use `widget-at'.
11813 (widget-specify-field): If the terminating character of the widget
11814 field (which is read-only) is a newline, put it into a special
11815 `boundary' field so that C-n/C-p act more naturally.
11816 (widget-field-end): Also don't subtract one if a special
11817 `boundary' field has been added after the widget field.
11818
11819 * comint.el (comint-output-filter, comint-send-input):
11820 Don't bother adding stickiness fields to overlays to fool the field
11821 code, since it should notice the overlay insertion-types now.
11822
11823 * wid-edit.el (widget-beginning-of-line, widget-end-of-line):
11824 Replace with aliases of the normal emacs b-o-l/e-o-l functions.
11825 (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e.
11826
11827 2000-10-24 Gerd Moellmann <gerd@gnu.org>
11828
11829 * emacs-lisp/authors.el (authors-aliases): Add some more aliases.
11830 (authors): Set file coding system to iso-2022-7bit.
11831 Add file-local variables to output buffer.
11832
11833 * files.el (after-find-file): Don't print any warnings if
11834 WARN is nil.
11835
11836 2000-10-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11837
11838 * ps-print.el (ps-generate): Fix odd/even pages printing bug.
11839
11840 * delim-col.el: Now there is a column formatting mechanism.
11841 Modified to customization mechanisms convention. Doc fix.
11842 (columns): New group for delim-col.
11843 (delimit-columns-before, delimit-columns-after)
11844 (delimit-columns-format, delimit-columns-extra, delimit-columns-start)
11845 (delimit-columns-end): New vars.
11846 (delimit-columns-customize, delimit-columns-format): New funs.
11847 (delimit-columns-region, delimit-columns-rectangle)
11848 (delimit-columns-rectangle-line): Modified to support column
11849 formatting.
11850
11851 2000-10-24 Dave Love <fx@gnu.org>
11852
11853 * log-edit.el (log-edit): Add :version and a :group for vc.
11854
11855 2000-10-24 Gerd Moellmann <gerd@gnu.org>
11856
11857 * files.el (after-find-file): Don't print a message ``New file''
11858 if WARN is nil.
11859
11860 * wid-edit.el (widget-field-keymap, widget-text-keymap):
11861 Define the tool-bar map as nil, as for the menu-bar. Otherwise, we'll
11862 get duplicate tool-bar entries because we'll see the global ones
11863 on more than one path through keymaps.
11864
11865 * emacs-lisp/lisp.el (defun-prompt-regexp): Doc fix.
11866
11867 * progmodes/cmacexp.el: Change Francesco's email address.
11868
11869 2000-10-24 Kenichi Handa <handa@etl.go.jp>
11870
11871 * window.el (fit-window-to-buffer): Adjust point of the window
11872 buffer, not that of the current buffer.
11873
11874 2000-10-24 Eli Zaretskii <eliz@is.elta.co.il>
11875
11876 * progmodes/cmacexp.el: Update the euthor's email address.
11877
11878 2000-10-24 Miles Bader <miles@lsi.nec.co.jp>
11879
11880 * faces.el (face-spec-set-match-display): Add `graphic' display
11881 type (the inverse of `tty'). Use `display-graphic-p' instead of
11882 the window-system variable.
11883
11884 2000-10-24 Kenichi Handa <handa@etl.go.jp>
11885
11886 * international/isearch-x.el (isearch-with-input-method):
11887 Call input-method-function with the first event in
11888 unread-command-events.
11889
11890 2000-10-24 Miles Bader <miles@lsi.nec.co.jp>
11891
11892 * faces.el (face-default-spec, face-user-default-spec): Make defsubsts.
11893
11894 2000-10-24 Andrew Choi <akochoi@i-cable.com>
11895
11896 * international/mule-conf.el (mac-roman-lower, mac-roman-upper):
11897 New charsets.
11898
11899 * term/mac-win.el: Remove definitions of mac-roman-lower and
11900 mac-roman-upper, require dired, and define instead of set
11901 mac-ready-for-drag-n-drop to avoid compilation error.
11902
11903 2000-10-23 Andrew Innes <andrewi@gnu.org>
11904
11905 * files.el (make-backup-file-name-1) [windowsnt, ms-dos]:
11906 Remove superfluous calls to subst-char-in-string; instead apply
11907 expand-file-name after convert-standard-filename to ensure
11908 expected directory separators are used.
11909
11910 2000-10-23 Eli Zaretskii <eliz@is.elta.co.il>
11911
11912 * info.el (Info-file-list-for-emacs): Add an entry for Eshell.
11913
11914 2000-10-23 Dave Love <fx@gnu.org>
11915
11916 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
11917 (tool-bar-add-item): Set foreground and background for XBM icons.
11918
11919 * international/latin1-disp.el (latin1-char-displayable-p):
11920 New function (from Handa).
11921 (latin1-display-check-font): Use it.
11922
11923 * imenu.el (imenu--create-keymap-2): Build menu with menu-item
11924 using :key-sequence, making it much more usable.
11925 Use nconc, not append.
11926 (imenu--create-keymap-1): Avoid append.
11927
11928 * textmodes/refill.el: Remove bits redundant with define-minor-mode.
11929
11930 2000-10-23 Miles Bader <miles@lsi.nec.co.jp>
11931
11932 [the following changes fix a bug where `define-minor-mode' didn't
11933 correctly generate :require clauses for defcustoms in compiled files]
11934 * emacs-lisp/bytecomp.el (byte-compile-last-logged-file): New variable.
11935 (byte-compile-log-file, byte-compile-log-1): Don't set
11936 `byte-compile-current-file' to nil. Instead set
11937 `byte-compile-last-logged-file' to it. Test whether
11938 byte-compile-current-file equals byte-compile-last-logged-file
11939 instead of whether its nil.
11940 (byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
11941
11942 2000-10-23 Stefan Monnier <monnier@cs.yale.edu>
11943
11944 * textmodes/refill.el: Fix var names in doc.
11945 (refill-mode): Don't bother with make-local-hook anymore.
11946
11947 2000-10-23 Miles Bader <miles@lsi.nec.co.jp>
11948
11949 * faces.el (face-user-default-spec, face-default-spec): New functions.
11950 (face-spec-choose, face-spec-set): Document nil-SPEC behavior.
11951 (frame-set-background-mode, face-set-after-frame-default):
11952 Use `face-user-default-spec'. Simplify code slightly.
11953
11954 * woman.el (woman-italic-face, woman-bold-face)
11955 (woman-unknown-face): Add dark-background variants.
11956 (woman-default-faces): Renamed from `woman-colour-faces'.
11957 Set using the stored defaults, rather than using hard-wired colors.
11958 (woman-monochrome-faces): Renamed from `woman-black-faces'.
11959 Just make the foreground `unspecified' rather than "black".
11960 (woman-menu): Rename menu entries accordingly.
11961
11962 * faces.el (header-line): Make more reasonable on mono/grayscale
11963 displays.
11964
11965 2000-10-23 Andrew Choi <akochoi@i-cable.com>
11966
11967 * cus-edit.el (custom-button-face): Use 3D look for mac.
11968 (custom-button-pressed-face): Likewise.
11969
11970 * faces.el (set-face-attributes-from-resources): Handle mac frames
11971 in the same way as x and w32 frames.
11972 (face-valid-attribute-values): Likewise.
11973 (read-face-attribute): Likewise.
11974 (defined-colors): Likewise.
11975 (color-defined-p): Likewise.
11976 (color-values): Likewise.
11977 (display-grayscale-p): Likewise.
11978 (face-set-after-frame-default): Likewise.
11979 (mode-line): Same default face as for x and w32.
11980 (tool-bar): Likewise.
11981
11982 * frame.el: Remove call to frame-notice-user-settings at end of
11983 the file.
11984
11985 * info.el (Info-fontify-node): Make underlines invisible for mac
11986 as for x, pc, and w32 frame types.
11987
11988 * term/mac-win.el: New file.
11989
11990 2000-10-22 Dave Love <fx@gnu.org>
11991
11992 * textmodes/refill.el: New file.
11993
11994 2000-10-22 Andre Spiegel <spiegel@gnu.org>
11995
11996 * vc-hooks.el (vc-version-backup-file-name): New optional args
11997 MANUAL and REGEXP.
11998 (vc-delete-automatic-version-backups, vc-make-version-backup):
11999 New functions.
12000 (vc-before-save): Use the latter.
12001 (vc-default-make-version-backups-p): Added `-p' suffix to avoid
12002 confusion.
12003
12004 * vc-cvs.el (vc-cvs-make-version-backups-p): Added `-p' suffix as
12005 expected by vc[-hooks].el.
12006
12007 * vc.el (vc-checkout): Added `-p' suffix in call to
12008 vc-make-version-backups-p; use vc-make-version-backup to actually
12009 make the backup.
12010 (vc-version-other-window, vc-version-backup-file): Handle both
12011 automatic and manual backups.
12012 (vc-revert-file): Use vc-delete-automatic-version-backups to get rid
12013 of all of them.
12014
12015 2000-10-22 Miles Bader <miles@gnu.org>
12016
12017 * comint.el (comint-highlight-input, comint-highlight-prompt):
12018 Renamed, `-face' at end removed.
12019 (comint-send-input, comint-output-filter): Use renamed faces.
12020
12021 * window.el (fit-window-to-buffer): Change defaulting of
12022 MAX-HEIGHT slightly.
12023
12024 * faces.el (color-values, color-defined-p): Use `member', not
12025 `memq', because it works correctly for strings.
12026 (frame-set-background-mode): Actually, "unspecified-fg" and
12027 "unspecified-bg" *are* strings. Use `member', not `memq', and
12028 `equal', not `eq', when a string value is possible.
12029
12030 2000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
12031
12032 * info.el (Info-file-list-for-emacs): Add an entry for Speedbar.
12033
12034 2000-10-21 Stefan Monnier <monnier@cs.yale.edu>
12035
12036 * progmodes/sh-script.el (sh-mode-map): Remove bindings for
12037 sh-electric-rparen, sh-electric-less and sh-electric-hash.
12038 (sh-st-punc, sh-here-doc-syntax): Use string-to-syntax.
12039 (sh-font-lock-heredoc, sh-font-lock-paren): New funs.
12040 (sh-font-lock-syntactic-keywords): Use them.
12041 (sh-heredoc-face, sh-st-face, sh-special-syntax): Remove.
12042 (sh-mkword-regexp, sh-electric-rparen-needed-here): Remove.
12043 (sh-mode): Don't override font-lock-unfontify-region-function.
12044 Use a copy of sh-font-lock-syntactic-keywords.
12045 (sh-set-shell): Don't set sh-electric-rparen-needed-here.
12046 Don't call sh-scan-buffer since font-lock does it on the fly.
12047 (sh-get-indent-info): Use `face' rather than `syntax-table'
12048 text-property to detect here-documents.
12049 Replace sh-special-syntax with sh-st-punc.
12050 (sh-prev-line): Use `face' rather than `syntax-table'
12051 text-property to skip over here-documents.
12052 (sh-font-lock-unfontify-region-function, sh-check-paren-in-case)
12053 (sh-set-char-syntax, sh-electric-rparen, sh-electric-hash)
12054 (sh-electric-less, sh-set-here-doc-region)
12055 (sh-remove-our-text-properties, sh-search-word, sh-scan-case)
12056 (sh-scan-buffer, sh-rescan-buffer): Remove.
12057
12058 2000-10-21 Andrew Innes <andrewi@gnu.org>
12059
12060 * w32-fns.el (make-auto-save-file-name): Don't apply conversion to
12061 remote (ange-ftp) file names.
12062
12063 2000-10-21 Miles Bader <miles@gnu.org>
12064
12065 * window.el (fit-window-to-buffer): New function.
12066 (shrink-window-if-larger-than-buffer): Use it.
12067 (window-text-height): Don't expect minibuffers to have mode-lines.
12068
12069 * help.el (resize-temp-buffer-window): Use `fit-window-to-buffer'.
12070 * international/quail.el (quail-update-guidance):
12071 Use `fit-window-to-buffer' instead of `set-window-text-height'.
12072
12073 * international/quail.el (quail-show-guidance-buf): Make sure
12074 guidance window really has enough room.
12075 (quail-update-guidance): If quail-guidance-win is already shown,
12076 make sure its height is OK.
12077
12078 * window.el (window-text-height, set-window-text-height):
12079 New functions.
12080 (shrink-window-if-larger-than-buffer): Use `window-text-height'
12081 instead of `window-height' & `mode-line-window-height-fudge'.
12082 (mode-line-window-height-fudge): Add FACE parameter.
12083 * help.el (resize-temp-buffer-window): Use `set-window-text-height'
12084 instead of `enlarge-window' & `mode-line-window-height-fudge'.
12085
12086 2000-10-20 Miles Bader <miles@gnu.org>
12087
12088 * window.el (height-affecting-face-attributes): Use `defconst'.
12089
12090 * textmodes/ispell.el (ispell-mode-line-window-height-fudge):
12091 New function, conditionally aliased to `mode-line-window-height-fudge'.
12092 (ispell-help): Use it.
12093 (ispell-choices-win-default-height): Don't include mode-line fudge.
12094 (ispell-choices-win-default-height): New function.
12095 (ispell-show-choices, ispell-command-loop): Use function
12096 `ispell-choices-win-default-height' instead of variable.
12097
12098 2000-10-20 Miles Bader <miles@lsi.nec.co.jp>
12099
12100 * window.el (mode-line-window-height-fudge): New variable.
12101 (height-affecting-face-attributes): New variable.
12102 (mode-line-window-height-fudge): New function.
12103 (shrink-window-if-larger-than-buffer): Use it.
12104 * help.el (resize-temp-buffer-window): Likewise.
12105
12106 * info.el (Info-fontify-node): Add support for @subsubsection
12107 titles, which use `Info-title-4-face'.
12108 (Info-title-4-face): New face.
12109 (Info-title-3-face): Inherit from Info-title-4-face instead of
12110 variable-pitch.
12111
12112 2000-10-19 Jason Rumney <jasonr@gnu.org>
12113
12114 * dired.el (dired-insert-directory): Do not let errors signalled by
12115 attempt to run dired-free-space-program prevent dired from working.
12116
12117 2000-10-19 Stefan Monnier <monnier@cs.yale.edu>
12118
12119 * diff-mode.el (diff-find-file-name): Fix regex subgroup number.
12120
12121 2000-10-19 Gerd Moellmann <gerd@gnu.org>
12122
12123 * dirtrack.el (dirtrack): Fix call to run-hooks.
12124
12125 * cmuscheme.el (cmuscheme-program-name): Renamed from
12126 scheme-program-name because xscheme.el contains a defcustom with
12127 the same name. As a consequence, customizing group `cmuscheme'
12128 loaded `xscheme' which redefined run-scheme.
12129 (run-scheme): Use cmuscheme-program-name.
12130
12131 * ps-print.el (ps-print-emacs-type): Move into the eval-and-compile.
12132
12133 * play/doctor.el (doctor-death): Update the Samaritans'
12134 anonymous address, and add a website for Befrienders International.
12135
12136 2000-10-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12137
12138 * ps-print.el: Even/odd pages fix. Fix little bug on XEmacs.
12139 Avoid compilation gripes. Doc fix.
12140 (ps-print-version): New version number (6.2).
12141 (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
12142 (ps-x-color-name, ps-x-color-specifier-p, ps-x-copy-coding-system)
12143 (ps-x-device-class, ps-x-extent-end-position, ps-x-extent-face)
12144 (ps-x-extent-priority, ps-x-extent-start-position)
12145 (ps-x-face-font-instance, ps-x-find-coding-system)
12146 (ps-x-font-instance-properties, ps-x-make-color-instance)
12147 (ps-x-map-extents): Alias for functions without the prefix `ps-x-', to
12148 avoid compilation gripes without defining functions.
12149 (ps-e-find-composition): Alias for function find-composition, to have a
12150 suitable function depending on Emacs version.
12151 (ps-color-device, ps-color-values, ps-face-foreground-name)
12152 (ps-face-background-name, ps-face-bold-p, ps-face-italic-p, ps-mapper)
12153 (ps-extent-sorter, ps-xemacs-face-kind-p, ps-xemacs-color-name)
12154 (ps-print-ensure-fontified): Function definitions surrounded by
12155 `eval-and-compile' to avoid compilation gripes.
12156 (ps-font-lock-face-attributes): `font-lock-face-attributes' evaluated
12157 by symbol-value to avoid compilation gripes.
12158 (ps-end-file, ps-header-sheet, ps-plot-region): Even/odd pages fix.
12159 (ps-generate-postscript-with-faces): Fix little bug on XEmacs.
12160
12161 2000-10-19 Miles Bader <miles@lsi.nec.co.jp>
12162
12163 * startup.el (normal-top-level): Call `frame-set-background-mode'
12164 after `frame-notice-user-settings' because the latter doesn't call
12165 the former on a tty.
12166
12167 * faces.el (frame-set-background-mode): `unspecified' &c are
12168 symbols, not strings.
12169
12170 2000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
12171
12172 * term/tty-colors.el (color-name-rgb-alist): Add a comment explaining
12173 why some "light*" colors are deliberately absent from the alist.
12174
12175 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face):
12176 Change colors for tty's, as suggested by Miles Bader.
12177
12178 2000-10-19 Kenichi Handa <handa@etl.go.jp>
12179
12180 * international/fontset.el: Use registry "MuleTibetan-2" for Tibetan.
12181 (ccl-encode-mule-unicode-0100-24ff): New CCL program. Register it
12182 for ISO10646-1 fonts.
12183 (x-font-name-charset-alist): Add an entry for "iso10646-1".
12184
12185 2000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
12186
12187 * faces.el (frame-set-background-mode): If a tty frame defines a
12188 background color, use that to compute the background mode, instead
12189 of always defaulting to "dark".
12190
12191 2000-10-19 Miles Bader <miles@lsi.nec.co.jp>
12192
12193 * comint.el (comint-write-output): New function.
12194 (comint-mode-map): Add it to the menu.
12195 Bind `C-c C-s' to comint-write-output.
12196
12197 2000-10-18 Gerd Moellmann <gerd@gnu.org>
12198
12199 * startup.el (fancy-splash-screens): Set buffer-undo-list to t.
12200 Use fancy-splash-delay.
12201
12202 2000-10-18 Alex Schroeder <alex@gnu.org>
12203
12204 * progmodes/sql.el (sql-sybase-options): New option.
12205 (sql-sybase): Use it. Add sql-database to the list of parameters
12206 provided for login. The options -w 2048 -n are not used any more.
12207
12208 * comint.el (comint-read-input-ring): Bugfix such that the first
12209 and the last entry of the input ring file are not lost.
12210
12211 2000-10-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12212
12213 * ps-print.el: Internal variable changes to defcustom,
12214 make-local-hook changes to defvar. Doc fix.
12215 (ps-print-version): New version number (6.1).
12216 (ps-setup, ps-do-despool): Code fix.
12217 (ps-printer-name): Customization fix.
12218 (ps-printer-name-option): Now is a defcustom instead of an
12219 internal variable.
12220 (ps-print-hook, ps-print-begin-sheet-hook, ps-print-begin-page-hook)
12221 (ps-print-begin-column-hook): Now are defvar instead of
12222 make-local-hook.
12223
12224 2000-10-18 Miles Bader <miles@gnu.org>
12225
12226 * comint.el (comint-delete-output): Renamed from `comint-kill-output'.
12227 (comint-kill-output): Changed into an alias for `comint-delete-output',
12228 and made obsolete.
12229 (comint-mode-map): Rename references to comint-kill-output.
12230
12231 2000-10-18 Eli Zaretskii <eliz@is.elta.co.il>
12232
12233 * diff-mode.el (diff-header-face, diff-file-header-face)
12234 (diff-changed-face): Add bold and italic attributes to tty faces.
12235 (diff-function-face): New face.
12236 (diff-font-lock-keywords): Use it.
12237
12238 2000-10-18 Miles Bader <miles@lsi.nec.co.jp>
12239
12240 * comint.el (comint-output-filter): Fixup comint-last-input-end too.
12241 Remove commented-out call to force-mode-line-update.
12242 (comint-kill-output): Use `forward-line 0' instead of
12243 beginning-of-line to make sure we get past the prompt.
12244
12245 2000-10-17 Stefan Monnier <monnier@cs.yale.edu>
12246
12247 * diff-mode.el (diff-header-face, diff-file-header-face):
12248 Add specific setting for dark background.
12249 (diff-context-face): Renamed from diff-comment-face.
12250 Set explicitly rather than inheriting from font-lock-comment-face.
12251
12252 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
12253
12254 * startup.el (command-line): Move the code which sets the default
12255 TTY colors to before before-init-hook.
12256
12257 2000-10-17 Gerd Moellmann <gerd@gnu.org>
12258
12259 * jit-lock.el (jit-lock-stealth-time): Doc fix.
12260
12261 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
12262
12263 * files.el (auto-mode-alist): Add .dif and .pat as diff-mode
12264 extensions, for MS-DOS.
12265
12266 * diff-mode.el (diff-header-face, diff-file-header-face)
12267 (diff-changed-face): Define tty-specific colors.
12268
12269 2000-10-17 Gerd Moellmann <gerd@gnu.org>
12270
12271 * startup.el (fancy-splash-text): Realign the text.
12272
12273 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
12274
12275 * font-lock.el (font-lock-comment-face): Define a separate default
12276 for dark-background tty's.
12277
12278 2000-10-17 Miles Bader <miles@gnu.org>
12279
12280 * help.el (resize-temp-buffer-window): Add hack to avoid last line
12281 being obscured by whizzy mode-lines on graphics displays.
12282
12283 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
12284
12285 * info.el (Info-title-1-face, Info-title-2-face)
12286 (Info-title-3-face): Define colors for tty's.
12287 (info-header-node): Remove unneeded tty-specific definition.
12288
12289 2000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
12290
12291 * term/pc-win.el (msdos-handle-reverse-video): Don't remove
12292 reverse from the frame parameters, and don't invert foreground and
12293 background colors.
12294
12295 2000-10-16 Miles Bader <miles@gnu.org>
12296
12297 * info.el (Info-set-mode-line): Use `%b' instead of hardwired
12298 string "*Info*". Call propertized-buffer-identification to spruce
12299 up the result.
12300
12301 2000-10-16 Gerd Moellmann <gerd@gnu.org>
12302
12303 * help.el: Provide `help' for the sake of define-minor-mode
12304 which generates defcustoms with requires.
12305
12306 * jit-lock.el (jit-lock-after-change): If we're in text that
12307 matches a multi-line font-lock pattern, make sure the whole text
12308 will be redisplayed.
12309
12310 * emacs-lisp/authors.el (authors-add): Don't add an entry if
12311 author's name is unknown.
12312
12313 * eshell/esh-var.el, eshell/esh-util.el, eshell/esh-test.el,
12314 * eshell/esh-proc.el, eshell/esh-opt.el, eshell/esh-mode.el,
12315 * eshell/esh-maint.el, eshell/esh-io.el, eshell/esh-ext.el,
12316 * eshell/esh-cmd.el, eshell/esh-arg.el, eshell/em-xtra.el,
12317 * eshell/em-unix.el, eshell/em-term.el, eshell/em-smart.el,
12318 * eshell/em-script.el, eshell/em-rebind.el, eshell/em-prompt.el,
12319 * eshell/em-pred.el, eshell/em-ls.el, eshell/em-hist.el,
12320 * eshell/em-glob.el, shell/em-dirs.el, eshell/em-cmpl.el,
12321 * eshell/em-basic.el, eshell/em-banner.el, eshell/em-alias.el:
12322 Add author information.
12323
12324 2000-10-16 Miles Bader <miles@lsi.nec.co.jp>
12325
12326 * toolbar/up_arrow.xpm, toolbar/right_arrow.xpm:
12327 * toolbar/left_arrow.xpm, toolbar/home.xpm: Re-convert from
12328 full-color version (using the Gimp) to eliminate dithering artifacts.
12329
12330 2000-10-15 Stefan Monnier <monnier@cs.yale.edu>
12331
12332 * font-lock.el (font-lock-syntactic-keywords): Fix docstring.
12333
12334 * simple.el (syntax-flag-table, string-to-syntax): Remove.
12335
12336 2000-10-15 Dave Love <fx@gnu.org>
12337
12338 * progmodes/sh-script.el: Require skeleton and comint when compiling.
12339
12340 * pcomplete.el (pcomplete) <defgroup>: Add :version.
12341
12342 * whitespace.el: Doc fixes.
12343 (top-level): Don't add hooks here.
12344 (whitespace-running-emacs): Deleted.
12345 (timer): Don't require.
12346 (whitespace): Add back :version conditional on xemacs test.
12347 (whitespace-spacetab-regexp, whitespace-indent-regexp)
12348 (whitespace-ateol-regexp, whitespace-modes): Fix custom type.
12349 (whitespace-force-mode-line-update, whitespace-refresh-rescan-list)
12350 (whitespace-tickle-timer, whitespace-rescan-files-in-buffers):
12351 Avoid specific xemacs test.
12352 (whitespace-global-mode): New option.
12353 (whitespace-global-mode): New command.
12354 (whitespace-unload-hook): New function.
12355
12356 * info.el (Info-mouse-follow-nearest-node): Use mouse-set-point.
12357 (Info-fontify-node, Info-goto-node, Info-mode-menu)
12358 (Info-fontify-node): `Goto' goes to `Go to'.
12359 (Info-fontify-node): Add help-echo to xref links.
12360
12361 2000-10-15 Eli Zaretskii <eliz@is.elta.co.il>
12362
12363 * eshell/em-unix.el (eshell-du-prefer-over-ange): Doc fix.
12364
12365 2000-10-15 Stefan Monnier <monnier@cs.yale.edu>
12366
12367 * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
12368 Use plist-get and allow :inherit.
12369
12370 * emacs-lisp/cl-macs.el (cl-do-arglist):
12371 Use plist-get and plist-member instead of memq.
12372
12373 * emacs-lisp/ewoc.el (ewoc-location): New function.
12374 (ewoc-enter-after, ewoc-enter-before): Document return value.
12375 * pcvs.el (cvs-make-cvs-buffer, cvs-run-process):
12376 Don't need make-local-hook any more.
12377 (cvs-addto-collection): Return the new tin.
12378 (cvs-mode-insert): Jump to the new line.
12379
12380 * jit-lock.el (jit-lock-fontify-buffer): Remove.
12381
12382 * arc-mode.el (archive-zoo-summarize): Fix from gnu.emacs.bug.
12383
12384 * font-lock.el (font-lock-syntactically-fontified): New var.
12385 (font-lock-fontify-syntactic-keywords-region): Use it.
12386 (font-lock-mode): Fix docstring. Don't need make-local-hook anymore.
12387
12388 * diff-mode.el (diff-find-file-name): Fix regexp.
12389
12390 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
12391 (cl-builtin-clrhash, cl-builtin-maphash): Add for byte-compatibility.
12392
12393 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix.
12394 (sh-mode-syntax-table): Add punctuation syntax for < and >.
12395 (sh-mode): Don't make all vars local here.
12396 (sh-kw): Reformat.
12397 (sh-set-shell): Use dolist. Don't set indent-region-function.
12398 (sh-mode-syntax-table): Use pop.
12399 (sh-remember-variable): Use push.
12400 (sh-help-string-for-variable): Use memq.
12401 (sh-safe-backward-sexp): Remove.
12402 (sh-safe-forward-sexp): Add ARG.
12403 (sh-get-indent-info, sh-prev-stmt): Use it.
12404 (sh-prev-line): Simplify by using forward-comment.
12405 (sh-this-is-a-continuation): Simplify.
12406 (sh-learn-buffer-indent): Use dolist.
12407 (sh-do-nothing): Remove.
12408 (sh-set-char-syntax, sh-set-here-doc-region):
12409 Use inhibit-modification-hooks.
12410 (sh-name-style): Use mapcar and push.
12411 (sh-load-style): Use dolist.
12412 (sh-save-styles-to-buffer): Use with-current-buffer and pp.
12413 (sh-case, sh-while-getopts): Use propertize directly rather
12414 than sh-electric-rparen.
12415
12416 2000-10-14 Stefan Monnier <monnier@cs.yale.edu>
12417
12418 * textmodes/tex-mode.el: Require CL when compiling.
12419 (tex-mode-syntax-table): Init immediately.
12420 (tex-mode-map): Bind M-RET to latex-insert-item.
12421 (latex-mode): Set indent-line-function to latex-indent.
12422 (tex-common-initialization): Don't setup the syntax-table any more.
12423 (latex-insert-item): New skeleton.
12424 (tex-next-unmatched-end): Fix copy/paste braino.
12425 (latex-syntax-after, latex-skip-close-parens, latex-down-list)
12426 (latex-indent, latex-find-indent): New functions.
12427 (tex-indent-allhanging, tex-indent-arg, tex-latex-indent-syntax-table)
12428 (tex-indent-item, tex-indent-item-re, tex-indent-basic): New vars.
12429 (tex-compilation-parse-errors): Use with-syntax-table.
12430
12431 2000-10-15 Miles Bader <miles@gnu.org>
12432
12433 * font-lock.el (font-lock-comment-face): Change dark-background,
12434 color, non-tty, default to `chocolate1'.
12435
12436 2000-10-13 John Wiegley <johnw@gnu.org>
12437
12438 * eshell/esh-util.el (require): Added a missing `require' form,
12439 needed when compiling (for an ange-ftp macro definition).
12440
12441 2000-10-13 Dave Love <fx@gnu.org>
12442
12443 * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch.
12444
12445 2000-10-13 Gerd Moellmann <gerd@gnu.org>
12446
12447 * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc fix.
12448
12449 * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace
12450 transparent -colors 8).
12451
12452 2000-10-13 Stephen Gildea <gildea@stop.mail-abuse.org>
12453
12454 * time-stamp.el (time-stamp): Fixed bug in new multi-line code
12455 that breaks with old list format timestamps.
12456 (time-stamp-warn-inactive, time-stamp-old-format-warn)
12457 (time-stamp-count, time-stamp-conversion-warn): Improved doc strings.
12458
12459 2000-10-13 John Wiegley <johnw@gnu.org>
12460
12461 * align.el, pcomplete.el, calendar/timeclock.el,
12462 eshell/esh-module.el, eshell/eshell.el: Removed URL reference.
12463
12464 * calendar/timeclock.el (timeclock-find-discrep): A fix to some
12465 faulty math, where holiday hours were being computing as seconds.
12466
12467 2000-10-13 John Wiegley <johnw@gnu.org>
12468
12469 * desktop.el (desktop-buffer-modes-to-save): Added a global for
12470 specifying what "other" kinds of buffers should be saved.
12471 This used to be hard-coded.
12472 (desktop-buffer-misc-functions): A global for specifying how
12473 auxiliary data should be determined for special buffer types.
12474 (desktop-save-buffer-p): Use `desktop-buffer-modes-to-save',
12475 instead of hard-coding the special buffer types.
12476 (desktop-save): Run `desktop-buffer-misc-functions' to gather
12477 auxiliary data, instead of hard-coding for Info buffers and dired.
12478 (desktop-buffer-info-misc-data): Aux function for determining Info
12479 buffer auxiliary info.
12480 (desktop-buffer-dired-misc-data): Likewise, but for dired buffers.
12481 (desktop-buffer-info): Changed this function to use the info
12482 gathered above.
12483 (desktop-create-buffer): Be a little more careful about what
12484 `minor-mode' means before calling it. This is important for some
12485 buffer types.
12486
12487 2000-10-13 John Wiegley <johnw@gnu.org>
12488
12489 * eshell/esh-util.el: Added a global form which declares an
12490 autoload for `parse-time-string', if that function is not already
12491 defined, and if parse-time.el is available on the user's system.
12492
12493 * eshell/em-ls.el (eshell-ls-applicable): Extended this function
12494 to be aware of ange-ftp user info.
12495 (eshell-do-ls): Bind `ange-cache'. Also, use `eshell-file-attributes'.
12496 (eshell-ls-annotate): Use `eshell-file-attributes'.
12497 (eshell-ls-file): Made the user-id printing code a bit smarter.
12498
12499 * eshell/esh-util.el (eshell-ange-ls-uids): Added variable, to
12500 allow identification of alias user ids in remote directories.
12501 It's manual, but there's no other way to know when the current user
12502 on the local machine, is also the owning user on the remote machine.
12503 (fboundp): Bind `ange-cache'.
12504 (eshell-directory-files-and-attributes): Re-organized the logic a
12505 bit to use `eshell-file-attributes' instead of `file-attributes'.
12506 The former is more sensitive to directories that are read via FTP,
12507 and knows how to use ange-ftp to determine full attribute
12508 information, instead of just the name and last modtime.
12509 (eshell-current-ange-uids): Return the current user id when in a
12510 remote directory.
12511 (eshell-parse-ange-ls): Parse a full directory listing that has
12512 been returned by ange-ftp.
12513 (eshell-file-attributes): This beefed up version of
12514 `file-attributes' is only special if the user is currently in a
12515 remote directory, in which case it does a lot of work to find out
12516 what the real attributes of a file are, as they appear on the
12517 remote machine. This makes usage of remote directories (i.e.,
12518 ange-ftp pathnames) much more useful. You can now use Eshell as a
12519 full-fledged FTP client, with much more manipulation ability than
12520 most other clients.
12521
12522 * eshell/em-unix.el (eshell-du-prefer-over-ange): Added a new
12523 variable, which means that Eshell's du should always be preferred
12524 in remote directories.
12525 (eshell-shuffle-files): Use `eshell-file-attributes', rather than
12526 just `file-attributes'.
12527 (eshell-mvcp-template): Bind `ange-cache', to improve performance
12528 when reading remote directories. This is an Eshell-specific
12529 variable (not part of ange-ftp).
12530 (eshell/ln): Bind `ange-cache'.
12531 (eshell/du): Added some extra logic for determining when to use
12532 Eshell's du (which is slow), and when to use the external version
12533 (which may or may not exist).
12534
12535 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
12536 Call `eshell-interactive-process', rather than using
12537 `get-buffer-process', since backgrounded processes don't count in
12538 the context of this function's logic.
12539
12540 * eshell/esh-arg.el (eshell-parse-double-quote): Moved a call to
12541 `forward-char', so that null strings are parsed correctly.
12542
12543 2000-09-13 John Wiegley <johnw@gnu.org>
12544
12545 * eshell/em-pred.el (eshell-pred-file-type)
12546 (eshell-pred-file-links, eshell-pred-file-size):
12547 Use `eshell-file-attributes'. This is more correct over ange-ftp.
12548
12549 * eshell/em-glob.el (eshell-extended-glob): Bind `ange-cache', so
12550 that remote file globbing is more efficient.
12551
12552 * eshell/em-ls.el (eshell-ls-dir): Use `expand-file-name' when
12553 gathering the files and attributes within a directory.
12554
12555 * eshell/em-unix.el (eshell/cat): If any of the files passed on
12556 the command line is a special file (not a regular file, directory
12557 or symlink), always attempt to call the external version of cat.
12558
12559 2000-09-13 John Wiegley <johnw@gnu.org>
12560
12561 * eshell/esh-mode.el (eshell-find-tag): Corrections to the
12562 Eshell-friendly version of find-tag.
12563
12564 2000-10-13 Miles Bader <miles@lsi.nec.co.jp>
12565
12566 * image-file.el (image-file-name-extensions)
12567 (image-file-name-regexps): Add autoload cookies.
12568
12569 2000-10-13 Kenichi Handa <handa@etl.go.jp>
12570
12571 * international/mule-cmds.el (select-safe-coding-system): If FROM
12572 is string, show it in *Warning* buffer.
12573
12574 2000-10-13 Eli Zaretskii <eliz@is.elta.co.il>
12575
12576 * startup.el (normal-top-level): Use display-popup-menus-p instead
12577 of window-system.
12578 (command-line): Use display-graphic-p instead of window-system.
12579 (command-line-1): Use display-popup-menus-p and display-mouse-p
12580 instead of window-system.
12581
12582 2000-10-12 Sam Steingold <sds@gnu.org>
12583
12584 * tooltip.el (tooltip-use-echo-area): New user variable.
12585 (tooltip-show): Use it to choose between `x-show-tip' and `message'.
12586
12587 2000-10-12 Dave Love <fx@gnu.org>
12588
12589 * recentf.el: Maintainer's checkdoc fixes.
12590
12591 * startup.el (normal-top-level-add-subdirs-to-load-path):
12592 Use character class, not ASCII when matching file names.
12593 (fancy-splash-head): Add trailing slash to URL.
12594 (command-line): Don't require XPM support for toolbar.
12595
12596 * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix.
12597 (cperl-invalid-face): Revert last change.
12598 (cperl-init-faces): Quote cperl-invalid-face.
12599
12600 2000-10-12 Kenichi Handa <handa@etl.go.jp>
12601
12602 * startup.el (fancy-splash-text): Remove superfluous quote.
12603
12604 2000-10-12 Gerd Moellmann <gerd@gnu.org>
12605
12606 * startup.el (fancy-splash-screens): Don't add a pre-command hook.
12607 (fancy-splash-pre-command, fancy-splash-pending-command): Removed.
12608 (command-line-1): Don't use fancy-splash-pending-command.
12609 (fancy-splash-screens-1): Goto point-min after inserting text.
12610
12611 * calendar/diary-lib.el (diary-cyclic): Doc fix from Ed Reingold.
12612
12613 * progmodes/scheme.el (scheme-mode-map): Use lisp-mode-shared-map
12614 instead of shared-lisp-mode-map.
12615
12616 2000-10-12 Miles Bader <miles@lsi.nec.co.jp>
12617
12618 * faces.el (header-line): Change tty-variant to use underlining.
12619
12620 * isearch.el (isearch-set-lazy-highlight-faces-at): New function.
12621 (isearch-highlight): Restore lazy-isearch face properties at old
12622 position, and suppress them at new position.
12623 (isearch-dehighlight): Restore lazy-isearch face properties.
12624 (isearch-lazy-highlight-update): Add lazy-isearch overlays even
12625 over the real isearch overlay, but in that case, don't give it a
12626 face property. Use `push'.
12627
12628 2000-10-12 Kenichi Handa <handa@etl.go.jp>
12629
12630 * man.el (Man-getpage-in-background): Fix previous change.
12631 Decode the process output only when we are in multibyte mode.
12632
12633 2000-10-11 Dave Love <fx@gnu.org>
12634
12635 * info.el (Info-mode-menu): Fix some help.
12636 (info-tool-bar-map): Add entry for Info-last.
12637
12638 * toolbar/cancel.xpm, toolbar/jump_to.xpm, toolbar/right_arrow.xpm:
12639 * toolbar/close.xpm, toolbar/left_arrow.xpm, toolbar/save.xpm:
12640 * toolbar/copy.xpm, toolbar/mail.xpm, toolbar/saveas.xpm:
12641 * toolbar/cut.xpm, toolbar/mail_compose.xpm:
12642 * toolbar/search-replace.xpm, toolbar/exit.xpm:
12643 * toolbar/mail_send.xpm, toolbar/search.xpm, toolbar/fld_open.xpm:
12644 * toolbar/new.xpm, toolbar/spell.xpm, toolbar/help.xpm:
12645 * toolbar/open.xpm, toolbar/undo.xpm, toolbar/home.xpm:
12646 * toolbar/paste.xpm, toolbar/up_arrow.xpm, toolbar/index.xpm:
12647 * toolbar/preferences.xpm, toolbar/info.xpm, toolbar/print.xpm:
12648 Reduce colour requirements to 25 overall. (Probably wants
12649 revisiting from the originals to reduce further.)
12650
12651 2000-10-11 Eli Zaretskii <eliz@is.elta.co.il>
12652
12653 * hexl.el (hexlify-buffer): Bind coding-system-for-write to
12654 buffer-file-coding-system, instead of raw-text.
12655 (dehexlify-buffer): Bind coding-system-for-read to
12656 buffer-file-coding-system, instead of raw-text.
12657
12658 2000-10-11 Sam Steingold <sds@gnu.org>
12659
12660 * progmodes/cperl-mode.el (cperl-invalid-face): Double-quote
12661 `underline' - fixes the bug introduced on 2000-09-21.
12662
12663 2000-10-11 Dave Love <fx@gnu.org>
12664
12665 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
12666 Avoid compiler warnings.
12667 (scheme-mode): Doc fix.
12668 (scheme-font-lock-keywords-1): Match `define-syntax'.
12669
12670 2000-10-11 Miles Bader <miles@lsi.nec.co.jp>
12671
12672 * faces.el (frame-set-background-mode): Pay attention to saved
12673 face specs as well as default ones. Only do anything if the
12674 bg-mode or display-type has actually changed. Use `dolist'.
12675 (region): Make dark-background `region' face less in-your-face.
12676
12677 2000-10-10 Sam Steingold <sds@gnu.org>
12678
12679 * chistory.el, ielm.el, ledit.el:
12680 * progmodes/inf-lisp.el, progmodes/scheme.el:
12681 Use `lisp-mode-shared-map' instead of `shared-lisp-mode-map'.
12682
12683 2000-10-10 Stefan Monnier <monnier@cs.yale.edu>
12684
12685 * textmodes/texinfo.el: Update copyright and fix typo.
12686
12687 * desktop.el (desktop-modes-not-to-save): New var.
12688 (desktop-save-buffer-p): Use it.
12689 Also, obey desktop-buffers-not-to-save even for non-file buffers.
12690 (desktop-buffer-file): Use pop-to-buffer if switch-to-buffer fails.
12691
12692 2000-10-10 Dave Love <fx@gnu.org>
12693
12694 * toolbar/tool-bar.el (tool-bar-add-item)
12695 (tool-bar-add-item-from-menu): Don't favour XPM icons on mono display.
12696
12697 * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm:
12698 * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm:
12699 * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm:
12700 * toolbar/index.pbm, toolbar/info.pbm, toolbar/jump_to.pbm:
12701 * toolbar/left_arrow.pbm, toolbar/mail.pbm, toolbar/mail_compose.pbm:
12702 * toolbar/mail_send.pbm, toolbar/new.pbm, toolbar/open.pbm:
12703 * toolbar/paste.pbm, toolbar/preferences.pbm, toolbar/print.pbm:
12704 * toolbar/right_arrow.pbm, toolbar/save.pbm, toolbar/saveas.pbm:
12705 * toolbar/search-replace.pbm, toolbar/search.pbm, toolbar/spell.pbm:
12706 * toolbar/undo.pbm, toolbar/up_arrow.pbm: New files straight from
12707 the .xpms; probably need retouching.
12708
12709 2000-10-10 Miles Bader <miles@lsi.nec.co.jp>
12710
12711 * subr.el (add-to-list): Add optional argument APPEND.
12712 * battery.el (display-battery): Use `add-to-list'.
12713
12714 2000-10-09 Thien-Thi Nguyen <ttn@gnu.org>
12715
12716 * play/zone.el (zone-timer, zone-wc-tbl): Rework these vars as symbol
12717 properties.
12718 (zone, zone-when-idle, zone-leave-me-alone)
12719 (zone-pgm-whack-chars): Use new symbol properties.
12720
12721 * battery.el (display-battery): Doc spelling fix.
12722
12723 * vc.el (with-vc-file, edit-vc-file): Specify `indent-function'
12724 property.
12725
12726 2000-10-09 Dave Love <fx@gnu.org>
12727
12728 * toolbar/tool-bar.el (tool-bar-mode): Check whether tool-bar-map
12729 has been initialized before calling tool-bar-setup.
12730 (tool-bar-add-item-from-menu): Add autoload cookie.
12731
12732 2000-10-09 Eli Zaretskii <eliz@is.elta.co.il>
12733
12734 * menu-bar.el (send-mail-item-name): New function.
12735 (menu-bar-tools-menu) <compose-mail>: Use it to display the value
12736 of mail-user-agent in the menu. Don't display the "Send Mail"
12737 item if mail-user-agent is nil or its value is ignore.
12738 (menu-bar-tools-menu) <rmail>: Don't display the "Read Mail" item
12739 if read-mail-command is nil or its value is ignore.
12740
12741 * mouse.el ([header-line mouse-1]): Bind to mouse-select-window.
12742
12743 2000-10-09 Miles Bader <miles@gnu.org>
12744
12745 * toolbar/up_arrow.xpm: Flip to put highlight in correct place.
12746 Correct image size.
12747 * toolbar/left_arrow.xpm: Correct image size.
12748
12749 * jka-compr.el: Don't call `jka-compr-install' when loading (it
12750 will be done by the definition of `auto-compression-mode' if
12751 necessary. Move code to uninstall existing file-name handler
12752 before definition of `auto-compression-mode'.
12753
12754 * image-file.el (auto-image-file-mode): Move to the end of the
12755 file, because `define-minor-mode' actually calls the mode-function
12756 if the associated variable is non-nil, which requires that all
12757 needed functions be already defined.
12758
12759 * mouse.el (popup-menu): Balance parens.
12760
12761 2000-10-08 Stefan Monnier <monnier@cs.yale.edu>
12762
12763 * mouse.el (popup-menu): Move the command call outside the loop
12764 so that popup-menu returns whatever the command returns.
12765
12766 * progmodes/etags.el: Docstring fixes. Maintainer line updated.
12767 (initialize-new-tags-table): Use run-hook-with-args-until-success.
12768 (find-tag): Use pop-to-buffer if switch-to-buffer failed.
12769 (tags-table-format-functions): Renamed from tags-table-format-hooks.
12770
12771 * vc.el (vc-version-diff): diff-switches can be a list.
12772 Use relative filenames for prettier output.
12773
12774 * pcvs.el (cvs-append-to-ignore, cvs-vc-command-advice)
12775 (vc-post-command-functions): Remove old-VC compatibility code.
12776
12777 * newcomment.el (comment-indent-default): Autoload.
12778
12779 * font-lock.el (font-lock-defaults): Make buffer-local.
12780 (font-lock-turn-on-thing-lock): Use jit-lock-refontify.
12781 (font-lock-choose-keywords):
12782 Ignore LEVEL unless KEYWORDS is a list of syms.
12783 (c-keywords, c++-keywords, objc-keywords, java-keywords):
12784 Don't wrap regexp-opt things in \(...\) unnecessarily.
12785
12786 * jit-lock.el: Don't require font-lock any more.
12787 (jit-lock-functions): Make buffer-local.
12788 (jit-lock-saved-fontify-buffer-function): Remove.
12789 (jit-lock-mode): Remove autoload cookie.
12790 Remove font-lock specific code.
12791 (jit-lock-unregister): Don't bother handling complex hooks any more.
12792 (jit-lock-refontify): New function.
12793 (jit-lock-fontify-buffer): Use it.
12794 (jit-lock-function-1): Replaced by jit-lock-fontify-now.
12795 (jit-lock-fontify-now): Renamed from jit-lock-function-1.
12796 Add optional args START and END.
12797 Never call font-lock-fontify-region directly.
12798 (jit-lock-function, jit-lock-stealth-fontify): Use it.
12799
12800 * emacs-lisp/regexp-opt.el (regexp-opt): Add \<...\> if PAREN=`words'.
12801
12802 2000-10-08 Dave Love <fx@gnu.org>
12803
12804 * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
12805
12806 * progmodes/icon.el (icon-mode-map): Add name to menu-bar keymap.
12807
12808 * play/studly.el (studlify-region, studlify-word): Add autoload
12809 cookie.
12810
12811 * play/morse.el (morse-region, unmorse-region): Add autoload
12812 cookie.
12813
12814 * play/spook.el (spook-phrases-file): Use expand-file-name, not
12815 concat.
12816
12817 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Don't
12818 insist on symbols starting with word syntax.
12819 (lisp-mode-shared-map): Renamed from shared-lisp-mode-map.
12820 (eval-defun-1): Doc fix.
12821 (indent-sexp): Use nconc to build up indent-stack.
12822
12823 * mail/sendmail.el: Byte-compile-dynamic since it gets loaded by
12824 Gnus with little use.
12825 (mail-setup-hook): Add mail-abbrevs-setup to options.
12826
12827 * recentf.el: Doc fixes.
12828
12829 * vcursor.el (vcursor-cs-binding): Remove compatibility code.
12830 Clean up remainder.
12831
12832 * timezone.el (timezone-parse-date): Doc fix. Fix regexps for (5)
12833 without timezone and (8) with timezone to enforce some whitespace.
12834 Simplify code somewhat.
12835
12836 * options.el (list-options): Doc that you should use customize.
12837
12838 * iswitchb.el (iswitchb-mode): Add :require.
12839
12840 * info.el (Info-goto-node, Info-menu): Doc fix.
12841 (Info-mode-menu): Bind beginning-of-buffer, Info-edit
12842 (info-tool-bar-map): New variable.
12843 (Info-mode): Use it.
12844 (Info-edit-map): Define all in defvar.
12845 (speedbar-attached-frame): Avoid compiler warning.
12846
12847 * toolbar/tool-bar.el (tool-bar-map): Define it empty.
12848 (global-map): Bind [tool-bar] to a filtered map.
12849 (tool-bar-add-item): Remove MAP arg. Allow PBM icons.
12850 (tool-bar-add-item-from-menu): Use tool-bar-map, not tb-map.
12851 Allow PBM icons.
12852 (tool-bar-setup): Adjust calls of tool-bar-add-item.
12853
12854 * toolbar/index.xpm, toolbar/jump_to.xpm, toolbar/attach.xpm:
12855 * toolbar/up_arrow.xpm, toolbar/left_arrow.xpm, toolbar/home.xpm:
12856 * toolbar/right_arrow.xpm: New files. Renamed from tigert's
12857 icons, except up_arrow, which is left-arrow rotated.
12858
12859 * imenu.el (imenu-add-to-menubar): Fix last change.
12860
12861 2000-10-08 Peter Breton <pbreton@ne.mediaone.net>
12862
12863 * generic-x.el (rul-generic-mode): Remove eval-when-compile
12864 statements. Suggested by Stefan Monnier <monnier@cs.yale.edu>.
12865
12866 2000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
12867
12868 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Fix
12869 typos in doc strings.
12870
12871 * font-lock.el (font-lock-mode, global-font-lock-mode): Mention in
12872 the doc strings how to customize Font Lock faces.
12873
12874 * mouse.el (mouse-drag-mode-line-1): Fix an off-by-one error in
12875 computing growth when dragging the header line.
12876
12877 2000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
12878
12879 * simple.el (kill-line): Doc fix.
12880
12881 2000-10-08 Miles Bader <miles@gnu.org>
12882
12883 * faces.el (secondary-selection): Make foreground visible on tty.
12884
12885 * jka-compr.el (auto-compression-mode): Move to the end of the
12886 file, because `define-minor-mode' actually calls the mode-function
12887 if the associated variable is non-nil, which requires that all
12888 needed functions be already defined.
12889 (with-auto-compression-mode): Add autoload cookie.
12890
12891 2000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
12892
12893 * files.el (find-backup-file-name) [ms-dos]: If support for long
12894 file names is not available, behave as if version-control were set
12895 to never.
12896
12897 2000-10-07 Dave Love <fx@gnu.org>
12898
12899 * net/browse-url.el (browse-url-gnome-moz-arguments): New option.
12900 (browse-url-gnome-moz): New function.
12901 (browse-url-browser-function): Use it.
12902 Suggested by Colin Walters <walters@cis.ohio-state.edu>.
12903
12904 2000-10-07 Stefan Monnier <monnier@cs.yale.edu>
12905
12906 * indent.el (tab-always-indent): New var.
12907 (indent-for-tab-command): Use it.
12908
12909 * files.el (set-auto-mode): Ignore unknown -*- mode -*- rather than
12910 raise an error. This way it can still default to a sane value.
12911
12912 2000-10-06 Stefan Monnier <monnier@cs.yale.edu>
12913
12914 * startup.el (fancy-splash-screens): Use local rather than global map.
12915 Don't use `update-menu-bindings' any more.
12916 Get rid of assumptions about keymap representation.
12917
12918 2000-10-06 Dave Love <fx@gnu.org>
12919
12920 * textmodes/fill.el (sentence-end-double-space)
12921 (sentence-end-without-period): Doc fix.
12922 (adaptive-fill-regexp): Purecopy.
12923 (unjustify-current-line): Use line-end-position.
12924 (fill-individual-paragraphs-prefix): Use line-beginning-position.
12925
12926 * net/eudc-vars.el (eudc): Add :version, :link.
12927
12928 * international/mule-conf.el (file-coding-system-alist): Use \', not $.
12929
12930 * emacs-lisp/find-func.el (find-function-regexp): Remove spurion.
12931 Fix for define-minor-mode.
12932 (function-at-point): Alias to function-called-at-point.
12933
12934 * custom.el (custom-declare-variable, custom-set-variables): Use mapc.
12935
12936 * simple.el (backward-word): Doc fix.
12937
12938 * image-file.el (image-file-name-regexp): image-file-regexps ->
12939 image-file-name-regexps.
12940 (image-file-name-extensions): Add pbm.
12941
12942 2000-10-06 Stefan Monnier <monnier@cs.yale.edu>
12943
12944 * smerge-mode.el (smerge-diff): Setup the buffer's default-directory
12945 and add filename to the names so that diff-mode can jump to source.
12946
12947 * font-lock.el (font-lock-defaults-alist): Remove the TeX entries.
12948 (tex-font-lock-keywords, tex-font-lock-keywords-2)
12949 (tex-font-lock-keywords-1): Remove.
12950 (font-lock-turn-on-thing-lock): Use jit-lock-register.
12951 (font-lock-turn-off-thing-lock): Use jit-lock-unregister.
12952 (font-lock-default-fontify-region):
12953 Expand beg..end correctly when just following a multiline region.
12954 (font-lock-fontify-anchored-keywords):
12955 Include the anchor text as part of the multiline.
12956
12957 2000-10-06 Gerd Moellmann <gerd@gnu.org>
12958
12959 * loadup.el (toplevel): Load `loaddefs' before `help' because the
12960 latter needs the autoloaded define-minor-mode macro during the
12961 bootstrap.
12962
12963 * startup.el (command-line): For now, activate tool-bar-mode only
12964 if XPM images are supported.
12965
12966 * mouse.el (mouse-drag-header-line): Don't allow resizing a
12967 window by dragging a header-line at the top of the frame; that's
12968 confusing because the header-line doesn't move.
12969 (mouse-drag-mode-line-1): Use event-* and posn-* functions instead
12970 of treating the event as a list. Some cleanup.
12971
12972 2000-10-06 Miles Bader <miles@gnu.org>
12973
12974 * simple.el (display-message-or-buffer): New function.
12975 (shell-command-on-region): Use `display-message-or-buffer'.
12976
12977 * emacs-lisp/easy-mmode.el (define-derived-mode): Tweak generated
12978 docstring parts.
12979
12980 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
12981 (smbclient-prompt-regexp): Add usage note to doc string.
12982 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Removed.
12983 (ftp-mode, smbclient-mode): Don't set `font-lock-defaults'.
12984 Use add-hook for adding the comint filter function, and only do so
12985 if it's not already in the global hook list.
12986 (ftp-mode, smbclient-mode, nslookup-mode): Remove redundant calls
12987 to `make-local-variable'.
12988 (nslookup-font-lock-keywords): Remove prompt entry.
12989 (nslookup): Don't set the process-filter.
12990 (finger): Exit the loop correctly when the regexps list runs out.
12991 (ftp, smbclient, smbclient-list-shares):
12992 Set the real major mode immediately, not after execing.
12993 Use `pop-to-buffer' instead of `switch-to-buffer-other-window'.
12994
12995 * comint.el (comint-watch-for-password-prompt): Use STRING as a prompt.
12996
12997 2000-10-05 Stefan Monnier <monnier@cs.yale.edu>
12998
12999 * progmodes/compile.el (compile-collect-regexps): Use dolist and push.
13000
13001 * which-func.el (which-func-format): Remove spurious space.
13002 (which-func-mode): Don't make it permanent-local.
13003 (which-func-ff-hook): Allow which-func-maxout to be nil.
13004 (which-func-update): Simplify a bit. Only run if which-func-mode is t.
13005 (which-func-mode): Simplify.
13006 Use post-command-idle-hook rather than post-command-hook.
13007 Go through all buffers and update their state.
13008 (which-function): Also try add-log-current-defun-function.
13009
13010 * vc.el (with-vc-properties): Use conses rather than length-2 lists.
13011 (vc-checkout, vc-finish-steal, vc-checkin, vc-revert-file):
13012 Update call to with-vc-properties accordingly.
13013 (vc-comment-search-reverse, vc-comment-search-forward): Docstring fix.
13014 (vc-revert-buffer): More careful about window selection and deletion.
13015 (vc-switch-backend): Slight reorg to avoid calling `registered' twice.
13016
13017 * pcvs.el (cvs-ediff-exit-hook): Expect delete-window to fail.
13018 (cvs-retrieve-revision): Reuse a pre-existing buffer.
13019 (cvs-dired-action): Change the default to quickdir.
13020
13021 * newcomment.el (comment-indent): Delegate to indent-according-to-mode
13022 if comment-indent-function returns nil.
13023 (comment-indent-default): New function.
13024 (comment-indent-function): Use it and document the new semantics.
13025
13026 * image-file.el: Docstring fixes.
13027
13028 * help.el (help-xref-on-pp): Use match-string.
13029 (describe-variable): New arg BUFFER.
13030 Store the current buffer in the help-xref-stack.
13031 (temp-buffer-resize-mode): Use define-minor-mode.
13032
13033 * jit-lock.el (jit-lock-mode): Use jit-lock-defer-contextually
13034 consistently with its docstring.
13035 Set jit-lock-first-unfontify-pos in an idempotent way.
13036 (jit-lock-register): Autoload and add arg CONTEXTUAL.
13037
13038 2000-10-05 Alex Schroeder <alex@gnu.org>
13039
13040 * sql.el (sql-mysql-options): New variable.
13041 (sql-mysql): Use it.
13042
13043 2000-10-05 Miles Bader <miles@lsi.nec.co.jp>
13044
13045 * image.el (image): New group.
13046
13047 * smerge-mode.el (smerge-mine-face, smerge-other-face)
13048 (smerge-base-face, smerge-markers-face): Add dark-background variants.
13049
13050 2000-10-04 Peter Breton <pbreton@ne.mediaone.net>
13051
13052 * net/net-utils.el (nslookup-font-lock-keywords)
13053 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
13054 Ignore the value of wqindow-system; always define keywords
13055
13056 2000-10-05 Kenichi Handa <handa@etl.go.jp>
13057
13058 * startup.el (fancy-splash-screens): Remove the code for
13059 debugging; `(trace-to-stderr "EXITTT\n")'.
13060
13061 2000-10-05 Miles Bader <miles@gnu.org>
13062
13063 * diff-mode.el (diff-goto-source): Update call to
13064 `diff-hunk-status-msg' to reflect new REV variable.
13065
13066 2000-10-04 Stefan Monnier <monnier@cs.yale.edu>
13067
13068 * progmodes/icon.el (icon-mode):
13069 Don't gratuitously override the default for comment-column.
13070
13071 * vc-hooks.el (vc-mode-line): Fix interactive spec.
13072
13073 * jit-lock.el (with-buffer-unmodified): Use unwind-protect.
13074 (jit-lock-mode): Make sure font-lock-keywords-only is bound before use.
13075 (jit-lock-functions): New var.
13076 (jit-lock-function-1): Use it if non-nil.
13077 Don't switch the syntax-table. Don't set parse-sexp-lookup-properties.
13078 Set the `fontified' property before doing the fontification to avoid
13079 repeatedly going through the same error.
13080 Don't turn errors into messages.
13081 (jit-lock-register, jit-lock-unregister): New functions.
13082
13083 * dired.el (dired-mark-pop-up): Turn comment into docstring.
13084 Use with-current-buffer.
13085
13086 * dired-aux.el (dired-do-create-files, dired-kill-tree):
13087 Turn comment into docstring.
13088
13089 * apropos.el (apropos-mode): Use define-derived-mode.
13090
13091 2000-10-04 Gerd Moellmann <gerd@gnu.org>
13092
13093 * startup.el (fancy-splash-pending-command): New variable.
13094 (fancy-splash-pre-command): New function.
13095 (fancy-splash-screens): Rewritten.
13096 (command-line-1): If fancy-splash-pending-command is set, call it
13097 interactively.
13098
13099 2000-10-04 Dave Love <fx@gnu.org>
13100
13101 * toolbar/tool-bar.el (tool-bar-setup): New function.
13102 (tool-bar-mode): Use it.
13103
13104 * subr.el (substitute-key-definition): Doc fix.
13105 (play-sound-file): New command.
13106
13107 2000-10-04 Andre Spiegel <spiegel@gnu.org>
13108
13109 * vc-hooks.el (vc-before-save, vc-default-make-version-backups,
13110 vc-version-backup-file-name): New functions.
13111
13112 * files.el (basic-save-buffer): Call vc-before-save before saving.
13113
13114 * vc-cvs.el (vc-cvs-make-version-backups): Return t if
13115 vc-cvs-stay-local-p.
13116
13117 * vc.el (vc-revert-buffer): Handle empty diff properly.
13118 (vc-version-backup-file): New function.
13119 (vc-checkout): Create a version backup if necessary.
13120 (vc-checkin): If a version backup file exists, delete it.
13121 (vc-version-diff): Diff locally using version backups, if available.
13122 (vc-revert-file): If there's a version backup, revert locally.
13123 (vc-transfer-file): Use version backup for base version, if
13124 available. If not, ask for confirmation whether to get it from the
13125 server. Update mode line before check-in.
13126
13127 2000-10-04 Dave Love <fx@gnu.org>
13128
13129 * toolbar/tool-bar.el (tool-bar-setup): New function.
13130 (tool-bar-mode): Use it.
13131
13132 2000-10-04 Peter Breton <pbreton@ne.mediaone.net>
13133
13134 * net/net-utils.el (nslookup-font-lock-keywords)
13135 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
13136 Only set if window-system is non-nil
13137 (net-utils-run-program): Returns buffer.
13138 (network-connection-reconnect): Added this function.
13139
13140 * generic.el:
13141 Incorporates extensive cleanup and docfixes by
13142 Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu).
13143 Uses cl compile-time macros.
13144 (generic-mode-name, generic-comment-list)
13145 (generic-keywords-list, generic-font-lock-expressions)
13146 (generic-mode-function-list, generic-mode-syntax-table):
13147 Removed variables.
13148 (generic-mode-alist): Renamed to generic-mode-list.
13149 (generic-find-file-regexp): Default changed to "^#".
13150 (generic-read-type): Uses completing read on generic-mode-list.
13151 (generic-mode-sanity-check): removed this function.
13152 (generic-add-to-auto-mode): Removed this function
13153 (generic-mode-internal): Bind mode-specific definitions
13154 into function instead of putting them in alist.
13155 (generic-mode-set-comments): Reworked extensively.
13156 (generic-mode-find-file-hook): Simplified regexp searching
13157 (generic-make-keywords-list): Omit extra pair of parens
13158
13159 * find-lisp.el (find-lisp-find-files-internal):
13160 Make sure directory name ends with "/".
13161
13162 * generic-x.el (apache-conf-generic-mode):
13163 Regexp now allows leading whitespace.
13164 (rc-generic-mode): Added eval-when-compile
13165 around generic-make-keywords-list.
13166 Deleted duplicate regexp
13167 (rul-generic-mode): Added eval-when-compile
13168 around generic-make-keywords-list.
13169 (etc-fstab-generic-mode): New generic mode.
13170 (rul-generic-mode): Removed one eval-when-compile
13171 which caused a max-specpdl-size exceeded error.
13172
13173 2000-10-04 Miles Bader <miles@gnu.org>
13174
13175 * simple.el (minibuffer-temporary-goal-position): New variable.
13176 (next-history-element): Try to keep the position of point in the
13177 input string constant.
13178
13179 * dired-aux.el (dired-mark-read-file-name): Add optional arg DEFAULT.
13180 (dired-do-create-files): If there's only one file, pass it in as
13181 the DEFAULT arg to dired-mark-read-file-name.
13182
13183 2000-10-03 Stefan Monnier <monnier@cs.yale.edu>
13184
13185 * diff-mode.el (diff-font-lock-keywords): Minor regex fix.
13186 (diff-goto-source): Be smarter when choosing REVERSE or not.
13187
13188 * textmodes/texinfo.el (texinfo-heading-face): Forgot the var def.
13189 (texinfo-mode-menu): Add an explicit shortcut for update all.
13190
13191 2000-10-03 Andre Spiegel <spiegel@gnu.org>
13192
13193 * vc.el (vc-transfer-file, vc-default-receive-file): Rewritten to
13194 factorize backend-specific code cleanly (this was essentially
13195 conceived by Stefan Monnier).
13196 (vc-unregister): Function removed.
13197 (vc-revert-file): New function.
13198 (vc-revert-buffer): Delegate some of the work to it.
13199
13200 * vc-rcs.el (vc-rcs-fetch-master-state): Parse and remember
13201 default branch unconditionally.
13202 (vc-rcs-set-default-branch): New function.
13203 (vc-rcs-cancel-version, vc-rcs-checkin, vc-rcs-checkout): Use it.
13204 (vc-rcs-checkin): If an appropriate default branch has been set,
13205 force creation of that branch.
13206 (vc-rcs-receive-file): Rewritten to contain only backend-specific
13207 code (as suggested by Stefan Monnier).
13208
13209 2000-10-02 Gerd Moellmann <gerd@gnu.org>
13210
13211 * isearch.el (isearch-lazy-highlight-update): Don't put a lazy
13212 highlighting overlay with a different face over the overlay
13213 isearch uses to highlight the current match because that can lead
13214 to bad face combinations.
13215
13216 * loadup.el (toplevel): Load faces before isearch.
13217
13218 * isearch.el (isearch-faces): New custom group.
13219 (isearch): New defface; was already tested for in the code.
13220 (isearch-lazy-highlight-face): Changed to defface from defcustom.
13221 (isearch-highlight): Always use face `isearch'.
13222
13223 2000-10-02 Dave Love <fx@gnu.org>
13224
13225 * emacs-lisp/byte-opt.el (byte-optimize-lapcode): Don't bind
13226 unused vars. Treat byte-constant2 like byte-constant. Fix bogus
13227 comparison of opcode with operand.
13228
13229 2000-10-03 Miles Bader <miles@gnu.org>
13230
13231 * play/yow.el (yow): Don't display multi-line quotations in a *Help*
13232 buffer, since the echo area will now grow to accommodate them.
13233
13234 2000-10-02 Andre Spiegel <spiegel@gnu.org>
13235
13236 * vc-hooks.el (vc-registered): If FILE used to be registered under
13237 a certain backend, try that one first.
13238
13239 * vc.el (vc-responsible-backend): Undo the previous change in the
13240 argument list. Handle multiple backends correctly.
13241 (vc-find-new-backend): Function removed.
13242 (vc-register): Use vc-responsible-backend, as before.
13243 (vc-next-action-on-file): Do use vc-registered, not vc-backend.
13244
13245 2000-10-02 Gerd Moellmann <gerd@gnu.org>
13246
13247 * startup.el (fancy-splash-head): Change message below the
13248 logo.
13249
13250 2000-10-02 Miles Bader <miles@lsi.nec.co.jp>
13251
13252 * diff-mode.el (diff-goto-source): Emit a status message.
13253 (diff-test-hunk, diff-apply-hunk): Remove unneeded `let'.
13254 (diff-test-hunk): Fix doc string.
13255 (diff-apply-hunk): Only advance if `diff-advance-after-apply-hunk'.
13256 (diff-advance-after-apply-hunk): New variable.
13257 (diff-apply-hunk): Don't return a value.
13258
13259 2000-10-01 Stefan Monnier <monnier@cs.yale.edu>
13260
13261 * vc.el (vc-editable-p): Minor optimization.
13262 (edit-vc-file, vc-next-action-on-file): Don't use find-file.
13263 (vc-find-new-backend): New function split from vc-responsible-backend.
13264 (vc-register): Use it.
13265 (vc-responsible-backend): Remove REGISTER arg and add BACKENDS arg.
13266 (vc-unregister): Drop BACKEND arg (it doesn't work anyway).
13267 (vc-default-unregister, vc-revert-buffer): Docstring fix.
13268 (vc-clear-headers): Don't use find-file.
13269 (vc-revert-buffer): Use `and' again (must have been a braino).
13270 (vc-switch-backend): Only prompt if requested.
13271 Short circuit if nothing is to be done.
13272 Don't use vc-resynch-buffer which could lose unsaved editing.
13273 (vc-default-receive-file): Update call to vc-unregister.
13274 (with-vc-file, vc-next-action-on-file):
13275 Use vc-backend rather than vc-registered.
13276 (vc-next-action-on-file): Use intern-soft.
13277 Deal with read-only *vc-diff* buffer.
13278 (vc-transfer-file): Docstring fix.
13279
13280 * vc-rcs.el (vc-rcs-unregister): Keep a backup of the master file.
13281 (vc-rcs-receive-file): Avoid with-vc-properties.
13282 Update call to vc-unregister.
13283 Use constant `RCS' rather than (dynamically bound) var `backend'.
13284
13285 2000-10-01 Andre Spiegel <spiegel@gnu.org>
13286
13287 * vc.el (vc-next-action-on-file): Update mode line only if file
13288 is visited.
13289 (vc-start-entry): New argument initial-contents. Don't visit the file
13290 if it isn't already visited. Brought documentation up-to-date.
13291 (vc-next-action, vc-register): Updated calls to vc-start-entry.
13292 (vc-checkin): New optional arg initial-contents, which is passed to
13293 vc-start-entry.
13294 (vc-finish-logentry): Make sure to bury log buffer only if there
13295 really is one. Call `vc-resynch-buffer' on log-file, not
13296 buffer-file-name.
13297 (vc-default-comment-history, vc-default-wash-log): New functions.
13298 (vc-index-of): Removed.
13299 (vc-transfer-file): Make do without the above.
13300 (vc-default-receive-file): Call comment-history unconditionally. Pass
13301 the resulting string to vc-checkin, instead of inserting it into the
13302 comment ring.
13303
13304 * vc-rcs.el (vc-rcs-receive-file): Call comment-history
13305 unconditionally. Use the comments as initial contents of the log
13306 entry buffer. Document the trick to force branch creation with no
13307 changes.
13308
13309 2000-10-01 Miles Bader <miles@gnu.org>
13310
13311 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Call
13312 `recenter' with an arg to prevent redrawing the display.
13313
13314 2000-09-30 Stefan Monnier <monnier@cs.yale.edu>
13315
13316 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Prettier.
13317
13318 * emacs-lisp/lisp.el (lisp-complete-symbol): Only jump 2 not 3 levels.
13319
13320 * progmodes/c-mode.el (c-mode):
13321 Don't gratuitously override the default for comment-column.
13322
13323 * textmodes/tex-mode.el (latex-metasection-list): New var.
13324 (latex-imenu-create-index): Use it.
13325 Move the regexp construction outside loops (and use push).
13326 (tex-font-lock-keywords-1, tex-font-lock-keywords-2)
13327 (tex-font-lock-keywords): Moved from font-lock.el.
13328 (tex-comment-indent): Remove.
13329 (tex-common-initialization): Don't set comment-indent-function.
13330 (latex-block-default): New var.
13331 (tex-latex-block): Use it to provide a default choice.
13332 Add any unknown choice to latex-block-names.
13333 Insert [...] after {...}.
13334 (tex-last-unended-begin): Simplify regexp.
13335 (tex-goto-last-unclosed-latex-block, latex-backward-sexp-1)
13336 (latex-forward-sexp-1, latex-forward-sexp): New functions.
13337 (latex-mode): Set forward-sexp-function.
13338
13339 * textmodes/texinfo.el (texinfo-font-lock-syntactic-keywords):
13340 Add regexp for @ignore ... @end ignore.
13341 (texinfo-heading-face): New face.
13342 (texinfo-font-lock-keywords): Use it.
13343 (texinfo-mode-menu): New menu.
13344 (texinfo-inside-macro-p, texinfo-inside-env-p, texinfo-insert-quote):
13345 New functions.
13346 (texinfo-mode-map): Bind " to insert-quote and M-RET to insert-@item.
13347 (texinfo-section-types-regexp, texinfo-section-level-regexp)
13348 (texinfo-subsection-level-regexp, texinfo-subsubsection-level-regexp):
13349 Remove declaration.
13350 (texinfo-show-structure): Use outline-regexp and texinfo-section-list.
13351
13352 * delsel.el (delete-selection-mode): Use define-minor-mode.
13353
13354 * emacs-lisp/regexp-opt.el (regexp-opt-group): Put more parenthesis.
13355
13356 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
13357
13358 * dired.el (dired-map-over-marks): Use modern backquotes and docstring.
13359
13360 2000-09-30 Gerd Moellmann <gerd@gnu.org>
13361
13362 * replace.el (keep-lines-read-args): New function.
13363 (keep-lines, flush-lines, how-many): Use keep-lines-read-args to
13364 read arguments interactively. Add parameters RSTART and REND.
13365 Operate on the active region in Transient Mark mode.
13366
13367 * files.el (auto-mode-alist): Add pattern for `#*mail*...'.
13368
13369 * emacs-lisp/authors.el (authors-obsolete-file-p): New function.
13370 (authors-obsolete-files-regexps): New variable.
13371 (authors-add): Don't record changes in obsolete files.
13372
13373 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
13374
13375 * autoinsert.el (auto-insert-mode): Use define-minor-mode.
13376
13377 * newcomment.el (comment-indent-function): Use 0 for ;;; and %%%.
13378 (comment-indent): Make sure there's a space between code and comment.
13379 Shift comments left to avoid going past fill-column.
13380
13381 2000-09-29 Gerd Moellmann <gerd@gnu.org>
13382
13383 * startup.el (startup-echo-area-message): New function.
13384 (display-startup-echo-area-message): Use it.
13385 (fancy-splash-screens): Rewritten to use keymaps and a timer.
13386 (fancy-splash-default-action): New function.
13387 (fancy-splash-screens-1): New function.
13388 (fancy-splash-head): Put a help-echo and a keymap under the image.
13389
13390 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
13391
13392 * diff-mode.el (diff-add-log-file-name): Remove.
13393 (diff-mode): Use add-log-buffer-file-name-function.
13394
13395 * add-log.el (find-change-log): New arg BUFFER-FILE.
13396 (add-log-file-name): Obey add-log-file-name-function.
13397 (add-log-buffer-file-name-function): New var.
13398 (add-change-log-entry): Use it.
13399
13400 2000-09-29 Miles Bader <miles@gnu.org>
13401
13402 * image-file.el (image-file-name-extensions): New variable.
13403 (image-file-name-regexps): Renamed from `image-file-regexps'.
13404 New default value is nil. Call `auto-image-file-mode'.
13405 (image-file-name-regexp): New function.
13406 (auto-image-file-mode): New minor mode.
13407 (insert-image-file): Don't make conditional on the image-file
13408 handler being enabled.
13409 (image-file-handler): Make the call here conditional instead.
13410 (set-image-file-handler-enabled, enable-image-file-handler)
13411 (disable-image-file-handler): Functions removed.
13412
13413 * emacs-lisp/authors.el (authors-print): Rephrase many-files
13414 string.
13415
13416 2000-09-29 Gerd Moellmann <gerd@gnu.org>
13417
13418 * textmodes/tex-mode.el (latex-outline-regexp): Don't use `list*';
13419 it's a function from CL.
13420 (latex-imenu-create-index): Replace eval-when-compile with progn
13421 because latex-section-alist is not bound while compiling.
13422
13423 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
13424
13425 * textmodes/outline.el (outline-minor-mode): Use define-minor-mode.
13426 (outline-mode): Use define-derived-mode.
13427
13428 * progmodes/perl-mode.el (perl-mode):
13429 * progmodes/awk-mode.el (awk-mode):
13430 * progmodes/asm-mode.el (asm-mode):
13431 Don't gratuitously override the default for comment-column.
13432
13433 * emacs-lisp/lisp.el (lisp-complete-symbol):
13434 Distinguish the let-binding case from the funcall case.
13435 (forward-sexp-function): New variable.
13436 (forward-sexp): Use it.
13437
13438 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Autoload.
13439 (easy-mmode-defmap): Remove the now useless autoload.
13440
13441 * time.el (display-time-mode): Use define-minor-mode.
13442
13443 * subr.el (add-minor-mode): Don't eval NAME.
13444 Don't depend on the presence of TOGGLE-FUN for any special behavior.
13445 Use if rather than cond.
13446
13447 * simple.el (read-expression-map): Define more properly.
13448 (comment-indent-hook): Remove.
13449 (string-to-syntax): Bug fix.
13450
13451 * pcvs.el (cvs-ediff-exit-hook): Kill buffer before window.
13452 (cvs-ediff-diff): Fix typo.
13453 (cvs-revert-if-needed): Don't bother preserving read-only.
13454
13455 * paren.el (show-paren-mode): Use define-minor-mode.
13456
13457 * jka-compr.el (auto-compression-mode): Use define-minor-mode.
13458 (toggle-auto-compression): Remove.
13459 (jka-compr-build-file-regexp): Remove useless grouping.
13460
13461 * diff-mode.el (diff-mode-map, diff-minor-mode-prefix):
13462 Avoid user-reserved bindings.
13463 (diff-mode, diff-minor-mode): Drop make-local-hook (done by add-hook).
13464 (diff-header-face): Revert to grey85.
13465
13466 * cvs-status.el (cvs-status-entry-leader-re): Minor fix.
13467
13468 * complete.el (partial-completion-mode) <defcustom>: Remove.
13469 (partial-completion-mode): Use define-minor-mode.
13470 (PC-do-completion): Understand `completion-auto-help = delay'
13471 to mean to popup the completion buffer only the second time.
13472 (PC-include-file-all-completions, PC-include-file-all-completions)
13473 (PC-include-file-all-completions): Don't quote lambda.
13474
13475 * comint.el (comint-mode-hook): Docstring fix.
13476 (comint-mode): Use define-derived-mode.
13477 (comint-mode-map): Remove obsolete comment.
13478 (make-comint): Minor stylistic change.
13479 (comint-insert-clicked-input): Be more careful to find the overlay.
13480 Use this-command-keys rather than hardcoding mouse-2.
13481
13482 * font-lock.el: Replace confusing (,@ with ,
13483 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
13484 Don't use regexp-opt-depth. Spice up the regexp for args.
13485 Don't distinguish between cmds that can take an opt arg or not.
13486 Use `append' and `prepend' rather than `keep'.
13487
13488 * textmodes/tex-mode.el (latex-imenu-indent-string): Add a space.
13489 (latex-outline-regexp): New var.
13490 (latex-outline-level): New fun.
13491 (latex-section-alist): New var.
13492 (latex-imenu-create-index): Use it. Use `push' as well.
13493 (tex-shell-map): Initialize it properly.
13494 (tex-mode): Minor stylistic change.
13495 (plain-tex-mode): Use define-derived-mode.
13496 (latex-mode): Use define-derived-mode.
13497 Construct the paragraph regexps in a more readable way.
13498 Set the buffer-local outline-{level,regexp} vars.
13499 (slitex-mode): Derive from latex-mode.
13500 (tex-common-initialization): Don't kill-all-vars anymore.
13501 Add setting for comment-add and font-lock-defaults.
13502 (tex-start-shell): Use with-current-buffer and don't re-init keymap.
13503 (tex-main-file): New fun. Obey TeX-master as well and remove `.tex'.
13504 (tex-start-tex): New arg DIR (and send a chdir command for it).
13505 Also display the shell buffer and save it in tex-last-buffer-texed.
13506 (tex-region): Use expand-file-name rather than concat.
13507 Remove code made useless by changes in tex-start-tex.
13508 (tex-file): Use tex-main-file and adapt to new tex-start-tex.
13509
13510 * map-ynp.el (map-y-or-n-p): Fix missing backquotes.
13511
13512 2000-09-28 Dave Love <fx@gnu.org>
13513
13514 * eshell/eshell.el (eshell) <defgroup>: Add :version.
13515
13516 2000-09-28 Gerd Moellmann <gerd@gnu.org>
13517
13518 * emacs-lisp/authors.el (authors-add): Use `nconc' instead of
13519 `append'.
13520
13521 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
13522
13523 * info.el (Info-extract-pointer): Undo last change.
13524 Instead, fix the position of the `bound' arg to re-search-backward.
13525
13526 2000-09-27 Stefan Monnier <monnier@cs.yale.edu>
13527
13528 * info.el (Info-extract-pointer):
13529 Widen more carefully, to avoid finding pointers in other nodes.
13530 (Info-index): Use push.
13531
13532 2000-09-27 Gerd Moellmann <gerd@gnu.org>
13533
13534 * frame.el (set-frame-font): Remove call to obsolete function
13535 frame-update-faces.
13536 (set-foreground-color, set-background-color): Likewise for
13537 frame-update-face-colors.
13538
13539 2000-09-27 Miles Bader <miles@gnu.org>
13540
13541 * image-file.el: New file.
13542
13543 2000-09-27 Gerd Moellmann <gerd@gnu.org>
13544
13545 * frame.el (frame-notice-user-settings): Don't call
13546 frame-update-faces, which is a no-op now.
13547
13548 * ediff-wind.el (ediff-control-frame-parameters): Add zero
13549 tool-bar-lines.
13550
13551 2000-09-27 Dave Love <fx@gnu.org>
13552
13553 * mouse.el: Fix last change.
13554
13555 2000-09-27 Miles Bader <miles@lsi.nec.co.jp>
13556
13557 * toolbar/tool-bar.el (tool-bar-help): Use `mouse-pixel-position'.
13558
13559 2000-09-22 Kenichi Handa <handa@etl.go.jp>
13560
13561 * international/quail.el (quail-help): The output message is
13562 improved.
13563
13564 2000-09-26 Dave Love <fx@gnu.org>
13565
13566 * mouse.el (popup-menu): If POSITION is nil, set it using
13567 mouse-position.
13568
13569 2000-09-25 Sam Steingold <sds@gnu.org>
13570
13571 * net/browse-url.el (browse-url-file-url): Check for null maps.
13572
13573 2000-09-26 Gerd Moellmann <gerd@gnu.org>
13574
13575 * frame.el (frame-notice-user-settings): Don't add a
13576 tool-bar-lines frame parameter to default-frame-alist in batch mode.
13577
13578 * frame.el (frame-notice-user-settings):
13579 Make tool-bar-mode and default-frame-alist consistent.
13580
13581 * toolbar/tool-bar.el (tool-bar-help): New function.
13582
13583 2000-09-25 Gerd Moellmann <gerd@gnu.org>
13584
13585 * bytecomp.el (byte-compile-defvar-or-defconst): Only cons onto
13586 current-load-list in top-level forms. Else this leaks a cons cell
13587 every time a defun is called.
13588
13589 * mail/mail-utils.el (rmail-dont-reply-to): Fix last change.
13590
13591 2000-09-25 Dave Love <fx@gnu.org>
13592
13593 * startup.el (fancy-splash-head): Check XPM is available.
13594
13595 * autoinsert.el (auto-insert): Doc fix.
13596 (auto-insert-alist): Following GNU notices, don't say `copyright
13597 _by_'. Use line-beginning-position.
13598 (auto-insert): Check buffer-file-name is non-nil before use.
13599
13600 2000-09-25 Gerd Moellmann <gerd@gnu.org>
13601
13602 * textmodes/texinfo.el (texinfo-mode): Prevent filling lines
13603 starting with `@def' or `@multitable', in addition to ones
13604 specified by the user in auto-fill-inhibit-regexp.
13605
13606 2000-09-25 Markus Rost <rost@math.ohio-state.edu>
13607
13608 * mail/mail-utils.el (rmail-dont-reply-to): Avoid infinite loop if
13609 rmail-dont-reply-to-names matches the empty string.
13610
13611 2000-09-25 Gerd Moellmann <gerd@gnu.org>
13612
13613 * startup.el (command-line-1, fancy-splash-text): Change the
13614 text to sound more friendly.
13615
13616 2000-09-23 Thien-Thi Nguyen <ttn@gnu.org>
13617
13618 * progmodes/hideshow.el: Update author email address.
13619 Generally, sync w/ maintainer version 5.22.
13620 (hs-hide-all-non-comment-function): New var.
13621 (hs-hide-hook, hs-show-hook, hs-minor-mode): Update docstrings.
13622 (hs-hide-all): Use `hs-hide-all-non-comment-function'.
13623 (hs-show-region): Delete this command.
13624 (hs-minor-mode-map): Change bindings to leave "C-c LETTER" alone.
13625
13626 2000-09-22 Dave Love <fx@gnu.org>
13627
13628 * hl-line.el (hl-line-overlay): Don't make it buffer-local.
13629 (hl-line-highlight): Specify buffer when moving overlay.
13630
13631 * progmodes/fortran.el (fortran-mode): Locally set
13632 normal-auto-fill-function.
13633 (fortran-auto-fill-mode): Just alias to auto-fill-mode.
13634 (fortran-mode-map): Adjust auto-fill menu entry.
13635
13636 2000-09-22 Gerd Moellmann <gerd@gnu.org>
13637
13638 * vc-rcs.el (toplevel): Require `vc' when compiling.
13639
13640 * startup.el (fancy-splash-head): Use splash.pbm instead of splash.xbm.
13641
13642 2000-09-22 Andre Spiegel <spiegel@gnu.org>
13643
13644 * vc.el (vc-switch-backend): Signal an error if the file is not
13645 registered under the new backend.
13646
13647 * vc-rcs.el (vc-rcs-checkin): Fix bug that prevented check-in
13648 without explicit revision number.
13649
13650 2000-09-21 Stefan Monnier <monnier@cs.yale.edu>
13651
13652 * diff-mode.el (diff-file-header-face): Reset to its previous value.
13653 (diff-hunk-text): Correctly use offsets rather than buffer-positions.
13654 (diff-xor): New function.
13655 (diff-find-source-location): Use it. Fix a stupid name clash.
13656 (diff-hunk-status-msg): New function.
13657 (diff-apply-hunk): Drop args OTHER-FILE, DRY-RUN, POPUP and NOERROR.
13658 (diff-test-hunk): Use diff-find-source-location.
13659 (diff-goto-source): Favor the `reverse'.
13660 (diff-hunk-text): Properly handle one-sided context diffs.
13661 (diff-apply-hunk): When done, advance to the next hunk.
13662
13663 2000-09-21 Gerd Moellmann <gerd@gnu.org>
13664
13665 * startup.el (command-line): If frame was created with a non-zero
13666 tool-bar-lines parameter, switch tool-bar-mode on.
13667
13668 * add-log.el (change-log-date-face, change-log-name-face)
13669 (change-log-email-face, change-log-file-face)
13670 (change-log-list-face, change-log-conditionals-face)
13671 (change-log-function-face, change-log-acknowledgement-face):
13672 New faces, inheriting from font-lock faces.
13673 (change-log-font-lock-keywords): Use them.
13674
13675 2000-09-21 Dave Love <fx@gnu.org>
13676
13677 * progmodes/cperl-mode.el (top-level): Clean up
13678 `eval-when-compile's and assorted defvars.
13679 (cperl-invalid-face): Don't double-quote value. Change custom
13680 type.
13681 (cperl-mode): Set normal-auto-fill-function and don't zap
13682 auto-fill-function.
13683 (cperl-imenu--function-name-regexp-perl): Renamed from
13684 imenu-example--function-name-regexp-perl.
13685 (cperl-imenu--create-perl-index): Renamed from
13686 imenu-example--create-perl-index.
13687 (cperl-xsub-scan): Don't require cl.
13688
13689 * msb.el (msb-mode-map): Use substitute-key-definition.
13690 (msb-mode): Use msb-mode-map.
13691
13692 2000-09-21 Andre Spiegel <spiegel@gnu.org>
13693
13694 * vc.el (vc-index-of, vc-transfer-file, vc-default-receive-file):
13695 New functions.
13696 (vc-next-action-on-file): Call vc-transfer-file at appropriate places.
13697 (vc-switch-backend): New function.
13698 (vc-prefix-map): Bind `vc-switch-backend' to `b'.
13699 (vc-register): Fix prompt.
13700 (vc-unregister, vc-default-unregister): New functions.
13701 (vc-version-diff): Handle empty buffer in sentinel.
13702
13703 * vc-rcs.el (vc-rcs-workfile-is-newer): New function.
13704 (vc-rcs-state-heuristic): Use it to guess the state of files with
13705 non-strict locking.
13706 (vc-rcs-find-most-recent-rev): Handle the case when a branch has
13707 been set with -b, but not created yet.
13708 (vc-rcs-fetch-master-state): With non-strict locking, compare file
13709 contents in order to find the state.
13710 (vc-rcs-checkin): Allow creation of branches with no changes.
13711 (vc-rcs-unregister, vc-rcs-receive-file)
13712 (vc-rcs-set-non-strict-locking): New functions.
13713
13714 * vc-hooks.el (vc-name): Force correct computation of the value
13715 in case it is missing.
13716
13717 2000-09-21 Gerd Moellmann <gerd@gnu.org>
13718
13719 * startup.el (fancy-splash-tail): Use a different foreground
13720 color on a dark frame background.
13721
13722 2000-09-21 Miles Bader <miles@lsi.nec.co.jp>
13723
13724 * info.el: Use the correct capitalization when making Info-mode
13725 and Info-edit-mode `special' modes.
13726
13727 2000-09-20 Stefan Monnier <monnier@cs.yale.edu>
13728
13729 * diff-mode.el (diff-add-log-file-name, diff-current-defun): New funs.
13730 (diff-mode): Add support for add-log.el.
13731 (diff-hunk-text): Use char offsets rather than line offsets.
13732 (diff-find-source-location): Replace LINE with line-offset (nil
13733 if not found) and always set POS to a meaningful position.
13734 Adapt to the new char-offsets.
13735 (diff-apply-hunk): Drop support for the unused `select' POPUP.
13736 Adapt to the new diff-find-source-location.
13737 (diff-goto-source): Adapt to the new diff-find-source-location.
13738
13739 * add-log.el (add-log-file-name): New function (split out of
13740 add-change-log-entry).
13741 (add-change-log-entry): Use it.
13742 Call add-log-file-name-function with the changelog file name if
13743 the current buffer is not associated with any file.
13744 Avoid find-file if the selected window is dedicated.
13745
13746 * diff-mode.el (diff-find-source-location):
13747 Move code from diff-apply-hunk. Return buffer rather than file.
13748 (diff-apply-hunk): Use the new result from diff-find-source-location.
13749 (diff-goto-source): Use the new diff-find-source-location.
13750
13751 2000-09-20 Dave Love <fx@gnu.org>
13752
13753 * iswitchb.el: Some doc fixes.
13754 (iswitchb-mode-map): Define completely initially. Inherit
13755 minibuffer-local-map.
13756 (iswitchb-completion-help) <!iswitchb-xemacs>: Use
13757 fundamental-mode.
13758 (iswitchb-global-map): New variable.
13759 (iswitchb-summaries-to-end): Amalgamate regexps.
13760 (iswitchb-mode): New.
13761 (iswitchb-mode-hook): New variable.
13762 (iswitchb) <defgroup>: Add URL link. Use group `completion', not
13763 `extensions'.
13764
13765 2000-09-20 Gerd Moellmann <gerd@gnu.org>
13766
13767 * ehelp.el (electric-help): New defgroup.
13768 (electric-help-shrink-window): New user-option.
13769 (with-electric-help): Use it.
13770
13771 * window.el (shrink-window-if-larger-than-buffer): If face
13772 `mode-line' has a :box, and we're on a graphical frame, add 1
13773 to the needed window height.
13774
13775 * frame.el (frame-notice-user-settings): Add a last parameter nil
13776 to a call to `append', because the last list passed to `append' is
13777 not copied, and so subsequent calls to assq-delete-all will modify
13778 default-frame-alist.
13779
13780 * startup.el (fancy-splash-image): Change :type.
13781 (fancy-splash-head): Use an XBM image if appropriate.
13782 (command-line-1): Show splash screens in more cases.
13783
13784 * startup.el (fancy-splash-text): Don't quote faces.
13785
13786 * dired.el (dired-font-lock-keywords): Undo last change.
13787 (dired-readin): Bind indent-tabs-mode to nil.
13788
13789 * startup.el (fancy-splash-head): If frame's background mode
13790 is `dark', change the black background of the image to gray.
13791 (fancy-splash-screens): Display startup echo area message.
13792 (display-startup-echo-area-message): New function.
13793
13794 2000-09-20 Miles Bader <miles@lsi.nec.co.jp>
13795
13796 * faces.el (mode-line, tool-bar): Merge entries for `x' and `w32'.
13797
13798 * info.el (info-header-node): Tweak for color ttys.
13799
13800 * faces.el (face-valid-attribute-values): Make sure directories we
13801 search for stipples both exist and are readable before trying to
13802 search them.
13803
13804 * diff-mode.el (diff-apply-hunk): Jump to the correct line offset
13805 in the dry-run case.
13806
13807 * jka-compr.el (with-auto-compression-mode): New macro.
13808
13809 * cus-edit.el (custom-face-tag-face, custom-group-tag-face-1)
13810 (custom-group-tag-face, custom-variable-tag-face): Use relative
13811 :height and inherit from `variable-pitch' face instead of
13812 hardwiring :family.
13813 * hi-lock.el (hi-black-hb): Likewise.
13814
13815 Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
13816 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Like in
13817 toolbar-add-item, if image doesn't have a mask add a `:mask
13818 heuristic'.
13819
13820 2000-09-19 Stefan Monnier <monnier@cs.yale.edu>
13821
13822 * diff-mode.el: Docstring fixes.
13823 (diff-header-face, diff-comment-face): New faces.
13824 (diff-font-lock-keywords): Highlight a bit differently.
13825 (diff-find-source-location): Don't return SPAN any more.
13826 (diff-hunk-text): Don't bother erasing the temp buffer.
13827 (diff-find-text): Drop argument LINE.
13828 (diff-apply-hunk): Update calls to diff-find-text.
13829 (diff-goto-source): Use pop-to-buffer again and don't raise an error.
13830
13831 * calendar/calendar.el: Docstring fixes.
13832 (calendar-make-alist): Don't quote lambda.
13833 (calendar-star-date): Use make-local-variable.
13834
13835 2000-09-19 Dave Love <fx@gnu.org>
13836
13837 * toolbar/tool-bar.el: Renamed from toolbar.el.
13838 Change `toolbar' to `tool-bar' generally in symbols.
13839 Make some items invisible in `special' major modes.
13840 (tool-bar-add-item-from-menu): Renamed from toolbar-like-menu-item.
13841 Add arg PROPS.
13842
13843 * startup.el (fancy-splash-screen) <defgroup>: Fix syntax.
13844 Add :version here.
13845 (fancy-splash-delay, fancy-splash-image): Remove :version here.
13846
13847 2000-09-19 Gerd Moellmann <gerd@gnu.org>
13848
13849 * progmodes/sh-script.el (sh-search-word): Remove call to `debug'.
13850
13851 * files.el (find-file-suppress-same-file-warnings): New user-option.
13852 (find-file-noselect): Use it.
13853
13854 * startup.el (fancy-splash-delay, fancy-splash-image): Add :version.
13855 (fancy-splash-screen): Defgroup.
13856
13857 * add-log.el (change-log-font-lock-keywords): Match names
13858 more exactly for the case that font-lock-constant-face is
13859 underlined.
13860
13861 2000-09-19 Richard M. Stallman <rms@gnu.org>
13862
13863 * progmodes/sh-script.el (sh-search-word): Rewritten for speed.
13864
13865 2000-09-19 Andre Spiegel <spiegel@gnu.org>
13866
13867 * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
13868
13869 2000-09-19 Gerd Moellmann <gerd@gnu.org>
13870
13871 * gnus/: Update to emacs-21-branch of the Gnus CVS repository.
13872 * gnus/binhex.el, gnus/flow-fill.el, gnus/format-spec.el
13873 * gnus/gnus-ml.el, gnus/gnus-mlspl.el, gnus/ietf-drums.el,
13874 * gnus/imap.el, gnus/mail-parse.el, gnus/mail-prsvr.el,
13875 * gnus/mail-source.el, gnus/mailcap.el, gnus/mm-bodies.el,
13876 * gnus/mm-decode.el, gnus/mm-encode.el, gnus/mm-partial.el,
13877 * gnus/mm-util.el, gnus/mm-uu.el, gnus/mm-view.el,
13878 * gnus/mml.el, gnus/nnimap.el, gnus/nnslashdot.el,
13879 * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
13880 * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
13881 * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
13882 * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
13883
13884 * startup.el (fancy-splash-text): New variable.
13885 (fancy-splash-delay, fancy-splash-image): New user-options.
13886 (fancy-splash-insert, fancy-splash-head, fancy-splash-tail)
13887 (fancy-splash-screens): New functions.
13888 (command-line-1): If display has a `display' frame parameter, has
13889 colors, and we have XPM support, show more fancy splash screens.
13890
13891 2000-09-19 Dave Love <fx@gnu.org>
13892
13893 * map-ynp.el (map-y-or-n-p): Check use-dialog-box. Don't lose
13894 with null `help'. Use modern backquote syntax.
13895
13896 2000-09-19 Gerd Moellmann <gerd@gnu.org>
13897
13898 * font-lock.el (font-lock-mode): Change message telling the user
13899 that ``the buffer is too big''.
13900
13901 * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
13902 for instance for the case that tab-width is 2.
13903
13904 2000-09-18 Gerd Moellmann <gerd@gnu.org>
13905
13906 * toolbar/toolbar.el (toolbar-like-menu-item): Like in
13907 toolbar-add-item, if image doesn't have a mask add a `:mask
13908 heuristic'.
13909
13910 2000-09-18 Miles Bader <miles@lsi.nec.co.jp>
13911
13912 * diff-mode.el (diff-hunk-text): Add new optional arg LINE-OFFSET,
13913 and return a cons if it's non-nil.
13914 (diff-apply-hunk): Try to jump to the line in the source text
13915 corresponding to the position of point in the in the hunk.
13916
13917 * info.el (Info-title-3-face, Info-title-2-face)
13918 (Info-title-1-face): Use face inheritance and relative sizes
13919 instead of hard-wiring things.
13920
13921 * faces.el (secondary-selection): Make dark-background variant sane.
13922
13923 2000-09-16 Andrew Innes <andrewi@gnu.org>
13924
13925 * makefile.w32-in (compile-files-CMD): No need to make .elc files
13926 read-only, since they aren't under VC now.
13927
13928 2000-09-17 Dave Love <fx@gnu.org>
13929
13930 * tmm.el: Replace mapcar with mapc in several places.
13931
13932 * loadhist.el (unload-feature): Maybe call elp-restore-list and
13933 ad-unadvise.
13934
13935 * international/latin1-disp.el: New file.
13936
13937 * calendar/cal-move.el (scroll-calendar-left)
13938 (scroll-calendar-right): Make arg optional (for active mode line).
13939
13940 * calendar/calendar.el (calendar-mode-line-format): Make fields
13941 mouse-sensitive.
13942 (calendar-read-date, calendar-read-date, calendar-window-list):
13943 Unquote lambda.
13944 (calendar-month-name): Use aref, not sref.
13945
13946 * view.el (minor-mode-alist): Propertize the string.
13947
13948 * international/characters.el (standard-case-table): Add entries
13949 for Greek.
13950
13951 2000-09-18 Miles Bader <miles@gnu.org>
13952
13953 * info.el (info-node, info-xref): Add dark-background variants.
13954
13955 * faces.el (header-line): Change defaults to be less confusing
13956 when mixed with mode-lines.
13957
13958 * info.el (Info-fontify-node): Make a few cleanups.
13959 Add extra `help-echo' and `local-map' props to node xrefs.
13960 Use header-specific faces for node-names & xrefs.
13961 (Info-use-header-line): New variable.
13962 (info-header-xref, info-header-node): New faces.
13963 (Info-setup-header-line): New function.
13964 (Info-select-node): Call Info-setup-header-line when enabled.
13965 (Info-extract-pointer): Work even if the header line is hidden.
13966 (Info-header-line): New variable.
13967
13968 2000-09-16 Stefan Monnier <monnier@cs.yale.edu>
13969
13970 * vms-patch.el (print-region-function): Don't quote lambda.
13971
13972 * tempo.el (tempo-expand-if-complete): Quote paren in docstring.
13973
13974 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Cleanup the regexp.
13975 (lm-get-header-re): Allow spaces between the header and the colon.
13976 (lm-header): Allow $ in non-RCS headers.
13977 (lm-header-multiline): Put the strings back into order.
13978 Stop at an empty line. Don't require two space chars if the
13979 line is clearly not another header line.
13980
13981 * emacs-lisp/lmenu.el (popup-menu, popup-menu-internal)
13982 (popup-menu-popup): Remove.
13983
13984 2000-09-15 Gerd Moellmann <gerd@gnu.org>
13985
13986 * toolbar/toolbar.el (toolbar-add-item): Use the same image
13987 specification if or if not tool-bar item contains an `:enabled'
13988 property.
13989
13990 * menu-bar.el (menu-bar-files-menu): Disable ``Save'' if
13991 current buffer has no file name.
13992
13993 2000-09-15 Dave Love <fx@gnu.org>
13994
13995 * strokes.el: Sync with maintainer's current version with changes
13996 for Emacs, but avoid runtime cl and levents.
13997 (toplevel): Change autoloads and compilation requires.
13998 (strokes-version, strokes-bug-address, strokes-lift): Values
13999 changed.
14000 (strokes-xpm-header, strokes-insinuated): New variable.
14001 (strokes): Add :link.
14002 (strokes-mode): Customized.
14003 (strokes-while-inhibiting-garbage-collector): New macro.
14004 (strokes-remassoc): Avoid remove-if.
14005 (strokes-fix-button2-command): Don't use ad-do-it.
14006 (strokes-insinuate): New function.
14007 (strokes-button-press-event-p, strokes-button-release-event-p):
14008 New functions, used instead of non-`strokes-' versions..
14009 (strokes-mouse-event-p): Rewritten.
14010 (strokes-event-closest-point): Avoid event-point.
14011 (strokes-get-grid-position): Avoid cdadr, caadr
14012 (strokes-read-stroke, strokes-read-complex-stroke): Avoid levents
14013 functions.
14014 (strokes-help): Use with-output-to-temp-buffer.
14015 (strokes-window-configuration-changed-p): New function.
14016 (strokes-update-window-configuration): Use buffer-live-p,
14017 strokes-window-configuration-changed-p.
14018 (strokes-mode): Use strokes-insinuate. Alter mouse bindings.
14019 (strokes-char-face): New face.
14020 (strokes-char-table, strokes-base64-chars): New variable.
14021 (strokes-xpm-for-stroke, strokes-list-strokes)
14022 (strokes-xpm-char-on-p, strokes-xpm-char-bit-p)
14023 (strokes-xpm-encode-length-as-string, strokes-xpm-decode-char)
14024 (strokes-xpm-to-compressed-string, strokes-decode-buffer)
14025 (strokes-encode-buffer, strokes-xpm-for-compressed-string)
14026 (strokes-compose-complex-stroke, strokes-alphabetic-lessp): New
14027 functions.
14028
14029 2000-09-15 Gerd Moellmann <gerd@gnu.org>
14030
14031 * toolbar/toolbar.el (toolbar-add-item): Use image-mask-p.
14032
14033 * image.el (create-image): Doc fix.
14034
14035 * toolbar/toolbar.el (toolbar-add-item): Use `:mask heuristic'
14036 instead of `:heuristic-mask t'.
14037
14038 2000-09-14 Andrew Innes <andrewi@gnu.org>
14039
14040 * makefile.w32-in: Revert to Unix line endings.
14041
14042 2000-09-14 Andrew Innes <andrewi@gnu.org>
14043
14044 * makefile.w32-in: Add bootstrap support. Also copy lisp source
14045 when installing.
14046
14047 * makefile.nt (DONTCOMPILE): Fix typo.
14048
14049 * shell.el (shell-write-history-on-exit): New function.
14050 (shell-dumb-shell-regexp): New custom variable.
14051 (shell-mode): Make shell-write-history-on-exit the process
14052 sentinel if shell name matches shell-dumb-shell-regexp.
14053
14054 * w32-fns.el: Comment out before-init-hook function which resets
14055 source-directory based; this breaks bootstrap.
14056
14057 2000-09-14 Dave Love <fx@gnu.org>
14058
14059 * toolbar/cancel.xpm, toolbar/close.xpm, toolbar/copy.xpm,
14060 toolbar/cut.xpm, toolbar/exit.xpm, toolbar/fld_open.xpm,
14061 toolbar/help.xpm, toolbar/info.xpm, toolbar/mail.xpm,
14062 toolbar/mail_compose.xpm, toolbar/new.xpm, toolbar/open.xpm,
14063 toolbar/paste.xpm, toolbar/preferences.xpm, toolbar/print.xpm,
14064 toolbar/save.xpm, toolbar/saveas.xpm, toolbar/search-replace.xpm,
14065 toolbar/search.xpm, toolbar/spell.xpm, toolbar/undo.xpm: New.
14066 From Tuomas Kuosmanen <tigert@gimp.org>. (Gnome icons fetched
14067 from <URL:http://tigert.gimp.org/gnome/gnome-stock/>.)
14068
14069 * toolbar/toolbar.el: New.
14070
14071 * subdirs.el: Add toolbar.
14072
14073 2000-09-14 Gerd Moellmann <gerd@gnu.org>
14074
14075 * indent.el (indent-for-tab-command): Doc fix.
14076
14077 2000-09-14 Alex Schroeder <alex@gnu.org>
14078
14079 * ansi-color.el (ansi-colors): Doc change.
14080 (ansi-color-get-face): Simplified regexp.
14081 (ansi-color-faces-vector): Added more faces, doc change.
14082 (ansi-color-names-vector): Doc change.
14083 (ansi-color-regexp): Simplified regexp.
14084 (ansi-color-parameter-regexp): New regexp.
14085 (ansi-color-filter-apply): Doc change.
14086 (ansi-color-filter-region): Doc change.
14087 (ansi-color-apply): Use ansi-color-regexp and ansi-color-get-face,
14088 deal with zero length parameters.
14089 (ansi-color-apply-on-region): Doc change.
14090 (ansi-color-map): Doc change.
14091 (ansi-color-map-update): Removed debugging message.
14092 (ansi-color-get-face-1): Added condition-case to trap
14093 args-out-of-range errors.
14094 (ansi-color-get-face): Doc change.
14095 (ansi-color-make-face): Removed.
14096 (ansi-color-for-shell-mode): New option.
14097
14098 2000-09-13 Kenichi Handa <handa@etl.go.jp>
14099
14100 * international/quail.el (quail-start-translation): Translate KEY
14101 if necessary even if it doesn't have any mapping in the current
14102 input method.
14103 (quail-start-conversion): Likewise.
14104 (quail-help): The output message is improved.
14105
14106 2000-09-13 Miles Bader <miles@gnu.org>
14107
14108 * comint.el (comint-output-filter): Revert to using
14109 `insert-before-markers'. Add bletcherous hack to undo damage
14110 caused by `insert-before-markers'. Put `front-sticky' property on
14111 overlays created here so that the field code understands how the
14112 overlay works. Use a let when making comint-last-prompt-overlay,
14113 so that the code is easier to read.
14114
14115 2000-09-13 Dave Love <fx@gnu.org>
14116
14117 * wid-edit.el (widget-default-format-handler): DTRT when
14118 doc-property is a function.
14119
14120 2000-09-12 Francesco Potorti` <pot@gnu.org>
14121
14122 * mail/sendmail.el (mail-mode-fill-paragraph): Do not get the
14123 filed name if it's not there.
14124
14125 2000-09-12 Dave Love <fx@gnu.org>
14126
14127 * simple.el (read-mail-command): Doc fix.
14128 (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
14129
14130 * vc.el (vc-dired-listing-switches): Fix :version.
14131
14132 * vc-hooks.el: Doc fixes.
14133
14134 * subr.el (add-minor-mode): Use toggle-fun arg.
14135
14136 * speedbar.el: Add :version to several defcustoms.
14137
14138 * imenu.el (imenu--truncate-items, imenu--cleanup)
14139 (imenu--generic-function): Avoid mapcar.
14140 (imenu--replace-spaces): Function removed.
14141 (imenu--completion-buffer): Use subst-char-in-string.
14142 (imenu-add-to-menubar): Use keymap inheritance.
14143
14144 2000-09-12 Miles Bader <miles@gnu.org>
14145
14146 * diff-mode.el (diff-hunk-text): Use `with-temp-buffer'.
14147 (diff-mode-map): Bind `diff-test-hunk'.
14148 (diff-apply-hunk): Use `select-window' instead of `pop-to-buffer'.
14149
14150 2000-09-11 Gerd Moellmann <gerd@gnu.org>
14151
14152 * bytecomp.el (byte-compile-defvar): Undo last change
14153 because it breaks '(make-variable-buffer-local (defvar ...)'
14154 which is used at least in dired.
14155
14156 2000-09-12 Kenichi Handa <handa@etl.go.jp>
14157
14158 * international/quail.el (quail-define-package): Docstring
14159 modified.
14160
14161 2000-09-12 Kenichi Handa <handa@etl.go.jp>
14162
14163 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Add
14164 extra docstrings for "chinese-ccdospy", "chinese-ecdict",
14165 "chinese-etzy", "chinese-sw", and "chinese-ziranma". Modify the
14166 docstring of "chinese-py".
14167
14168 * international/quail.el (quail-translation-docstring): New
14169 variable.
14170 (quail-show-keyboard-layout): Docstring modified.
14171 (quail-select-current): Likewise.
14172 (quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
14173 infinite recursive call.
14174 (quail-help): Check quail-translation-docstring. Format of the
14175 output changed.
14176 (quail-help-insert-keymap-description): Adjusted for the above
14177 change.
14178
14179 2000-09-11 Gerd Moellmann <gerd@gnu.org>
14180
14181 * bytecomp.el (byte-compile-defvar): Only cons onto
14182 current-load-list in top-level forms. Else this leaks a cons cell
14183 every time a defun is called.
14184
14185 2000-09-11 Miles Bader <miles@lsi.nec.co.jp>
14186
14187 * diff-mode.el (diff-apply-hunk): Function basically rewritten.
14188 Now understands non-unified diffs. Some functionality moved into
14189 `diff-hunk-text' and `diff-find-text'. Add OTHER-FILE, DRY-RUN,
14190 POPUP, and NOERROR arguments. If DRY-RUN is true, don't actually
14191 modify anything. Only reposition point in the patched file if the
14192 patch succeeds. Only pop up another window if POPUP is true.
14193 Emit a message describing what happened if successful, and at what
14194 line-offset. Automatically detect reversed hunks and do something
14195 appropriate.
14196 (diff-hunk-text, diff-find-text): New functions.
14197 (diff-filter-lines): Function removed.
14198 (diff-test-hunk): New function.
14199 (diff-goto-source): Rewritten in terms of diff-apply-hunk.
14200
14201 2000-09-10 Dave Love <fx@gnu.org>
14202
14203 * textmodes/tildify.el: Minor doc/commentary fixes.
14204 (tildify) <defgroup>: Add :version.
14205
14206 * faces.el (face-x-resources): Make custom type more specific.
14207 (frame-background-mode): Use mapc.
14208 (region) <defcustom>: Add :version.
14209
14210 2000-09-08 Stefan Monnier <monnier@cs.yale.edu>
14211
14212 * vc-sccs.el (vc-sccs-register):
14213 * vc-rcs.el (vc-rcs-register):
14214 * vc-cvs.el (vc-cvs-register): Don't clear file's properties.
14215 * vc.el (vc-register): Clear file's properties.
14216
14217 2000-09-08 Gerd Moellmann <gerd@gnu.org>
14218
14219 * faces.el (face-spec-set): Only face-spec-reset-face when
14220 ATTRS is non-nil.
14221
14222 2000-09-08 Eli Zaretskii <eliz@is.elta.co.il>
14223
14224 * help.el (help-insert-xref-button): Fix a typo in doc string.
14225
14226 2000-09-07 Eli Zaretskii <eliz@is.elta.co.il>
14227
14228 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
14229 Fix doc strings of chinese-py-b5, chinese-py, and chinese-tonepy input
14230 methods.
14231
14232 * menu-bar.el (read-mail-item-name): New function.
14233 (menu-bar-tools-menu): Use it to compute and display the package
14234 used to read email.
14235 (menu-bar-tools-menu): Fix typo in GUD's help string.
14236
14237 2000-09-07 Dave Love <fx@gnu.org>
14238
14239 * diff-mode.el (diff-mouse-goto-source): New function.
14240
14241 * vc-sccs.el: Doc fixes.
14242 (vc-sccs-register-switches, vc-sccs-master-templates): Add :version.
14243
14244 * vc-rcs.el: Doc fixes.
14245 (vc-rcs-register-switches, vc-rcs-checkin-switches)
14246 (vc-rcs-checkout-switches, vc-rcs-header)
14247 (vc-rcs-master-templates): Add or change :version.
14248
14249 * vc-cvs.el: Doc fixes.
14250 (vc-cvs-register-switches, vc-cvs-header, vc-cvs-use-edit)
14251 (vc-cvs-stay-local): Add :version.
14252
14253 * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
14254
14255 2000-09-07 Kenichi Handa <handa@etl.go.jp>
14256
14257 * international/quail.el (quail-help): Fix previous change.
14258
14259 2000-09-07 Gerd Moellmann <gerd@gnu.org>
14260
14261 * faces.el (color-values): Doc fix.
14262
14263 * faces.el (frame-set-background-mode): Use frame-parameter
14264 instead of frame-parameters.
14265
14266 * frame.el (filtered-frame-list): Reduce consing.
14267 (frames-on-display-list): Call frame-parameter instead of
14268 frame-parameters.
14269
14270 2000-09-07 Kenichi Handa <handa@etl.go.jp>
14271
14272 * language/devan-util.el (devanagari-to-indian-region): In the
14273 loop, change the following char, not preceding char.
14274
14275 2000-09-07 Gerd Moellmann <gerd@gnu.org>
14276
14277 * menu-bar.el (menu-bar-update-buffers): Call frame-parameter
14278 instead of frame-parameters.
14279
14280 * faces.el (set-face-attribute): Simplify by calling
14281 internal-set-lisp-face-attribute with FRAME being 0.
14282
14283 * vc.el: Remove `Id' version control keyword.
14284
14285 2000-09-07 Kenichi Handa <handa@etl.go.jp>
14286
14287 * help.el (help-make-xrefs): Adjusted for the change of
14288 help-xref-mule-regexp.
14289 (help-insert-xref-button): New function.
14290
14291 * international/mule-cmds.el (help-xref-mule-regexp-template):
14292 Include the pattern for character set.
14293 (leim): New group.
14294
14295 * international/quail.el: Don't require face.
14296 (quail): New group.
14297 (quail-other-command): Dummy command to make quail-help work better.
14298 (quail-keyboard-layout-alist): Add Keyboard type "jp106".
14299 (quail-keyboard-layout-substitution): New variable.
14300 (quail-update-keyboard-layout): New function.
14301 (quail-keyboard-layout-type): New customizable variable.
14302 (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
14303 (quail-keyboard-translate): Pay attention to
14304 quail-keyboard-layout-substitution.
14305 (quail-insert-kbd-layout): New function.
14306 (quail-show-keyboard-layout): New function.
14307 (quail-get-translation): If the definition is a vector of length
14308 1, and the element is a string of length 1, return the character
14309 in that string.
14310 (quail-update-current-translations): Fix the case of
14311 relative-index out of range.
14312 (quail-build-decode-map, quail-insert-decode-map): New Functions.
14313 (quail-help): Show keyboard layout by quail-insert-kbd-layout.
14314 Show key sequences for all available characters.
14315 (quail-help-insert-keymap-description): Don't show such verbose
14316 key bindings as quail-self-insert-command.
14317
14318 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
14319 Format changed, and each element now have extra documentations.
14320 (tit-process-header): Delete invalid characters from TIT-PROMPT.
14321 Adjusted for the change of quail-cxterm-package-ext-info.
14322
14323 2000-09-06 Gerd Moellmann <gerd@gnu.org>
14324
14325 * vc-hooks.el (toplevel): Don't require `vc' during compilation;
14326 requiring it leads to a recursive loading of vc.el and vc-hooks.el
14327 during bootstrap.
14328
14329 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
14330
14331 * vc.el: (toplevel): Don't require `dired' at run-time.
14332 (vc-dired-resynch-file): Remove autoload cookie.
14333
14334 2000-09-05 Andre Spiegel <spiegel@gnu.org>
14335
14336 * vc.el: Made several backend functions optional.
14337 (vc-default-responsible-p): New function.
14338 (vc-merge): Use RET for first version to trigger merge-news, not
14339 prefix arg.
14340 (vc-annotate): Handle backends that do not support annotation.
14341 (vc-default-merge-news): Removed. The existence of a merge-news
14342 implementation is now checked on caller sites.
14343
14344 * vc-hooks.el (vc-default-mode-line-string): Removed CVS special
14345 case.
14346
14347 * vc-cvs.el (vc-cvs-mode-line-string): New function, handles the
14348 special case that has been removed from the default in vc-hooks.el.
14349
14350 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
14351
14352 * vc.el (vc-log-edit): Properly handle the case where FILE is nil.
14353
14354 2000-09-05 Andre Spiegel <spiegel@gnu.org>
14355
14356 * vc-hooks.el: Require vc during compilation.
14357 (vc-file-setprop): Use `vc-touched-properties' if bound by the new
14358 macro `with-vc-properties' in vc.el.
14359 (vc-file-getprop): Doc fix.
14360 (vc-after-save): Call `vc-dired-resynch-file' only if vc is loaded.
14361
14362 * vc.el: Require dired-aux during compilation.
14363 (vc-name-assoc-file): Moved to vc-sccs.el.
14364 (with-vc-properties): New macro.
14365 (vc-checkin, vc-checkout, vc-revert, vc-cancel-version,
14366 vc-finish-steal): Use it.
14367 (vc-cancel-version): Moved RCS-specific code to vc-rcs.el. The call
14368 to the backend-specific function is now supposed to do the checkout,
14369 too.
14370 (vc-log-edit): Handle FILE being nil and added a FIXME for log-edit.
14371
14372 * vc-cvs.el (vc-cvs-checkin, vc-cvs-checkout): Don't bother to
14373 set file properties; that gets done in the generic code now.
14374
14375 * vc-rcs.el (vc-rcs-uncheck): Renamed to `vc-rcs-cancel-version'.
14376 Changed parameter list, added code from vc.el that does the
14377 checkout, possibly with a double-take.
14378
14379 * vc-sccs.el (vc-sccs-name-assoc-file): Moved here from vc.el.
14380 (vc-sccs-add-triple, vc-sccs-rename-file, vc-sccs-lookup-triple): Use
14381 the above under the new name.
14382 (vc-sccs-uncheck): Renamed to `vc-sccs-cancel-version'. Changed
14383 parameter list, added checkout command.
14384 (vc-sccs-checkin, vc-sccs-checkout): Don't bother to set file
14385 properties; that gets done in the generic code now.
14386
14387 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
14388
14389 * vc.el: Docstring fixes (courtesy of checkdoc).
14390
14391 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
14392
14393 * vc.el (vc-checkout-writable-buffer-hook)
14394 (vc-checkout-writable-buffer): Remove.
14395 (vc-start-entry): Always call vc-log-edit, never vc-log-mode.
14396 (vc-log-mode): Make it into a clean derived major mode.
14397 (vc-log-edit): Mark buffer unmodified (as vc-log-mode did) and use
14398 vc-log-mode if log-edit is not available.
14399 (vc-dired-mode-map): Don't set-keymap-parent yet.
14400 (vc-dired-mode): Do set-keymap-parent here.
14401 (vc-dired-buffers-for-dir): Nop if dired is not loaded.
14402
14403 2000-09-05 Gerd Moellmann <gerd@gnu.org>
14404
14405 * faces.el (set-face-attribute, face-spec-reset-face)
14406 (face-spec-set): Avoid consing by removing calls to `apply'.
14407
14408 * frame.el (frame-parameter): Move to C code.
14409
14410 2000-09-05 Dave Love <fx@gnu.org>
14411
14412 * help.el (help-manyarg-func-alist): Add ml-prefix-argument-loop,
14413 insert-before-markers-and-inherit. Now checked systematically!
14414
14415 2000-09-05 Alex Schroeder <alex@gnu.org>
14416
14417 * sql.el (sql-postgres): Use sql-postgres-options.
14418 (sql-postgres-options): New variable.
14419
14420 2000-09-05 Alex Schroeder <alex@gnu.org>
14421
14422 * sql.el (sql-mode-menu): Work around missing variable mark-active
14423 in XEmacs.
14424 (sql-mode): Added call to easy-menu-add for XEmacs compatibility.
14425 (sql-interactive-mode): Added call to easy-menu-add for XEmacs
14426 compatibility.
14427
14428 2000-09-04 Gerd Moellmann <gerd@gnu.org>
14429
14430 * vc.el (vc-dired-resynch-file): Add autoload cookie.
14431
14432 * vc.el (toplevel): Require `dired' at run-time for dired-mode-map.
14433
14434 * Makefile.in (DONTCOMPILE): Fix typo in file name.
14435
14436 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14437
14438 * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we
14439 don't support anything else under SCCS yet.
14440
14441 * vc-hooks.el: Minor doc fixes.
14442
14443 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14444
14445 * vc.el (vc-next-action-on-file): Do not visit the file if it's
14446 not necessary. If verbose in state `needs-patch', do the same as
14447 under `up-to-date'. When NOT verbose and `needs-patch', check out
14448 latest version instead of `merge-news'.
14449 (vc-next-action-dired): Don't mess with default-directory here; it
14450 breaks other parts of dired. It is the job of the
14451 backend-specific functions to adjust it temporarily if they need it.
14452 (vc-next-action): Remove a special CVS case.
14453 (vc-clear-headers): New optional arg FILE.
14454 (vc-checkin, vc-checkout): Set properties vc-state and
14455 vc-checkout-time properly.
14456 (vc-finish-steal): Call steal-lock, not steal, which doesn't exist.
14457 (vc-print-log): Use new backend function `show-log-entry'.
14458 (vc-cancel-version): Do the checks in a different order. Added a
14459 FIXME concerning RCS-only code.
14460
14461 * vc-rcs.el (vc-rcs-show-log-entry): New function.
14462 (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties.
14463
14464 * vc-cvs.el (vc-cvs-show-log-entry): New function.
14465
14466 * vc-hooks.el (vc-default-mode-line-string): Show state
14467 `needs-patch' as a `-' too.
14468
14469 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14470
14471 * vc.el (vc-responsible-backend): New optional arg REGISTER.
14472 (vc-default-could-register): New function.
14473 (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions.
14474 (vc-resynch-buffer): Call vc-dired-resynch-file.
14475 (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use
14476 vc-resynch-buffer instead of vc-resynch-window.
14477 (vc-next-action-dired): Don't redisplay here, that gets done as a
14478 result of the individual file operations.
14479 (vc-retrieve-snapshot): Corrected prompt order.
14480
14481 * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file.
14482
14483 * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp
14484 as well.
14485 (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p. Handle
14486 hostname regexps. Updated all callers.
14487 (vc-cvs-responsible-p): Handle directories as well.
14488 (vc-cvs-could-register): New function.
14489 (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file
14490 properties up-to-date.
14491
14492 * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the
14493 user whether to create one.
14494
14495 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14496
14497 * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to
14498 check out a non-existing file.
14499
14500 * vc-cvs.el (vc-cvs-checkout): Do the right thing when the
14501 workfile does not exist.
14502
14503 * vc.el (vc-version-diff): Use `require' to check for existence of
14504 diff-mode.
14505
14506 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14507
14508 * vc-cvs.el (vc-cvs-registered): Use new function
14509 vc-cvs-parse-entry to do the actual work.
14510
14511 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14512
14513 * vc-hooks.el (vc-find-backend-function): If function doesn't
14514 exist, return nil instead of error.
14515 (vc-call-backend): Doc fix.
14516
14517 * vc.el (vc-do-command): Doc fix.
14518 (vc-finish-logentry): When checking in from vc-dired, choose the
14519 right backend for logentry check.
14520 (vc-dired-mode-map): Inherit from dired-mode-map.
14521 (vc-dired-mode): Local value of dired-move-to-filename-regexp
14522 simplified.
14523 (vc-dired-state-info): Removed, updated caller.
14524 (vc-default-dired-state-info): Use parentheses instead of hyphens.
14525 (vc-dired-hook): Use vc-BACKEND-dir-state, if available.
14526 (vc-dired-listing-switches): New variable.
14527 (vc-directory): Use it, instead of dired-listing-switches.
14528
14529 * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too.
14530 (vc-cvs-dir-state): New function.
14531 (vc-cvs-dir-state-heuristic): New function, subroutine of the above.
14532 (vc-cvs-parse-entry): New function, also to be used in
14533 vc-cvs-registered.
14534
14535 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14536
14537 * vc.el (vc-revert-buffer): Hide the frame for dedicated windows
14538 *or* single-window-frames.
14539
14540 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14541
14542 * vc.el (vc-update-changelog): Split into generic part and default
14543 implementation. Doc string adapted.
14544 (vc-default-update-changelog): New function. Call the `rcs2log'
14545 script in exec-directory, to fix a long-standing nuisance.
14546
14547 * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that
14548 simply signals an error.
14549
14550 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14551
14552 * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the
14553 control-flow more clear and to avoid running `cvs' twice.
14554
14555 * vc.el (vc-next-action-on-file): Doc fix.
14556 (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode.
14557 (vc-print-log): Eval `file' before constructing the continuation.
14558
14559 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14560
14561 * vc.el (vc-next-action-on-file): Corrected several messages.
14562 (vc-merge): Add prefix arg `merge-news'; handle it.
14563
14564 * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this
14565 is not reached. It is.
14566 (vc-cvs-merge): Set state to 'edited after merge.
14567 (vc-cvs-merge-news): Set workfile version to nil if not known.
14568 (vc-cvs-latest-on-branch-p): Recommented. Candidate for removal.
14569
14570 * vc-*.el (vc-*-checkout): Switch off coding systems for checkout
14571 via stdout. (Merge from main line.)
14572
14573 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14574
14575 * vc.el (vc-finish-logentry): Thinko in the "same comment"
14576 detection.
14577
14578 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14579
14580 * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them
14581 against kill-all-local-variables.
14582 (vc-log-edit): Don't save vc-parent-buffer any more.
14583 (vc-last-comment-match): Initialize to an empty string.
14584 (vc-post-command-functions): New hook.
14585 (vc-do-command): Run it.
14586 (vc-next-action-on-file): Remove unnecessary pop-to-buffer.
14587 (vc-finish-logentry): Only add the comment to the ring if it's
14588 different from the last comment entered.
14589 (vc-new-comment-index): New function.
14590 (vc-previous-comment): Use it. Make the minibuffer message
14591 slightly less terse.
14592 (vc-comment-search-reverse): Make it work forward as well. Don't
14593 set vc-comment-ring-index if no match is found. Use
14594 vc-new-comment-index.
14595 (vc-comment-search-forward): Use vc-comment-search-reverse.
14596 (vc-dired-mode-map): Don't inherit from dired-mode-map since
14597 define-derived-mode will do it for us. Bind `v' to a keymap that
14598 inherits from vc-prefix-map so that we can bind `vt' without
14599 binding C-x v t.
14600 (vc-retrieve-snapshot): Parenthesis typo.
14601
14602 * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0
14603 to 1. Make sure to switch to *vc* before looking for an error
14604 message. Use vc-parse-buffer.
14605
14606 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14607
14608 * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR
14609 and NAME.
14610 (vc-retrieve-snapshot): Split into two parts.
14611 (vc-default-retrieve-snapshot): New function.
14612
14613 * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME.
14614 (vc-cvs-retrieve-snapshot): New function (untested).
14615 (vc-cvs-stay-local): Default to t.
14616 (vc-cvs-remote-p): New function and property.
14617 (vc-cvs-state): Stay local only if the above is t.
14618 (vc-handle-cvs): Removed.
14619 (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be
14620 done via vc-handled-backends now.
14621 (vc-cvs-header): Escape Id.
14622
14623 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14624
14625 * vc.el (vc-do-command): Remove unused commands.
14626 (vc-version-diff): Make sure default-directory ends with a slash.
14627 Move the window commands into a vc-exec-after.
14628 (vc-print-log): Move more of the code into the `vc-exec-after'.
14629
14630 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14631
14632 * vc.el (vc-exec-after): Fix disassembly of previous sentinel.
14633 (vc-print-log): Search current revision from beginning of buffer.
14634 (vc-revert-buffer): Clear echo area after the diff is finished.
14635 (vc-prefix-map): Removed definition of "t" for terse display in vc
14636 dired.
14637 (vc-dired-mode-map): Inherit from dired-mode-map. Added
14638 definition of "vt" for terse display.
14639 (vc-dired-mode): Fix dired-move-to-filename-regexp.
14640
14641 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14642
14643 * vc.el (vc-exec-after): Avoid caddr.
14644
14645 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14646
14647 * vc.el (vc-exec-after): New function.
14648 (vc-do-command): Use it to add a termination message for async
14649 procs.
14650 (vc-checkout): Try to handle a missing-backend situation.
14651 (vc-version-diff): Use vc-exec-after to fix the behavior for diffs
14652 of a directory with a backend using async diffs.
14653 (vc-print-log): Use vc-exec-after and use log-view-goto-rev if
14654 present.
14655
14656 * vc-sccs.el (vc-sccs-state-heuristic): Use
14657 file-ownership-preserved-p.
14658
14659 * vc-rcs.el (vc-rcs-state-heuristic): Use
14660 file-ownership-preserved-p.
14661 (vc-rcs-checkout): Remove the error-handling for missing-rcs.
14662
14663 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14664
14665 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to
14666 vc-do-command.
14667
14668 * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert
14669 when there are no changes.
14670
14671 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14672
14673 * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p.
14674
14675 * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p.
14676
14677 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14678
14679 * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el.
14680
14681 * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move
14682 the `fset' outside of the defvar so that it works even if
14683 vc-prefix-map was already defined.
14684 (vc-setup-buffer): New function, split out of vc-do-command.
14685 (vc-do-command): Allow BUFFER to be t to mean `just use the
14686 current buffer without any fuss'.
14687 (vc-version-diff): Change the `diff' backend operation to just put
14688 the diff in the current buffer without erasing it. Always use
14689 *vc-diff* even for directory-diffs. Use vc-setup-buffer. Protect
14690 shrink-window-if-larger-than-buffer.
14691 (vc-print-log): Change the `print-log' backend operation to just
14692 put the log in the current buffer without erasing it. Protect
14693 shrink-window-if-larger-than-buffer.
14694 (vc-update-change-log): Fix setd typo.
14695
14696 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis.
14697 (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer.
14698
14699 * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer.
14700 (vc-rcs-diff): Insert in the current buffer and remove unused arg
14701 CMP.
14702
14703 * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use
14704 with-temp-file. Use the new BUFFER=t argument to vc-do-command.
14705 (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer.
14706
14707 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14708
14709 * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is
14710 not possible, use vc-BACKEND-workfile-unchanged-p.
14711 (vc-default-workfile-unchanged-p): New function. Delegates to a
14712 full vc-BACKEND-diff.
14713
14714 * vc-hooks.el (vc-simple-command): Removed.
14715
14716 * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command
14717 instead of vc-simple-command.
14718 (vc-rcs-fetch-master-state): Removed check for unlocked-changes to
14719 avoid doing a diff when opening a file.
14720 (vc-rcs-state): Added check for unlocked-changes.
14721 (vc-rcs-header): Escape Id.
14722 (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION.
14723 (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific
14724 version.
14725
14726 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten.
14727 (vc-sccs-diff): Remove optional arg CMP.
14728 (vc-sccs-state): Call vc-workfile-unchanged-p, not the
14729 SCCS-specific function.
14730
14731 * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of
14732 vc-simple-command.
14733
14734 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14735
14736 * vc.el (vc-editable-p): Renamed from vc-writable-p.
14737 (with-vc-file, vc-merge): Use vc-editable-p.
14738 (vc-do-command): Remove unused var vc-file and fix the
14739 doubly-defined `status' var. Add a user message when starting an
14740 async command.
14741 (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry)
14742 (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file):
14743 Use with-current-buffer.
14744 (vc-buffer-sync): Use unless.
14745 (vc-next-action-on-file): If the file is 'edited by read-only,
14746 make it read-write instead of trying to commit.
14747 (vc-version-diff, vc-update-change-log): Use `setq
14748 default-directory' rather than `cd'.
14749 (vc-log-edit): Don't forget to set default-directory in the
14750 buffer.
14751
14752 * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis.
14753 (vc-sccs-state-heuristic): Use file-writable-p instead of
14754 comparing userids.
14755 (vc-sccs-checkout): Use `unless'.
14756
14757 * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead
14758 of comparing userids.
14759 (vc-rcs-fetch-master-state): Handle the case where rcs is missing.
14760 Simplify the logic by eliminating unreachable code.
14761 (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and
14762 just do a recursive call if we need to retry.
14763 (vc-rcs-checkout): Handle the case where rcs is missing by making
14764 the buffer read-write if requested and re-signalling the error.
14765
14766 * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP.
14767
14768 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14769
14770 * vc-hooks.el (vc-handled-backends): Docstring change.
14771 (vc-ignore-vc-files): Mark obsolete.
14772 (vc-registered): Check vc-ignore-vc-files.
14773 (vc-find-file-hook, vc-file-not-found-hook): Don't check
14774 vc-ignore-vc-files.
14775
14776 * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs.
14777
14778 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14779
14780 * vc.el (vc-checkout): Don't do anything special for ange-ftp
14781 files since ange-ftp already has vc-registered return nil.
14782
14783 * vc-sccs.el (vc-sccs-state): Use with-temp-buffer.
14784 (vc-sccs-workfile-version): Use with-temp-buffer and new
14785 vc-parse-buffer and don't bother setting the property.
14786 (vc-sccs-add-triple): Use with-current-buffer and
14787 find-file-noselect.
14788 (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if.
14789
14790 * vc-rcs.el (vc-rcs-find-most-recent-rev): New function. The code
14791 derives from the old vc-parse-buffer but uses the revision number
14792 rather than the date (much easier to compare robustly).
14793 (vc-rcs-fetch-master-state): Use `with-temp-buffer'. Adapt to the
14794 new vc-parse-buffer (and vc-rcs-find-most-recent-rev). Find the
14795 locking-user more directly. Check strict locking and set
14796 checkout-model appropriately.
14797 (vc-rcs-parse-locks): Remove.
14798 (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the
14799 new vc-parse-buffer (and vc-rcs-find-most-recent-rev).
14800 (vc-rcs-system-release): Use with-current-buffer and
14801 vc-parse-buffer.
14802 (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer.
14803
14804 * vc-hooks.el (vc-parse-buffer): Lobotomize the monster.
14805 (vc-simple-command): Docstring fix.
14806 (vc-registered): Align the way the file-handler is called with the
14807 way the function itself works.
14808 (vc-file-owner): Remove.
14809
14810 * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer. Reorder
14811 extraction of fields and call to file-attributes because of a
14812 temporary bug in rcp.el.
14813 (vc-cvs-fetch-status): Use with-current-buffer.
14814
14815 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14816
14817 * vc.el (vc-do-command): Use file-relative-name.
14818 (vc-responsible-backend): Use vc-backend if possible.
14819 (vc-create-snapshot): Improve the `interactive' spec. Add support
14820 for branches and dispatch to backend-specific `create-snapshot'.
14821 (vc-default-create-snapshot): New function, containing the bulk of
14822 the old vc-create-snapshot.
14823 (vc-retrieve-snapshot): Improve the interactive spec.
14824
14825 * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el.
14826 (vc-backend-hook-functions): Remove.
14827 (vc-find-backend-function): Don't try to load vc-X-hooks anymore.
14828 (vc-backend): Reintroduce the test for `file = nil' now that I
14829 know why it was there (and added a comment to better remember).
14830
14831 * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in
14832 code from vc-sccs-hooks.el.
14833 (vc-sccs-release, vc-sccs-system-release): Remove. Don't require
14834 'vc anymore.
14835 (vc-sccs-responsible-p): Use expand-file-name instead of concat
14836 and file-directory-p instead of file-exists-p.
14837 (vc-sccs-check-headers): Simplify the regexp.
14838
14839 * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code
14840 from vc-rcs-hooks.el. Don't require 'vc anymore.
14841 (vc-rcs-responsible-p): Use expand-file-name instead of concat and
14842 file-directory-p instead of file-exists-p.
14843
14844 * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code
14845 from vc-cvs-hooks.el.
14846 (proto vc-cvs-registered): Require 'vc-cvs instead of
14847 'vc-cvs-hooks. Don't require 'vc anymore.
14848 (vc-cvs-responsible-p): Use expand-file-name instead of concat and
14849 file-directory-p instead of file-exists-p.
14850 (vc-cvs-create-snapshot): New function, replacing
14851 vc-cvs-assign-name.
14852 (vc-cvs-assign-name): Remove.
14853
14854 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14855
14856 * vc-cvs.el (vc-cvs-header): New var.
14857
14858 * vc-rcs.el (vc-rcs-exists): Remove.
14859 (vc-rcs-header): New var.
14860
14861 * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use
14862 `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'.
14863 (vc-sccs-header): New var.
14864
14865 * vc.el (vc-do-command): Get rid of the `last' argument.
14866 (vc-header-alist): Remove, replaced by vc-X-header.
14867 (vc-insert-headers): Use vc-X-header instead of vc-header-alist.
14868 (vc-dired-hook): Use expand-file-name instead of concat.
14869 (vc-directory): Use file-name-as-directory.
14870 (vc-snapshot-precondition, vc-create-snapshot)
14871 (vc-retrieve-snapshot): Allow the command to operate on any
14872 directory.
14873
14874 * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either
14875 just removing the 'WORKFILE argument or by removing the 'MASTER
14876 argument and replacing `file' with (vc-name file).
14877
14878 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14879
14880 * vc.el: Update Copyright and add a crude list of backend funs.
14881 (vc-writable-p): New function.
14882 (with-vc-file): Use vc-writable-p.
14883 (vc-next-action-on-file): Update call to vc-steal-lock and cleanup.
14884 (vc-register): Avoid vc-name.
14885 (vc-locking-user): Remove.
14886 (vc-steal-lock): Make the `owner' arg non-optional.
14887 (vc-merge): Use vc-writable-p instead of vc-locking-user and
14888 vc-checkout-model.
14889 (vc-default-dired-state-info): Use vc-state instead of
14890 vc-locking-user and return special strings for special states.
14891 (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user
14892 and get rid of one of the special CVS cases.
14893 (vc-cancel-version): prettify error message with \\[...].
14894 (vc-rename-master): New function.
14895 (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn
14896 use vc-rename-master) instead of vc-BACKEND-record-rename. Make
14897 the CVS special case generic.
14898 (vc-default-record-rename): Remove.
14899 (vc-file-tree-walk-internal): Only call FUNC for files that are
14900 under control of some VC backend and replace `concat' with
14901 expand-file-name.
14902 (vc-file-tree-walk): Update docstring.
14903 (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot)
14904 (vc-retrieve-snapshot): Update call to vc-file-tree-walk.
14905
14906 * vc-sccs.el (vc-sccs-rename-file): Renamed from
14907 vc-sccs-record-rename. Use `find-file-noselect' rather than
14908 `find-file' and call `vc-rename-master' to do the actual move.
14909 (vc-sccs-diff): Remove unused `backend' variable.
14910
14911 * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version
14912 to delay loading of vc-sccs until it is really used.
14913 (vc-sccs-master-templates): Preload.
14914 (vc-sccs-state): Update call to vc-sccs-parse-locks.
14915 (vc-sccs-project-dir): Remove (merged into
14916 vc-sccs-search-project-dir).
14917 (vc-sccs-search-project-dir): Rewrite using file name handling ops
14918 rather than `concat', make sure it is preloaded and don't bother
14919 to check that the file actually exists.
14920 (vc-sccs-parse-locks): Remove unused `file' argument, remove
14921 `locks' argument (use buffer's content instead) and eliminate n^2
14922 behavior.
14923
14924 * vc-rcs.el: Update Copyright.
14925 (vc-rcs-rename-file): New function.
14926 (vc-rcs-diff): Remove unused `backend' variable.
14927
14928 * vc-hooks.el: Update Copyright.
14929 (vc-backend): Don't accept a nil argument any more.
14930 (vc-up-to-date-p): Turn into a defsubst.
14931 (vc-possible-master): New function.
14932 (vc-check-master-templates): Use `vc-possible-master' and allow
14933 funs in vc-X-master-templates to return a non-existent file.
14934
14935 * vc-cvs.el: Update Copyright.
14936 (vc-cvs-diff): Remove unused `backend' variable.
14937 (vc-cvs-checkout): Only toggle read-only if the buffer is setup right.
14938
14939 * vc-cvs-hooks.el: Preload a proto vc-cvs-registered.
14940
14941 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14942
14943 * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version
14944 since it can be called from vc-rcs.el.
14945 (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior.
14946
14947 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14948
14949 * vc.el (vc-version-diff): Expand file name read from the
14950 minibuffer. Handle the case when a previous version number can't
14951 be guessed. Give suitable messages when there were no differences
14952 found.
14953 (vc-clear-headers): Call backend-specific implementation, if one
14954 exists.
14955 (vc-cancel-version): Made error checks generic. When done, clear
14956 headers generically, too.
14957
14958 * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here
14959 from vc-clear-headers in vc.el.
14960
14961 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer
14962 correctly.
14963 (vc-rcs-latest-on-branch-p): Made second argument VERSION
14964 optional. Handle the case when it's not there.
14965
14966 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14967
14968 * vc.el (vc-locking-user): Moved from vc-hooks.el.
14969
14970 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14971
14972 * vc-hooks.el (vc-loadup): Remove.
14973 (vc-find-backend-function): Use `require'. Also, handle the case
14974 where vc-BACKEND-hooks.el doesn't exist.
14975 (vc-call-backend): Cleanup.
14976
14977 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14978
14979 * vc-rcs-hooks.el (vc-rcs-templates-grabbed,
14980 vc-rcs-grab-templates)
14981 (vc-rcs-registered): Remove. The default function works as well.
14982 * vc-sccs-hooks.el (vc-sccs-templates-grabbed,
14983 vc-sccs-grab-templates)
14984 (vc-sccs-registered): Remove. The default function works as well.
14985
14986 * vc.el (vc-version-diff): Left out a vc- in call to
14987 vc-call-backend.
14988 (vc-default-dired-state-info, vc-default-record-rename)
14989 (vc-default-merge-news): Update for the new backend argument.
14990
14991 * vc-hooks.el (vc-find-backend-function): Return a cons cell if
14992 using the default function.
14993 (vc-call-backend): If calling the default function, pass it the
14994 backend as first argument. Update the docstring accordingly.
14995 (vc-default-state-heuristic, vc-default-mode-line-string): Update
14996 for the new backend argument.
14997 (vc-make-backend-sym): Renamed from vc-make-backend-function.
14998 (vc-find-backend-function): Use the new name.
14999 (vc-default-registered): New function.
15000
15001 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15002
15003 * vc.el (vc-merge): Use vc-find-backend-function.
15004
15005 * vc-hooks.el (vc-backend-functions): Remove.
15006 (vc-loadup): Don't setup 'vc-functions.
15007 (vc-find-backend-function): New function.
15008 (vc-call-backend): Use above fun and populate 'vc-functions
15009 lazily.
15010 (vc-backend-defines): Remove.
15011
15012 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15013
15014 * vc.el (vc-register): Put a FIXME note for a newly found bug.
15015 Call vc-call-backend without the leading vc-.
15016 (vc-responsible-backend, vc-finish-logentry, vc-annotate)
15017 (vc-check-headers): Call vc-call-backend without the leading vc-.
15018 (vc-annotate-time-span): Replace confusing use of `cond' with `or'.
15019 (vc-annotate-display): Replace confusing use of `cond' with `or'.
15020 Call vc-call-backend without the leading vc-.
15021
15022 * vc-cvs.el (tail): Provide vc-cvs.
15023 * vc-sccs.el (tail): Provide vc-sccs.
15024 * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check.
15025
15026 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions)
15027 (vc-make-backend-function, vc-call): Pass names without leading
15028 `vc-' to vc-call-backend so we can blindly prefix them with vc-BACKEND.
15029 (vc-loadup): Don't load vc-X-hooks if vc-X is requested.
15030 (vc-call-backend): Always try to load vc-X-hooks.
15031 (vc-registered): Remove vc- in call to vc-call-backend.
15032
15033 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15034
15035 * vc.el (vc-process-filter): New function.
15036 (vc-do-command): Setup `vc-process-filter' for the async process.
15037 (vc-maybe-resolve-conflicts): New function to reduce
15038 code-duplication. Additionally, it puts the buffer in
15039 `smerge-mode' if applicable.
15040 (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after
15041 calling `merge-news'.
15042 (vc-merge): Use `vc-maybe-resolve-conflicts' after calling `merge'.
15043 (vc-log-edit): New function. Replacement for `vc-log-mode' by
15044 interfacing to log-edit.el.
15045 (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if
15046 log-edit is available.
15047 (vc-resolve-conflicts): Delegate to `smerge-ediff' if available.
15048
15049 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15050
15051 * vc.el (vc-register): Remove `vc-buffer-backend' setup.
15052 (vc-log-mode-map): New name for vc-log-entry-mode and merge the
15053 defvar and the initialization.
15054 (vc-log-mode): Minor docstring fix and use vc-log-mode-map.
15055
15056 * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove.
15057 (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling.
15058
15059 * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a FIXME.
15060
15061 2000-09-04 Andre Spiegel <spiegel@gnu.org>
15062
15063 * vc.el (vc-file-clear-masterprops): Removed.
15064 (vc-checkin, vc-revert-buffer): Removed calls to the above.
15065 (vc-version-diff): Use buffer-size without argument.
15066 (vc-register): Heed vc-initial-comment.
15067
15068 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for
15069 default branch.
15070
15071 * vc-rcs.el (vc-rcs-register): Parse command output to find master
15072 file name and workfile version.
15073 (vc-rcs-checkout): Removed call to vc-file-clear-masterprops.
15074
15075 * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to
15076 vc-file-clear-masterprops.
15077
15078 * vc-sccs.el (vc-sccs-checkout): Removed call to
15079 vc-file-clear-masterprops. If writable, set vc-state to 'edited
15080 rather than user login name.
15081
15082
15083 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15084
15085 * vc.el (vc-workfile-unchanged-p): Remove unused argument
15086 `want-differences-if-changed' and simplify.
15087 (vc-next-action-on-file) [needs-merge]: Resynch the buffer.
15088 (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status
15089 output (which is invalid for async vc-diff) to decide whether to
15090 do the revert silently or not.
15091
15092 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15093
15094 * vc-hooks.el (vc-loadup): Load files quietly.
15095 (vc-call-backend): Oops, brain fart.
15096
15097 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15098
15099 * vc-cvs.el (vc-cvs-state): Typo.
15100 (vc-cvs-merge-news): Return the status code rather than the error msg.
15101
15102 2000-09-04 Andre Spiegel <spiegel@gnu.org>
15103
15104 * vc.el (with-vc-file, vc-next-action, vc-version-diff)
15105 (vc-dired-mark-locked): Replaced usage of vc-locking-user with
15106 vc-state or vc-up-to-date-p.
15107 (vc-merge): Use vc-backend-defines to check whether merging is
15108 possible. Set state to 'edited after successful merge.
15109
15110 * vc-hooks.el (vc-locking-user): If locked by the calling user,
15111 return that name. Redocumented.
15112
15113 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15114
15115 * vc.el (vc-recompute-state, vc-next-action-on-file): Update to
15116 new `vc-state' semantics.
15117 (vc-finish-steal): Set 'vc-state to 'edited rather than setting
15118 'vc-locking-user to the current user.
15119 (vc-merge): Inline vc-backend-merge. Comment out code that I
15120 don't understand and hence can't adapt to the new `vc-state' and
15121 `vc-locking-user' semantics.
15122 (vc-backend-merge): Remove.
15123
15124 * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state
15125 rather than 'vc-locking-user.
15126
15127 * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'.
15128
15129 * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit.
15130 (vc-state): Don't use 'reserved any more. Just use the same
15131 convention as the one used for vc-<backend>-state where the
15132 locking user (as a string) is returned.
15133 (vc-locking-user): Update, based on the above convention. The
15134 'vc-locking-user property has disappeared.
15135 (vc-mode-line, vc-default-mode-line-string): Adapt to new `vc-state'.
15136
15137 * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state
15138 with a heuristic one.
15139 (vc-cvs-merge-news): Just use 'edited for the case with conflicts.
15140 (vc-cvs-checkin): Do a trivial parse to set the state in case of
15141 error. That allows us to get to 'needs-merge even in the
15142 stay-local case. There's still no way to detect 'needs-patch in
15143 such a setup (or to force an update for that matter).
15144 (vc-cvs-logentry-check): Remove, the default works as well.
15145
15146 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15147
15148 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs asynchronously.
15149
15150 * vc.el (vc-do-command): kill-all-local-variables, to reset any
15151 major-mode in which the buffer might have been put earlier. Use
15152 `remove' and `when'. Allow `okstatus' to be `async' and use
15153 `start-process' in this case.
15154 (vc-version-diff): Handle the case where the diff looks empty
15155 because of the use of an async process.
15156
15157 2000-09-04 Andre Spiegel <spiegel@gnu.org>
15158
15159 * vc.el (vc-next-action-on-file): Removed optional parameter
15160 `simple'. Recompute state unconditionally.
15161 (vc-default-toggle-read-only): Removed.
15162
15163 * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only.
15164 (vc-toggle-read-only): Undid prev change.
15165
15166 * vc-cvs.el (vc-cvs-stay-local): Renamed from
15167 vc-cvs-simple-toggle. Redocumented.
15168 (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic.
15169 (vc-cvs-toggle-read-only): Removed.
15170
15171 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15172
15173 * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): Remove.
15174 (vc-prefix-map): Move from vc-hooks.el and make autoloaded.
15175 (vc-release-greater-or-equal-p): Move to vc-rcs.el.
15176 (vc-file-clear-masterprops): Braindead "fix". It was a nop and
15177 still is. So maybe it should be removed.
15178 (vc-head-version, vc-find-binary): Remove.
15179 (vc-recompute-state): Move from vc-hooks.el.
15180 (vc-next-action-on-file): Add a `simple' argument to allow
15181 avoiding the `recompute' step (use for vc-cvs-simple-toggle).
15182 (vc-default-toggle-read-only, vc-default-record-rename): New funs.
15183 (vc-next-action, vc-dired-hook): Use vc-state instead of vc-cvs-status.
15184 (vc-dired-mode-map): Properly defvar it.
15185 (vc-print-log): Call log-view-mode if available.
15186 (small-temporary-file-directory): defvar instead of use boundp.
15187 (vc-merge-news): Moved to vc-cvs.el.
15188 (vc-default-merge-news): New function.
15189
15190 * vc-sccs.el: Require 'vc and 'vc-sccs-hooks.
15191 (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks.
15192 (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the
15193 unknown `vc-latest-version' function. It should probably refer to
15194 vc-workfile-version or somesuch, but it's very unclear to me and I
15195 don't have SCCS to test things.
15196
15197 * vc-sccs-hooks.el: Provide 'vc-sccs-hooks.
15198 (vc-sccs-state-heuristic): Fix typo.
15199 (vc-sccs-workfile-unchanged-p): Add missing argument.
15200
15201 * vc-rcs.el: Require vc and vc-rcs-hooks.
15202 (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks.
15203 (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p).
15204 (vc-release-greater-or-equal-p): Move from vc.
15205 (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part,
15206 vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates.
15207 (vc-rcs-checkout): Add a missing `new-version' argument in the
15208 call to vc-rcs-latest-on-branch-p. Hopefully that was the right one.
15209
15210 * vc-rcs-hooks.el: Provide 'vc-rcs-hooks.
15211 (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el.
15212 (vc-rcs-latest-on-branch-p): Use the `version' argument rather
15213 than the apparently unbound `workfile-version'.
15214
15215 * vc-hooks.el (vc-master-templates): Def the obsolete var.
15216 (vc-file-prop-obarray): Use `make-vector'.
15217 (vc-backend-functions): Add new hookable functions
15218 vc-toggle-read-only, vc-record-rename and vc-merge-news.
15219 (vc-loadup): If neither backend nor default functions exist, use
15220 the backend function rather than nil.
15221 (vc-call-backend): If the function if not bound yet, try to load
15222 the non-hook file to see if it provides it.
15223 (vc-call): New macro plus use it wherever possible.
15224 (vc-backend-subdirectory-name): Use neither `vc-default-back-end'
15225 nor `vc-find-binary' since it's only called from
15226 vc-mistrust-permission which is only used once the backend is known.
15227 (vc-checkout-model): Fix parenthesis.
15228 (vc-recompute-state, vc-prefix-map): Move to vc.el.
15229
15230 * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler warnings).
15231 (vc-cvs-release, vc-cvs-system-release): Remove.
15232 (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables.
15233 (vc-cvs-dired-state-info): Use `cvs-state' and slightly different
15234 status symbols.
15235 (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el.
15236 (vc-cvs-toggle-read-only): First cut at a function to allow a
15237 cvs-status-free vc-toggle-read-only.
15238 (vc-cvs-merge-news): Move from cvs-merge-news in vc.el.
15239 (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of
15240 vc-cvs-status. Also set vc-state rather than vc-locking-user.
15241 (vc-cvs-checkout): Modify access rights directly if the user
15242 requested not to use `cvs edit'. And refresh the mode line.
15243
15244 * vc-cvs-hooks.el: Provide 'vc-cvs-hooks.
15245 (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el.
15246
15247 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15248
15249 * vc-cvs.el (vc-cvs-checkout): Docstring fix. Added a `(if
15250 workfile' that got lost when the code was extracted from vc.el.
15251 And merged the tail with the rest of the code (not possible in the
15252 old vc.el where the tail was shared among all backends). And
15253 explicitly set the state to 'edited if `writable' is set.
15254
15255 * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name.
15256 (vc-cvs-state): Be careful to return the value from
15257 vc-cvs-parse-state.
15258 (vc-cvs-parse-status): Use expand-file-name. Don't set 'vc-state
15259 property but return it instead. Also be careful to handle a nil
15260 or "" `rev' when workfile is non-nil (it was handled properly when
15261 workfile was nil).
15262
15263 * vc.el: Removed those pesky unnecessary `(function' quotes.
15264 (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize
15265 directly in the defvar.
15266 (vc-do-command): Bind inhibit-read-only so as to properly handle
15267 the case where the destination buffer has been made read-only.
15268 (vc-diff): Delegate to vc-version-diff in all cases.
15269 (vc-version-diff): Setup the *vc-diff* buffer as was done in vc-diff.
15270 (vc-annotate-mode-variables): Removed (code moved partly to
15271 defvars and partly to vc-annotate-add-menu).
15272 (vc-annotate-mode): Turned into a derived-mode.
15273 (vc-annotate-add-menu): Moved in code in
15274 vc-annotate-mode-variables.
15275 (vc-update-change-log): Use make-temp-file if available.
15276
15277 2000-09-04 Martin Lorentzson <martinl@delysid.gnu.org>
15278
15279 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to
15280 `vc-checkout-model' updated to `vc-cvs-update-model'.
15281
15282 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15283
15284 * vc.el (vc-next-action-on-file): Added handling of state
15285 `unlocked-changes'.
15286 (vc-checkout-carefully): Is now practically obsolete, unless the
15287 above is too slow to be enabled unconditionally.
15288 (vc-update-change-log): Fixed typo.
15289
15290 * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'.
15291
15292 * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten.
15293 Now handles state `unlocked-changes'.
15294 (vc-sccs-workfile-unchanged-p): New function, to support the above.
15295
15296 * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'.
15297
15298 * vc-rcs-hooks.el (vc-rcs-state): Fixed typo.
15299 (vc-rcs-fetch-master-state): Bug fixes. Recognize state
15300 `unlocked-changes'.
15301 (vc-rcs-workfile-unchanged-p): Renamed from
15302 `vc-rcs-workfile-unchanged'. This is not a real backend-specific
15303 function yet, but supposed to become one soon.
15304
15305 * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to
15306 `vc-steal-lock'.
15307 (vc-call-backend): Changed error message.
15308 (vc-state): Added description of state `unlocked-changes'.
15309
15310 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15311
15312 * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to
15313 always return t in CVS-controlled directories.
15314
15315 * vc.el (vc-responsible-backend): New function.
15316 (vc-register): Largely rewritten.
15317 (vc-admin): Removed (implementation moved into vc-register).
15318 (vc-checkin): Redocumented.
15319 (vc-finish-logentry): If no backend defined yet (because we are in
15320 the process of registering), use the responsible backend.
15321
15322 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
15323 Updated function lists.
15324 (vc-call-backend): Fixed typo.
15325
15326 * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p):
15327 New functions.
15328 (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'.
15329 Removed query option. Redocumented.
15330
15331 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15332
15333 * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'.
15334
15335 * vc.el: Updated callers of `vc-checkout-required' to use
15336 `vc-checkout-model'.
15337
15338 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15339
15340 * vc-rcs.el (vc-rcs-backend-release-p): function added. other
15341 stuff updated to reference this function instead of the old
15342 `vc-backend-release-p'.
15343
15344 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15345
15346 * vc-sccs-hooks.el (vc-uses-locking): Renamed to
15347 vc-checkout-model. Return appropriate values. Updated callers.
15348
15349 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15350
15351 * vc.el (vc-backend-release, vc-backend-release-p): Moved to vc-rcs.el.
15352 (vc-backend-revert): Function moved into `vc-revert';
15353 `vc-next-action' must be updated to accomodate this change.
15354 (vc-backend-steal): Function moved into `vc-finish-steal'.
15355 (vc-backend-logentry-check): Function moved into
15356 `vc-finish-logentry'.
15357 (vc-backend-printlog): Function moved into `vc-print-log'.
15358 (vc-backend-uncheck): Function moved into `vc-cancel-version'.
15359 (vc-backend-assign-name): Function moved into
15360 `vc-create-snapshot'.
15361
15362 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15363
15364 * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking):
15365 Rename to vc-checkout-model. Return appropriate values.
15366 Update callers.
15367
15368 * vc-hooks.el (vc-backend-hook-functions): Rename vc-uses-locking
15369 to vc-checkout-model.
15370 (vc-checkout-required): Rename to vc-checkout-model.
15371 Re-implement and re-comment.
15372 (vc-after-save): Use vc-checkout-model.
15373
15374 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15375
15376 * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff):
15377 Update to use the vc-BACKEND-diff functions instead.
15378 `vc-diff' is now working.
15379
15380 * vc-rcs.el (vc-rcs-logentry-check): New function.
15381
15382 * vc-cvs.el (vc-cvs-logentry-check): New function.
15383
15384 * vc-sccs.el (vc-sccs-diff): Function changed name from
15385 `vc-backend-diff'. This makes `vc-diff' work.
15386
15387 * vc-hooks.el (vc-backend-functions): Add `vc-diff' to the list
15388 of functions possibly implemented in a vc-BACKEND library.
15389 (vc-checkout-required): Fix bug that caused an error to be
15390 signaled during `vc-after-save'.
15391
15392 * vc.el: Fix typo.
15393 This checkin is made with our new VC code base for the very first time.
15394 A simple `(vc-checkin (buffer-file-name))' was used to perform it.
15395
15396 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to
15397 `vc-checkout-required' updated to `vc-cvs-uses-locking'.
15398
15399 * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required'
15400 updated to `vc-uses-locking'.
15401 (vc-checkout-required): Call to backend function.
15402 `vc-checkout-required' updated to `vc-uses-locking' instead.
15403
15404 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to
15405 `vc-checkout-required' updated to `vc-rcs-uses-locking'.
15406
15407 * vc.el (vc-checkin): Merge with `vc-backend-checkin' and update
15408 to match the split into various backends.
15409 (vc-backend-checkin): Remove. Merge with `vc-checkin'.
15410 (vc-retrieve-snapshot): Bug fix.
15411
15412 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15413
15414 * vc-sccs.el (vc-sccs-release): Doc fix.
15415
15416 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15417
15418 * vc.el (vc-next-action-on-file): Bug found and fixed.
15419 (vc-checkout, vc-version-other-window, vc-retrieve-snapshot)
15420 (vc-cancel-version): Handle of vc-BACKEND-checkout updated.
15421
15422 * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version)
15423 (vc-rcs-checkout): Name space cleaned up. No more revision number
15424 crunching function names that are not prefixed with vc-rcs.
15425 (vc-rcs-checkout-model): Function added. References to
15426 `vc-checkout-model' replaced.
15427
15428 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15429
15430 * vc.el (vc-next-action-on-file): Rewritten for the new state model.
15431 (vc-backend-merge-news): Renamed to `vc-merge-news'. (Specific parts
15432 still need to be split, and implemented for RCS).
15433
15434 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15435
15436 * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed.
15437
15438 * vc-sccs.el (vc-sccs-admin): Added the query-only option as
15439 required by the vc.el file.
15440
15441 * vc-rcs.el (vc-rcs-admin): Added the query-only option as
15442 required by the vc.el file.
15443 (vc-rcs-exists): Function added.
15444
15445 * vc-cvs.el (vc-cvs-admin): Added the query-only option as
15446 required by the vc.el file.
15447
15448 * vc.el (vc-admin): Updated to handle selection of appropriate
15449 backend. Current implementation is crufty and need re-thinking.
15450
15451 * vc-hooks.el (vc-parse-buffer): Bug found and fixed.
15452
15453 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15454
15455 * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle
15456 beginning of annotate buffers correctly.
15457
15458 * vc.el (vc-annotate-get-backend, vc-annotate-display-default)
15459 (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate
15460 functionality updated quite a lot to support multiple backends.
15461 Variables `vc-annotate-mode', `vc-annotate-buffers',
15462 `vc-annotate-backend' added.
15463
15464 * vc-hooks.el (vc-backend-functions): `vc-annotate-command',
15465 `vc-annotate-difference' added to supported backend functions.
15466
15467 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15468
15469 * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout):
15470 Use with-temp-file instead of /bin/sh. Merged from mainline
15471
15472 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15473
15474 * vc-sccs-hooks.el (vc-sccs-registered): Updated.
15475
15476 * vc-rcs-hooks.el (vc-rcs-registered): Updated.
15477
15478 * vc-cvs-hooks.el (vc-cvs-registered): Updated.
15479
15480 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15481
15482 * vc-hooks.el: vc-state-heuristic added to
15483 vc-backend-hook-functions.
15484
15485 * vc-sccs-hooks.el (vc-sccs-registered): Bug fix.
15486
15487 * vc-rcs-hooks.el (vc-rcs-registered): Bug fix.
15488
15489 * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Rename
15490 `vc-uses-locking' to `vc-checkout-required'. Rename the `locked'
15491 state to `reserved'.
15492
15493 * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to
15494 `vc-checkout-required'. Rename the `locked' state to `reserved'.
15495
15496 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15497
15498 * vc-rcs-hooks.el: Implement new state model. Hardly anything
15499 untouched.
15500
15501 * vc-rcs.el (vc-rcs-latest-on-branch-p): Move to vc-rcs-hooks.el.
15502
15503 * vc.el (vc-update-change-log): Use small-temporary-file-directory,
15504 if defined. (Merged from main line, slightly adapted.)
15505
15506 * vc-cvs.el (vc-cvs-annotate-difference): Handle possible
15507 millenium problem (merged from mainline).
15508
15509 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15510
15511 * vc-cvs.el: Split the annotate feature into a BACKEND-specific
15512 part and moved the non-BACKEND stuff to vc.el.
15513
15514 * vc.el: Split the annotate feature into a BACKEND specific part
15515 and moved it from the vc-cvs.el file to this one.
15516
15517 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15518
15519 * vc-hooks.el: Implement new state model.
15520 (vc-state, vc-state-heuristic, vc-default-state-heuristic): New funs.
15521 (vc-locking-user): Simplify. Now only needed if the file is
15522 locked by somebody else.
15523 (vc-lock-from-permissions): Remove. Functionality is in
15524 vc-sccs-hooks.el and vc-rcs-hooks.el now.
15525 (vc-mode-line-string): New name for former vc-status. Adapted.
15526 (vc-mode-line): Adapt to use the above. Remove optional parameter.
15527
15528 * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New funs.
15529 Various simplifications and adaptations all over the place.
15530
15531 * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New funs.
15532 Simplify and adapt the rest.
15533
15534 * vc.el (vc-resynch-window): Add TODO comment: check for
15535 interaction with view mode according to recent RCS change.
15536 (vc-backend-merge-news): Merge "CMUP" patch from mainline.
15537
15538 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15539
15540 * vc.el: Convert the remaining function comments to docstrings.
15541
15542 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15543
15544 * vc.el (vc-backend-release, vc-release-greater-or-equal)
15545 (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part)
15546 (vc-minor-part, vc-previous-version): Functions that operate and
15547 compare revision numbers got proper documentation. Comments added
15548 about their possible removal.
15549
15550 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15551
15552 * vc.el (vc-latest-on-branch-p): Function removed and replaced in
15553 the vc-backend.el files.
15554
15555 * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added.
15556
15557 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p)
15558 (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part)
15559 (vc-rcs-previous-version): Functions added.
15560
15561 * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added.
15562
15563 * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed.
15564
15565 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15566
15567 * vc-hooks.el (vc-master-templates): Is really obsolete.
15568 Comment out the definition for now. What is the right procedure
15569 to get rid of it?
15570 (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely
15571 rewritten.
15572 (vc-default-registered): Remove.
15573 (vc-check-master-templates): New function; does mostly what the
15574 above did before.
15575 (vc-locking-user): Don't rely on the backend to set the property.
15576
15577 * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values.
15578 Rewrite documentation.
15579 (vc-rcs-templates-grabbed): New variable.
15580 (vc-rcs-grab-templates): New function.
15581 (vc-rcs-registered): Rewrite to use above mechanism.
15582
15583 * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values.
15584 Rewrite documentation.
15585 (vc-sccs-templates-grabbed): New variable.
15586 (vc-sccs-grab-templates): New function.
15587 (vc-sccs-registered): Rewrite to use above mechanism.
15588 (vc-sccs-search-project-dir): Rename from vc-search-sccs-project-dir.
15589 Don't throw the result, simply return it.
15590
15591 * vc-cvs-hooks.el (vc-cvs-master-templates): Remove.
15592 (vc-cvs-find-master): Remove. Code is now in vc-cvs-registered.
15593 (vc-cvs-registered): Does the check itself now. Simplify.
15594
15595 * vc-cvs.el (vc-cvs-revert): Merge and adapt "unedit" patch
15596 from main line.
15597
15598 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15599
15600 * vc-cvs.el (vc-cvs-diff): New function.
15601
15602 * vc-sccs.el (vc-sccs-diff): New function.
15603
15604 * vc-rcs.el (vc-rcs-diff): New function.
15605 (vc-rcs-checkout): Bug (typo) found and fixed.
15606 (vc-rcs-register-switches): New variable.
15607
15608 * vc.el (vc-backend-diff): Function removed and placed in the
15609 backend files.
15610
15611 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15612
15613 * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added.
15614
15615 * vc.el (vc-backend-checkout): Function removed and replaced in
15616 the vc-backend.el files.
15617
15618 * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'.
15619
15620 * vc.el (vc-backend-admin): Removed and replaced in the
15621 vc-backend.el files.
15622
15623 * vc.el (Martin): Removed all the annotate functionality since it
15624 is CVS backend specific.
15625
15626 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15627
15628 * spec.txt: Added specification of vc-state.
15629
15630 * vc-sccs-hooks.el (vc-sccs-master-properties):
15631 Remove handling of vc-latest-version and
15632 vc-your-latest-version. What used to be vc-latest-version, is now
15633 returned as vc-workfile-version.
15634 (vc-sccs-workfile-version): Adapt.
15635
15636 2000-09-04 Dave Love <fx@gnu.org>
15637
15638 * vc.el: [Merged from mainline.]
15639 (vc-dired-mode): Make the dired-move-to-filename-regexp
15640 regexp match the date, to avoid treating date as file size.
15641 Add YYYY S option to WESTERN/
15642
15643 2000-09-04 Dave Love <fx@gnu.org>
15644
15645 * vc.el: Require `compile' when compiling.
15646 (vc-logentry-check-hook): New option.
15647 (vc-steal-lock): Use compose-mail.
15648 (vc-dired-mode-map): Defvar when compiling.
15649 (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to
15650 vc-sccs.el and renamed. Callers changed.
15651 (vc-backend-checkout, vc-backend-logentry-check)
15652 (vc-backend-merge-news): Doc fix.
15653 (vc-default-logentry-check): New function.
15654 (vc-backend-checkin, vc-backend-revert, vc-backend-steal)
15655 (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name)
15656 (vc-backend-merge): Doc fix. Use backend functions.
15657 (vc-check-headers): Use backend functions.
15658
15659 * vc-cvs.el: Require vc when compiling.
15660 (vc-cvs-register-switches): Doc fix.
15661 (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type.
15662 (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge)
15663 (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin):
15664 New functions (code from vc.el).
15665 (vc-annotate-display-default): Fix interactive spec.
15666 (vc-annotate-time-span): Doc fix.
15667
15668 * vc-rcs.el: Require vc when compiling.
15669 (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge)
15670 (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert)
15671 (vc-rcs-checkin): New functions (code from vc.el).
15672 (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout):
15673 Doc fix.
15674 (vc-rcs-release): Deleted. (Duplicated vc-rcs-system-release).
15675
15676 * vc-sccs.el: Require vc when compiling.
15677 (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge)
15678 (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck)
15679 (vc-sccs-revert)
15680 (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code
15681 from vc.el).
15682 (vc-sccs-add-triple, vc-sccs-record-rename)
15683 (vc-sccs-lookup-triple): Moved from vc.el and renamed.
15684 (vc-sccs-admin): Doc fix.
15685
15686 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15687
15688 * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part)
15689 (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release)
15690 (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions
15691 from vc.el.
15692
15693 * vc-sccs.el (vc-admin-sccs): Added from vc.el
15694
15695 * vc-cvs.el: Moved the annotate functionality from vc.el.
15696 (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el.
15697
15698 2000-09-04 Dave Love <fx@gnu.org>
15699
15700 * vc.el (vc-backend-release): Call vc-system-release.
15701
15702 * vc-sccs.el (vc-sccs-system-release):
15703 Renamed from vc-sccs-backend-release.
15704
15705 * vc-rcs.el (vc-rcs-system-release):
15706 Renamed from vc-rcs-backend-release.
15707
15708 * vc-cvs.el (vc-cvs-system-release):
15709 Renamed from vc-cvs-backend-release.
15710
15711 2000-09-04 Dave Love <fx@gnu.org>
15712
15713 * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to
15714 backend files.
15715 (vc-backend-release): Dispatch to backend functions.
15716 (vc-backend-release-p): Don't mention CVS, RCS. [The SCCS case
15717 probably needs attention.]
15718
15719 * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el.
15720 (vc-sccs-backend-release): New function.
15721
15722 * vc-cvs.el (vc-cvs-release): Moved from vc.el.
15723 (vc-cvs-backend-release): New function.
15724
15725 * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge):
15726 Doc fix.
15727 (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed.
15728 (vc-default-dired-state-info): New function.
15729 (vc-dired-state-info): Dispatch to backends.
15730 (vc-dired-hook): Doc fix. Simplify, pending removal of CVS specifics.
15731
15732 * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved
15733 from vc.el and renamed.
15734
15735 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15736
15737 * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p)
15738 (vc-version-other-window, vc-backend-assign-name): Removed
15739 references to vc-latest-version; sometimes changed into
15740 vc-workfile-version.
15741
15742 * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to
15743 vc-rcs-master-workfile-version.
15744 (vc-rcs-workfile-version): Use the above. Don't call
15745 vc-latest-version (that was unreachable code, anyway).
15746 (vc-rcs-fetch-master-properties): Doc fix.
15747
15748 * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed.
15749 (vc-backend-hook-functions): Removed them from this list, too.
15750 (vc-fetch-properties): Removed.
15751 (vc-workfile-version): Doc fix.
15752
15753 * vc-rcs-hooks.el (vc-rcs-consult-headers): New function.
15754 (vc-rcs-workfile-version, vc-rcs-locking-user)
15755 (vc-rcs-uses-locking): Use it.
15756
15757 * vc-hooks.el (vc-consult-rcs-headers):
15758 Moved into vc-rcs-hooks.el, under the name
15759 vc-rcs-consult-headers.
15760
15761 * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS
15762 headers.
15763 (vc-cvs-find-master): Use this name only; correct different
15764 versions of the name.
15765
15766 * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user):
15767 New functions.
15768 (vc-sccs-locking-user): Use the latter.
15769
15770 * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user):
15771 New functions.
15772
15773 * vc-hooks.el (vc-master-locks, vc-master-locking-user):
15774 Moved into both
15775 vc-rcs-hooks.el and vc-sccs-hooks.el. These properties and access
15776 functions are implementation details of those two backends.
15777
15778 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15779
15780 * vc-rcs-hooks.el (vc-rcs-fetch-master-properties)
15781 (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks.
15782
15783 * vc-sccs-hooks.el (vc-sccs-fetch-master-properties)
15784 (vc-sccs-parse-locks): SCCS-specific code moved here from
15785 vc-hooks.
15786
15787 * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific
15788 code moved here from vc-hooks.
15789
15790 * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split
15791 into back-end specific parts and removed. Callers not updated
15792 yet; because I guess these callers will disappear into back-end
15793 specific files anyway.
15794
15795 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15796
15797 * vc.el (with-vc-file, vc-next-action-on-file, vc-merge)
15798 (vc-backend-checkout): Changed calls to `vc-checkout-model' to
15799 `vc-uses-locking'.
15800
15801 * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking.
15802 Store yes/no in the property, and return t/nil. Updated all
15803 callers.
15804
15805 * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to
15806 vc-sccs-uses-locking. Don't set property.
15807 (vc-sccs-locking-user): Don't set property.
15808
15809 * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to
15810 vc-cvs-uses-locking. Don't set property here; leave that to
15811 vc-hooks.
15812 (vc-cvs-locking-user): Reflect above change. Streamlined.
15813
15814 * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to
15815 vc-rcs-uses-locking.
15816 (vc-rcs-locking-user): Reflect above change.
15817
15818 2000-09-04 Dave Love <fx@gnu.org>
15819
15820 * vc-sccs-hooks.el (vc-sccs-checkout-model): New function.
15821
15822 * vc-rcs-hooks.el (vc-rcs-checkout-model): New function.
15823
15824 * vc-hooks.el (vc-checkout-model): Punt to backends.
15825
15826 * vc-cvs-hooks.el (vc-cvs-checkout-model): New function.
15827
15828 * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status.
15829
15830 * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user):
15831 New functions.
15832
15833 * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user):
15834 New functions.
15835
15836 * vc-cvs-hooks.el (vc-handle-cvs): Doc fix.
15837 (vc-cvs-workfile-version, vc-cvs-locking-user): New functions.
15838
15839 * vc-hooks.el (vc-default-locking-user): New function.
15840 (vc-locking-user, vc-workfile-version): Punt to backends.
15841
15842 2000-09-04 Dave Love <fx@gnu.org>
15843
15844 * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff)
15845 (vc-master-workfile-version): Moved from vc-hooks.
15846
15847 * vc-rcs-hooks.el: Fix duplicate code in last change.
15848
15849 * vc-rcs-hooks.el: Require vc-hooks when compiling.
15850 (vc-rcs-master-templates): Improve :type.
15851 (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff,
15852 vc-master-workfile-version): Moved from vc-hooks.
15853
15854 * vc-sccs-hooks.el: Require vc-hooks when compiling.
15855 (vc-sccs-master-templates): Improve :type.
15856 (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file.
15857
15858 * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed.
15859
15860 * vc-cvs-hooks.el: Require vc-hooks when compiling.
15861 (vc-cvs-master-templates): Improve :type. Use
15862 vc-cvs-find-cvs-master.
15863 (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here
15864 from vc-hooks.
15865 (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master.
15866
15867 * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status):
15868 Moved to vc-cvs-hooks.
15869
15870 * vc-hooks.el: Add doc strings in various places. Simplify the
15871 minor mode setup.
15872 (vc-handled-backends): New user variable.
15873 (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor
15874 simplification.
15875
15876 2000-09-04 Dave Love <fx@gnu.org>
15877
15878 * vc.el: Some doc fixes for autoloaded and interactive functions.
15879 Fix compilation warnings from ediff stuff.
15880 (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix.
15881
15882 * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version.
15883
15884 * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version.
15885
15886 * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version.
15887
15888 2000-09-04 Dave Love <fx@gnu.org>
15889
15890 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
15891 New variable.
15892 (vc-make-backend-function, vc-loadup, vc-call-backend)
15893 (vc-backend-defines): New functions.
15894
15895 * vc-hooks.el: Various doc fixes.
15896 (vc-default-back-end, vc-follow-symlinks): Custom fix.
15897 (vc-match-substring): Function removed. Callers changed to use
15898 match-string.
15899 (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook):
15900 Simplify.
15901
15902 2000-09-04 Dave Love <fx@gnu.org>
15903
15904 * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom
15905 type.
15906 (vc-sccs-project-dir, vc-search-sccs-project-dir)
15907 (vc-sccs-registered): Doc fix.
15908
15909 * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type.
15910 (vc-cvs-registered): Doc fix.
15911
15912 * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type.
15913 (vc-rcs-registered): Doc fix.
15914
15915 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15916
15917 * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file.
15918
15919 * vc-hooks.el: vc-registered has been renamed
15920 vc-default-registered. Some functions have been moved to the
15921 backend specific files. they all support the
15922 vc-BACKEND-registered functions.
15923
15924 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15925
15926 * vc-hooks.el: This is 1998-11-11T18:47:32Z!kwzh@gnu.org from the emacs sources
15927
15928 * vc.el: This is 1999-03-13T05:04:24Z!kwzh@gnu.org from the emacs sources
15929
15930 2000-09-04 Dave Love <fx@gnu.org>
15931
15932 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run
15933 menu-bar-update-hook.
15934
15935 * help.el (help-manyarg-func-alist): Add
15936 find-operation-coding-system.
15937
15938 * wid-edit.el (widget-sexp-validate): Fix garbled code.
15939
15940 * custom.el (custom-set-variables): Print message about errors in
15941 setting.
15942
15943 2000-09-03 Andrew Innes <andrewi@gnu.org>
15944
15945 * makefile.w32-in: Change to DOS line endings.
15946
15947 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
15948
15949 * mouse.el (mouse-popup-menubar): Supply the prompt string for
15950 minor-mode keymaps, if they don't have one.
15951
15952 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
15953
15954 * eshell/esh-module.el (eval-when-compile): Don't lose if
15955 esh-module.el's file name is truncated to DOS 8+3 limits.
15956
15957 2000-09-01 John Wiegley <johnw@gnu.org>
15958
15959 * pcomplete.el (pcomplete-dirs-or-entries): Added a missing
15960 predicate, which caused entries in the completion list to be
15961 doubled.
15962
15963 2000-08-30 John Wiegley <johnw@gnu.org>
15964
15965 * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct
15966 sending to subprocesses. Also, hook pre-command-hook if
15967 `eshell-send-direct-to-subprocesses' is non-nil.
15968 (eshell-send-direct-to-subprocesses): New config variable. If t,
15969 subprocess input is send immediately.
15970 (eshell-toggle-direct-send): New function.
15971 (eshell-self-insert-command): New function.
15972 (eshell-intercept-commands): New function.
15973 (eshell-send-input): If direct subprocess sending is enabled,
15974 don't echo any input to the Eshell buffer. Let the subprocess
15975 handle that. This requires "stty echo" in bash, for example.
15976
15977 2000-08-28 John Wiegley <johnw@gnu.org>
15978
15979 * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added
15980 completion function for Eshell's implementation of `unset'.
15981
15982 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
15983
15984 * info.el (Info-directory-list): Doc fix.
15985
15986 2000-08-31 Peter Breton <pbreton@ne.mediaone.net>
15987
15988 * filecache.el (file-cache-add-directory-using-find): Don't quote
15989 wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
15990
15991 2000-08-31 Kenichi Handa <handa@etl.go.jp>
15992
15993 * help.el (help-make-xrefs): Don't make hyperlinks for incorrect
15994 coding systems.
15995
15996 2000-08-30 Andrew Innes <andrewi@gnu.org>
15997
15998 * timer.el (run-with-idle-timer): Undo last change, so that timer
15999 is not activated immediately if Emacs is already idle. Some
16000 existing code relies on this behaviour.
16001
16002 2000-08-30 Miles Bader <miles@gnu.org>
16003
16004 * frame.el (set-frame-font): Do completion of font-name for
16005 interactive use.
16006
16007 2000-08-30 Kenichi Handa <handa@etl.go.jp>
16008
16009 * international/quail.el (quail-start-translation): Bind locally
16010 last-command-event, last-command, and this-command.
16011 (quail-start-conversion): Likewise.
16012 (quail-self-insert-command): Fix docstring.
16013
16014 2000-08-29 Gerd Moellmann <gerd@gnu.org>
16015
16016 * progmodes/executable.el
16017 (executable-make-buffer-file-executable-if-script-p): Check that
16018 buffer contains at least 2 characters.
16019
16020 2000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
16021
16022 * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix.
16023
16024 2000-08-29 Dave Love <fx@gnu.org>
16025
16026 * diff-mode.el (diff-mode) <defgroup>: Add :version.
16027 (diff-mode-shared-map): Bind mouse-2.
16028 (diff-imenu-generic-expression): New variable.
16029 (diff-mode): Use it.
16030
16031 * mouse.el (mouse-major-mode-menu): Use local-key-binding.
16032 (mouse-popup-menubar): Add minor mode menus.
16033 (popup-menu): Check for lookup-key returning number.
16034
16035 2000-08-29 Miles Bader <miles@gnu.org>
16036
16037 * comint.el (comint-send-input): Create overlays using the proper
16038 front/read-advance arguments.
16039
16040 2000-08-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
16041
16042 * ps-print.el: Even/odd pages printing. Doc fix.
16043 (ps-print-version): New version number (6.0).
16044 (ps-setup, ps-print-page-p, ps-background-text, ps-background-image)
16045 (ps-background, ps-begin-file, ps-begin-job): Code fix.
16046 (ps-print-duplex-feature): Variable eliminated.
16047 (ps-even-or-odd-pages): New variable.
16048
16049 * progmodes/ebnf2ps.el: Doc fix.
16050 (ebnf-version): New version (3.3).
16051 (ebnf-user-arrow): Change variable customization to sexp.
16052 (ebnf-user-arrow): Function eliminated.
16053 (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix.
16054
16055 2000-08-29 Kenichi Handa <handa@etl.go.jp>
16056
16057 * help.el (help-xref-mule-regexp): New variable.
16058 (help-make-xrefs): Handle help-xref-mule-regexp.
16059
16060 * international/mule-cmds.el (help-xref-mule-regexp-template): New
16061 variable.
16062 (describe-input-method): Temporarily activate the specfied input
16063 method to display the information.
16064 (describe-language-environment): Hyperlinks to mule related items.
16065
16066 * international/mule-diag.el (charset-multibyte-form-string): New
16067 function.
16068 (list-character-sets-1): Use charset-multibyte-form-string.
16069 (describe-character-set): New function.
16070 (describe-coding-system): Hyperlinks to safe character sets.
16071
16072 * international/quail.el (quail-help): New arg PACKAGE.
16073 Hyperlinks to mule related items.
16074 (quail-help-insert-keymap-description): Use
16075 substitute-command-keys instead of describe-bindings.
16076 (quail-translation-help): Hyperlinks to mule related items.
16077
16078 2000-08-28 John Wiegley <johnw@gnu.org>
16079
16080 * eshell/esh-util.el (eshell-flatten-list): It's not too wise to
16081 have a defsubst call itself. Made `eshell-flatten-list' back into
16082 a function again.
16083
16084 * eshell/em-smart.el (eshell-smart-redisplay): Added a safety
16085 catch, in case re-centering point at bottom messes up the display.
16086 This happens frequently in Emacs 21, due I believe to variable
16087 line heights.
16088
16089 * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order
16090 to call `find-tag-interactive'.
16091
16092 * eshell/em-dirs.el (eshell/cd): Use buffered printing to display
16093 the list of remember directories.
16094
16095 2000-08-28 John Wiegley <johnw@gnu.org>
16096
16097 * align.el: Test align-region-separate to see if it's a symbol.
16098
16099 2000-08-28 John Wiegley <johnw@gnu.org>
16100
16101 * eshell/esh-util.el (eshell-flatten-list): Made this function
16102 into a defsubst form. It gets used very frequently, although
16103 calls don't occur all that often.
16104
16105 * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
16106 examining it.
16107
16108 * eshell/esh-cmd.el (eshell-rewrite-while-command):
16109 (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
16110 `eshell-protect'.
16111 (eshell-copy-handles): Created a new macro for duplicating the
16112 current set of open handles. This is needed by the looping
16113 functions.
16114 (eshell-do-eval): Fixed while and if, so that the eshell-test-body
16115 is not incorrectly stomped on.
16116
16117 * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
16118 declaration for pcomplete-use-paring.
16119 (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
16120 value of eshell-cmpl-use-paring.
16121 * pcomplete.el (pcomplete-use-paring): New config variable, to
16122 indicate whether paring should be used.
16123 (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
16124 completion alternatives that have already been used.
16125
16126 * eshell/esh-mode.el (eshell-repeat-argument): Added function,
16127 bound to C-c C-y, which will repeat the previous N arguments
16128 (based on prefix argument).
16129 (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
16130
16131 * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
16132 if there is no *Help* buffer. This is for XEmacs, which renames
16133 its help buffers uniquely. TODO: Find out what the current buffer
16134 name to delete is.
16135
16136 * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
16137 first entry that correlates to a passwd/group number. Later
16138 entries (used for group/user name aliasing to multiple IDs) are
16139 ignored.
16140
16141 * eshell/em-xtra.el (eshell/expr):
16142 * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
16143 (eshell-grep, eshell/diff, eshell/locate):
16144 * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
16145 argument list, before passing it to the system command.
16146
16147 * eshell/esh-mode.el (eshell-find-tag): Added a special version of
16148 `find-tag' for use at final position in Eshell buffers (which
16149 otherwise triggers an error on Emacs 21).
16150 (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
16151 buffer, if it is currently bound to `find-tag'.
16152
16153 * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
16154 in the list of matched Makefile names.
16155 (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
16156 directory, prefer its contents to Makefile.
16157
16158 * eshell/em-dirs.el (eshell/cd): cd commands that look up
16159 directory parts (like "cd old new", or "cd =regexp"), are now case
16160 sensitive on non-Windows/DOS platforms.
16161
16162 * eshell/esh-mode.el (eshell-parse-command-input): When a user
16163 types RET after an open delimiter (like "), display a message
16164 indicating that Eshell is waiting for the closing delimiter.
16165
16166 * eshell/esh-var.el (eshell/unset): Added a command for unsetting
16167 environment variables.
16168
16169 * eshell/em-unix.el (eshell/diff): Added logic to fail more
16170 gracefully if the user enters incorrect arguments.
16171
16172 * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
16173 Eshell buffers.
16174
16175 * eshell/esh-var.el (eshell-interpolate-variable):
16176 * eshell/esh-mode.el (eshell-move-argument):
16177 * eshell/em-unix.el (eshell-du-sum-directory):
16178 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
16179 * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
16180 (not (= ...)).
16181
16182 * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
16183 to ensure the `preserve' flag gets propagated when doing recursive
16184 directory copies.
16185
16186 2000-08-28 Stefan Monnier <monnier@cs.yale.edu>
16187
16188 * eshell/em-hist.el (eshell-put-history, eshell-get-history):
16189 Don't convert \n into \0177 in memory.
16190 (eshell-read-history, eshell-write-history): Convert \n to \0177,
16191 and back again, when reading and writing.
16192
16193 2000-08-28 Eli Zaretskii <eliz@is.elta.co.il>
16194
16195 * eshell/esh-util.el (eshell-processp): Added to relieve constant
16196 testing of `fboundp' on `processp'.
16197
16198 * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
16199 (eshell/jobs): Don't call process-list if it is not bound.
16200 (eshell-gather-process-output): Support systems where async
16201 subprocesses aren't supported.
16202 (eshell-scratch-buffer, eshell-last-sync-output-start): New
16203 variables.
16204
16205 * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
16206 eshell-do-eval returns t.
16207 (eshell-do-pipelines-synchronously): New defmacro.
16208 (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
16209 when async subprocesses aren't supported.
16210 (eshell-do-eval): Use eshell-processp. Don't throw eshell-defer
16211 if async subprocesses aren't supported.
16212 (eshell-resume-command): Don't assume STATUS is a string.
16213
16214 * eshell/em-unix.el (eshell/rm): Use eshell-processp.
16215
16216 * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
16217 (eshell-close-target, eshell-get-target): Use eshell-processp.
16218 (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
16219 fix.
16220 (eshell-get-target, eshell-create-handles): Doc fix.
16221
16222 2000-08-28 Miles Bader <miles@lsi.nec.co.jp>
16223
16224 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the
16225 criterion to include commands that output something, as long as it
16226 leaves both the command and the end-of-buffer visible when the
16227 command has exited.
16228 (eshell-review-quick-commands): Adjust the help doc string
16229 accordingly.
16230
16231 2000-08-28 Peter Breton <pbreton@ne.mediaone.net>
16232
16233 * locate.el (locate): Cleaned up locate command's interactive prompting
16234 Thanks to Fran\e,Ag\e(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions.
16235
16236 * filecache.el (file-cache-case-fold-search): New variable
16237 (file-cache-assoc-function): New variable
16238 (file-cache-minibuffer-complete): Use file-cache-assoc-function.
16239 Use file-cache-case-fold-search variable
16240 (file-cache-add-file): Use file-cache-assoc-function
16241 (file-cache-delete-file): likewise
16242 (file-cache-directory-name): likewise
16243 (file-cache-debug-read-from-minibuffer): likewise
16244
16245 2000-08-28 Gerd Moellmann <gerd@gnu.org>
16246
16247 * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
16248 (abbrev-table-name): New function.
16249 (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
16250 If non-nil list local abbrev, only.
16251
16252 2000-08-28 Stanislav Shalunov <shalunov@internet2.edu>
16253
16254 * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*"
16255 from Gnus support code, and use special article copy buffer
16256 `(gnus-original-article-buffer)' instead. This allows to get rid
16257 of article-hide-headers usage (which breaks in the latest Gnus
16258 version). Thanks to Detlev Zundel.
16259
16260 2000-08-28 Kenichi Handa <handa@etl.go.jp>
16261
16262 * international/quail.el (quail-use-package): Hide "... loaded"
16263 message.
16264 (quail-start-translation, quail-start-conversion): Likewise.
16265
16266 * international/kkc.el (kkc-region): Hide "... loaded" message.
16267
16268 2000-08-27 Dave Love <fx@gnu.org>
16269
16270 * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
16271
16272 2000-08-27 Miles Bader <miles@gnu.org>
16273
16274 * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
16275
16276 2000-08-27 Kenichi Handa <handa@etl.go.jp>
16277
16278 * international/ja-dic-cnv.el (skkdic-convert): Insert (require
16279 'ja-dic-cnv), not (require 'skkdic-cnv).
16280
16281 2000-08-26 Miles Bader <miles@gnu.org>
16282
16283 * faces.el (face-x-resources): Add entry for :inherit.
16284 * cus-face.el (custom-face-attributes): Add support for :inherit
16285 attribute. Add support for relative face heights.
16286 (custom-face-attributes-get): Treat `nil' as being a default value
16287 for :inherit (as well as `unspecified').
16288
16289 * faces.el (set-face-attribute): Update doc string.
16290 (face-attribute-name-alist): Add :inherit.
16291 (face-valid-attribute-values): Handle :inherit.
16292 (face-read-string): Rephrase prompt to be less confusing.
16293 Assume that DEFAULT is a string, since we must return a string.
16294 (face-read-integer): Use `format' to turn DEFAULT into an
16295 acceptable default for face-read-string. Match NEW-VALUE against
16296 the string "unspecified", not the symbol `unspecified', since
16297 that's what face-read-string returns.
16298 (read-face-attribute): Lookup a name for old-value in valid, and
16299 use it as a default if we find one. Treat all values from
16300 face-read-string as strings. If the default is used, don't do any
16301 more processing on the value, just use the old value directly.
16302 (read-face-and-attribute, modify-face): Tweak prompt.
16303 (read-face-name): Don't assume prompt ends with a space.
16304
16305 * faces.el (describe-face): Add support for :inherit attribute.
16306
16307 2000-08-25 Kenichi Handa <handa@etl.go.jp>
16308
16309 * terminal.el (terminal-emulator): Fix args to `concat'. Now
16310 concat doesn't accept interger.
16311
16312 * international/kkc.el: Remove SKK from Keywords. Require
16313 ja-dic-utl instead of skkdic-utl.
16314
16315 * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
16316 Provide ja-dic-cnv instead of skkdic-cnv.
16317 (ja-dic-filename): Renamed from skkdic-filename. Referers changed
16318 (iso-2022-7bit-short): Add safe-charsets property.
16319 (skkdic-convert-postfix): Search Japanese chou-on character in
16320 addition to Hiragana character.
16321 (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
16322 (skkdic-convert): Change file names from skkdic.el to ja-dic.el
16323 (batch-skkdic-convert): Likewise.
16324
16325 * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
16326 Provide ja-dic-utl instead of skkdic-utl.
16327 (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
16328
16329 2000-08-24 Dave Love <fx@gnu.org>
16330
16331 * disp-table.el (standard-display-default): Make the test of `l'
16332 useful.
16333
16334 * language/european.el ("Latin-8", "Latin-9"): Add input methods,
16335 mod sample text.
16336
16337 * international/iso-ascii.el: Make pilcrow convenient string
16338 consistent with section.
16339 (iso-ascii-display): Set up multibyte characters as well as
16340 unibyte.
16341
16342 2000-08-24 Kenichi Handa <handa@etl.go.jp>
16343
16344 * international/mule-cmds.el (reset-language-environment): Set
16345 default-process-coding-system to '(undecided . iso-latin-1), which
16346 makes process I/O almost consistent with file I/O. Call this
16347 function when mule-cmds.el[c] is loaded.
16348
16349 2000-08-22 Andrew Innes <andrewi@gnu.org>
16350
16351 * makefile.w32-in: New file.
16352
16353 2000-08-22 Miles Bader <miles@lsi.nec.co.jp>
16354
16355 * comint.el (comint-output-filter): Compare end of
16356 comint-last-output-overlay with the start of the newly inserted
16357 text, not the end, when deciding whether to extend it.
16358 Set saved-point's insertion type to advance after insertion.
16359
16360 * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
16361 since this is now done independently of font-lock mode.
16362
16363 2000-08-21 Gerd Moellmann <gerd@gnu.org>
16364
16365 * server.el (server-kill-new-buffers): New user option.
16366 (server-existing-buffer): New buffer-local variable.
16367 (server-visit-files): When using an existing buffer, set
16368 server-existing-buffer to t.
16369 (server-buffer-done): If server-kill-new-buffers is t, kill the
16370 buffer, unless it was already present before visiting it with
16371 Emacs server.
16372
16373 2000-08-21 Eli Zaretskii <eliz@is.elta.co.il>
16374
16375 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
16376 even if the display doesn't support colors: some displays will
16377 support bold/underline faces.
16378
16379 2000-08-21 Gerd Moellmann <gerd@gnu.org>
16380
16381 * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
16382
16383 * startup.el (command-line): If user's init file had an error,
16384 add explanatory text to *Messages*.
16385
16386 2000-08-21 Kenichi Handa <handa@etl.go.jp>
16387
16388 * man.el (Man-getpage-in-background): Decode the process output by
16389 the system locale coding system.
16390
16391 2000-08-20 Dave Love <fx@gnu.org>
16392
16393 * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
16394 Don't test x-popup-menu.
16395 (function) <complete-function>: Complete only fbound symbols.
16396 <validate, value>: New.
16397 (variable) <complete-function>: Complete only bound symbols.
16398 (coding-system): Add :base-only, :complete-function, :validate,
16399 :value, :prompt-match.
16400 (widget-coding-system-prompt-value): Use read-coding-system and
16401 act on :base-only.
16402 (editable-field): Add :help-echo.
16403 (widget-push-button-gui, widget-push-button-cache)
16404 (widget-gui-action, widget-editable-list-gui): COmment out, along
16405 with uses.
16406 (widget-at): Make arg optional.
16407 (widget-echo-help): Adjust for current help-echo calling sequence.
16408 (widget-specify-field, widget-specify-button)
16409 (widget-specify-insert, widget-get-sibling, widget-image-find)
16410 (widget-convert, widget-insert, widget-leave-text)
16411 (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
16412 (widget-setup, widget-field-find, widget-before-change)
16413 (widget-after-change, widget-default-complete)
16414 (widget-default-create, widget-default-delete)
16415 (widget-push-button-value-create, editable-field)
16416 (widget-field-prompt-value, widget-field-validate)
16417 (widget-choice-value-create, widget-choice-action)
16418 (widget-choice-validate, widget-checklist-add-item)
16419 (widget-radio-add-item, widget-radio-chosen)
16420 (widget-radio-value-inline, widget-editable-list-value-create)
16421 (widget-editable-list-entry-create)
16422 (widget-documentation-link-add)
16423 (widget-documentation-string-value-create)
16424 (widget-regexp-validate, widget-file-complete)
16425 (widget-sexp-validate, widget-plist-convert-widget)
16426 (widget-plist-convert-widget, widget-alist-convert-widget)
16427 (widget-alist-convert-widget, widget-color-complete): Simplify,
16428 particularly to avoid bindings which aren't optimized out.
16429
16430 * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
16431 Doc fix.
16432 (down-list, backward-up-list, up-list, kill-sexp)
16433 (backward-kill-sexp, mark-sexp): Make arg optional.
16434 (lisp-complete-symbol): Add optional arg PREDICATE.
16435
16436 * cus-start.el: Add display-buffer-reuse-frames,
16437 file-coding-system-alist.
16438
16439 2000-08-20 Gerd Moellmann <gerd@gnu.org>
16440
16441 * startup.el (command-line): Clear realized faces after
16442 modifying TTY color mappings.
16443
16444 2000-08-20 Miles Bader <miles@gnu.org>
16445
16446 * faces.el (face-attr-match-p): Don't return true if ATTRS are
16447 merely a subset of FACE's attributes.
16448
16449 2000-08-19 Miles Bader <miles@gnu.org>
16450
16451 * comint.el (comint-output-filter): Save the point with a marker,
16452 not just a buffer position.
16453
16454 * international/mule.el (set-buffer-process-coding-system): Make
16455 interactive prompt less confusing.
16456
16457 2000-08-19 Gerd Moellmann <gerd@gnu.org>
16458
16459 * hilit-chg.el: General cleanup of doc strings, comments and
16460 code formatting.
16461
16462 2000-08-19 Miles Bader <miles@gnu.org>
16463
16464 * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
16465 Compiler macro removed; beginning-of-line is no longer always
16466 equivalent to forward-line, in the presence of fields.
16467
16468 * comint.el (comint-output-filter): Remove ad-hoc saving of
16469 restriction, and just use save-restriction, now that it works
16470 correctly. Don't adjust comint-last-input-start to account for
16471 our insertion; it shouldn't have moved because we don't use
16472 insert-before-markers anymore. Comment out call to
16473 `force-mode-line-update'; why is it here?
16474
16475 * gud.el (gud-basic-call): Temporarily widen gud comint buffer
16476 while checking for prompt to delete. Use `forward-line 0'
16477 instead of beginning-of-line.
16478 (gud-filter): Temporarily widen gud comint buffer while
16479 examining output.
16480
16481 2000-08-18 Stefan Monnier <monnier@cs.yale.edu>
16482
16483 * progmodes/sh-script.el: Big bag of typos.
16484
16485 * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
16486 check since ispell-process is not bound when ispell is not yet loaded.
16487
16488 2000-08-18 Dave Love <fx@gnu.org>
16489
16490 * image.el (find-image): Copy `spec' before using plist-put.
16491
16492 2000-08-18 Gerd Moellmann <gerd@gnu.org>
16493
16494 * textmodes/ispell.el (ispell-dictionary-alist-6): Add
16495 `portugues'.
16496
16497 * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
16498 backward-kill-sexp, analogous to kill-sexp.
16499
16500 * progmodes/icon.el (icon-indent-line)
16501 (icon-is-continuation-line): Handle comments specially.
16502
16503 2000-08-17 Ken Stevens <k.stevens@ieee.org>
16504
16505 * ispell.el: Set to standard author/maintainer/keyword fields.
16506 Fine tuning to menu map appearance and operation, and added help.
16507 Remove `start' and `end' error messages when compiling.
16508 (ispell-choices-win-default-height): Fixed comment string.
16509 (ispell-dictionary-alist-1): Fixed regexp in castellano and
16510 castellano8 dictionaries.
16511 (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
16512 (ispell-dictionary-alist-4): Fixed regexp in francais-tex
16513 dictionary, added italiano dictionary.
16514 (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
16515 word character
16516 (ispell-tex-skip-alists): Added psfig support.
16517 (ispell-skip-html): Renamed from ispell-skip-sgml.
16518 (ispell-begin-skip-region-regexp, ispell-skip-region)
16519 (ispell-minor-check): Improved html skipping support to skip across
16520 code, and recognize `&' commands without propper `;' syntax;
16521 (ispell-process-line): Fix alignment error when manually
16522 correcting spelling.
16523 (ispell): Fix comment string.
16524 (ispell-add-per-file-word-list): Always put word list on new line.
16525
16526 2000-08-17 Gerd Moellmann <gerd@gnu.org>
16527
16528 * format.el (format-encode-run-method): Fix error message to say
16529 `encode' instead of `decode'. Use save-window-excursion around
16530 shell-command-on-region as in format-decode-run-method because
16531 shell-command-on-region can display a buffer with error output.
16532 (format-decode): Don't record undo information for the decoding.
16533 (format-annotate-function): Add parameter FORMAT-COUNT. Make
16534 that number part of the temporary buffer name so that more than
16535 one decoding using a temporary buffer can happen safely.
16536
16537 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
16538 of `A-z' in the regexp.
16539
16540 * hilit-chg.el: Fix typos in commentary.
16541
16542 * help.el (view-emacs-news): Rewritten for new naming scheme
16543 for old NEWS files.
16544
16545 * startup.el (command-line): Pop to *Messages* in case an error
16546 is signaled while loading user-init-file.
16547
16548 2000-08-17 Andreas Schwab <schwab@suse.de>
16549
16550 * files.el (insert-directory): Don't lose original file name,
16551 undoing an undocumented change.
16552
16553 2000-08-17 Alex Schroeder <alex@gnu.org>
16554
16555 * sql.el (sql-magic-go): Use comint-bol.
16556 (sql-copy-column): Use comint-line-beginning-position.
16557 (comint-line-beginning-position): Define a replacement for
16558 comint-line-beginning-position if it is not fboundp.
16559
16560 2000-08-17 Alex Schroeder <alex@gnu.org>
16561
16562 * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
16563 it didn't have any effect anyway.
16564
16565 2000-08-17 Alex Schroeder <alex@gnu.org>
16566
16567 * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
16568 --pset and pager=off instead of sending \\o|cat at the beginning
16569 of the session.
16570
16571 2000-08-17 Miles Bader <miles@gnu.org>
16572
16573 * progmodes/octave-inf.el: Add compatibility definition of
16574 comint-line-beginning-position.
16575
16576 2000-08-17 Kenichi Handa <handa@etl.go.jp>
16577
16578 * startup.el (normal-top-level): Look in each dir in load-path for
16579 a leim-list.el file too. This assures of loading leim-list.el
16580 that is created at Emacs installation time even if a user have his
16581 own leim-list.el.
16582
16583 2000-08-17 Miles Bader <miles@gnu.org>
16584
16585 * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
16586 foreground color to black if the background is dark.
16587
16588 2000-08-16 Stefan Monnier <monnier@cs.yale.edu>
16589
16590 * loadhist.el (unload-feature): Typo.
16591
16592 * finder.el (finder-compile-keywords):
16593 * cus-dep.el (custom-make-dependencies): Add local-variable settings
16594 to the generated file.
16595
16596 * mail/mh-e.el (mh-make-local-vars):
16597 Replace make-variable-buffer-local with make-local-variable.
16598
16599 * play/landmark.el:
16600 * options.el (Edit-options-{set,toggle,t,nil}):
16601 * mail/mailabbrev.el (mail-abbrevs-mode):
16602 * textmodes/tex-mode.el (tex-expand-files):
16603 * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
16604
16605 * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
16606
16607 * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
16608 (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
16609 Allow going past the last element.
16610 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
16611 (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
16612 (cvs-mouse-toggle-mark): Don't move point.
16613 (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
16614
16615 * progmodes/compile.el (grep): Provide a default set of files.
16616 (next-error): Docstring fix.
16617 (compilation-find-file): Avoid find-file (fails in a dedicated window).
16618
16619 * emacs-lisp/easy-mmode.el (define-minor-mode):
16620 Use `symbol-value' to keep the byte-compiler quiet.
16621
16622 * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
16623 (diff-find-source-location): New fun, extracted from diff-goto-source.
16624 (diff-goto-source): Use it.
16625 (diff-next-complex-hunk, diff-filter-lines): New function.
16626 (diff-apply-hunk): New command.
16627
16628 * smerge-mode.el (smerge-mode-menu): Doc fix.
16629
16630 * msb.el (msb-mode): Define it in terms of define-minor-mode.
16631
16632 2000-08-16 Dave Love <fx@gnu.org>
16633
16634 * windmove.el (windmove) <defgroup>: Add :version.
16635
16636 * net/goto-addr.el: Don't require browse-url. Require thingatpt.
16637 (goto-address-fontify-p, goto-address-highlight-p)
16638 (goto-address-url-face, goto-address-url-mouse-face)
16639 (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
16640 (goto-address-url-regexp): Use thing-at-point-url-regexp.
16641 (goto-address-fontify, goto-address-at-mouse): Simplify,
16642 (goto-address-at-point): browse-url-url-at-point,
16643 goto-address-find-address-at-point can return nil.
16644 (goto-address-find-address-at-point): Return nil on failure.
16645
16646 * align.el (align) <defgroup>: Add :version.
16647
16648 * calculator.el (calculator): Add :version.
16649 (calculator): Use two lines for calculator window if `modeline'
16650 face is boxed.
16651
16652 * play/5x5.el: Doc fixes.
16653 (5x5) <defgroup>: Add :version.
16654
16655 * play/fortune.el (fortune) <defgroup>: Add :version.
16656 (fortune-append): Fix error message.
16657 (fortune-from-region): Doc fix.
16658
16659 * play/pong.el (pong): Doc fix.
16660
16661 * play/morse.el: Keywords, commentary, autoloads.
16662
16663 2000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
16664
16665 * desktop.el (desktop-save): Don't look at symbol-value of a
16666 member of minor-mode-alist, unless it is boundp.
16667
16668 2000-08-16 Sam Steingold <sds@gnu.org>
16669
16670 * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
16671 `while'; use `with-current-buffer' instead of `save-excursion'.
16672 Removed unnecessary kludges now that "*Buffer List*" is excluded.
16673
16674 2000-08-16 Kenichi Handa <handa@etl.go.jp>
16675
16676 * international/ccl.el (declare-ccl-program): Docstring modified.
16677 (ccl-execute-with-args): Likewise.
16678
16679 2000-08-16 Miles Bader <miles@gnu.org>
16680
16681 * progmodes/sql.el: Add compatibility definition of
16682 comint-line-beginning-position.
16683
16684 2000-08-15 Gerd Moellmann <gerd@gnu.org>
16685
16686 * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
16687 'buffer-menu' property.
16688 (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
16689 fails.
16690 (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
16691 buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
16692 wasn't killed.
16693
16694 * buff-menu.el (list-buffers-noselect): Don't display the
16695 *Buffer List* buffer.
16696
16697 * font-lock.el: Require jit-lock to prevent a very late
16698 `Loading jit-lock' message.
16699
16700 * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
16701 * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
16702 mail address.
16703
16704 2000-08-15 Miles Bader <miles@gnu.org>
16705
16706 * textmodes/ispell.el (ispell-graphic-p): New constant.
16707 (ispell-choices-win-default-height, ispell-help): Use
16708 `ispell-graphic-p' instead of `xemacsp'.
16709
16710 2000-08-15 Dave Love <fx@gnu.org>
16711
16712 * simple.el: Autoload widget-convert when compiling.
16713 (mail-user-agent): Doc fix.
16714
16715 * help.el (function-called-at-point, variable-at-point): Use
16716 with-syntax-table.
16717 (help-manyarg-func-alist): Add insert-and-inherit.
16718
16719 * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
16720
16721 * delsel.el (delsel-unload-hook): New function.
16722
16723 * find-file.el: Doc fixes. Move provide to end.
16724 (ff) <defgroup>: Add :link.
16725 (ff-goto-click): Deleted.
16726 (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
16727 Use mouse-set-point.
16728
16729 * textmodes/tildify.el: Doc fixes.
16730 (tildify) <defgroup>: Add:version.
16731
16732 * progmodes/glasses.el (glasses) <defgroup>: Add :version.
16733 (glasses-custom-set): Use set-default, not set.
16734 (minor-mode-alist): Propertize the lighter.
16735 (glasses-mode): Provide optional arg.
16736
16737 * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
16738 (global-cwarn-mode): Don't make it a user option. Unquote lambda.
16739 (cwarn-font-lock-feature-keywords-alist): Don't make it a user
16740 option. Provide :type.
16741 (cwarn-configuration): Provide :type.
16742 (cwarn-mode): Doc fix.
16743
16744 * add-log.el (change-log-merge): Doc fix.
16745 (change-log-redate): New command.
16746
16747 * net/browse-url.el (browse-url-filename-alist): Add a clause for
16748 Doze and Dog.
16749 (browse-url): Use dolist, not mapcar.
16750 (browse-url-at-point): Check for null url.
16751 (browse-url-event-buffer, browse-url-event-point): Functions
16752 deleted.
16753 (browse-url-at-mouse, browse-url-netscape): Simplify.
16754
16755 * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
16756 modes.
16757 (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
16758 Fix previous change to mapcan.
16759 (msb--init-file-alist, msb--add-separators)
16760 (msb--make-keymap-menu): Simplify.
16761 (msb--choose-file-menu): Use copy-sequence.
16762 (msb-mode-map): Add title to keymap.
16763 (msb-unload-hook): New function.
16764
16765 * bs.el: Fix indentation.
16766 (bs) <defgroup>: Add :links.
16767 (bs-show): Doc fix.
16768 (bs-apply-sort-faces): Don't use window-system.
16769 (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
16770
16771 2000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
16772
16773 * calendar/timeclock.el (timeclock-file): Run .timelog through
16774 convert-standard-filename.
16775
16776 2000-08-14 Gerd Moellmann <gerd@gnu.org>
16777
16778 * emacs-lisp/authors.el: New file.
16779
16780 * paren.el (show-paren-priority): New user option.
16781 (show-paren-function): Set overlay priorities to
16782 show-paren-priority.
16783
16784 2000-08-14 Miles Bader <miles@gnu.org>
16785
16786 * comint.el (comint-bol): Use `forward-line 0' instead of calling
16787 beginning-of-line with inhibit-field-text-motion bound.
16788
16789 2000-08-14 Gerd Moellmann <gerd@gnu.org>
16790
16791 * calendar/timeclock.el: New file.
16792
16793 2000-08-14 David Ponce <david@dponce.com>
16794
16795 * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
16796 `widget-button-click'. so that one can use left mouse button to
16797 click on dialog buttons.
16798
16799 2000-08-14 Emmanuel Briot <briot@gnat.com>
16800
16801 * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
16802 identifiers, since XML is case sensitive
16803
16804 2000-08-12 Miles Bader <miles@gnu.org>
16805
16806 * comint.el (comint-output-filter): Don't bother frobbing
16807 window-start, it doesn't seem to be necessary.
16808
16809 * comint.el (comint-send-string, comint-send-region): Make into
16810 real functions. Snapshot the prompt before sending.
16811
16812 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
16813
16814 * info.el (Info-find-emacs-command-nodes): Rewrite to use
16815 technique similar to Info-index, instead of relying on specific
16816 names of relevant Index nodes.
16817 (Info-goto-emacs-command-node): Bind Info-history to nil when
16818 going to the first node found by Info-find-emacs-command-nodes.
16819
16820 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
16821
16822 * menu-bar.el (menu-bar-help-menu): Add a :help string.
16823
16824 2000-08-10 Miles Bader <miles@gnu.org>
16825
16826 * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
16827
16828 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
16829
16830 * info.el (Info-file-list-for-emacs): More elements for the
16831 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
16832 and woman manuals.
16833
16834 2000-08-10 Miles Bader <miles@lsi.nec.co.jp>
16835
16836 * comint.el (comint-send-input): Make the newline boundary overlay
16837 rear-nonsticky. Use `insert' instead of `insert-before-markers'.
16838 (comint-output-filter): Use `insert' instead of
16839 `insert-before-markers'. Extend comint-last-output-overlay when
16840 necessary since we can't rely on insert-before-markers to do it.
16841 * gud.el (gud-filter): Use `with-current-buffer' instead of
16842 save-excursion when inserting the output, so that point gets
16843 updated correctly; the old method relied on a rather dodgy
16844 side-effect of comint-output-filter to avoid the effect of
16845 save-excursion.
16846
16847 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
16848
16849 * files.el (recover-file): Call insert-directory instead of
16850 invoking `ls' directly.
16851
16852 2000-08-10 Miles Bader <miles@gnu.org>
16853
16854 * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
16855 (comint-last-prompt-overlay): New variables.
16856 (comint-output-filter): Implement prompt highlighting.
16857 (comint-snapshot-last-prompt): New function.
16858 (comint-send-input): Snapshot the last prompt.
16859 Use comint-highlight-input-face.
16860 (comint-highlight-input-face): Renamed from `comint-highlight-face'.
16861 Use defface instead of defcustom.
16862 (send-invisible, comint-send-eof): Snapshot the last prompt.
16863 (comint-delchar-or-maybe-eof): Use comint-send-eof.
16864 (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
16865
16866 2000-08-09 Stefan Monnier <monnier@cs.yale.edu>
16867
16868 * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
16869 (regexp-opt-group): Use a list of chars for `letters'.
16870 (regexp-opt-charset): `chars' is now a list of chars.
16871 Use a char-table rather than a vector so it works for multibyte chars.
16872
16873 * pcvs.el (cvs-menu): Don't move point. Use popup-menu.
16874 Set cvs-minor-current-files to the selected fileinfo.
16875 (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
16876 (cvs-mode-insert): Manually macroexpand `ignore-errors'.
16877
16878 2000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
16879
16880 * files.el (insert-directory): Don't call access-file on
16881 directories on DOS and Windows.
16882
16883 2000-08-09 Kenichi Handa <handa@etl.go.jp>
16884
16885 * international/ccl.el (ccl-embed-data): Make ccl-program-vector
16886 longer if necessary.
16887 (ccl-embed-code): Call ccl-embed-data to store CODE in
16888 ccl-program-vector.
16889
16890 2000-08-09 Miles Bader <miles@gnu.org>
16891
16892 * comint.el (comint-output-filter): Properly handle the case where
16893 the text surrounded by comint-last-output-overlay was deleted.
16894
16895 2000-08-08 Gerd Moellmann <gerd@gnu.org>
16896
16897 * info.el (Info-insert-dir): Use Info-additional-directory-list if
16898 non-nil.
16899 (Info-file-list-for-emacs): Remove "info" from the list because
16900 that leads to trying to use the documentation from file `info'
16901 in various situations where it isn't appropriate, for instance
16902 C-h C-k C-h i.
16903
16904 * ffap.el (ffap-read-file-or-url-internal): Handle case that
16905 DIR and/or STRING are nil.
16906
16907 * progmodes/compile.el (compilation-setup): Make variable
16908 compilation-error-screen-columns buffer-local, as some comment
16909 in the code suggests it should be.
16910
16911 * files.el (auto-mode-interpreter-regexp): New variable.
16912 (set-auto-mode): Use it.
16913
16914 * indent.el (indent-for-tab-command): Doc fix.
16915
16916 * mouse-sel.el (mouse-sel-mode): Doc fix.
16917
16918 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
16919 labels.
16920
16921 * help.el (print-help-return-message): When
16922 display-buffer-reuse-frames is set, let the help window been quit,
16923 instead of deleting it, which might delete a reused frame.
16924
16925 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
16926
16927 * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
16928 rename a directory to a name that differs only by its letter case.
16929
16930 2000-08-08 Kenichi Handa <handa@etl.go.jp>
16931
16932 * international/quail.el (quail-define-rules): Handle Quail decode
16933 map correctly. Add code for supporting annotations.
16934 (quail-install-decode-map): New function.
16935 (quail-defrule-internal): New optional arguments decode-map and
16936 props.
16937 (quail-advice): New function.
16938
16939 2000-08-07 Sam Steingold <sds@gnu.org>
16940
16941 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
16942 `defconst', `define-condition', `with-slots'.
16943 * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
16944
16945 2000-08-03 Miles Bader <miles@gnu.org>
16946
16947 * comint.el (comint-use-prompt-regexp-instead-of-fields):
16948 New variable.
16949 (comint-prompt-regexp, comint-get-old-input): Document dependence on
16950 comint-use-prompt-regexp-instead-of-fields.
16951 (comint-send-input): Add `input' field property to stuff we send to
16952 the process, if comint-use-prompt-regexp-instead-of-fields is nil.
16953 (comint-output-filter): Add `output' field property to process
16954 output, if comint-use-prompt-regexp-instead-of-fields is nil.
16955 (comint-replace-by-expanded-history)
16956 (comint-get-old-input-default, comint-show-output)
16957 (comint-backward-matching-input, comint-forward-matching-input)
16958 (comint-next-prompt, comint-previous-prompt): Use field
16959 properties if comint-use-prompt-regexp-instead-of-fields is nil.
16960 (comint-line-beginning-position): New function.
16961 (comint-bol): Use comint-line-beginning-position. Make ARG optional.
16962 (comint-replace-by-expanded-history-before-point): Use
16963 comint-line-beginning-position and line-end-position.
16964 (comint-last-output-overlay): New variable.
16965 (comint-mode): Make `comint-last-output-overlay' buffer-local.
16966
16967 * shell.el (shell-prompt-pattern): Doc change.
16968 (shell-backward-command): Use line-beginning-position.
16969
16970 * gud.el (gud-gdb-complete-command): Use
16971 comint-line-beginning-position.
16972
16973 * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
16974 comint-bol doesn't actually go to the beginning of the line.
16975
16976 * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
16977 if comint-use-prompt-regexp-instead-of-fields is non-nil.
16978 (try-expand-line-all-buffers): Likewise.
16979
16980 * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
16981 explicitly matching comint-prompt-regexp.
16982 (sql-copy-column): Use comint-line-beginning-position instead of
16983 explicitly matching comint-prompt-regexp.
16984
16985 * progmodes/octave-inf.el (inferior-octave-complete): Use
16986 comint-line-beginning-position.
16987
16988 * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
16989
16990 * progmodes/idlw-shell.el (idlwave-shell-send-command): When
16991 looking for a prompt, use `forward-line 0' instead of
16992 `beginning-of-line', to avoid getting caught by an input field.
16993
16994 2000-08-07 Gerd Moellmann <gerd@gnu.org>
16995
16996 * files.el (shell-quote-wildcard-pattern): Make sure to return
16997 PATTERN, in the Unix case.
16998
16999 2000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
17000
17001 * play/zone.el (zone): Discard any pending input before running
17002 the randomly-chosen pgm.
17003
17004 2000-08-07 Kenichi Handa <handa@etl.go.jp>
17005
17006 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
17007 checking the existence of any multibyte characters.
17008
17009 2000-08-06 Gerd Moellmann <gerd@gnu.org>
17010
17011 * help.el (describe-mode): Test minor-mode symbol for being
17012 bound before testing its value for being nil.
17013
17014 * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
17015 `first', `second', and `third'.
17016
17017 * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
17018 (second): Make it an alias for `cadr'.
17019
17020 2000-08-06 Eli Zaretskii <eliz@is.elta.co.il>
17021
17022 * bs.el (bs-apply-sort-faces): Don't use window-system, since all
17023 types of display support faces now.
17024
17025 2000-08-05 Gerd Moellmann <gerd@gnu.org>
17026
17027 * pcvs.el (require): Require `cl' during compilation, only.
17028
17029 * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
17030 (toplevel): Remove `remq' and `remove' from autoloads.
17031 (cl-fake-autoloads): New variable. If set, arrange for an error
17032 when CL functions etc. are autoloaded.
17033
17034 2000-08-04 Eli Zaretskii <eliz@is.elta.co.il>
17035
17036 * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
17037
17038 * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
17039 popped up, but the user clicks outside the menu, return an empty
17040 regexp (that causes unhighlight-regexp to have no effect).
17041
17042 * menu-bar.el (menu-bar-games-menu): Add Zone.
17043
17044 * hi-lock.el (toplevel): Require font-lock.
17045
17046 2000-08-03 Vinicius Jose Latorre <vinicius@cpqd.com.br>
17047
17048 * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward.
17049 (ebnf-8-bit-chars): New var for bug fix.
17050 (ebnf-string): Bug fix.
17051
17052 2000-08-03 Sam Steingold <sds@gnu.org>
17053
17054 * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
17055 instead of `buffer-string'.
17056 (require 'cl): Always, not just when compiling.
17057 `ignore-errors' in `interactive', `list*', `defun*' &c make this
17058 necessary.
17059
17060 2000-08-03 Eli Zaretskii <eliz@is.elta.co.il>
17061
17062 * international/mule-cmds.el (select-safe-coding-system): Make
17063 the message text about selecting a safe coding system more clear.
17064
17065 2000-08-02 Gerd Moellmann <gerd@gnu.org>
17066
17067 * hi-lock.el: New file.
17068
17069 * play/zone.el: New file.
17070
17071 * replace.el (occur): Set tab-width in the *Occur* buffer to the
17072 value of tab-width in the original buffer. Choose a line number
17073 format that's a multiple of the original buffer's tab width, so
17074 that lines appear right.
17075
17076 * textmodes/ispell.el (ispell): New function, replacing an alias.
17077 Spell-check active region if in transient-mark-mode and mark
17078 is active; otherwise spell-check buffer.
17079
17080 2000-08-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
17081
17082 * ps-mule.el: Fix a customization problem on
17083 ps-mule-font-info-database-default.
17084
17085 2000-08-02 Eli Zaretskii <eliz@is.elta.co.il>
17086
17087 * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
17088 display-mouse-p instead of window-system.
17089 (ebrowse-member-mode-map): Ditto.
17090
17091 2000-08-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
17092
17093 * progmodes/ebnf2ps.el: Update ps-print functions call.
17094 Indentation fix. Doc fix.
17095 (ebnf-version): New version number (3.2).
17096 (ebnf-format-color, ebnf-begin-job): Code fix.
17097
17098 2000-08-01 Eli Zaretskii <eliz@is.elta.co.il>
17099
17100 * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
17101 font lock support on window-system.
17102 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
17103
17104 * textmodes/ispell.el (ispell-highlight-spelling-error): Use
17105 display-color-p, if fboundp, instead of window-system.
17106
17107 2000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
17108
17109 * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
17110 instead of window-system.
17111
17112 * wid-edit.el (widget-choose): Use display-mouse-p instead of
17113 window-system.
17114 (widget-choice-mouse-down-action): Use display-popup-menus-p
17115 instead of window-system.
17116
17117 * strokes.el (strokes-file): Run the file name through
17118 convert-standard-filename.
17119 (strokes-mode): Call display-mouse-p instead of looking at
17120 window-system. Change the error message accordingly.
17121
17122 * progmodes/cpp.el (toplevel): Support faces on tty's.
17123
17124 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
17125 (lm-plot-square, lm-init-display): Don't use window-system.
17126
17127 * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
17128 (gomoku-plot-square, gomoku-init-display): Don't use window-system.
17129
17130 * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
17131 instead of looking at window-system.
17132
17133 2000-07-30 Gerd Moellmann <gerd@gnu.org>
17134
17135 * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
17136 of testing if iswitchb-prepost-hooks is bound, because the
17137 latter will always be true when invoking a recursive minibuffer
17138 from an active Iswitchb buffer.
17139
17140 2000-07-30 Eli Zaretskii <eliz@is.elta.co.il>
17141
17142 * files.el (shell-quote-wildcard-pattern): New function.
17143 (insert-directory): Call it. Only prepend "\" to command on Unix
17144 and GNU/Linux systems.
17145
17146 2000-07-30 Gerd Moellmann <gerd@gnu.org>
17147
17148 * eshell/esh-groups.el: Change custom :link file names
17149 from `eshell.info' to `eshell'.
17150
17151 2000-07-30 Francis Wright <fjw@maths.qmw.ac.uk>
17152
17153 * dired.el (dired-build-subdir-alist): Expand subdirectory names
17154 correctly in recursive ange-ftp listings.
17155
17156 2000-07-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
17157
17158 * ps-print.el: Fix bug 1: if ps-font-size-internal,
17159 ps-header-font-size-internal and
17160 ps-header-title-font-size-internal variables are not set,
17161 ps-nb-pages and ps-line-lengths-internal crashes. Fix bug 2: if
17162 face text property is (foreground-color . COLOR) or
17163 `(background-color . COLOR)', ps-print crashes. Doc fix.
17164 (ps-print-version): New version number (5.2.4).
17165 (ps-plot-region): Code fix.
17166 (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
17167 (ps-face-attribute-list, ps-face-attributes, ps-face-background):
17168 Bug fix 2.
17169
17170 2000-07-30 Milan Zamazal <pdm@freesoft.cz>
17171
17172 * glasses.el (glasses-make-readable): Fix uncapitalization of
17173 identifiers like `myXMLDocument'.
17174
17175 2000-07-28 Karl Fogel <kfogel@red-bean.com>
17176
17177 * mail/mail-hist.el (mail-hist-previous-input)
17178 (mail-hist-next-input): Do the obvious code factorization.
17179 (mail-hist-retrieve-and-insert): New func, contains common
17180 code of above two.
17181 If inserting a message body, leave point at top.
17182
17183 2000-07-28 Sam Steingold <sds@gnu.org>
17184
17185 * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
17186 Use `<=', not `<' to compare times!
17187 (ange-ftp-ls): Remove.
17188
17189 2000-07-27 Gerd Moellmann <gerd@gnu.org>
17190
17191 * play/cookie1.el: Add explanation of how to make cookie.el
17192 compatible with strfile(1) to comment.
17193
17194 * subr.el (remove, remq): New functions.
17195
17196 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
17197 escape `*' in regexps.
17198 (midnight-find): Reverse order of arguments in the funcall of
17199 TEST.
17200
17201 * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
17202 and `.class'.
17203
17204 * play/meese.el: Add Commentary section.
17205
17206 2000-07-27 Alex Schroeder <alex@gnu.org>
17207
17208 * sql.el (sql-ms): Added autoload cookie.
17209 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
17210 (sql-oracle): Ditto.
17211 (sql-help): Doc change.
17212
17213 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
17214 types and exceptions.
17215
17216 2000-07-27 Alex Schroeder <alex@gnu.org>
17217
17218 * sql.el (sql-placeholder-history): New variable.
17219 (sql-query-placeholders-and-send): New function that will query
17220 the user and replace placeholders with user input.
17221 (sql-oracle): If running on NT, set comint-input-sender to
17222 sql-query-placeholders-and-send.
17223
17224 (sql-stop): If in the SQLi buffer, insert stop notification, else
17225 present it as a message.
17226
17227 2000-07-27 Alex Schroeder <alex@gnu.org>
17228
17229 * sql.el (sql-input-ring-separator): Doc change.
17230 (sql-input-ring-file-name): Doc change.
17231 (sql-interactive-mode): Use `sql-input-ring-separator' and
17232 `sql-input-ring-file-name' to set the comint-mode equivalents
17233 without making them local variables.
17234 (sql-stop): Don't bind `sql-input-ring-separator' and
17235 `sql-input-ring-file-name' dynamically to their comint-mode
17236 equivalents.
17237
17238 2000-07-27 Kenichi Handa <handa@etl.go.jp>
17239
17240 * international/mule.el (register-char-codings): New function.
17241 (make-coding-system): Handle `safe-chars' specification in the arg
17242 PROPERTY.
17243
17244 * international/mule-cmds.el
17245 (find-coding-systems-region-subset-p): This function deleted.
17246 (sort-coding-systems-predicate): New variable.
17247 (sort-coding-systems): New function.
17248 (find-coding-systems-region): Use
17249 find-coding-systems-region-internal.
17250 (find-coding-systems-string): Use find-coding-systems-region.
17251 (find-coding-systems-for-charsets): Check
17252 char-coding-system-table.
17253 (select-safe-coding-system-accept-default-p): New variable.
17254 (select-safe-coding-system): Mostly rewritten. New argument
17255 ACCEPT-DEFAULT-P.
17256 (select-message-coding-system): Call select-safe-coding-system
17257 with ACCEPT-DEFAULT-P arg.
17258 (reset-language-environment): Reset default-sendmail-coding-system
17259 to the default value iso-latin-1.
17260 (set-language-environment): Don't set the obsolete variable
17261 charset-origin-alist.
17262
17263 * international/codepage.el (cp-coding-system-for-codepage-1):
17264 Give `safe-chars' property to make-coding-system.
17265
17266 * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
17267 calling select-message-coding-system twice.
17268
17269 * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
17270 instead of `safe-charsets'.
17271 (cyrillic-alternativnyj): Likewise.
17272 (ccl-encode-alternativnyj): Don't check the charset
17273 cyrillic-iso8859-5.
17274
17275 2000-07-27 Kenichi Handa <handa@etl.go.jp>
17276
17277 * composite.el (compose-chars-after): Preserve match data.
17278
17279 2000-07-26 Sam Steingold <sds@gnu.org>
17280
17281 * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
17282 (ange-ftp-real-file-newer-than-file-p): New function.
17283 (ange-ftp-verify-visited-file-modtime): Use `float-time'.
17284 (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
17285
17286 * tooltip.el (tooltip-float-time): Removed (use `float-time').
17287 * midnight.el (midnight-float-time): Ditto.
17288
17289 2000-07-26 Andreas Schwab <schwab@suse.de>
17290
17291 * files.el (normal-backup-enable-predicate): Correct
17292 interpretation of the return value of compare-strings.
17293
17294 2000-07-26 Gerd Moellmann <gerd@gnu.org>
17295
17296 * isearch.el (isearch-resume): New function.
17297 (isearch-done): Add something to command-history to resume
17298 the search.
17299 (isearch-yank-line, isearch-yank-word): Use
17300 buffer-substring-no-properties instead of buffer-substring.
17301
17302 * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
17303 of flyspell-mouse-map.
17304
17305 * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
17306 duplicate definition.
17307 (makefile-mode): Remove duplicate setting of local-abbrev-table.
17308
17309 * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
17310 (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
17311
17312 2000-07-25 Sam Steingold <sds@gnu.org>
17313
17314 * net/ange-ftp.el: Get modtime over the net.
17315 (ange-ftp-file-modtime): New function.
17316 (ange-ftp-write-region, ange-ftp-insert-file-contents)
17317 (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
17318 Use it.
17319 (ange-ftp-dot-to-slash): New function.
17320 (ange-ftp-fix-name-for-vms): Use it.
17321
17322 * midnight.el (midnight-buffer-display-time): Use
17323 `with-current-buffer'.
17324
17325 2000-07-25 Gerd Moellmann <gerd@gnu.org>
17326
17327 * find-dired.el: Update copyright notice.
17328 (find-dired): Offer to kill a running `find'.
17329
17330 * enriched.el (enriched-face-ans): For a `foreground-color'
17331 property, return '(("x-color" COLOR))' so that COLOR will be
17332 output as a parameter of the x-color annotation. Likewise for the
17333 `background-color' property. In the case of normal face
17334 properties, don't return annotations for unspecified foreground
17335 and background face attributes.
17336
17337 2000-07-25 Kenichi Handa <handa@etl.go.jp>
17338
17339 * language/japan-util.el (japanese-katakana-region): Fix handling
17340 HANKAKU argument.
17341
17342 2000-07-25 Miles Bader <miles@gnu.org>
17343
17344 * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
17345 constrain-to-field. Pass nil ESCAPE-FROM-EDGE argument to
17346 constrain-to-field.
17347
17348 2000-07-24 Andrew Innes <andrewi@gnu.org>
17349
17350 * timer.el (timer-activate-when-idle): Add optional parameter
17351 DONT-WAIT. Update docstring.
17352 (run-with-idle-timer): Specify extra parameter to
17353 timer-activate-when-idle, so that timer will be activated
17354 immediately if Emacs is already idle.
17355
17356 * w32-fns.el (w32-using-nt): Fix docstring.
17357
17358 2000-07-24 Dave Love <fx@gnu.org>
17359
17360 * mouse.el (popup-menu): Set last-command-event.
17361 (mouse-major-mode-menu-prefix): Declare.
17362
17363 2000-07-24 Gerd Moellmann <gerd@gnu.org>
17364
17365 * textmodes/flyspell.el: Update to author's version 1.5d.
17366
17367 * progmodes/hideshow.el: Update copyright notice.
17368
17369 * vcursor.el: Set maintainer to FSF, since author cannot
17370 be reached.
17371
17372 2000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
17373
17374 * info.el (Info-goto-emacs-key-command-node): Leave a space after
17375 the prompt.
17376
17377 * mouse.el (popup-menu): Run the keymap through indirect-function,
17378 in case it was defined with define-prefix-key. If the menu is a
17379 list of keymaps, look up the binding of user's choice in each one
17380 of the keymaps.
17381 (mouse-popup-menubar): If the global and local menu-bar keymaps
17382 don't have a prompt string, create one and insert it into the
17383 keymap. Don't barf if current-local-map returns nil.
17384
17385 2000-07-24 Francis Wright <fjw@maths.qmw.ac.uk>
17386
17387 * dired.el (dired-sort-R-check): Added to allow recursive listing
17388 to be undone.
17389 (dired-sort-other): Use it.
17390
17391 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17392
17393 * Release of cc-mode 5.27
17394
17395 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17396
17397 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
17398 c-beginning-of-statement-1 that caused a bad case of recursion
17399 which could consume a lot of CPU in large classes in languages
17400 that have in-expression classes (i.e. Java and Pike).
17401
17402 * cc-engine.el (c-guess-basic-syntax): Check for in-expression
17403 statements before top level constructs (i.e. case 6 is moved
17404 before case 5 and is now case 4) to catch in-expression
17405 classes in top level expressions correctly.
17406
17407 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17408
17409 * cc-engine.el (c-guess-basic-syntax): Less naive handling of
17410 objc-method-intro. Case 4 removed and case 5I added.
17411
17412 * cc-langs.el (c-append-paragraph-start): New variable used by
17413 c-common-init to get paragraph-start correct.
17414 * cc-langs.el (c-common-init): Use c-append-paragraph-start to
17415 initialize paragraph-start to make it correct both with and
17416 without the javadoc special case.
17417
17418 * cc-mode.el (java-mode): Use c-append-paragraph-start to
17419 initialize paragraph-start for javadoc markup.
17420
17421 * cc-vars.el (c-style-variables-are-local-p): Incompatible
17422 change by defaulting this to t. It's motivated by the
17423 confusing behavior that otherwise arise from the style system
17424 when editing both java and non-java files at the same time
17425 (see the comments about style setting in c-common-init).
17426
17427 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17428
17429 * cc-cmds.el (c-indent-new-comment-line): Added a kludge
17430 similar to the one in c-fill-paragraph to check the fill
17431 prefix from the adaptive fill function for sanity.
17432
17433 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17434
17435 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
17436 defun block.
17437
17438 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17439
17440 * cc-align.el (c-lineup-multi-inher): Handle lines with
17441 leading comma nicely. Extended to handle member initializers
17442 too.
17443
17444 * cc-engine.el: (c-beginning-of-inheritance-list,
17445 c-guess-basic-syntax): Fixed recognition of inheritance lists
17446 when the lines begins with a comma.
17447
17448 * cc-vars.el (c-offsets-alist): Changed default for
17449 member-init-cont to c-lineup-multi-inher since it now handles
17450 member initializers and indents better for leading commas.
17451
17452 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17453
17454 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
17455 handling that caused class open lines to be recognized as
17456 statement-conts in some cases.
17457
17458 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
17459 guessed by the adaptive fill function unless point is on the
17460 first line of a block comment.
17461
17462 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
17463 when the buffer ends with a macro continuation char.
17464
17465 * cc-engine.el (c-guess-basic-syntax): Added support for
17466 function definitions as statements in Pike. The first
17467 statement in a lambda block is now labeled defun-block-intro
17468 instead of statement-block-intro.
17469
17470 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
17471 so that the class surrounding point is selected, not the one
17472 innermost in the state.
17473
17474 * cc-engine.el (c-guess-basic-syntax): Fixed bug in
17475 recognition of switch labels having hanging multiline
17476 statements.
17477
17478 * cc-engine.el (c-beginning-of-member-init-list): Broke out
17479 some code in c-guess-basic-syntax to a separate function.
17480 * cc-engine.el (c-just-after-func-arglist-p): Fixed
17481 recognition of member inits with multiple line arglists.
17482 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
17483 member-init-cont when the commas are in funny places.
17484
17485 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17486
17487 * cc-defs.el (c-auto-newline): Removed this macro since it's
17488 not used anymore.
17489
17490 * cc-engine.el (c-looking-at-bos): New helper function.
17491 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
17492 inexpr and toplevel classes apart in Pike.
17493
17494 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
17495 of case 9A.
17496
17497 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
17498 constant, since "class" can introduce an in-expression class
17499 in Pike nowadays.
17500
17501 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17502
17503 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
17504 indentation on cpp-macro lines.
17505
17506 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
17507 a syntax modifier like comment-intro, to make it possible to
17508 get syntactic indentation for preprocessor directives. It's
17509 incompatible wrt to lineup functions on cpp-macro, but it has
17510 no observable effect in the 99.9% common case where cpp-macro
17511 is set to -1000.
17512
17513 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17514
17515 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
17516 member-init-cont when the preceding arglist is several lines.
17517
17518 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17519
17520 * cc-styles.el (c-style-alist): The basic offset for the BSD
17521 style corrected to 8.
17522
17523 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17524
17525 * cc-styles.el (c-style-alist): Adjusted the indentation of
17526 brace list openers in the gnu style.
17527
17528 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17529
17530 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
17531
17532 * cc-cmds.el (c-electric-brace, c-electric-slash,
17533 c-electric-star, c-electric-semi&comma, c-electric-colon,
17534 c-electric-lt-gt, c-electric-paren): Don't reindent old lines
17535 when c-syntactic-indentation is nil.
17536
17537 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
17538 we were left at comments preceding the first statement when
17539 reaching the beginning of the buffer.
17540
17541 * cc-vars.el (c-syntactic-indentation): New variable to turn
17542 off all syntactic indentation.
17543
17544 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17545
17546 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
17547 between the text and the block comment ender when it hangs,
17548 depending on how many there are before the fill.
17549
17550 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17551
17552 * cc-engine.el (c-beginning-of-closest-statement): New helper
17553 function to go back to the closest preceding statement start,
17554 which could be inside a conditional statement.
17555 * cc-engine.el (c-guess-basic-syntax): Use
17556 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
17557
17558 * cc-engine.el (c-guess-basic-syntax): Better handling of
17559 arglist-intro, arglist-cont-nonempty and arglist-close when
17560 the arglist is nested inside parens. Cases 7A, 7C and 7F
17561 changed.
17562
17563 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
17564 up-to-date with javadoc 1.2.
17565
17566 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17567
17568 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
17569 multiline Pike type decls.
17570
17571 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17572
17573 * cc-cmds.el (c-indent-new-comment-line): Always break
17574 multiline comments in multiline mode, regardless of
17575 comment-multi-line.
17576
17577 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17578
17579 * cc-engine.el (c-guess-basic-syntax): Fixed bug with
17580 fully::qualified::names in C++ member init lists. Preamble in
17581 case 5D changed.
17582
17583 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17584
17585 * cc-langs.el (c-common-init): Handling of obsolete variables
17586 moved to c-initialize-cc-mode. More compatible style override
17587 when using global style variables.
17588 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
17589 variables moved here.
17590
17591 * cc-styles.el (c-make-styles-buffer-local): Flag style
17592 variable localness in c-style-variables-are-local-p to make
17593 the compatibility measure in c-common-init work well.
17594
17595 * cc-styles.el (c-set-style-1): c-special-indent-hook can no
17596 longer contain set-from-style.
17597 * cc-styles.el (c-initialize-builtin-style): Don't check for
17598 set-from-style on c-special-indent-hook.
17599 * cc-styles.el (c-copy-tree): Obsolete. The standard function
17600 copy-alist is sufficient now.
17601
17602 * cc-styles.el (c-set-style, c-set-style-1,
17603 c-get-style-variables): Fixes to variable initialization so
17604 that duplicate entries in styles have the same effect
17605 regardless of DONT-OVERRIDE.
17606
17607 * cc-styles.el (c-set-style-2): Fixed bug where the
17608 initialization of inheriting styles failed when the
17609 dont-override flag is set.
17610
17611 * cc-vars.el (c-special-indent-hook): Don't use set-from-style
17612 on this.
17613
17614 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17615
17616 * cc-defs.el (c-forward-comment): Removed the workaround
17617 introduced in 5.38 since it had worse side-effects. If a line
17618 contains the string "//\"", it regarded the // as a comment
17619 start since the \ temporarily doesn't have escape syntax.
17620
17621 2000-07-17 Emmanuel Briot <briot@act-europe.fr>
17622
17623 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
17624 ada-xref.el before ada-prj.el, so that the Project menu is created
17625 when ada-prj tries to add to it.
17626 (ada-activate-keys-for-case): Suppress the characters that are not
17627 part of the Ada syntax. Better compatibility with else-mode
17628 (ada-adjust-case-interactive): When auto-casing is not active,
17629 correctly insert newlines (used to insert only ^M). Prevent the
17630 syntax table from being changed in case of an error
17631 (or '_' becomes part of a word and some commands are confused).
17632 Do nothing if ada-auto-case is nil.
17633 (ada-after-keyword-p): Ignore keywords that are also attributes
17634 (ada-batch-reformat): Update usage comment
17635 (ada-call-from-contextual-menu): New function
17636 (ada-case-read-exceptions): Reinitialize the casing exception list
17637 first to nil first, so that the casing exception file can be
17638 shared.
17639 (ada-check-defun-name): Handles "configure" keyword for gnatdist
17640 files.
17641 (ada-compile-goto-error): Fix regexp used to detect a file:line
17642 anywhere in the error message
17643 (ada-contextual-menu-last-point): New variable
17644 (ada-create-keymap): If the variable delete-key-deletes-forward is
17645 t on XEmacs, it means that DEL should delete one character
17646 forward.
17647 (ada-create-menu): Use :included instead of :visible for XEmacs.
17648 New submenu "Options".
17649 (ada-end-stmt-re): Correctly indent "select ... then abort"
17650 statements.
17651 (ada-fill-comment-paragraph): Correctly delete all leading '--'
17652 even if they don't match ada-fill-comment-prefix Fix handling of
17653 paragraphs on the first or last line of a file.
17654 (ada-format-paramlist): Fix handling of default parameter values.
17655 (ada-get-body-name): New function.
17656 (ada-get-current-indent): Optimized by searchling directly for an
17657 existing generic part or a statement outside of it. Handle
17658 ada-indent-align-comments when indenting comments Replaced some
17659 regexps by testing directly the next character. This results in a
17660 huge speedup on some files. New indentation scheme for renames
17661 statements. Stop looking for the 'while' or 'for' associated with
17662 a 'loop' at the first semicolon encountered. A "return" can also
17663 match an anonymous access subprogram declaration.
17664 (ada-get-indent-noindent): Ignore strings and comments when
17665 looking for the keywords "record" and "private".
17666 (ada-goto-matching-decl-start): When matching "if", make sure we
17667 are not in fact seeing "end if". Ignore "when" statements except
17668 when initial keyword was "begin". Fix handling of nested
17669 procedures. Add a recursive call to this function to skip over
17670 other 'end' statmts. Fix indentation for "when .. => begin"
17671 (ada-in-open-paren-p): Fix indentation for complex boolean
17672 expressions, where 'and then', 'or else' and parenthesis
17673 statements are mixed up.
17674 (ada-in-paramlist-p): Skip comments while searching for the
17675 beginning Fix handling of operator declarations.
17676 (ada-indent-align-comments): New variable
17677 (ada-indent-current): Change the syntax table only in the
17678 protected section, so that we are sure it is restored correctly.
17679 (ada-indent-on-previous-lines): Use ada-use-indent and
17680 ada-with-indent Correctly indent "select ... then"
17681 (ada-indent-region): Slight speedup.
17682 (ada-indent-renames): New variable.
17683 (ada-last-which-function-subprog, ada-last-which-function-line):
17684 New variables
17685 (ada-looking-at-semi-private): Correctly indent the 'private'
17686 keyword when it is the first word in a package declaration.
17687 (ada-loose-case-word): Stop searching if at the end of the buffer.
17688 (ada-loose-case-word, ada-capitalize-word): Recase the whole word
17689 even if point is not initially at the end of the word.
17690 (ada-matching-decl-start-re): Add "when".
17691 (ada-mode): Add support for abbrev-mode, outline-mode and
17692 which-func-mode Override the old find-file.el entry in
17693 ff-special-constructs since it is using the obsolete
17694 ada-spec-suffix variable
17695 (ada-no-auto-case): New function
17696 (ada-scan-paramlist): When parsing the argument type, accept
17697 spaces (as in "X 'Class", generated by Rational Rose).
17698 (ada-other-file-name): No longer loads the other file.
17699 (ada-popup-menu): Save and restore the current buffer and cursor
17700 position before and after displaying the menu.
17701 (ada-search-ignore-complex-boolean): New function.
17702 (ada-uncomment-region): Emacs21 already knows how to delete
17703 comments not starting in the first column.
17704 (ada-use-indent): New variable
17705 (ada-which-function): New function.
17706 (ada-with-indent): New variable
17707 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
17708 can be batch-compiled from the command line.
17709
17710 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
17711 Add to the menu when the file is loaded, not in ada-mode-hook.
17712 Add -toolbar to the default ddd command Switches moved from
17713 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
17714 ada-prj-default-comp-opt
17715 (ada-add-ada-menu): Remove the map and name parameters Add the Ada
17716 Reference Manual to the menu
17717 (ada-check-current): rewritten as a call to ada-compile-current
17718 (ada-compile): Removed.
17719 (ada-compile-application, ada-compile-current, ada-check-current):
17720 Set the compilation-search-path so that compile.el automatically
17721 finds the sources in src_dir. Automatic scrollong of the
17722 compilation buffer. C-uC-cC-c asks for confirmation before
17723 compiling
17724 (ada-compile-current): New parameter, prj-field
17725 (ada-complete-identifier): Load the .ali file before doing
17726 processing
17727 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
17728 conform to gnatmake's behavior.
17729 (ada-find-file-in-dir): New function
17730 (ada-find-references): Set the environment variables for gnatfind
17731 (ada-find-src-file-in-dir): New function.
17732 (ada-first-non-nil): Removed
17733 (ada-gdb-application): Add support for jdb, the java debugger.
17734 (ada-get-ada-file-name): Load the original-file first if not done
17735 yet.
17736 (ada-get-all-references): Handles the new ali syntax (parent types
17737 are found between <>).
17738 (ada-initialize-runtime-library): New function
17739 (ada-mode-hook): Always load a project file when a file is opened,
17740 so that the casing exceptions are correctly read.
17741 (ada-operator-re): Add all missing operators ("abs", "rem", "**").
17742 (ada-parse-prj-file): Use find-file-noselect instead of find-file
17743 to open the project file, since the latter does not work with
17744 speedbar Get default values before loading the prj file, or the
17745 default executable file name is wrong. Use the absolute value of
17746 src_dir to initialize ada-search-directories and
17747 compilation-search-path,... Add the standard runtime library to
17748 the search path for find-file.
17749 (ada-prj-default-debugger): Was missing an opening '{'
17750 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
17751 variables.
17752 (ada-prj-default-gnatmake-opt): New variable
17753 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
17754 buffers, the project file is the default one Save the windows
17755 configuration before displaying the menu.
17756 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
17757 (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
17758 ...) regexp-quote identifiers names to support operators +,
17759 -,... in regexps.
17760 (ada-remote): New function.
17761 (ada-run-application): Erase the output buffer before starting the
17762 run Support remote execution of the application. Use
17763 call-process, or the arguments are incorrectly parsed
17764 (ada-set-default-project-file): Reread the content of the active
17765 project file, not the one from the current buffer When a project
17766 file is set as the default project, all directories are
17767 automatically associated with it.
17768 (ada-set-environment): New function
17769 (ada-treat-cmd-string): New special variable ${current}
17770 (ada-treat-cmd-string): Revised. The substitution is now done for
17771 any ${...} substring
17772 (ada-xref-current): If no body was found, compiles the spec
17773 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the
17774 compiler to get rid of command line length limitations.
17775 (ada-xref-get-project-field): New function
17776 (ada-xref-project-files): New variable
17777 (ada-xref-runtime-library-specs-path)
17778 (ada-xref-runtime-library-ali-path): New variables
17779 (ada-xref-set-default-prj-values): Default run command now does a
17780 cd to the build directory. New field: main_unit Provide a default
17781 file name even if the current buffer has no prj file.
17782
17783 * ada-prj.el:
17784 Rewritten to show a tabbed-dialog.
17785 (ada-prj-add-ada-menu): Remove the map and name parameters.
17786 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
17787 New function
17788 (ada-prj-load-directory, ada-prj-subdirs-of): New functions
17789 (ada-prj-load-from-file): New function
17790 (ada-prj-save): Always save fields that depend on the current buffer
17791 (ada-prj-show-value): New function
17792
17793 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
17794 Ada mode. This will allow us to display the Ada menu in any buffer
17795 we want (for project items).
17796 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
17797 number of spaces in the header.
17798
17799 2000-07-24 Dave Love <fx@gnu.org>
17800
17801 * ediff-init.el (ediff-region-help-echo): Bind face-help.
17802
17803 2000-07-23 Noah Friedman <friedman@splode.com>
17804
17805 * type-break.el (type-break): perform autosave.
17806 Suggested by Stephen Gildea <gildea@stop.mail-abuse.org>.
17807 (type-break-do-query): Cancel query schedule while performing
17808 actual query, to avoid possibility of a second query being made
17809 while first one is already in progress.
17810 (type-break-time-stamp-format): New variable.
17811 (type-break-time-stamp): New function.
17812 (type-break-time-warning): Use it.
17813 (type-break-keystroke-warning): Use it.
17814 (type-break-noninteractive-query): Use it.
17815
17816 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
17817 cookie.
17818 Use add-minor-mode to set minor-mode-alist, if available.
17819 (eldoc-echo-area-use-multiline-p): New user option.
17820 (eldoc-echo-area-multiline-supported-p): New variable.
17821 (eldoc-docstring-format-sym-doc): Use them.
17822 (eldoc-mode): If not using idle timers, append to local post and
17823 pre command hooks. Suggested by David Byers <davby@ida.liu.se>.
17824 (eldoc-display-message-no-interference-p): Don't interfere with
17825 edebug.
17826 Add autoload cookie for eldoc-mode minor-mode-alist initialization.
17827 (eldoc-function-arglist): New function.
17828 (eldoc-function-argstring): Use it.
17829
17830 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
17831 auto save directory exists before calling directory-files.
17832
17833 2000-07-23 Dave Love <fx@gnu.org>
17834
17835 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
17836 ^o, ^u.
17837
17838 2000-07-21 Dave Love <fx@gnu.org>
17839
17840 * ediff-init.el (ediff-region-help-echo): Modify to use overlay
17841 now passed to the function. It now works properly.
17842
17843 * smerge-mode.el (smerge-mode-menu): Fill it out.
17844
17845 2000-07-20 Gerd Moellmann <gerd@gnu.org>
17846
17847 * info-look.el (info-lookup): If *info* is shown in another frame
17848 on the same display, select that frame, instead of switching to
17849 the Info buffer in another window of the selected frame.
17850
17851 * simple.el (universal-argument-map): Bind numeric keypad keys
17852 kp-0 to kp-9 and kp-subtract.
17853 (digit-argument): Handle these keys.
17854
17855 2000-07-20 Dave Love <fx@gnu.org>
17856
17857 * net/goto-addr.el (goto-address-fontify): Don't bother with
17858 buffer-modified and read-only stuff -- irrelevant with overlays.
17859 Put an extra property on the overlays and use it to clean up in
17860 case goto-address is re-run.
17861
17862 2000-07-19 Richard M. Stallman <rms@gnu.org>
17863
17864 * timer.el (run-with-idle-timer): Doc fix.
17865
17866 * mail/mail-utils.el (mail-strip-quoted-names):
17867 Handle case where <...> appears inside "...".
17868 Use replace-match to edit the string more simply.
17869 (rmail-dont-reply-to): Cope with an unmatched ".
17870
17871 2000-07-19 Dave Love <fx@gnu.org>
17872
17873 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
17874 implementation.
17875
17876 * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
17877 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
17878 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
17879
17880 2000-07-19 Gerd Moellmann <gerd@gnu.org>
17881
17882 * textmodes/refer.el: Correct maintainer's email address.
17883
17884 * progmodes/hideif.el: Correct author's email address.
17885 Fix typo in comment.
17886
17887 * xml.el: New file.
17888
17889 * mail/mailheader.el: Correct author's mail address.
17890
17891 * gnus/parse-time.el: Correct author's mail address.
17892
17893 2000-07-19 Colin Walters <walters@cis.ohio-state.edu>
17894
17895 * comint.el (comint-highlight-input, comint-highlight-face):
17896 New user options.
17897 (comint-input-ring-file-name): Change custom type.
17898 (comint-mode-map): Bind mouse-2.
17899 (comint-insert-clicked-input): New function.
17900 (comint-send-input): Handle input highlighting.
17901
17902 2000-07-18 Stefan Monnier <monnier@cs.yale.edu>
17903
17904 * mouse.el (popup-menu): New function.
17905 (mouse-major-mode-menu): Use it.
17906
17907 2000-07-18 Dave Love <fx@gnu.org>
17908
17909 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
17910 improvements.
17911
17912 2000-07-18 Gerd Moellmann <gerd@gnu.org>
17913
17914 * faces.el (face-font-selection-order)
17915 (face-font-family-alternatives): Add custom type.
17916
17917 2000-07-18 Dave Love <fx@gnu.org>
17918
17919 * cus-edit.el (custom-variable-reset-saved)
17920 (custom-variable-reset-standard): Remove unused bindings.
17921
17922 * rect.el (open-rectangle-line): Remove unused let.
17923
17924 * hl-line.el (hl-line-highlight): Check hl-line-mode.
17925
17926 2000-07-18 Gerd Moellmann <gerd@gnu.org>
17927
17928 * cdl.el: Fix `Maintainer' keyword.
17929
17930 * play/pong.el: Add author's email address.
17931
17932 2000-07-17 Sam Steingold <sds@gnu.org>
17933
17934 * files.el (insert-directory): Call `split-string' instead of
17935 re-implementing it.
17936
17937 2000-07-18 Gerd Moellmann <gerd@gnu.org>
17938
17939 * mail/vms-pmail.el: Change maintainer to FSF.
17940
17941 * net/goto-addr.el: Change maintainer to FSF.
17942
17943 * info.el (Info-title-face-alist): Removed.
17944
17945 2000-07-18 David Ponce <david@dponce.com>
17946
17947 * recentf.el (recentf-open-files): New command that works like
17948 `recentf-open-more-files', but shows the whole list of files (not just
17949 those omitted from the menu). Useful if you don't use a menu-bar!
17950 (recentf-open-more-files) Modified to use `recentf-open-files'.
17951
17952 (recentf-open-files, recentf-open-more-files)
17953 (recentf-edit-list): Dialogs use `recentf-dialog-mode'
17954
17955 (recentf-dialog-mode): New mode for dialogs. You can now just type
17956 "q" to cancel the dialogs.
17957
17958 2000-07-18 David Ponce <david@dponce.com>
17959
17960 * recentf.el: This is a major update of recentf.el. It adds new
17961 features to better organize the recentf menu and "More..." buffer.
17962
17963 Using new provided menu filtering functions you can now organize the
17964 recent files list:
17965
17966 - by major modes
17967 - by directories
17968 - by user defined rules
17969
17970 Finally, with the new `recentf-filter-changer' customizable filter you
17971 can define a ring of filters and dynamically (via the menu) cycle on
17972 each menu organization in the ring (a la msb).
17973
17974 2000-07-18 Eli Zaretskii <eliz@is.elta.co.il>
17975
17976 * eshell/eshell.el (eshell): Replace links to eshell.info with
17977 links to eshell, to avoid problems on systems where the manual is
17978 installed as `eshell'.
17979 * eshell/esh-cmd.el (eshell-cmd): Ditto.
17980 * eshell/em-smart.el (eshell-smart): Ditto.
17981 * eshell/em-banner.el (eshell-banner): Ditto.
17982 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
17983
17984 * eshell/em-unix.el (eshell-shuffle-files): Don't disable
17985 same-file check in the MS-DOS version (it does support inodes).
17986
17987 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
17988
17989 * eshell/eshell.el (eshell-directory-name):
17990 Run default directory name through convert-standard-filename.
17991
17992 2000-07-18 Kenichi Handa <handa@etl.go.jp>
17993
17994 * international/mule-cmds.el (select-safe-coding-system):
17995 Fix typo in the comment.
17996
17997 * language/european.el (compound-text):
17998 Force katakana-jisx0201 to be designated to G1.
17999
18000 * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
18001 Don't translate some national variant characters of latin-jisx0201.
18002 (x-ctext): Force katakana-jisx0201 to be designated to G1.
18003
18004 * international/kkc.el (kkc-after-update-conversion-functions):
18005 New variable.
18006 (kkc-update-conversion): Run functions in it at the tail.
18007
18008 2000-07-16 John Wiegley <johnw@gnu.org>
18009
18010 * lisp/align.el (align-newline-and-indent):
18011 Adding new function. for auto-aligning blocks of code on RET.
18012 (align-region): Fixed badly formatted minibuffer message.
18013
18014 2000-07-17 Kenichi Handa <handa@etl.go.jp>
18015
18016 * international/kkc.el (kkc-show-conversion-list-count): Customize it.
18017 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show
18018 the conversion list at first if appropriate.
18019 (kkc-next): Don't update kkc-next-count here.
18020 (kkc-prev): Don't update kkc-prev-count here.
18021 (kkc-show-conversion-list-update): Fix setting up of conversion
18022 list message.
18023
18024 2000-07-16 Stefan Monnier <monnier@cs.yale.edu>
18025
18026 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
18027
18028 2000-07-16 Dave Love <fx@gnu.org>
18029
18030 * cus-edit.el (custom-buffer-create-internal): Use a help-echo
18031 function to be more specific.
18032
18033 * wid-edit.el (widget-specify-field, widget-specify-button): Allow
18034 non-string help-echo.
18035 (widget-types-convert-widget): Defsubst it.
18036 (widget-echo-help): Try to cope with a help-echo function of two
18037 possible sorts.
18038
18039 2000-07-15 Jason Rumney <jasonr@gnu.org>
18040
18041 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
18042 Declare as obsolete.
18043
18044 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
18045
18046 2000-07-14 Gerd Moellmann <gerd@gnu.org>
18047
18048 * hilit-chg.el: Fix typo.
18049
18050 2000-07-14 Dave Love <fx@gnu.org>
18051
18052 * info.el (Info-mode-menu): Fix use of :help, :enable.
18053
18054 2000-07-14 Stefan Monnier <monnier@cs.yale.edu>
18055
18056 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
18057
18058 2000-07-13 Dave Love <fx@gnu.org>
18059
18060 * emacs-lisp/easymenu.el: Doc fixes.
18061 (easy-menu-remove): Defalias to ignore.
18062
18063 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
18064 Call throw correctly.
18065
18066 2000-07-13 Gerd Moellmann <gerd@gnu.org>
18067
18068 * faces.el (frame-background-mode): Doc fix.
18069
18070 * simple.el (eval-expression-print-length): Change custom type to
18071 allow entering nil as value.
18072
18073 2000-07-13 Dave Love <fx@gnu.org>
18074
18075 * progmodes/fortran.el (fortran-imenu-generic-expression):
18076 Change definition layout.
18077 (fortran-mode-menu): Reinstate customize entries.
18078
18079 * cus-edit.el (custom-group-menu-create, customize-menu-create):
18080 Use :filter, per old XEmacs code.
18081
18082 2000-07-12 Gerd Moellmann <gerd@gnu.org>
18083
18084 * term.el (term-send-raw-meta): Strip modifiers from the keyboard
18085 event when deciding what to send to the terminal.
18086
18087 2000-07-12 Dave Love <fx@gnu.org>
18088
18089 * cus-start.el: Add optional version as 4th element of specs and
18090 use it for several things new in v21. Remove load-path. Fix type
18091 of line-number-display-limit.
18092
18093 2000-07-11 Dave Love <fx@gnu.org>
18094
18095 * progmodes/fortran.el: Don't require easymenu.
18096 Use repeat counts in various regexps.
18097 (fortran-mode-syntax-table): Defvar directly.
18098 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
18099 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
18100 Use defvar, not defconst.
18101 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'.
18102 (fortran-mode): Set fortran-comment-line-start-skip,
18103 fortran-comment-line-start-skip, dabbrev-case-fold-search.
18104 (fortran-comment-indent): Use defsubst.
18105 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
18106 Use fortran-comment-indent, not fortran-comment-indent-function.
18107 (fortran-comment-region, fortran-electric-line-number): Simplify.
18108 (fortran-auto-fill): New function.
18109 (fortran-do-auto-fill): Deleted.
18110 (fortran-find-comment-start-skip):
18111 Check for non-null comment-start-skip.
18112 (fortran-auto-fill-mode, fortran-fill-statement):
18113 Use fortran-auto-fill.
18114 (fortran-fill): Use fortran-auto-fill. Check for null
18115 comment-start-skip. Simplify final clause and use end-of-line finally.
18116
18117 * widget.el (widget-plist-member): New alias.
18118
18119 2000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
18120
18121 * eshell/esh-module.el (toplevel): Reference
18122 byte-compile-current-file only if it is bound.
18123
18124 2000-07-10 Gerd Moellmann <gerd@gnu.org>
18125
18126 * dired.el: Don't require `dired-aux'.
18127
18128 2000-07-10 Miles Bader <miles@lsi.nec.co.jp>
18129
18130 * dired-aux.el (dired-show-file-type): New function.
18131 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
18132 (dired-show-file-type): Add autoload.
18133
18134 2000-07-10 Kenichi Handa <handa@etl.go.jp>
18135
18136 * international/mule-diag.el (describe-font): Adjusted for the
18137 change of fontset-info.
18138 (print-fontset): Likewise.
18139
18140 2000-07-09 Stefan Monnier <monnier@cs.yale.edu>
18141
18142 * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
18143
18144 2000-07-07 Gerd Moellmann <gerd@gnu.org>
18145
18146 * bindings.el: Bind `[delete]' to delete-char.
18147
18148 * dired.el (dired-find-alternate-file): New function.
18149 (dired-mode-map): Bind `a' to dired-find-alternate-file.
18150 (toplevel): Require dired-aux when compiling.
18151 (dired-buffers): Move defvar within file to avoid compiler warning.
18152
18153 * info.el (Info-last-search): Variable removed.
18154 (Info-search-history): New variable.
18155 (Info-search): New Info-search-history.
18156
18157 * battery.el, info-look.el: Change author's mail address.
18158
18159 2000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
18160
18161 * mail/rmail.el (rmail-clear-headers): Don't throw an error
18162 if rmail-ignored-headers is nil.
18163 (rmail-retry-failure): Bind rmail-ignored-headers and
18164 rmail-displayed-headers to nil.
18165
18166 2000-07-06 Gerd Moellmann <gerd@gnu.org>
18167
18168 * lpr.el (lpr-page-header-switches): Add `-h' switch.
18169 (print-region-1): Don't hard code `-h' here.
18170
18171 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
18172
18173 2000-07-01 Francesco Potorti` <pot@gnu.org>
18174
18175 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
18176 exim can use "your message" instead of "the message".
18177
18178 2000-07-06 Stefan Monnier <monnier@cs.yale.edu>
18179
18180 * facemenu.el: Docstrings fixes.
18181 (facemenu-get-face): Don't use internal-find-face.
18182 (facemenu-iterate): Rename arg to match the docstring.
18183
18184 * newcomment.el (uncomment-region): Be more careful when skipping
18185 backwards over `=' not to bump into BOBP.
18186
18187 2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
18188
18189 * ediff-diff.el (ediff-wordify): Use syntax table.
18190 * ediff-init.el (ediff-has-face-support-p): Use
18191 ediff-color-display-p.
18192 (ediff-color-display-p): Use display-color-p, changed to defun
18193 from defsubst.
18194 Got rid of special cases for NeXT and OS/2.
18195 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
18196 face.
18197
18198 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
18199
18200 * emacs-lisp/lucid.el: Require CL.
18201 (copy-tree, remprop): Remove, it's provided by CL.
18202 (map-keymap): Define in terms of cl-map-keymap.
18203 (extent-property, set-extent-end-glyph): New functions.
18204
18205 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
18206
18207 2000-07-05 Gerd Moellmann <gerd@gnu.org>
18208
18209 * Makefile.in (DONTCOMPILE): Add comment that the name may
18210 not be changed without changing the make-dist script.
18211
18212 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
18213 (cl-mapc): Use mapc instead of cl-old-mapc.
18214
18215 2000-07-05 Andrew Innes <andrewi@gnu.org>
18216
18217 * makefile.nt: Add support for `bootstrap' and related targets.
18218
18219 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
18220
18221 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
18222 (easy-menu-do-define): Use `menu-item' format.
18223 Handle case where easy-menu-create-menu returns a symbol.
18224 Manually call the potential top-level filter in the function binding.
18225 (easy-menu-filter-return): New arg NAME.
18226 Convert to a keymap if MENU is an XEmacs menu.
18227 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item.
18228 (easy-menu-converted-items-table, easy-menu-convert-item):
18229 New var and fun to memoize easy-menu-convert-item-1.
18230 (easy-menu-do-add-item): Use it.
18231 (easy-menu-create-menu): Use easy-menu-convert-item.
18232 Wrap easy-menu-filter-return around any :filter specification.
18233 Don't convert the menu if a filter was specified.
18234 Tell easy-menu-make-symbol not to check for MENU being an expression.
18235 (easy-menu-make-symbol): New arg NOEXP.
18236
18237 2000-07-05 Gerd Moellmann <gerd@gnu.org>
18238
18239 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
18240 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
18241 (eval-defun): If called with prefix arg, instrument code for
18242 Edebug.
18243
18244 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
18245 similar to that of eval-defun.
18246
18247 2000-07-04 Dave Love <fx@gnu.org>
18248
18249 * hl-line.el (hl-line-overlay): Make it permanent-local.
18250
18251 * calendar/todo-mode.el: Replaced with a working version, based on
18252 1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
18253
18254 2000-07-03 Miles Bader <miles@lsi.nec.co.jp>
18255
18256 * paths.el (prune-directory-list): New function.
18257 (Info-default-directory-list): Rewritten to more methodically
18258 enumerate a big list of possible info directories (based on the
18259 list used by the standalone info reader).
18260
18261 * info.el (info-initialize): Use prune-directory-list to remove
18262 non-existent directories from Info-directory-list.
18263
18264 * paths.el (Info-default-directory-list): Try a list of possible
18265 info-directories instead of a single one. Add the possible
18266 info directory "/usr/share/info".
18267
18268 * woman.el (woman-man.conf-path): Explicitly include the debian
18269 man-db config file "/etc/manpath.config".
18270 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
18271 are present in `manpath.config'.
18272 (woman-manpath): Include "/usr/share/man".
18273
18274 2000-07-03 Gerd Moellmann <gerd@gnu.org>
18275
18276 * frame.el (blink-cursor-mode): Don't hide cursor initially.
18277
18278 * startup.el (command-line): Initialize blink-cursor based
18279 on window-system.
18280
18281 * frame.el (blink-cursor): Default to nil if not running under
18282 a window-system.
18283
18284 * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
18285 (face-x-resources): Remove duplicate entry for :font.
18286
18287 * textmodes/refer.el (refer-find-entry-internal): Use some-window
18288 instead of cycling through windows with next-window.
18289
18290 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
18291 of cycling through windows with next-window.
18292
18293 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
18294 of cycling through windows with next-window.
18295
18296 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
18297 (edebug-get-displayed-buffer-points): Use walk-windows/some-window
18298 instead of cycling through windows with next-window.
18299
18300 * calendar/appt.el (appt-select-lowest-window): Use walk-windows
18301 instead of cycling through windows with next-window.
18302
18303 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
18304 of cycling through windows with next-window.
18305
18306 * terminal.el (te-process-output): Use walk-windows instead of
18307 cycling through windows with next-window.
18308
18309 * server.el (server-switch-buffer): Use some-window instead of
18310 cycling through windows with next-window.
18311
18312 * window.el (some-window): New function.
18313 (walk-windows): Remove reference to walk-windows-start.
18314
18315 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
18316
18317 2000-07-03 Richard Stallman <rms@gnu.org>
18318
18319 * window.el (walk-windows): Guarantee termination by keeping a list
18320 of all the windows already handled.
18321
18322 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
18323
18324 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
18325 window-system.
18326
18327 * man.el (Man-notify-when-ready): Don't use window-system. If
18328 Man-notify-method is newframe, and the display is not
18329 multi-frame, select the frame created for the man page.
18330 (Man-init-defvars): Doc fix.
18331
18332 2000-06-28 Gerd Moellmann <gerd@gnu.org>
18333
18334 * faces.el (region): Change background color for light background.
18335
18336 * ediff-wind.el (ediff-setup-control-frame): Remove :box
18337 attribute from mode-line face of Ediff control frame.
18338
18339 * replace.el (query-replace-map): Bind `e' like `E'.
18340
18341 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
18342
18343 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
18344 Change name to "Select All".
18345
18346 * dos-fns.el (convert-standard-filename): Fix last change.
18347
18348 2000-06-27 Gerd Moellmann <gerd@gnu.org>
18349
18350 * help.el (describe-variable): Don't insert a second `'s' in front
18351 of the string `value is shown below'. Since the syntax-table is
18352 set to emacs-lisp-mode-syntax-table, forward-sexp skips over
18353 an existing `'s', so that this won't be deleted.
18354
18355 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
18356 * pcmpl-unix.el: New files.
18357
18358 2000-06-26 Stefan Monnier <monnier@cs.yale.edu>
18359
18360 * wid-edit.el (widget-member): Use the new plist-member.
18361
18362 2000-06-26 Gerd Moellmann <gerd@gnu.org>
18363
18364 * replace.el (perform-replace): Undo change of 2000-04-04.
18365 Instead, move backward 1 character at the end of the loop when
18366 necessary.
18367
18368 * faces.el (fringe): Change face for different backgrounds.
18369
18370 * eshell/esh-module.el (toplevel): Load defgroup's differently;
18371 patch from John.
18372
18373 * eshell/*.el: Change spelling of the Free Software Foundation.
18374
18375 * eshell/esh-toggle.el: Removed.
18376
18377 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
18378
18379 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
18380 interactively.
18381
18382 2000-06-26 Alex Schroeder <alex@gnu.org>
18383
18384 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
18385 `define-key'; instead of checking `(emacs-version)' check for
18386 `set-keymap-parent' and `set-keymap-name' directly. Add entries
18387 for `;' and `o' which might be electric.
18388
18389 (sql-electric-stuff): New user option.
18390 (sql-magic-go): New function which uses `sql-electric-stuff'.
18391 (sql-magic-semicolon): New function which uses
18392 `sql-electric-stuff'.
18393
18394 (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
18395 is not fboundp.
18396
18397 (sql-oracle-options): New variable.
18398 (sql-oracle): Use it.
18399
18400 (sql-imenu-generic-expression): Doc change.
18401 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
18402 is used.
18403
18404 (sql-informix): Added command line parameter "-" to force
18405 sql-informix-program to use stdout.
18406
18407 2000-06-25 Eli Zaretskii <eliz@is.elta.co.il>
18408
18409 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
18410 (cp864-decode-table): Doc fix.
18411 (cp720-decode-table): New variable, supports the Arabic OEM
18412 codepage used by Windows.
18413 (cp737-decode-table): New, Greek OEM codepage used by Windows.
18414
18415 2000-06-23 Dave Love <fx@gnu.org>
18416
18417 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
18418 (font-lock-fontify-anchored-keywords): Use
18419 line-beginning-position.
18420 (global-font-lock-mode): Use mapc.
18421
18422 2000-06-23 Stefan Monnier <monnier@cs.yale.edu>
18423
18424 * eshell/esh-module.el: Require CL when compiling.
18425
18426 2000-06-23 Gerd Moellmann <gerd@gnu.org>
18427
18428 * comint.el (comint-substitute-in-file-name): Call replace-match
18429 with second and third arg t.
18430
18431 * cus-edit.el (custom-button-face, custom-button-pressed-face):
18432 Specify foreground color.
18433
18434 * faces.el (tool-bar, mode-line, header-line): Specify foreground
18435 color.
18436
18437 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
18438
18439 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
18440 cddr instead of cdddr.
18441
18442 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
18443 instead of copy-list.
18444
18445 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
18446 of copy-list.
18447
18448 * subdirs.el: Add eshell subdirectory.
18449
18450 * eshell: New subdirectory containing the Eshell package.
18451
18452 * pcomplete.el: New file.
18453
18454 2000-06-23 Paul Eggert <eggert@twinsun.com>
18455
18456 * mail/mailpost.el (post-mail-send-it): Make sure file has
18457 proper permissions from birth.
18458
18459 * files.el (basic-save-buffer-2): When temporarily setting
18460 file modes, set them to current modes plus 0200, not to 0777.
18461
18462 * emerge.el (emerge-make-temp-file): Make sure file has proper
18463 permissions from birth.
18464
18465 2000-06-22 Eli Zaretskii <eliz@is.elta.co.il>
18466
18467 * files.el (make-backup-file-name-1): On DOS/Windows, run the
18468 backup file name through convert-standard-filename.
18469
18470 * dos-fns.el (convert-standard-filename): Convert leading
18471 directories as well. When long file names are supported, convert
18472 characters that are invalid in Windows file names.
18473
18474 2000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
18475
18476 * ps-print.el: Fix bug: if ^L is the very first buffer character,
18477 ps-print crashes. New feature: page selection for printing. Create
18478 raw-text-unix coding system for XEmacs. Doc fix.
18479 (ps-print-version): New version number (5.2.3).
18480 (ps-plot-region): Bug fix.
18481 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
18482 (ps-header-sheet, ps-generate, ps-end-job): Code fix.
18483 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
18484 funs.
18485 (ps-selected-pages, ps-last-selected-pages, ps-first-page)
18486 (ps-last-page): New vars.
18487
18488 2000-06-21 Gerd Moellmann <gerd@gnu.org>
18489
18490 * progmodes/sh-script.el (sh-while-getopts): Fix handling of
18491 empty option string.
18492
18493 2000-06-21 Eli Zaretskii <eliz@is.elta.co.il>
18494
18495 * man.el (man): Doc fix.
18496
18497 2000-06-21 Kenichi Handa <handa@etl.go.jp>
18498
18499 * international/mule-cmds.el (set-language-info-alist): Docstring
18500 fixed.
18501
18502 2000-06-20 Gerd Moellmann <gerd@gnu.org>
18503
18504 * version.el (emacs-version): Use ISO date format.
18505
18506 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
18507 instead of `M-backspace'.
18508
18509 * simple.el (turn-off-auto-fill): New function.
18510
18511 2000-06-20 Stefan Monnier <monnier@cs.yale.edu>
18512
18513 * jit-lock.el (with-buffer-prepared-for-jit-lock):
18514 Renamed from with-buffer-prepared-for-font-lock and use
18515 inhibit-modification-hooks rather than setting *-change-functions.
18516 Update all functions to use the new name.
18517 (jit-lock-first-unfontify-pos): New semantics (and doc).
18518 (jit-lock-mode): Make non-interactive.
18519 Don't automatically turn on font-lock.
18520 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
18521 Always use jit-lock-after-change.
18522 Remove and restore font-lock-after-change-function.
18523 (turn-on-jit-lock, jit-lock-after-fontify-buffer)
18524 (jit-lock-after-unfontify-buffer): Remove.
18525 (jit-lock-stealth-fontify):
18526 Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
18527 (jit-lock-after-change): Set the `fontified' text-prop to nil.
18528
18529 2000-06-20 Sam Steingold <sds@gnu.org>
18530
18531 * emacs-lisp/cl-indent.el (toplevel): Indent
18532 `print-unreadable-object' properly. Untabify.
18533
18534 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
18535
18536 * textmodes/reftex.el (reftex-find-citation-regexp-format):
18537 Support for bibentry.
18538 (reftex-compile-variables): Fixed problem with end of section-re.
18539
18540 * texmodes/reftex-dcr.el (reftex-view-crossref,
18541 reftex-view-crossref-from-bibtex):
18542 Deal with changed `reftex-find-citation-regexp-format'.
18543 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
18544 Replaced `remprop' with `put'.
18545 (reftex-view-crossref, reftex-view-crossref-when-idle):
18546 Support for bibentry.
18547
18548 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
18549 New entry for bibentry package.
18550
18551 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
18552 Regexp also matches "\nobibliography".
18553
18554 * textmodes/reftex-global.el (reftex-renumber-simple-labels):
18555 Call `reftex-ensure-write-access' before doing anything.
18556 (reftex-ensure-write-access): New function.
18557
18558 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
18559
18560 * progmodes/idlwave.el: File re-installed (update to version 4.2)
18561
18562 * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
18563
18564 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
18565
18566 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
18567
18568
18569 2000-06-20 Dave Love <fx@gnu.org>
18570
18571 * faces.el (frame-background-mode): Use set-default, not set, in
18572 setter.
18573 (frame-update-faces, frame-update-face-colors): Define with
18574 defalias.
18575
18576 * enriched.el (enriched-decode-foreground)
18577 (enriched-decode-background): Don't use internal-find-face.
18578
18579 * apropos.el: Doc fixes.
18580
18581 * cus-edit.el (customize-changed-options): Check arg.
18582 (customize-version-lessp): Don't require decimal point.
18583
18584 * custom.el (defcustom, defgroup): Doc fix.
18585
18586 * newcomment.el (comment) <defgroup>: Add :version.
18587 (comment-multi-line): Doc fix.
18588
18589 * emulation/mlsupport.el (define-hooked-local-abbrev,
18590 define-hooked-global-abbrev): Fix, using define-abbrev.
18591
18592 2000-06-19 Gerd Moellmann <gerd@gnu.org>
18593
18594 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
18595 the whole buffer.
18596
18597 2000-06-19 Dave Love <fx@gnu.org>
18598
18599 * menu-bar.el (menu-bar-options-save): New function.
18600 (menu-bar-options-menu): Use it.
18601 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
18602 Simplify.
18603
18604 2000-06-19 Andreas Schwab <schwab@suse.de>
18605
18606 * progmodes/etags.el (tags-query-replace): Put new parameters
18607 START and END at the end, for backward compatibility.
18608
18609 2000-06-19 Kenichi Handa <handa@etl.go.jp>
18610
18611 * international/codepage.el:
18612 (cp-coding-system-for-codepage-1): Delete special codes for
18613 generating xxx-dos coding system because now a CCL based coding
18614 system can handle EOL conversion by default.
18615
18616 * international/mule.el (make-coding-system): Generate subsidiary
18617 coding systems for EOL handling variants even for a CCL based
18618 coding system.
18619
18620 2000-06-19 Kenichi Handa <handa@etl.go.jp>
18621
18622 * international/isearch-x.el (isearch-minibuffer-input-method)
18623 (isearch-minibuffer-input-method-function): These variables
18624 deleted.
18625 (isearch-with-input-method): Don't use the above variables.
18626 (isearch-process-search-multibyte-characters): Likewise. Call
18627 read-string with the arg INHERIT-INPUT-METHOD t.
18628
18629 2000-06-17 Stefan Monnier <monnier@cs.yale.edu>
18630
18631 * font-lock.el (font-lock-after-fontify-buffer)
18632 (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
18633
18634 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
18635 Use consistent make-local-variable style for font-lock-fontified.
18636 (jit-lock-fontify-buffer):
18637 Don't bother checking for font-lock-mode and jit-lock-mode.
18638
18639 * time.el: Remove trailing ^M that prevent CVS-merging.
18640
18641 2000-06-16 Gerd Moellmann <gerd@gnu.org>
18642
18643 * Makefile.in (distclean): New target.
18644
18645 2000-06-16 Stefan Monnier <monnier@cs.yale.edu>
18646
18647 * Makefile.in (srcdir): Define for update-subdirs.
18648
18649 2000-06-16 Gerd Moellmann <gerd@gnu.org>
18650
18651 * find-lisp.el: New file.
18652
18653 2000-06-16 Andrew Innes <andrewi@gnu.org>
18654
18655 * time.el (display-time-mail-function): New variable, to allow
18656 external packages to indicate when new mail is available.
18657 (display-time-update): Use it.
18658
18659 2000-06-16 Kenichi Handa <handa@etl.go.jp>
18660
18661 * international/mule.el (mule-version): Change version name to
18662 SAKAKI. AOI has already been used by Meadow.
18663
18664 * international/quail.el (quail-show-guidance-buf): To find the
18665 bottom window (but minibuffer), pay attention to the height of
18666 minibuffer.
18667
18668 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
18669
18670 * arc-mode.el (archive-mode-map): Use the new menu-item format for
18671 menu-bar menus. Add help strings. Don't remove the Edit menu
18672 from the menu bar, as the menu bar has enough space now.
18673
18674 * Makefile.in (SHELL): Make sure /bin/sh is used.
18675
18676 * woman.el (woman-man-buffer): Fix bold and underlined CJK
18677 characters, which use series of two ^H characters instead of one.
18678
18679 2000-06-15 Gerd Moellmann <gerd@gnu.org>
18680
18681 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
18682 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
18683 functions.
18684 (Info-find-node-2): Try a case-sensitive search first, then
18685 do a case-insensitive search.
18686
18687 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
18688 tutorials.
18689
18690 * complete.el (PC-env-vars-alist): New variable.
18691 (PC-complete-as-file-name): New function.
18692 (partial-completion-mode): Initialize PC-env-vars-alist from
18693 process-environment.
18694 (PC-do-completion): Handle completion of env vars.
18695
18696 * info.el (Info-set-mode-line): Show file name in mode line,
18697 use `*Info*' instead of `Info:'.
18698
18699 * startup.el (command-line-1): Change copyright messages to year
18700 2000.
18701
18702 2000-06-15 Dave Love <fx@gnu.org>
18703
18704 * net/goto-addr.el (goto-address-fontify): Use keymap property,
18705 not local-map.
18706
18707 2000-06-15 Kenichi Handa <handa@etl.go.jp>
18708
18709 * international/mule.el (set-buffer-file-coding-system): Almost
18710 rewritten to handle `undecided' as no-op.
18711
18712 2000-06-14 Gerd Moellmann <gerd@gnu.org>
18713
18714 * Makefile.in: New file.
18715
18716 * Makefile: Removed.
18717
18718 * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
18719 (goto-address-highlight-keymap): Bind C-c RET.
18720
18721 2000-06-14 Kenichi Handa <handa@etl.go.jp>
18722
18723 * mail/sendmail.el (sendmail-send-it): The temporary buffer
18724 inherits buffer-file-coding-system of the current buffer.
18725
18726 * tar-mode.el (tar-extract): For goto-char, use (point-min), not
18727 0. Give correct argument to set-auto-coding-function.
18728 (tar-expunge): For goto-char, use (point-min), not 0.
18729 (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
18730 (tar-subfile-save-buffer): Likewize.
18731
18732 * international/mule.el
18733 (after-insert-file-set-buffer-file-coding-system): Call
18734 set-buffer-file-coding-system with the arg FORCE t.
18735
18736 2000-06-13 Gerd Moellmann <gerd@gnu.org>
18737
18738 * mail/sendmail.el (mail-specify-envelope-from): Initialize to
18739 nil. Contemporary sendmails issue an X-Authentication-Warning if
18740 the sender is set with `-f'.
18741
18742 2000-06-13 Dave Love <fx@gnu.org>
18743
18744 * help.el (describe-function-1): Kluge around cases of functions
18745 fset to subrs whose doc doesn't match their symbol-name.
18746
18747 * image.el (insert-image): Default STRING to a space.
18748
18749 * info.el Doc fixes.
18750 (Info-build-node-completions): Match Ref tags.
18751
18752 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
18753
18754 * frame.el (display-multi-frame-p, display-multi-font-p): New
18755 defaliases for display-graphic-p.
18756
18757 * hl-line.el: Fixed a typo in commentary.
18758
18759 2000-06-13 Kenichi Handa <handa@etl.go.jp>
18760
18761 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
18762 fixed.
18763
18764 2000-06-12 Dave Love <fx@gnu.org>
18765
18766 * image.el (insert-image): Save a little consing.
18767
18768 2000-06-12 Kenichi Handa <handa@etl.go.jp>
18769
18770 * language/tibet-util.el: Convert all tibetan-1-column characters
18771 to the corresponding tibetan characters.
18772 (tibetan-add-components): Delete code for the special treatment of
18773 'a chung.
18774
18775 * language/tibetan.el (tibetan-composable-pattern): Fix previous
18776 change.
18777 (tibetan-vowel-transcription-alist): More rules added.
18778 (tibetan-composite-vowel-alist): New variable.
18779 (tibetan-precomposition-rule-alist): More rules added.
18780
18781 2000-06-12 Stefan Monnier <monnier@cs.yale.edu>
18782
18783 * startup.el (command-line): Only call menu-bar-mode if interactive.
18784
18785 * thingatpt.el (toplevel symbol-properties):
18786 * textmodes/makeinfo.el (makeinfo-compile):
18787 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
18788 * progmodes/hideif.el (hif-compress-define-list)
18789 (hide-ifdef-use-define-alist):
18790 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
18791 (ange-ftp-vms-add-file-entry):
18792 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
18793 * man.el (Man-build-man-command):
18794 * mail/rnewspost.el (news-reply-header-hook):
18795 * info.el (Info-insert-dir):
18796 * emulation/mlconvert.el (backward-word, forward-word, setq):
18797 * emacs-lisp/gulp.el (gulp-send-requests):
18798 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
18799 (byte-optimize-inline-handler, byte-optimize-form-code-walker)
18800 (byte-optimize-apply, end of file):
18801 * emacs-lisp/advice.el (ad-advice-class-completion-table)
18802 (ad-make-freeze-definition):
18803 * startup.el (command-line, command-line-1): Don't quote lambdas.
18804
18805 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
18806 (cvs-cleanup-removed): New function.
18807 (cvs-cleanup-functions): New var.
18808 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
18809 some flexibility in specifying additional entries to auto-cleanup.
18810 (cvs-quickdir): New function.
18811 (cvs-mode-insert): Use cvs-fileinfo-from-entries.
18812 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
18813 (cvs-mode-find-file): Check that we are on a filename or dirname
18814 when invoked through a mouse-click.
18815 (cvs-full-path): Remove.
18816 (cvs-dired-action): Re-introduced.
18817 (cvs-dired-noselect): Use it.
18818 (vc-post-command-functions): use this new hook if available.
18819
18820 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
18821 (cvs-status-map): Don't inherit from cvs-mode-map anymore.
18822 (cvs-filename-map, cvs-dirname-map): Remove.
18823 (cvs-default-action): Remove.
18824 (cvs-add-face): Use `keymap' rather than `local-map' property, and only
18825 if the arg is really a keymap.
18826 (cvs-fileinfo-pp): Don't use any special map for file and dir names.
18827 Don't hardcode the mapping from state (aka type) to face, but check
18828 the var cvs-fi-<type>-face instead.
18829 (cvs-fileinfo-from-entries): New function.
18830
18831 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
18832 Docstring fix.
18833 (cvs-find-file-and-jump): Change default to be safer.
18834 (cvs-mode-diff-map): Define it as a function as well.
18835 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
18836 Bind mouse-2 in this global map rather than with text-properties.
18837
18838 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
18839 file to resolve the ambiguity between C(conflict) and C(need-merge).
18840
18841 2000-06-12 Kenichi Handa <handa@etl.go.jp>
18842
18843 * international/mule.el (set-buffer-file-coding-system): If
18844 CODING-SYSTEM is nil, set buffer-file-coding-system to nil
18845 unconditionally.
18846
18847 2000-06-12 Dave Love <fx@gnu.org>
18848
18849 * wid-edit.el (widget-specify-button): Really suppress the face if
18850 required.
18851
18852 2000-06-11 Gerd Moellmann <gerd@gnu.org>
18853
18854 * term/x-win.el (x-colors): Add colors from recent rgb.txt.
18855
18856 2000-06-11 Stefan Monnier <monnier@cs.yale.edu>
18857
18858 * imenu.el (imenu-generic-expression): Docstring fix.
18859
18860 * composite.el (composition-function-table): Move the `put'
18861 below the autoload cookie so we can load the file before loaddefs.
18862
18863 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
18864
18865 * emacs-lisp/autoload.el (make-autoload): Use `cond'.
18866 Handle easy-mmode-define-global-mode.
18867 For complex macros like define-minor-mode that can generate
18868 several autoload entries, try to autoload entries in the
18869 macroexpanded code.
18870
18871 * emacs-lisp/easy-mmode.el (define-minor-mode):
18872 If KEYMAP is a symbol, just use it.
18873 Use byte-compile-current-file and load-file-name to infer the
18874 proper :require to pass to defcustom.
18875 Wrap the hook var into `progn' so as not to autoload it.
18876 Add a :autoload-end cookie.
18877 Be more careful about the evaluation of KEYMAP.
18878 (easy-mmode-define-global-mode): Add a :autoload-end cookie.
18879 (define-derived-mode): Move define-abbrev-table outside of defvar.
18880
18881 2000-06-10 Stefan Monnier <monnier@cs.yale.edu>
18882
18883 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
18884 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
18885 (backup-compiled-files): Ignore errors during `tar'.
18886 (bootstrap): Make autoloads before elc files.
18887
18888 2000-06-10 Kenichi Handa <handa@etl.go.jp>
18889
18890 * international/mule.el (set-buffer-file-coding-system): If one of
18891 undecided-XXX is specified, change only EOL conversion.
18892
18893 * international/mule-conf.el (unix): New alias for the coding
18894 system undecided-unix.
18895
18896 2000-06-09 Dave Love <fx@gnu.org>
18897
18898 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
18899
18900 * progmodes/executable.el: Byte compile dynamic.
18901 (executable-insert): Change custom type.
18902 (executable-find): Add autoload cookie.
18903 (executable-make-buffer-file-executable-if-script-p): New
18904 function. After Noah Friedman.
18905
18906 * files.el (after-save-hook): Customize, with
18907 executable-make-buffer-file-executable-if-script-p as an option.
18908
18909 2000-06-09 Kenichi Handa <handa@etl.go.jp>
18910
18911 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
18912 "tib24p-mule.bdf" for Tibetan.
18913
18914 * composite.el (decompose-composite-char): Declare it as obsolete.
18915
18916 * man.el (Man-fontify-manpage): Pay attention to underline and
18917 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
18918
18919 2000-06-08 Gerd Moellmann <gerd@gnu.org>
18920
18921 * thingatpt.el (forward-thing): Use functionp instead of fboundp.
18922 Set maintainer to FSF since author isn't reachable.
18923
18924 2000-06-08 Dave Love <fx@gnu.org>
18925
18926 * international/mule-cmds.el (select-safe-coding-system): If
18927 DEFAULT-CODING-SYSTEM is not specified, also check the most
18928 preferred coding-system if buffer-file-coding-system is
18929 `undecided'. From Handa.
18930
18931 2000-06-08 Kenichi Handa <handa@etl.go.jp>
18932
18933 * international/mule.el
18934 (after-insert-file-set-buffer-file-coding-system): If the buffer
18935 size is greater than INSERTED, judget that we are not visiting.
18936
18937 2000-06-07 Rajesh Vaidheeswarran <rv@gnu.org>
18938
18939 * whitespace.el (defgroup whitespace): Comment out `:version'.
18940 XEmacs 20.4 has problems defining the group with this present.
18941 We'll have this commented out till get resolve the problem.
18942
18943 2000-06-07 John Wiegley <johnw@gnu.org>
18944
18945 * align.el (align-dq-string-modes, align-sq-string-modes)
18946 (align-open-comment-modes): Add pyhton-mode.
18947 (align-rules-list): Use get-text-property instead of
18948 text-properties-at.
18949 (align-rules-list): Add python-assignment.
18950 (align-rules-list): Change perl-comma-delimiter to
18951 basic-comma-delimiter. Use if for Perl modes and python-mode.
18952 (align-rules-list): Add python-chain-logic and
18953 basic-line-continuation.
18954
18955 2000-06-07 Jari Aalto <jari.aalto@poboxes.com>
18956
18957 * apropos.el (apropos-mode-hook): New user variable.
18958 (apropos-mode): Run apropos-mode-hook.
18959
18960 2000-06-07 David Ponce <david@dponce.com>
18961
18962 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
18963 commands. Require `wid-edit' at run-time.
18964
18965 2000-06-07 David Ponce <david@dponce.com>
18966
18967 * recentf.el: Added some "Commentary".
18968 (recentf-open-more-files, recentf-edit-list): Minor changes to
18969 move the point at the top of the file list. This behaviour is
18970 consistent with the menu one when the list contains a lot of
18971 files.
18972 (recentf-cleanup): Now displays the number of items removed from
18973 the list.
18974 (recentf-relative-filter) New menu filter to show filenames
18975 relative to `default-directory'.
18976
18977 2000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
18978
18979 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size
18980 with/without giving an error if PostScript printer doesn't have this
18981 kind of page size. Zebra Stripe continues or restarts on next page.
18982 Manual/automatic paper feeding. Switch or not the header.
18983 (ps-print-version): New version number (5.2.2).
18984 (ps-windows-system): Include emx as a Windows system.
18985 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
18986 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
18987 (ps-background-text): Code fix.
18988 (ps-error-handler-message, ps-user-defined-prologue)
18989 (ps-print-prologue-header, ps-printer-name)
18990 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
18991 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
18992 (ps-use-face-background): Customization fix.
18993 (ps-n-up-database): Data fix.
18994 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
18995 (ps-switch-header): New vars.
18996 (ps-xemacs-color-name, ps-face-foreground-name)
18997 (ps-face-background-name, ps-boolean-constant): New funs.
18998
18999 2000-06-07 Dave Love <fx@gnu.org>
19000
19001 * allout.el: New version from Manheimer.
19002
19003 2000-06-07 Kenichi Handa <handa@etl.go.jp>
19004
19005 * textmodes/fill.el (fill-find-break-point): Check the validity of
19006 charset.
19007
19008 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
19009
19010 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
19011 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
19012 Call display-color-p and display-mouse-p instead of looking at
19013 window-system.
19014
19015 2000-06-06 Dave Love <fx@gnu.org>
19016
19017 * image.el (find-image): Doc fix. Return nil if image not found.
19018 (put-image, insert-image): Make STRING arg optional.
19019
19020 2000-06-06 Kenichi Handa <handa@etl.go.jp>
19021
19022 * language/vietnamese.el: Remove eval-when-compile.
19023 (viet-viscii-nonascii-translation-table): Define it as a
19024 translation table made from viet-viscii-decode-table.
19025 (viet-viscii-encode-table): Define it as a translation table made
19026 from the reverse map of above.
19027 (viet-vscii-nonascii-translation-table): Define it as a
19028 translation table made from viet-vscii-decode-table.
19029 (viet-vscii-encode-table): Define it as a translation table made
19030 from the reverse map of above.
19031 (ccl-decode-viscii): Use translate-character.
19032 (ccl-encode-viscii, ccl-encode-viscii-font)
19033 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
19034 Likewize.
19035
19036 * language/cyrillic.el: Remove eval-when-compile.
19037 (cyrillic-koi8-r-nonascii-translation-table): Define it as a
19038 translation table made from cyrillic-koi8-r-decode-table.
19039 (cyrillic-koi8-r-encode-table): Define it as a translation table
19040 made from the reverse map of above.
19041 (ccl-decode-koi8): Use translate-character.
19042 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
19043 (cyrillic-alternativnyj-nonascii-translation-table): Define it as
19044 a translation table made from cyrillic-alternativnyj-decode-table.
19045 (cyrillic-alternativnyj-encode-table): Define it as a translation
19046 table made from the reverse map of above.
19047 (ccl-decode-alternativnyj): Use translate-character.
19048 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
19049 Likewize
19050
19051 * international/mule-diag.el (non-iso-charset-alist): Specify
19052 translation table symbol instead of translation table itself.
19053 (list-block-of-chars): CHARSET may be a translation table symbol.
19054
19055 * international/mule.el (make-coding-system): If CODING-SYSTEM
19056 already exists, override it.
19057
19058 * international/fontset.el: Use family `proportional' for Tibetan
19059 fonts.
19060
19061 * international/ccl.el (ccl-compile-translate-character): Don't
19062 check if Rrr has property translation-table.
19063 (ccl-compile-map-multiple): Modified to avoid compiler warning.
19064
19065 2000-06-05 Gerd Moellmann <gerd@gnu.org>
19066
19067 * info.el: Bind case-fold-search to t when searching in case
19068 a user sets it to nil in a hook.
19069
19070 2000-06-05 Stefan Monnier <monnier@cs.yale.edu>
19071
19072 * autoarg.el (autoarg-mode, autoarg-kp-mode):
19073 * hl-line.el (hl-line-mode): Use the new :global key argument.
19074
19075 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
19076 (tar-clip-time-string): Prepend a space.
19077 (tar-grind-file-mode): Construct a string rather than modifying one.
19078 (tar-header-block-summarize): Fix docstring.
19079 Use `format' rather than an error-prone set of copy-loops.
19080
19081 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
19082 (diff-goto-source, diff-unified->context, diff-context->unified)
19083 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
19084 understand the format output by the `-p' argument to diff.
19085
19086 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
19087 (sh-re-done): Use defconst.
19088 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
19089 (sh-help-string-for-variable, sh-guess-basic-offset):
19090 Don't quote lambdas.
19091 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
19092 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
19093
19094 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
19095 (mh-letter-mode): Derive from text-mode.
19096 This implicitly means that it now calls kill-all-local-variables.
19097 Also remove the Emacs-18 compatibility code.
19098
19099 * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
19100 Make use of symbol-property doc-string-elt.
19101 Use memq rather than a sequence of eq.
19102 (doc-string-elt): Fix the wrong or missing previously unused values.
19103 (autoload-print-form): New function extracted from
19104 generate-file-autoloads to allow recursion when handling progn
19105 so that defvar's and defun's docstrings are properly printed.
19106 (generate-file-autoloads): Use it.
19107
19108 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
19109 Use find-file-hooks in the minor-mode function.
19110 Be careful not to loop indefinitely in the post-command-hook function.
19111
19112 2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
19113
19114 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
19115 tty's.
19116 * ediff-diff.el (ediff-exec-process): Use --binary for fine
19117 differences whenever appropriate.
19118 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
19119 * viper.el (find-file, find-file-other-window): Get viper to do
19120 wildcards.
19121
19122 2000-06-04 Stefan Monnier <monnier@cs.yale.edu>
19123
19124 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
19125 (jit-lock-fontify-buffer): New function for JIT refontification.
19126 (jit-lock-mode): Fix docstring.
19127 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
19128 Remove jit-lock-after-change from the _local_ hook.
19129 (jit-lock-function-1): Fix docstring.
19130
19131 * info.el (Info-on-current-buffer): Initialize info.
19132
19133 * newcomment.el (comment-indent): Ignore comment-indent-hook.
19134
19135 * progmodes/tcl.el (tcl-indent-for-comment):
19136 Ignore comment-indent-hook.
19137
19138 * emacs-lisp/easy-mmode.el: Require CL during compilation.
19139 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
19140 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
19141 and improve to use the lighter to guess the capitalization.
19142 (define-minor-mode): Inline code from easy-mmode-define-toggle.
19143 Add keyword arguments to specify global-ness or the custom group.
19144 Add local-map and help-echo properties to the lighter.
19145 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
19146 (easy-mmode-define-global-mode): New macro.
19147
19148 2000-06-02 Dave Love <fx@gnu.org>
19149
19150 * wid-edit.el: byte-compile-dynamic since we typically don't use
19151 all the widgets. Don't require cl or widget. Remove
19152 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
19153 (widget-read-event): Removed. Callers changed to use read-event.
19154 (widget-button-release-event-p): Renamed from
19155 button-release-event-p.
19156 (widget-field-add-space, widget-field-use-before-change):
19157 Uncustomize.
19158 (widget-specify-field): Use keymap property, not local-map.
19159 (widget-specify-button): Obey :suppress-face.
19160 (widget-specify-insert): Use modern backquote syntax.
19161 (widget-image-directory): Renamed from widget-glyph-directory.
19162 (widget-image-enable): Renamed from widget-glyph-enable.
19163 (widget-image-find): Replaces widget-glyph-find.
19164 (widget-button-pressed-face): Move defvar.
19165 (widget-image-insert): Replaces widget-glyph-insert.
19166 (widget-convert): Use keywordp.
19167 (widget-leave-text, widget-children-value-delete): Use mapc.
19168 (widget-keymap): Remove XEmacs stuff.
19169 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
19170 (widget-button-click): Don't set point at the click, but re-centre
19171 if we scroll out of window. Rewritten for images v. glyphs &c.
19172 (widget-tabable-at): Use POS arg, not point.
19173 (widget-beginning-of-line, widget-end-of-line)
19174 (widget-item-value-create, widget-sublist, widget-princ-to-string)
19175 (widget-sexp-prompt-value, widget-echo-help): Simplify.
19176 (widget-default-create): Use widget-image-insert; some rewriting.
19177 (widget-visibility-value-create)
19178 (widget-push-button-value-create, widget-toggle-value-create): Use
19179 widget-image-insert.
19180 (checkbox): Create on and off images dynamically.
19181 (documentation-link): Change :help-echo.
19182 (widget-documentation-link-echo-help): Remove.
19183
19184 2000-06-02 Stefan Monnier <monnier@cs.yale.edu>
19185
19186 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
19187
19188 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
19189 (easy-mmode-define-toggle, define-minor-mode): Use it.
19190 (easy-mmode-define-keymap): Docstring fix.
19191 (define-derived-mode): Default PARENT to fundamental-mode.
19192 Add the derived-mode-parent symbol-property.
19193 (easy-mmode-derived-mode-p): New function.
19194
19195 2000-06-02 Dave Love <fx@gnu.org>
19196
19197 * files.el (convert-standard-filename): Doc fix.
19198 (normal-backup-enable-predicate): New function.
19199 (backup-enable-predicate): Use it to replace the lambda form.
19200
19201 * calendar/todo-mode.el: [This needs more work on the outline
19202 stuff.] Doc fixes.
19203 (todo) <defgroup>: Add :version.
19204 (todo-add-category): Don't use pushnew.
19205 (todo-cmd-raise): Fix typo.
19206 (todo-top-priorities): Change temp buffer name.
19207 (todo-category-alist): Avoid redundant lambda.
19208 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
19209 Use outline-next-heading.
19210
19211 * autoarg.el: Rewritten to use define-minor-mode.
19212 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
19213 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
19214
19215 2000-06-02 Kenichi Handa <handa@etl.go.jp>
19216
19217 * isearch.el (isearch-other-meta-char): Fix previous change.
19218
19219 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
19220
19221 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
19222 (log-edit-done): Only add the comment to the ring if it's different
19223 from the last comment entered.
19224
19225 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
19226
19227 2000-06-01 Dave Love <fx@gnu.org>
19228
19229 * hl-line.el: Rewritten using define-minor-mode.
19230
19231 * help.el (describe-function-1): Distinguish special form from
19232 builtin function. Sanity-check presence of arglist for builtins.
19233
19234 2000-06-01 Kenichi Handa <handa@etl.go.jp>
19235
19236 * international/characters.el: Fix syntax/category setting of
19237 Tibetan characters.
19238
19239 * language/tibet-util.el (tibetan-add-components): Fixes for new
19240 encoding of Tibetan characters.
19241 (tibetan-decompose-precomposition-alist): New variable.
19242 (tibetan-decompose-region): Convert precomposed characters to
19243 non-precomposed characters.
19244 (tibetan-decompose-string): Likewise.
19245 (tibetan-composition-function): Fix args to
19246 thibetan-compose-string.
19247
19248 * language/tibetan.el (tibetan-composable-pattern): More
19249 characters included.
19250 (tibetan-consonant-transcription-alist): Rule for "R" added.
19251 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
19252 "+R" added.
19253 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
19254
19255 * language/lao-util.el (lao-composition-function): Fix args to
19256 compose-string.
19257
19258 * language/thai-util.el (thai-composition-function): Fix args to
19259 compose-string.
19260
19261 * isearch.el (isearch-update): Set disable-point-adjustment to t
19262 to prevent the point moving to the end of a composition when a
19263 part of a composition is searched.
19264 (isearch-other-meta-char): If the key invoking this command can be
19265 mapped by function-key-map to a printing char, call
19266 isearch-process-search-char directly.
19267
19268 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
19269
19270 * emacs-lisp/bytecomp.el:
19271 * frame.el:
19272 * international/mule-cmds.el:
19273 * international/mule-util.el:
19274 * international/mule.el:
19275 * mouse.el:
19276 * subr.el:
19277 * faces.el: Update calls to make-obsolete with a WHEN argument.
19278
19279 * byte-run.el (make-obsolete, make-obsolete-variable):
19280 Add an optional WHEN argument and change the format of the
19281 symbol-property information.
19282 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
19283 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
19284 new obsolete-symbol-property format and print WHEN if it is provided.
19285
19286 2000-05-31 Dave Love <fx@gnu.org>
19287
19288 * loadhist.el (loadhist-hook-functions): Remove
19289 before-change-function, after-change-function.
19290 (unload-feature): Deal with symbols which are both bound and
19291 fbound.
19292
19293 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
19294 before-change-function, after-change-function.
19295
19296 * simple.el (newline): Don't bind before-change-function,
19297 after-change-function.
19298
19299 2000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
19300
19301 * whitespace.el (whitespace-rescan-timer-time): Update interval
19302 set to 600 seconds (10 minutes) instead of 60 seconds since
19303 a large number of whitespace buffers causes emacs to `freeze'
19304 for a considerable amount of time.
19305
19306 * whitespace.el: Updated email address
19307
19308 2000-05-31 Dave Love <fx@gnu.org>
19309
19310 * add-log.el (change-log-font-lock-keywords) <function>: Add
19311 pattern for function of change.
19312 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
19313 acknowledgements patterns.
19314
19315 2000-05-31 Kenichi Handa <handa@etl.go.jp>
19316
19317 * isearch.el (isearch-printing-char): If keyboard coding system is
19318 being used, call isearch-process-search-multibyte-characters.
19319
19320 * international/isearch-x.el: Mostly rewritten.
19321
19322 * international/quail.el (quail-start-conversion): Don't include
19323 unhandled events in the returned events, but set them in
19324 unread-command-events. Exit if all inputs are deleted.
19325
19326 2000-05-30 Jason Rumney <jasonr@gnu.org>
19327
19328 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
19329
19330 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
19331 Reenable code to create initial fontsets.
19332 Use set-fontset-font in place of put-charset-property.
19333
19334 2000-05-30 Gerd Moellmann <gerd@gnu.org>
19335
19336 * progmodes/perl-mode.el (perl-indent-line): When looking for a
19337 label, ensure that the first colon isn't followed by another.
19338
19339 * paths.el (Info-default-directory-list): Doc fix.
19340
19341 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
19342 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
19343 send a query containing USER only, not USER@HOST.
19344
19345 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
19346 and rmail-msgend to compute the restriction at the end, instead of
19347 computing it.
19348
19349 2000-05-29 Gerd Moellmann <gerd@gnu.org>
19350
19351 * dabbrev.el (dabbrev-expand): Don't display messages in the
19352 echo area if the minibuffer window is active.
19353
19354 * jit-lock.el (jit-lock-mode): Add after change function to
19355 local hook.
19356
19357 2000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
19358
19359 * antlr-mode.el: New commands: hide/unhide actions,
19360 upcase/downcase literals.
19361 (antlr-tiny-action-length): New user option.
19362 (antlr-hide-actions): New command. Suggested by
19363 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
19364 (antlr-mode-map): New binding [C-c C-v].
19365 (antlr-mode-menu): New entries.
19366 (antlr-downcase-literals): New command.
19367 (antlr-upcase-literals): Ditto.
19368
19369 * antlr-mode.el: Minor changes: indendation, mode-name.
19370 (antlr-indent-line): Indent cpp directive at column 0.
19371 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
19372
19373 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
19374 (antlr-font-lock-additional-keywords): Workaround for intentional
19375 bug in XEmacs version of font-lock.
19376 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
19377 be used by a smarter version of `buffers-menu-grouping-function'.
19378
19379 2000-05-29 Gerd Moellmann <gerd@gnu.org>
19380
19381 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
19382 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
19383
19384 2000-05-29 Kenichi Handa <handa@etl.go.jp>
19385
19386 * international/encoded-kb.el
19387 (encoded-kbd-iso2022-designation-map): Pay attention to that
19388 charset-iso-final-char return -1 for eight-bit-control and
19389 eight-bit-graphic.
19390
19391 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
19392
19393 * speedbar.el (speedbar-use-images, speedbar-update-flag)
19394 (speedbar-easymenu-definition-base): Use display-graphic-p where
19395 available, instead of window-system.
19396
19397 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
19398
19399 * international/codepage.el (cp-coding-system-for-codepage-1): Add
19400 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
19401 coding systems.
19402
19403 2000-05-26 Dave Love <fx@gnu.org>
19404
19405 * disp-table.el (standard-display-underline): Don't use
19406 internal-find-face.
19407
19408 * mail/reporter.el: Maintainer change. Doc fixes.
19409 (reporter-version): Deleted.
19410
19411 * emacs-lisp/elp.el: Maintainer change.
19412 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
19413
19414 2000-05-26 Stefan Monnier <monnier@cs.yale.edu>
19415
19416 * add-log.el (add-change-log-entry): Merge the current entry with the
19417 previous one if the previous one is empty.
19418
19419 2000-05-26 Dave Love <fx@gnu.org>
19420
19421 * loadhist.el (unload-feature): Fix interactive spec [from
19422 lijnzaad@ebi.ac.uk].
19423
19424 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
19425 subr-arity to check primitives.
19426 (byte-compile-flush-pending, byte-compile-file-form-progn)
19427 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
19428 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
19429 mapcar.
19430
19431 2000-05-26 Kenichi Handa <handa@etl.go.jp>
19432
19433 * international/fontset.el: Set family names of non-latin charsets
19434 in default fontset to "*".
19435
19436 * international/mule-diag.el (print-fontset): Combine family part
19437 and registry part of the fontname by "-*-" instead of "-".
19438
19439 * international/mule-cmds.el (encode-coding-char): Make strings
19440 multibyte before calling encode-coding-string.
19441
19442 2000-05-25 Stefan Monnier <monnier@cs.yale.edu>
19443
19444 * derived.el: Fix keywords.
19445 (define-derived-mode): Only define if needed.
19446
19447 * simple.el (fill-comment, comment-column, comment-start)
19448 (comment-start-skip, comment-end, comment-indent-function)
19449 (block-comment-start, block-comment-end, indent-for-comment)
19450 (set-comment-column, kill-comment, comment-padding, comment-region)
19451 (comment-multi-line, indent-new-comment-line): Remove.
19452
19453 * bindings.el (esc-map): Change ; to comment-dwim and use the new
19454 function names for comment operations.
19455
19456 * newcomment.el: Add abundant autoload cookies.
19457 (comment-style): Don't depend on runtime data at compile-time.
19458 (comment-indent-hook): Remove.
19459 (comment-indent): Check if comment-indent-hook is bound.
19460 (comment-region): Docstring fix.
19461
19462 2000-05-25 Dave Love <fx@gnu.org>
19463
19464 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
19465 byte-code-function-p.
19466
19467 * mail/rmailsum.el: Add provide.
19468
19469 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
19470
19471 * smerge-mode.el (smerge-diff-switches): Don't use list* in
19472 defcustom.
19473
19474 2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
19475
19476 * ediff-diff.el (ediff-exec-process): delete --binary option from
19477 non-buffer ediff jobs.
19478
19479 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
19480
19481 * hilit-chg.el (highlight-changes-mode): Ask about color or
19482 grayscale support, not about window-system.
19483
19484 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
19485 window-system.
19486 (ffap-highlight): Always default to t.
19487
19488 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
19489 display-popup-menus-p instead of looking at window-system.
19490
19491 * disp-table.el (standard-display-g1, standard-display-graphic):
19492 Only refuse to use string glyphs on X and MS-Windows.
19493
19494 * avoid.el: Remove window-system from commentary, suggest to use
19495 display-*-p instead.
19496
19497 * apropos.el (apropos-print): Use display-mouse-p instead of
19498 window-system.
19499
19500 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
19501
19502 * international/codepage.el (cp-decoding-vector-for-codepage):
19503 Fill up unsupported characters with their own codes. From Kenichi
19504 Handa.
19505
19506 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
19507
19508 * international/mule-diag.el (describe-char-after): Use
19509 display-graphic-p instead of window-system, so that this function
19510 works on MS-DOS.
19511
19512 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
19513
19514 * international/codepage.el (cp-make-coding-systems-for-codepage):
19515 Remove the eight-bit-graphic and eight-bit-control charsets from
19516 the list of charsets which we convert into `?'.
19517
19518 2000-05-25 Kenichi Handa <handa@etl.go.jp>
19519
19520 * international/mule-conf.el: Specify CHARSET-ID explicitely for
19521 private charsets.
19522 (mule-unicode-0100-24ff, japanese-jisx0213-1,
19523 japanese-jisx0213-2): New charsets.
19524
19525 * international/fontset.el: Setup default fontset for new charsets.
19526
19527 2000-05-24 Dave Love <fx@gnu.org>
19528
19529 * info.el (Info-find-node-2): Restructure [following "Vadim
19530 S. Solomin" <sovs@uic.nnov.ru>].
19531
19532 * icomplete.el: Fix header for Finder.
19533
19534 2000-05-24 Eric M. Ludlam <zappo@ultranet.com>
19535
19536 * rmailout.el (rmail-output-to-rmail-file): Added optional param
19537 STAY.
19538
19539 * rmail.el (rmail-automatic-folder-directives): New user variable.
19540 (rmail-show-message): Add call to `rmail-auto-file' during
19541 display.
19542 (rmail-auto-file): New function.
19543
19544 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
19545
19546 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
19547 account.
19548 (ediff-test-utility,ediff-diff-mandatory-option)
19549 (ediff-reset-diff-options): Utilities for proper initialization of
19550 ediff-diff-options and ediff-diff3-options on Windows.
19551
19552 * ediff-init.el (ediff-merge-filename-prefix): New customizable
19553 variable.
19554
19555 * ediff-mult.el (ediff-filegroup-action): Use
19556 ediff-merge-filename-prefix.
19557
19558 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
19559
19560 * viper-ex.el (ex-write): Set selective display to nil.
19561
19562 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
19563
19564 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
19565 aliases for hebrew-iso-8bit.
19566
19567 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
19568
19569 * woman.el: New version from Francis J. Wright
19570 <F.J.Wright@Maths.QMW.ac.uk>.
19571 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
19572 names in environment variables regardless of the path separator.
19573 (woman-topic-all-completions-1): Don't call file-name-directory-p
19574 on all files, since woman-file-regexp already filters out any
19575 directories.
19576
19577 2000-05-24 Kenichi Handa <handa@etl.go.jp>
19578
19579 * international/quail.el (quail-start-translation): Don't change
19580 modified-p of the current buffer.
19581 (quail-start-conversion): Likewise.
19582
19583 * international/kkc.el (kkc-region): Don't change modified-p of
19584 the current buffer.
19585
19586 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
19587 conform to RFC1468.
19588 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
19589
19590 2000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
19591
19592 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
19593 (speedbar-insert-button): Invisible text property fix.
19594 (speedbar-directory-plus): Renamed from speedbar-directory-+
19595 (speedbar-directory-minus): Renamed from speedbar-directory--
19596 (speedbar-page-plus): Renamed from speedbar-file-+
19597 (speedbar-page-minus): Renamed from speedbar-file--
19598 (speedbar-page): Renamed from speedbar-file-
19599 (speedbar-tag): Renamed from speedbar-tag-
19600 (speedbar-tag-plus): Renamed from speedbar-tag-+
19601 (speedbar-tag-minus): Renamed from speedbar-tag--
19602 (speedbar-expand-image-button-alist): Use above renames.
19603
19604 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
19605 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
19606 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
19607 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
19608 * sb-pg.xpm: Renamed from sb-file.xpm
19609 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
19610 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
19611
19612 2000-05-24 Kenichi Handa <handa@etl.go.jp>
19613
19614 * international/quail.el (quail-show-guidance-buf): Set
19615 current-input-method of the guidance buffer to the name of the
19616 curren input method.
19617
19618 2000-05-23 Stefan Monnier <monnier@cs.yale.edu>
19619
19620 * progmodes/compile.el (compile-internal): Style typo.
19621
19622 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
19623 quote vars and functions in the docstring.
19624
19625 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
19626
19627 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
19628 Don't quote lambdas.
19629
19630 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
19631
19632 2000-05-23 Gerd Moellmann <gerd@gnu.org>
19633
19634 * startup.el (command-line): Determine source file of compiled
19635 user init file differently. Warn if compiled user init file
19636 is older than its source file.
19637
19638 * ffap.el (ffap-url-regexp): Add `https'.
19639
19640 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
19641
19642 * files.el (make-backup-file-name-1): Replace slashes with `!'
19643 rather than `|' (which is not allowed on Windows). Replace the
19644 drive letters with a string "drive_X".
19645
19646 2000-05-23 Gerd Moellmann <gerd@gnu.org>
19647
19648 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
19649
19650 * files.el (interpreter-mode-alist): Add `bash2'.
19651
19652 2000-05-22 Dave Love <fx@gnu.org>
19653
19654 * loadhist.el (feature-symbols, file-provides, file-requires): Use
19655 mapc.
19656 (feature-file): Avoid calling symbol-name. Doc fix.
19657 (file-set-intersect, file-dependents): Use dolist, not mapcar.
19658 (loadhist-hook-functions): Add mouse-position-function.
19659 (unload-feature): Change uses of mapcar.
19660
19661 * files.el (parse-colon-path): Doc fix.
19662 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
19663 (set-auto-mode): Use mapc.
19664
19665 * complete.el (PC-look-for-include-file): Use :alnum: character
19666 class.
19667 (partial-completion-mode): Add autoload cookie.
19668
19669 2000-05-22 Sam Steingold <sds@gnu.org>
19670
19671 * info.el (Info-fontify-node): Fixed the call to
19672 `add-text-properties' (bug introduced on 2000-05-18).
19673
19674 2000-05-22 Dave Love <fx@gnu.org>
19675
19676 * bindings.el: Remove debug-ignored-errors set in other files.
19677
19678 * progmodes/etags.el: Add to debug-ignored-errors.
19679 (visit-tags-table-buffer): Clear out buffers holding old tables
19680 when making a new list.
19681 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
19682 mapc.
19683
19684 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
19685 quote keywords.
19686 (cmpl-string-case-type): Use character classes.
19687
19688 * comint.el:
19689 * textmodes/ispell.el:
19690 * imenu.el:
19691 * mail/mh-e.el:
19692 * progmodes/compile.el: Add to debug-ignored-errors.
19693
19694 * dabbrev.el: Add to debug-ignored-errors.
19695 (dabbrev-completion): Use mapc.
19696
19697 2000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
19698
19699 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
19700 (woman-mapcan, woman-parse-man.conf)
19701 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
19702 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
19703 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
19704 path syntax better.
19705 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
19706 (woman-manpath): Call woman-parse-man.conf.
19707 (woman-emulation): New defcustom, defaults to nroff.
19708 (woman-font-support): New defconst.
19709 (woman-use-symbol-font): New defcustom.
19710 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
19711 "Emulation".
19712 Many functions: Doc fix.
19713
19714 2000-05-22 Kenichi Handa <handa@etl.go.jp>
19715
19716 * international/quail.el (quail-simple-translation-keymap): Map
19717 128..255 to quail-self-insert-command.
19718 (quail-keyboard-layout-alist): Add definition for "pc102-de".
19719
19720 2000-05-22 Stefan Monnier <monnier@cs.yale.edu>
19721
19722 * help.el (help-manyarg-func-alist): Typo.
19723
19724 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
19725 intervals which makes it heaps simpler.
19726
19727 * newcomment.el (comment-region-internal): Go back to BEG after quoting
19728 the nested comment markers.
19729
19730 * subr.el (remove-hook): Don't turn the hook's value into a list.
19731
19732 2000-05-21 Dave Love <fx@gnu.org>
19733
19734 * edmacro.el (edmacro-parse-keys): Return vector if any elements
19735 are invalid characters.
19736
19737 * international/mule-util.el (detect-coding-with-priority): Use
19738 mapc. Remove redundant lambda.
19739
19740 * international/mule-diag.el (list-non-iso-charset-chars)
19741 (describe-fontset): Remove redundant lambda.
19742
19743 * emulation/crisp.el (brief-mode): New alias.
19744
19745 * emacs-lisp/ring.el (ring-elements): New function.
19746
19747 * emacs-lisp/easymenu.el (easy-menu-create-menu)
19748 (easy-menu-do-add-item): Use keywordp.
19749
19750 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
19751
19752 * replace.el: Doc and error message fixes.
19753 (replace-highlight): Use facep, not internal-find-face.
19754
19755 2000-05-20 Stefan Monnier <monnier@cs.yale.edu>
19756
19757 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
19758
19759 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
19760 (log-edit-insert-changelog): Drop `:' as well.
19761
19762 * log-view.el: Fix file description.
19763 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
19764 available.
19765 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
19766 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
19767
19768 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
19769 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
19770 Print a status message if the toggle is called interactively.
19771 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
19772 for global minor modes and use `defcustom' for them.
19773 Use add-minor-mode.
19774 (easy-mmode-define-derived-mode): Remove.
19775 (define-derived-mode): Fancier default docstring.
19776 (easy-mmode-define-navigation): Signal an error rather than (ding).
19777
19778 * newcomment.el (comment-styles): New `box-multi'.
19779 (comment-normalize-vars): Better default for comment-continue to
19780 avoid whitespace-only continuations.
19781 (comment-search-forward): Always move even in the no-syntax case.
19782 (comment-padright): Only obey N if it's only obeyed for padleft.
19783 (comment-make-extra-lines): Better handling of empty continuations.
19784 Use `=' for the filler if comment-start has only one character.
19785 (uncomment-region): Try handling the special `=' filler.
19786 (comment-region): Allow LINES even if MULTI is nil.
19787 (comment-box): Choose box style based on comment-style.
19788
19789 2000-05-20 Kenichi Handa <handa@etl.go.jp>
19790
19791 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
19792 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
19793
19794 2000-05-20 Kenichi HANDA <handa@etl.go.jp>
19795
19796 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
19797 and insert, not subst-char-in-region.
19798
19799 * international/mule-diag.el (list-character-sets-1): Handle
19800 charsets eight-bit-control and eight-bit-graphic.
19801 (list-iso-charset-chars): Likewise.
19802 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
19803 charactes as is. Use indent-to to align characters.
19804
19805 * international/mule-cmds.el (find-multibyte-characters): Never
19806 exclude charsets eight-bit-control and eight-bit-graphic.
19807
19808 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
19809
19810 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
19811 Don't quote lambdas.
19812
19813 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
19814
19815 2000-05-19 Gerd Moellmann <gerd@gnu.org>
19816
19817 * gud.el (gud-jdb-directories): Doc fix.
19818
19819 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
19820
19821 * newcomment.el: New file.
19822
19823 2000-05-19 Gerd Moellmann <gerd@gnu.org>
19824
19825 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
19826
19827 2000-05-18 Andreas Schwab <schwab@suse.de>
19828
19829 * dired.el (dired-between-files): Also skip lines beginning with
19830 `used'.
19831
19832 2000-05-18 Gerd Moellmann <gerd@gnu.org>
19833
19834 * msb.el (msb-menu-cond): Add choice `user'.
19835
19836 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
19837
19838 * ps-print.el: Compatibility, customization and doc fix.
19839 (ps-printer-name-option): Replace defconst by defvar.
19840 (ps-postscript-code-directory): XEmacs compatibility.
19841 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
19842 fix.
19843 (ps-user-defined-prologue, ps-print-prologue-header)
19844 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
19845 compatibility and code fix.
19846 (ps-print-background-image, ps-print-background-text):
19847 Customization fix.
19848 (ps-line-number-start, ps-n-up-on): New vars.
19849
19850 2000-05-18 Espen Skoglund <esk@ira.uka.de>
19851
19852 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
19853 the indent-comment function to just return the appropriate indent.
19854
19855 2000-05-18 Eric M. Ludlam <zappo@ultranet.com>
19856
19857 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
19858 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
19859 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
19860
19861 2000-05-18 Dave Love <fx@gnu.org>
19862
19863 * info.el (Info-fontify-node): Add intangible property as well as
19864 invisible.
19865
19866 * calendar/appt.el (appt-make-list): Match all lines of entry.
19867 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
19868
19869 2000-05-18 Kenichi Handa <handa@etl.go.jp>
19870
19871 * international/mule-diag.el (describe-char-after): Call
19872 internal-char-font, not char-font. If internal-char-font returns
19873 nil, display "-- none --".
19874
19875 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
19876
19877 * image.el (image-type-available-p): Don't reference image-types
19878 if it isn't bound.
19879
19880 2000-05-17 Stefan Monnier <monnier@cs.yale.edu>
19881
19882 * autoarg.el (autoarg-mode): Typo in the :set argument.
19883
19884 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
19885
19886 * startup.el (command-line-1): Don't signal an error if the
19887 directory for auto-save-list files does not yet exist.
19888
19889 2000-05-17 Kenichi Handa <handa@etl.go.jp>
19890
19891 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
19892
19893 2000-05-16 Stefan Monnier <monnier@cs.yale.edu>
19894
19895 * subr.el (remove-hook): `setq' hook-value, not `set'.
19896
19897 2000-05-16 Sam Steingold <sds@gnu.org>
19898
19899 * info.el (debug-ignored-errors): More errors to ignore.
19900
19901 2000-05-16 Dave Love <fx@gnu.org>
19902
19903 * cus-edit.el: Don't require cl or easymenu.
19904 (custom-variable-prompt): Test standard-value property, not
19905 user-variable-p.
19906
19907 2000-05-16 Sam Steingold <sds@gnu.org>
19908
19909 * subr.el (add-hook): `setq' hook-value, not `set'.
19910
19911 2000-05-16 Gerd Moellmann <gerd@gnu.org>
19912
19913 * startup.el (command-line-1): Mention the FAQ in the startup
19914 message.
19915
19916 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
19917
19918 * progmodes/compile.el (compilation-parse-errors): Collect
19919 `nomessage' regexps last.
19920
19921 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
19922
19923 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
19924 to the function name.
19925
19926 2000-05-15 Dave Love <fx@gnu.org>
19927
19928 * speedbar.el (speedbar-recenter): Typo.
19929 (speedbar-expand-line): Make arg optional.
19930 (speedbar-mode): Avoid a compiler warning.
19931
19932 2000-05-15 Gerd Moellmann <gerd@gnu.org>
19933
19934 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
19935 user-specified option string is empty.
19936
19937 * mouse.el (mouse-yank-at-click): Doc fix.
19938
19939 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
19940
19941 * term/internal.el (IT-character-translations): More updates of
19942 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
19943 documents.
19944
19945 2000-05-15 Gerd Moellmann <gerd@gnu.org>
19946
19947 * env.el (getenv): New function, interactively callable.
19948 (setenv, getenv): Remove autoload cookies.
19949
19950 * loadup.el: Load `env'.
19951
19952 * progmodes/f90.el: Change author's mail address.
19953
19954 2000-05-14 Dave Love <fx@gnu.org>
19955
19956 * mail/rmail.el (rmail-show-message-hook): Customize and offer
19957 goto-addr as an option.
19958
19959 * help.el (help-xref-stack): Doc fix.
19960 (help-xref-following): New variable.
19961 (help-make-xrefs): Use it.
19962 (help-xref-go-back): Use position information from stack element.
19963 (help-follow): Make position in stack element a pair. Use
19964 help-xref-following.
19965
19966 * autoarg.el: New file.
19967
19968 * faces.el: Declare more functions obsolete.
19969
19970 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
19971 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
19972 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
19973 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
19974 Remove all the setup-...-environment functions.
19975
19976 2000-05-13 Eric M. Ludlam <zappo@ultranet.com>
19977
19978 * speedbar.el: Updated the commentary section. xemacs20p now uses
19979 >= when detecting. Require `defimage' safely.
19980 (speedbar-easymenu-definition-base): Add toggle for images.
19981 (speedbar-easymenu-definition-special): Add flush cache & expand.
19982 (speedbar-visiting-tag-hook): Set new defaults. Added options.
19983 (speedbar-reconfigure-keymaps-hook): New variable.
19984 (speedbar-frame-parameters): Updated documentation.
19985 (speedbar-use-imenu-flag): Updated custom tag
19986 (speedbar-dynamic-tags-function-list): New variable.
19987 (speedbar-tag-hierarchy-method): Updated doc & custom.
19988 (speedbar-indentation-width, speedbar-indentation-width) New
19989 variables.
19990 (speedbar-hide-button-brackets-flag): Customizable.
19991 (speedbar-vc-indicator): Doc update.
19992 (speedbar-ignored-path-expressions): Updated default value.
19993 (speedbar-supported-extension-expressions): Updated default value.
19994 (speedbar-syntax-table): Remove {} paren status.
19995 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
19996 as "+". Added overlay aliases.
19997 (speedbar-mode): Use `speedbar-mode-line-update' instead of
19998 `force-mode-line-update'.
19999 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
20000 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
20001 `mouse-set-point'
20002 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
20003 (speedbar-item-info-tag-helper): Revamped to handle a wider range
20004 of arbitrary text, and new helper functions.
20005 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
20006 filename finder.
20007 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
20008 (speedbar-directory-buttons): Update path search/expansion.
20009 (speedbar-make-tag-line): Pay attention to
20010 `speedbar-indentation-width'. Use more care w/ invisible
20011 properties.
20012 (speedbar-change-expand-button-char): Call
20013 `speedbar-insert-image-button-maybe'.
20014 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
20015 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
20016 (speedbar-trim-words-tag-hierarchy)
20017 (speedbar-simple-group-tag-hierarchy): New functions
20018 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
20019 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
20020 functions.
20021 (speedbar-mouse-set-point): New function
20022 (speedbar-power-click): Updated documentation.
20023 (speedbar-line-token, speedbar-goto-this-file): Handle more types
20024 of tag prefix text.
20025 (speedbar-expand-line, speedbar-contract-line): Make more robust
20026 to strange text.
20027 (speedbar-expand-line): Takes universal argument to flush the
20028 cache.
20029 (speedbar-flush-expand-line): New function.
20030 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
20031 Use new generator insertion method.
20032 (speedbar-fetch-dynamic-tags): New function.
20033 (speedbar-fetch-dynamic-imenu): Removed code now handled in
20034 `speedbar-fetch-dynamic-imenu'.
20035 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
20036 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
20037 "Revert Buffer" menu items.
20038 (speedbar-buffer-buttons-engine): Be smarter when creating a
20039 filename tag (for expansion purposes.).
20040 (speedbar-highlight-one-tag-line,
20041 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
20042 (speedbar-recenter): New functions.
20043 (defimage-speedbar): Image loading abstraction.
20044 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
20045 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
20046 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
20047 (speedbar-tag-type, speedbar-tag-mail): New images.
20048 (speedbar-expand-image-button-alist): New variable.
20049 (speedbar-insert-image-button-maybe): Insert an image over some
20050 buttons.
20051
20052 2000-05-13 Kenichi Handa <handa@etl.go.jp>
20053
20054 * international/mule-cmds.el (encode-coding-char): An ASCII
20055 character is always encodable.
20056
20057 * international/mule-conf.el: Add more information in descriptions
20058 of character sets.
20059
20060 * international/mule-diag.el (describe-char-after): New function.
20061 (describe-font-internal): Adjusted for the change of font-info.
20062 (describe-font): Likewise.
20063 (print-fontset): Rewritten for the new fontset implementation.
20064 (describe-fontset): Include fontset alias names in completion.
20065 (list-fontsets): Adjusted for the change of print-fontset.
20066
20067 * simple.el (what-cursor-position): If DETAIL is non-nil, call
20068 describe-char-after instead of displaying the detail in the echo
20069 area.
20070 (syntax-code-table): Format changed.
20071 (string-to-syntax): Adjusted for the above change.
20072
20073 2000-05-12 Stefan Monnier <monnier@cs.yale.edu>
20074
20075 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
20076
20077 2000-05-12 Dave Love <fx@gnu.org>
20078
20079 * calendar/todo-mode.el: Remove some compatibility stuff and CL
20080 dependence. Use line-{beginning,end}-position, not
20081 point-at{b,e}ol. Some doc fixes.
20082 (todo-position): New function. Fix callers of position to use it.
20083 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
20084
20085 2000-05-12 Gerd Moellmann <gerd@gnu.org>
20086
20087 * time.el (display-time-mail-icon): Use `:ascent center'.
20088
20089 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
20090 handling FTP security extensions.
20091
20092 2000-05-11 Dave Love <fx@gnu.org>
20093
20094 * calendar/todo-mode.el: New file.
20095
20096 2000-05-11 Gerd Moellmann <gerd@gnu.org>
20097
20098 * comint.el (comint-read-input-ring): Move reference to
20099 comint-input-ring-size outside of the save-excursion. It was
20100 causing the default value to be the only one ever seen.
20101
20102 * font-lock.el: Update copyright. Remove Simon Marshall's email
20103 address on request from him.
20104
20105 * subr.el (substitute-key-definition): Add comment describing
20106 the meaning of PREFIX.
20107
20108 2000-05-10 Stefan Monnier <monnier@cs.yale.edu>
20109
20110 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
20111
20112 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
20113 (add-minor-mode): Don't make the variable buffer-local and add a
20114 reference to define-minor-mode in the docstring.
20115
20116 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
20117 HEADER/FOOTER and fix bug with trailing empty directory.
20118 (cvs-append-to-ignore): Use vc-editable-p if available.
20119 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
20120 (vc-do-command): Tweak advice to handle the new VC.
20121
20122 * log-view.el (log-view-goto-rev): New function for the new VC.
20123 (log-view-minor-wrap): Use mark-active.
20124
20125 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
20126 (log-edit-changelog-full-paragraphs): New var.
20127 (log-edit-insert-changelog): Remove a lonely leading `* file'.
20128 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
20129 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
20130 (log-edit-changelog-ours-p, log-edit-changelog-entries)
20131 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
20132 Replace the `cvs' prefix with `log-edit'.
20133
20134 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
20135
20136 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
20137 (diff-font-lock-defaults): Explicitly turn off multiline.
20138 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
20139 (diff-ediff-patch): Fix call to ediff-patch-file.
20140 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
20141 Handle comments.
20142
20143 * frame.el (automatic-hscrolling): Typo.
20144
20145 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
20146
20147 2000-05-09 Sam Steingold <sds@goems.com>
20148
20149 * apropos.el (apropos-print): use `describe-face' instead of
20150 `customize-face-other-window'.
20151
20152 2000-05-09 Dave Love <fx@gnu.org>
20153
20154 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
20155
20156 * help.el (describe-variable): Have customize button pop the
20157 help-xref stack when invoked.
20158 (help-xref-symbol-regexp): Add `face'.
20159 (help-make-xrefs): Check for quoted face names and adapt regexp
20160 submatch numbers to cope.
20161 (help-xref-interned): Maybe insert face doc too. Separate
20162 sections with a line of hyphens.
20163
20164 * faces.el: Some doc fixes. Declare some functions obsolete.
20165 (describe-face): Add customize button. Return the help
20166 text. Fix prompt.
20167
20168 2000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
20169
20170 * term/internal.el (IT-character-translations): Fix last change.
20171
20172 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
20173
20174 * woman.el: New file
20175 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
20176
20177 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
20178
20179 * term/internal.el (IT-character-translations): Update ASCII
20180 simulations for greek-iso8859-7, add latin-iso8859-14 and
20181 latin-iso8859-15.
20182
20183 * international/mule-cmds.el (set-language-info-alist): Call
20184 define-prefix-command with 3 arguments, to make the map suitable
20185 for a menu.
20186
20187 2000-05-07 Dave Love <fx@gnu.org>
20188
20189 * time.el: Small doc fixes from Pavel Jan\e,Am\e(Bk ml.
20190
20191 2000-05-05 Dave Love <fx@gnu.org>
20192
20193 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
20194 list in doc string. Don't quote keyword symbols.
20195 * emacs-lisp/cl.el: Likewise
20196 * emacs-lisp/cl-seq.el: Likewise
20197
20198 2000-05-05 Gerd Moellmann <gerd@gnu.org>
20199
20200 * abbrev.el (abbrev-mode): Make ARG optional.
20201
20202 2000-05-04 Gerd Moellmann <gerd@gnu.org>
20203
20204 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
20205
20206 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
20207
20208 * subr.el (substitute-key-definition): Clarify documentation.
20209
20210 2000-05-04 Milan Zamazal <pdm@freesoft.cz>
20211
20212 * glasses.el (glasses-convert-to-unreadable): Use
20213 `glasses-separator' instead of the hard-wired "_".
20214 (glasses-mode): Call `glasses-make-unreadable' only in a single
20215 place.
20216
20217 2000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
20218
20219 * term/internal.el (cjk-codepages-alist): Add associations for
20220 Chinese and Korean codepages. Remove FIXME comment.
20221
20222 2000-05-03 Dave Love <fx@gnu.org>
20223
20224 * time.el (display-time-mail-face, display-time-use-mail-icon):
20225 New option.
20226 (display-time-mail-icon): New variable.
20227 (display-time-string-forms): Use the above. Fix the local-map.
20228
20229 2000-05-03 Gerd Moellmann <gerd@gnu.org>
20230
20231 * replace.el (query-replace-map): Add binding for `E'.
20232 (query-replace-help): Extend help text.
20233 (perform-replace): Allow editing the replacement string.
20234
20235 * make-mode.el (makefile-mode-abbrev-table): New variable.
20236 (makefile-mode): Set local abbrev table to
20237 makefile-mode-abbrev-table.
20238 (makefile-font-lock-keywords): Fontify includes and conditionals.
20239
20240 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
20241 set TOGGLE's value.
20242
20243 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
20244 mail-interactive-insert-alias.
20245 (mail-abbrev-complete-alias): New command.
20246 (mail-mode-map): Bind it to `M-TAB'.
20247
20248 2000-05-03 Kenichi Handa <handa@etl.go.jp>
20249
20250 * language/lao-util.el (lao-compose-region): New function.
20251
20252 2000-05-02 Gerd Moellmann <gerd@gnu.org>
20253
20254 * files.el (recover-session): Make directories as necessary
20255 if they don't exist yet.
20256
20257 * calendar/cal-french.el
20258 (french-calendar-multibyte-special-days-array)
20259 (french-calendar-special-days-array): Change French text.
20260 (calendar-french-date-string): Change output.
20261 (calendar-goto-french-date): Likewise.
20262
20263 2000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
20264
20265 * wid-edit.el (widget-default-active): Obey `:always-active'.
20266 (widget-documentation-string-value-create): Set `:always-active'.
20267
20268 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
20269
20270 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
20271 default prefix to `~/_emacs.d/auto-save.list/_s'.
20272 (normal-top-level): Create the directory for auto-save files, if
20273 it doesn't already exist (in the ms-dos case only).
20274
20275 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
20276
20277 * international/mule-cmds.el (set-language-environment): Don't
20278 concat an integer (dos-codepage), use format instead.
20279
20280 2000-05-02 Dave Love <fx@gnu.org>
20281
20282 * help.el (help-xref-on-pp): Check for constant symbols.
20283
20284 2000-04-29 Gerd Moellmann <gerd@gnu.org>
20285
20286 * startup.el (normal-top-level): Put a condition-case around
20287 the code loading subdirs.el.
20288
20289 2000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
20290
20291 * ps-print.el: Upside-down and face background color printing,
20292 line number step, doc fix.
20293 (ps-print-version): New version number (5.2).
20294 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
20295 (ps-face-attribute-list, ps-plot-with-face): Code fix.
20296 (ps-spool-config): Var fix.
20297 (ps-printer-name-option): Const fix.
20298 (ps-print-upside-down, ps-use-face-background)
20299 (ps-line-number-step): New vars.
20300 (ps-window-system, ps-lp-system): New consts.
20301 (ps-face-background): New fun.
20302
20303 2000-04-28 Richard Stallman <rms@gnu.org>
20304
20305 * files.el (make-auto-save-file-name):
20306 Apply auto-save-file-name-transforms to visited file name
20307 before generating auto save file name.
20308 (auto-save-file-name-transforms): New variable.
20309
20310 * files.el (backup-enable-predicate):
20311 Correctly test for a file under a temporary directory.
20312
20313 2000-04-28 Gerd Moellmann <gerd@gnu.org>
20314
20315 * subr.el (add-minor-mode): Rewritten.
20316
20317 2000-04-28 Kenichi Handa <handa@etl.go.jp>
20318
20319 * mail/sendmail.el (sendmail-send-it): Set
20320 buffer-file-coding-system to the selected coding system for MIME
20321 header.
20322
20323 2000-04-27 Gerd Moellmann <gerd@gnu.org>
20324
20325 * dired.el (dired-move-to-filename-regexp): Allow format where
20326 YYYY is followed by two spaces.
20327
20328 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
20329 in the second character class of the regexp.
20330
20331 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
20332 mh-etc, too.
20333
20334 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
20335 nil.
20336
20337 * subr.el (add-minor-mode): Use `set' instead of `setq'.
20338
20339 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
20340 argument.
20341
20342 2000-04-27 Sen Nagata <sen@eccosys.com>
20343
20344 * emacs-lisp/crm.el (crm-completion-table): New variable.
20345 (crm-collection-fn, crm-test-completion)
20346 (completing-read-multiple): Use it.
20347
20348 2000-04-27 Dave Love <fx@gnu.org>
20349
20350 * help.el (locate-library): Use mapc.
20351 (help-manyarg-func-alist): Add call-process-region.
20352
20353 2000-04-26 Gerd Moellmann <gerd@gnu.org>
20354
20355 * subr.el (add-minor-mode): Make argument MAP optional.
20356
20357 * desktop.el (desktop-save): Save list of minor modes.
20358 (desktop-create-buffer): Restore minor modes.
20359 (desktop-minor-mode-table): New user-option.
20360
20361 * subr.el (add-minor-mode): New function.
20362
20363 * image.el (find-image): New function.
20364 (defimage): Rewritten to find image at load time.
20365
20366 * startup.el (normal-top-level-add-to-load-path): Handle
20367 case that the default directory is not in load-path.
20368
20369 * help.el: Old patch from Stefan Monnier.
20370 (help-xref-on-pp): New function.
20371 (describe-variable): Use it to display xrefs in a symbol's value.
20372
20373 2000-04-26 Stefan Monnier <monnier@cs.yale.edu>
20374
20375 * cus-edit.el (custom-face): Fix parenthesis.
20376
20377 2000-04-26 Kenichi Handa <handa@etl.go.jp>
20378
20379 * mail/rmail.el (rmail-expunge): When there are no deleted
20380 messages, do nothing.
20381
20382 2000-04-26 Dave Love <fx@gnu.org>
20383
20384 * international/mule-cmds.el (locale-translation-file-name):
20385 Defvar to nil.
20386 (set-locale-environment): Set it here (at runtime).
20387
20388 2000-04-25 Gerd Moellmann <gerd@gnu.org>
20389
20390 * replace.el (perform-replace): Add parameters START and END. Use
20391 them instead of the check for a region in Transient Mark mode.
20392 (query-replace-read-args): Return two more list elements for the
20393 start and end of the region in Transient Mark mode.
20394 (query-replace, query-replace-regexp, query-replace-regexp-eval)
20395 (map-query-replace-regexp, replace-string, replace-regexp): Add
20396 optional last arguments START and END and pass them to
20397 perform-replace.
20398
20399 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
20400 form with additional arguments for perform-replace.
20401
20402 * progmodes/etags.el (tags-query-replace): Add parameters START
20403 and END. Construct a form with additional arguments for
20404 perform-replace.
20405
20406 * simple.el (shell-command): Set default directory for "*Shell
20407 Command Output" buffer.
20408
20409 * language/european.el (iso-latin-4): Fix typo.
20410
20411 * emacs-lisp/crm.el: New file.
20412
20413 2000-04-24 Dave Love <fx@gnu.org>
20414
20415 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
20416 (Custom-reset-saved, Custom-reset-standard)
20417 (custom-group-value-create, custom-group-set, custom-group-save)
20418 (custom-group-reset-current, custom-group-reset-saved)
20419 (custom-group-reset-standard): Use mapc.
20420 (custom-buffer-create-internal): Disable undo when creating items.
20421 Use mapc.
20422 (custom-face): Avoid redundant lambda.
20423
20424 2000-04-24 Gerd Moellmann <gerd@gnu.org>
20425
20426 * startup.el (auto-save-list-file-prefix): Set default to
20427 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
20428
20429 2000-04-24 Sam Steingold <sds@gnu.org>
20430
20431 * time-stamp.el (time-stamp-string-preprocess): Always convert
20432 `field-result' to a string.
20433
20434 2000-04-24 Gerd Moellmann <gerd@gnu.org>
20435
20436 * frame.el (scrolling): New group.
20437 (automatic-hscrolling): New user-option.
20438
20439 * startup.el (command-line-x-option-alist): Add `-lsp' and
20440 `--line-spacing'.
20441
20442 2000-04-19 Dave Love <fx@gnu.org>
20443
20444 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
20445 (cl-mapc): Rename from mapc. Fix the funcall.
20446
20447 2000-04-19 Gerd Moellmann <gerd@gnu.org>
20448
20449 * simple.el (clone-indirect-buffer-other-window): New command.
20450 (clone-indirect-buffer): Add optional arg NORECROD.
20451 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
20452
20453 * help.el (resize-temp-buffer-window): Use count-screen-lines.
20454
20455 * window.el (count-screen-lines): New function.
20456 (shrink-window-if-larger-than-buffer): Use count-screen-lines
20457 instead of window-buffer-height.
20458
20459 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
20460 non-existing variable comint-input-sentinel.
20461 (inferior-lisp-args-to-list): Removed.
20462 (inferior-lisp): Use split-string instead of
20463 inferior-lisp-args-to-list.
20464
20465 * hexl.el (hexl-insert-hex-string): New command.
20466
20467 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
20468 instead of concat.
20469
20470 2000-04-18 Gerd Moellmann <gerd@gnu.org>
20471
20472 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
20473 at the start of an existing but empty folder.
20474
20475 2000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
20476
20477 * ps-mule.el: Customization fix, doc fix.
20478 (ps-multibyte-buffer): Customization fix.
20479
20480 2000-04-17 Richard M. Stallman <rms@gnu.org>
20481
20482 * subr.el (read-passwd): Use read-char-exclusive.
20483
20484 2000-04-17 Gerd Moellmann <gerd@gnu.org>
20485
20486 * textmodes/texinfo.el (texinfo-insert-@email)
20487 (texinfo-insert-@emph, texinfo-insert-@quotation)
20488 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
20489 (texinfo-mode-map): Add key bindings for them.
20490
20491 * files.el (basic-save-buffer-2): Use a template with `$'
20492 instead of `#' for VMS.
20493
20494 * simple.el (clone-indirect-buffer): New function.
20495
20496 2000-04-16 Stephen Eglen <stephen@gnu.org>
20497
20498 * iswitchb.el (iswitchb-case): New function. If the user input
20499 contains any upper-case characters, the search is made
20500 case-sensitive.
20501
20502 2000-04-17 Stefan Monnier <monnier@cs.yale.edu>
20503
20504 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
20505 comment-end.
20506 (texinfo-font-lock-syntactic-keywords): New var.
20507 (texinfo-font-lock-keywords): Remove comment regexp.
20508 (texinfo-insert-block): New function.
20509 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
20510 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
20511 and font-lock-defaults. Use regexp-opt for outline-regexp.
20512 (texinfo-environments): New var.
20513 (texinfo-environment-regexp): Use regexp-opt and
20514 texinfo-environments.
20515
20516 * textmodes/ispell.el (ispell-menu-map-needed): Check that
20517 ispell-process is bound since this might be eval'd before ispell
20518 is loaded.
20519 (ispell-message): Use a tiny bit less magic and a bit more hard
20520 data to figure out what kind of sc-cite-regexp to use.
20521
20522 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
20523
20524 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
20525 (insert-cyclic-diary-entry): Unquote the lambda.
20526
20527 * gud.el (gud-jdb-build-source-files-list): Fix typo.
20528
20529 * files.el (backup-enable-predicate): Unquote the lambda.
20530
20531 * cus-edit.el (custom-face, face): Unquote the lambda.
20532
20533 2000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
20534
20535 * ps-print.el: Check for line-beginning-position definition.
20536
20537 * ps-print.el: Fix counting lines in a region.
20538 (ps-print-version): New version number (5.1.5).
20539 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
20540 (ps-printing-region): Fun code fix.
20541
20542 2000-04-15 Gerd Moellmann <gerd@gnu.org>
20543
20544 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
20545 to file-directory-p.
20546
20547 2000-04-14 Gerd Moellmann <gerd@gnu.org>
20548
20549 * gud.el (gud-jdb-build-source-files-list): Check that directory
20550 exists before calling directory-files.
20551
20552 2000-04-13 Dave Love <fx@gnu.org>
20553
20554 * emacs-lisp/trace.el: Change maintainer. Use new backquote
20555 syntax.
20556
20557 * emacs-lisp/cl-specs.el: Remove when, unless.
20558
20559 * emacs-lisp/cl-extra.el: Don't quote keywords.
20560 (cl-old-mapc): New variable.
20561 (mapc): Use it.
20562 (cl-map-intervals): Use with-current-buffer. Don't check for
20563 next-property-change.
20564 (cl-map-overlays): Use with-current-buffer.
20565 (cl-expt): Remove.
20566 (copy-tree, remprop): Define unconditionally.
20567
20568 * emacs-lisp/cl-compat.el (keywordp): Remove.
20569
20570 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
20571 to use keywordp.
20572 (edebug-spec): Enable keywordp.
20573
20574 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
20575 string-lessp.
20576
20577 * cus-start.el: Use keywordp.
20578
20579 2000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
20580
20581 * diary-lib.el (include-other-diary-files): Fix the fix of
20582 2000-02-18 by doing a save-excursion.
20583
20584 2000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
20585
20586 * ps-print.el: Customization fix, doc fix.
20587 (ps-print-version): New version number (5.1.4).
20588 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
20589 (ps-print-preprint): Adjust code.
20590 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
20591 (ps-print-prologue-header, ps-print-control-characters)
20592 (ps-spool-config): Customization fix.
20593
20594 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
20595
20596 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
20597 converted to the new menu-item format, names silightly changed,
20598 help strings added.
20599
20600 Support for spelling without async subprocesses:
20601
20602 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
20603 (ispell-session-buffer): New variables.
20604 (ispell-start-process, ispell-process-status,
20605 ispell-accept-output, ispell-send-string): New functions, for
20606 Ispell invocation when async subprocesses aren't supported.
20607 (ispell-word, ispell-pdict-save, ispell-command-loop,
20608 ispell-process-line, ispell-buffer-local-parsing): Replace calls
20609 to process-send-string with calls to ispell-send-string, and
20610 accept-process-output with ispell-accept-output.
20611 (ispell-init-process): Call ispell-process-status instead of
20612 process-status with.
20613 (ispell-init-process): Call ispell-start-process. Call
20614 ispell-accept-output and ispell-send-string. Don't call
20615 process-kill-without-query and kill-process if they are unbound.
20616 (ispell-async-processp): New function.
20617
20618 2000-04-12 Dave Love <fx@gnu.org>
20619
20620 * info.el: Add debug-ignored-errors.
20621 (Info-mode-menu): Add some items.
20622 (Info-directory): Add autoload cookie.
20623
20624 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
20625 Modify `truncate-lines'. Make `describe-language-environment'
20626 always visible and add help. Modify `describe-key' help. Invoke
20627 Info-directory from `info'. New entry `emacs-manual'.
20628
20629 2000-04-10 Gerd Moellmann <gerd@gnu.org>
20630
20631 * progmodes/ebrowse.el (ebrowse-tree-mode):
20632 Use propertized-buffer-identification.
20633 (ebrowse-update-member-buffer-mode-line): Likewise.
20634 (ebrowse--mode-strings): Removed.
20635 (ebrowse--mode-line-props): Removed.
20636
20637 * files.el (auto-mode-alist): Add `EBROWSE'.
20638
20639 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
20640 space before testing for end of buffer.
20641 (ebrowse-load): Removed.
20642 (ebrowse-revert-tree-buffer-from-file): Rewritten.
20643 (ebrowse-create-tree-buffer): Rewritten.
20644 (ebrowse-tree-mode): Read tree from buffer.
20645
20646 * progmodes/ebrowse-ffh.el: Removed.
20647
20648 2000-04-10 Kenichi Handa <handa@etl.go.jp>
20649
20650 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
20651
20652 2000-04-10 Gerd Moellmann <gerd@gnu.org>
20653
20654 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
20655 at the wrong place.
20656
20657 2000-04-09 Dave Love <fx@gnu.org>
20658
20659 * files.el (backup-enable-predicate):
20660 Use temporary-file-directory, small-temporary-file-directory.
20661 (make-backup-file-name-function, backup-directory-alist): New vars.
20662 (make-backup-file-name-1): New function.
20663 (make-backup-file-name): Use it.
20664 (find-backup-file-name): Likewise. Use format for clarity, not concat.
20665 (file-newest-backup): Use make-backup-file-name.
20666
20667 2000-04-09 Gerd Moellmann <gerd@gnu.org>
20668
20669 * progmodes/ebrowse-ffh.el: New file.
20670
20671 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn):
20672 Moved to ebrowse-ffh.el.
20673 (ebrowse-load): Add autoload.
20674
20675 * finder.el (finder-commentary): Add autoload cookie.
20676
20677 * mail/rfc2368.el: Correct author's email address.
20678
20679 * progmodes/ebrowse.el: New file.
20680
20681 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
20682 item help string.
20683 (easy-menu-do-add-item): Ditto.
20684 (easy-menu-define): Extend doc string.
20685
20686 * jit-lock.el (with-buffer-unmodified): Use restore-buffer-modified-p.
20687 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
20688 (jit-lock-function, jit-lock-stealth-fontify): Don't use
20689 with-buffer-unmodified.
20690
20691 2000-04-08 Dave Love <fx@gnu.org>
20692
20693 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
20694 unless, when.
20695
20696 2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
20697
20698 * viper-util.el (viper-put-on-search-overlay): New subroutine.
20699 (viper-flash-search-pattern): No operation when using Emacs
20700 doesn't support face.
20701 Use `viper-put-on-search-overlay'.
20702
20703 2000-04-04 Gerd Moellmann <gerd@gnu.org>
20704
20705 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
20706 like C-r.
20707
20708 * progmodes/make-mode.el: Some doc fixes.
20709 (makefile-mode-abbrev-table): New variable.
20710 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
20711 (makefile-font-lock-keywords): Fontify includes and conditionals.
20712 (toplevel): Require `dabbrev' and `add-log' when compiling.
20713
20714 * replace.el (perform-replace): Don't move forward one char
20715 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
20716 to do that because it leaves point 1 position after the last
20717 replacement, after everything has been replaced.
20718
20719 * jit-lock.el (with-buffer-unmodified): New macro.
20720 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
20721 modified state.
20722 (jit-lock-function-1): Extracted from jit-lock-function; not
20723 preserving buffer's modified state.
20724 (jit-lock-function, jit-lock-stealth-fontify):
20725 Call jit-lock-function-1.
20726
20727 * mail/rfc2368.el: Remove supernumerary copyright line.
20728
20729 2000-04-04 Milan Zamazal <pdm@freesoft.cz>
20730
20731 * glasses.el: Provide facilities for inserting space before left
20732 parentheses and uncapitalization of identifiers.
20733 (glasses-mode): Try to remove old overlays in all cases.
20734
20735 2000-04-03 Gerd Moellmann <gerd@gnu.org>
20736
20737 * progmodes/compile.el (compile-internal): Display the compilation
20738 buffer in a different frame, if it's already displayed there.
20739
20740 * mail/rfc2368.el: New file.
20741
20742 * simple.el (sendmail-user-agent-compose): Recognize a `body'
20743 header and insert its value as mail body.
20744
20745 * subr.el (member-ignore-case): New function.
20746
20747 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
20748 (dabbrev--find-expansion): Ignore buffers matching a regexp
20749 from dabbrev-ignored-regexps.
20750
20751 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
20752 to extensions handled by gzip.
20753
20754 2000-04-03 Richard M. Stallman <rms@gnu.org>
20755
20756 * files.el (insert-directory): List the total free space
20757 along with the used space.
20758
20759 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
20760 line is followed by one that matches CITATION-REGEXP, end the
20761 paragraph.
20762
20763 2000-04-03 Markus Rost <rost@delysid.gnu.org>
20764
20765 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
20766 (rmail-make-basic-summary-line): Use that option.
20767
20768 2000-04-03 Kenichi Handa <handa@etl.go.jp>
20769
20770 * international/mule-cmds.el (encoded-string-description):
20771 Rewritten. Try pretty description for ISO 2022 escape sequences
20772 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
20773 for hexadecimal format.
20774
20775 2000-04-01 Dave Love <fx@gnu.org>
20776
20777 * cpp.el: Change customization group to `c' from `C'.
20778
20779 * vcursor.el (vcursor-move): Use display-color-p.
20780
20781 * international/mule-util.el: Provide mule-utils.
20782 (string-to-sequence): Simplify and speed up.
20783
20784 * international/mule.el (make-coding-system): Purecopy doc-string.
20785
20786 * international/mule-cmds.el: Various menu changes.
20787 (describe-specified-language-support): Handle `Default'.
20788 (set-language-info): Purecopy `info'.
20789
20790 2000-03-31 Andrew Innes <andrewi@gnu.org>
20791
20792 * vc.el (vc-backend-diff): Return the correct status if we had to
20793 retry the rcsdiff command without the --brief option.
20794
20795 2000-03-31 Dave Love <fx@gnu.org>
20796
20797 * help.el (help-manyarg-func-alist): Correct several omissions.
20798
20799 * add-log.el: Don't require cl, fortran.
20800 (add-log-current-defun-function): Doc fix.
20801 (change-log-version-number-regexp-list): Remove SCCS part. Doc fix.
20802 (change-log-version-rcs): Function deleted.
20803 (change-log-version-number-search): Doc fix.
20804 Use vc-workfile-version. Avoid CL dolist.
20805 (add-change-log-entry): Just call add-log-current-defun to get
20806 defun. Simplify somewhat.
20807 (change-log-get-method-definition-1): Likewise.
20808 (add-log-current-defun): Return nil if calling
20809 add-log-current-defun-function does so. Move Fortran stuff to
20810 fortran.el. Return string without properties.
20811
20812 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
20813 and :alpha: char classes.
20814
20815 * mail/supercite.el: Defvar curline when compiling.
20816 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
20817 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
20818 rather than a-zA-Z0-9 to allow non-ASCII characters.
20819
20820 2000-03-31 Gerd Moellmann <gerd@gnu.org>
20821
20822 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
20823
20824 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
20825 Re-enable new code.
20826
20827 * lpr.el (print-region-1): Use -d to specify printer name for
20828 systems `usg-unix-v*, `dgux', `hpux', `irix'.
20829
20830 2000-03-31 Dave Love <fx@gnu.org>
20831
20832 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
20833 Look for function definition in symbol's function value slot first
20834 instead of first consulting byte-compile-function-environment.
20835
20836 2000-03-31 Kenichi Handa <handa@etl.go.jp>
20837
20838 * language/european.el ("Polish"): New language environment.
20839 (setup-polish-environment): New function.
20840
20841 2000-03-30 Gerd Moellmann <gerd@gnu.org>
20842
20843 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
20844 Disable new code.
20845
20846 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
20847 trying to `load' the symbol of an autoload instead of the file
20848 recorded in the autoload. Fix error messages.
20849
20850 2000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
20851
20852 * ps-print.el: PostScript programming fix for ghostview, doc fix.
20853 (ps-print-version): New version number (5.1.3).
20854 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
20855 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
20856 (ps-generate-postscript-with-faces): Code fix.
20857 (ps-color-values): XEmacs compatibility.
20858 (ps-print-background-image, ps-print-background-text, ps-printer-name)
20859 (ps-default-fg, ps-default-bg): Adjust customization.
20860 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
20861 (ps-color-scale): Renaming old ps-color-value fun.
20862 (ps-print-headers): Replace ps-print-header group to avoid conflict
20863 with ps-print-header variable.
20864 (ps-print-miscellany): New group.
20865 (ps-format-color, ps-rgb-color): New funs.
20866 (ps-default-foreground): New var.
20867 (ps-printer-name-option): New const.
20868
20869 2000-03-30 Peter Breton <pbreton@ne.mediaone.net>
20870
20871 * net/net-utils.el:
20872 (network-connection-host, network-connection-service): New variables
20873 (network-connection-mode): New mode, derived from comint-mode
20874 (network-connection-mode-setup): New function, saves host and
20875 service information in local variables.
20876
20877 * lisp/locate.el:
20878 (locate-word-at-point): Added this function
20879 (locate): Default to using locate-word-at-point as input
20880 Run dired-mode-hook
20881
20882 2000-03-29 Dave Love <fx@gnu.org>
20883
20884 * calendar/appt.el: Doc fixes.
20885 (appt-check): Convert min-to-app to a string before passing to
20886 appt-disp-window-function or concat.
20887 (appt-delete-window): Remove test for frame-root-window.
20888 (appt-select-lowest-window, appt-convert-time): Simplify.
20889
20890 * emacs-lisp/bytecomp.el: Doc fixes.
20891 (byte-compile-file-form-autoload):
20892 Update byte-compile-function-environment.
20893
20894 2000-03-29 Andreas Schwab <schwab@suse.de>
20895
20896 * emacs-lisp/autoload.el: Also print defsubst doc string specially.
20897
20898 * dired.el (dired-insert-directory): If dired-free-space-program
20899 failed just delete its output.
20900
20901 2000-03-29 Dave Love <fx@gnu.org>
20902
20903 * international/iso-cvt.el: Move provide to end. Doc fixes.
20904 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
20905 (iso-iso2sgml, iso-sgml2iso): New functions.
20906 (iso-cvt-define-menu): Fix some entries and use backquote for
20907 clarity.
20908
20909 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
20910
20911 2000-03-28 Gerd Moellmann <gerd@gnu.org>
20912
20913 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
20914 ISO-DATE. If non-nil, return date in ISO 8601 format.
20915
20916 2000-03-26 Stefan Monnier <monnier@cs.yale.edu>
20917
20918 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
20919 if it ever becomes used.
20920 (log-edit-mode-hook): Default to vc-log-mode-hook.
20921 (log-edit-mode): Fix the docstring.
20922
20923 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
20924 the code.
20925
20926 2000-03-26 Dave Love <fx@gnu.org>
20927
20928 * net/browse-url.el (browse-url): Re-fix case of
20929 browse-url-browser-function being an alist.
20930 (browse-url): Add :link to defgroup.
20931
20932 * files.el: Doc fixes.
20933 (file-truename): Include `[' in wildcard characters.
20934 (automount-dir-prefix): Customize.
20935 (find-file-wildcards): Add :version.
20936 (find-file-noselect): Simplify a mapcar call.
20937
20938 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
20939 compatible with inf-lisp version.
20940 (eval-defun-1): Fix custom-declare-variable case.
20941
20942 2000-03-25 Stefan Monnier <monnier@cs.yale.edu>
20943
20944 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
20945
20946 2000-03-24 Gerd Moellmann <gerd@gnu.org>
20947
20948 * Makefile (COMPILE_FIRST): New macro.
20949 (compile-files): Compile files from COMPILE_FIRST first.
20950
20951 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new code.
20952
20953 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
20954 matching open parenthesis in column 0 to defun-prompt-regexp
20955 only if open-paren-in-column-0-is-defun-start is set.
20956
20957 * sun-curs.el: Require CL at compile-time only.
20958
20959 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
20960 instead of copy-list which is a function from CL.
20961 (msb--choose-menu, msb--mode-menu-cond)
20962 (msb--create-buffer-menu-2): Use dolist instead of mapc.
20963 (msb--init-file-alist): Use mapcar instead of mapcan.
20964 (msb--aggregate-alist): Use mapcar instead of mapcan.
20965 Fix `(' in column 0 in doc string.
20966 (msb--add-separators): Use mapcar instead of mapcan.
20967
20968 * cus-dep.el: Require CL at compile-time only.
20969
20970 2000-03-24 Stefan Monnier <monnier@cs.yale.edu>
20971
20972 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
20973 (byte-compile-warnings): New warning `noruntime'.
20974 (byte-compile-constants, byte-compile-variables): Fix docstring.
20975 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
20976 execute `eval-whenc-compile's body.
20977 (byte-compile-unresolved-functions): Fix docstring.
20978 (byte-compile-eval): New function.
20979 (byte-compile-callargs-warn): Check if the function will be available
20980 at runtime (via property `byte-compile-noruntime').
20981 (byte-compile-print-syms): New function.
20982 (byte-compile-warn-about-unresolved-functions): Also warn about
20983 `noruntime' functions (and use `byte-compile-print-syms').
20984 (byte-compile-file): Capitalize the message.
20985
20986 2000-03-24 Gerd Moellmann <gerd@gnu.org>
20987
20988 * mail/rmail.el (rmail-confirm-expunge): New user-option.
20989 (rmail-expunge): Ask for confirmation depending on the setting
20990 of rmail-confirm-expunge.
20991
20992 2000-03-23 Gerd Moellmann <gerd@gnu.org>
20993
20994 * Makefile (bootstrap-clean): If $(emacs) exists, build
20995 loaddefs.el first. A loaddefs.el that's not up-to-date might
20996 cause a bootstrap failure because things don't autoload as expected.
20997
20998 2000-03-23 Dave Love <fx@gnu.org>
20999
21000 * net/browse-url.el: Restore previous use of
21001 browse-url-maybe-new-window.
21002
21003 2000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
21004
21005 * ps-print.el: Skip banner page fix.
21006 (ps-print-version): New version number (5.1.2).
21007 (ps-begin-file, ps-end-file, ps-generate): Code fix.
21008
21009 2000-03-23 Dave Pearson <davep@davep.org>
21010
21011 * net/quickurl.el Changed the type of parameter passed to the
21012 function defined by `quickurl-format-function'. Before only the
21013 text of the URL was passed. Now the whole URL structure is passed
21014 and the function is responsible for extracting the parts it requires.
21015 Changed the default of `quickurl-format-function' accordingly.
21016 (quickurl-insert): Changed the `funcall' of
21017 `quickurl-format-function' to match the above change.
21018 (quickurl-list-insert): Changed the `url' case so that it makes
21019 use of `quickurl-format-function', previous to this the format was
21020 hard wired.
21021
21022 2000-03-22 Gerd Moellmann <gerd@gnu.org>
21023
21024 * startup.el: Change some spellings for the X Window System.
21025
21026 2000-03-22 Stefan Monnier <monnier@cs.yale.edu>
21027
21028 * progmodes/make-mode.el (makefile-warn-suspicious-lines):
21029 Clean up the code and the regexp and make sure the cursor is
21030 temporarily moved to the suspicious line while querying the user.
21031
21032 2000-03-22 Jason Rumney <jasonr@gnu.org>
21033
21034 * w32-fns.el (w32-charset-info-alist): Initialize.
21035
21036 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
21037
21038 * ps-print.el: N-up last page fix.
21039 (ps-print-version): New version number (5.1.1).
21040 (ps-end-file, ps-end-job, ps-generate): Code fix.
21041
21042 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
21043
21044 * files.el (find-file-run-dired): Update docstring.
21045 (find-directory-functions): New hook.
21046 (find-file-noselect): Run find-directory-functions rather than
21047 calling dired directly.
21048
21049 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
21050
21051 * pcvs.el: Add a minimal leading commentary.
21052 (cvs-make-cvs-buffer): Change the header part by removing the startup
21053 message and adding a `Module' entry. Also replace the FOOTER and
21054 HEADER special fileinfos with the new support in ewoc for updating
21055 its own footer and header.
21056 (cvs-update-header): Update to use the header/footer of the ewoc.
21057 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
21058 (cvs-is-within-p): New function.
21059 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
21060 to only examine some subset of the buffers.
21061
21062 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
21063 `format' instead of our own ad-hoc functions.
21064 Remove HEADER and FOOTER cases, now handled in the EWOC.
21065 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
21066
21067 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
21068 output to avoid scaring the user.
21069 (cvs-parse-table): Catch message for non-up-to-date commits.
21070
21071 * pcvs-defs.el (cvs-startup-message): Remove.
21072 (cvs-global-menu): New autoloaded menu.
21073
21074 * pcvs-util.el (cvs-string-fill): Remove.
21075
21076 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
21077 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
21078 PP part of it and also make it work for footers and headers.
21079 (ewoc-create): Drop POS and BUFFER arguments.
21080 Use the DLL's dummy node to store the end-of-footer position.
21081 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
21082 (ewoc-refresh): Remove unused `header' variable.
21083 (ewoc-(get|set)-hf): New functions.
21084
21085 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
21086 log-view-*-(message|file) and use easy-mmode-define-navigation.
21087 (log-view-message-re): Match SCCS format as well.
21088 And match the revision line rather than the dashed separator line.
21089 (log-view-mode): Use the new define-derived-mode.
21090 (log-view-current-tag): Fill in with an actual implementation.
21091
21092 * cvs-status.el (cvs-status-(prev|next)): Rename from
21093 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
21094 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
21095 to let the output "breathe" a little more (more readable).
21096 (cvs-status-mode): Use the new define-derived-mode.
21097
21098 * smerge-mode.el (smerge-auto-leave): New function and variable.
21099 (smerge-basic-map): Rename from smerge-basic-keymap.
21100 Change the bindings for smerge-diff-*.
21101 (smerge-*-map): Use easy-mmode-defmap.
21102 (smerge-(next|prev)): Use easy-mmode-define-navigation.
21103 (smerge-keep-*): Use smerge-auto-leave.
21104
21105 2000-03-21 Jason Rumney <jasonr@gnu.org>
21106
21107 * cus-edit.el (custom-button-face): Use 3D look for w32.
21108 (custom-button-pressed-face): Likewise.
21109
21110 2000-03-21 Gerd Moellmann <gerd@gnu.org>
21111
21112 * progmodes/etags.el (tags-case-fold-search): New user-option.
21113 (tags-loop-eval): New function. Bind case-fold-search around eval
21114 depending on the value of tags-case-fold-search.
21115 (tags-loop-continue): Use tags-loop-eval.
21116 (find-tag-in-order): Bind case-fold-search depending on the value
21117 of tags-case-fold-search.
21118
21119 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
21120
21121 * diff-mode.el (diff-mode-*-map): Use `easy-mmode-defmap'.
21122 (diff-end-of-hunk): Return the end position for use in
21123 `easy-mmode-define-navigation'.
21124 (diff-recenter): Remove.
21125 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
21126 of `easy-mmode-define-navigation'.
21127 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
21128 previous renaming) and fix to use new names.
21129 (diff-merge-strings): Use \n as separator: simpler, faster.
21130 (diff-mode): Use `define-derived-mode'.
21131
21132 * derived.el (define-derived-mode): Don't autoload anymore.
21133 Prefer the macro-only version provided by easy-mmode.el.
21134
21135 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
21136 `easy-mmode-define-derived-mode'. Use `combine-run-hooks'.
21137 (easy-mmode-define-navigation): New macro.
21138
21139 * subr.el (combine-run-hooks): New function.
21140
21141 2000-03-21 Kenichi HANDA <handa@etl.go.jp>
21142
21143 * term/x-win.el: Fontsets related initialization is simplified.
21144
21145 * international/mule-diag.el (describe-font): Don't refer to
21146 global-fontset-alist, instead call font-list.
21147 (describe-fontset, list-fontsets, mule-diag): Likewise.
21148 (print-fontset): Adjusted for the change of fontset implementation.
21149
21150 * international/fontset.el (x-charset-registries): Variable removed,
21151 instead the corresponding data is stored in the default fontset.
21152 (register-alternate-fontnames): Function removed.
21153 (resolved-ascii-font): Variable removed.
21154 (x-compose-font-name): Ignore the second argument REDOCE.
21155 (x-complement-fontset-spec): Complement only an ASCII font and
21156 element for those charsets than can use that ASCII font.
21157 (generate-fontset-menu): Don't refer to global-fontset-alist,
21158 instead call fontset-list.
21159 (uninstantiated-fontset-alist): Variable removed.
21160 (x-style-funcs-alist): Likewise.
21161 (fontset-default-styles): Likewise.
21162 (x-modify-font-name): Function removed.
21163 (create-fontset-from-fontset-spec): Ignore the argument STYLE-VARIANT.
21164 (create-fontset-from-ascii-font): Docsting adjusted for the above
21165 change.
21166 (instantiate-fontset, resolve-fontset-name): Functions removed.
21167 (fontset-list): Now implemented by C code.
21168
21169 * faces.el (read-face-font): Fix TABLE arg to completing-read.
21170 (describe-face): Include `font' attribute in the description.
21171
21172 2000-03-21 Kenichi Handa <handa@etl.go.jp>
21173
21174 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
21175
21176 2000-03-20 Gerd Moellmann <gerd@gnu.org>
21177
21178 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
21179 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
21180 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
21181
21182 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
21183 about behavior of set-buffer-modified-p wrt redisplay.
21184
21185 2000-03-19 Richard M. Stallman <rms@gnu.org>
21186
21187 * view.el (view-mode-disable): Kill local binding of view-read-only.
21188
21189 2000-03-18 Gerd Moellmann <gerd@gnu.org>
21190
21191 * font-lock.el (font-lock-apply-syntactic-highlight): If VALUE
21192 is a string, convert it to a syntax cell using string-to-syntax.
21193
21194 * simple.el (syntax-code-table, syntax-flag-table): New variables.
21195 (string-to-syntax): New function.
21196
21197 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
21198 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
21199 try to use passive ftp mode.
21200
21201 2000-03-17 Gerd Moellmann <gerd@gnu.org>
21202
21203 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
21204
21205 * simple.el (append-to-buffer): Update point of windows after
21206 insertion.
21207
21208 * abbrev.el (inverse-add-abbrev): Identify word by first moving
21209 forward then moving backward. Reindent.
21210
21211 * frame.el (other-frame): Call x-focus-frame only if
21212 focus-follows-mouse is off.
21213
21214 2000-03-17 Dave Love <fx@gnu.org>
21215
21216 * pcvs-util.el (cvs-strings->string): Rename replace-regexps-in-string.
21217
21218 2000-03-17 Stefan Monnier <monnier@cs.yale.edu>
21219
21220 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
21221 regexp for labels cannot span several lines.
21222
21223 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
21224 `(setq :<key> ':<key>)' to the macro expansion.
21225
21226 2000-03-16 Dave Love <fx@gnu.org>
21227
21228 * progmodes/f90.el (f90): Put custom group under `languages', not
21229 `fortran'.
21230 (f90-mode-hook): Customize.
21231 (f90-mode): Set add-log-current-defun-function.
21232 (f90-current-defun): New function.
21233
21234 2000-03-16 Gerd Moellmann <gerd@gnu.org>
21235
21236 * cus-edit.el (custom-variable-tag-face): Handle case that
21237 default face's height is not a number.
21238 (custom-face-tag-face, custom-group-tag-face-1)
21239 (custom-group-tag-face): Ditto.
21240 (custom-group-tag-face-1): Add :group.
21241
21242 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
21243
21244 2000-03-15 Gerd Moellmann <gerd@gnu.org>
21245
21246 * pcvs-defs.el (toplevel): Remove autoload cookie for form
21247 requiring easymenu.
21248
21249 2000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
21250
21251 * ps-print.el: PostScript user-defined prologue, PostScript error
21252 handler, doc fix.
21253 (ps-print-version): New version number (5.1).
21254 (ps-user-defined-prologue, ps-error-handler-message)
21255 (ps-print-prologue-0, ps-error-handler-alist): New vars.
21256 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
21257 (ps-insert-string): New function.
21258
21259 2000-03-15 Kenichi Handa <handa@etl.go.jp>
21260
21261 * international/ccl.el (ccl-compile-expression): Don't generate
21262 invalid self-assignment code.
21263
21264 2000-03-14 Dave Love <fx@gnu.org>
21265
21266 * subr.el (replace-regexp-in-string): Renamed from
21267 replace-regexps-in-string. Doc fix.
21268
21269 2000-03-12 Dave Love <fx@gnu.org>
21270
21271 * cus-edit.el: Doc fixes.
21272 (customize-set-variable, customize-save-variable): Rename args for doc.
21273 (custom-variable-tag-face, custom-face-tag-face)
21274 (custom-group-tag-face-1, custom-group-tag-face): Modify from
21275 style which user identify as hyperlink.
21276 (hook): Don't add undefined functions to the hook.
21277 (debug-ignored-errors): Transfer message from bindings.el.
21278
21279 2000-03-12 Gerd Moellmann <gerd@gnu.org>
21280
21281 * recentf.el (recentf-keep-non-readable-files-p):
21282 Remove double/nested definition.
21283
21284 2000-03-12 Dave Love <fx@gnu.org>
21285
21286 * facemenu.el (facemenu-get-face): Use display-color-p.
21287 * enriched.el (enriched-decode-foreground): Likewise.
21288 (enriched-decode-background): Likewise.
21289 * isearch.el (isearch-highlight): Likewise.
21290 * info-look.el (info-lookup): Likewise.
21291 * simple.el (completion-setup-function): Likewise.
21292
21293 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
21294 :options.
21295
21296 * bindings.el (mode-line-format): Fix line-number and
21297 column-number items. Add help-echo for the background.
21298 (mode-line-mule-info): Modify help-echo.
21299
21300 * avoid.el (mouse-avoidance-mode): Add autoload cookie to defcustom.
21301
21302 * files.el (load-file): Allow completion to .elc.
21303
21304 * man.el: Doc fixes.
21305 (Man-init-defvars): Use display-color-p to set fontification.
21306
21307 * play/hanoi.el (hanoi-internal): Don't use oddp.
21308
21309 2000-03-12 Gerd Moellmann <gerd@gnu.org>
21310
21311 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
21312
21313 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
21314
21315 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
21316
21317 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
21318 Fix comment.
21319
21320 2000-03-10 Stefan Monnier <monnier@cs.yale.edu>
21321
21322 * font-lock.el (font-lock-keywords): Fix the doc now that
21323 regexp-opt-depth is unnecessary.
21324 (save-buffer-state): Set an edebug spec.
21325 (font-lock-fontify-anchored-keywords): Properly handle the case when
21326 the matcher goes past the limit.
21327
21328 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
21329 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
21330
21331 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
21332 dll.el and cookie.el (from Elib) with heavy renaming and other
21333 massaging.
21334
21335 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
21336 Autoload the functions used.
21337 (easy-mmode-define-syntax): Fix CL typo.
21338 (easy-mmode-define-derived-mode): Improve the docstring generation.
21339
21340 2000-03-10 Gerd Moellmann <gerd@gnu.org>
21341
21342 * textmodes/texinfo.el (texinfo-version): Variable and function
21343 removed.
21344
21345 2000-03-09 Stefan Monnier <monnier@cs.yale.edu>
21346
21347 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
21348 allow more flexibility.
21349 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New fns.
21350 (easy-mmode-defmap, easy-mmode-defsyntax)
21351 (easy-mmode-define-derived-mode): New macros.
21352
21353 2000-03-09 Didier Verna <didier@xemacs.org>
21354
21355 * rect.el (replace-rectangle): New function.
21356
21357 2000-03-09 Dave Love <fx@gnu.org>
21358
21359 * progmodes/fortran.el (fortran-comment-line-start): Define as "C".
21360 (fortran-comment-line-start-skip): Don't match cpp stuff.
21361 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
21362 (fortran-mode-map): Remove over-eager custom-menu-create for now.
21363 (fortran-mode): Don't set fortran-comment-line-start-skip,
21364 fortran-comment-line-start here. Set comment-start,
21365 add-log-current-defun.
21366 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
21367 (fortran-current-defun): New function.
21368
21369 2000-03-09 Gerd Moellmann <gerd@gnu.org>
21370
21371 * emacs-lisp/re-builder.el: New file.
21372
21373 * mouse.el (mouse-drag-region): Don't run up-event handler
21374 if hscroll has changed.
21375
21376 * octave-mod.el (octave-font-lock-keywords): To font-lock the
21377 builtin operators, use `font-lock-builtin-face' for Emacs and
21378 `font-lock-preprocessor-face' otherwise.
21379
21380 * font-lock.el (lisp-font-lock-keywords-1): Highlight
21381 `(defun (setf foo)' differently.
21382
21383 2000-03-08 Stefan Monnier <monnier@cs.yale.edu>
21384
21385 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
21386 (regexp-opt): Update comment and adapt the code the new meaning of
21387 the `paren' argument of regex-opt-group for shy-groups.
21388 (regexp-opt-depth): Handle shy groups as well as backslashed
21389 backslashes.
21390 (regexp-opt-group): Turn the leading comment into a docstring.
21391 Allow `paren' to be a string (the string to use to open a group).
21392 Remove open-presuf and close-presuf. Instead of checking for `all
21393 one-char' and then later on check for `several one-char', handle
21394 both cases close together. Also apply a more generic algorithm
21395 for suffixes (the mirror image of the algorithm used for
21396 prefixes). Use shy-groups. Use nreverse rather than reverse.
21397 (regexp-opt-try-suffix): Removed.
21398
21399 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
21400 from comint-mode-map, so we can just inherit from it. Also, move
21401 the initialization into the `defvar' since there's no docstring
21402 anyway and it's fairly short.
21403 (inferior-scheme-mode): Define it as derived-mode: the code is
21404 shorter and this way we inherit from comint-mode-map rather than
21405 copying it.
21406
21407 * subr.el (replace-regexps-in-string): Properly handle the case
21408 where we match an empty string.
21409
21410 * comint.el (comint-exec-1): Add the current-dir to the exec-path
21411 when the command has a directory component (such as "./testml").
21412 Also fix a typo in the comment.
21413
21414 2000-03-08 Gerd Moellmann <gerd@gnu.org>
21415
21416 * Makefile (compile-files): Compile files one by one because
21417 that's the only way to ensure a clean compilation environment for
21418 each individual file.
21419
21420 * frame.el (other-frame): Call x-focus-frame.
21421
21422 2000-03-07 Dave Love <fx@gnu.org>
21423
21424 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
21425 :require to defcustom.
21426
21427 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads lists.
21428
21429 * files.el (auto-mode-alist): Add configure.in.
21430
21431 * progmodes/autoconf.el: New file.
21432
21433 2000-03-07 Gerd Moellmann <gerd@gnu.org>
21434
21435 * mail/mh-e.el: Change maintainer to `none'.
21436
21437 * recentf.el (recentf-keep-non-readable-files-p): Quote args
21438 to remove-hook and add-hook.
21439
21440 2000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
21441
21442 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
21443 it as the default.
21444 (mail-send): Test mail-send-nonascii also for the new `mime' value.
21445 (sendmail-send-it): Conditionally add MIME headers specifying the
21446 used character set.
21447
21448 2000-03-07 Dave Love <fx@gnu.org>
21449
21450 * winner.el: Fix keywords, autoload cookies.
21451 Split eval-when-compile form to avoid compilation failure.
21452
21453 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
21454
21455 * international/mule.el: Modify comment about coding system
21456 property `coding-category'.
21457 (make-coding-system): New argument EOL-TYPE. Pay attention to
21458 coding-category property of PROPERTIES.
21459
21460 * international/mule-conf.el (coding-category-utf-8)
21461 (coding-category-utf-16-be, coding-category-utf-16-le): New coding
21462 categories. Include them in the argument for set-coding-priority.
21463
21464 * international/mule-cmds.el (reset-language-environment):
21465 Include coding-category-utf-8, coding-category-utf-16-be, and
21466 coding-category-utf-16-le in the argument for set-coding-priority.
21467 (reset-language-environment): Initialize coding-category-utf-8,
21468 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
21469
21470 2000-03-06 Karl Fogel <kfogel@red-bean.com>
21471
21472 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
21473 code abstracted out of `bookmark-jump-noselect'. Now tries info
21474 extensions as well as compression extensions.
21475 (bookmark-jump-noselect): Use above new func.
21476
21477 2000-03-03 Gerd Moellmann <gerd@gnu.org>
21478
21479 * strokes.el: Change maintainer's mail address.
21480
21481 2000-03-03 Kenichi Handa <handa@etl.go.jp>
21482
21483 * international/mule-diag.el (list-character-sets): Make help-echo
21484 string by substitute-command-keys.
21485 (list-character-sets): Likewise.
21486 (sort-listed-character-sets): Call help-setup-xref.
21487
21488 2000-03-02 Gerd Moellmann <gerd@gnu.org>
21489
21490 * time.el (display-time-mail-file): Add `none' to the list of choices.
21491
21492 2000-03-01 Dave Love <fx@gnu.org>
21493
21494 * help.el (help-xref-go-back): Don't try to set position.
21495
21496 * international/mule-diag.el (list-character-sets):
21497 Call help-setup-xref. Add help-echo to xrefs.
21498 (list-character-sets-1): Add help-echo to xrefs.
21499
21500 2000-03-02 Gerd Moellmann <gerd@gnu.org>
21501
21502 * frame.el (blink-cursor-mode): Switch cursor on when turning
21503 the mode off.
21504
21505 * add-log.el (add-log-current-defun): Add support for
21506 Autoconf mode.
21507
21508 * mail/rmail.el (rmail-quit-hook): New variable.
21509
21510 2000-03-01 Dave Love <fx@gnu.org>
21511
21512 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
21513
21514 * help.el (help-xref-button): Add help-echo arg.
21515 (describe-function-1, describe-variable, help-make-xrefs): Use it.
21516
21517 * faces.el (list-faces-display): Supply help-echo with help-make-xrefs.
21518
21519 * facemenu.el (list-text-properties-at): Set help-xref-stack to nil.
21520
21521 2000-03-01 Gerd Moellmann <gerd@gnu.org>
21522
21523 * image.el (defimage): Look for image files in load-path.
21524
21525 * frame.el (busy-cursor-delay-seconds): Change type to `number'.
21526
21527 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
21528
21529 * recentf.el (recentf): Added version tag to the defgroup of recentf.
21530
21531 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
21532
21533 * recentf.el (recentf-cleanup): Changed to remove excluded file too.
21534 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
21535 action to select/unselect a file.
21536 (recentf-edit-list): Code cleanup and improvement.
21537 (recentf-open-more-files-action): `recentf-open-more-files' button
21538 widget action to open a file.
21539 (recentf-open-more-files): No more use standard completion but widgets.
21540 (recentf-more-collection): Deleted.
21541 (recentf-more-history): Deleted.
21542 (recentf-setup-more-completion): Deleted.
21543
21544 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
21545
21546 * recentf.el (recentf-mode): No more needs that Emacs is running
21547 under a window-system.
21548
21549 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
21550
21551 * recentf.el (recentf-edit-list): New command to edit the recent
21552 list which allow the user to remove files.
21553 (recentf-edit-selected-items): New global variable, used by
21554 `recentf-edit-list' to hold the list of files to be removed from
21555 the recent list.
21556 (recentf-make-menu-items): Updated to display a "Edit list..."
21557 menu item. Minor code cleanup.
21558
21559 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
21560
21561 * recentf.el (recentf-open-more-files): New command to open files
21562 that are not displayed in the menu.
21563 (recentf-more-collection): New global variable holding the set of
21564 permissible completions used by `recentf-open-more-files'.
21565 (recentf-more-history): New global variable holding the history list
21566 used by `recentf-open-more-files' completion.
21567 (recentf-setup-more-completion): New function to setup completion for
21568 `recentf-open-more-files'.
21569 (recentf-make-menu-items): Updated to display a "More..." menu item.
21570
21571 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
21572
21573 * recentf.el (recentf-menu-action): Doc fixed.
21574
21575 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
21576
21577 * recentf.el (recentf-menu-filter): Doc updated.
21578 (recentf-update-menu-hook): Allow menu filters to force menu update.
21579 (recentf-make-menu-items): New menu filter handling.
21580 (recentf-make-menu-item): New helper function.
21581 (recentf-menu-elements): New menu handling function.
21582 (recentf-sort-ascending): Updated to new menu filter handling.
21583 (recentf-sort-descending): Updated to new menu filter handling.
21584 (recentf-sort-basenames-ascending): New menu filter function.
21585 (recentf-sort-basenames-descending): New menu filter function.
21586 (recentf-show-basenames): New menu filter function.
21587 (recentf-show-basenames-ascending): New menu filter function.
21588 (recentf-show-basenames-descending): New menu filter function.
21589
21590 2000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
21591
21592 * diary-lib.el (list-diary-entries): Don't try to go forward at
21593 the end of the buffer.
21594
21595 2000-02-29 Kenichi Handa <handa@etl.go.jp>
21596
21597 * international/mule-diag.el (list-character-sets):
21598 Completely rewritten.
21599 (sort-listed-character-sets): New function.
21600 (list-character-sets-1): Completely rewritten.
21601 (list-character-sets-2): New function.
21602 (non-iso-charset-alist): New variable.
21603 (decode-codepage-char): New function.
21604 (charset-history): New variable.
21605 (read-charset) (list-block-of-chars)
21606 (list-iso-charset-chars)
21607 (list-non-iso-charset-chars)
21608 (list-charset-chars): New functions.
21609 (mule-diag): Call list-character-sets-2, not list-character-sets-2.
21610 (dump-charsets): Likewise.
21611
21612 2000-02-29 Gerd Moellmann <gerd@gnu.org>
21613
21614 * dired-x.el (dired-filename-at-point): Add `@' to valid
21615 file name characters.
21616 (dired-filename-at-point): Handle ange-ftp file names.
21617
21618 * frame.el (frame-notice-user-settings): Use assq-delete-all
21619 instead of assoc-delete-all.
21620 (frame-notice-user-settings): Ditto.
21621
21622 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
21623 Don't copy alist.
21624
21625 2000-02-28 Eli Barzilay <eli@cs.cornell.edu>
21626
21627 * calculator.el (calculator-use-menu): New option.
21628 (calculator-initial-bindings): Changed some bindings to work as macros.
21629 (calculator-forced-input): Removed.
21630 (calculator-restart-other-mode): New variable.
21631 (calculator-mode-map): Set up menu.
21632
21633 2000-02-28 Jari Aalto <jari.aalto@poboxes.com>
21634
21635 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc tags.
21636
21637 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
21638
21639 * viper-cmd.el (viper-envelop-ESC-key): Add the option to
21640 translate all ESC key sequences.
21641 (viper-goto-mark-subr): Restore markers for files for which
21642 they were saved.
21643 * viper-init.el (viper-translate-all-ESC-keysequences): New variable.
21644 * viper-util.el (viper-set-replace-overlay-glyphs)
21645 (viper-set-replace-overlay): Always check if the replacement
21646 overlay is live.
21647 * viper.el (viper-vi-state-mode-list): Add major modes.
21648 * ediff-wind.el: Minor comment changes.
21649 * ediff.el: Copyright notice date fix.
21650
21651 2000-02-27 Jason Rumney <jasonr@gnu.org>
21652
21653 * faces.el (face-font-family-alternatives): Add arial to helv.
21654 (mode-line, header-line, tool-bar): Same default as x for w32.
21655 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
21656 face-font-family-alternatives from working.
21657 * term/w32-win.el (mouse-set-font): Do not build fontset from
21658 chosen font.
21659
21660 2000-02-25 Sam Steingold <sds@goems.com>
21661
21662 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
21663 properly.
21664
21665 2000-02-25 Richard M. Stallman <rms@gnu.org>
21666
21667 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
21668
21669 2000-02-25 Gerd Moellmann <gerd@gnu.org>
21670
21671 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer writable.
21672
21673 * frame.el (busy-cursor-delay-seconds): New option.
21674
21675 2000-02-24 Gerd Moellmann <gerd@gnu.org>
21676
21677 * frame.el (show-cursor-in-non-selected-windows): New option.
21678
21679 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
21680
21681 * diary-lib.el (include-other-diary-files): Undo the selective
21682 display in any included file and don't kill it.
21683
21684 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
21685
21686 * dired.el (dired-mode-map): Don't remove "Edit" from the menu bar.
21687 Menu items converted to (menu-item format, help strings added.
21688 [downcase, upcase]: Don't enable on MS-DOS.
21689 [symlink, symlinks]: Don't show if make-symbolic-link is not bound.
21690 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
21691
21692 2000-02-23 Dave Love <fx@gnu.org>
21693
21694 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
21695 (backward-kill-word): Revert addition of * to interactive spec --
21696 it's a feature.
21697
21698 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
21699 (backward-kill-sentence, kill-sentence): Likewise.
21700
21701 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
21702 scratch buffer name.
21703 (gud-format-command): Use int-to-string in ?l case. Simplify slightly.
21704
21705 * term/w32-win.el (internal-face-interactive): Update prompt for
21706 new read-face-name.
21707
21708 * mail/footnote.el (footnote): Add :version to defgroup.
21709 (footnote-section-tag-regexp): Customize.
21710 (footnote-start-tag, footnote-end-tag): New option.
21711 (footnote-latin-regexp): New variable.
21712 (Footnote-latin): New function.
21713 (footnote-style-alist): Add element for latin style.
21714 (footnote-style): Moved.
21715 (Footnote-goto-footnote): Use eq to test arg.
21716
21717 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
21718
21719 * emacs-lisp/byte-opt.el: Change old backquote syntax.
21720 (byte-compile-trueconstp): Include keywords.
21721 (byte-optimize-quote, byte-optimize-lapcode):
21722 Use byte-compile-const-symbol-p.
21723 (byte-optimize-char-before): New optimization.
21724
21725 * emacs-lisp/bytecomp.el: Change old backquote syntax.
21726 (byte-compile-const-symbol-p): New function.
21727 (byte-compile-constp, byte-compile-out-toplevel)
21728 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
21729 Use it.
21730
21731 * subr.el (define-key-after): Default AFTER to t. Doc fix.
21732
21733 2000-02-23 Kenichi Handa <handa@etl.go.jp>
21734
21735 * international/encoded-kb.el: Be sure to update minor-mode-alist
21736 and minor-mode-map-alist.
21737 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
21738 codes SS2 and SS3 correctly.
21739 (encoded-kbd-self-insert-ccl): New function.
21740 (encoded-kbd-setup-keymap): New function.
21741 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
21742 by calling encoded-kbd-setup-keymap.
21743
21744 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte characters.
21745 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t locally.
21746
21747 2000-02-22 Dave Love <fx@gnu.org>
21748
21749 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
21750 (lisp-mode-map, lisp-interaction-mode-map): Define all inside defvar.
21751 (lisp-mode-syntax-table): Set up for #|...|# comments.
21752 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
21753 classes. Match `defface'.
21754 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
21755 (eval-defun-1): Fix for defcustom.
21756 (lisp-indent-region): Doc fix.
21757
21758 * subr.el (when, unless, split-string): Doc fix.
21759 (read-passwd): Move call of clear-this-command-keys to the right place.
21760 (replace-regexps-in-string): New function.
21761
21762 2000-02-22 Gerd Moellmann <gerd@gnu.org>
21763
21764 * help.el (describe-variable): Set syntax table to
21765 emacs-lisp-mode-syntax-table when moving forward over the
21766 symbol's name.
21767
21768 2000-02-22 Dave Love <fx@gnu.org>
21769
21770 * xt-mouse.el: Doc fixes.
21771 (xterm-mouse-position-function): New function, replacing advice of
21772 mouse-position.
21773 (xterm-mouse-mode): Use it. Don't turn on under a window system.
21774
21775 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
21776
21777 2000-02-21 Gerd Moellmann <gerd@gnu.org>
21778
21779 * format.el (format-annotate-single-property-change):
21780 Handle properties.with dotted-list values.
21781 (format-proper-list-p): New function.
21782
21783 * enriched.el (enriched-face-ans): Handle '(foreground-color
21784 . COLOR) and (background-color . COLOR).
21785
21786 2000-02-20 Dave Love <fx@gnu.org>
21787
21788 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
21789 and assignments to it.
21790 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
21791 current local map.
21792 (make-flyspell-overlay): Use it.
21793 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
21794
21795 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
21796 (lm-get-header-re): Defun, not defsubst.
21797 (lm-get-package-name): Defun, not defsubst. Simplify.
21798 (lm-version): Doc fix. Simplify.
21799 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
21800 (lm-crack-address, lm-last-modified-date, lm-commentary)
21801 (lm-verify, lm-synopsis): Simplify.
21802 (lm-report-bug): Require emacsbug. Use compose-mail.
21803
21804 2000-02-20 Gerd Moellmann <gerd@gnu.org>
21805
21806 * dired.el (dired-mode): Call propertized-buffer-identification
21807 to set mode-line-buffer-identification to something having
21808 the right text properties.
21809
21810 * bindings.el (propertized-buffer-identification): New function.
21811
21812 2000-02-20 Dave Love <fx@gnu.org>
21813
21814 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
21815 check for t-mouse too.
21816
21817 * cus-start.el: Make echo-keystrokes `number'.
21818
21819 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
21820
21821 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
21822 Don't call ring-empty-p unless tags-location-ring is bound.
21823 From Noah Friedman <friedman@splode.com>.
21824
21825 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
21826
21827 * progmodes/hideshow.el (hs-flag-region): No longer use
21828 `intangible' overlay property.
21829
21830 (hs-toggle-hiding): New command.
21831 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
21832
21833 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
21834 Fix omission bug: Run `hs-minor-mode-hook' for both activation
21835 and deactivation.
21836
21837 2000-02-18 Gerd Moellmann <gerd@gnu.org>
21838
21839 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
21840
21841 2000-02-17 Gerd Moellmann <gerd@gnu.org>
21842
21843 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
21844
21845 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
21846 of `*' to handle `(* ... *)' comments.
21847
21848 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
21849
21850 * faces.el (list-faces-display): Use display-mouse-p instead of
21851 window-system.
21852
21853 * menu-bar.el (global-map): Menu-bar items converted to the new
21854 format (menu-item..., rearranged for better CUA compliance, and
21855 their names changed for better clarity. Help strings added.
21856
21857 * international/mule-cmds.el (mule-menu-keymap)
21858 (describe-language-environment-map, set-coding-system-map)
21859 (setup-language-environment-map): Convert to new (menu-item...
21860 form, add help strings. Change names of menu items for better clarity.
21861 "Mule" menu-bar item removed (it's now in the "Options" submenu).
21862
21863 2000-02-17 Gerd Moellmann <gerd@gnu.org>
21864
21865 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
21866 within the code.
21867
21868 2000-02-16 Dave Love <fx@gnu.org>
21869
21870 * faces.el: Don't require custom. Add more specific :groups to
21871 various deffaces.
21872 (set-face-attribute): Purecopy args.
21873 (read-face-name): Default to name at point and use it in prompt.
21874 Remove colon from arg in all callers.
21875 (list-faces-display): Hyperlink to face descriptions and customize
21876 buffers.
21877
21878 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
21879
21880 * wid-edit.el (widget-match-inline): An atom never matches a list.
21881
21882 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
21883
21884 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
21885 at ':' characters by call to split-string.
21886
21887 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
21888
21889 * textmodes/bibtex.el: Added RCS version identification.
21890
21891 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
21892
21893 * textmodes/bibtex.el: Some temporary comments removed.
21894 (bibtex-field-name, bibtex-entry-type): Made the relationship explicit.
21895 (bibtex-field-const): Allow capital letters.
21896 (bibtex-start-of-string): Deleted because unused.
21897
21898 * textmodes/bibtex.el: Unified some nomenclature. We no longer
21899 use the term 'reference' to describe a bibtex entry as a whole.
21900 Further, reference keys are no longer called 'labels'.
21901 (bibtex-keys): Renamed to bibtex-reference-keys.
21902 (bibtex-reformat-previous-labels): Renamed to
21903 bibtex-reformat-previous-reference-keys.
21904 (bibtex-reference-type): Renamed to bibtex-entry-type.
21905 (bibtex-reference-head): Renamed to bibtex-entry-head.
21906 (bibtex-reference-maybe-empty-head): Renamed to
21907 bibtex-entry-maybe-empty-head.
21908 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
21909 (bibtex-search-reference): Renamed to bibtex-search-entry.
21910 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
21911 bibtex-enclosing-entry-maybe-empty-head.
21912 (bibtex-entry-field-alist, bibtex-entry-head)
21913 (bibtex-font-lock-keywords, bibtex-skip-to-valid-entry)
21914 (bibtex-map-entries, bibtex-search-entry)
21915 (bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry)
21916 (bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode)
21917 (bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message)
21918 (bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer)
21919 (bibtex-find-entry-location, bibtex-validate, bibtex-find-text)
21920 (bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat)
21921 (bibtex-complete-key, bibtex-String) : Use the new nomenclature.
21922
21923 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
21924
21925 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
21926 comment.
21927 (bibtex-format-field-delimiters): New function, functionality
21928 extracted from bibtex-format-entry.
21929 (bibtex-autokey-get-yearfield-digits): New function, functionality
21930 extracted from bibtex-autokey-get-yearfield.
21931
21932 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
21933 entries in order to avoid stack overflow in the regexp matcher if
21934 field contents become large.
21935 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield)
21936 (bibtex-field-string-part-not-braced)
21937 (bibtex-field-string-part-no-inner-braces)
21938 (bibtex-field-string-part-1-inner-brace)
21939 (bibtex-field-string-part-2-inner-braces)
21940 (bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced)
21941 (bibtex-field-string-quoted, bibtex-field-string)
21942 (bibtex-field-string-or-const, bibtex-field-text, bibtex-field)
21943 (bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix)
21944 (bibtex-string, bibtex-key-in-string, bibtex-text-in-string):
21945 Deleted as parsing is now performed by the following functions.
21946 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced)
21947 (bibtex-parse-quoted-string, bibtex-parse-field-string-quoted)
21948 (bibtex-parse-field-string, bibtex-search-forward-field-string)
21949 (bibtex-parse-association, bibtex-field-name-for-parsing)
21950 (bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field)
21951 (bibtex-search-forward-field, bibtex-search-backward-field)
21952 (bibtex-start-of-field, bibtex-end-of-field)
21953 (bibtex-start-of-name-in-field, bibtex-end-of-name-in-field)
21954 (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
21955 (bibtex-parse-string-prefix, bibtex-parse-string-postfix)
21956 (bibtex-parse-string, bibtex-search-forward-string)
21957 (bibtex-search-backward-string, bibtex-start-of-string)
21958 (bibtex-end-of-string, bibtex-start-of-reference-key-in-string)
21959 (bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string)
21960 (bibtex-end-of-text-in-string): New functions for the parsing of bibtex
21961 entries. Instead of reporting the results of the parsing by
21962 match-beginning or match-end, these functions return data structures
21963 that hold the corresponding positions.
21964 (bibtex-enclosing-field): Changed to also report field boundaries by
21965 return values rather than by match-beginning or match-end.
21966 The following functions have been adapted to use the new
21967 parsing functions.
21968 (bibtex-skip-to-valid-entry, bibtex-search-reference)
21969 (bibtex-enclosing-field, bibtex-format-entry)
21970 (bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring)
21971 (bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode)
21972 (bibtex-print-help-message, bibtex-end-of-entry)
21973 (bibtex-ispell-abstract, bibtex-validate, bibtex-next-field)
21974 (bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
21975 (bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry):
21976 Use the new method for parsing.
21977 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry)
21978 (bibtex-map-entries, bibtex-flash-head)
21979 (bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry)
21980 (bibtex-autokey-change, bibtex-autokey-get-namefield)
21981 (bibtex-autokey-get-names, bibtex-autokey-get-titlestring)
21982 (bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode)
21983 (bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer)
21984 (bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
21985 (bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
21986 order to make the new binding of case-fold-search immediately visible.
21987
21988 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
21989
21990 * textmodes/bibtex.el: Copyright notice is up to date.
21991 Added constant 'bibtex-maintainer-salutation.
21992
21993 * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
21994 than make-temp-name, use match-string-no-properties and eliminate
21995 a quadratic behavior when building bibtex-strings.
21996
21997 * bibtex.el (bibtex-reference-key): Accept string entries whose
21998 reference key contains upper case letters.
21999
22000 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
22001
22002 * bibtex.el (bibtex-reference-head): Allow entries to start with
22003 a new line.
22004
22005 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
22006
22007 * bibtex.el: Hiding of entry bodies is not longer provided by
22008 bibtex.el directly. Instead the hideshow package can be used.
22009 Added a special bibtex entry to hs-special-modes-alist.
22010 (bibtex-hs-forward-sexp): Added for hideshow.el.
22011
22012 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
22013
22014 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
22015 proceedings entry type (for cross referencing). Thanks to Wagner
22016 Toledo Correa for the suggestion.
22017
22018 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
22019
22020 2000-02-14 Kenichi Handa <handa@etl.go.jp>
22021
22022 * international/characters.el: Setup case table for Vietnamese.
22023
22024 2000-02-12 Gerd Moellmann <gerd@gnu.org>
22025
22026 * uniquify.el (toplevel): Require CL at compile time.
22027 (uniquify-push): Removed.
22028
22029 * shadowfile.el (shadow-when): Removed.
22030
22031 * tempo.el (tempo-dolist, tempo-mapc): Removed.
22032 (tempo-process-and-insert-string): Use dolist instead of tempo-dolist.
22033
22034 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
22035 regexp for paragraph-start.
22036
22037 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
22038 commas as well.
22039
22040 2000-02-10 Dave Love <fx@gnu.org>
22041
22042 * wid-edit.el: (widgets) [defgroup]: Remove url link.
22043 (widget-color-choice-list, widget-color-history, widget-mouse-help):
22044 Deleted.
22045 (widget-specify-field, widget-specify-button): Don't use
22046 widget-mouse-help as help-echo property.
22047 (default): Use #'ignore for :validate and :mouse-down-action.
22048 (checkbox): Add help-echo.
22049 (widget-sexp-validate): Rewritten to clarify error messages.
22050 (character): Use char-valid-p in :match function.
22051 (widget-color-complete): Use facemenu-color-alist.
22052 (widget-color-action): Use facemenu-read-color.
22053
22054 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
22055 set up `caar' &c that we now have.
22056
22057 2000-02-09 Ray Blaak <blaak@gnu.org>
22058
22059 * delphi.el: Make resourcestring a declaration region, like const
22060 and var.
22061
22062 2000-02-09 Dave Love <fx@gnu.org>
22063
22064 * bindings.el (mode-line-input-method-map): New variable.
22065 (mode-line-mule-info): Use it; fix last change.
22066 (mode-line-mode-menu): Move definition.
22067 (mode-line-mouse-sensitive-p): Deleted.
22068 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
22069 (make-mode-line-mouse-sensitive): Deleted. Body moved to top level.
22070
22071 * startup.el (command-line-1): Don't call
22072 make-mode-line-mouse-sensitive.
22073
22074 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
22075
22076 * mail/rmail.el (rmail-retry-failure): Use rmail-beginning-of-message
22077 before rmail-toggle-header, because the former toggles headers.
22078
22079 2000-02-06 Stefan Monnier <monnier@cs.yale.edu>
22080
22081 * diff-mode.el (diff-kill-junk): New interactive function.
22082 (diff-reverse-direction): Use delete-and-extract-region.
22083 (diff-post-command-hook): Restrict the area so that the hook also works
22084 outside of any diff hunk. This is necessary for the minor-mode.
22085 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
22086 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
22087
22088 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
22089 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
22090 so that it can be used more easily in <foo>-mode-hook. Also make sure
22091 to avoid duplicate entries.
22092 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
22093 (font-lock-remove-keywords): Just as was done for `add', allow it to
22094 work even if font-lock-mode is nil. Also make sure we don't modify
22095 any pre-existing list by forcing a copy-sequence. Finally rename
22096 `major-mode' to `mode'.
22097 (font-lock-fontify-syntactic-anchored-keywords)
22098 (font-lock-fontify-anchored-keywords)
22099 (font-lock-fontify-keywords-region): Use line-end-position.
22100 Don't make `font-lock-multiline' local (it's now done in
22101 font-lock-set-defaults).
22102 (font-lock-set-defaults): Make `font-lock-multiline' local.
22103 Move the `font-lock-fontified' creation to inside the `unless'.
22104
22105 2000-02-06 Andrew Innes <andrewi@gnu.org>
22106
22107 * term/w32-win.el (x-handle-args): Comment out call to message,
22108 which occurs before window system is initialized.
22109
22110 * makefile.nt: Add support for recompiling lisp code.
22111
22112 2000-02-04 Dave Love <fx@gnu.org>
22113
22114 * bindings.el (mode-line-mule-info): Fix/extend last change.
22115
22116 * completion.el: Replace completion-dolist with dolist.
22117
22118 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist, dotimes.
22119
22120 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
22121
22122 * textmodes/reftex.el (reftex-compile-variables): Regexp-quote the
22123 environment names before they go into the section regexp.
22124
22125 * textmodes/reftex-global.el (reftex-change-label): Add `A-Z' to
22126 char class in regexp.
22127
22128 * textmodes/reftex-parse.el (reftex-with-special-syntax):
22129 Bind `case-fold-search' to nil.
22130
22131 * progmodes/idlwave.el (idlwave-template):
22132 Respect `idlwave-abbrev-change-case'.
22133 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for)
22134 (idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat)
22135 (idlwave-while): Respect `idlwave-reserved-word-upcase'.
22136 (idlwave-rw-case): New function.
22137 (idlwave-statement-match): Fixed problem with assignment regexp.
22138 (idlwave-font-lock-keywords): Improved regexp for keyword parameters.
22139 (idlwave-surround): New argument LENGTH to support padding of
22140 operators longer than 1 char.
22141
22142 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
22143 idlwave-shell-expression-overlay. Implemented printing of
22144 expressions on higher levels of the calling stack.
22145 (idlwave-shell-display-level-in-calling-stack): Restore stack level.
22146 (idlwave-retrieve-expression-from-level): New function.
22147 (idlwave-shell-last-calling-stack): Variable removed.
22148 (idlwave-shell-reset): Argument action reversed (`visible' to
22149 `hidden'). Also remove stop-line overlay.
22150 (idlwave-shell-calling-stack-routine): New variable.
22151 (idlwave-shell-parse-stack-and-display): Messages now display
22152 negative level numbers.
22153 (idlwave-shell-mode): Set `modeline-format'.
22154 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
22155 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs 21.
22156 (idlwave-shell-print-expression-function): New option.
22157
22158 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere)
22159 (idlwave-toolbar-remove-everywhere): Keybindings prefix is now
22160 `tool-bar' instead of `toolbar'.
22161
22162 2000-02-02 Dave Love <fx@gnu.org>
22163
22164 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
22165 emacs-lisp-mode-hook. Don't check for defalias being defined.
22166
22167 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
22168 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions.
22169 Use the new builtins directly.
22170
22171 * whitespace.el (whitespace): Add :version to defgroup.
22172
22173 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
22174 Doc fix.
22175
22176 * thingatpt.el (sexp-at-point, symbol-at-point)
22177 (number-at-point, list-at-point): Add autoload cookie.
22178
22179 * recentf.el (recentf): Add :version to defgroup.
22180
22181 * quickurl.el (quickurl): Add :version to defgroup.
22182
22183 * elide-head.el (elide-head): Use point-marker more.
22184
22185 * bs.el (bs): Add :version to defgroup.
22186
22187 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
22188
22189 * progmodes/delphi.el (delphi): Add :version to defgroup.
22190
22191 2000-02-02 Gerd Moellmann <gerd@gnu.org>
22192
22193 * ange-ftp.el (ange-ftp-write-region): Handle case that
22194 succeeding process operation sets a different coding system.
22195
22196 * calculator.el: New file.
22197
22198 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
22199
22200 * frame.el (frames-on-display-list, framep-on-display): New functions.
22201 (display-mouse-p, display-popup-menus-p, display-graphic-p)
22202 (display-selections-p, display-screens, display-pixel-width)
22203 (display-pixel-height, display-mm-width, display-mm-height)
22204 (display-backing-store, display-save-under, display-planes)
22205 (display-color-cells, display-visual-class): New functions.
22206
22207 * term/tty-colors.el (tty-color-gray-shades): New function.
22208
22209 * faces.el (display-color-p): Use framep-on-display.
22210 (display-grayscale-p): New function.
22211
22212 2000-01-31 Dave Love <fx@gnu.org>
22213
22214 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
22215 (create-fontset-from-x-resource): Don't concat integers.
22216
22217 2000-01-31 Inge Frick <inge@nada.kth.se>
22218
22219 * view.el: Some changes in documentation. Removed some trailing
22220 whitespace. Changed some parameter names to agree with documentation.
22221 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
22222 window is not deleted. Modifies change 1998-04-26.
22223
22224 2000-01-31 Gerd Moellmann <gerd@gnu.org>
22225
22226 * windmove.el: New file.
22227
22228 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
22229 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
22230 progmodes/ebnf-yac.el: Update copyright and license info.
22231
22232 * jit-lock.el (jit-lock-function): Widen before calculating
22233 end position.
22234 (jit-lock-stealth-chunk-start): Rewritten.
22235
22236 * info.el (Info-title-face-alist): Removed.
22237 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New faces.
22238 (Info-fontify-node): Use these faces.
22239
22240 2000-01-30 Gerd Moellmann <gerd@gnu.org>
22241
22242 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
22243 (cl-macro-list1): Recognize `&allow-other-keys' instead of
22244 `&allow-other-keywords'.
22245
22246 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
22247 the list of directories scanned heuristically.
22248
22249 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to exist.
22250
22251 2000-01-30 Jason Rumney <jasonr@gnu.org>
22252
22253 * w32-fns.el: Define w32-tty-standard-colors.
22254
22255 * startup.el (command-line): Use w32-tty-standard-colors when in
22256 w32 console mode.
22257
22258 2000-01-30 Dave Love <fx@gnu.org>
22259
22260 * jka-compr.el (jka-compr-load): Fix up load-history.
22261
22262 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
22263
22264 * emacs-lisp/cl-macs.el: Revert previous change.
22265
22266 2000-01-29 Dave Love <fx@gnu.org>
22267
22268 * facemenu.el: Purecopy various strings.
22269
22270 * timezone.el (timezone-fix-time): Window against 69 for two-digit
22271 years. Deal with three-digit years.
22272
22273 * help.el (help-xref-symbol-regexp, help-xref-info-regexp):
22274 Use defconst, purecopy.
22275 (help-back-label): Purecopy it.
22276
22277 2000-01-18 Gerd Moellmann <gerd@gnu.org>
22278
22279 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
22280 variable. If non-nil, order the buffer list according to the
22281 currently selected frame.
22282 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
22283 non-nil, pass the selected frame to function buffer-list.
22284
22285 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
22286
22287 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
22288
22289 2000-01-28 Dave Love <fx@gnu.org>
22290
22291 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
22292
22293 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
22294 Don't use lisp-indent-hook property.
22295 (cl-abs): Remove.
22296
22297 * subr.el: Move out indent and edebug specs for when and unless.
22298
22299 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
22300 when, unless.
22301
22302 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
22303 unless, when.
22304
22305 2000-01-28 Gerd Moellmann <gerd@gnu.org>
22306
22307 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
22308 `collecting' as synonym for `collect'.
22309
22310 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
22311 for the case it contains spaces.
22312
22313 * simple.el (what-cursor-position): Change formatting of messages.
22314
22315 * frame.el (delete-other-frames): New function.
22316 (toplevel): Bind it to C-x 5 1.
22317
22318 * sort.el (sort-numeric-base): New option.
22319 (sort-numeric-fields): If number starts with `0' or `0[xX[',
22320 interpret it as octal or hexadecimal. Use sort-numeric-base
22321 as default base.
22322
22323 * progmodes/glasses.el: New file.
22324
22325 2000-01-27 Gerd Moellmann <gerd@gnu.org>
22326
22327 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
22328 userids differently.
22329
22330 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
22331 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
22332 progmodes/ebnf-yac.el: New files.
22333
22334 2000-01-26 Dave Love <fx@gnu.org>
22335
22336 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
22337 on a function with an empty body. [From Eric Ludlam.]
22338
22339 2000-01-25 Andre Spiegel <spiegel@gnu.org>
22340
22341 * vc.el (vc-version-diff): Make sure file name is expanded.
22342
22343 2000-01-25 Gerd Moellmann <gerd@gnu.org>
22344
22345 * scroll-bar.el (scroll-bar-timer): Variable removed.
22346 (scroll-bar-toolkit-scroll): Don't use a timer.
22347
22348 2000-01-25 Kenichi Handa <handa@etl.go.jp>
22349
22350 * language/thai-util.el (thai-composition-function):
22351 Delete superfluous `a'.
22352
22353 2000-01-24 Dave Love <fx@gnu.org>
22354
22355 * fortran.el (fortran-mode): Use beginning-of-defun-function,
22356 end-of-defun-function.
22357
22358 * font-lock.el (turn-on-font-lock): Don't depend on window-system &c.
22359
22360 2000-01-22 Jason Rumney <jasonr@gnu.org>
22361
22362 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
22363 conflicts with new face support.
22364
22365 2000-01-22 Richard M. Stallman <rms@gnu.org>
22366
22367 * replace.el (query-replace): Rename last arg to DELIMITED.
22368 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
22369 (query-replace-regexp): Likewise.
22370
22371 2000-01-20 Richard M. Stallman <rms@gnu.org>
22372
22373 * subr.el (with-syntax-table): Use make-symbol, not gensym.
22374
22375 * emacs-lisp/lisp.el (beginning-of-defun-function):
22376 Variable renamed from beginning-of-defun.
22377 Do not call make-variable-buffer-local.
22378 (beginning-of-defun-raw): Use new variable name; doc fix.
22379 (beginning-of-defun): Doc fix.
22380 (end-of-defun-function): Variable renamed from end-of-defun.
22381 Do not call make-variable-buffer-local.
22382 (end-of-defun): Use new variable name; doc fix.
22383
22384 * subr.el (dolist, dotimes): Copied from cl-macs.el
22385 and made to work.
22386
22387 * mail/undigest.el (rmail-digest-end-regexps):
22388 Variable replaces rmail-digest-end-regexp.
22389 Allows multiple regexps for detecting the end line.
22390 (undigestify-rmail-message): Corresponding changes.
22391
22392 2000-01-19 Dave Love <fx@gnu.org>
22393
22394 * files.el (user-init-file): Don't declare here -- is primitive.
22395
22396 * startup.el (command-line): Check for compiled user-init-file and
22397 set to uncompiled version if necessary.
22398
22399 2000-01-18 Gerd Moellmann <gerd@gnu.org>
22400
22401 * mail/undigest.el (rmail-digest-end-regexp): New user option.
22402 (undigestify-rmail-message): Use it.
22403
22404 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
22405
22406 2000-01-17 Gerd Moellmann <gerd@gnu.org>
22407
22408 * tmm.el (tmm-goto-completions): Adapt to prompt being part
22409 of mini-buffer.
22410
22411 2000-01-14 Gerd Moellmann <gerd@gnu.org>
22412
22413 * emacs-lisp/copyright.el (copyright-update): Removed the
22414 requirement for a trailing space from `copyright-regexp', to
22415 support copyrights with owner specified on a separate line..
22416
22417 * align.el: New file.
22418
22419 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
22420
22421 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
22422
22423 2000-01-13 Dave Love <fx@gnu.org>
22424
22425 * ph.el: Removed. (Obsoleted by EUDC.)
22426
22427 2000-01-13 Gerd Moellmann <gerd@gnu.org>
22428
22429 * net/eudc.el (toplevel): Remove autoloaded code installing
22430 menu with easymenu, because that causes build problems.
22431
22432 * frame.el (frame-notice-user-settings): New variable.
22433 (frame-notice-user-settings): Don't modify frame parameters
22434 if called a second time.
22435
22436 2000-01-13 Richard M. Stallman <rms@gnu.org>
22437
22438 * frame.el (frame-notice-user-settings):
22439 Notice default-frame-parameters even for non-window frames.
22440
22441 2000-01-13 Gerd Moellmann <gerd@gnu.org>
22442
22443 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
22444 for Emacs.
22445 (eudc-bob-can-display-inline-images): Extend for Emacs.
22446 (eudc-bob-toggle-inline-display): Ditto.
22447 (eudc-bob-display-jpeg): Ditto.
22448
22449 2000-01-12 Gerd Moellmann <gerd@gnu.org>
22450
22451 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
22452 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
22453 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
22454
22455 * add-log.el (add-change-log-entry): Fix error trying an
22456 `(insert nil)'.
22457
22458 * subdirs.el: Add `net' directory.
22459
22460 * net: New directory.
22461
22462 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
22463 eval-last-sexp. Don't bind debug-on-error here.
22464 (eval-last-sexp): New function. Bind debug-on-error if
22465 eval-expression-debug-on-error is non-nil.
22466 (eval-defun-2, eval-defun): Likewise.
22467
22468 * simple.el (eval-expression): Don't bind debug-on-error if
22469 eval-expression-debug-on-error is nil. Detect changed
22470 debug-on-error, and propagate new value to global binding, if
22471 eval-expression-debug-on-error is non-nil,
22472 (eval-expression-debug-on-error): Change doc string.
22473
22474 2000-01-11 Richard M. Stallman <rms@gnu.org>
22475
22476 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
22477
22478 * emacs-lisp/lisp-mode.el (with-syntax-table):
22479 Set up lisp-indent-function property.
22480
22481 * subr.el (with-syntax-table): Moved from simple.el.
22482
22483 * simple.el (with-syntax-table): Moved to subr.el.
22484
22485 2000-01-11 Gerd Moellmann <gerd@gnu.org>
22486
22487 * tmm.el (tmm-shortcut): Delete region after prompt instead
22488 of erasing buffer.
22489
22490 * textmodes/fill.el (fill-common-string-prefix): New function.
22491 (fill-context-prefix): Use the longest common prefix of first
22492 and second line fill prefix, if there is one.
22493
22494 2000-01-11 Richard M. Stallman <rms@gnu.org>
22495
22496 * array.el (array-mode): Don't use make-variable-buffer-local.
22497 Use make-local-variable for `truncate-lines'.
22498
22499 2000-01-11 Jari Aalto <jari.aalto@poboxes.com>
22500
22501 * add-log.el (add-log-current-defun): Handle user-defined
22502 add-log-current-function returning nil,
22503
22504 * add-log.el (add-change-log-entry): Insert version number
22505 if having found a current function
22506
22507 * add-log.el (add-log-current-defun):
22508 Call `add-log-current-defun-function'. Try matches at level 0 and
22509 level 1. Strip whitespace from defun found.
22510
22511 2000-01-10 John Wiegley <johnw@gnu.org>
22512
22513 * allout.el (isearch-done/outline-provisions): Added `edit'
22514 argument to correspond with the current definition of `isearch-done'.
22515
22516 2000-01-10 Dave Love <fx@gnu.org>
22517
22518 * elide-head.el (elide-head): Use point-marker, not point.
22519
22520 2000-01-10 Gerd Moellmann <gerd@gnu.org>
22521
22522 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
22523 before and after the year 2000.
22524
22525 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
22526 Add ispell- prefix.
22527
22528 2000-01-10 Ken Stevens <k.stevens@ieee.org>
22529
22530 * ispell.el: Only define dictionaries in menus when they exist.
22531 (version18p): New variable.
22532 (version20p): New variable.
22533 (xemacsp): New variable.
22534 (ispell-choices-win-default-height): Fix for XEmacs visibility.
22535 (ispell-dictionary-alist1): Added Brasileiro dictionary.
22536 (ispell-dictionary-alist6): Russian command lines no longer accept
22537 run-together words.
22538 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
22539 (ispell-dictionary-alist): Add koi8-r to customize definition.
22540 (check-ispell-version): Added documentation string. Return library
22541 path when called non-interactively.
22542 (ispell-menu-map-needed): Uses new variables.
22543 (ispell-library-path): New variable.
22544 (ispell-decode-string): XEmacs fix for bogus variable bindings.
22545 (ispell-word): Improved documentation string. Test for valid
22546 character mappings. Correctly check typed in word changes that can
22547 result in single words split into multiple words.
22548 Return replacement word.
22549 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
22550 replace in recursive query replace mode. Help message for
22551 recursive edit mode.
22552 (ispell-show-choices): Protect against bad framepop bindings.
22553 (ispell-help): Fix to work with XEmacs.
22554 (ispell-highlight-spelling-error): Use new variables.
22555 (ispell-overlay-window): Fix to work with XEmacs.
22556 (ispell-parse-output): Passed and returns location information
22557 tracking spelling corrections. Doesn't recheck same word on
22558 current line.
22559 (ispell-init-process): Protect against bogus XEmacs variable binding.
22560 Fix call to single argument in sleep-for. Use new variables.
22561 (ispell-region): Passed and returns location information tracking
22562 spelling corrections. Doesn't check same word on current line.
22563 Improved documentation string. Doesn't resend a line already
22564 checked to the ispell process - fixes bug in LaTeX parsing.
22565 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
22566 (ispell-skip-region): No longer skips <TT> in SGML.
22567 (ispell-process-line): Tracks location information with spelling
22568 corrections. Added documentation string. Accounts for words
22569 already accepted on this line. Don't allow query-replace on line
22570 starting with math characters. Doesn't resend a line already sent
22571 to ispell process. Fixes alignment error bug.
22572
22573 2000-01-10 Richard M. Stallman <rms@gnu.org>
22574
22575 * dired-x.el (dired-guess-shell-alist-default):
22576 Suggest xloadimage, which is free, not xv, which isn't.
22577
22578 * ange-ftp.el (ange-ftp-file-name-nondirectory):
22579 Don't ever include the host name or user name in the value.
22580
22581 2000-01-09 Gerd Moellmann <gerd@gnu.org>
22582
22583 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
22584 of a real newline.
22585
22586 2000-01-09 Stephen Eglen <stephen@gnu.org>
22587
22588 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
22589 for .png files.
22590
22591 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
22592
22593 * cus-edit.el (custom-hook-convert-widget): Fix comment.
22594
22595 2000-01-09 Gerd Moellmann <gerd@gnu.org>
22596
22597 * progmodes/cperl-mode.el: Replace ^F with ^L.
22598
22599 * sendmail.el (toplevel): Provide `sendmail' when compiling before
22600 `require'ing rmail and mailalias to prevent infinite recursion.
22601
22602 2000-01-08 Dave Love <fx@gnu.org>
22603
22604 * emacs-lisp/backquote.el: Remove inappropriate customization
22605 (allowing custom.el to use backquote).
22606
22607 2000-01-07 Dave Love <fx@gnu.org>
22608
22609 * add-log.el (add-log-debugging): Deleted.
22610 (add-change-log-entry): Treat a backup FILE-NAME as its parent
22611 file. Remove debugging code.
22612 (change-log-get-method-definition, change-log-name): Add doc.
22613 (change-log-sortable-date-at): New function.
22614 (change-log-merge): New command.
22615
22616 * time.el (display-time-string-forms): Make the Mail string active.
22617 (display-time-update): Provide help-echo for load average.
22618
22619 * bindings.el (make-mode-line-mouse2-map): New function.
22620 (mode-line-modified): Use it and simplify.
22621 (mode-line-mule-info): Provide help-echo info.
22622 (minor-mode-alist): Activate the strings.
22623 (make-mode-line-mouse-sensitive): Simplify for
22624 mode-line-buffer-identification.
22625
22626 2000-01-07 Gerd Moellmann <gerd@gnu.org>
22627
22628 * play/pong.el: New file.
22629
22630 2000-01-06 Dave Love <fx@gnu.org>
22631
22632 * array.el: Assorted cleanups for compiler warnings, doc strings,
22633 `array-' prefix for symbols.
22634
22635 2000-01-05 Dave Love <fx@gnu.org>
22636
22637 * textmodes/outline.el (outline-mode-menu-bar-map):
22638 Add outline-headers-as-kill.
22639 (outline-mode): Define imenu-generic-expression.
22640 (outline-headers-as-kill): New command.
22641
22642 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
22643 from paragraph-start.
22644 (paragraph-indent-minor-mode): New command.
22645
22646 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
22647 M-C-e, M-C-h, C-j, C-xnd, TAB.
22648 (fortran-mode): Set beginning-of-defun, end-of-defun.
22649 (fortran-column-ruler): Simplify.
22650 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
22651 (fortran-with-subprogram-narrowing): Likewise.
22652 (fortran-indent-subprogram): Call mark-defun.
22653 (fortran-check-for-matching-do): Change narrowing.
22654
22655 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
22656 (cl-lucid-hash-tag): Delete.
22657 (cl-hash-table-p): Correct test for native table.
22658 (cl-hash-table-count): Use hash-table-count.
22659
22660 * browse-url.el (browse-url): Fix case of
22661 browse-url-browser-function being an alist.
22662
22663 2000-01-05 Carsten Dominik <cd@gnu.org>
22664
22665 * textmodes/reftex-vars.el (reftex-parse-file-extension)
22666 (reftex-index-phrase-file-extension): New options.
22667
22668 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
22669 Use new option `reftex-index-phrase-file-extension'.
22670
22671 * textmodes/reftex.el (reftex-access-parse-file): Use new option
22672 `reftex-parse-file-extension'.
22673
22674 2000-01-05 Dave Love <fx@gnu.org>
22675
22676 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
22677 (beginning-of-defun-raw): Use it.
22678 (end-of-defun): New variable.
22679 (end-of-defun): Use it.
22680 (check-parens): New command.
22681
22682 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
22683
22684 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
22685 (hs-show-block): Don't use `mapcar' when not accumulating.
22686
22687 Fix buglet in local variables initialization.
22688
22689 2000-01-05 Andreas Schwab <schwab@suse.de>
22690
22691 * hscroll.el (hscroll): Doc fix.
22692
22693 2000-01-05 Carsten Dominik <cd@gnu.org>
22694
22695 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar):
22696 Require idlw-toolbar.
22697
22698 * progmodes/idlwave.el (idlwave-load-system-rinfo): Load must read
22699 file idlw-rinfo.el.
22700 (idlwave-customize): Load must read file idlw-shell.el.
22701 (idlwave-create-customize-menu): Load must read file idlw-shell.el.
22702
22703 2000-01-05 Carsten Dominik <dominik@astro.uva.nl>
22704
22705 * progmodes/idlw-shell.el: Also provide idlwave-shell
22706 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
22707 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
22708
22709 * textmodes/reftex-dcr.el: Rename from reftex-vcr.el, provide
22710 both reftex-dcr and reftex-vcr.
22711
22712 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
22713
22714 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
22715
22716 * ps-print.el: PostScript code now is in separate files, doc fix.
22717 (ps-print-version): New version number (5.0.3).
22718 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
22719 local.
22720 (ps-spool-config): Initialization fix.
22721 (ps-print-prologue-1, ps-print-prologue-2)
22722 (ps-print-duplex-feature): PostScript code moved to separated file.
22723 (ps-background-image): Little code reformating.
22724 (ps-begin-file, ps-begin-job): Fix code.
22725 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
22726 (ps-prologue-file): New fun.
22727
22728 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
22729
22730 * ps-vars.el: Eliminated.
22731
22732 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
22733 `;;;###autoload'.
22734
22735 * ps-print.el: ps-vars eliminated, doc fix.
22736 (ps-print-version): New version number (5.0.2).
22737 (ps-spool-config): Initialization fix.
22738 (ps-print-customize): New fun.
22739
22740 2000-01-04 Gerd Moellmann <gerd@gnu.org>
22741
22742 * autorevert.el (auto-revert-mode): Return value of auto-revert-mode.
22743
22744 2000-01-04 Dave Love <fx@gnu.org>
22745
22746 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
22747 menu items.
22748
22749 2000-01-03 Dave Love <fx@gnu.org>
22750
22751 * elide-head.el (elide-head) [defgroup]: Add :version.
22752
22753 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
22754 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count):
22755 Use `cl-hash-table-p', not `hash-table-p'.
22756 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
22757
22758 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
22759
22760 * faces.el (face-read-integer, read-face-attribute)
22761 (color-defined-p, color-values): Unspecified-{f,b}g are now strings.
22762
22763 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
22764
22765 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
22766 at comment end, and re-insert them after filling.
22767
22768 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
22769
22770 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
22771 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
22772 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
22773
22774 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
22775
22776 * term/x-win.el (xw-defined-colors): Call color-supported-p,
22777 the new name of face-color-supported-p.
22778
22779 * term/w32-win.el (xw-defined-colors): Likewise.
22780
22781 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
22782
22783 * simple.el (completion-setup-function): Count completion-size
22784 from minibuffer-prompt-end, not from point-min.
22785
22786 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
22787
22788 * faces.el (read-face-attribute, defined-colors, color-defined-p):
22789 Pass the frame to tty-color-* functions.
22790 (display-color-p, frame-set-background-mode): Pass the frame to
22791 tty-display-color-p.
22792
22793 * term/tty-colors.el (tty-defined-color-alist): Renamed from
22794 tty-color-alist.
22795 (tty-color-alist, tty-modify-color-alist): New functions.
22796 (tty-color-define, tty-color-clear, tty-color-approximate)
22797 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept an
22798 optional parameter FRAME.
22799
22800 2000-01-01 Gerd Moellmann <gerd@gnu.org>
22801
22802 * image.el (create-image, defimage): Don't assume image data is
22803 a string.
22804
22805 * image.el (defimage): Handle specifications containing :data
22806 instead of :file.
22807 (image-type-from-data): New function.
22808 (image-type-from-file-header): Use it.
22809 (create-image): Add parameter DATA-P.
22810
22811 See ChangeLog.8 for earlier changes.
22812
22813 ;; Local Variables:
22814 ;; coding: iso-2022-7bit
22815 ;; End:
22816
22817 Copyright (C) 2000, 2001 Free Software Foundation, Inc.
22818 Copying and distribution of this file, with or without modification,
22819 are permitted provided the copyright notice and this notice are preserved.