(mouse-wheel-scroll-amount): Use same definition as
[bpt/emacs.git] / lisp / ChangeLog
1 2002-02-25 Jason Rumney <jasonr@gnu.org>
2
3 * w32-vars.el (mouse-wheel-scroll-amount): Use same definition as
4 mwheel.el.
5
6 * language/japanese.el (iso-2022-jp-2): Add init-bol flag.
7
8 2002-02-25 Andre Spiegel <spiegel@gnu.org>
9
10 * vc.el (vc-diff-switches-list): Fix prev change, making the macro
11 consistent with the others that take a backend name as a symbol.
12
13 * vc-{cvs,rcs,sccs}.el: Update callers to the above.
14
15 2002-02-25 Kim F. Storm <no-spam@cua.dk>
16
17 * comint.el (comint-replace-by-expanded-filename): Do nothing if
18 comint-match-partial-filename returns nil.
19
20 * shell.el (shell-pcomplete-setup-done): New variable.
21 (shell-pcomplete): Use it instead of shell-pcomplete-setup-p.
22 (shell-pcomplete-reverse): Ditto.
23
24 2002-02-25 Per Abrahamsen <abraham@dina.kvl.dk>
25
26 * ps-print.el (ps-print-printer): Added `lpr' customize group
27 member.
28
29 2002-02-25 Juanma Barranquero <lektu@terra.es>
30
31 * subr.el (save-match-data): Doc fix.
32
33 * ielm.el (ielm-prompt): Allow customization; make it read-only.
34
35 2002-02-25 Kim F. Storm <storm@cua.dk>
36
37 * shell.el (shell-mode-map): Add "Complete" header so completion
38 menu is shown on the menu bar in shell mode.
39
40 2002-02-25 Stefan Monnier <monnier@cs.yale.edu>
41
42 * ielm.el (ielm-match-data): New var.
43 (inferior-emacs-lisp-mode): Make it buffer-local.
44 (ielm-eval-input): Use it to preserve match-data between inputs.
45
46 2002-02-24 Juanma Barranquero <lektu@terra.es>
47
48 * ielm.el (inferior-emacs-lisp-mode): Use hexl for the dummy process.
49
50 2002-02-24 Per Abrahamsen <abraham@dina.kvl.dk>
51
52 * cus-edit.el (custom-unlispify-remove-prefixes): Add to
53 `custom-buffer' customize group.
54
55 2002-02-23 Kim F. Storm <storm@cua.dk>
56
57 * help.el (where-is): Use remap-command.
58
59 * help-fns.el (describe-function-1): Use remap-command.
60
61 * subr.el (global-set-key, local-set-key): Undo 2002-02-06
62 change (no longer accept a symbol for the KEY argument).
63
64 2002-02-23 Colin Walters <walters@debian.org>
65
66 * calc/calcalg3.el (calc-invent-variables): Convert integer to string.
67 * calc/calcalg2.el (math-solve-get-sign): Ditto.
68
69 * ibuffer.el (ibuffer-compile-format): Don't uselessly bind `pt'
70 in generated function.
71
72 * ibuf-ext.el (ibuffer-old-time): Change to hours.
73 (ibuffer-mark-old-buffers): Handle it.
74
75 * shell.el (shell-pcomplete, shell-pcomplete-reverse): New functions.
76 (toplevel): Bind them.
77 (shell-mode): Don't set `comint-dynamic-complete-functions'; it is
78 not necessary now that we use pcomplete.
79
80 * comint.el: Document how use new pcomplete completion facility.
81
82 2002-02-23 Richard M. Stallman <rms@gnu.org>
83
84 * mail/rmailsum.el (rmail-summary-output): Properly advance
85 to next message, by calling rmail-summary-goto-msg.
86
87 * net/browse-url.el (browse-url-galeon): Specify --existing
88 for an existing window. Use --noraise rather than --no-raise.
89 Don't use -x.
90
91 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
92
93 * progmodes/etags.el (find-tag-noselect, find-tag)
94 (find-tag-other-window, find-tag-other-frame, find-tag-regexp):
95 Fix a typo in doc strings.
96
97 2002-02-20 Deepak Goel <deego@glue.umd.edu>
98
99 * play/snake.el (snake-velocity-queue, snake-update-velocity)
100 (snake-final-x-velocity, snake-final-y-velocity):
101 New variable and functions. Store user's keypresses
102 into a queue and pop from the queue each subsequent turn.
103 (snake-update-game, snake-move-left)
104 (snake-move-right, snake-move-up, snake-move-down, snake-active-p)
105 (snake-start-game): Use that queue.
106 (snake-use-glyphs-flag): Renamed from snake-use-glyphs.
107 (snake-use-color-flag): Likewise.
108 (snake-mode): Rename uses of those variables.
109
110 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
111
112 Support for ICCCM Extended Segments in X selections:
113
114 * international/mule-conf.el (ctext-no-compositions): New coding
115 system.
116 (compount-text-no-extensions): Renamed from compound-text.
117 (x-ctext-no-extensions, ctext-no-extensions): Aliases for
118 compound-text-no-extensions.
119 (compound-text): Redefined using post-read and pre-write conversions.
120
121 * international/mule.el (non-standard-icccm-encodings-alist)
122 (non-standard-designations-alist): New variables.
123 (ctext-post-read-conversion, ctext-pre-write-conversion):
124 New functions.
125
126 2002-02-21 Andre Spiegel <spiegel@gnu.org>
127
128 Patch by Jonathan Kamens <jik@kamens.brookline.ma.us>.
129
130 * vc.el (vc-default-init-version): Update documentation to
131 indicate that the backend can override the default init version.
132 (vc-register): Use the backend init-version function, if it
133 exists, to determine the initial version of a file.
134 (vc-diff-switches-list): Don't symbol-quote backend, since it's
135 already a symbol. Don't fail if vc-BACKEND-diff-switches isn't bound.
136
137 * vc-hooks.el (vc-mode-line): Set vc-mode to nil if the file is
138 not version-controlled. This is necessary, e.g., if the file has
139 just been reverted, and thus was previously under version control
140 but isn't any longer.
141 (vc-find-file-hook): Likewise.
142
143 2002-02-21 Andre Spiegel <spiegel@gnu.org>
144
145 Patch by Martin.Lorentzson@telia.com.
146
147 * vc-cvs.el (vc-cvs-sticky-date-format-string): New variable.
148 (vc-cvs-sticky-tag-display): New variable.
149 (vc-cvs-mode-line-string): Add sticky-tag to the mode-line.
150 (vc-cvs-checkin): If the input revision is a valid symbolic tag
151 name, we create it as a branch, commit and switch to it.
152 (vc-cvs-retrieve-snapshot): Set file-property sticky-tag.
153 (vc-cvs-valid-symbolic-tag-name-p): New function.
154 (vc-cvs-parse-sticky-tag): New function.
155 (vc-cvs-parse-entry): Added parsing of sticky tags.
156
157 2002-02-21 Per Abrahamsen <abraham@dina.kvl.dk>
158
159 * toolbar/tool-bar.el (tool-bar-mode): Revert the :init-value to
160 nil, and then explicitly set the standard-value to t.
161
162 2002-02-20 Sam Steingold <sds@gnu.org>
163
164 * textmodes/flyspell.el (flyspell-mode): Autoload the variable
165 since it is used in the menu bar.
166
167 2002-02-20 Richard M. Stallman <rms@gnu.org>
168
169 * simple.el (shell-command-on-region): Display the exit status
170 when a command fails.
171
172 * subr.el (add-hook): Doc fix.
173
174 * frame.el (other-frame): Doc fix.
175
176 * simple.el (yank): Clear `field' property.
177
178 2002-02-20 Tom Tromey <tromey@cachet>
179
180 * progmodes/tcl.el (tcl-do-fill-paragraph): Find and fill on more
181 natural paragraph boundaries. Don't fail at beginning of buffer.
182
183 2002-02-20 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
184
185 * tar-mode.el (tar-next-line, tar-previous-line): Add doc string,
186 call the argument "arg" to match plain next-line and
187 previous-line. From Kevin Ryde <user42@zip.com.au>.
188
189 2002-02-19 Sam Steingold <sds@gnu.org>
190
191 * mwheel.el (mouse-wheel-scroll-amount): Can specify different
192 scroll amounts for different modifiers now.
193 (mwheel-scroll): Handle the new `mouse-wheel-scroll-amount'
194 format properly.
195 (mouse-wheel-mode): Ditto.
196
197 2002-02-19 Eli Zaretskii <eliz@is.elta.co.il>
198
199 * textmodes/bibtex.el (bibtex-parse-keys): Put save-match-data
200 around function body.
201
202 * net/browse-url.el (browse-url-maybe-new-window): Reverse the
203 sense of the comparison, to match the doc strings of functions
204 that use this macro.
205
206 2002-02-19 Per Abrahamsen <abraham@dina.kvl.dk>
207
208 * facemenu.el (describe-text-mode-map): Removed bootstrap kludge.
209
210 * toolbar/tool-bar.el (tool-bar-mode): Made the standard value t.
211 * menu-bar.el (menu-bar-mode): Ditto.
212
213 2002-02-18 Andreas Schwab <schwab@suse.de>
214
215 * replace.el (query-replace-regexp-eval): Doc fix.
216
217 2002-02-18 Colin Walters <walters@verbum.org>
218
219 * calc/calcalg2.el (math-solve-get-int): Convert return value from
220 `math-get-from-counter' to a string before calling `concat' on it.
221
222 * calc/calc-maint.el (calc-split-manual): Look for calc.texi.
223 (calc-public-autoloads): Obsolete; remove.
224 (calc-private-autoloads): Ditto.
225 (calc-add-autoloads): Ditto.
226
227 * calc/calc-macs.el (calc-with-default-simplification): Use &rest
228 for body.
229
230 2002-02-17 Jason Rumney <jasonr@gnu.org>
231
232 * w32-win.el (x-option-alist, x-long-option-alist)
233 (x-switch-definitions): Remove, use command-line-x-option-alist
234 instead to be consistent with X.
235 (x-handle-initial-switch): New function.
236
237 2002-02-17 Eli Zaretskii <eliz@is.elta.co.il>
238
239 * faces.el (mode-line-inactive, header-line): Add the :inherit
240 attribute for the tty case.
241
242 2002-02-17 stanislav shalunov <shalunov@internet2.edu>
243
244 * mail/uce.el (uce-reply-to-uce): Fix incorrect behavior when
245 invoked from Rmail with full headers displayed.
246
247 2002-02-17 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
248
249 * emacs-lisp/lisp.el (mark-defun): Don't leave multiple marks
250 when repeated.
251 * textmodes/paragraphs.el (mark-paragraph): Ditto.
252
253 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
254
255 * menu-bar.el (menu-bar-showhide-menu): Added speedbar.
256 (menu-bar-tools-menu): Removed speedbar.
257
258 * textmodes/ispell.el (ispell-menu-map): Added `customize-ispell'
259 and `flyspell-mode' entries.
260
261 * textmodes/flyspell.el (flyspell): Add to ispell group.
262
263 2002-02-17 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
264
265 * emacs-lisp/lisp.el (mark-sexp): Don't leave multiple marks when
266 repeated.
267 (mark-defun): Mark more if repeated.
268
269 2002-02-17 Colin Walters <walters@verbum.org>
270
271 * ibuf-ext.el (ibuffer-toggle-sorting-mode): Make it work.
272
273 * ibuffer.el (ibuffer-truncate-lines): New option.
274 (ibuffer-mode): Use it.
275
276 2002-02-17 Kim F. Storm <storm@cua.dk>
277
278 * cus-start.el: Add mouse-highlight.
279
280 2002-02-16 Eli Zaretskii <eliz@is.elta.co.il>
281
282 * Makefile.in (DONTCOMPILE): Remove cus-start.el.
283
284 * cus-start.el: Add automatic-hscroll-margin and
285 automatic-hscroll-step.
286
287 2002-02-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
288
289 * cus-start.el (x-autoselect-window): Allow customization.
290
291 * eshell/em-alias.el (eshell-alias-initialize): Do not use
292 make-local-hook.
293
294 * eshell/em-cmpl.el (eshell-cmpl-initialize): Likewise.
295
296 * eshell/em-dirs.el (eshell-dirs-initialize): Likewise.
297
298 * eshell/em-glob.el (eshell-glob-initialize): Likewise.
299
300 * eshell/em-hist.el (eshell-hist-initialize): Likewise.
301
302 * eshell/em-pred.el (eshell-pred-initialize): Likewise.
303
304 * eshell/em-prompt.el (eshell-prompt-initialize): Likewise.
305
306 * eshell/em-rebind.el (eshell-rebind-initialize): Likewise.
307
308 * eshell/em-smart.el (eshell-smart-initialize): Likewise.
309
310 * eshell/em-unix.el (eshell-unix-initialize): Likewise.
311
312 * eshell/esh-cmd.el (eshell-cmd-initialize): Likewise.
313
314 * eshell/esh-ext.el (eshell-ext-initialize): Likewise.
315
316 * eshell/esh-io.el (eshell-io-initialize): Likewise.
317
318 * eshell/esh-mode.el (eshell-mode): Likewise.
319
320 * eshell/esh-test.el (eshell-show-usage-metrics): Likewise.
321
322 * eshell/esh-var.el (eshell-var-initialize): Likewise.
323
324 * progmodes/idlw-shell.el (idlwave-shell-mode): Likewise.
325
326 * progmodes/idlwave.el (idlwave-mode): Likewise.
327
328 * textmodes/reftex-sel.el (reftex-select-label-mode)
329 (reftex-select-bib-mode): Likewise.
330
331 2002-02-16 John Wiegley <johnw@gnu.org>
332
333 * eshell/em-hist.el (eshell-hist-initialize): When in the
334 minibuffer, use the global value of `eshell-history-ring', and
335 never save it to disk, or ask to save it to disk. This allows
336 users of session.el to control whether its global state should be
337 persisted or not.
338 (eshell-add-command-to-history): Don't write Eshell's history out
339 to disk, let the governing mode control that upon exit.
340
341 2002-02-16 Eli Zaretskii <eliz@is.elta.co.il>
342
343 * eshell/eshell.el (eshell-command): Before reading from the
344 minibuffer, add eshell-add-command-to-history to
345 minibuffer-exit-hook, and remove it after read-from-minibuffer
346 returns.
347
348 * eshell/em-hist.el (eshell-add-input-to-history): New function,
349 with most of the code from eshell-add-to-history.
350 (eshell-add-command-to-history): New function, to record in
351 eshell-history the commands run via eshell-command.
352 (eshell-add-to-history): Call eshell-add-command-to-history to do
353 most of the work.
354
355 2002-02-16 John Wiegley <johnw@gnu.org>
356
357 * eshell/esh-ext.el (eshell-external-command): Added a fix for
358 XEmacs' new dired.el, which adds a global entry in the
359 `file-name-handler-alist'.
360
361 2002-02-16 John Wiegley <johnw@gnu.org>
362
363 * align.el (align-region): Added a missing name argument.
364
365 2002-02-16 John Wiegley <johnw@gnu.org>
366
367 * eshell/esh-ext.el (eshell-script-interpreter): Allow whitespace
368 after the #! of a shell interpretor specification.
369
370 2002-02-15 Richard M. Stallman <rms@gnu.org>
371
372 * help.el (describe-key-briefly): Make output in INSERT case
373 look just like what is displayed in the normal case.
374
375 2002-02-15 Andreas Schwab <schwab@suse.de>
376
377 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Require
378 non-letter after specials.
379
380 2002-02-15 Eli Zaretskii <eliz@is.elta.co.il>
381
382 * menu-bar.el (menu-bar-tools-menu): Add an item for Calculator.
383
384 2002-02-15 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
385
386 * simple.el (mark-word): Mark more if repeated.
387 * textmodes/paragraphs.el (mark-paragraph): Ditto.
388 (mark-end-of-sentence): Ditto.
389
390 2002-02-15 Per Abrahamsen <abraham@dina.kvl.dk>
391
392 * wid-edit.el (widgetp): Made it more robust.
393
394 2002-02-14 Per Abrahamsen <abraham@dina.kvl.dk>
395
396 * facemenu.el (describe-text-done): New function.
397 (describe-text-mode-map): New variable.
398 (describe-text-mode-hook): New option.
399 (describe-text-mode): New function.
400 (describe-text-widget): New function.
401 (describe-text-sexp): New function.
402 (describe-text-properties): New function.
403 (describe-text-category): New command.
404 (describe-text-at): New command.
405 (facemenu-menu): Replace `list-text-properties-at' with
406 `describe-text-at' in the menu.
407
408 * wid-edit.el (widgetp): New function.
409 * wid-edit.el (widget-keymap, widget-insert, widget-setup):
410 Autoloaded.
411
412 * emacs-lisp/pp.el (pp-to-string): Autoloaded.
413
414 * wid-browse.el: Removed version and x-url keywords.
415
416 2002-02-13 Kim F. Storm <storm@cua.dk>
417
418 * cus-start.el (mode-line-in-non-selected-windows):
419 Allow customization.
420
421 2002-02-13 Richard M. Stallman <rms@gnu.org>
422
423 * textmodes/bibtex.el (bibtex-parse-buffers-stealthily):
424 Tell bibtex-parse-keys to output no progress messages.
425
426 * international/mule-diag.el (list-input-methods):
427 Use help-input-method, not describe-input-method, for button type.
428
429 * register.el (describe-register-1): Access register contents here.
430
431 * textmodes/text-mode.el (text-mode-hook-identify):
432 Restore previous definition. Add to text-mode-hook again.
433
434 * mail/mailabbrev.el (define-mail-abbrev): Define as system abbrev.
435 (mail-abbrev-in-expansion-header-p): Copy the code of mail-header-end
436 to avoid needing sendmail.el at run time.
437
438 * bindings.el (mode-line-minor-mode-keymap): Definition moved up.
439 Initialization moved up too.
440 (mode-line-modes): Use :propertize.
441 (mode-line-mode-menu-keymap): Var deleted.
442 (mode-line-copied-mode-name): Var deleted.
443 (mode-line-mode-name): Function deleted.
444 (mode-line-mode-menu): Each item now shows its mode line lighter.
445 (minor-mode-alist): Don't call propertize here.
446
447 2002-02-12 Eli Zaretskii <eliz@is.elta.co.il>
448
449 * progmodes/pascal.el (pascal-imenu-generic-expression):
450 Add menu-title and fix parentheses.
451
452 2002-02-12 Per Abrahamsen <abraham@dina.kvl.dk>
453
454 * menu-bar.el (menu-bar-options-save): Removed `truncate-lines'.
455 (menu-bar-options-menu): Don't set default value for `truncate-lines'.
456
457 2002-02-12 Per Abrahamsen <abraham@dina.kvl.dk>
458
459 * menu-bar.el (menu-bar-options-save): Only save
460 `current-language-environment' and `default-input-method' when
461 marked as customized.
462
463 * international/mule-cmds.el
464 (setup-specified-language-environment):
465 Mark `current-language-environment' as customized.
466 (set-input-method): Mark `default-input-method' as customized when
467 called interactively.
468 (toggle-input-method): Ditto.
469
470 2002-02-11 Colin Walters <walters@verbum.org>
471
472 * ibuffer.el (ibuffer-switch-format): Supply required argument for
473 `ibuffer-current-formats'.
474
475 2002-02-11 Miles Bader <miles@gnu.org>
476
477 * faces.el (mode-line-inactive): Add dark-background variant.
478
479 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
480
481 * toolbar/tool-bar.el (tool-bar-mode): Removed standard value.
482 * menu-bar.el (menu-bar-mode): Ditto.
483 * cus-edit.el (customize-mark-to-save): Always save variables
484 without a standard value.
485
486 * menu-bar.el (menu-bar-make-toggle): Made it aware of customize.
487 (menu-bar-options-save): Ditto.
488 (menu-bar-showhide-menu): Ditto.
489 (menu-bar-options-menu): Ditto.
490 (menu-bar-scroll-bar-right, menu-bar-scroll-bar-left)
491 (menu-bar-scroll-bar-none): Remove.
492 (menu-bar-showhide-scroll-bar-menu): Use customize aware lambda
493 expressions instead.
494
495 * cus-edit.el (customize-set-value): Return value.
496 (customize-set-variable): Ditto.
497 (customize-save-variable): Ditto.
498 (customize-set-variable): Load dependencies before setting value.
499 (custom-load-symbol): Autoload it.
500 (customize-mark-as-set): New function.
501
502 2002-02-11 Eli Zaretskii <eliz@is.elta.co.il>
503
504 * cus-start.el: Don't warn about "x-*" symbols when building a
505 non-GUI version.
506
507 2002-02-11 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
508
509 * strokes.el (strokes-do-stroke, strokes-do-complex-stroke):
510 Doc fix.
511 (strokes-help): Do not use doubled with-output-to-temp-buffer.
512 Fix the help string.
513 (strokes-prompt-user-save-strokes): Fix typo.
514 (strokes-list-strokes): Use proper exit-action argument for
515 view-buffer. Update copyright notice.
516
517 * international/mule-diag.el: Various doc and message fixes.
518 (non-iso-charset-alist): Add mac-roman. Don't add entries for
519 codepages already present.
520 (list-block-of-chars): Display space for null entries in
521 translation table. Display tab specially.
522 (list-non-iso-charset-chars): Check for null charsets. Use pop
523 for clarity. Don't break 8-bit sets into sections between ranges.
524 (list-charset-chars): Avoid indent-tabs-mode.
525 (describe-char-after): Maybe use the text property for syntax
526 table information. Maybe report char-code-property-table info.
527 Maybe report character's unicode. Tweak printing of list info.
528 (list-input-methods): Add xref buttons.
529 (dump-charsets, dump-codings): Deleted (obsolete).
530 From Dave Love <fx@gnu.org>.
531
532 2002-02-10 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
533
534 * menu-bar.el (menu-bar-showhide-menu): Rename functions for toggling.
535
536 2002-02-10 Michael Kifer <kifer@cs.stonybrook.edu>
537
538 * viper-util.el (viper-read-key-sequence): Fix so it'll read
539 fast key sequences in emacs native mode
540 (viper-events-to-keys): Delete.
541
542 * viper.el (describe-key, describe-key-briefly): Get rid of
543 viper-events-to-keys.
544
545 * ediff-init.el (ediff-has-gutter-support): Steven Turnbull's patch.
546
547 * ediff-wind.el (ediff-setup-control-frame):
548 Use ediff-has-gutter-support.
549
550 * ediff-util.el (ediff-dispose-of-variant-according-to-user):
551 check if buff is alive.
552
553 * ediff.el: Typo in comment.
554
555 2002-02-09 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
556
557 * menu-bar.el (menu-bar-options-save): Take care of
558 line-number-mode and column-number-mode variables.
559 (menu-bar-showhide-menu): New menu-items "Show Line Number" and
560 "Show Column Number" in "Show/Hide" menu.
561
562 2002-02-09 Richard M. Stallman <rms@gnu.org>
563
564 * mail/mailabbrev.el (mail-mode-map): Use eval-after-load to change it.
565
566 2002-02-09 Kim F. Storm <storm@cua.dk>
567
568 * faces.el (mode-line-inactive): New face for mode-line for
569 non-selected windows.
570 (mode-line): Doc fix: Only used for selected window.
571
572 2002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
573
574 * calendar/cal-menu.el (calendar-mode-map): Change the menu item's
575 name to "Insert Diary Entry".
576
577 2002-02-08 Stefan Monnier <monnier@cs.yale.edu>
578
579 * font-lock.el (save-buffer-state): Use restore-buffer-modified-p.
580 (c-font-lock-syntactic-face-function): Accept doxygen-style comments.
581
582 2002-02-08 Richard M. Stallman <rms@gnu.org>
583
584 * textmodes/text-mode.el (text-mode-hook-identify): Define as no-op.
585
586 2002-02-08 Andreas Schwab <schwab@suse.de>
587
588 * calc/calc.el (calcDigit-key): Use minibuffer-prompt-end instead
589 of point-min.
590
591 2002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
592
593 * net/ange-ftp.el (ange-ftp-process-handle-line)
594 (ange-ftp-set-xfer-size): If the file's size is a float, divide
595 by 1024 instead of using ash.
596
597 * international/mule-cmds.el (select-safe-coding-system):
598 State the buffer's name in the message popped in the *Warning* buffer,
599 and make sure the offending buffer is displayed.
600
601 2002-02-07 Markus Rost <rost@math.ohio-state.edu>
602
603 * ffap.el (ffap-newsgroup-p): Test for non-nil symbol-value of htb.
604
605 2002-02-07 Richard M. Stallman <rms@gnu.org>
606
607 * terminal.el (terminal-map): Define [menu-bar] so global def is seen.
608
609 * register.el (list-registers): New command.
610 (describe-register-1): New subroutine, taken out of view-register.
611
612 * emacs-lisp/copyright.el (copyright-regexp):
613 Delete the unibyte copyright symbol; it's redundant.
614 Fix a spazz in the multibyte encoding here.
615
616 2002-02-07 Dave Love <fx@gnu.org>
617
618 * language/cyril-util.el (cyrillic-encode-koi8-r-char)
619 (cyrillic-encode-alternativnyj-char): Get translation tables from
620 symbol properties, not as variables.
621 (standard-display-cyrillic-translit): Include unicodes.
622
623 2002-02-06 Kim F. Storm <storm@cua.dk>
624
625 * help.el (where-is): Report remapped commands.
626
627 * help-fns.el (describe-function-1): Ditto.
628
629 * subr.el (global-set-key, local-set-key): Accept a symbol for the
630 KEY argument (like define-key).
631
632 2002-02-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
633
634 * textmodes/flyspell.el (flyspell-insert-function): Doc fix.
635
636 2002-02-06 Richard M. Stallman <rms@gnu.org>
637
638 * mail/mailabbrev.el: Require sendmail only at compile time.
639 (mail-mode-header-syntax-table): Var deleted.
640 (mail-abbrev-syntax-table): Init to nil, will compute when needed.
641 (sendmail-pre-abbrev-expand-hook): Only temporarily change
642 local-abbrev-table and the syntax table.
643 Compute mail-abbrev-syntax-table if that has not been done.
644
645 * progmodes/compile.el (grep-compute-defaults): Definition moved up.
646
647 * emacs-lisp/debug.el (debugger-frame-offset): Var deleted.
648 (debugger-frame-number): Figure out the offset directly.
649 (debugger-setup-buffer): Don't use debugger-frame-offset.
650 (debugger-frame, debugger-frame-clear): Likewise.
651 (debugger-jump): Don't alter debugger-frame-offset.
652
653 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
654 Replace foo-p as var name with foo-flag, not foo-p-flag.
655
656 * hilit-chg.el (highlight-changes-active-string): Default to +Chg.
657 (highlight-changes-passive-string): Default to -Chg.
658 (highlight-changes-global-modes): Doc fix.
659
660 * dired.el (dired-get-filename): Add /: when appropriate
661 to avoid taking a local name as remote.
662
663 * files.el (file-name-non-special): Add special handling for
664 file-name-sans-versions, file-name-completion, and
665 file-name-all-completions.
666
667 * isearch.el (isearch-update): Don't update display in kbd macro.
668 (isearch-lazy-highlight-new-loop): Do nothing in kbd macro.
669
670 * subr.el (force-mode-line-update): Doc fix.
671
672 * subr.el (atomic-change-group, prepare-change-group)
673 (activate-change-group, accept-change-group, cancel-change-group):
674 New functions.
675
676 * simple.el (undo-get-state, undo-revert-to-state): Fns deleted.
677 (transpose-subr-1): Use atomic-change-group.
678
679 * subr.el (add-minor-mode): Include the mode's lighter string
680 in the minor mode menu item name.
681
682 * mail/rmail.el (rmail-toggle-header): Avoid possibly slow call to
683 rmail-count-screen-lines starting from (point-min).
684
685 * startup.el (use-fancy-splash-screens-p): Need 19 lines,
686 beyond the image height, to use the fancy splash screen.
687
688 * textmodes/text-mode.el (text-mode-hook-identify): Function deleted.
689 (text-mode): Set text-mode-variant here.
690
691 2002-02-06 Eli Zaretskii <eliz@is.elta.co.il>
692
693 * play/pong.el (pong-height): Don't use height that exceeds the
694 frame height.
695 (pong-border-options): Make the border colors slightly more bright.
696
697 * play/gamegrid.el (gamegrid-display-type): Treat any
698 color-capable display as color-x, if display-color-p is fboundp.
699 (gamegrid-make-color-x-face): Don't call gamegrid-color twice.
700 (gamegrid-make-color-tty-face): Use the value of color, not the
701 symbol itself. Don't call gamegrid-color.
702
703 2002-02-05 Eli Zaretskii <eliz@is.elta.co.il>
704
705 * gud.el (gud-refresh): Call recenter only after we are sure we
706 are in the right window.
707
708 2002-02-05 Per Abrahamsen <abraham@dina.kvl.dk>
709
710 * cus-edit.el (customize-mark-to-save): New function.
711 * menu-bar.el (menu-bar-options-save): Rewrote.
712
713 2002-02-05 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
714
715 * cus-start.el (x-use-underline-position-properties):
716 Allow customization.
717
718 2002-02-04 Simon Josefsson <jas@extundo.com>
719
720 * dired.el (dired-load-hook, dired-mode-hook)
721 (dired-before-readin-hook, dired-after-readin-hook): Defcustom.
722
723 2002-02-03 Colin Walters <walters@verbum.org>
724
725 * ibuf-ext.el (ibuffer-filter-format-alist)
726 (ibuffer-cached-filter-formats, ibuffer-compiled-filter-formats):
727 New variables.
728 * ibuffer.el (ibuffer): Remove link; the "home page" for ibuffer
729 is now the Emacs CVS tree.
730 (ibuffer-formats): Doc fix.
731 (ibuffer-active-formats-name, ibuffer-current-formats): New functions.
732 (ibuffer-current-format): Use them.
733 (ibuffer-recompile-formats, ibuffer-check-formats)
734 (ibuffer-switch-format, ibuffer-update-title):
735 Add support for ibuffer-filter-format-alist.
736 (define-ibuffer-column process): Remove unncessary consing.
737
738 * ibuf-macs.el (define-ibuffer-column): Add beginnings of support
739 for a summary column.
740
741 2002-02-03 Andreas Schwab <schwab@suse.de>
742
743 * window.el (save-selected-window): Move macro before first use.
744 (balance-windows): Fix misplaced parenthesis.
745
746 2002-02-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
747
748 * calculator.el (calculator-displayers): Doc fixes.
749
750 2002-02-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
751
752 * menu-bar.el (menu-bar-help-menu): Use different text for tool-tip.
753 (menu-bar-options-save): Save also the value of `display-time-mode'.
754 (showhide-date-time): New function.
755 (menu-bar-showhide-menu): New menu-item "Date and time".
756
757 2002-02-03 Eli Zaretskii <eliz@is.elta.co.il>
758
759 * mail/rmail.el (rmail): Use find-buffer-visiting instead of
760 get-file-buffer to check for rmail buffer existence.
761
762 * term.el (term-emulate-terminal): Extract proper command string
763 which is supplied to term-command-hook.
764
765 2002-02-03 Richard M. Stallman <rms@gnu.org>
766
767 * international/quail.el (quail-help): Don't call help-setup-xref.
768
769 * international/mule-cmds.el (describe-input-method):
770 Call help-setup-xref here.
771 (describe-current-input-method): Doc fix.
772
773 * novice.el (disabled-command-hook): Clarify output text.
774 Indent the paragraph from the command's doc string.
775
776 * dabbrev.el (dabbrev--goto-start-of-abbrev):
777 Exit loop on beginning of field rather than bobp.
778
779 2002-02-02 Eli Zaretskii <eliz@is.elta.co.il>
780
781 * mail/uce.el (uce-reply-to-uce): Prune the headers before copying
782 the message text into the *mail* buffer, and restore the pruned
783 state after that.
784
785 * mail/rmail.el (rmail-redecode-body): Prune the headers before
786 looking for X-Coding-System header, and restore the pruned state
787 before returning.
788
789 2002-02-02 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
790
791 * cus-edit.el (customize-save-variable): Fix typo in prompt.
792
793 These changes integrate new version of flyspell.el from its
794 maintainer, Manuel Serrano:
795
796 * textmodes/flyspell.el (flyspell-issue-message-flag): New user option.
797 (flyspell-mode-on, flyspell-notify-misspell)
798 (flyspell-small-region, flyspell-external-point-words)
799 (flyspell-large-region): Use it
800 (flyspell-before-incorrect-word-string)
801 (flyspell-after-incorrect-word-string): New user options.
802 (make-flyspell-overlay): Use them.
803 (flyspell-version): New function.
804 (flyspell-incorrect-face, flyspell-duplicate-face): Adapt face
805 definitions to use :weight.
806 (flyspell-insert-function): New user option.
807 (flyspell-auto-correct-word, flyspell-correct-word)
808 (flyspell-xemacs-correct): Use it.
809 (flyspell-define-abbrev): New function.
810 (flyspell-auto-correct-word, flyspell-correct-word)
811 (flyspell-xemacs-correct): Use it.
812 (make-flyspell-overlay): Use `evaporate' property.
813 (flyspell-auto-correct-word, flyspell-correct-word): Remove overlay.
814 (flyspell-emacs-popup): Use `session' instead of `accept'.
815 (flyspell-auto-correct-previous-pos): New variable.
816 (flyspell-auto-correct-previous-hook)
817 (flyspell-auto-correct-previous-word): New functions.
818
819 2002-02-02 Eli Zaretskii <eliz@is.elta.co.il>
820
821 * novice.el (enable-command): If Emacs was invoked as "emacs -q",
822 don't alter the user's ~/.emacs.
823 (disable-command): If user-init-file is nil or does not exist,
824 default to "~/.emacs" (~/_emacs on DOS and, maybe, Windows).
825 But don't alter the init file if Emacs was invoked as "emacs -q"
826
827 2002-02-01 Stefan Monnier <monnier@cs.yale.edu>
828
829 * mail/sendmail.el (mail-mode): Undo half of last change.
830
831 * indent.el (indent-for-tab-command): Remove spurious code.
832
833 * hi-lock.el (hi-lock-find-patterns): Save restriction.
834
835 2002-02-01 Eli Zaretskii <eliz@is.elta.co.il>
836
837 * calendar/time-date.el: Moved from lisp/gnus.
838
839 * calendar/parse-time.el: Ditto.
840
841 2002-01-31 Richard M. Stallman <rms@gnu.org>
842
843 * international/iso-acc.el (iso-languages): Fix ", " in French.
844
845 * cus-start.el (history-length): Specify customization for it.
846
847 * emacs-lisp/debug.el (debugger-setup-buffer):
848 When an eval-buffer frame was reading from a buffer,
849 insert indication of the buffer position.
850 (debugger-frame-number): Ignore ;;;-comment lines in backtrace.
851 (debugger-frame-clear, debugger-frame): Error on non-frame line.
852
853 * simple.el (shell-command-on-region): Err if no mark
854 before reading the command string.
855
856 * hl-line.el (hl-line-highlight, hl-line-unhighlight):
857 Definitions moved down after hl-line-mode var's definition.
858
859 * hilit-chg.el (hilit-chg-fixup): Don't alter overlay if not ours.
860 (hilit-chg-set-face-on-change): Rename arg.
861 (hilit-chg-make-ov): Detect error earlier.
862
863 * ediff-hook.el: Delete autoload cookies.
864
865 * comint.el (comint-scroll-show-maximum-output): Default is t.
866
867 * emacs-lisp/bytecomp.el (batch-byte-compile): New arg noforce.
868 (batch-byte-compile-if-not-done): New function.
869
870 * Makefile.in (compile): New target.
871 (compile-always): Renamed from compile-files.
872 (compile-after-backup): Renamed from compile.
873 (bootstrap): Depend on compile-always, not compile-files.
874
875 * emulation/pc-select.el (pc-select-save-and-set-mode):
876 Properly use MODE-VAR.
877
878 2002-01-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
879
880 * menu-bar.el (menu-bar-help-menu): Change menu-item "Show Emacs
881 Version" to "About Emacs".
882 (menu-bar-options-save): Add `default-frame-alist'
883 to saved variables.
884 (menu-bar-showhide-scroll-bar-menu): Use frame-parameters instead
885 of the variable `scroll-bar-mode'.
886
887 * startup.el (normal-splash-screen, display-splash-screen):
888 New functions (separated from command-line-1).
889 (command-line-1): Use them.
890
891 2002-01-28 Eli Zaretskii <eliz@is.elta.co.il>
892
893 * calendar/calendar.el (generate-calendar-month): Doc fix.
894
895 2002-01-27 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
896
897 * time.el (display-time-mail-directory): New option.
898 (display-time-mail-function): Update doc-string.
899 (display-time-mail-icon): Use XPM image when available.
900 (display-time-string-forms): Use more descriptive text as
901 help-echo property.
902 (display-time-mail-check-directory): New function.
903 (display-time-update): Use it.
904
905 * menu-bar.el (menu-bar-showhide-scroll-bar-menu):
906 Quote `window-system'.
907
908 * tmm.el (tmm-get-keymap): Honour :visible in `menu-item'.
909 Add Keywords header. Update Commentary section.
910 Update copyright notice.
911
912 * menu-bar.el (menu-bar-scroll-bar-right)
913 (menu-bar-scroll-bar-left, menu-bar-scroll-bar-none)
914 (showhide-menu-bar): New functions.
915 (menu-bar-showhide-menu): New submenu "Show/Hide".
916 (menu-bar-showhide-scroll-bar-menu): "Scroll-bar" submenu of
917 "Show/Hide".
918 Update copyright notice.
919
920 2002-01-27 Eli Zaretskii <eliz@is.elta.co.il>
921
922 * lazy-lock.el (lazy-lock-mode): Add a reference to jit-lock.
923
924 2002-01-26 Evgeny Roubinchtein <evgenyr@cs.washington.edu>
925
926 * pc-select.el (pc-selection-mode-hook)
927 (pc-select-saved-settings-alist, pc-select-map)
928 (pc-select-saved-global-map, pc-select-key-bindings-alist)
929 (pc-select-default-key-bindings, pc-select-extra-key-bindings)
930 (pc-select-meta-moves-sexps-key-bindings)
931 (pc-select-tty-key-bindings, pc-select-old-M-delete-binding):
932 New variables.
933 (pc-select-define-keys, pc-select-restore-keys): New functions.
934 (pc-select-add-to-alist, pc-select-save-and-set-var)
935 (pc-select-save-and-set-mode, pc-select-restore-var)
936 (pc-select-restore-mode): New macros.
937 (pc-selection-mode): Completely rewrote the body of the function;
938 the main goal was to make pc-selection-mode "turn-off"-able, like
939 other minor modes. Use define-minore-mode instead of just a
940 defun. Store the key bindings into four alists:
941 pc-select-default-key-bindings, pc-select-extra-key-bindings,
942 pc-select-meta-moves-sexps-key-bindings, and
943 pc-select-tty-key-bindings; then have the pc-select-define-keys
944 function walk those alists instead of calling define-key
945 repeatedly. When the mode is turned on, set the
946 keybindings in global-map and remember the old keybindings; when
947 the mode is turned off, restore the previously-saved keybindings.
948 (pc-selection-mode defcustom): Reflect the fact that the mode is
949 now "turn-off"-able.
950
951 2002-01-26 Eli Zaretskii <eliz@is.elta.co.il>
952
953 * eshell/esh-cmd.el (eshell-eval-command): If eshell-resume-eval
954 returns t, don't treat that as an error.
955
956 2002-01-25 Jason Rumney <jasonr@gnu.org>
957
958 * faces.el (face-font-registry-alternatives) [windows-nt]:
959 Add ms-oemlatin as an alternative for iso8859-1.
960
961 2002-01-25 Stefan Monnier <monnier@cs.yale.edu>
962
963 * pcvs.el (cvs-reread-cvsrc): Distinguish between an empty list of
964 args and the absence of an entry. Don't add -f each time.
965
966 2002-01-25 Eli Zaretskii <eliz@is.elta.co.il>
967
968 * emacs-lisp/cl-seq.el (mismatch): Doc fix.
969
970 Support for more than 8 colors on character terminals:
971
972 * term/rxvt.el: New file.
973
974 * Makefile.in (DONTCOMPILE): Remove term/xterm.el.
975
976 * term/xterm.el (xterm-standard-colors): New variable.
977 (xterm-rgb-convert-to-16bit, xterm-register-default-colors)
978 (xterm-rxvt-set-background-mode): New functions.
979 (toplevel): Call xterm-register-default-colors,
980 xterm-rxvt-set-background-mode, and tty-set-up-initial-frame-faces.
981 Add support for more keys from xterm's terminfo entry.
982
983 * facemenu.el (list-colors-display): If the argument is nil, don't
984 show more colors that the number returned by display-color-cells.
985
986 * term/pc-win.el (msdos-color-values): Reverse the order of the
987 colors, since tty-color-define now preserves the registration order.
988
989 * w32-fns.el (w32-tty-standard-colors): Reverse the order.
990
991 * term/tty-colors.el (tty-standard-colors): Reverse the order.
992 (tty-register-default-colors): New function; code moved from
993 startup.el's command-line.
994 (tty-modify-color-alist): Use nconc instead of cons, to preserve
995 the order the colors where registered.
996
997 * frame.el (display-color-cells): Use tty-display-color-cells.
998
999 * startup.el (command-line): Call tty-register-default-colors.
1000
1001 2002-01-25 Richard M. Stallman <rms@gnu.org>
1002
1003 * subr.el (remove): Doc fix.
1004
1005 2002-01-24 Richard M. Stallman <rms@gnu.org>
1006
1007 * progmodes/compile.el (compilation-handle-exit):
1008 Add a compilation-handle-exit property to the "finished" message.
1009 (compilation-parse-errors): Stop parsing when that property is seen.
1010
1011 * subr.el (substring-no-properties): New function.
1012 (copy-without-properties): Function deleted.
1013
1014 * term/x-win.el (x-handle-geometry): Put sizes on both
1015 initial-frame-alist and default-frame-alist.
1016
1017 * cus-edit.el (custom-save-all): Bind file-precious-flag to t
1018 for saving .emacs.
1019
1020 * files.el (basic-save-buffer-2): Ignore file-error in delete-file.
1021
1022 * calendar/calendar.el (generate-calendar-month): Doc fix.
1023
1024 2002-01-23 Richard M. Stallman <rms@gnu.org>
1025
1026 * play/tetris.el (tetris): New defgroup.
1027 (tetris-use-glyphs, tetris-use-color, tetris-draw-border-with-glyphs)
1028 (tetris-default-tick-period): Convert to defcustom.
1029 Added * in docstring to indicate user variable.
1030 (tetris-update-speed-function, tetris-mode-hook, tetris-tty-colors)
1031 (tetris-x-colors, tetris-buffer-name, tetris-buffer-width)
1032 (tetris-buffer-height, tetris-width, tetris-height)
1033 (tetris-top-left-x, tetris-top-left-y): Convert to defcustom.
1034
1035 2002-01-22 Stefan Monnier <monnier@cs.yale.edu>
1036
1037 * mail/sendmail.el (mail-mode): ">" is not a supercite-style prefix
1038 and is already matched by adaptive-fill-regexp.
1039
1040 2002-01-22 Richard M. Stallman <rms@gnu.org>
1041
1042 * bindings.el (mode-line-copied-mode-name): New variable.
1043 (mode-line-mode-name): Don't modify mode-name itself!
1044 Instead, make a copy and reuse it.
1045
1046 * subr.el (copy-without-properties): New function.
1047
1048 * progmodes/sh-script.el (sh-set-shell): Doc fix.
1049
1050 * net/ange-ftp.el (ange-ftp-canonize-filename): Avoid duplicate
1051 slash if DIR is just slash.
1052
1053 * progmodes/perl-mode.el (perl-mode-abbrev-table): Restore definition.
1054
1055 2002-01-21 Richard M. Stallman <rms@gnu.org>
1056
1057 * emacs-lisp/copyright.el (copyright-regexp): Fix previous change.
1058
1059 * net/ange-ftp.el (ange-ftp-bs2000-posix-hook-installed):
1060 Move defvar up.
1061
1062 * textmodes/ispell.el (ispell-help): Clean up echo area if user quits.
1063
1064 * ibuffer.el: Don't require ibuf-ext at load time.
1065 (ibuffer): Require ibuf-ext here.
1066
1067 2002-01-21 Francesco Potorti` <pot@gnu.org>
1068
1069 * generic-x.el (apache-conf-generic-mode): Highlight the first
1070 word in a line even if preceded by blanks.
1071
1072 2002-01-21 Richard M. Stallman <rms@gnu.org>
1073
1074 * window.el (window-body-height): Handle minibuffer window specially.
1075 Otherwise, don't return less than 1.
1076
1077 2002-01-20 Thomas Dorner <Thomas.Dorner@start.de>
1078
1079 * ange-ftp.el: Added support for BS2000, and for raw ftp
1080 login commands (needed in some circumstances).
1081 (ange-ftp-raw-login): New custom var.
1082 (ange-ftp-normal-login): Perform login with raw ftp commands, if
1083 ange-ftp-raw-login is set and account password is needed.
1084 (ange-ftp-host-type, ange-ftp-guess-host-type): Handle BS2000 hosts.
1085 (ange-ftp-bs2000-filename-pubset-regexp)
1086 (ange-ftp-bs2000-filename-username-regexp)
1087 (ange-ftp-bs2000-filename-prefix-regexp)
1088 (ange-ftp-bs2000-name-template): New consts.
1089 (ange-ftp-bs2000-short-filename-regexp)
1090 (ange-ftp-bs2000-fix-name-regexp-reverse)
1091 (ange-ftp-bs2000-fix-name-regexp): New consts.
1092 (ange-ftp-bs2000-special-prefix): New custom var.
1093 (ange-ftp-fix-name-for-bs2000)
1094 (ange-ftp-fix-dir-name-for-bs2000): New funs.
1095 (ange-ftp-bs2000-host-regexp, ange-ftp-bs2000-posix-host-regexp)
1096 (ange-ftp-bs2000-posix-hook-installed): New vars.
1097 (ange-ftp-parse-bs2000-filename, ange-ftp-parse-bs2000-listing)
1098 (ange-ftp-bs2000-host, ange-ftp-bs2000-posix-host)
1099 (ange-ftp-add-bs2000-host, ange-ftp-add-bs2000-posix-host): New funs.
1100 (ange-ftp-bs2000-filename-regexp): New const.
1101 (ange-ftp-bs2000-additional-pubsets): New custom var.
1102 (ange-ftp-bs2000-cd-to-posix): New fun.
1103
1104 2002-01-20 Colin Walters <walters@verbum.org>
1105
1106 * ibuffer.el: (toplevel) Require `ibuf-ext', which is now compiled
1107 with `byte-compile-dynamic'.
1108 (ibuffer-default-directory, toplevel): Doc files.
1109
1110 2002-01-20 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1111
1112 * tempo.el (tempo-define-template): Doc fix.
1113
1114 * scroll-bar.el (scroll-bar-mode): Make argument optional.
1115
1116 2002-01-20 Jason Rumney <jasonr@gnu.org>
1117
1118 * w32-vars.el: New file.
1119
1120 * loadup.el [windows-nt]: Load it.
1121
1122 * w32-fns.el, term/w32-win.el: Move user variables to w32-vars.el
1123 and make them defcustoms.
1124
1125 * term/w32-win.el (mouse-set-font): Use w32-list-proportional-fonts.
1126
1127 2002-01-19 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1128
1129 * language/tibet-util.el (tibetan-decompose-region)
1130 (tibetan-decompose-string): Fix typo in docstring.
1131
1132 * ruler-mode.el (ruler-mode): New keyword. Fix :version.
1133
1134 2002-01-18 Richard M. Stallman <rms@gnu.org>
1135
1136 * comint.el (comint-redirect-send-command-to-process):
1137 Restore previous current buffer.
1138
1139 * window.el (window-body-height): New function.
1140
1141 2002-01-18 Zoltan Kemenczy <kemenczy@rogers.com>
1142
1143 * gud.el (easy-mmode-defmap): Enable "Up Stack", "Down Stack", and
1144 "Finish Function" menu map entries for jdb mode.
1145 (gud-jdb-use-classpath): New customization variable.
1146 (gud-jdb-command-name): Add customization.
1147 (gud-jdb-classpath, gud-marker-acc-max-length): New variables.
1148 (gud-jdb-classpath-string): New variable.
1149 (gud-jdb-source-files, gud-jdb-class-source-alist): Add doc strings.
1150 (gud-jdb-build-source-files-list): Likewise.
1151 (gud-jdb-massage-args): Record any command argument classpath
1152 string in `gud-jdb-classpath-string'.
1153 (gud-jdb-lowest-stack-level): New function, finds bottom of current
1154 java call stack in jdb output.
1155 (gud-jdb-find-source-using-classpath, gud-jdb-find-source)
1156 (gud-jdb-parse-classpath-string): New functions.
1157 (gud-jdb-marker-filter): Search/detect classpath information in
1158 jdb's output. marker regexp updated to match oldjdb and jdb output
1159 formats. Expand search for source files to include new/old methods
1160 using new functions above. Do not allow `gud-marker-acc' to grow
1161 without bound.
1162 (jdb): Set classpath information (if available) as jdb is started.
1163 Change `gud-break' and `gud-remove'
1164 to use new %c ("class") escape in format strings. Add
1165 `gud-finish', `gud-up', `gud-down' command string functions, and
1166 add them to the local menu map. Update `comint-prompt-regexp' for
1167 jdb and oldjdb. If attaching to an already running java VM and
1168 configured to use classpath, send command to query for classpath,
1169 else use previous method for finding and parsing java
1170 sources. Set `gud-jdb-find-source' function accordingly.
1171 (gud-mode): Doc fix.
1172 (gud-format-command): Add support for new %c ("class") escape.
1173 (gud-find-class): New function in support of %c escape.
1174
1175 2002-01-17 Richard M. Stallman <rms@gnu.org>
1176
1177 * ibuf-ext.el: Enable byte-compile-dynamic.
1178
1179 2002-01-17 Jason Rumney <jasonr@gnu.org>
1180
1181 * term/w32-win.el: Restore conditional require of fontset.
1182
1183 2002-01-16 Richard M. Stallman <rms@gnu.org>
1184
1185 * mouse.el (mouse-drag-region-1): Renamed from mouse-drag-region,
1186 more or less.
1187 (mouse-drag-region): New function. For a click in the echo area,
1188 show *Messages*.
1189
1190 * ibuf-ext.el: Delete the autoloads for functions defined with
1191 ibuffer-specific commands.
1192
1193 * help.el (describe-distribution): Really call view-file.
1194
1195 * net/ange-ftp.el (ange-ftp-passive-mode): New arg PROC.
1196 (ange-ftp-get-process): Pass that arg.
1197
1198 * comint.el (comint-simple-send): Fix previous change.
1199
1200 * net/telnet.el (telnet-simple-send): Fix previous change.
1201
1202 * progmodes/sql.el (sql-escape-newlines-and-send)
1203 (sql-query-placeholders-and-send): Fix previous change.
1204
1205 2002-01-16 Colin Walters <walters@verbum.org>
1206
1207 * ibuf-ext.el, ibuf-macs.el, ibuffer.el (toplevel): Remove X-RCS,
1208 URL, Compatibility headers. Update copyright notice.
1209 * ibuf-macs.el (toplevel): Require `cl' when compiling.
1210
1211 2002-01-16 Andrew Choi <akochoi@cse.cuhk.edu.hk>
1212
1213 * startup.el (command-line): Set EOL mnemonics for the Mac.
1214
1215 2002-01-16 Andreas Schwab <schwab@suse.de>
1216
1217 * mail/feedmail.el (feedmail): Fix :link spec.
1218
1219 2002-01-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1220
1221 * net/ldap.el (ldap-ldapsearch-prog): Default to OpenLDAP version
1222 2 ldapsearch.
1223
1224 * net/eudc.el: New maintainer. Change author's address.
1225 (eudc-pre-select-window-configuration, eudc-insertion-marker):
1226 Variables removed.
1227 (eudc-insert-selected): Function removed.
1228 (eudc-select): Reimplemented.
1229 (eudc-expand-inline): Delete the strings only after its expansion
1230 is chosen not before.
1231
1232 * net/eudcb-ph.el (eudc-ph-open-session): Remove XEmacs case.
1233 Minor coding style fixes.
1234
1235 * net/eudcb-ldap.el: New maintainer. Change author's address.
1236 (eudc-attribute-display-method-alist): Display mail with
1237 eudc-display-mail.
1238
1239 * net/eudcb-bbdb.el, net/eudc-export.el, net/eudc-hotlist.el,
1240 * net/eudc-vars.el: New maintainer. Change author's address.
1241
1242 * net/eudc-bob.el: New maintainer. Change author's address.
1243 (eudc-bob-mail-keymap): New keymap for e-mail addresses.
1244 (eudc-display-mail): New function.
1245 (eudc-bob-play-sound-at-point): Remove XEmacs case.
1246
1247 2002-01-15 Richard M. Stallman <rms@gnu.org>
1248
1249 * emacs-lisp/autoload.el (make-autoload):
1250 Don't handle define-ibuffer-column, define-ibuffer-filter,
1251 define-ibuffer-sorter, and define-ibuffer-op.
1252
1253 2002-01-14 Richard M. Stallman <rms@gnu.org>
1254
1255 * calendar/calendar.el (diary-date-forms): Doc fix.
1256
1257 2002-01-14 Eli Zaretskii <eliz@is.elta.co.il>
1258
1259 * startup.el (command-line): Register the default tty colors even
1260 if the terminal doesn't seem to support colors.
1261 <tty-long-option-alist>: New option --color.
1262 (tty-handle-args): Parse the --color arg.
1263
1264 * term/tty-colors.el (tty-color-mode-alist): New variable.
1265
1266 2002-01-14 Stefan Monnier <monnier@cs.yale.edu>
1267
1268 * net/ange-ftp.el (ange-ftp-root-dir-p): New function.
1269 (ange-ftp-file-name-all-completions, ange-ftp-file-name-completion):
1270 Use it.
1271 (ange-ftp-hook-function): Preserve match-data.
1272 (ange-ftp-insert-directory): Typo.
1273 (ange-ftp-shell-command): Check if regexp matched.
1274
1275 2002-01-13 Richard M. Stallman <rms@gnu.org>
1276
1277 * international/mule-cmds.el: help-map bindings moved to help.el.
1278
1279 * help.el (view-echo-area-messages): New function.
1280 (help-map): Add `e' binding. Delete obsolete `d' binding.
1281 Change old Info bindings C-f, C-k and C-i to F, K, S.
1282 Move view-emacs-FAQ from F to C-f.
1283 Move view-emacs-problems from P to C-e.
1284 Bindings moved here from mule-cmds.el.
1285 C-l binding for describe-language-environment deleted
1286 (help-for-help): Update for all these changes.
1287
1288 * emacs-lisp/copyright.el (copyright-regexp): Make (C) optional.
1289
1290 2002-01-13 Dave Love <fx@gnu.org>
1291
1292 * emacs-lisp/copyright.el: Doc fixes.
1293 (copyright-regexp): Add Latin-9 copyright sign.
1294 Match comment delimiters in year lists.
1295 (copyright-current-year): Initialize to load-time year.
1296
1297 2002-01-13 Andreas Schwab <schwab@suse.de>
1298
1299 * dired-aux.el (dired-do-shell-command): Doc fix.
1300
1301 2002-01-13 Jan Djarv <Jan.Djarv@mbox200.swipnet.se>
1302
1303 * startup.el (command-line-x-option-alist): New options "-fs",
1304 "-fw", "-fh", "--fullscreen", "--fullwidth", and "--fullheight".
1305
1306 * term/x-win.el (x-handle-initial-switch): New function.
1307
1308 2002-01-13 Colin Walters <walters@debian.org>
1309
1310 * emacs-lisp/autoload.el (make-autoload): Handle
1311 define-ibuffer-column, define-ibuffer-filter,
1312 define-ibuffer-sorter, and define-ibuffer-op.
1313
1314 * emacs-lisp/lisp-mode.el (toplevel): Ditto.
1315
1316 * ibuffer.el, ibuf-ext.el, ibuf-macs.el: New files.
1317
1318 2002-01-12 Richard M. Stallman <rms@gnu.org>
1319
1320 * net/browse-url.el (browse-url-grail):
1321 Use browse-url-maybe-new-window.
1322
1323 * net/telnet.el (telnet-simple-send): Handle
1324 comint-input-sender-no-newline like comint-simple-send.
1325
1326 * progmodes/sql.el (sql-query-placeholders-and-send): Handle
1327 comint-input-sender-no-newline like comint-simple-send.
1328 (sql-escape-newlines-and-send): Likewise.
1329
1330 * comint.el (comint-input-sender): Doc fix.
1331 (comint-input-sender-no-newline): New variable.
1332 (comint-simple-send): If comint-input-sender-no-newline,
1333 don't output newline, but maybe send eof.
1334 (comint-send-input): New arg NO-NEWLINE.
1335 (comint-send-eof): Call comint-send-eof with NO-NEWLINE.
1336
1337 2002-01-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1338
1339 * textmodes/flyspell.el (flyspell-check-pre-word-p): Prevent
1340 delaying when executing keyboard macros.
1341
1342 2002-01-12 Richard M. Stallman <rms@gnu.org>
1343
1344 * simple.el (line-move): If we can't move enough lines,
1345 go to beginning or end of line.
1346
1347 * help-mode.el (help-xref-go-back): Restore POSITION in proper buffer
1348 and proper window.
1349
1350 * help.el (describe-mode): Call help-setup-xref in the help buffer.
1351 Switch buffers only after calling `help-buffer'.
1352
1353 * dired-aux.el (dired-shell-stuff-it): Substitute for * or ?
1354 only when they are surrounded by whitespace.
1355 Use dired-mark-separator when adding one file name to a command.
1356 (dired-do-shell-command): Verify that * is surrounded by whitespace.
1357 Ask for confirmation if * or ? is not surrounded by whitespace.
1358 (dired-bunch-files): Re-reverse the partial file list when it is used.
1359
1360 2002-01-12 Richard M. Stallman <rms@gnu.org>
1361
1362 * comint.el (comint-dynamic-list-completions): Repeating the command
1363 after displaying a completion list scrolls the list.
1364
1365 2002-01-12 Eli Zaretskii <eliz@is.elta.co.il>
1366
1367 * files.el (find-file-noselect): Don't consider a buffer as
1368 visiting a file literally if it is in hexl-mode.
1369
1370 * faces.el (minibuffer-prompt): A better face definition for MS-DOS.
1371
1372 2002-01-11 Richard M. Stallman <rms@gnu.org>
1373
1374 * startup.el (initial-scratch-message): Fix custom type, add group.
1375
1376 * mail/rmail.el (rmail-decode-babyl-format): Disable undo
1377 around the decode-coding-region call.
1378
1379 * emacs-lisp/lisp.el (lisp-complete-symbol): Repeating the command
1380 after displaying a completion list scrolls the list.
1381
1382 2002-01-11 Eli Zaretskii <eliz@is.elta.co.il>
1383
1384 * version.el (emacs-version): Bump to 21.2.50.
1385
1386 2002-01-10 Thien-Thi Nguyen <ttn@giblet.glug.org>
1387
1388 * play/zone.el (zone-timeout): New var.
1389 (zone-hiding-modeline): New macro.
1390 (zone-call): New func.
1391
1392 (zone): Init `modeline-hidden-level' symbol property.
1393 Use `zone-call' instead of `funcall'.
1394
1395 (zone-pgm-whack-chars): Use `make-string' (fix bug introduced in 2001-10-26T20:11:25Z!monnier@iro.umontreal.ca).
1396
1397 (zone-pgm-stress): Use `zone-hiding-modeline'.
1398
1399 (zone-pgm-stress-destress): New zone program.
1400
1401 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
1402
1403 * faces.el (minibuffer-prompt): Special face definition for MS-DOS.
1404
1405 2002-01-09 Richard M. Stallman <rms@gnu.org>
1406
1407 * startup.el (fancy-splash-screens): Set tab-width in correct buffer.
1408
1409 2002-01-09 Michael Kifer <kifer@cs.stonybrook.edu>
1410
1411 * viper.el (viper-set-hooks): Zap viper-unfriendly bindings in
1412 flyspell-mouse-map.
1413
1414 2002-01-08 Richard M. Stallman <rms@gnu.org>
1415
1416 * emacs-lisp/regexp-opt.el (regexp-opt): Bind max-specpdl-size.
1417
1418 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Fix custom type.
1419
1420 * textmodes/flyspell.el (flyspell-mode-line-string): Fix custom type.
1421
1422 2002-01-08 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1423
1424 * progmodes/ada-mode.el (ada-initialize-properties, ada-mode):
1425 Do not use make-local-hook.
1426
1427 2002-01-08 Eli Zaretskii <eliz@is.elta.co.il>
1428
1429 * international/quail.el (quail-start-translation)
1430 (quail-start-conversion): Bind last-command-event, last-command,
1431 and this-command in the first let. This fixes the change from
1432 2000-08-30.
1433
1434 2002-01-08 Michael Kifer <kifer@cs.stonybrook.edu>
1435
1436 * ediff-hook.el: Add an autoload cookie.
1437
1438 2002-01-08 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1439
1440 * net/eudcb-ph.el, net/ldap.el: New maintainer. New e-mail
1441 address of the author.
1442
1443 2002-01-08 Richard M. Stallman <rms@gnu.org>
1444
1445 * replace.el (occur-mode-goto-occurrence-other-window): New command.
1446 (occur-mode-map): Bind `o' to that.
1447
1448 2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
1449
1450 * viper-init.el (viper-cond-compile-for-xemacs-or-emacs):
1451 new macro that replaces viper-emacs-p and viper-xemacs-p in many
1452 cases. Used to reduce the number of warnings.
1453
1454 * viper-cmd.el: Use viper-cond-compile-for-xemacs-or-emacs.
1455 (viper-standard-value): Move here from viper.el.
1456 (viper-set-unread-command-events): Move to viper-util.el
1457 (viper-check-minibuffer-overlay): Make sure
1458 viper-minibuffer-overlay is moved to cover the entire input field.
1459
1460 * viper-util.el: use viper-cond-compile-for-xemacs-or-emacs.
1461 (viper-read-key-sequence, viper-set-unread-command-events)
1462 (viper-char-symbol-sequence-p, viper-char-array-p): Moved here.
1463
1464 * viper-ex.el: Use viper-cond-compile-for-xemacs-or-emacs.
1465
1466 * viper-keym.el: Use viper-cond-compile-for-xemacs-or-emacs.
1467
1468 * viper-mous.el: Use viper-cond-compile-for-xemacs-or-emacs.
1469
1470 * viper-macs.el (viper-char-array-p, viper-char-symbol-sequence-p)
1471 (viper-event-vector-p): Move to viper-util.el
1472
1473 * viper.el (viper-standard-value): Move to viper-cmd.el.
1474 Use viper-cond-compile-for-xemacs-or-emacs.
1475
1476 * ediff-help.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1477
1478 * ediff-hook.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1479
1480 * ediff-init.el (ediff-cond-compile-for-xemacs-or-emacs):
1481 New macro designed to be used in many places where ediff-emacs-p or
1482 ediff-xemacs-p was previously used. Reduces the number of warnings.
1483 Use ediff-cond-compile-for-xemacs-or-emacs in many places in lieu
1484 of ediff-xemacs-p.
1485 (ediff-make-current-diff-overlay, ediff-highlight-diff-in-one-buffer)
1486 (ediff-convert-fine-diffs-to-overlays, ediff-empty-diff-region-p)
1487 (ediff-whitespace-diff-region-p, ediff-get-region-contents):
1488 Move to ediff-util.el.
1489 (ediff-event-key): Moved here.
1490
1491 * ediff-merge.el: Got rid of unreferenced variables.
1492
1493 * ediff-mult.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1494
1495 * ediff-util.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1496 (ediff-cleanup-mess): Improve the way windows are set up after
1497 quitting ediff.
1498 (ediff-janitor): Use ediff-dispose-of-variant-according-to-user.
1499 (ediff-dispose-of-variant-according-to-user): New function
1500 designed to be smarter and also understands indirect buffers.
1501 (ediff-highlight-diff-in-one-buffer)
1502 (ediff-unhighlight-diff-in-one-buffer)
1503 (ediff-unhighlight-diffs-totally-in-one-buffer)
1504 (ediff-highlight-diff, ediff-highlight-diff)
1505 (ediff-unhighlight-diff, ediff-unhighlight-diffs-totally)
1506 (ediff-empty-diff-region-p, ediff-whitespace-diff-region-p)
1507 (ediff-get-region-contents, ediff-make-current-diff-overlay):
1508 Moved here.
1509 (ediff-format-bindings-of): New function by Hannu Koivisto
1510 <azure@iki.fi>.
1511 (ediff-setup): Make sure the merge buffer is always widened and
1512 modifiable.
1513 (ediff-write-merge-buffer-and-maybe-kill): Refuse to write the
1514 result of a merge into a file visited by another buffer.
1515 (ediff-arrange-autosave-in-merge-jobs): Check if the merge file
1516 is visited by another buffer and ask to save/delete that buffer.
1517 (ediff-verify-file-merge-buffer): New function to do the above.
1518
1519 * ediff-vers.el: Load ediff-init.el at compile time.
1520
1521 * ediff-wind.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1522
1523 * ediff.el (ediff-windows, ediff-regions-wordwise)
1524 (ediff-regions-linewise): Use indirect buffers to improve
1525 robustness and make it possible to compare regions of the same
1526 buffer (even overlapping regions).
1527 (ediff-clone-buffer-for-region-comparison)
1528 (ediff-clone-buffer-for-window-comparison): New functions.
1529 (ediff-files-internal): Refuse to compare identical files.
1530 (ediff-regions-internal): Get rid of the warning about comparing
1531 regions of the same buffer.
1532
1533 * ediff-diff.el (ediff-convert-fine-diffs-to-overlays): Moved here.
1534 Plus the following fixes courtesy of Dave Love: Doc fixes.
1535 (ediff-word-1): Use word class and move - to the
1536 front per regexp documentation.
1537 (ediff-wordify): Bind forward-word-function outside loop.
1538 (ediff-copy-to-buffer): Use insert-buffer-substring rather than
1539 consing buffer contents.
1540 (ediff-goto-word): Move syntax table setting outside loop.
1541
1542 2002-01-07 Richard M. Stallman <rms@gnu.org>
1543
1544 * dired.el (dired-copy-filename-as-kill): Call kill-append
1545 if following a kill command.
1546
1547 * help-fns.el (describe-variable, describe-function):
1548 Do save-excursion.
1549
1550 2002-01-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1551
1552 * net/ldap.el (ldap-search-internal): Skip error message from
1553 ldapsearch. Allow listing attribute names only. Do not open
1554 non-existent files.
1555
1556 * net/eudcb-ldap.el (eudc-ldap-get-field-list): Do not try to
1557 call non-existent function.
1558
1559 * net/eudc.el (top-level): Revert previous change.
1560
1561 * net/net-utils.el (nslookup-font-lock-keywords): Defvar font-lock
1562 variables to prevent warning from byte-compiler.
1563
1564 * net/eudc.el (top-level): Use eudc-xemacs-p instead of
1565 string-match on emacs-version again.
1566
1567 * enriched.el (enriched-make-annotation): Fix the change from
1568 2002-01-05.
1569 (enriched-handle-display-prop): Return proper values.
1570
1571 * net/eudcb-ldap.el (eudc-attribute-display-method-alist): Use
1572 proper attribute name labeledUri instead of deprecated labeledUrl.
1573
1574 2002-01-05 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1575
1576 * net/eudc-hotlist.el (eudc-edit-hotlist): Avoid error when
1577 editing an empty hotlist.
1578
1579 * net/ldap.el (ldap-search-internal): Make the buffer unibyte.
1580 Use buffer-string instead of buffer-substring for the whole
1581 buffer.
1582
1583 * net/eudc-vars.el (eudc-external-viewers): Do not use xv, it is
1584 not free.
1585
1586 * net/eudc-bob.el (eudc-bob-can-display-inline-images)
1587 (eudc-bob-display-jpeg): Use fboundp instead of boundp.
1588 (eudc-bob-save-object): Make the buffer unibyte.
1589 (eudc-bob-generic-keymap): Add new keybinding `!' to pipe the
1590 object to external program.
1591
1592 2002-01-05 Andre Spiegel <spiegel@gnu.org>
1593
1594 * vc.el (vc-branch-part): Return nil if there's no `.'
1595 (vc-default-previous-version): Renamed from vc-previous-version.
1596 New args BACKEND and FILE. Return nil for revision numbers
1597 without a `.'
1598 (vc-version-diff): Call vc-BACKEND-previous-version.
1599 (vc-steal-lock): Steal lock before composing mail, so that no mail
1600 is sent when the stealing goes wrong. And we'll actually see the
1601 error in that case now.
1602 (vc-finish-steal): Removed.
1603
1604 * vc-rcs.el (vc-rcs-steal-lock): Do a real checkout after stealing
1605 the lock, so that we see expanded headers.
1606 (vc-rcs-trunk-p, vc-rcs-branch-part, vc-rcs-branch-p,
1607 vc-rcs-minor-part, vc-rcs-previous-version): Removed. These are
1608 available from vc.el. Updated all callers.
1609
1610 2002-01-05 Richard M. Stallman <rms@gnu.org>
1611
1612 * enriched.el (enriched-make-annotation): Doc fix.
1613
1614 * format.el (format-replace-strings, format-subtract-regions)
1615 (format-annotate-region, format-annotate-location)
1616 (format-annotate-atomic-property-change)
1617 (format-annotate-single-property-change): Doc fixes.
1618
1619 2002-01-05 Jason Rumney <jasonr@gnu.org>
1620
1621 * term/w32-win.el: Require fontset unconditionally.
1622 (w32-handle-scroll-bar-event): Remove.
1623
1624 2002-01-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
1625
1626 * emacs-lisp/copyright.el (copyright-regexp): Allow multi-line
1627 copyrights to be updated.
1628
1629 2002-01-04 Eli Zaretskii <eliz@is.elta.co.il>
1630
1631 * textmodes/texinfo.el (texinfo-insert-@end): Fix the change from
1632 2001-10-24.
1633
1634 * mail/sendmail.el (mail-recover-1, mail-recover): Doc fix.
1635
1636 2002-01-04 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1637
1638 * net/ldap.el (ldap-host-parameters-alist): Remove duplicated
1639 entry.
1640 (ldap-ignore-attribute-codings): Change the default value to allow
1641 encoding/decoding of attributes.
1642 (ldap-coding-system): Use UTF-8 as the coding-system. Doc fix.
1643
1644 2002-01-03 Richard M. Stallman <rms@gnu.org>
1645
1646 * files.el (basic-save-buffer): Undo previous change.
1647
1648 * calendar/diary-lib.el (diary-block): Doc fix.
1649
1650 * custom.el (defcustom): Fix syntax of previous change.
1651
1652 2002-01-03 Per Abrahamsen <abraham@dina.kvl.dk>
1653
1654 * custom.el (defcustom): Documented :tag, :link and :load.
1655
1656 2002-01-03 Eli Zaretskii <eliz@is.elta.co.il>
1657
1658 * mail/sendmail.el (mail-recover-1): New function.
1659 (mail-recover): Switch to the *mail* buffer right away. Use
1660 buffer-auto-save-file-name instead of calling
1661 make-auto-save-file-name. Call dired-noselect instead of invoking
1662 `ls' directly. Bind coding-system-for-read to emacs-mule-unix
1663 before reading the auto-save file. If the buffer's auto-save file
1664 does not exist, call mail-recover-1 to allow recovery from past
1665 auto-saved drafts.
1666
1667 2002-01-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1668
1669 * time.el (display-time-load-average-threshold): Fix defcustom
1670 (add type and group).
1671
1672 * net/ange-ftp.el (ange-ftp-shell-command): Remove port
1673 specification from the hostname.
1674
1675 2002-01-02 Richard M. Stallman <rms@gnu.org>
1676
1677 * facemenu.el (facemenu-active-faces):
1678 Use face-attributes-as-vector, not face-attributes-vector.
1679
1680 2002-01-02 Chris Hanson <cph@aarau.ai.mit.edu>
1681
1682 * xscheme.el: Eleven years of updates on a private copy.
1683
1684 Extensive changes to support multiple xscheme buffers:
1685 (run-scheme): Break up into new functions to facilitate starting
1686 processes in other buffers.
1687 (xscheme-start, xscheme-read-command-line): New functions.
1688 (start-scheme, select-scheme)
1689 (default-xscheme-runlight)
1690 (global-set-scheme-interaction-buffer)
1691 (local-set-scheme-interaction-buffer)
1692 (local-clear-scheme-interaction-buffer)
1693 (exit-scheme-interaction-mode)
1694 (verify-xscheme-buffer): New functions.
1695 (xscheme-process-name, xscheme-buffer-name)
1696 (xscheme-runlight): New internal vars.
1697 (default-xscheme-runlight): New const.
1698 (xscheme-start-process): Add args for the process/buffer names.
1699 (reset-scheme): Pass process/buffer names.
1700 (scheme-interaction-mode): Initialize new local vars.
1701 (reset-scheme, xscheme-send-string-2, xscheme-process-running-p)
1702 (xscheme-select-process-buffer, xscheme-process-buffer)
1703 (xscheme-send-region, xscheme-send-char, xscheme-send-interrupt)
1704 (xscheme-goto-output-point, xscheme-write-message-1): Use new
1705 var xscheme-process-name.
1706 (xscheme-start-process): Initialize xscheme-process-name and
1707 xscheme-buffer-name in the process buffer. Pass buffer name to
1708 xscheme-modeline-initialize.
1709 (xscheme-modeline-initialize): Add argument to specify buffer name
1710 for mode-line vars.
1711 (xscheme-process-sentinel): Make sure sentinel is run in the
1712 process buffer so it sees its local vars.
1713 (xscheme-process-filter-initialize, xscheme-set-runlight): More
1714 elaborate logic to handle multiple-buffer mode lines.
1715
1716 (xscheme-enter-input-wait): Re-enable control-G handler upon
1717 entering input wait.
1718
1719 (scheme-interaction-mode): Add arg to preserve local vars.
1720 (xscheme-enter-interaction-mode)
1721 (xscheme-enter-debugger-mode): Preserve local vars.
1722 (xscheme-start-process): Clobber local vars.
1723
1724 (scheme-interaction-mode-commands): Allow end user to add commands
1725 to scheme-interaction-mode keymap.
1726 (scheme-interaction-mode-commands-alist): New variable.
1727
1728 (xscheme-send-string): Don't use insert-before-markers.
1729
1730 Implement a per-buffer kill ring:
1731 (xscheme-insert-expression)
1732 (xscheme-rotate-yank-pointer, xscheme-yank)
1733 (xscheme-yank-pop, xscheme-yank-push): New functions.
1734 (xscheme-expressions-ring)
1735 (xscheme-expressions-ring-yank-pointer)
1736 (xscheme-expressions-ring-max): New variables.
1737 (xscheme-send-string-1): Call xscheme-insert-expression to save
1738 expression in ring.
1739 (xscheme-yank-previous-send): Now an alias for xscheme-yank.
1740 (xscheme-previous-send): Deleted variable.
1741
1742 (xscheme-send-string-2, xscheme-send-char, xscheme-send-proceed,
1743 xscheme-send-control-g-interrupt): Use process-send-string rather
1744 than send-string.
1745
1746 (xscheme-send-region): Insert a newline after an expression that
1747 is submitted in the interaction buffer, for consistency with
1748 recent changes to Edwin.
1749
1750 (xscheme-delete-output): New function mimics comint-delete-output.
1751 (xscheme-last-input-end): New internal variable.
1752 (xscheme-process-filter-output): Update xscheme-last-input-end.
1753
1754 (xscheme-send-control-g-interrupt): Make sure that
1755 xscheme-control-g-disabled-p is looked up in the right buffer.
1756
1757 (xscheme-enable-control-g): Clear C-g message if visible.
1758 (xscheme-control-g-message-string): New internal var.
1759 (xscheme-send-control-g-interrupt): Use new var.
1760
1761 (xscheme-send-control-g-interrupt, xscheme-send-interrupt): Delay
1762 after sending interrupt in order to work around race condition.
1763
1764 (xscheme-send-control-g-interrupt, xscheme-send-interrupt)
1765 (xscheme-send-char): Use xscheme-send-char rather than send-string
1766 to send single char.
1767
1768 (xscheme-process-filter, xscheme-process-filter-alist): Add
1769 support for evaluating expressions outside of the call-excursion.
1770 (xscheme-process-filter:string-action-noexcursion): New func.
1771
1772 (xscheme-write-value): Change output string to match that used by
1773 Edwin.
1774
1775 (xscheme-coerce-prompt): Don't write a space after a command
1776 prompt. The PROMPT-FOR-COMMAND- procedures will take care of this
1777 for us.
1778
1779 (reset-scheme): Delete process after killing it.
1780
1781 2002-01-02 Eli Zaretskii <eliz@is.elta.co.il>
1782
1783 * bindings.el (function-key-map): Don't bind shifted keypad
1784 numeric keys.
1785
1786 2002-01-02 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1787
1788 * enriched.el (enriched-handle-display-prop): Remove unused
1789 variables.
1790 (enriched-mode): Doc fix.
1791
1792 2002-01-02 Eli Zaretskii <eliz@is.elta.co.il>
1793
1794 * international/ucs-tables.el (ucs-8859-8-alist): Comment away
1795 Hebrew points.
1796
1797 2002-01-01 Richard M. Stallman <rms@gnu.org>
1798
1799 * jka-compr.el (jka-compr-write-region): If START = nil, use whole buf.
1800
1801 2001-12-31 Richard M. Stallman <rms@gnu.org>
1802
1803 * comint.el, cus-edit.el, diff-mode.el, enriched.el, font-lock.el:
1804 * generic-x.el, info.el, log-view.el, pcvs-info.el, speedbar.el:
1805 * wid-edit.el, woman.el, calendar/calendar.el, textmodes/flyspell.el:
1806 * emulation/viper-init.el, eshell/em-ls.el, progmodes/antlr-mode.el:
1807 * progmodes/cperl-mode.el, progmodes/idlwave.el:
1808 * progmodes/sh-script.el, progmodes/vhdl-mode.el:
1809 Adapt face definitions to use :weight and :slant.
1810
1811 * ps-print.el (ps-font-lock-face-attributes): Use :weight and :slant.
1812
1813 * cus-edit.el (custom-face-edit-fix-value): Delete `assert' call.
1814
1815 * font-lock.el (initializing from font-lock-face-attributes):
1816 Use :weight and :slant, not :bold and :italic.
1817
1818 2001-12-31 Per Abrahamsen <abraham@dina.kvl.dk>
1819
1820 * cus-edit.el (custom-face-edit-fix-value): New function.
1821 (custom-face-edit): Use it, to convert :italic and :bold to new forms.
1822
1823 2001-12-30 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1824
1825 * progmodes/octave-mod.el (octave-abbrev-table):
1826 * progmodes/idlwave.el (idlwave-mode-abbrev-table):
1827 * progmodes/fortran.el (fortran-mode-abbrev-table):
1828 * progmodes/f90.el (f90-mode-abbrev-table):
1829 * progmodes/vhdl-mode.el (vhdl-mode-abbrev-table-init):
1830 * progmodes/sql.el (sql-mode-abbrev-table): Mark all the
1831 predefined abbrevs as "system" abbrevs.
1832
1833 2001-12-30 Richard M. Stallman <rms@gnu.org>
1834
1835 * info.el (Info-fontify-node): For a **** underline line, put the
1836 invisible and intangible props on the following newline, but not
1837 on the previous newline or the last char of the previous line.
1838
1839 * faces.el (face-set-after-frame-default): Don't change `default' face.
1840
1841 * faces.el (minibuffer-prompt): Adopt some default colors.
1842
1843 * replace.el (query-replace-read-args): Immediate error if read-only.
1844
1845 * textmodes/makeinfo.el (makeinfo-compilation-sentinel):
1846 Display the output buffer in a more intelligent way.
1847
1848 2001-12-30 Eli Zaretskii <eliz@is.elta.co.il>
1849
1850 * ls-lisp.el (insert-directory): Modify the "total" line wording,
1851 in accordance with files.el's insert-directory.
1852
1853 2001-12-29 Richard M. Stallman <rms@gnu.org>
1854
1855 * files.el (basic-save-buffer): If a before-write hook displays
1856 an echo area message, pause before calling basic-save-buffer-1.
1857
1858 2001-12-29 Markus Rost <rost@math.ohio-state.edu>
1859
1860 * textmodes/reftex-global.el (reftex-query-replace-document)
1861 (reftex-change-label): Doc fix.
1862
1863 * dired-aux.el (dired-do-query-replace-regexp): Doc fix.
1864
1865 * progmodes/etags.el (tags-query-replace): Doc fix.
1866
1867 2001-12-29 Richard M. Stallman <rms@gnu.org>
1868
1869 * progmodes/compile.el (compile-internal): Fix previous change.
1870
1871 2001-12-28 Richard M. Stallman <rms@gnu.org>
1872
1873 * mouse.el (mouse-drag-mode-line-1): When dragging a mode line upward,
1874 shrink the windows above as necessary to get space.
1875 (mouse-drag-move-window-bottom, mouse-drag-window-above): New fns.
1876
1877 * net/ange-ftp.el (ange-ftp-allow-child-lookup): Always return nil.
1878 This fixes a bug that treated all files as directories.
1879 (ange-ftp-insert-directory): Explicitly follow symlinks.
1880
1881 * international/iso-transl.el (iso-transl-char-map) Eliminate the
1882 alias symbols--put the translated sequences here directly.
1883
1884 * progmodes/cc-mode.el (c-mode-abbrev-table)
1885 (c++-mode-abbrev-table, objc-mode-abbrev-table)
1886 (java-mode-abbrev-table, pike-mode-abbrev-table):
1887 Mark all the predefined abbrevs as "system" abbrevs.
1888
1889 * mail/sendmail.el (mail-envelope-from): Fix custom type.
1890 (sendmail-send-it): Check mail-specify-envelope-from
1891 and mail-envelope-from in the mail buffer at start.
1892
1893 2001-12-28 Simon Josefsson <jas@extundo.com>
1894
1895 * mail/sendmail.el (mail-envelope-from): Fix :type.
1896 (sendmail-send-it): Copy `mail-envelope-from' from calling buffer.
1897
1898 2001-12-28 Richard M. Stallman <rms@gnu.org>
1899
1900 * net/ldap.el (ldap-search-internal): Handle <file://...> in results.
1901
1902 * simple.el (line-move-invisible): New subroutine.
1903 (line-move-to-column): New subroutine--smarter about advancing over
1904 invisible parts of a line, or lines, but only as long as hpos grows.
1905 (line-move-finish): New subroutine: repeatedly processes desired
1906 column, intangibility, and fields.
1907 (line-move): Use those subroutines.
1908 When moving lines downward, skip invisible text first rather than last.
1909
1910 2001-12-27 Richard M. Stallman <rms@gnu.org>
1911
1912 * international/mule-diag.el (describe-char-after):
1913 Describe the text properties of the char after point.
1914
1915 * help.el (describe-key): Doc fix.
1916
1917 2001-12-26 Markus Rost <rost@math.ohio-state.edu>
1918
1919 * find-dired.el (find-dired-sentinel): Precede exit message by
1920 two spaces, to match the regexp in dired-between-files.
1921
1922 2001-12-28 Miles Bader <miles@gnu.org>
1923
1924 * wid-edit.el (widget-toggle-value-create): Don't eval actual
1925 images (which are lists too).
1926
1927 2001-12-27 Eli Zaretskii <eliz@is.elta.co.il>
1928
1929 * language/european.el: Fix the doc string of "Latin-5" language
1930 environment.
1931
1932 2001-12-26 Richard M. Stallman <rms@gnu.org>
1933
1934 * textmodes/flyspell.el (flyspell-mode-map): New keymap,
1935 defined as before 2001-11-09.
1936 (add-minor-mode call): Specify the keymap.
1937
1938 * progmodes/compile.el (compile-internal):
1939 Set TERM variable in process-environment.
1940
1941 2001-12-25 Richard M. Stallman <rms@gnu.org>
1942
1943 * help-mode.el (help-xref-on-pp): Catch and ignore errors in scanning
1944 the buffer.
1945
1946 * startup.el (command-line): Convert command line args
1947 to Emacs internal representation using locale-coding-system.
1948
1949 2001-12-25 Eli Zaretskii <eliz@is.elta.co.il>
1950
1951 * international/fontset.el: Don't require ind-util when compiling.
1952
1953 2001-12-25 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1954
1955 * emulation/tpu-edt.el (tpu-reset-screen-size): Use
1956 set-frame-height and set-frame-width instead of set-screen-height
1957 and set-screen-width.
1958
1959 * vt-control.el (vt-wide, vt-narrow): Use set-frame-width instead
1960 of obsolete set-screen-width.
1961
1962 * locate.el (locate): Remove dot at the end of error argument.
1963
1964 * emerge.el (emerge-show-file-name): Use frame-height instead of
1965 obsolete screen-height.
1966
1967 * mail/mh-utils.el (mh-show-msg): Likewise.
1968 (mh-handle-process-error): Use frame-width instead of obsolete
1969 screen-width.
1970
1971 2001-12-25 Richard M. Stallman <rms@gnu.org>
1972
1973 * window.el (balance-windows): Use new PRESERVE-BEFORE arg
1974 to enlarge-window. Use save-selected-window. Don't try
1975 to resize windows that end at the bottom "level".
1976 Retry changing the sizes until the windows get the desired sizes.
1977 Discount the minibuffer when computing total height available.
1978
1979 * emacs-lisp/debug.el (debugger-mode-map): Bind C-m, not `RET'.
1980 (debugger-make-xrefs): Only make a button for the first symbol
1981 on any line.
1982
1983 2001-12-24 Eli Zaretskii <eliz@is.elta.co.il>
1984
1985 * term/internal.el (dos-cpNNN-setup, dos-codepage-setup):
1986 Call IT-setup-unicode-display here instead of adding it to
1987 dos-codepage-setup-hook, so that Unicode display tables are set
1988 before dos-codepage-setup-hook runs.
1989
1990 2001-12-24 Richard M. Stallman <rms@gnu.org>
1991
1992 * net/net-utils.el (ftp-mode-abbrev-table): Don't define it.
1993 (nslookup-mode-abbrev-table): Don't define it.
1994 (smbclient-mode-abbrev-table): Don't define it.
1995 (ftp-mode): Don't use ftp-mode-abbrev-table; don't enable Abbrev mode.
1996 (nslookup-mode, smbclient-mode): Likewise.
1997 (network-connection-service-abbrev-alist): Variable deleted.
1998 (network-connection-mode-setup): Don't set up abbrev table.
1999
2000 * faces.el (minibuffer-prompt): New face.
2001 (minibuffer-prompt-properties): Add `face' property.
2002
2003 * replace.el (occur-mode-display-occurrence): New function.
2004 (occur-mode-map): Bind C-o to it.
2005
2006 2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
2007
2008 * viper-cmd.el (viper-change-state): Got rid of make-local-hook.
2009 (viper-special-read-and-insert-char): Make C-m work right in the r
2010 comand.
2011 (viper-buffer-search-enable): Fixed format string.
2012
2013 * viper-ex.el (ex-token-alist): Use ex-set-visited-file-name
2014 instead of viper-info-on-file.
2015 (ex-set-visited-file-name): New function.
2016
2017 * viper.el (viper-emacs-state-mode-list): Added mail-mode.
2018
2019 * ediff-mult.el (ediff-meta-mark-equal-files): Added optional
2020 action argument.
2021
2022 * ediff-init.el: Fixed some doc strings.
2023
2024 * ediff-util.el (ediff-after-quit-hook-internal): New variable.
2025 Got rid of make-local-hook.
2026
2027 * ediff-wind.el (ediff-setup-control-frame): Got rid of
2028 make-local-hook.
2029
2030 2001-12-23 Richard M. Stallman <rms@gnu.org>
2031
2032 * term/x-win.el (x-handle-geometry): Put height and width
2033 on default-frame-alist, left and top on initial-frame-alist.
2034 * term/w32-win.el (x-handle-geometry): Likewise.
2035
2036 * sort.el (sort-reorder-buffer): Copy all to a temp buffer first.
2037
2038 * play/yow.el (yow): Use an arg to distinguish interactive calls,
2039 not interactive-p.
2040
2041 2001-12-22 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2042
2043 * emacs-lisp/elint.el (elint-unknown-builtin-args): Remove
2044 mocklisp entries.
2045
2046 * subr.el (insert-string): Moved from mocklisp.c, reimplemented in
2047 Lisp. Obsoleted.
2048
2049 * emulation/mlconvert.el: File removed.
2050
2051 * emulation/mlsupport.el: Moved to obsolete.
2052
2053 * obsolete/mlsupport.el: Moved there from lisp/emulation.
2054
2055 * emacs-lisp/find-gc.el (source-files): Remove mocklisp.c.
2056
2057 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove
2058 mocklisp case.
2059
2060 * help-fns.el (describe-function-1): Remove mocklisp function
2061 case.
2062
2063 2001-12-22 Miles Bader <miles@gnu.org>
2064
2065 * textmodes/refill.el (refill-mode): Don't barf when redundantly
2066 turning refill-mode off.
2067
2068 2001-12-22 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2069
2070 * time.el (display-time-load-average-threshold): New variable.
2071 (display-time-update): Use it.
2072
2073 These changes allow cycling through past 1, 5 and 15 minutes
2074 load-average displayed in the mode-line.
2075
2076 * time.el (display-time-default-load-average): New customizable option.
2077 (display-time-load-average): New variable.
2078 (display-time-cycle-load-average): New function.
2079 (display-time-update): Use them.
2080
2081 2001-12-21 Richard M. Stallman <rms@gnu.org>
2082
2083 * apropos.el (apropos-print): SPACING is now nil or a separator string.
2084 (apropos-documentation, apropos-value): Pass a suitable string.
2085
2086 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
2087
2088 * dired.el (dired-free-space-program, dired-free-space-args):
2089 Aliases for back-compatibility.
2090
2091 * info.el (Info-select-node): If Info-use-header-line is nil, set
2092 header-line-format to nil.
2093 (Info-fontify-node): Don't put a keymap text property on the
2094 heading if we are not going to display the header line. Remove
2095 any such text properties left over from past visits to this node.
2096
2097 * ls-lisp.el (insert-directory): Insert the amount of free disk
2098 space, like files.el's insert-directory does.
2099
2100 * files.el (directory-free-space-program): Mention
2101 file-system-info in the doc string.
2102 (get-free-disk-space): New function; code moved from
2103 insert-directory.
2104 (insert-directory): Call get-free-disk-space to get the amount of
2105 free space.
2106
2107 2001-12-21 Richard M. Stallman <rms@gnu.org>
2108
2109 * help.el (view-order-manuals, view-emacs-news, describe-copying)
2110 (describe-distribution, describe-project): Use view-file.
2111
2112 * emacs-lisp/cl-indent.el (define-modify-macro): Better indent spec.
2113
2114 * net/ange-ftp.el (ange-ftp-file-modtime): Use save-match-data.
2115
2116 * emacs-lisp/easy-mmode.el (define-minor-mode):
2117 Make no arg by default in an interactive call,
2118 so that repeating the command toggles again.
2119
2120 * emacs-lisp/lisp-mode.el (eval-defun-1): Cope with atoms as args.
2121
2122 2001-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
2123
2124 * antlr-mode.el: More sophisticated indentation of cpp directive.
2125 (antlr-indent-at-bol-alist): New user option.
2126 (antlr-indent-line): Use it.
2127 (antlr-indent-style): New user option.
2128 (antlr-mode): Use it.
2129 (antlr-indent-item-regexp): Customize.
2130
2131 * antlr-mode.el: Syntax highlighting changes.
2132 (antlr-font-lock-literal-regexp): New user option.
2133 (antlr-font-lock-syntax-face): New face used for :, |, ....
2134 (antlr-font-lock-default-face): New face.
2135 (antlr-font-lock-additional-keywords): Use them.
2136
2137 * antlr-mode.el: New command to insert options -- variables.
2138 (antlr-mode-map): New binding [C-c C-o].
2139 (antlr-mode-menu): New submenus.
2140 (antlr-options-use-submenus): New user option.
2141 (antlr-tool-version): New user option.
2142 (antlr-options-auto-colon): New user option.
2143 (antlr-options-style): New user option.
2144 (antlr-options-push-mark): New user option.
2145 (antlr-options-assign-string): New user option.
2146 (antlr-options-headings): New variable.
2147
2148 * antlr-mode.el: New command to insert options -- specific.
2149 (antlr-options-alists): New variable.
2150 (antlr-read-value): New function.
2151 (antlr-read-boolean): New function.
2152 (antlr-language-option-extra): New function.
2153 (antlr-language-limit-n-regexp): Change default to higher LIMIT.
2154 (antlr-c++-mode-extra): New function.
2155 (antlr-grammar-tokens): New function.
2156 (antlr-imenu-create-index-function): New optional argument.
2157
2158 * antlr-mode.el: New command to insert options -- functions.
2159 (antlr-insert-option): New command.
2160 (antlr-insert-option-interactive): New function.
2161 (antlr-options-menu-filter): New function.
2162 (antlr-option-kind): New function.
2163 (antlr-scan-lists): New alias.
2164 (antlr-scan-lists-internal): New function.
2165 (antlr-skip-file-prelude): Hack for special SKIP-COMMENT.
2166 (antlr-option-level): New function.
2167 (antlr-syntactic-grammar-depth): New function.
2168 (antlr-option-location): New function.
2169 (antlr-insert-option-do): New function.
2170 (antlr-option-spec): New function.
2171 (antlr-version-string): New function.
2172 (antlr-insert-option-existing): New function.
2173 (antlr-insert-option-space): New function.
2174 (antlr-insert-option-area): New function.
2175
2176 * antlr-mode.el: New electric keys ":;|&(){}", TAB works better
2177 with narrowing. Menu change. Miscellaneous.
2178 (antlr-mode-menu): Include "Indent Region" and "Customize Antlr".
2179 (antlr-mode-map): New bindings for characters in ":;|&(){}".
2180 (antlr-electric-character): New command.
2181 (antlr-class-header-regexp): New variable.
2182 (antlr-font-lock-additional-keywords): Use it.
2183 (antlr-imenu-create-index-function): Use it.
2184 (antlr-file-dependencies): Use it.
2185 (antlr-indent-line): Also works with restrictions.
2186 (antlr-indent-command): Interactive spec - changes the buffer.
2187 (antlr-language-for-option): Deletia.
2188 (antlr-language-option): New function, defined instead.
2189 (antlr-mode): Use it.
2190 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
2191
2192 * jka-compr.el (jka-compr-partial-uncompress): Use null-device
2193 instead of a literal /dev/null.
2194
2195 * Makefile.in (distclean): Remove Makefile in the build
2196 directory, not in the source directory.
2197
2198 2001-12-21 Simon Josefsson <jas@extundo.com>.
2199
2200 * mail/smtpmail.el (smtpmail-send-queued-mail): Use
2201 with-temp-buffer instead of find-file-noselect, and bind
2202 coding-system-for-read to no-conversion when reading the queued
2203 messages. (Simon's code modified slightly by Eli Zaretskii.)
2204
2205 2001-12-20 Werner Lemberg <wl@gnu.org>
2206
2207 * international/mule-diag.el (describe-coding-system,
2208 print-coding-system-briefly): Make printed output have a similar
2209 format as describe-character-set.
2210
2211 2001-12-20 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2212
2213 * play/blackbox.el (bb-member): Remove, use member instead.
2214 (bb-delete): Remove, use delete instead.
2215 Update copyright notice. Defvar for bb-board, bb-x, bb-y,
2216 bb-score, bb-detour-count and bb-balls-placed.
2217 Propertize results of rays.
2218
2219 2001-12-19 Karl Fogel <kfogel@red-bean.com>
2220
2221 * isearch.el (isearch-forward, isearch-edit-string): Make doc
2222 strings mention keybinding for `isearch-yank-word-or-char',
2223 rather than `isearch-yank-word', since the former is bound now
2224 and the latter is not.
2225 (isearch-yank-word-or-char): Fix formatting.
2226
2227 2001-12-19 Werner Lemberg <wl@gnu.org>
2228
2229 * language/czech.el, language/european.el, language/slovak.el: More
2230 fixes for language info doc strings.
2231
2232 2001-12-19 Eli Zaretskii <eliz@is.elta.co.il>
2233
2234 * loadup.el: Add "language" to the load-path.
2235
2236 2001-12-19 Richard M. Stallman <rms@gnu.org>
2237
2238 * international/mule-cmds.el (describe-language-environment):
2239 Fix calls to help-xref-button.
2240
2241 2001-12-19 Miles Bader <miles@gnu.org>
2242
2243 * international/fontset.el: Require `ind-util' when compiling.
2244
2245 2001-12-18 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2246
2247 * language/ethio-util.el (ethio-modify-vowel): Use char-to-string
2248 instead of decompose-composite-char.
2249
2250 2001-12-18 Richard M. Stallman <rms@gnu.org>
2251
2252 * simple.el (eval-expression-print-level)
2253 (eval-expression-print-length): Doc fixes.
2254
2255 * international/mule-diag.el (describe-character-set):
2256 Fix the arg to help-xref-button.
2257
2258 * files.el (directory-free-space-program): New variable.
2259 (directory-free-space-args): New variable.
2260 (insert-directory): Use those two variables for getting free space.
2261 Use file-system-info instead, if that is defined.
2262
2263 * dired.el (dired-free-space-program): Variable deleted.
2264 (dired-free-space-args): Variable deleted.
2265 (dired-insert-directory): Don't try to determine free space.
2266
2267 * files.el (font-lock-defaults): Add risky-local-variables prop.
2268 (hack-one-local-variable): Treat various font-lock variables as risky.
2269
2270 2001-12-18 Werner Lemberg <wl@gnu.org>
2271
2272 * language/chinese.el, language/cyrillic.el:
2273 * language/czech.el, language/european.el, language/greek.el:
2274 * language/hebrew.el, language/indian.el, language/japanese.el:
2275 * language/korean.el, language/lao.el, language/slovak.el:
2276 * language/thai.el, language/tibetan.el, language/vietnamese.el:
2277 Improve documentation strings of coding systems and language infos.
2278
2279 2001-12-18 Werner LEMBERG <wl@gnu.org>
2280
2281 Add support for EUC-TW decoding/encoding.
2282
2283 * language/china-util.el (big5-to-flat-code, flat-code-to-big5,
2284 euc-to-flat-code, flat-code-to-euc, expand-euc-big5-alist):
2285 New auxiliary functions to build `big5-to-cns'.
2286 (big5-to-cns): New translation alist.
2287
2288 * language/chinese.el: Added new coding system `euc-tw' and its
2289 alias `euc-taiwan'.
2290 Updated language `Chinese-CNS' to include euc-tw encoding also.
2291 (ccl-decode-euc-tw, ccl-encode-euc-tw): New functions for handling
2292 euc-tw.
2293
2294 2001-12-18 Dave Love <fx@gnu.org>
2295
2296 * loadup.el: Add language/utf-8-lang, language/georgian.
2297
2298 * image-file.el (image-file-name-extensions): Add pnm. Doc fix.
2299 (image-file-name-regexps): Doc fix.
2300
2301 * server.el (server-unload-hook): New function.
2302
2303 * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): Group the leader.
2304 (lm-crack-copyright): Cope with multi-line copyright `lines'.
2305
2306 * simple.el (newline): Doc fix.
2307 (eval-expression-print-level, eval-expression-print-length): Doc
2308 fix. Amend :type.
2309 (next-line, previous-line): Make arg optional.
2310 (newline): Doc fix.
2311
2312 * Makefile.in (DONTCOMPILE): Add various language files.
2313
2314 * international/quail.el (quail-input-string-to-events): Don't use
2315 string-to-list.
2316
2317 * progmodes/f90.el (f90-break-line): Avoid infinite recursion
2318 calling `newline'.
2319
2320 2001-12-17 Richard M. Stallman <rms@gnu.org>
2321
2322 * comint.el (comint-dynamic-list-input-ring-select): New function.
2323 Switches back to the old window configuration.
2324 (comint-dynamic-list-input-ring): Bind RET to that function.
2325 (comint-dynamic-list-input-ring-window-conf): New variable.
2326
2327 2001-12-17 Werner Lemberg <wl@gnu.org>
2328
2329 * international/mule-conf.el: Improve documentation strings of
2330 character sets.
2331
2332 2001-12-16 Richard M. Stallman <rms@gnu.org>
2333
2334 * dired.el (dired-copy-filename-as-kill): Moved from dired-x.el.
2335 (dired-mode-map): Bind w to dired-copy-filename-as-kill.
2336
2337 * dired-x.el (dired-copy-filename-as-kill): Moved to dired.el.
2338
2339 * autoinsert.el (auto-insert-alist): Redo finding C and C++ headers.
2340 Add a DESCRIPTION for the makefile item.
2341
2342 * find-file.el (ff-other-file-name): New function.
2343
2344 2001-12-16 Eli Zaretskii <eliz@is.elta.co.il>
2345
2346 * international/quail.el (quail-input-string-to-events): Fix last
2347 change.
2348
2349 2001-12-16 Richard M. Stallman <rms@gnu.org>
2350
2351 * isearch.el (isearch-edit-string): When we set isearch-string
2352 to the default, also set isearch-message.
2353
2354 * subr.el (temp-buffer-show-hook, temp-buffer-setup-hook): Add defvars.
2355
2356 * startup.el (command-line-1): Display startup screen
2357 even if there are command line args.
2358 Add a note about how to go to editing your files.
2359 (fancy-splash-head): Add a note about how to go to your files.
2360 (fancy-splash-outer-buffer): New variable.
2361 (fancy-splash-screens): Bind variable fancy-splash-outer-buffer.
2362
2363 * subr.el (with-temp-message): At the end, always discard
2364 the temp message, even by clearing the echo area.
2365
2366 * progmodes/sh-script.el (sh-mode): Run sh-mode-hook.
2367
2368 2001-12-16 Stefan Monnier <monnier@cs.yale.edu>
2369
2370 * log-view.el (log-view-message-re, log-view-current-tag):
2371 Recognize Subversion's log output format.
2372
2373 * international/fontset.el: Build the list L at compile time.
2374
2375 * language/ind-util.el (mapthread): Make a closure.
2376
2377 2001-12-15 Richard M. Stallman <rms@gnu.org>
2378
2379 * isearch.el (isearch-start-hscroll): New variable.
2380 (isearch-mode): Set isearch-start-hscroll.
2381 (isearch-update): Restore original hscrolling if possible.
2382
2383 * isearch.el (isearch-edit-string):
2384 Treat isearch-yank-word-or-char specially, like isearch-yank-word.
2385
2386 * emacs-lisp/debug.el (debugger-previous-backtrace): New variable.
2387 (debugger-make-xrefs): Optimize by (1) using skip-syntax-forward
2388 rather than regexp search and (2) copying text properties
2389 already set up on text unchanged from the previous backtrace.
2390
2391 * case-table.el (set-case-syntax-pair):
2392 Detect invalid calls and signal an error.
2393
2394 2001-12-15 Richard M. Stallman <rms@gnu.org>
2395
2396 * language/ind-util.el (range): Function deleted.
2397 (indian-regexp-of-hashtbl-keys): Renamed from `regexp-of-hashtbl-keys'.
2398 All calls changed.
2399
2400 * language/devan-util.el (devanagari-range): Renamed from `range'.
2401 All calls changed.
2402 (devanagari-regexp-of-hashtbl-keys):
2403 Renamed from `regexp-of-hashtbl-keys'. All calls changed.
2404
2405 2001-12-15 Dave Love <fx@gnu.org>
2406
2407 * language/ind-util.el: Don't require cl.
2408 (indian-glyph-char, indian-glyph-max-char)
2409 (indian-char-glyph): Moved from indian.el
2410 (indian--puthash-char, mapthread): Don't quote lambda.
2411 (indian--map): New function.
2412 (indian--puthash-v, indian--puthash-c, indian--puthash-m)
2413 (indian--puthash-cv): Use it.
2414
2415 * language/indian.el (indian-glyph-char, indian-glyph-max-char)
2416 (indian-char-glyph): Moved to ind-util.el
2417
2418 * language/devan-util.el (devanagari-post-read-conversion):
2419 New function.
2420
2421 * language/georgian.el: New file.
2422
2423 * international/mule-cmds.el (locale-language-names): Add various
2424 entries. Remove utf-8 special case.
2425 (locale-charset-language-names, locale-preferred-coding-systems):
2426 Add utf-8 case.
2427 (set-language-environment): Process required-features earlier.
2428
2429 * international/quail.el (quail-keyboard-layout-alist):
2430 Add pc105-uk.
2431 (quail-keyboard-layout-type): Fix :type.
2432 (quail-choose-completion-string): Simplify.
2433 (quail-update-leim-list-file): Don't get fooled by commented-out code.
2434 (quail-input-string-to-events): Run events through
2435 translation-table-for-input.
2436
2437 * international/mule-conf.el (translation-table-for-input):
2438 New variable.
2439 (latin-iso8859-14): Amend description.
2440 (file-coding-system-alist): Add entry for utf-8.
2441
2442 * language/utf-8-lang.el: New file.
2443
2444 * international/code-pages.el: New file.
2445
2446 * language/hebrew.el ("Windows-1255"): New language.
2447
2448 * language/european.el ("Welsh", "Latin-7", "Lithuanian")
2449 ("Latvian"): New languages.
2450
2451 2001-12-14 Stefan Monnier <monnier@cs.yale.edu>
2452
2453 * xml.el: Use setq rather than (set 'foo bar).
2454 Use push+nreverse rather than append.
2455 (xml-node-name, xml-node-attributes, xml-node-children):
2456 Use defsubst rather than macros.
2457 (xml-parse-region): Handle a nil return value from xml-parse-tag.
2458 (xml-parse-tag): Don't skip white space. Return nil for a comment.
2459 Concat the two strings surrounding a comment into a single string.
2460
2461 * newcomment.el (comment-indent): Jump to the middle of empty comments.
2462
2463 2001-12-14 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2464
2465 * select.el (xselect-convert-to-class, xselect-convert-to-name):
2466 Document.
2467
2468 2001-12-14 Andre Spiegel <spiegel@gnu.org>
2469
2470 * vc-hooks.el (vc-checkout-model, vc-state, vc-workfile-version):
2471 Return nil if FILE is not registered.
2472 (vc-check-master-templates, vc-default-make-version-backups-p):
2473 Doc fix.
2474
2475 2001-12-13 David Ponce <david@dponce.com>
2476
2477 * ruler-mode.el (ruler-mode-extra-left-cols): Remove.
2478 (ruler-mode-left-fringe-cols): New macro.
2479 (ruler-mode-right-fringe-cols): New macro.
2480 (ruler-mode-left-scroll-bar-cols): New macro.
2481 (ruler-mode-right-scroll-bar-cols): New macro.
2482 (ruler-mode-ruler): Use above new macros.
2483
2484 2001-12-13 Richard M. Stallman <rms@gnu.org>
2485
2486 * files.el (set-auto-mode): Fix previous change.
2487
2488 2001-12-13 Stefan Monnier <monnier@cs.yale.edu>
2489
2490 * emacs-lisp/easymenu.el (easy-menu-intern): New fun.
2491 (easy-menu-do-define, easy-menu-convert-item-1)
2492 (easy-menu-define-key-intern, easy-menu-get-map): Use it.
2493 (easy-menu-return-item): Only return nil if there is no binding.
2494
2495 2001-12-13 Rajesh Vaidheeswarran <rv@gnu.org>
2496
2497 * whitespace.el (whitespace-version): 3.2
2498 * whitespace.el (whitespace-force-mode-line-update): Replace with
2499 `whitespace-mode-line-update', which is an alias to the correct
2500 function in various emacsen.
2501 * whitespace.el (whitespace-{un,}highlight-the-space):
2502 Add colorized highlighting of the bogus whitespaces in a buffer/file,
2503 using the `whitespace-highlight-face' if
2504 `whitespace-display-spaces-in-color' is set.
2505
2506 2001-12-13 Eli Zaretskii <eliz@is.elta.co.il>
2507
2508 * international/mule.el (set-auto-coding): Don't search for
2509 "unibyte:" or "coding:" if set-auto-mode-1 returns nil.
2510
2511 2001-12-13 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2512
2513 * mail/mailabbrev.el (mail-abbrevs-setup): Do not use make-local-hook.
2514
2515 * mail/rmail.el (rmail-fontify-buffer-function): Likewise.
2516
2517 * mail/rmailsum.el (rmail-summary-mode): Likewise.
2518
2519 2001-12-13 Richard M. Stallman <rms@gnu.org>
2520
2521 * simple.el (undo): Always set this-command to `undo',
2522 so that the next undo after an error will not begin redoing.
2523
2524 * simple.el (shell-command): Doc fix.
2525 (shell-command-on-region): If there is output an an error,
2526 add "...Shell command failed" to the output.
2527
2528 2001-12-13 David Ponce <david@dponce.com>
2529
2530 * ruler-mode.el (ruler-mode-left-fringe-cols): Variable removed.
2531 (ruler-mode-left-fringe-cols): Function replaced by more efficient
2532 implementation `ruler-mode-extra-left-cols'.
2533 (ruler-mode-ruler): Use above new function. Take into account
2534 that the fringe areas can now be resized.
2535
2536 2001-12-12 Richard M. Stallman <rms@gnu.org>
2537
2538 * international/characters.el (Unicode): Comment out
2539 the specifications for kelvin and angstrom signs.
2540
2541 * international/mule.el (make-translation-table-from-vector):
2542 Allow null elements in VEC.
2543
2544 * international/ucs-tables.el (unify-8859-on-encoding-mode)
2545 (unify-8859-on-decoding-mode): Swap the code in their bodies.
2546 Add :version.
2547
2548 2001-12-11 Richard M. Stallman <rms@gnu.org>
2549
2550 * derived.el (derived-mode-p): Function moved to subr.el.
2551
2552 * subr.el (derived-mode-p): Moved here from derived.el.
2553
2554 * international/mule.el (set-auto-coding): Use set-auto-mode-1.
2555
2556 * files.el (set-auto-mode-1): New subroutine, broken out of
2557 set-auto-mode.
2558 (set-auto-mode, hack-local-variables-prop-line): Use that.
2559
2560 2001-12-11 Dave Love <fx@gnu.org>
2561
2562 * language/thai-util.el, language/thai.el: Add Unicode equivalents.
2563
2564 * language/european.el: Remove autoload cookies. Fix registration
2565 of diacritic composition function.
2566
2567 2001-12-11 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2568
2569 * calendar/todo-mode.el: Require time-stamp.
2570
2571 * net/zone-mode.el (zone-mode): Don't use make-local-hook.
2572
2573 2001-12-11 Richard M. Stallman <rms@gnu.org>
2574
2575 * emacs-lisp/authors.el (authors-aliases): Delete "Richard Stallmao".
2576
2577 * textmodes/ispell.el (ispell-buffer-local-parsing):
2578 Match xml like sgml.
2579
2580 * emacs-lisp/advice.el (ad-compile-function):
2581 Byte compile the function under another (uninterned) name.
2582
2583 * gud.el (gdb): Define and bind gud-jump.
2584
2585 * font-lock.el (font-lock-mode):
2586 Put our function at the end of after-change-functions.
2587
2588 * ediff-diff.el (ediff-cmp-options): Doc fix.
2589
2590 * comint.el (comint-password-prompt-regexp): Match "UNIX Password".
2591
2592 2001-12-10 Richard M. Stallman <rms@gnu.org>
2593
2594 * isearch.el (isearch-yank-word-or-char): New function.
2595 (isearch-mode-map): Bind C-w to that.
2596
2597 * menu-bar.el (menu-bar-mode): Make arg optional.
2598
2599 * simple.el (line-move): Cope if next-single-property-change
2600 or previous-single-property-change returns nil.
2601
2602 * emacs-lisp/lisp-mnt.el (lm-verify): New arg NON-FSF-OK.
2603 Don't use interactive-p; instead, pass the proper args
2604 in (interactive...). Clean up most of the trouble-report strings.
2605
2606 2001-12-10 Eli Zaretskii <eliz@is.elta.co.il>
2607
2608 * mail/smtpmail.el (smtpmail-send-queued-mail): Insert the
2609 enqueued messages literally.
2610
2611 2001-12-10 Noah Friedman <friedman@splode.com>
2612
2613 * battery.el (battery-insert-file-contents): Obsolete function
2614 removed.
2615 (battery-read-function): Obsolete function removed.
2616 (battery-linux-proc-apm): Use insert-file-contents.
2617
2618 2001-12-07 Stephen Eglen <stephen@gnu.org>
2619
2620 * iswitchb.el (iswitchb-visit-buffer):
2621 Use `select-frame-set-input-focus'--needed when window manager
2622 uses "click to focus" policy.
2623
2624 2001-12-09 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2625
2626 * COPYING: Moved back.
2627
2628 2001-12-07 Eli Zaretskii <eliz@is.elta.co.il>
2629
2630 * term/internal.el (IT-character-translations): Add entries for
2631 more points.
2632
2633 * international/characters.el: Resurrect the Hebrew category
2634 settings for all Hebrew characters removed by the last change.
2635 Add code for setting the Hebrew category of the Unicode Hebrew
2636 characters. Set syntax entries for Hebrew punctuation characters.
2637
2638 * international/ucs-tables.el (ucs-8859-8-alist): Add Hebrew
2639 points and directional formatting control characters.
2640
2641 2001-12-07 Dave Love <fx@gnu.org>
2642
2643 * language/lao-util.el: Add Unicode equivalents for rules.
2644 (lao-post-read-conversion): New function.
2645
2646 * language/lao.el: Add Unicode equivalents.
2647 (lao): Add post-read conversion.
2648
2649 * international/latin1-disp.el: Fix some 8-bit-graphic characters.
2650 Use iso2022 encoding.
2651 (latin1-char-displayable-p): Doc fix.
2652 (latin1-display-ucs-per-lynx): New option.
2653 (latin1-display-ucs-per-lynx): New command.
2654 (latin1-display-reset): Special-case arabic.
2655 (ucs-tables): Require.
2656 (latin1-display-sets, latin1-display-setup): Add arabic.
2657 (latin1-display) <variable>: Use function latin1-display.
2658 (latin1-display) <function>: Add mule-unicode stuff.
2659 (latin1-display-check-font): Don't lose if `info' is nil.
2660
2661 * international/iso-transl.el: Insert Latin-1 characters, not
2662 unibyte codes.
2663
2664 * language/european.el (diacritic-composition-pattern): New constant.
2665 (diacritic-compose-region, diacritic-compose-string)
2666 (diacritic-compose-buffer, diacritic-post-read-conversion)
2667 (diacritic-composition-function): New functions.
2668
2669 * international/utf-8.el (ucs-mule-to-mule-unicode):
2670 New translation table.
2671 (ccl-encode-mule-utf-8): Use it.
2672 (utf-8-untranslated-to-ucs, utf-8-help-echo, utf-8-compose)
2673 (utf-8-post-read-conversion, utf-8-pre-write-conversion): New function.
2674 (utf-8-subst-table): New variable.
2675 (utf-8-compose-scripts): New option.
2676 (mule-utf-8): Update safe-charsets, pre-write and post-read conversion.
2677
2678 * international/ucs-tables.el, international/utf-8-subst.el:
2679 New files.
2680
2681 * international/characters.el: Don't set word syntax (the default)
2682 explicitly. Add a diacritic category. Add info for Unicode
2683 equivalents of characters in various Mule charsets and for extra
2684 Unicode characters. Don't define specific categories for
2685 Indian/Devanagari, since they aren't used.
2686
2687 2001-12-06 Richard M. Stallman <rms@gnu.org>
2688
2689 * textmodes/fill.el (set-justification): Rename arg VALUE to STYLE.
2690 (set-justification-left, set-justification-right): Doc fix.
2691
2692 * progmodes/f90.el (f90-break-line): Use (newline 1) to insert newline.
2693 (bug-f90-mode): Variable deleted.
2694
2695 2001-12-06 Stefan Monnier <monnier@cs.yale.edu>
2696
2697 * indent.el (indent-line-function): Default is indent-relative again.
2698
2699 2001-12-07 Miles Bader <miles@gnu.org>
2700
2701 * progmodes/compile.el (compilation-error-regexp-alist):
2702 Added regexps for RXP.
2703
2704 2001-12-05 Eli Zaretskii <eliz@is.elta.co.il>
2705
2706 * progmodes/cwarn.el (cwarn-font-lock-match-assignment-in-expression):
2707 Add shift-assignment operators to those highlighted, and highlight
2708 the whole operator rather than just the "=".
2709
2710 2001-12-04 Juanma Barranquero <lektu@terra.es>
2711
2712 * files.el (save-abbrevs, save-some-buffers): Don't ask the user
2713 before saving abbrevs if `save-abbrevs' has the value `silently'.
2714
2715 2001-12-04 Andreas Schwab <schwab@suse.de>
2716
2717 * xt-mouse.el (turn-off-xterm-mouse-tracking): Doc fix.
2718
2719 2001-12-04 Colin Walters <walters@debian.org>
2720
2721 * emacs-lisp/autoload.el (make-autoload): Also generate autoloads
2722 for `defmacro*' forms.
2723
2724 * emacs-lisp/lisp-mode.el (toplevel): Define docstring offset for
2725 `defmacro*'.
2726
2727 2001-12-03 Stefan Monnier <monnier@cs.yale.edu>
2728
2729 * progmodes/antlr-mode.el (antlr-c-common-init): Undo last change.
2730
2731 2001-12-02 Richard M. Stallman <rms@gnu.org>
2732
2733 * files.el (insert-directory): If the df output does not look right,
2734 don't try to use it. Other cleanups in overall code structure.
2735
2736 2001-12-02 Stefan Monnier <monnier@cs.yale.edu>
2737
2738 * textmodes/outline.el (outline-mode-prefix-map):
2739 Add bindings for outline-promote and outline-demote.
2740 (outline-minor-mode-menu-bar-map): New var.
2741 (outline-minor-mode): Use it.
2742 (outline-heading-alist): New var (renamed from outline-level-heading).
2743 (outline-level): Use it.
2744 (outline-insert-heading, outline-promote, outline-demote):
2745 Update to use outline-heading-alist.
2746
2747 * disp-table.el (standard-display-european):
2748 Simplify since the function is not interactive any more.
2749 Don't set the existing buffers to unibyte.
2750
2751 * pcvs-util.el (cvs-file-to-string): Move condition-case outside.
2752
2753 * pcvs.el (cvs-reread-cvsrc): Don't use cvs-file-to-string.
2754
2755 * reveal.el (reveal-mode): Fix reveal-mode's lighter.
2756
2757 * shell.el (shell): Use shell-file-name.
2758 Pop to buffer before calling comint to set COLUMNS properly.
2759
2760 * emacs-lisp/cl.el (svref): New alias.
2761
2762 * progmodes/antlr-mode.el (antlr-c-common-init):
2763 Don't inhibit adaptive-fill-mode any more.
2764
2765 * progmodes/delphi.el (delphi-mode): Don't use make-local-hook.
2766
2767 * progmodes/etags.el (tags-with-face): Use make-symbol.
2768 (tags-search, tags-query-replace): Use backquotes.
2769
2770 * textmodes/picture.el (picture-mode-map): Don't use defconst
2771 for a variable.
2772
2773 2001-12-02 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2774
2775 * textmodes/reftex-index.el (reftex-index-mode):
2776 Remove make-local-hook.
2777
2778 * textmodes/reftex-toc.el (reftex-toc-mode): Likewise.
2779
2780 2001-12-02 Kim F. Storm <storm@cua.dk>
2781
2782 * isearch.el (isearch-resume-enabled): New variable.
2783 (isearch-done): Use that variable.
2784
2785 2001-12-01 Richard M. Stallman <rms@gnu.org>
2786
2787 * wid-edit.el (widget-button-click): Don't move point permanently:
2788 Avoid mouse-set-point--instead select the window,
2789 then do save-excursion, then move point.
2790 Specify the buffer for get-char-property.
2791 Don't use `@' in interactive.
2792
2793 * indent.el (indent-line-function):
2794 Default is indent-to-left-margin again.
2795
2796 * replace.el (query-replace-read-args): Display message
2797 if FROM contains `\n' or `\t'.
2798
2799 2001-12-01 Stefan Monnier <monnier@cs.yale.edu>
2800
2801 * indent.el (tab-to-tab-stop): Use delete-horizontal-space.
2802
2803 * bindings.el (minibuffer-local-map): Bind TAB to insert-tab.
2804
2805 * emacs-lisp/regexp-opt.el (regexp-opt):
2806 Bind completion-regexp-list to nil.
2807
2808 * progmodes/hideif.el (hif-nexttoken): Move to before first def.
2809
2810 2001-12-01 Eli Zaretskii <eliz@is.elta.co.il>
2811
2812 * progmodes/idlwave.el, progmodes/idlw-rinfo.el:
2813 * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el:
2814 Update maintainer.
2815
2816 2001-11-30 Stefan Monnier <monnier@cs.yale.edu>
2817
2818 * mail/smtpmail.el: Use with-current-buffer.
2819 (message-make-date, message-make-message-id): Autoload when needed.
2820 (smtpmail-send-it): Use them to add `Date:' and `Message-Id:'
2821 headers when missing.
2822
2823 * international/encoded-kb.el (encoded-kbd-mode):
2824 Use define-minor-mode.
2825
2826 * enriched.el (enriched-mode): Use define-minor-mode.
2827 Use dolist and pop and push.
2828
2829 * info.el (Info-find-node-2): Don't call info-insert-file-contents
2830 with the `visit' argument.
2831 (Info-extract-menu-node-name): Use `replace-regexps-in-string'.
2832
2833 * progmodes/hideif.el (hide-ifdef-mode): Only modify
2834 `change-major-mode-hook' locally. Reset invisibility spec.
2835
2836 * man.el (Man-build-section-alist): Remove last Man-match-substring.
2837
2838 2001-11-30 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
2839
2840 * textmodes/paragraphs.el (mark-paragraph): Clarify doc.
2841 Clarify error message.
2842
2843 2001-11-29 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
2844
2845 * textmodes/paragraphs.el (mark-paragraph): Allow prefix arg.
2846
2847 2001-11-30 Andre Spiegel <spiegel@gnu.org>
2848
2849 * vc-cvs.el (vc-cvs-parse-status): Store file state in property,
2850 don't just return it.
2851
2852 2001-11-30 Eli Zaretskii <eliz@is.elta.co.il>
2853
2854 * menu-bar.el (menu-bar-read-lispref, menu-bar-read-lispintro)
2855 (menu-bar-read-emacs-man, search-emacs-glossary)
2856 (emacs-index-search, elisp-index-search): New functions.
2857 (apropso-documentation, apropos, apropos-value, apropos-variable)
2858 (apropos-commands): Modify menu item names and help text.
2859 (elisp-index-search, emacs-index-search, emacs-glossary):
2860 New menu items.
2861 (menu-bar-manuals-menu): Move the Ordering Manuals item to a
2862 submenu.
2863 (info-elisp, info-elintro): New menu items.
2864 (apropos): Modify the menu item name.
2865
2866 2001-11-30 Stefan Monnier <monnier@cs.yale.edu>
2867
2868 * emacs-lisp/lisp-mode.el (read-if): Add lisp-indent-function prop.
2869
2870 * textmodes/outline.el (outline-promote, outline-demote): Typo.
2871
2872 * man.el (man-follow-mouse): New function.
2873 (Man-mode-map): Bind mouse-2 to it.
2874 (Man-match-substring): Remove. Replace with `match-string'.
2875 (man): Use the `default-value' argument to `read-string'.
2876 (Man-fontify-manpage): Add mouse-face to cross references.
2877
2878 * emacs-lisp/cl-macs.el (shiftf): Fix more. Simplify.
2879
2880 2001-11-29 Stefan Monnier <monnier@cs.yale.edu>
2881
2882 * emacs-lisp/crm.el (completing-read-multiple): Better preserve
2883 the value of require-match in minibuffer-completion-confirm.
2884 Use crm-local-completion-map.
2885
2886 * emacs-lisp/cl-macs.el (shiftf): Fix the fast case so
2887 (let ((a 1) (b 2)) (shiftf a b (cons a b)) b) returns (1 . 2).
2888 (cl-make-type-test): Use char-valid-p for `character'.
2889
2890 * info.el (Info-complete-next-re, Info-complete-cache): New vars.
2891 (Info-complete-menu-item): Rewrite. Add the ability to search
2892 several sequential nodes. Add a simple caching mechanism.
2893 (Info-goto-index): New function extracted from Info-index.
2894 (Info-index): Use it. Add completion to the interactive spec.
2895 (Info-menu-update): Simplify call to `Info-complete-menu-item'.
2896
2897 2001-11-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2898
2899 * COPYING: Removed.
2900
2901 2001-11-29 Dave Love <fx@gnu.org>
2902
2903 * progmodes/fortran.el: Fontify rewind, backspace. Doc fixes.
2904 (fortran-window-create, fortran-window-create-momentarily):
2905 Rewrite, moving error condition.
2906 (fortran-beginning-do, fortran-beginning-if): Fix regexps.
2907 (fortran-mode-syntax-table): Revert last change.
2908
2909 * international/mule.el: Doc fixes.
2910 (map-charset-chars): New function.
2911 (register-char-codings): Use it to cope with generic chars in
2912 safe-chars.
2913
2914 2001-11-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2915
2916 * play/blackbox.el (blackbox-mode, blackbox): Doc fix.
2917
2918 * play/cookie1.el (cookie, cookie-insert, shuffle-vector): Doc fixes.
2919
2920 * play/studly.el (studlify-word, studlify-region)
2921 (studlify-buffer): Fix doc-string.
2922 (studlify-buffer): Add autoload cookie.
2923
2924 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
2925
2926 * textmodes/outline.el (outline-up-heading): Add `invisible-ok' arg.
2927 (outline-up-heading-all): Remove.
2928 (hide-sublevels): Move to end-of-heading before calling flag-region.
2929 (outline-copy-overlay, outline-discard-overlays): Remove.
2930 (outline-flag-region): Use `remove-overlays'.
2931 Don't move to end-of-heading.
2932 (outline-next-visible-heading, outline-back-to-heading)
2933 (outline-on-heading-p): Use outline-invisible-p.
2934 (outline-font-lock-level): Use outline-up-heading's new arg.
2935 (outline-minor-mode): Simplify.
2936 (outline-map-tree, outline-reveal-toggle-invisible): New funs.
2937 (outline): Put a `reveal-toggle-invisible' property.
2938 (outline-level-heading): New var.
2939 (outline-insert-heading, outline-promote, outline-demote)
2940 (outline-toggle-children): New commands.
2941
2942 * progmodes/hideif.el (hif-end-of-line): New function.
2943 (hide-ifdef-mode): Set line-move-ignore-invisible.
2944 (hide-ifdef-region-internal): New function.
2945 (hide-ifdef-region): Use it.
2946 (hif-defined): Return an integer.
2947 (hif-infix-to-prefix): Remove.
2948 (hif-tokenize): Parse from the buffer rather than from a string.
2949 Correctly tokenize integers. Use forward-comment.
2950 (hif-expr): Use hif-or.
2951 (hif-term): Use hif-and.
2952 (hif-factor): Use hif-not. Handle numbers properly.
2953 Don't require parenthesis around `defined's argument.
2954 (hif-and, hif-or, hif-not): New funs.
2955 (hif-canonicalize): Pass a region to hif-tokenize. Use hif-not.
2956 (hif-hide-line): Don't hide the \n before the line.
2957 (hif-possibly-hide): Correctly handle numeric evaluation results.
2958
2959 * progmodes/make-mode.el: Use line-(end|beginning)-position.
2960 (makefile-mode): Set indent-line-function.
2961 (makefile-browser-insert-continuation): Use with-current-buffer.
2962 (makefile-beginning-of-line-point, makefile-end-of-line-point): Remove.
2963
2964 2001-11-28 Karl Fogel <kfogel@red-bean.com>
2965
2966 * isearch.el (isearch-yank-internal): New helper function.
2967 (isearch-yank-char): New function.
2968 (isearch-yank-word, isearch-yank-line): Rewrite to use
2969 isearch-yank-internal.
2970
2971 2001-11-28 Eli Zaretskii <eliz@is.elta.co.il>
2972
2973 * mouse.el (mouse-set-font): Make it a no-op if multiple fonts
2974 aren't supported. Print a message to that effect if invoked.
2975
2976 2001-11-27 Stephen Eglen <stephen@gnu.org>
2977
2978 * locate.el (locate): Put point at first matching file rather
2979 than top of buffer.
2980
2981 2001-11-27 Stefan Monnier <monnier@cs.yale.edu>
2982
2983 * reveal.el: New file.
2984
2985 * progmodes/hideif.el: Misc cleanup.
2986 (hide-ifdef-mode-submap): Put the def in the defvar.
2987 Use substitute-key-definition.
2988 (hide-ifdef-mode): Use define-minor-mode.
2989 (hif-outline-flag-region): Remove.
2990 (hif-show-all): Define in terms of hif-show-ifdef-region.
2991 (hif-after-revert-function): Rename from hif-before-revert-function.
2992 (hide-ifdef-region, hif-show-ifdef-region): Use overlays.
2993 (hif-tokenize): Use with-syntax-table.
2994 (hif-make-range): Use `else' also for `else-p'.
2995 (hif-range-else-p): Remove.
2996 (hif-find-range): Simplify.
2997 (hif-hide-line): Don't bother preserving buffer-modified-p.
2998 (hide-ifdefs, show-ifdefs, hide-ifdef-block, show-ifdef-block):
2999 Don't use selective-display and inhibit-read-only.
3000
3001 * subr.el (copy-overlay, remove-overlays): New funs.
3002
3003 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix off-by-two error.
3004
3005 2001-11-27 Sam Steingold <sds@gnu.org>
3006
3007 * ansi-color.el, bookmark.el, dired.el, emerge.el, fast-lock.el
3008 * lazy-lock.el, mouse-sel.el, mail/feedmail.el
3009 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el, emacs-lisp/ewoc.el
3010 * obsolete/c-mode.el, obsolete/cplus-md.el
3011 * progmodes/dcl-mode.el, progmodes/idlw-shell.el, progmodes/idlwave.el
3012 * term/sun-mouse.el, textmodes/artist.el:
3013 Converted backquote to the new style.
3014 * mouse.el, reposition.el: Likewise (in comments).
3015 * expand.el: Likewise (in a string).
3016
3017 2001-11-27 Richard M. Stallman <rms@gnu.org>
3018
3019 * cus-edit.el (custom-load-symbol): Don't always load locate-library.
3020
3021 2001-11-26 Richard M. Stallman <rms@gnu.org>
3022
3023 * wid-edit.el (widget-toggle-value-create): On graphic terminal,
3024 if :on-glyph or :off-glyph is a list, eval it and store it back.
3025 (checkbox): Quote the values for :on-glyph and :off-glyph.
3026
3027 * cus-start.el (recursive-load-depth-limit): Delete item.
3028
3029 2001-11-26 Stefan Monnier <monnier@cs.yale.edu>
3030
3031 * help-fns.el (describe-categories, help-describe-category-set): New.
3032 describe-categories moved here from src/category.c.
3033
3034 2001-11-26 Sam Steingold <sds@gnu.org>
3035
3036 * progmodes/cc-mode.el (c-submit-bug-report): Make sure that the
3037 arguments to `insert' are strings.
3038
3039 2001-11-26 Richard M. Stallman <rms@gnu.org>
3040
3041 * startup.el (command-line-1): Call kill-buffer only in non-fancy case.
3042
3043 2001-11-26 Eli Zaretskii <eliz@is.elta.co.il>
3044
3045 * international/mule-diag.el: Require help-fns instead of
3046 help-funs.
3047
3048 * help-fns.el: Renamed from help-funs.el.
3049
3050 * startup.el (command-line-1): Don't try to call process-list if
3051 it is not fboundp.
3052
3053 2001-11-26 Sam Steingold <sds@gnu.org>
3054
3055 * frame.el (show-trailing-whitespace): Remove :set argument (the
3056 value was essentially identical to the defalt).
3057
3058 2001-11-26 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3059
3060 * hexl.el (hexl-mode, hexl-follow-ascii): Remove make-local-hook.
3061
3062 * icomplete.el (icomplete-minibuffer-setup): Likewise.
3063
3064 * hilit-chg.el (hilit-chg-set): Likewise.
3065
3066 * speedbar.el (speedbar-mode): Likewise.
3067
3068 * calendar/calendar.el (calendar-mode): Likewise.
3069
3070 * play/yow.el (psychoanalyze-pinhead): Use insert instead of
3071 insert-string.
3072
3073 * play/gamegrid.el (gamegrid-init-buffer): Likewise.
3074
3075 * term/bg-mouse.el (bg-insert-moused-sexp): Likewise.
3076
3077 * term/sun-mouse.el (sun-yank-selection): Likewise.
3078
3079 * textmodes/bib-mode.el (return-key-bib): Likewise.
3080
3081 * calendar/appt.el (appt-disp-window): Likewise.
3082
3083 * calendar/diary-lib.el (list-diary-entries): Likewise.
3084
3085 * array.el (array-reconfigure-rows): Likewise.
3086
3087 * filecache.el (file-cache-minibuffer-complete): Likewise.
3088
3089 * obsolete/cplus-md.el (fill-c++-comment): Likewise.
3090
3091 * strokes.el (strokes-prompt-user-save-strokes): Likewise.
3092
3093 * allout.el (outline-version, outline-open-topic)
3094 (outline-rebullet-heading, outline-insert-listified)
3095 (outline-latex-verbatim-quote-curr-line)
3096 (outline-latexify-one-item, outlineify-sticky): Likewise.
3097
3098 * vc.el (vc-next-action-on-file): Likewise.
3099 (vc-dired-mode): Remove make-local-hook.
3100
3101 2001-11-26 Andre Spiegel <spiegel@gnu.org>
3102
3103 * vc.el (vc-find-version): New function.
3104 (vc-version-other-window): Redefined in terms of the above.
3105
3106 * log-view.el (log-view-find-version): New function.
3107 (log-view-mode-map): Bind it to `f'.
3108
3109 2001-11-26 Gerd Moellmann <gerd@gnu.org>
3110
3111 * language/devan-util.el (dev-char-glyph): Escape `"' in
3112 string literals.
3113 (dev-glyph-glyph, dev-glyph-glyph-2)
3114 (devanagari-compose-syllable-region): Likewise.
3115
3116 2001-11-26 Richard M. Stallman <rms@gnu.org>
3117
3118 * window.el (save-selected-window): No error if saved window is dead.
3119
3120 * help-funs.el (describe-syntax): Put (interactive) after doc string.
3121
3122 2001-11-26 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3123
3124 * international/quail.el (quail-help): Require help-mode in
3125 top-level instead.
3126
3127 * iswitchb.el (iswitchb-exhibit): Use insert instead of
3128 insert-string.
3129
3130 * icomplete.el (icomplete-exhibit): Likewise.
3131
3132 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
3133
3134 * diff-mode.el (diff-end-of-hunk): Watch out for ambiguities.
3135 (diff-hunk-kill): Simplify.
3136 (diff-post-command-hook): Only apply to a single hunk.
3137 (diff-hunk-text): Make `char-offset' non-optional.
3138 (diff-find-text): Return a cons cell.
3139 (diff-find-approx-text): New fun.
3140 (diff-find-source-location): Use it.
3141 (diff-apply-hunk, diff-test-hunk, diff-goto-source):
3142 Adapt to new retval of diff-find-text.
3143
3144 * vc-cvs.el (vc-cvs-parse-entry): Rewrite, comparing the string-
3145 rather than integer- representation of dates.
3146
3147 * textmodes/fill.el (fill-indent-according-to-mode): Default to nil.
3148
3149 * emacs-lisp/syntax.el: Don't profile syntax-ppss any more.
3150 (syntax-after): New fun.
3151
3152 * help-funs.el (describe-syntax): New fun.
3153
3154 * font-lock.el (font-lock-cache-state, font-lock-cache-position)
3155 (font-lock-ppss-stats, font-lock-ppss): Remove.
3156 (font-lock-fontify-syntactically-region): Remove tuning code.
3157 (font-lock-compile-keywords): Fix off-by-one bug.
3158 (font-lock-set-defaults): Don't set removed vars.
3159 (c-keywords): Add `inline'.
3160 (c-type-names): Add `_Complex', `_Imaginary' and `_Bool'.
3161
3162 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
3163 Set syntax-begin-function.
3164 (lisp-interaction-mode-abbrev-table): Defvar to its correct value.
3165 (lisp-interaction-mode): Don't set local-abbrev-table any more.
3166 (lisp-mode-auto-fill): Use syntax-ppss and obey
3167 comment-auto-fill-only-comments.
3168 (lisp-fill-paragraph): Use syntax-ppss.
3169
3170 2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
3171
3172 * mail/rmail.el (rmail-enable-mime-composing): New. A lightweight
3173 version of rmail-enable-mime.
3174 (rmail-forward): Use it.
3175
3176 2001-11-25 Richard M. Stallman <rms@gnu.org>
3177
3178 * emacs-lisp/lisp-mode.el (lisp-indent-function): Add doc string.
3179
3180 * international/quail.el (quail-keyboard-layout-button):
3181 Define button type.
3182 (quail-keyboard-customize-button): Likewise.
3183 (quail-help): Use those button types. Require `help-mode'.
3184 Avoid altering the argument `package'.
3185
3186 * help-mode.el (help-function, help-variable, help-face)
3187 (help-coding-system, help-input-method, help-character-set):
3188 Define each button type with its own explicit define-button-type.
3189
3190 * language/devan-util.el: Comment out parts of the file
3191 which apparently are garbled.
3192
3193 2001-11-25 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3194
3195 * mail/smtpmail.el (smtpmail-deduce-address-list): Don't use
3196 insert-string.
3197
3198 2001-11-25 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3199
3200 * play/snake.el (snake-mode): Remove make-local-hook.
3201
3202 * play/tetris.el (tetris-mode): Likewise.
3203
3204 * play/decipher.el (decipher-mode): Likewise.
3205
3206 * tmm.el (tmm-add-prompt): Likewise.
3207
3208 2001-11-25 Sam Steingold <sds@gnu.org>
3209
3210 * menu-bar.el (menu-bar-apropos-menu): New variable.
3211 Moved all `apropos' bindings to this menu.
3212 (menu-bar-help-menu): Added `menu-bar-apropos-menu'.
3213
3214 2001-11-24 KAWABATA, Taichi <batta@beige.ocn.ne.jp>
3215
3216 The following changes are for new indian languages support based
3217 on Unicode charset and CDAC fonts.
3218
3219 * international/mule-conf.el: Change indian-1-column charset to
3220 indian-glyph charset.
3221
3222 * international/characters.el: Adjusted for the change of
3223 indian-1-column -> indian-glyph.
3224
3225 * international/fontset.el: Delete the setting for indian-1-column
3226 and add the setting for indian-glyph in the default fontset.
3227
3228 * language/indian.el: Completely re-written.
3229
3230 * language/devanagari.el: Completely re-written.
3231
3232 * language/devan-util.el: Completely re-written.
3233
3234 * language/ind-util.el: New file.
3235
3236 2001-11-24 Richard M. Stallman <rms@gnu.org>
3237
3238 * startup.el (command-line-1): Don't do startup screen
3239 if a subprocess is running. Call the startup screen buffer
3240 "GNU Emacs". Make a special mode-line-format for it.
3241
3242 * net/browse-url.el (browse-url-galeon-new-window-is-tab): New var.
3243 (browse-url-galeon): Use that variable.
3244
3245 * mail/supercite.el (sc-toggle-var): Don't use set-variable or
3246 eval-expression. Eval and set the variable simply.
3247
3248 * files.el (temporary-file-directory): Use defcustom.
3249 (small-temporary-file-directory): Likewise.
3250 (normal-backup-enable-predicate): Move down in file
3251 after definition of temporary-file-directory.
3252
3253 * bindings.el (last-buffer, unbury-buffer): Doc fixes.
3254
3255 2001-11-24 Colin Walters <walters@debian.org>
3256
3257 * calc/calc-ext.el (calc-init-extensions): Update the rest of the
3258 autoload names to match files renamed on initial calc import.
3259
3260 * calc/calc.el (Commentary): Cleanup, and add logistic curve
3261 fitting suggestion from Robert J. Chassell <bob@rattlesnake.com>.
3262
3263 2001-11-23 Colin Walters <walters@debian.org>
3264
3265 * Makefile.in (finder_setwins, setwins): Include Calc again.
3266
3267 * calc/calc-rules.el: Add header comment.
3268
3269 2001-11-23 Andre Spiegel <spiegel@gnu.org>
3270
3271 * vc.el (with-vc-properties): Don't bind `filename' locally.
3272 (with-vc-file, edit-vc-file): Use `make-symbol' for local bindings
3273 to avoid name clashes. Fix `lisp-indent-function' property for
3274 both.
3275
3276 2001-11-23 Francesco Potorti` <pot@gnu.org>
3277
3278 * generic-x.el (mailrc-generic-mode): Highlight the `source' keyword.
3279
3280 2001-11-22 Colin Walters <walters@debian.org>
3281
3282 * calc/calc-misc.el (report-calc-bug):
3283 Use `reporter-prompt-for-summary-p'.
3284
3285 * calc/INSTALL, calc/Makefile: Remove.
3286
3287 2001-11-22 Miles Bader <miles@gnu.org>
3288
3289 * emacs-lisp/re-builder.el (reb-match-0, reb-match-1)
3290 (reb-match-2, reb-match-3): Add dark-background variants.
3291
3292 2001-11-22 Colin Walters <walters@debian.org>
3293
3294 * calc/calc-misc.el (calc-info): Don't perform voodoo, just
3295 (info "Calc").
3296 (report-calc-bug): Use reporter.el.
3297
3298 * mail/reporter.el (reporter-submit-bug-report): Doc fixes.
3299
3300 2001-11-21 Richard M. Stallman <rms@gnu.org>
3301
3302 * which-func.el (which-function): Call imenu--make-index-alist
3303 if necessary to get a list of functions.
3304 (which-function-imenu-failed): New variable.
3305 (which-func-update): Handle all visible windows.
3306 (which-func-update-1): New subroutine broken out of which-func-update.
3307
3308 * files.el (temporary-file-directory, null-device)
3309 (small-temporary-file-directory): Definitions moved up.
3310
3311 * progmodes/cperl-mode.el (cperl-problems, cperl-tips)
3312 (cperl-non-problems, cperl-praise): Doc fixes.
3313
3314 * progmodes/sh-script.el (sh-mode): Don't use define-derived-mode.
3315 (sh-mode-syntax-table): Function restored.
3316 Variable set up for use by function sh-mode-syntax-table.
3317 (sh-set-shell): Set the syntax table.
3318
3319 * play/gomoku.el (gomoku-mode): Don't use define-derived-mode.
3320
3321 * progmodes/perl-mode.el (perl-mode): Don't use define-derived-mode.
3322
3323 * international/encoded-kb.el: Don't alter minor-map-alist.
3324
3325 2001-11-20 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
3326
3327 * files.el (auto-save-file-name-transforms): Put remote files in
3328 temporary-file-directory rather than /tmp.
3329
3330 2001-11-21 Colin Walters <walters@debian.org>
3331
3332 * calc/calc-macs.el (calc-slow-wrapper): Move (point) call outside
3333 of (function ...) wrapper.
3334
3335 2001-11-20 Stefan Monnier <monnier@cs.yale.edu>
3336
3337 * derived.el (define-derived-mode): Create the abbrev-table
3338 from inside the `defvar'.
3339
3340 * jit-lock.el (jit-lock-defer-time): New var.
3341 (jit-lock-defer-timer, jit-lock-buffers): New vars.
3342 (jit-lock-mode): Initialize them. Cancel the timers more carefully.
3343 (jit-lock-function): Defer fontification if requested.
3344 (jit-lock-stealth-chunk-start): Pay attention to the new non-nil value.
3345 (jit-lock-stealth-fontify): Check the new `jit-lock-defer-multiline'
3346 text property.
3347 (jit-lock-deferred-fontify): New fun.
3348
3349 2001-11-20 Richard M. Stallman <rms@gnu.org>
3350
3351 * emacs-lisp/lisp-mode.el (lisp-interaction-mode):
3352 Set local-abbrev-table to lisp-mode-abbrev-table.
3353
3354 * emacs-lisp/re-builder.el (reb-mode):
3355 Don't use define-derived-mode. Call kill-all-local-variables.
3356
3357 * emacs-lisp/lisp-mode.el (lisp-mode, emacs-lisp-mode):
3358 Don't use define-derived-mode.
3359
3360 * help-mode.el (help-mode): Undo 2001-10-07 change.
3361
3362 * replace.el (occur-mode): Undo 2001-5-20 change.
3363
3364 2001-11-20 Jason Rumney <jasonr@gnu.org>
3365
3366 * w32-fns.el (w32-system-coding-system): Change to an alias for
3367 locale-coding-system.
3368 (set-w32-system-coding-system): Document the above change.
3369 Set locale-coding-system instead.
3370
3371 2001-11-20 Richard M. Stallman <rms@gnu.org>
3372
3373 * ruler-mode.el: Add pagination.
3374 (ruler-mode-toggle-show-tab-stops): No need to
3375 test `ruler-mode' variable.
3376
3377 2001-11-20 Eli Zaretskii <eliz@is.elta.co.il>
3378
3379 * play/landmark.el: Mark lm-mode as special.
3380
3381 * play/gomoku.el: Mark gomoku-mode as special.
3382
3383 2001-11-20 Juanma Barranquero <lektu@terra.es>
3384
3385 * emacs-lisp/re-builder.el (reb-change-target-buffer): New function.
3386 (top-level): Bind it to C-c C-b.
3387 (re-builder): Don't re-enter RE Builder Mode.
3388
3389 * bs.el (bs-delete): Signal an error if the buffer cannot be deleted.
3390
3391 2001-11-20 Stefan Monnier <monnier@cs.yale.edu>
3392
3393 * progmodes/cperl-mode.el (cperl-perldoc): Require man before binding
3394 `manual-program'.
3395
3396 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Don't move back
3397 to a line without a comment.
3398
3399 2001-11-20 Eli Zaretskii <eliz@is.elta.co.il>
3400
3401 * dired.el (dired-listing-switches): Mention in the doc string
3402 that some switches are not supported by ls-lisp.el
3403
3404 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
3405
3406 * imenu.el (imenu--split-menu): Use dolist and copy-sequence.
3407 (imenu--create-keymap-2): Remove.
3408 (imenu--create-keymap-1): Simplify, remove third argument.
3409 (imenu--generic-function): Use dolist.
3410 (imenu-find-default): New function.
3411 (imenu--completion-buffer): Use it.
3412 (imenu--mouse-menu): Use popup-menu.
3413 (imenu--menubar-select): Return t rather than calling imenu.
3414
3415 * textmodes/fill.el (fill-delete-prefix, fill-delete-newlines):
3416 New functions, extracted from fill-region-as-paragraph.
3417 (fill-region-as-paragraph): Use them.
3418 Use an end marker instead of eob.
3419 Ignore whitespace-only fill-prefixes when indenting according to mode.
3420 Simplify the loop that searches for spaces backwards.
3421
3422 * textmodes/picture.el (picture-vertical-step)
3423 (picture-horizontal-step): Don't use defconst for variables.
3424
3425 * mail/mail-extr.el: Use backquote/dolist/mapc/when. Docstring fixes.
3426 (mail-extract-address-components): Downcase domain names.
3427 (mail-extr-delete-char): Remove. Use delete-char instead.
3428
3429 * emulation/pc-select.el: Doc string fixes.
3430 (pc-selection-mode): Don't treat macos as a tty.
3431
3432 * emacs-lisp/lisp.el (mark-sexp): Mark more if repeated.
3433
3434 * progmodes/cc-engine.el (c-parse-state): Typo. From Martin Stjernholm.
3435
3436 * mwheel.el (mouse-wheel-scroll-amount): Allow float values.
3437 (mouse-wheel-progessive-speed): New var.
3438 (mwheel-scroll): Use it and handle float values.
3439
3440 * lazy-lock.el (lazy-lock-install-hooks): Remove make-local-hook.
3441
3442 * iswitchb.el (iswitchb-mode): Use define-minor-mode.
3443 (iswitchb): Fix the case where the result was selected with the mouse.
3444 (iswitchb-completion-help): Use the normal *Completions* now that
3445 mouse selection works.
3446 (iswitchb-minibuffer-setup): Simplify.
3447
3448 * newcomment.el (comment-column, comment-style, comment-multi-line)
3449 (comment-auto-fill-only-comments): Remove :group arg.
3450 (comment-padding): Add :type.
3451 (comment-indent-new-line): Ignore comment-auto-fill-only-comments
3452 if called interactively.
3453
3454 2001-11-19 Colin Walters <walters@verbum.org>
3455
3456 * calc/calc.el (toplevel): Add comment and version header.
3457 (calc-init-base): Bump version to 2.02f, update date.
3458
3459 2001-11-19 Richard M. Stallman <rms@gnu.org>
3460
3461 * net/browse-url.el: Support Mozilla and Galeon.
3462 By default, find the installed browser whichever it is.
3463 (browse-url-mozilla): New function.
3464 (browse-url-mozilla-sentinel): New function.
3465 (browse-url-galeon, browse-url-galeon-sentinel): New functions.
3466 (browse-url-default-browser): New function.
3467 (browse-url-process-environment): Use browse-url-browser-display.
3468 (browse-url-browser-display): Renamed from browse-url-netscape-display.
3469 (browse-url-mozilla-startup-arguments, browse-url-galeon-program)
3470 (browse-url-galeon-arguments, browse-url-galeon-startup-arguments)
3471 (browse-url-mozilla-program, browse-url-mozilla-arguments): New vars.
3472 (browse-url-browser-function): New default, new options.
3473
3474 2001-11-19 Sam Steingold <sds@gnu.org>
3475
3476 * bindings.el (last-buffer, unbury-buffer): New function.
3477 (mode-line-unbury-buffer): Use `unbury-buffer'.
3478
3479 2001-11-18 Stephen Eglen <stephen@gnu.org>
3480
3481 * iswitchb.el (iswitchb-cannot-complete-hook): New variable to
3482 control behaviour when no further completion is possible.
3483
3484 2001-11-19 Colin Walters <walters@verbum.org>
3485
3486 * calc/calc-macs.el (calc-wrapper, calc-slow-wrapper)
3487 (math-showing-full-precision, math-with-extra-prec, math-working)
3488 (calc-with-default-simplification)
3489 (calc-with-trail-buffer): Use backtick.
3490 (Math-zerop, Math-integer-negp, Math-integer-posp, Math-negp)
3491 (Math-looks-negp, Math-posp, Math-integerp, Math-natnump)
3492 (Math-ratp, Math-realp, Math-anglep, Math-numberp, Math-scalarp)
3493 (Math-vectorp, Math-messy-integerp, Math-objectp, Math-objvecp)
3494 (Math-integer-neg, Math-equal, Math-lessp, Math-primp)
3495 (Math-num-integerp, Math-bignum-test, Math-equal-int)
3496 (Math-natnum-lessp, math-format-radix-digit): Change to `defsubst'.
3497 (calc-record-compilation-date-macro): Deleted. Callers updated.
3498 (math-format-radix-digit): Move to calc-bin.el.
3499
3500 * calc/calc.el (calc-record-compilation-date): Remove.
3501 (calc-bug-address): Update.
3502 (calc-settings-file): Use `user-init-file'.
3503
3504 * calc/calc-mode.el (calc-settings-file-name, calc-save-modes):
3505 Handle null `calc-settings-file'.
3506
3507 * calc/calc-frac.el (calc-over-notation): Use `completing-read'.
3508 * calc/calc-keypd.el (calc-keypad-mode): New.
3509 (calc-do-keypad): Use it.
3510 (calc-keypad-map): Move into `calc-keypad-mode'.
3511
3512 * calc-math.el (calcFunc-sqrt, calcFunc-hypot): Add missing quote
3513 to defalias argument.
3514
3515 * calc-misc.el (math-fixnump, math-fixnatnump, calcFunc-trunc)
3516 (calcFunc-floor): Ditto.
3517
3518 * calc-units.el (calcFunc-usimplify): Ditto.
3519
3520 * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
3521 * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
3522 * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
3523 * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
3524 * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
3525 * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
3526 * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
3527 * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
3528 * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
3529 * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
3530 * calcsel2.el: Change all toplevel `setq' forms to `defvar' forms,
3531 and move them before their first use. Use `when', `unless'.
3532 Remove trailing periods from error forms. Add description and
3533 headers suggested by Emacs Lisp coding conventions.
3534
3535 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
3536
3537 * newcomment.el (comment-indent):
3538 Fix misindentation for comment-only lines.
3539 (comment-indent-new-line): Only obey comment-multi-line if the
3540 comment-ender is not the end-of-line.
3541
3542 2001-11-19 Richard M. Stallman <rms@gnu.org>
3543
3544 * net/net-utils.el (network-connection-service-abbrev-alist):
3545 New variable.
3546
3547 * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
3548 Advance to start of 3rd sexp by moving fwd and backing over it.
3549 At first three elements, act like defun.
3550
3551 * delsel.el (delete-selection-pre-hook): Handle and resignal
3552 file-supersession errors to interact properly with userlock.el.
3553
3554 2001-11-18 Richard M. Stallman <rms@gnu.org>
3555
3556 * progmodes/fortran.el (fortran-mode-syntax-table):
3557 Specify punctuation syntax for backslash.
3558
3559 * progmodes/sh-script.el (sh-must-be-shell-mode): Function deleted.
3560 All calls deleted.
3561
3562 * international/mule-util.el (string-to-sequence): Make it obsolete.
3563 (string-to-list, string-to-vector): Implement them directly
3564 using append and vconcat, not with string-to-sequence.
3565
3566 * startup.el (command-line): Set abbrevs-changed to nil after
3567 reading the init file and the abbrevs file.
3568
3569 * isearch.el (isearch): Use magenta2 as bg for (background light)
3570
3571 2001-11-17 Richard M. Stallman <rms@gnu.org>
3572
3573 * menu-bar.el (menu-bar-update-buffers-1): Don't pad the buffer name.
3574
3575 * simple.el (minibuffer-history-sexp-flag): Doc fix.
3576
3577 2001-11-17 Stefan Monnier <monnier@cs.yale.edu>
3578
3579 * font-lock.el (font-lock-compile-keywords): New arg `regexp'.
3580 If set and if applicable, add a regexp to highlight defun-like
3581 text inside comments and strings.
3582 (font-lock-fontify-keywords-region): Pass that new arg.
3583 (font-lock-set-defaults): Move the code to set `font-lock-keywords'
3584 to the end and pass that new arg.
3585 (c-font-lock-keywords-2): Fix regex for labels.
3586 (font-lock-match-c++-style-declaration-item-and-skip-to-next):
3587 Make it work when LIMIT is several lines further.
3588 (c-font-lock-keywords-3, c++-font-lock-keywords-3)
3589 (objc-font-lock-keywords-3, java-font-lock-keywords-3):
3590 Use backquote and make the regexes for `int a, b, c;' work on
3591 multiple lines.
3592
3593 * emacs-lisp/re-builder.el (reb-mode): Use define-derived-mode.
3594 (font-lock-defaults-alist): Don't change it any more.
3595 (reb-subexp-mode-map): Cleanup.
3596
3597 * custom.el (custom-current-group-alist): New var.
3598 (custom-declare-group): Set it.
3599 (custom-current-group): New fun.
3600 (custom-declare-variable, custom-handle-all-keywords):
3601 Use it as a default if no :group argument is specified.
3602
3603 * international/mule-cmds.el (locale-name-match): Use \` and \(?:.
3604 (standard-keyboard-coding-systems): New var.
3605 (set-locale-environment): Use it to decide whether or not to call
3606 set-keyboard-coding-system.
3607 (locale-language-names): Use \"French\" for "fr".
3608
3609 2001-11-17 Richard M. Stallman <rms@gnu.org>
3610
3611 * emacs-lisp/checkdoc.el (princ-list, checkdoc-read-event)
3612 (add-to-list): Delete compatibility code.
3613 (checkdoc-next-message-error): Doc fix.
3614
3615 2001-11-17 Stephen Eglen <stephen@gnu.org>
3616
3617 * locate.el (locate): Show default locate pattern within the
3618 prompt, but don't insert it into the minibuffer contents.
3619 Catch the case when pattern is the empty string.
3620
3621 2001-11-17 Eli Zaretskii <eliz@is.elta.co.il>
3622
3623 * language/european.el ("French"): New language environment.
3624
3625 2001-11-16 Richard M. Stallman <rms@gnu.org>
3626
3627 * calendar/todo-mode.el (todo-save): Fix previous change.
3628
3629 * subr.el (functionp): Do use cdr-safe on object.
3630
3631 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
3632
3633 * bindings.el (mode-line-mode-name): Only put the help-echo property
3634 if the local-map property was put as well.
3635 (global-map): Bind switch-frame, delete-frame, iconify-frame
3636 and make-frame-visible events.
3637
3638 * emacs-lisp/elp.el (elp-not-profilable): New var.
3639 (elp-not-profilable-p): New function.
3640 (elp-instrument-function): Use it. Use backquotes and push.
3641
3642 * emacs-lisp/bytecomp.el (byte-compile-call-tree, byte-code-vector)
3643 (byte-stack+-info, byte-compile-last-warned-form)
3644 (byte-compile-last-logged-file): Don't defconst a variable.
3645 (no-byte-compile): Declare.
3646 (byte-compile-file): Don't boundp-check no-byte-compile any more.
3647 (byte-compile-defvar): Leave defconst as is.
3648
3649 * emacs-lisp/edebug.el (edebug-form-data, edebug-offsets)
3650 (edebug-offsets-stack, edebug-read-dotted-list, edebug-def-name)
3651 (edebug-current-offset, edebug-old-def-name, edebug-error-point)
3652 (edebug-best-error): Don't defconst a variable.
3653 (edebug-read-syntax-table): Use a char-table.
3654 (edebug-lemacs-specific): Remove.
3655 Toplevel: Eliminate check for Lucid Emacs.
3656
3657 * pcvs-util.el (cvs-prefix-define): Don't defconst a variable.
3658
3659 * rect.el (move-to-column-force): Mark obsolete.
3660 (operate-on-rectangle, delete-extract-rectangle-line)
3661 (insert-rectangle, delete-whitespace-rectangle-line)
3662 (open-rectangle-line, clear-rectangle-line): Use move-to-column.
3663 (string-rectangle-history): New var.
3664 (string-rectangle, string-insert-rectangle): Use it.
3665 (delete-rectangle-line): Fix pos/column mixup and simplify.
3666
3667 * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
3668 (normal-top-level, command-line, command-line-1): Simplify.
3669
3670 * tar-mode.el (tar-mode): Use define-derived-mode.
3671
3672 * view.el (view-mode-enable): Don't use make-local-hook.
3673
3674 * emacs-lisp/eldoc.el (eldoc-mode): Use define-minor-mode.
3675
3676 2001-11-16 Richard M. Stallman <rms@gnu.org>
3677
3678 * mail/mail-extr.el (mail-extr-voodoo): Treat a number as a word
3679 if it doesn't make sense as anything else.
3680 Don't recognize a "telephone number" at the beginning of the name.
3681 (mail-extr-leading-garbage): Match non-word characters only.
3682
3683 2001-11-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3684
3685 * startup.el (command-line-processed): Doc fix.
3686
3687 * apropos.el (apropos-next-label-button): Doc fix.
3688
3689 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
3690
3691 * comint.el (comint-mode): Simplify.
3692 (make-comint-in-buffer): Run `comint-mode' only if necessary.
3693
3694 * subr.el (eval-after-load): Make it work with features as well.
3695
3696 * log-view.el (log-view-mode): Don't mark the buffer unmodified.
3697
3698 * international/mule-cmds.el (describe-input-method): Setup xref.
3699 (set-language-environment): Use functionp.
3700 (locale-language-names, locale-charset-language-names)
3701 (locale-preferred-coding-systems): Defconst and purecopy.
3702
3703 * language/european.el (mac-roman): Add mime-charset property.
3704
3705 2001-11-15 Richard M. Stallman <rms@gnu.org>
3706
3707 * emacs-lisp/cl.el (values, values-list, multiple-value-list)
3708 (multiple-value-apply, nth-value): Use defsubst rather than defalias
3709 to get better doc strings.
3710
3711 2001-11-15 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3712
3713 * derived.el: Fix autoload cookie.
3714
3715 2001-11-15 Richard M. Stallman <rms@gnu.org>
3716
3717 * jka-compr.el (jka-compr-partial-uncompress): Fix previous change.
3718
3719 2001-11-15 Stefan Monnier <monnier@cs.yale.edu>
3720
3721 * menu-bar.el (menu-bar-edit-menu) <copy>: Put an explicit key binding.
3722
3723 2001-11-15 Richard M. Stallman <rms@gnu.org>
3724
3725 * dired.el (dired-undo): Display a message to explain
3726 that this does not undo file system changes.
3727
3728 2001-11-15 David Kastrup <David.Kastrup@t-online.de>
3729
3730 * mouse-drag.el (mouse-drag-throw): Push back non-drag events
3731 into `unread-command-events' instead of trying keymap
3732 lookups ourselves. This makes mouse-clicks do the right
3733 thing even when keymaps of overlays are involved.
3734 (mouse-drag-drag): Likewise.
3735
3736 2001-11-15 Andreas Schwab <schwab@suse.de>
3737
3738 * progmodes/ada-mode.el (ada-add-extensions): Quote regexp special
3739 characters and append anchor to pattern added to auto-mode-alist.
3740
3741 2001-11-15 Stefan Monnier <monnier@cs.yale.edu>
3742
3743 * server.el (server-process-filter): Run pore/post-comment-hook
3744 before/after visiting the file.
3745
3746 * info-look.el (makefile-mode): Add info for automake.
3747 (autoconf-mode): Fix the name of the index for automake.
3748
3749 * international/latin-9.el: Give pilcrow punctuation syntax.
3750
3751 2001-11-15 Andre Spiegel <spiegel@gnu.org>
3752
3753 * vc.el: Documentation fixes.
3754
3755 2001-11-14 Stefan Monnier <monnier@cs.yale.edu>
3756
3757 * smerge-mode.el (smerge-match-conflict): Fix typo.
3758 (smerge-diff): Be careful to read match-data early enough.
3759
3760 2001-11-14 Colin Walters <walters@verbum.org>
3761
3762 * calc/calc-alg.el (calcFunc-esimplify, calcFunc-simplify)
3763 (calcFunc-subst): Use `defalias' instead of `fset' and
3764 `symbol-function'.
3765
3766 * calc/calc-arith.el (calcFunc-abs, calcFunc-float)
3767 (calcFunc-ceil, calcFunc-round): Ditto.
3768
3769 * calc/calc-bin.el (calcFunc-clip): Ditto.
3770
3771 * calc/calc-ext.el (calcFunc-evalv): Ditto.
3772
3773 * calc/calc-math.el (calcFunc-sqrt, calcFunc-hypot): Ditto.
3774
3775 * calc/calc-misc.el (math-fixnump, math-fixnatnump)
3776 (calcFunc-trunc, calcFunc-floor, calc-report-bug): Ditto.
3777
3778 * calc/calc-units.el (calcFunc-unsimplify): Ditto.
3779
3780 * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
3781 * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
3782 * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
3783 * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
3784 * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
3785 * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
3786 * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
3787 * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
3788 * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
3789 * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
3790 * calcsel2.el: Style cleanup; don't put closing parens on their
3791 own line, add "foo.el ends here" to each file, and update
3792 copyright date.
3793
3794 * README: Update maintainer.
3795
3796 2001-11-13 Richard M. Stallman <rms@gnu.org>
3797
3798 * progmodes/compile.el (recompile): Use compilation-arguments if
3799 set, so as to be able to M-x recompile the exact command which
3800 created a compilation-mode buffer.
3801
3802 * progmodes/ada-mode.el (ada-fill-comment-prefix): Doc fix.
3803
3804 2001-11-13 Gerd Moellmann <gerd@gnu.org>
3805
3806 * mouse.el (mouse-drag-region): Don't run the up-event
3807 handler if window start changed due to the down-mouse event.
3808
3809 2001-11-13 Richard M. Stallman <rms@gnu.org>
3810
3811 * mouse.el (mouse-show-mark): Either move point to the mark
3812 or use highlighting, never both.
3813 (mouse-buffer-menu): If WINDOW is a frame, select its selected window.
3814
3815 2001-11-13 Simon Josefsson <jas@extundo.com>
3816
3817 * mail/smtpmail.el (top-level): Change maintainer to Simon
3818 Josefsson, cleanup the smtpmail.el header.
3819
3820 * mail/smtpmail.el (top-level): Don't require cl or base64.
3821 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
3822 (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd):
3823 Defsubst instead of defmacro.
3824 (smtpmail-intersection): Return value in reverse order.
3825 (smtpmail-open-stream): Use stringp instead of string-to-list.
3826 (smtpmail-open-stream, smtpmail-try-auth-methods): New functions,
3827 separated from smtpmail-via-smtp.
3828
3829 * mail/smtpmail.el (top-level): Autoload starttls, mail-utils and
3830 rfc2104. Require base64 and cl.
3831 (smtpmail-smtp-service): Doc fix. :type fix.
3832 (smtpmail-debug-info): Doc fix.
3833 (smtpmail-debug-verb, smtpmail-auth-credentials)
3834 (smtpmail-starttls-credentials, smtpmail-auth-supported):
3835 New variables.
3836 (smtpmail-deduce-address-list, smtpmail-send-it): Don't require
3837 mail-utils (it is autoloaded).
3838 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
3839 (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd)
3840 (smtpmail-find-credentials, smtpmail-intersection): New utility funs.
3841 (smtpmail-via-smtp): Support STARTTLS, if binary is installed.
3842 (smtpmail-via-smtp): Support AUTH.
3843 (smtpmail-via-smtp): Use `smtpmail-debug-verb' to control VERB.
3844
3845 2001-11-13 Richard M. Stallman <rms@gnu.org>
3846
3847 * ebuff-menu.el (electric-buffer-update-highlight): New function.
3848 (electric-buffer-overlay): New variable.
3849 (electric-buffer-menu-looper): Call electric-buffer-update-highlight.
3850 (electric-buffer-list): Likewise.
3851
3852 * isearch.el (isearch-whitespace-chars): Doc fix.
3853 (isearch-mode): Handle negative search-slow-window-lines correctly.
3854
3855 2001-11-13 Stefan Monnier <monnier@cs.yale.edu>
3856
3857 * newcomment.el (comment-normalize-vars): Handle a nil comment-padding.
3858
3859 * progmodes/ada-mode.el (ada-fill-comment-prefix): GNAT wants 2 spaces.
3860 From Emmanuel Briot <briot@act-europe.fr>.
3861
3862 2001-11-13 Colin Walters <walters@debian.org>
3863
3864 * calc/calc.el (calc-unread-command): Use `unread-command-events'.
3865
3866 * calc/calc-mode.el (calc-settings-file-name): Don't hardcode
3867 "~/.emacs"; use `read-file-name'.
3868
3869 * calc/calc-graph.el, calc/calc-embed.el, calc/calc-graph.el
3870 * calc/calc-misc.el, calc/calc-mode.el, calc/calc-prog.el
3871 * calc/calc-sel.el, calc/calc-store.el, calc/calc-yank.el
3872 * calc/calc.el: Use `frame-width' instead of `screen-width',
3873 `frame-height' instead of `screen-height', and,
3874 `executing-kbd-macro' instead of `executing-macro'.
3875
3876 * calc/calc-embed.el (calc-do-embedded): Call `y-or-n-p' with
3877 correct number of arguments.
3878
3879 * calc/calc-aent.el (calc-do-alg-entry):
3880 Use `blink-paren-function' instead of `blink-paren-hook'.
3881
3882 2001-11-12 Richard M. Stallman <rms@gnu.org>
3883
3884 * calendar/todo-mode.el (todo-save): Add save-excursion
3885 and save-restriction.
3886
3887 * server.el (server-edit, server-done): Doc fix.
3888
3889 * simple.el (clone-indirect-buffer): Error if major mode symbol
3890 has a no-clone-indirect property.
3891 (clone-buffer): Check for obvious errors before reading clone name.
3892
3893 * info.el (Info-mode): Add a no-clone-indirect property.
3894
3895 2001-11-12 Sam Steingold <sds@gnu.org>
3896
3897 * vc.el (vc-print-log): Bind `inhibit-read-only' to t before and
3898 set-buffer-modified-p to nil after `vc-exec-after'.
3899 * log-view.el (log-view-mode-map): Bind "q", "z", "m" and "d".
3900 (log-view-mode): Make read-only.
3901 (log-view-current-file): Do final `expand-file-name' in the
3902 current `default-directory'.
3903 (log-view-current-tag): Take an optional `where' arg.
3904 (log-view-diff): New user command.
3905
3906 2001-11-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3907
3908 * progmodes/cpp.el (cpp-choose-face): Fix typo.
3909
3910 2001-11-12 Sam Steingold <sds@gnu.org>
3911
3912 * emacs-lisp/cl-indent.el (toplevel): Indent properly
3913 `generic-flet', `generic-labels', `with-accessors',
3914 `with-condition-restarts'.
3915
3916 2001-11-12 Richard M. Stallman <rms@gnu.org>
3917
3918 * dired.el: Many trivial doc fixes.
3919 (dired-get-file-for-visit): New function.
3920 (dired-find-alternate-file, dired-mouse-find-file-other-window):
3921 (dired-view-file, dired-find-file-other-window, dired-display-file):
3922 (dired-find-file): Use dired-get-file-for-visit.
3923
3924 2001-11-12 Alex Schroeder <kensanata@yahoo.com>
3925
3926 * sql.el (sql-mode): Doc change.
3927
3928 * sql.el (sql-mode-syntax-table): The backslash is no longer an
3929 escape character.
3930
3931 2001-11-12 Colin Walters <walters@debian.org>
3932
3933 * calc/calc-keypd.el (toplevel): Bind mouse buttons.
3934 (calc-do-keypad): Don't attempt to use nonexistent global
3935 mouse-map, use calc-keypad-map.
3936 (calc-keypad-x-left-click): Renamed to calc-keypad-left-click.
3937 (calc-keypad-left-click): Don't use mouse-map; update to new event
3938 interface.
3939 (calc-keypad-x-middle-click, calc-keypad-x-right-click): Ditto.
3940 (calc-keypad-press): Use `unread-command-events' instead of
3941 `unread-command-char'.
3942
3943 * calc/calc-ext.el (calc-init-extensions): Update autoload names
3944 to match files renamed on initial calc import.
3945
3946 2001-11-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3947
3948 * textmodes/flyspell.el (flyspell-default-dictionary):
3949 Fix previous change.
3950
3951 2001-11-12 Richard M. Stallman <rms@gnu.org>
3952
3953 * textmodes/flyspell.el (flyspell-default-dictionary):
3954 Fix custom type.
3955
3956 2001-11-11 Richard M. Stallman <rms@gnu.org>
3957
3958 * calendar/solar.el (solar-sunrise-and-sunset):
3959 Exchange the two extreme values of day-length.
3960
3961 * progmodes/sh-script.el (sh-must-be-shell-mode):
3962 Allow modes derived from sh-mode.
3963
3964 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
3965 Turn off error in some re-search-forward calls.
3966
3967 * replace.el (query-replace-skip-read-only): New variable.
3968 (perform-replace): If that variable is non-nil, ignore matches
3969 that have a read-only property.
3970
3971 * derived.el (define-derived-mode): Doc fix.
3972
3973 * server.el (server-buffer-done): Test of server-existing-buffer
3974 was backwards.
3975 (server-existing-buffer): Doc fix.
3976
3977 * textmodes/flyspell.el (flyspell-default-dictionary):
3978 Allow nil as value, and make nil the default.
3979
3980 2001-11-11 Eli Zaretskii <eliz@is.elta.co.il>
3981
3982 * menu-bar.el (menu-bar-edit-menu): Don't use x-selection-exists-p if
3983 it is not fboundp.
3984 (clipboard-yank): Ditto.
3985
3986 2001-11-11 Colin Walters <walters@verbum.org>
3987
3988 The following changes are based on patches from
3989 Eli Zaretskii <eliz@is.elta.co.il>, Kai Gro\e,A_\e(Bjohann
3990 <Kai.Grossjohann@CS.Uni-Dortmund.DE>, and others.
3991
3992 * calc/calc.el (toplevel): Require calc-macs.
3993 (calc-minibuffer-size): New.
3994 (calcDigit-nondigit): Use it instead of `buffer-size'.
3995 (calcDigit-backspace): Likewise.
3996 (calcDigit-nondigit): Use `minibuffer-contents' instead of
3997 `buffer-string'.
3998 (calc-minibuffer-contains): Use `minibuffer-prompt-end' instead of
3999 `point-min'.
4000 (calcDigit-key): Use `calc-minibuffer-contains' instead of a
4001 `save-excursion'.
4002
4003 * calc/calc-macs.el (calc-record-compilation-date-macro): Return a
4004 simple `setq' form.
4005
4006 * calc/calc-ext.el: (toplevel): Require calc.
4007 (calc-fancy-prefix-map): New.
4008 (calc-fancy-prefix): Use it.
4009 (calc-fancy-prefix-other-key): New.
4010
4011 * calc/calc-aent.el (toplevel): Require calc-macs during compilation.
4012 (calc-do-quick-calc): Use `frame-width' instead of `screen-width'.
4013 (calcAlg-edit): Use `minibuffer-contents' instead of `buffer-string'.
4014 (calcAlg-enter): Likewise.
4015 (calcAlg-enter): Use `minibuffer-prompt-end' instead of `point-min'.
4016
4017 2001-11-10 Richard M. Stallman <rms@gnu.org>
4018
4019 * abbrev.el (read-abbrev-file): Don't set save-abbrevs.
4020 (quietly-read-abbrev-file): Doc fix.
4021
4022 * startup.el (command-line): Read standard abbrev
4023 file (abbrev-file-name), if it exists.
4024
4025 * files.el (save-abbrevs): Default value is t.
4026
4027 * progmodes/compile.el (compile-goto-error): Fix previous change
4028 in the case where subsequent errors have not been parsed yet
4029 because they are in a different source file.
4030
4031 2001-11-10 Peter Kleiweg <kleiweg@let.rug.nl>
4032
4033 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
4034 Merge two regular expressions into one.
4035 (ps-mode): Make local bindings for `comment-start' and
4036 `comment-start-skip'.
4037 (ps-mode-looking-at-nested): Simplify an if-else construct;
4038 use `set-match-data' to set the result.
4039
4040 2001-11-10 Richard M. Stallman <rms@gnu.org>
4041
4042 * textmodes/flyspell.el (flyspell-correct-word/local-keymap):
4043 Function deleted.
4044 (flyspell-correct-word): Old definition deleted.
4045 (flyspell-correct-word/mouse-keymap): Renamed to flyspell-correct-word.
4046 All references renamed too.
4047
4048 2001-11-10 Gerd Moellmann <gerd@gnu.org>
4049
4050 * Makefile.in (finder_setwins, setwins): Exclude Calc.
4051
4052 2001-11-09 Per Abrahamsen <abraham@dina.kvl.dk>
4053
4054 * wid-edit.el (checklist): Removed `:menu-tag'.
4055 (radio-button-choice): Ditto.
4056 (editable-list): Ditto.
4057
4058 2001-11-09 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4059
4060 * play/gomoku.el: Move definitions of constants to the beginning
4061 of file, before their use.
4062
4063 2001-11-09 Richard M. Stallman <rms@gnu.org>
4064
4065 * textmodes/flyspell.el: Use the keymap property
4066 instead of local-map, and don't use a minor-mode map.
4067 (flyspell-mode-map): Variable deleted.
4068 Don't mess with minor-mode-map-alist.
4069 (calling add-minor-mode): Specify nil for keymap.
4070 And always use add-minor-mode, now that it exists.
4071 (flyspell-overlay-keymap-property-name): Set it to `keymap'.
4072 (flyspell-mode-on): Don't locally bind flyspell-mouse-map
4073 or flyspell-local-mouse-map.
4074 (make-flyspell-overlay): Use flyspell-mouse-map directly.
4075 (flyspell-mode): Doc fix.
4076 (flyspell-mode-on): Don't call make-local-hook.
4077
4078 2001-11-09 Sam Steingold <sds@gnu.org>
4079
4080 * emacs-lisp/debug.el (debugger-make-xrefs):
4081 Add buttons to all symbols.
4082
4083 2001-11-09 Andre Spiegel <spiegel@gnu.org>
4084
4085 * vc.el: Add John David Smith to credits.
4086
4087 Suggested by Kalle Olavi Niemitalo <kon@iki.fi>:
4088
4089 * vc-hooks.el (vc-error-occured): Backquotified.
4090 (vc-file-prop-obarray): Use prime length for better efficiency.
4091
4092 * vc.el (vc-clear-context): Fill obarray with 0, not nil.
4093
4094 2001-11-09 Eli Zaretskii <eliz@is.elta.co.il>
4095
4096 * info.el (Info-file-list-for-emacs): Add entries for Calc.
4097
4098 2001-11-09 Miles Bader <miles@gnu.org>
4099
4100 * subr.el (functionp): Don't consider macros as functions.
4101
4102 2001-11-08 Miles Bader <miles@gnu.org>
4103
4104 * subr.el (functionp): Make work correctly for macros and unbound
4105 symbols.
4106
4107 * comint.el (comint-send-input): Fix description of
4108 `comint-process-echoes' in the doc-string.
4109
4110 2001-11-08 Eli Zaretskii <eliz@is.elta.co.il>
4111
4112 * international/mule.el (make-translation-table): Doc fix.
4113 Suggested by Alex Schroeder <alex@gnu.org>.
4114
4115 2001-11-07 Richard M. Stallman <rms@gnu.org>
4116
4117 * info.el (Info-fontify-node): Highlight every third menu item.
4118
4119 2001-11-07 Per Abrahamsen <abraham@dina.kvl.dk>
4120
4121 * cus-edit.el (custom-face-value-create): Don't ignore the
4122 `customized-face' attribute when finding the current face spec.
4123
4124 2001-11-07 Stefan Monnier <monnier@cs.yale.edu>
4125
4126 * subr.el (with-local-quit): New macro.
4127 (make-syntax-table): Always inherit.
4128 (functionp): Be more careful when `object' is a symbol.
4129
4130 * dabbrev.el (dabbrev-completion): Use "*Completions*".
4131
4132 2001-11-07 Paul Eggert <eggert@twinsun.com>
4133
4134 * dired.el (dired-move-to-filename-regexp):
4135 Do not distinguish between ASCII letters and non-ASCII characters.
4136 Don't allow comma except in the form "month day, year".
4137 Don't allow space between month name and comma.
4138 Clean up the code that checks for trailing period, comma, and space.
4139 Remove now-obsolete comments, and add more commentary about
4140 Japanese dates.
4141 Always gobble up trailing spaces, instead of doing it only sometimes.
4142
4143 2001-11-07 Miles Bader <miles@gnu.org>
4144
4145 * paren.el (show-paren-match-face): Add dark-background variant.
4146
4147 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
4148
4149 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Paren typo.
4150 (lisp-mode-variables): Don't set paragraph-{start,separate}.
4151 Don't disable adaptive-fill-mode.
4152 (lisp-fill-paragraph): Use tab-width rather than 8.
4153 Prevent filling the first line of docstrings.
4154
4155 2001-11-06 Richard M. Stallman <rms@gnu.org>
4156
4157 * play/gomoku.el (gomoku): Doc fix.
4158
4159 * jka-compr.el (jka-compr-partial-uncompress):
4160 Support an alternative of not using dd.
4161 (jka-compr-dd-program): Use defcustom to define this.
4162 (jka-compr-load-suffixes): Use defcustom.
4163 (jka-compr-mode-alist-additions): Use defcustom.
4164
4165 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
4166
4167 * font-lock.el (font-lock-match-c-style-declaration-item-and-skip-to-next):
4168 Also work when LIMIT is further than the end of line.
4169
4170 2001-11-06 Eli Zaretskii <eliz@is.elta.co.il>
4171
4172 * international/quail.el (quail-update-leim-list-file): Print the
4173 offending file name if some of its quail-define-package forms is broken.
4174
4175 2001-11-05 Richard M. Stallman <rms@gnu.org>
4176
4177 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Return the value
4178 of the evaluated form.
4179
4180 2001-11-05 Paul Eggert <eggert@twinsun.com>
4181
4182 * ls-lisp.el (ls-lisp-time-to-seconds): New function.
4183 (ls-lisp-format-time): Emulate GNU fileutils 4.1.1 ls, whose time
4184 stamps always line up by default. Also, it uses a slightly
4185 different window to determine whether files are "recent".
4186
4187 2001-11-05 Andrew Innes <andrewi@gnu.org>
4188
4189 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
4190 Don't attempt to remake autoloads before nuking .elc files.
4191
4192 2001-11-04 Richard M. Stallman <rms@gnu.org>
4193
4194 * emacs-lisp/lisp-mode.el (last-sexp-toggle-display): Cope if
4195 previous-single-property-change or next-single-char-property-change
4196 returns nil.
4197
4198 * international/mule-cmds.el (set-locale-environment):
4199 Make it interactive; make arg optional.
4200
4201 * international/mule-diag.el (help-funs): Require help-funs.
4202
4203 2001-11-04 Eli Zaretskii <eliz@is.elta.co.il>
4204
4205 * term/internal.el (term-setup-hook): Add IT-setup-unicode-display.
4206
4207 2001-11-04 Miles Bader <miles@gnu.org>
4208
4209 * startup.el (fancy-splash-head): Reapply Gerd's hack to make the
4210 shadow of the splash image grey on a dark background instead of black.
4211
4212 2001-11-03 Stefan Monnier <monnier@cs.yale.edu>
4213
4214 * term.el (all faces): Don't (copy-face 'default <foo>).
4215
4216 * term/xterm.el (function-key-map):
4217 Add entry for `ESC [ 3 ~' -> <delete>
4218 Add entries `ESC O 5 [ABCD]' -> C-{up,down,right,left}.
4219 Use inheritance so that .emacs and terminfo take precedence.
4220
4221 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
4222
4223 * tooltip.el (tooltip-delay): Decrease to 0.7.
4224 (tooltip-hide-delay): Enlarge to 10.
4225
4226 2001-11-03 Richard M. Stallman <rms@gnu.org>
4227
4228 * startup.el (fancy-splash-tail): Explain how to recover
4229 from a crash, if there was a crash.
4230 (command-line-1): Reorganize display of startup screen,
4231 to simplify the logic. Use a temp buffer for it.
4232
4233 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
4234
4235 * frame.el (set-background-color, set-foreground-color):
4236 Call face-set-after-frame-default, to propagate the new colors to
4237 the frame's parameters alist.
4238
4239 * calendar/timeclock.el (timeclock-out): Signal an error if
4240 timeclock-last-event is nil.
4241
4242 2001-11-02 Stefan Monnier <monnier@cs.yale.edu>
4243
4244 * textmodes/fill.el (fill-context-prefix): Fix braino.
4245
4246 * international/quail.el (quail-help):
4247 Use `help-buffer' and move `help-setup-xref' to beginning.
4248
4249 * international/mule-cmds.el (describe-language-environment):
4250 Use `help-buffer' and move `help-setup-xref' to beginning.
4251
4252 * international/mule-diag.el (list-character-sets)
4253 (sort-listed-character-sets, describe-character-set)
4254 (describe-coding-system, describe-fontset, list-fontsets):
4255 Use `help-buffer' and move `help-setup-xref' to beginning.
4256 (describe-char-after): Use `internal-describe-syntax-value'.
4257
4258 2001-11-02 Richard M. Stallman <rms@gnu.org>
4259
4260 * mouse.el (popup-menu): If the user refuses to select
4261 from a menu, don't try to invoke the menu.
4262
4263 2001-11-02 Miles Bader <miles@gnu.org>
4264
4265 * help-mode.el (help-xref): New button type.
4266 (help-function, help-variable, help-face, help-coding-system)
4267 (help-input-method, help-character-set, help-type, help-symbol)
4268 (help-back, help-info, help-customize-variable, help-customize-face)
4269 (help-function-def, help-variable-def): Use it as a supertype.
4270 Remove `action' property.
4271
4272 * international/mule-diag.el (describe-character-set)
4273 (describe-coding-system): Pass correct args to `help-xref-button'.
4274 (sort-listed-character-sets): New button type.
4275 (list-character-sets): Use it.
4276 (list-charset-chars): New button type.
4277 (list-character-sets-1): Use it.
4278
4279 2001-11-01 Stefan Monnier <monnier@rum.cs.yale.edu>
4280
4281 * indent.el (tab-always-indent, indent-for-tab-command):
4282 Remove redundant `never' setting.
4283
4284 * fill.el (fill-region-as-paragraph): Don't forget to skip
4285 over current whitespace before looking for a preceding space.
4286
4287 2001-11-01 Richard M. Stallman <rms@gnu.org>
4288
4289 * files.el (file-newest-backup): Don't pass backup file name
4290 thru file-name-sans-versions, because it never has version numbers.
4291
4292 * textmodes/sgml-mode.el (sgml-xml-guess): Fix regexp
4293 to avoid ambiguous nested loops.
4294
4295 * files.el (find-file-noselect): Offer to change buffer-read-only
4296 only when the file's read-only status has changed from before
4297 as well as disagreeing with the buffer's current status.
4298 (buffer-file-read-only): New var, local in all buffers.
4299
4300 * buff-menu.el (buffer-menu): Doc fix.
4301 (buffer-menu-other-window): Doc fix.
4302 (list-buffers, list-buffers-noselect): Doc fix.
4303
4304 2001-11-01 Gerd Moellmann <gerd@gnu.org>
4305
4306 * startup.el (command-line): If the terminal Emacs is running on
4307 has erase char set to ^H, use the Backspace key for deleting
4308 backward, and the Delete key for deleting forward.
4309
4310 2001-11-01 Miles Bader <miles@gnu.org>
4311
4312 * button.el (define-button-type): Make sure every user-defined
4313 button type has a supertype.
4314
4315 2001-10-31 Jason Rumney <jasonr@gnu.org>
4316
4317 * international/mule-cmds.el (locale-language-names): Add chs and
4318 cht as aliases for Chinese-GB and Chinese-BIG5.
4319
4320 2001-10-31 Richard M. Stallman <rms@gnu.org>
4321
4322 * bindings.el (mode-line-frame-identification): Add doc string.
4323 (mode-line-position, mode-line-modes): New variables.
4324 (mode-line-format): Use mode-line-position for the part
4325 that displays the position-in-buffer info.
4326 Use mode-line-modes for the part that displays major and minor modes.
4327
4328 2001-10-31 Sam Steingold <sds@gnu.org>
4329
4330 * emacs-lisp/debug.el (debugger-make-xrefs): New function.
4331 (debugger-setup-buffer): Call it.
4332 (debugger-mode-map): Bind RET and mouse-2.
4333
4334 2001-10-31 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4335
4336 * startup.el: Document command line option --no-window-system
4337 instead of --no-windows.
4338
4339 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
4340
4341 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip.
4342
4343 * font-lock.el (java-font-lock-syntactic-face-function): New fun.
4344 (font-lock-defaults-alist): Use it.
4345 From David Ponce <david.ponce@wanadoo.fr>
4346
4347 * progmodes/perl-mode.el (perl-indent-line): Use `eq' to compare
4348 output of `char-after'.
4349
4350 * bindings.el (ctl-x-map): Add binding for C-x (, C-x ) and C-x e.
4351
4352 * simple.el (reindent-then-newline-and-indent): Insert the newline
4353 before indenting the first line.
4354 (undo-get-state, undo-revert-to-state): New funs.
4355 (shell-command): Don't kill the buffer even if empty.
4356 (transpose-subr-start1, transpose-subr-start2, transpose-subr-end1)
4357 (transpose-subr-end2): Remove.
4358 (transpose-subr): Add `special' arg and simplify.
4359 (transpose-subr-1): Rewrite.
4360 (do-auto-fill): Use fill-indent-according-to-mode and fill-nobreak-p.
4361 (rfc822-goto-eoh): Simplify.
4362
4363 2001-10-30 Richard M. Stallman <rms@gnu.org>
4364
4365 * enriched.el (enriched-face-ans): Fix previous change.
4366
4367 2001-10-30 Gerd Moellmann <gerd@gnu.org>
4368
4369 * international/iso-acc.el (iso-accents-compose): Remove a
4370 superfluous setq.
4371
4372 2001-10-30 Eli Zaretskii <eliz@is.elta.co.il>
4373
4374 * buff-menu.el (list-buffers-noselect): If the buffer's name
4375 starts with a blank, but it visits a file, do show it (for files
4376 whose names start with a blank).
4377
4378 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
4379
4380 * textmodes/fill.el (sentence-end-double-space)
4381 (sentence-end-without-period): Move to paragraphs.el.
4382 (fill-indent-according-to-mode): Change default to t.
4383 (fill-context-prefix): Simplify control-flow and use a more
4384 sophisticated merge that unifies both previous checks.
4385 (fill-single-word-nobreak-p, fill-french-nobreak-p): New funs.
4386 (fill-nobreak-predicate): Make it into a defcustom'd hook.
4387 (fill-nobreak-p): New fun.
4388 (fill-region-as-paragraph): Use it.
4389 Handle `fill-indent-according-to-mode' slightly differently.
4390 (fill-individual-paragraphs-prefix): Simplify the control-flow.
4391 (fill-individual-paragraphs-citation): Fix.
4392
4393 * textmodes/paragraphs.el (use-hard-newlines): Use define-minor-mode.
4394 (paragraph-start): Change default to the `text-mode' value.
4395 (sentence-end-double-space, sentence-end-without-period):
4396 Move from fill.el.
4397 (forward-paragraph): Use `parstart' and `parsep' for temp variables
4398 rather than rebinding `paragraph-start' and `paragraph-separate'.
4399
4400 * indent.el (indent-line-function): Change default to indent-relative.
4401 (tab-always-indent): Add an `never' setting.
4402 (indent-according-to-mode): Handle `indent-relative' and
4403 `indent-relative-maybe' specially.
4404 (indent-for-tab-command): Rename `prefix-arg' to `arg'.
4405 Handle the `never' case for `tab-always-indent'.
4406 Don't call indent-according-to-mode for indent-relative' and
4407 `indent-relative-maybe'.
4408 (insert-tab): Rename `prefix-arg' to `arg'.
4409 (indent-region): Indent the first line as well.
4410 (indent-relative): Don't mark the buffer modified if the indentation
4411 is unchanged.
4412
4413 * textmodes/text-mode.el (paragraph-indent-minor-mode):
4414 Don't set paragraph-separate. Set paragraph-start more carefully.
4415 Set indent-line-function.
4416 (paragraph-indent-text-mode): Use it and define-derived-mode.
4417 (text-mode-map): Remove the \t binding.
4418 (text-mode): Simplify now that the default is more favorable.
4419
4420 2001-10-29 Stefan Monnier <monnier@cs.yale.edu>
4421
4422 * emacs-lisp/find-func.el (find-function-search-for-symbol):
4423 If the regexp doesn't match, use a looser one.
4424 (find-variable-noselect): Add `file' argument.
4425
4426 * pcvs.el (cvs-mode-commit-hook): New hook.
4427 (cvs-mode-commit): Run it.
4428
4429 * log-edit.el (log-edit): Run hook after `log-edit-files'.
4430
4431 * emacs-lisp/edebug.el (delay-mode-hooks): Add edebug-spec.
4432 (edebug-instrument-function): Use `find-function-noselect'.
4433
4434 2001-10-29 Richard M. Stallman <rms@gnu.org>
4435
4436 * term.el (term-if-emacs19): Macro deleted.
4437 Callers changed to use progn instead.
4438
4439 * frame.el (blink-cursor-mode): Doc fix.
4440
4441 * files.el (find-backup-file-name): Use make-backup-file-name.
4442
4443 * emacs-lisp/edebug.el (edebug-window-live-p): Always alias to
4444 window-live-p.
4445 (edebug-set-conditional-breakpoint): Unconditionally use
4446 the former Emacs >=19 definition.
4447 (edebug-mark): Define unconditionally.
4448 (edebug-eval-expression): Always call read-from-minibuffer
4449 and specify history list.
4450 (edebug-lemacs-specific): Override emacs-mark, edebug-window-live-p,
4451 edebug-set-conditional-breakpoint.
4452 (edebug-emacs-version-specific): Function deleted;
4453 do the job at top level.
4454 (edebug-emacs-19-specific): Function deleted, this is the default.
4455
4456 2001-10-29 Sam Steingold <sds@gnu.org>
4457
4458 * w32-fns.el (convert-standard-filename): Handle cygwin-specific
4459 "/cygdrive/LETTER/" pathnames.
4460
4461 2001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
4462
4463 * faces.el (invert-face): Check for 'unspecified, not for nil,
4464 when testing whether face colors are not specified.
4465 From David.Kastrup@t-online.de (David Kastrup).
4466 (read-face-name): Doc fix.
4467 (make-face-bold, make-face-unbold, make-face-italic)
4468 (make-face-unitalic, make-face-bold-italic, invert-face):
4469 Remove trailing blank from the prompt passed to read-face-name.
4470
4471 2001-10-29 Sam Steingold <sds@gnu.org>
4472
4473 * emacs-lisp/bytecomp.el (byte-recompile-directory):
4474 Report numbers of files skipped and failed too.
4475 (byte-compile-file): Return 'no-byte-compile for skipped files.
4476
4477 2001-10-29 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4478
4479 * log-view.el (log-view-mode-map): Bind `M-n' and `M-p', not `M n'
4480 and `M p'.
4481
4482 2001-10-29 Gerd Moellmann <gerd@gnu.org>
4483
4484 * international/iso-acc.el (iso-accents-compose): Push SECOND-CHAR
4485 as is on unread-command-events instead of `(SECOND-CHAR)'.
4486
4487 2001-10-29 Andre Spiegel <spiegel@gnu.org>
4488
4489 * vc.el: Mention vc-*-switches in backend API documentation.
4490 (vc-annotate): Adapt doc string to recent change.
4491
4492 2001-10-29 Gerd Moellmann <gerd@gnu.org>
4493
4494 * enriched.el (enriched-face-ans): Handle face attributes
4495 of the form `(FACE1 FACE2 ...)'.
4496
4497 * dired-x.el (dired-omit-startup): Show ``Omit'' only in Dired buffers.
4498
4499 2001-10-29 Alex Schroeder <kensanata@yahoo.com>
4500
4501 * progmodes/sql.el (sql-mysql): Doc change by RMS.
4502
4503 * progmodes/sql.el (sql-db2): Doc change.
4504 (sql-help): Doc change by Christian Egli <christian.egli@stest.ch>.
4505 (sql-mysql): Doc change by Christian Egli <christian.egli@stest.ch>.
4506
4507 2001-10-29 Gerd Moellmann <gerd@gnu.org>
4508
4509 * env.el (substitute-env-vars): Don't quote argument to `rx';
4510 it's a macro.
4511
4512 2001-10-28 Per Abrahamsen <abraham@dina.kvl.dk>
4513
4514 * cus-start.el (recursive-load-depth-limit): Added.
4515
4516 2001-10-28 Richard M. Stallman <rms@gnu.org>
4517
4518 * textmodes/ispell.el (version18p, version20p): Vars deleted.
4519 All uses removed--assume Emacs version is >= 20.
4520
4521 * mail/supercite.el (sc-emacs-features): Test for "Emacs 19"
4522 by really checking that it is not version 18.
4523
4524 * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
4525
4526 2001-10-28 Miles Bader <miles@gnu.org>
4527
4528 * faces.el (face-attribute): Add INHERIT argument, consider face
4529 inheritance if it's non-nil.
4530 (face-attribute-merged-with): New function.
4531 (face-attribute-specified-or): New macro.
4532 (face-foreground, face-background, face-stipple): Add INHERIT
4533 argument. Use `face-attribute-specified-or'.
4534
4535 2001-10-28 Stefan Monnier <monnier@cs.yale.edu>
4536
4537 * font-lock.el: Require `syntax'.
4538 (font-lock-defaults-alist): Don't define keywords for lisp languages.
4539 Use `c-font-lock-syntactic-face-function' for c languages.
4540 (font-lock-mode): Don't unset vars when turning the mode off.
4541 (font-lock-default-fontify-buffer): Don't unset vars at the end.
4542 (font-lock-extra-managed-props): New var.
4543 (font-lock-default-unfontify-region): Use it.
4544 (font-lock-apply-syntactic-highlight): Flush the syntax cache.
4545 Don't eval the value when there's no match.
4546 (font-lock-ppss-stats): New var.
4547 (font-lock-ppss): New fun.
4548 (font-lock-fontify-syntactically-region): Use it and syntax.ppss.
4549 (font-lock-apply-highlight): Allow `highlight' to set several props.
4550 (font-lock-set-defaults): Use dolist.
4551 (font-lock-unset-defaults): Remove.
4552 (font-lock-match-c-style-declaration-item-and-skip-to-next):
4553 Try to recognize prototypes using `foo P_ ((args))'.
4554 ({c,c++,java,objc}-font-lock-keywords-{1,2,3}): Don't setq a defconst.
4555 (c-font-lock-keywords-2): Fix last change to still use Anders' trick.
4556 (c-font-lock-syntactic-face-function): New function.
4557 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
4558 (c++-keywords): Use a more sophisticated regexp to handle
4559 shallowly nested templates.
4560
4561 2001-10-27 Stefan Monnier <monnier@cs.yale.edu>
4562
4563 * textmodes/sgml-mode.el (sgml-empty-tags): New var.
4564 (sgml-tag): Use it. Cleanup with `cond'.
4565 (sgml-tags-invisible): Make sgml-tags-invisible buffer-local.
4566 Mark the overlays and only delete those that are marked.
4567 (sgml-skip-close-p): Remove.
4568 (sgml-value): Replace sgml-skip-close-p with its definition.
4569 (html-tag-alist): Use sgml-xml a bit more.
4570 (html-mode): Set sgml-empty-tags.
4571
4572 * textmodes/texnfo-upd.el: Use `when', `dolist', `push', ...
4573 (texinfo-update-node, texinfo-sequential-node-update):
4574 Don't bind the obsolete `auto-fill-hook'.
4575 (texinfo-multi-file-included-list,texinfo-multi-file-master-menu-list):
4576 Use `set-buffer' rather than `switch-to-buffer'.
4577 (texinfo-multi-file-update): Use "Top" rather than `up-node-name'.
4578 Use `set-buffer' rather than `switch-to-buffer'.
4579
4580 * mail/sendmail.el (mail-mode-syntax-table): Let it inherit from
4581 text-mode-syntax-table.
4582 (mail-mode): Use define-derived-mode.
4583 Fix ordering of alternatives in adaptive-fill-regexp.
4584 (mail-mode-map): Don't rely on keymap's internal representation.
4585
4586 2001-10-27 Sam Steingold <sds@gnu.org>
4587
4588 * textmodes/sgml-mode.el (sgml-xml): Renamed from `html-xhtml'.
4589 (sgml-xml-guess): Extracted from `html-mode' and generalized.
4590 (sgml-mode-common): Call it.
4591 (sgml-mode, html-mode): Set `mode-name' based on `sgml-xml'.
4592 (sgml-tag, sgml-skip-close-p, html-tag-alist, html-line)
4593 (html-horizontal-rule, html-image, html-ordered-list):
4594 (html-unordered-list, html-list-item, html-paragraph):
4595 (html-checkboxes, html-radio-buttons): Use `sgml-xml' instead of
4596 `html-xhtml'.
4597
4598 2001-10-26 Masayuki Ataka <ataka@milk.freemail.ne.jp>
4599
4600 * textmodes/texinfmt.el (texinfo-format-ifnotinfo): New function.
4601 (ifnothtml): New alias.
4602
4603 2001-10-27 Stefan Monnier <monnier@cs.yale.edu>
4604
4605 * textmodes/text-mode.el (text-mode): Use define-derived-mode.
4606 (toggle-text-mode-auto-fill): Use derived-mode-p.
4607
4608 2001-10-27 Gerd Moellmann <gerd.moellmann@t-online.de>
4609
4610 * net/ange-ftp.el (ange-ftp-send-cmd): Call fix-name-func for
4611 `mdtm'. From "Forrest Cahoon" <forrest.cahoon@merrillcorp.com>.
4612
4613 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
4614
4615 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
4616 Add make-obsolete cookies, to follow faces.el.
4617
4618 These changes avoid warnings from the byte compiler in faces.el:
4619
4620 * faces.el (internal-get-face): Use facep instead of the obsolete
4621 internal-find-face.
4622 (internal-frob-font-weight, internal-frob-font-slant):
4623 New defaliases for obsolete functions.
4624 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
4625 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
4626 (x-make-font-bold-italic): Use internal-frob-font-weight and
4627 internal-frob-font-slant aliases instead of the obsolete
4628 x-frob-... functions.
4629
4630 2001-10-26 Sam Steingold <sds@gnu.org>
4631
4632 * textmodes/sgml-mode.el (html-mode): Set `html-xhtml' from the
4633 DOCTYPE; set `mode-name' based on it.
4634 (html-tag-alist): Use `html-xhtml' for "li", "dt" and "dd".
4635 (sgml-tag): Close empty tags in XHTML.
4636
4637 2001-10-26 Jason Rumney <jasonr@gnu.org>
4638
4639 * w32-fns.el: (w32-charset-info-alist): Use ANSI for iso10646-1
4640 when UNICODE is not defined.
4641
4642 2001-10-26 Sam Steingold <sds@gnu.org>
4643
4644 * font-lock.el (c-font-lock-keywords-2): Do not require labels to
4645 be alone on the line.
4646
4647 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
4648
4649 * button.el (button): Special face definition for MS-DOS terminals.
4650
4651 2001-10-26 Sam Steingold <sds@gnu.org>
4652
4653 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
4654 Protect the /= test by checking that the args are non-nil.
4655 (sh-font-lock-close-heredoc): Check eof for being non-nil.
4656
4657 2001-10-26 Tomas Abrahamsson <tab@lysator.liu.se>
4658
4659 * textmodes/artist.el (artist-version): 1.2.4.
4660 (artist-butlast-fn): New variable.
4661 (artist-butlast): New function.
4662 (artist-ellipse-mirror-quadrant): Use it.
4663 (artist-mouse-draw-poly): Use nil for `point-list'.
4664 (artist-mouse-draw-poly): Check for point-list being nil.
4665
4666 2001-10-26 Peter Kleiweg <kleiweg@let.rug.nl>
4667
4668 * progmodes/ps-mode.el (ps-mode-print-function): Remove quote for
4669 lambda expression.
4670 (ps-mode-menu-main): Submenu with options on/off was replaced with
4671 a toggle button.
4672 (ps-mode, ps-run-mode): Define with `define-derived-mode'
4673 (ps-mode): Autoload cookie added on same line as comment
4674 (ps-mode-tabkey, ps-mode-backward-delete-char):
4675 (ps-mode-r-balance): Replace `delete-horizontal-space' and
4676 `indent-to' with `indent-line-to'
4677 (ps-mode-print-buffer, ps-mode-print-region): Use `funcall'
4678 instead of `eval'.
4679 (ps-mode-print-region): Use `with-temp-buffer'.
4680 (ps-run-start): Use of `mapconcat'. Use `apply' instead of `eval'.
4681 (numerous places): Add back-tick and tick around names in
4682 docstrings, fix punctuation in docstrings, remove trailing spaces.
4683
4684 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
4685
4686 * textmodes/sgml-mode.el (sgml-font-lock-keywords-1): Ignore comments.
4687 (sgml-font-lock-keywords-2): Use `eval'. Moved from sgml-mode-common.
4688 (sgml-font-lock-syntactic-keywords): New var.
4689 (sgml-mode-common): Drop the two args.
4690 Don't make buffer-local variables that aren't used.
4691 Don't set sgml-font-lock-keywords-2 now that it uses `eval instead.
4692 Don't set `before-string' props from sgml-display-text.
4693 (sgml-mode): Use define-derived-mode.
4694 (sgml-tags-invisible): Use sgml-display-text.
4695 (sgml-quote): New command.
4696 (html-tag-alist): Add args for `span'.
4697 (html-mode): Use define-derived-mode.
4698 Set sgml-display-text and sgml-tag-face-alist.
4699
4700 2001-10-25 Sam Steingold <sds@gnu.org>
4701
4702 * add-log.el (add-log-always-start-new-record): New user option.
4703 (add-change-log-entry): Use it.
4704
4705 2001-10-25 Richard M. Stallman <rms@gnu.org>
4706
4707 * progmodes/etags.el (tags-query-replace): Make tags-loop-scan
4708 bind case-fold-search if FROM is not all lower case.
4709
4710 2001-10-25 Gerd Moellmann <gerd@gnu.org>
4711
4712 * startup.el (normal-top-level): Check for frame-initial-frame
4713 only if it's really used.
4714
4715 * mail/mh-utils.el (mh-recenter): Call recenter with arg `(4)'.
4716
4717 * progmodes/compile.el (compilation-parse-errors-filename-function):
4718 New variable.
4719 (compilation-parse-errors): Use it.
4720
4721 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
4722
4723 * emacs-lisp/checkdoc.el (checkdoc-eval-defun): Call eval-defun
4724 interactively so that C-u M-C-x still does edebug.
4725 (checkdoc-sentencespace-region-engine): Don't force a double-space
4726 after `.' if it doesn't look like an end-of-sentence.
4727 (debug-ignored-errors): Add `disambiguate ...'.
4728
4729 2001-10-24 Stefan Monnier <monnier@cs.yale.edu>
4730
4731 * textmodes/texinfo.el (texinfo-environments)
4732 (texinfo-environment-regexp): Hoist.
4733 (texinfo-font-lock-keywords): Use `italic' and `bold' faces.
4734 Only highlight the menu name in menu items.
4735 Setup `@foo ... @end foo' as text clones.
4736 (texinfo-clone-environment): New function.
4737 (texinfo-mode): Simplify auto-fill-inhibit-regexp.
4738 (texinfo-insert-block): Simplify.
4739 (texinfo-insert-quote): Insert a plain " if preceded by \ or if
4740 the command is repeated.
4741 (texinfo-last-unended-begin, texinfo-next-unmatched-end): New funs.
4742 (texinfo-insert-@end): Simplify.
4743
4744 * textmodes/texnfo-upd.el (texinfo-section-types-regexp)
4745 (texinfo-section-level-regexp, texinfo-subsection-level-regexp)
4746 (texinfo-subsubsection-level-regexp)
4747 (texinfo-update-menu-same-level-regexps)
4748 (texinfo-update-menu-higher-regexps)
4749 (texinfo-update-menu-lower-regexps): Hoist to eliminate warnings.
4750
4751 * derived.el (define-derived-mode): Use {delay,run}-mode-hooks.
4752 (derived-mode-p): Autoload.
4753
4754 * subr.el (delay-mode-hooks, delayed-mode-hooks, run-mode-hooks):
4755 New vars and functions.
4756 (text-clone-maintain, text-clone-create): New functions.
4757
4758 2001-10-25 Miles Bader <miles@gnu.org>
4759
4760 * facemenu.el (facemenu-add-new-face): Fix variable names.
4761
4762 2001-10-24 Richard M. Stallman <rms@gnu.org>
4763
4764 * facemenu.el (facemenu-unlisted-faces): Improve doc strings
4765 of t and nil values.
4766 (facemenu-set-face): Handle START and END interactively.
4767 (facemenu-set-foreground): Don't use a face; specify color directly.
4768 (facemenu-set-background): Likewise.
4769 (facemenu-set-face-from-menu): Doc fix.
4770 (facemenu-active-faces): Use face-attribute-vector
4771 to handle bare attributes not in faces.
4772 (facemenu-get-face): Don't handle face names fg:... and bg:...
4773 specially.
4774 (facemenu-add-new-face): New argument MENU.
4775 New way to handle adding colors to the color menus.
4776
4777 * env.el (substitute-env-vars): Quote the arg to rx.
4778
4779 2001-10-24 Sam Steingold <sds@gnu.org>
4780
4781 * mouse.el (mouse-buffer-menu-mode-groups): Added "Version
4782 Control" and "SGML" groups.
4783
4784 2001-10-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4785
4786 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
4787 Better handling of C++ template args to avoid confusion with `<'
4788 and `>' used as operators in member init expressions.
4789
4790 2001-10-24 Gerd Moellmann <gerd@gnu.org>
4791
4792 * replace.el (perform-replace): Move START and END parameters
4793 to the end of the argument list and make them optional.
4794
4795 * progmodes/ebrowse.el, progmodes/etags.el: Adapt to change in
4796 perform-replace.
4797
4798 * international/fontset.el (x-must-resolve-font-name): New function.
4799 (x-complement-fontset-spec): Use it.
4800
4801 2001-10-23 Stefan Monnier <monnier@cs.yale.edu>
4802
4803 * uniquify.el (uniquify-get-proposed-name): Fix (.. "usr" "/usr" 0).
4804
4805 * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
4806 Turn caadr into caar of cdr.
4807
4808 2001-10-23 Gerd Moellmann <gerd@gnu.org>
4809
4810 * info.el (Info-fontify-node): Bind down-mouse-{1,2} instead
4811 of mouse-{1,2} since dragging is on the down event.
4812
4813 * play/doctor.el (make-doctor-variables): Remove a '($ please)'.
4814
4815 * mail/mh-utils.el (mh-recenter): Call `recenter' with arg t
4816 if ARG is nil.
4817
4818 * desktop.el (desktop-last-buffer): New variable.
4819 (desktop-create-buffer): Set it.
4820 (desktop-read): Bind it and switch to that buffer.
4821
4822 2001-10-22 Gerd Moellmann <gerd@gnu.org>
4823
4824 * progmodes/compile.el (compilation-set-window-height):
4825 Select old window only if it's still live.
4826
4827 2001-10-22 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4828
4829 * help-mode.el (help-buffer): Remove debugging code.
4830 From Stefan Monnier <monnier@cs.yale.edu>.
4831
4832 2001-10-22 Eli Zaretskii <eliz@is.elta.co.il>
4833
4834 * files.el (file-name-sans-extension, file-name-extension):
4835 Don't count the leading dots in file names as signaling an extension.
4836
4837 2001-10-22 Andre Spiegel <spiegel@gnu.org>
4838
4839 * vc.el (vc-diff-switches): Doc rewritten.
4840
4841 2001-10-22 Eli Zaretskii <eliz@is.elta.co.il>
4842
4843 * tooltip.el (tooltip-set-param): Doc fix.
4844
4845 * textmodes/sgml-mode.el (sgml-mode-map): Bind 8-bit codes above
4846 127 to sgml-maybe-name-self.
4847 (sgml-name-8bit-mode): Doc fix.
4848 (sgml-char-names-table): New variable.
4849 (sgml-name-char): Support non-ASCII and mule-unicode-*
4850 characters. Doc fix.
4851 (sgml-maybe-name-self): Convert unibyte characters to multibyte.
4852
4853 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Mention in the
4854 doc string the effect of `left' and `top' parameters in
4855 tooltip-frame-parameters, the default values, and the units.
4856 (tooltip-frame-parameters): Mention `top' and `left' in the doc string.
4857 (tooltip-show): Mention in the doc string the `top' and `left'
4858 parameters in tooltip-frame-parameters, and x-max-tooltip-size.
4859
4860 2001-10-22 Andre Spiegel <spiegel@gnu.org>
4861
4862 Add autoscaling support for vc-annotate.
4863 From J.D. Smith <jdsmith@alum.mit.edu>.
4864
4865 * vc.el (vc-annotate-display-default): Accept colormap scaling
4866 ratio (now deprecated).
4867 (vc-annotate-display-autoscale): Added.
4868 (vc-annotate-add-menu): New autoscaling menu options "Span to
4869 Oldest" and "Span Oldest->Newest". Easymenu support added for
4870 toggle menus driven by customize variable `vc-annotate-display-mode'.
4871 (vc-annotate-display-select): Added.
4872 (vc-annotate): Changed temp-buffer-show-function to
4873 `vc-annotate-display-select'.
4874 (vc-annotate-display): Removed arguments BUFFER and BACKEND.
4875 Added argument OFFSET. Instead of backend function, calls now
4876 generic `vc-annotate-difference'.
4877 (vc-annotate-difference): Added as generic function instead of
4878 backend-specific function. No longer takes argument POINT, but
4879 instead accepts a time OFFSET.
4880 (vc-default-annotate-current-time): Added.
4881
4882 * vc-cvs.el (vc-cvs-annotate-difference): Removed to generic
4883 version in vc.el, with
4884 (vc-cvs-annotate-current-time): Added, as override of default.
4885 (vc-cvs-annotate-time): Added. Taken mostly from the (now removed)
4886 `vc-cvs-annotate-difference'.
4887
4888 2001-10-22 Gerd Moellmann <gerd@gnu.org>
4889
4890 * saveplace.el (save-place): Require `saveplace'.
4891
4892 * progmodes/cwarn.el (cwarn-font-lock-feature-keywords-alist):
4893 Use `sexp' for :value-type instead of `face'.
4894
4895 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
4896
4897 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Fix the
4898 regexps due to 5-digit message IDs.
4899
4900 2001-10-21 Jason Rumney <jasonr@gnu.org>
4901
4902 * term/w32-win.el (redisplay-dont-pause): Don't set.
4903
4904 2001-10-21 Miles Bader <miles@gnu.org>
4905
4906 * help-funs.el (help-manyarg-func-alist): Variable removed.
4907
4908 2001-10-21 Miles Bader <miles@gnu.org>
4909
4910 * help-funs.el (help-manyarg-func-alist): Remove entries for
4911 `insert', `insert-and-inherit', `insert-before-markers',
4912 `insert-before-markers-and-inherit', `message', `message-box',
4913 `message-or-box', `propertize', `format', `encode-time', `append',
4914 `concat', `vconcat', `nconc', `widget-apply', `make-hash-table',
4915 `insert-string', `ml-if', `ml-provide-prefix-argument', and
4916 `ml-prefix-argument-loop'.
4917
4918 2001-10-21 Andre Spiegel <spiegel@gnu.org>
4919
4920 * vc.el (vc-diff-internal, vc-coding-system-for-diff)
4921 (vc-default-diff-tree): New functions.
4922 (vc-version-diff): Use them. As a result, coding systems are now
4923 set up properly for all sorts of diffs, and tree diffs can now
4924 also be done locally.
4925 (vc-diff): With a prefix argument, don't require that it's called
4926 from a buffer under version control.
4927 (diff-switches): Remove duplicate definition.
4928
4929 * vc-cvs.el (vc-cvs-diff-tree): New function.
4930
4931 2001-10-21 Miles Bader <miles@gnu.org>
4932
4933 * help-funs.el (help-manyarg-func-alist): Remove entries for
4934 `list', `vector', `make-byte-code', `call-process',
4935 `call-process-region', `string', `+', `-', `*', `/', `max', `min',
4936 `logand', `logior', and `logxor'.
4937
4938 * wid-edit.el (checkbox): Swap bg/fg colors in image, and invert
4939 image bits to compensate. Use `make-string' instead of
4940 `make-bool-vector' (XBM apparently wants byte-aligned rows).
4941
4942 2001-10-20 Kim F. Storm <storm@cua.dk>
4943
4944 * simple.el (kill-ring-save): Don't show extent of copied region
4945 if using transient-mark-mode and region is fully visible.
4946
4947 2001-10-20 Gerd Moellmann <gerd@gnu.org>
4948
4949 * (Version 21.1 released.)
4950
4951 2001-10-19 Eli Zaretskii <eliz@is.elta.co.il>
4952
4953 * files.el (auto-mode-alist): Associate .indent.pro with
4954 Fundamental mode. Suggested by Samuel Padgett <spadgett1@nc.rr.com>.
4955
4956 2001-10-18 Sam Steingold <sds@gnu.org>
4957
4958 Put the *Compile-Log* buffer in `compilation-mode'.
4959 * emacs-lisp/bytecomp.el (byte-goto-log-buffer): New function.
4960 (byte-compile-log-1, byte-compile-log-file)
4961 (displaying-byte-compile-warnings): Use it
4962
4963 2001-10-18 Stefan Monnier <monnier@cs.yale.edu>
4964
4965 * mail/smtpmail.el (smtpmail-via-smtp): Use mail-envelope-from if set.
4966
4967 * xml.el (xml-parse-tag): Use eq on char-after's return value.
4968
4969 2001-10-18 Gerd Moellmann <gerd@gnu.org>
4970
4971 * isearch.el (isearch-mode-map): Bind `mouse-movement' to nil.
4972
4973 * obsolete/hilit19.el (hilit-lookup-face-create):
4974 Call set-face-font only if display-graphic-p.
4975 (toplevel): Remove references to window-system.
4976
4977 2001-10-18 Miles Bader <miles@gnu.org>
4978
4979 * simple.el (what-line): Avoid problems with field properties.
4980
4981 2001-10-17 Eli Zaretskii <eliz@is.elta.co.il>
4982
4983 * wid-edit.el (widget-field-face, widget-single-line-field-face):
4984 Define special colors for a tty.
4985
4986 2001-10-17 Francesco Potorti` <pot@gnu.org>
4987
4988 * comint.el (comint-password-prompt-regexp): Make it less
4989 restrictive, letting comint recognise OpenSSH2 passphrase prompts.
4990
4991 2001-10-17 John Wiegley <johnw@gnu.org>
4992
4993 * eshell/em-unix.el (eshell/cat): Do a quick test if something is
4994 a regular file, before checking if it is a directory or symlink.
4995 This avoids a call to eshell-file-attributes, which can be
4996 expensive in some situations.
4997
4998 * eshell/em-ls.el (eshell-ls-dired-initial-args): Added an extra
4999 customization variable, to differentiate ls-in-dired from regular
5000 uses of ls.
5001
5002 2001-10-17 Miles Bader <miles@gnu.org>
5003
5004 * custom.el (defface): Mention `:inherit' in doc-string.
5005
5006 2001-10-16 Eli Zaretskii <eliz@is.elta.co.il>
5007
5008 * paren.el: Update the Commentary with installation instructions.
5009
5010 2001-10-15 Dave Love <fx@gnu.org>
5011
5012 * international/mule.el (set-auto-coding): Fix regexps for local
5013 variables section not to eat newlines.
5014
5015 2001-10-15 Miles Bader <miles@gnu.org>
5016
5017 * simple.el (display-message-or-buffer): Pass the correct buffer
5018 to `display-buffer'.
5019
5020 2001-10-14 Stefan Monnier <monnier@cs.yale.edu>
5021
5022 * progmodes/executable.el (executable-binary-suffixes): Make varalias.
5023 (executable-find): Use exec-suffixes.
5024 (executable-set-magic): Don't use make-local-hook.
5025
5026 * bindings.el (exec-suffixes): Initialize to a system-dependent value.
5027
5028 2001-10-14 Eli Zaretskii <eliz@is.elta.co.il>
5029
5030 * bindings.el (completion-ignored-extensions) [ms-dos, windows-nt]:
5031 Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386.
5032 Add .so to the Unix and GNU branch.
5033
5034 * international/latin-1.el:
5035 * international/latin-2.el:
5036 * international/latin-3.el:
5037 * international/latin-4.el:
5038 * international/latin-5.el:
5039 * international/latin-8.el:
5040 * international/latin-9.el: Add no-byte-compile: t, since
5041 Makefile.in instructs make-docfile to look at .el files.
5042
5043 2001-10-14 Miles Bader <miles@gnu.org>
5044
5045 * button.el (define-button-type): Allow supertype property to be
5046 specified with a keyword `:supertype' too.
5047 (button-put, make-text-button): Allow button type property to be
5048 specified using the keyword `:type' too.
5049 (button-type): New function.
5050 (button): Add `button-category-symbol' property.
5051
5052 2001-10-13 Stefan Monnier <monnier@cs.yale.edu>
5053
5054 * bindings.el (esc-map): Revert `j' and `C-j' bindings to
5055 indent-new-comment-line from comment-indent-new-line.
5056
5057 * textmodes/refill.el (refill-mode):
5058 Bind DEL to backward-delete-char-untabify.
5059 Set backward-delete-char-untabify-method to `hungry'.
5060
5061 * textmodes/bib-mode.el (bib-mode):
5062 * play/gomoku.el (gomoku-mode):
5063 * textmodes/page-ext.el (pages-directory-mode):
5064 * textmodes/scribe.el (scribe-mode): Use define-derived-mode.
5065
5066 * textmodes/two-column.el (2C-mode): Don't use make-local-hook.
5067
5068 * emacs-lisp/syntax.el (syntax-ppss): Autoload.
5069
5070 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
5071 Handle here-docs differently.
5072 (sh-font-lock-heredoc): Remove.
5073 (sh-here-doc-open-re, sh-here-doc-markers, sh-here-doc-re): New vars.
5074 (sh-font-lock-here-doc, sh-font-lock-close-heredoc)
5075 (sh-font-lock-open-heredoc): New functions.
5076 (sh-mode): Don't copy sh-font-lock-syntactic-keywords any more.
5077 (sh-font-lock-keywords-1): Use regexp-opt.
5078 (sh-in-comment-or-string): Use syntax-ppss.
5079 (sh-case, sh-for, sh-indexed-loop, sh-function, sh-if, sh-repeat)
5080 (sh-select, sh-tmp-file): Add explicit terminating \n.
5081
5082 * net/ange-ftp.el (ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
5083 Use with-current-buffer.
5084 (ange-ftp-cd): New arg `noerror' to prevent signalling an error.
5085 (ange-ftp-send-cmd): If a `cd' is used (because of a space in the
5086 filename), catch any error that occurs in `ange-ftp-cd'.
5087 If an error happened, don't bother sending `cmd' at all.
5088 Fix a parenthesis typo.
5089 (ange-ftp-write-region): Don't blindly use binary if the remote host
5090 is unix-like.
5091
5092 * play/pong.el (pong-init): Don't use make-local-hook.
5093
5094 2001-10-13 Michael Kifer <kifer@cs.sunysb.edu>
5095
5096 * viper-ex.el (ex-edit): Make checks for modified buffer/file.
5097 (viper-get-ex-address-subr): More precise addr for the $ marker
5098
5099 2001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
5100
5101 * version.el (emacs-version): Bump to 21.1.50.
5102
5103 2001-10-13 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
5104
5105 * mail/mailalias.el (mail-directory-stream): Do not double
5106 variables in the lambda-list.
5107
5108 * play/gomoku.el (gomoku-init-display): Ditto.
5109
5110 * play/landmark.el (lm-init-display): Ditto.
5111
5112 * delim-col.el (delimit-columns-rectangle-max): Ditto.
5113 (delimit-columns-rectangle-line): Ditto.
5114
5115 2001-10-12 Stefan Monnier <monnier@cs.yale.edu>
5116
5117 * newcomment.el (comment-region-internal): Don't rebind
5118 invisibility_spec now that the C routines handle it correctly.
5119
5120 * help-funs.el (locate-library): Use load-suffixes and abbrev filename.
5121
5122 * frame.el (special-display-popup-frame): Obey new specs `same-window'
5123 and `same-frame'.
5124
5125 * menu-bar.el (minibuffer-local-*map): Take inheritance into account.
5126
5127 * simple.el (minibuffer-local*-map): Remove redundant bindings.
5128
5129 * bindings.el (minibuffer-local-map): Also bind next, C-n, C-s, prior,
5130 C-p and C-r. Remove redundant bindings from inheriting maps.
5131
5132 * progmodes/cperl-mode.el: Merged in changes from v4.32.
5133 After 4.23 and: After 4.24:
5134 (cperl-contract-levels): Restore position.
5135 (cperl-beautify-level): Likewise.
5136 (cperl-beautify-regexp): Likewise.
5137 (cperl-commentify): Rudimental support for length=1 runs
5138 (cperl-find-pods-heres): Process 1-char long REx comments too /a#/x
5139 After 4.25:
5140 (cperl-commentify): Was recognizing length=2 "strings" as length=1.
5141 (imenu-example--create-perl-index): Was not enforcing
5142 syntaxification-to-the-end.
5143 (cperl-invert-if-unless): Allow `for', `foreach'.
5144 (cperl-find-pods-heres): Quote `cperl-nonoverridable-face'.
5145 Mark qw(), m()x as indentable.
5146 (cperl-init-faces): Highlight `sysopen' too.
5147 Highlight $var in `for my $var' too.
5148 (cperl-invert-if-unless): Was leaving whitespace at end.
5149 (cperl-linefeed): Was splitting $var{$foo} if point after `{'.
5150 (cperl-calculate-indent): Remove old commented out code.
5151 Support (primitive) indentation of qw(), m()x.
5152 After 4.26:
5153 (cperl-problems): Mention `fill-paragraph' on comment. \"" and
5154 q [] with intervening newlines.
5155 (cperl-autoindent-on-semi): New customization variable.
5156 (cperl-electric-semi): Use `cperl-autoindent-on-semi'.
5157 (cperl-tips): Mention how to make CPerl the default mode.
5158 (cperl-mode): Support `outline-minor-mode'. From Mark A. Hershberger.
5159 (cperl-outline-level): New function.
5160 (cperl-highlight-variables-indiscriminately): New customization var.
5161 (cperl-init-faces): Use `cperl-highlight-variables-indiscriminately'.
5162 From Sean Kamath <kamath@pogo.wv.tek.com>.
5163 (cperl-after-block-p): Support CHECK and INIT.
5164 (cperl-init-faces, cperl-short-docs): Likewise and "our".
5165 From Doug MacEachern <dougm@covalent.net>.
5166 After 4.27:
5167 (cperl-find-pods-heres): Recognize \"" as a string.
5168 Mark whitespace between q and [] as `syntax-type' => `prestring'.
5169 Allow whitespace between << and "FOO".
5170 (cperl-problems): Remove \"" and q [] with intervening newlines.
5171 Mention multiple <<EOF as unsupported.
5172 (cperl-highlight-variables-indiscriminately): Doc misprint fixed.
5173 (cperl-indent-parens-as-block): New configuration variable.
5174 (cperl-calculate-indent): Merge cases of indenting non-BLOCK groups.
5175 Use `cperl-indent-parens-as-block'.
5176 (cperl-find-pods-heres): Test for =cut without empty line instead of
5177 complaining about no =cut.
5178 (cperl-electric-pod): Change the REx for POD from "\n\n=" to "^\n=".
5179 (cperl-find-pods-heres): Likewise.
5180 (cperl-electric-pod): Change `forward-sexp' to `forward-word':
5181 POD could've been marked as comment already.
5182 (cperl-unwind-to-safe): Unwind before start of POD too.
5183 After 4.28:
5184 (cperl-forward-re): Throw an error at proper moment REx unfinished.
5185 After 4.29:
5186 (x-color-defined-p): Make an extra case to peacify the warning.
5187 Toplevel: `defvar' to peacify the warnings.
5188 (cperl-find-pods-heres): Could access `font-lock-comment-face' in -nw.
5189 No -nw-compile time warnings now.
5190 (cperl-find-tags): TAGS file had too short substring-to-search.
5191 Be less verbose in non-interactive mode
5192 (imenu-example--create-perl-index): Set index-marker after name
5193 (cperl-outline-regexp): New variable.
5194 (cperl-outline-level): Made compatible with `cperl-outline-regexp'.
5195 (cperl-mode): Made use `cperl-outline-regexp'.
5196 After 4.30:
5197 (cperl-find-pods-heres): =cut the last thing, no blank line, was error.
5198 (cperl-outline-level): Make start-of-file same level as `package'.
5199 After 4.31:
5200 (cperl-electric-pod): `head1' and `over' electric only if empty.
5201 (cperl-unreadable-ok): New variable.
5202 (cperl-find-tags): Use `cperl-unreadable-ok', do not fail
5203 on an unreadable file.
5204 (cperl-write-tags): Use `cperl-unreadable-ok', do not fail
5205 on an unreadable directory.
5206
5207 * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
5208 Consider the text between two errors as belonging to the first error.
5209 (compilation-goto-locus): Use pop-to-buffer rather than
5210 switch-to-buffer-other-frame.
5211
5212 * progmodes/awk-mode.el (awk-mode-syntax-table): / has string syntax.
5213 (awk-font-lock-syntactic-keywords): New var.
5214 (awk-mode): Use it.
5215
5216 * expand.el (expand-c-for-skeleton): Add explicit terminating \n.
5217
5218 * faces.el (describe-face): Call help-setup-xref earlier.
5219
5220 * jka-compr.el (jka-compr-load-suffixes): New var.
5221 (jka-compr-install): Add its content to load-suffixes.
5222 (jka-compr-uninstall): Remove its content from load-suffixes.
5223
5224 2001-10-12 Sam Steingold <sds@gnu.org>
5225
5226 * bindings.el (completion-ignored-extensions): CL-related
5227 extensions are platform-independent.
5228
5229 * net/ange-ftp.el (ange-ftp-copy-files-async): New function for
5230 asynchronous multiple file copying.
5231
5232 2001-10-12 Gerd Moellmann <gerd@gnu.org>
5233
5234 * emacs-lisp/bytecomp.el (byte-compile-check-lambda-list):
5235 Turn error for repeated variables into warning.
5236
5237 * emacs-lisp/bytecomp.el (byte-compile-check-lambda-list):
5238 New function checking that lambda-list consists of non-constant
5239 symbols, that &rest and &optional are followed by variable names,
5240 that &rest VAR is the last element, and that variables aren't doubled.
5241 (byte-compile-lambda): Use it.
5242
5243 2001-10-12 Eli Barzilay <eli@barzilay.org>
5244
5245 * calculator.el (calculator-eng-display): Don't call concat
5246 with an integer argument.
5247
5248 2001-10-12 Miles Bader <miles@gnu.org>
5249
5250 * help-mode.el (help-customize-face): New button-type.
5251
5252 * faces.el (list-faces-display): Fix args to `help-xref-button'.
5253 (describe-face): Fix args to `help-xref-button'.
5254 Don't switch to help-buffer around call to `help-setup-xref'.
5255 Use `help-buffer' instead of hard-wired "*Help*".
5256 Require `help-mode'.
5257
5258 2001-10-11 Stefan Monnier <monnier@cs.yale.edu>
5259
5260 * net/goto-addr.el (goto-address-mail-regexp): Allow + in username.
5261
5262 * help-mode.el (help-buffer): New function.
5263 Returns the buffer-name to use for help output.
5264 Change all the code to use it instead of hard-coding *Help*.
5265 (help-mode-map): Put back the mouse-2 binding.
5266 (help-xref-stack): Change the format and make buffer-local.
5267 (help-xref-stack-item): Make buffer-local.
5268 (help-setup-xref): Do the `push' here rather than in help-do-xref.
5269 (help-xref-interned): Display the face doc as well.
5270 (help-follow-mouse): Re-introduce.
5271 (help-xref-go-back): Adapt to the new use of help-xref-stack.
5272 (help-do-xref): Don't `push' any more.
5273 (help-follow): Also follow face names.
5274
5275 * help-funs.el (describe-function-1): Remove unused `parens' arg.
5276 Don't call help-setup-xref anymore and remove its `interactive-p' arg.
5277 Autoload and cleanup.
5278 (describe-function): Call help-setup-xref.
5279 (describe-variable): Call help-setup-xref earlier.
5280
5281 * help.el (describe-bindings-internal): New fun moved from keymap.c.
5282 (view-lossage): Call help-setup-xref correctly and earlier.
5283 (describe-bindings): Call help-setup-xref earlier.
5284 (describe-key): Call help-setup-xref. Fix call to describe-function-1.
5285 (describe-mode): Don't autoload. Call help-setup-xref earlier.
5286
5287 2001-10-11 Gerd Moellmann <gerd@gnu.org>
5288
5289 * master.el (master-mode): Use define-minor-mode instead of
5290 easy-mmode-define-minor-mode. Add autload cookie.
5291 (Commentary): Remove the line showing how to autoload master-mode,
5292 since it's always autoloaded.
5293
5294 * master.el: New file.
5295
5296 2001-10-11 Dave Love <fx@gnu.org>
5297
5298 * emacs-lisp/byte-opt.el (byte-optimize-lapcode)
5299 <byte-constref-ops>: Consider byte-constant2 and clarify the code.
5300 <const-C varset-X const-C>: Fix car/cdr typo.
5301
5302 2001-10-11 Gerd Moellmann <gerd@gnu.org>
5303
5304 * emacs-lisp/bytecomp.el (byte-compile-display-log-head-p):
5305 New function extracted from byte-compile-log-1.
5306 (byte-compile-log-1): Change output to be more in line with
5307 the output of other GNU tools.
5308 (byte-compile-warn): Emit `warning' instead of `**' for warnings.
5309 (byte-compile-report-error): Downcase error message.
5310 Use `error' instead of `!!' for error messages.
5311 (byte-compile-print-syms): Treat non-interactive case specially.
5312 (displaying-byte-compile-warnings): Use backquote.
5313 (byte-compile-from-buffer): Bind byte-compile-last-line.
5314 (batch-byte-compile): Remove `Done' message.
5315
5316 2001-10-11 Stefan Monnier <monnier@cs.yale.edu>
5317
5318 * emacs-lisp/copyright.el (copyright): Add final \n.
5319
5320 2001-10-11 Miles Bader <miles@gnu.org>
5321
5322 * diff.el (diff): Display default values in prompts as
5323 `(default ...)', not `(...)'.
5324
5325 * info.el (Info-follow-reference): Likewise.
5326
5327 2001-10-10 Stefan Monnier <monnier@cs.yale.edu>
5328
5329 * emacs-lisp/autoload.el (doc-string-elt): Remove.
5330
5331 * newcomment.el (comment-indent): Be a little more robust in case
5332 comment-indent-function does funny things.
5333 (comment-normalize-vars): Autoload.
5334 (comment-region-internal): Fiddle with the visibility spec.
5335 (comment-valid-prefix): New function.
5336 (comment-indent-new-line): Use it. Ignore adaptive-fill-prefixes
5337 that would turn comment-text into non-comment-text.
5338
5339 * emacs-lisp/syntax.el: New file.
5340
5341 * progmodes/tcl.el: Change maintainer to FSF and remove loads of
5342 compatibility cruft.
5343 (tcl-using-emacs-19, tcl-using-emacs-19-23, tcl-using-xemacs-19)
5344 (tcl-version, tcl-maintainer, tcl-use-hairy-comment-detector): Remove.
5345 (tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
5346 tcl-end-of-defun, tcl-mark-defun, tcl-indent-for-comment,
5347 tcl-submit-bug-report.
5348 (tcl-mode-syntax-table): Leave \f alone.
5349 (inferior-tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
5350 tcl-end-of-defun, tcl-submit-bug-report.
5351 (tcl-xemacs-menu): Fix up and pass it directly to easymenu.
5352 (tcl-add-emacs-menu): Remove.
5353 (tcl-fill-mode-map, tcl-fill-inferior-map): Moved into the defvar.
5354 (tcl-keyword-list): Add `chain'.
5355 (tcl-font-lock-syntactic-keywords): New variable.
5356 (tcl-pps-has-arg-6): Remove.
5357 (tcl-internal-beginning-of-defun, tcl-internal-end-of-defun)
5358 (tcl-internal-mark-defun): Remove.
5359 (tcl-set-proc-regexp, tcl-set-font-lock-keywords): Use regexp-opt.
5360 (tcl-mode): Use define-derived-mode. Simplify.
5361 Set comment-indent-function.
5362 (tcl-indent-command): Use line-beginning-position and comment-indent.
5363 (tcl-calculate-indent): Renamed from calculate-tcl-indent.
5364 (tcl-indent-line): Use tcl-calculate-indent.
5365 (tcl-indent-exp): Renamed from indent-tcl-exp. Use new names.
5366 (tcl-add-log-defun): Renamed from add-log-tcl-defun. Use match-string.
5367 (tcl-filter): Use with-current-buffer, simplify.
5368 (inferior-tcl-mode): Use define-derived-mode.
5369 (tcl-hairy-in-comment): Renamed tcl-in-comment.
5370 (tcl-simple-in-comment, tcl-in-comment): Removed.
5371 (tcl-files-alist): New function.
5372 (tcl-help-snarf-commands): Use it and return the result directly
5373 rather than through a global variable.
5374 (tcl-reread-help-files): Fix up the call to tcl-help-snarf-commands.
5375 (tcl-help-on-word): Provide the default value to completing-read.
5376 (tcl-hilit): Remove.
5377 (tcl-hashify-buffer, tcl-popup-menu): Simplify.
5378 (tcl-comment-indent): New function.
5379 (tcl-submit-bug-report): Remove.
5380 (tcl-uncomment-region, tcl-indent-for-comment, add-log-tcl-defun)
5381 (indent-tcl-exp, calculate-tcl-indent, tcl-beginning-of-defun)
5382 (tcl-end-of-defun, tcl-mark-defun, tcl-mark): Redefine as aliases.
5383
5384 2001-10-10 Miles Bader <miles@gnu.org>
5385
5386 * info.el (Info-insert-dir): Don't call `Info-fontify-menu-headers'.
5387 (Info-fontify-node): Don't fontify the node if it's already been done.
5388
5389 2001-10-10 Gerd Moellmann <gerd@gnu.org>
5390
5391 * international/iso-transl.el (iso-transl-e-caret)
5392 (iso-transl-i-caret, iso-transl-o-caret, iso-transl-u-caret):
5393 Fix duplicates. From Dave Love <d.love@dl.ac.uk>.
5394
5395 * simple.el (end-of-buffer): Fix code scrolling specially
5396 for the buffer end.
5397
5398 * startup.el (command-line-1): Bind tab-width to 8.
5399
5400 2001-10-10 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
5401
5402 * emulation/tpu-edt.el: Use defalias instead of fset for
5403 user-visible commands. From Rob Riepel
5404 <riepel@Networking.Stanford.EDU>.
5405
5406 2001-10-09 Gerd Moellmann <gerd@gnu.org>
5407
5408 * ruler-mode.el: New file.
5409
5410 2001-10-09 Miles Bader <miles@gnu.org>
5411
5412 * apropos.el (button): New require.
5413
5414 * help-funs.el: New file, contents mostly from `help.el'.
5415 (describe-variable): Use `condition-case' instead of `ignore-errors'.
5416
5417 * help-mode.el: New file, contents mostly from `help.el'.
5418
5419 * help.el: Don't require `view' when compiling.
5420 (help-with-tutorial, describe-function, describe-function-1)
5421 (variable-at-point, describe-variable, locate-library):
5422 Functions moved into `help-funs.el'.
5423 (help-manyarg-func-alist): Variable moved into `help-funs.el'.
5424 (help-mode, help-mode-setup, help-mode-finish, help-button-action)
5425 (help-setup-xref, help-xref-following, help-make-xrefs)
5426 (help-xref-button, help-insert-xref-button, help-xref-interned)
5427 (help-xref-go-back, help-go-back, help-do-xref, help-follow)
5428 (help-xref-on-pp): Functions moved into `help-mode.el'
5429 (help-mode-map, help-xref-stack, help-xref-stack-item)
5430 (help-highlight-p, help-highlight-face, help-back-label)
5431 (help-xref-symbol-regexp, help-xref-mule-regexp)
5432 (help-xref-info-regexp): Variables moved into `help-mode.el'.
5433 (help-symbol, help-back, help-info, help-customize-variable)
5434 (help-function-def, help-variable-def):
5435 Button-types moved into `help-mode.el'.
5436 (load-symbol-file-load-history, symbol-file):
5437 Functions moved into `subr.el'.
5438 (symbol-file-load-history-loaded): Variable moved into `subr.el'.
5439 (view-lossage): Call `help-setup-xref' instead of doing it manually.
5440
5441 * subr.el (symbol-file-load-history-loaded)
5442 (load-symbol-file-load-history, symbol-file): Moved from `help.el'.
5443
5444 * loadup.el ("button"): Load removed.
5445
5446 * button.el (define-button-type): Respect any `supertype' property.
5447 (button-type-subtype-p, button-has-type-p): New functions.
5448
5449 * rfn-eshadow.el (rfn-eshadow-regexp): Deal correctly with escaped
5450 dollar-signs.
5451
5452 * comint.el (comint-insert-previous-argument): New function.
5453 (comint-mode-map): Bind `C-c .' to `comint-input-previous-argument'.
5454 (comint-insert-previous-argument-last-start-pos)
5455 (comint-insert-previous-argument-last-index): New variables.
5456
5457 * apropos.el (apropos-next-label-button): Use the presence of a
5458 `apropos-label' property to detect label buttons.
5459
5460 2001-10-08 Miles Bader <miles@gnu.org>
5461
5462 * button.el (next-button, previous-button): Remove N and WRAP
5463 parameters. Don't pay attention to `skip' properties.
5464 (forward-button): Implement wrapping, iterating, and skipping here
5465 instead.
5466 (button-activate): USE-MOUSE-ACTION is optional.
5467 (button-nop): Function removed.
5468 (default-button): Use `ignore' as default button action.
5469
5470 * apropos.el (apropos-next-label-button): Update arguments to
5471 `next-button'.
5472 (apropos-symbol): Add `skip' property.
5473 (apropos-function, apropos-macro, apropos-command)
5474 (apropos-variable, apropos-face, apropos-group, apropos-widget)
5475 (apropos-plist): New button types.
5476 (apropos-label-properties): Variable removed.
5477 (apropos-print): Pass button-type to apropos-print-doc, rather
5478 than help function and label text.
5479 (apropos-print-doc): Remove ACTION and STR args, add TYPE arg.
5480 Get button label from TYPE.
5481
5482 2001-10-07 Stefan Monnier <monnier@cs.yale.edu>
5483
5484 * help.el (help-mode): Use define-derived-mode.
5485 (describe-mode): Add optional `buffer' arg.
5486 Use it instead of going through help-xref-mode.
5487 Avoid doubling the word `minor' when prettifying.
5488 (describe-function-1): List the corresponding key bindings.
5489 (describe-variable): Say if the var is automatically buffer-local.
5490 If the source is `loaddefs.el', look for the real source.
5491 (help-xref-mode): Remove.
5492
5493 * emacs-lisp/bytecomp.el (byte-compile-file): Return success when
5494 the file says no-byte-compile.
5495
5496 2001-10-08 Miles Bader <miles@gnu.org>
5497
5498 * button.el (next-button, previous-button): Respect `skip' property.
5499
5500 2001-10-07 Miles Bader <miles@gnu.org>
5501
5502 * woman.el (woman-mode-map): Copy button-buffer-map instead of
5503 making a new keymap. Don't bind mouse-2. Bind M-mouse-2 to
5504 `woman-follow-word' instead of `woman-mouse-2'.
5505 (woman-follow-word): Renamed from `woman-mouse-2'.
5506 Follow current unconditionally, since this function is now only
5507 bound to M-mouse-2. Use accessor functions.
5508 (WoMan-highlight-references): Use `make-text-button'.
5509 (woman-xref): New button type.
5510
5511 * loadup.el ("faces"): Move load before loading "loaddefs.el".
5512 ("button"): New load, just before "help" (which uses it).
5513
5514 * help.el (help-mode-map): Make button-buffer-map our parent.
5515 Don't bind mouse events or tab/backtab.
5516 (help-function, help-variable, help-face, help-coding-system)
5517 (help-input-method, help-character-set, help-back, help-info)
5518 (help-customize-variable, help-function-def, help-variable-def):
5519 New button types.
5520 (help-button-action): New function.
5521 (describe-function-1): Pass help button-types to
5522 `help-xref-button' rather than help function and help-echo string.
5523 Don't put multiple help-function args in a list to pass them to
5524 help-xref-button, just pass them as multiple arguments.
5525 Use `help-insert-xref-button' to make [back]-button, rather than
5526 `help-xref-button'.
5527 (help-xref-button): Take a button-type TYPE as a parameter rather
5528 than a function. Remove HELP-ECHO parameter. Remove DATA parameter
5529 and add a &rest parameter ARGS to serve the same purpose.
5530 Use `make-text-button' to add the button.
5531 (help-insert-xref-button): Use `insert-text-button' to add the button.
5532 (help-follow-mouse, help-next-ref, help-previous-ref):
5533 Functions removed.
5534 (help-do-xref): New function.
5535 (help-follow): Use `push-button' and `help-do-xref' to do most of
5536 the work.
5537
5538 * apropos.el (apropos-symbol, apropos-label): New button types.
5539 (apropos-symbol-button-display-help)
5540 (apropos-label-button-display-help, apropos-next-label-button):
5541 New functions.
5542 (apropos-mode-map): Make button-buffer-map our parent.
5543 Don't bind mouse events.
5544 (apropos-print, apropos-print-doc): Create buttons instead of text
5545 properties.
5546 (apropos-mouse-follow): Function removed.
5547 (apropos-follow): Use buttons.
5548
5549 * button.el: New file.
5550
5551 2001-10-07 Gerd Moellmann <gerd@gnu.org>
5552
5553 * emacs-lisp/cl.el (most-positive-fixnum, most-negative-fixnum):
5554 Remove.
5555
5556 2001-10-05 Richard M. Stallman <rms@gnu.org>
5557
5558 * add-log.el (add-change-log-entry): Skip copyright notice
5559 and copying permission notice at start of file, if any.
5560 Make use of terms "entry" and "item" accord with Emacs manual.
5561 Simplify the logic for moving point while entering or creating
5562 an entry and then an item.
5563 (add-change-log-entry-other-window): Doc fix.
5564
5565 2001-10-06 Miles Bader <miles@gnu.org>
5566
5567 * rfn-eshadow.el (read-file-name-electric-shadow): Autoload cookie
5568 removed; they apparently don't work with faces.
5569
5570 2001-10-05 Sam Steingold <sds@gnu.org>
5571
5572 * textmodes/sgml-mode.el (html-xhtml): New user option.
5573 (html-tag-alist, html-horizontal-rule, html-image, html-line)
5574 (html-ordered-list, html-unordered-list, html-list-item)
5575 (html-paragraph, html-checkboxes, html-radio-buttons): Use it.
5576 (sgml-skip-close-p): New function.
5577 (sgml-value): Use it.
5578
5579 2001-10-05 Sam Steingold <sds@gnu.org>
5580
5581 * calendar/diary-lib.el (diary-entry-compare): When times are
5582 identical, compare the entries lexicographically.
5583
5584 2001-10-06 Miles Bader <miles@gnu.org>
5585
5586 * rfn-eshadow.el (rfn-eshadow-update-overlay):
5587 Use `minibuffer-prompt-end'.
5588
5589 * simple.el (previous-matching-history-element): Fix misplaced
5590 parentheses.
5591
5592 2001-10-05 Miles Bader <miles@gnu.org>
5593
5594 * rfn-eshadow.el: New file.
5595
5596 2001-10-05 Miles Bader <miles@gnu.org>
5597
5598 * cus-face.el (custom-face-attributes): Make sure each attribute
5599 has a valid default value. Remove hacks that mapped `nil' to
5600 `off' and used nil to mean `unspecified'. Remove `unspecified'
5601 choices from all attributes (unspecified is handled by the parent
5602 checklist).
5603 * cus-edit.el (custom-face-edit-convert-widget)
5604 (custom-face-edit-deactivate, custom-face-edit-activate)
5605 (custom-face-edit-delete, custom-face-edit-attribute-tag):
5606 New functions.
5607 (custom-face-edit): Specify a custom :convert-widget.
5608 (custom-pre-filter-face-spec, custom-post-filter-face-spec):
5609 Don't pass in default filters that map between `nil' and `off' and
5610 `unspecified' and `nil'.
5611
5612 2001-10-05 Gerd Moellmann <gerd@gnu.org>
5613
5614 * progmodes/compile.el (compilation-buffer-name): New function.
5615 (compile-internal): Use it to determine the name of the
5616 compilation buffer.
5617
5618 2001-10-05 Miles Bader <miles@gnu.org>
5619
5620 * progmodes/compile.el (grep-use-null-device): New variable.
5621 (grep-command): Mention `grep-use-null-device'.
5622 (grep-compute-defaults): Compute `grep-use-null-device' if necessary.
5623 Make computation of `grep-command' respect `grep-use-null-device'.
5624 (grep): Respect `grep-use-null-device'.
5625 Call `grep-compute-defaults' even if grep-command is set, if
5626 grep-use-null-device is still tentative.
5627
5628 * subr.el (call-process-shell-command): New function.
5629
5630 2001-10-05 Miles Bader <miles@gnu.org>
5631
5632 * simple.el (previous-matching-history-element)
5633 (next-history-element, next-complete-history-element): Use
5634 `minibuffer-' functions instead of calling `field-' functions directly.
5635 (minibuffer-prompt-end, minibuffer-contents):
5636 (minibuffer-contents-no-properties, delete-minibuffer-contents):
5637 Functions removed (now subrs).
5638 (minibuffer-prompt-width): Use `minibuffer-prompt-end'.
5639
5640 * minibuf-eldef.el (minibuf-eldef-setup-minibuffer)
5641 (minibuf-eldef-update-minibuffer): Use `minibuffer-' functions
5642 instead of calling `field-' functions directly.
5643 (minibuf-eldef-setup-minibuffer): Remove unused variable `prompt'.
5644
5645 2001-10-05 Gerd Moellmann <gerd@gnu.org>
5646
5647 * files.el (find-file-noselect): If file's read-only status has
5648 changed on disk, ask if buffer's read-only status should be
5649 changed, unless NOWARN is set.
5650
5651 * emacs-lisp/cl-macs.el (define-setf-expander): Make it an
5652 alias for define-setf-method.
5653
5654 * bindings.el: Remove no-byte-compile from file local variables
5655 to enable bootstrapping.
5656
5657 2001-10-04 Andrew Innes <andrewi@gnu.org>
5658
5659 * faces.el (face-font-registry-alternatives) [windows-nt]:
5660 Make gb2312 an alias for gb2312.1980.
5661
5662 2001-10-04 Stefan Monnier <monnier@cs.yale.edu>
5663
5664 * uniquify.el (uniquify-get-proposed-name): Don't assume dirsep is /.
5665 (uniquify-reverse-components): Remove.
5666
5667 * emacs-lisp/bytecomp.el (byte-recompile-directory):
5668 Make sure the file is readable.
5669 (byte-compile-file): Don't compile if `no-byte-compile' is set.
5670 (byte-compile-defvar): Update to reflect the change in Fdefvar.
5671 (batch-byte-recompile-directory): Pass arg=0.
5672
5673 * progmodes/perl-mode.el (perl-indent-continued-arguments): New var.
5674 (perl-calculate-indent): Use it.
5675 (perl-backward-to-noncomment): Use forward-comment.
5676
5677 * derived.el (define-derived-mode, derived-mode-make-docstring):
5678 Allow `parent' to be nil.
5679
5680 * textmodes/nroff-mode.el (nroff-mode-abbrev-table, nroff-mode):
5681 Use define-derived-mode.
5682 (nroff-mode-map, nroff-mode-syntax-table): Massage.
5683
5684 * mail/mailabbrev.el (mail-abbrev-in-expansion-header-p): Simplify.
5685
5686 * emacs-lisp/lselect.el: Use facep iso find-face.
5687
5688 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
5689 Use regexp-opt.
5690 (doc-string-elt): Set symbols' prop. Copied from autoload.el.
5691 (lisp-font-lock-syntactic-face-function): New function.
5692 (lisp-mode-variables): Use it. Make arg optional.
5693 (emacs-lisp-mode): Don't pass an arg to lisp-mode-variables.
5694 (lisp-mode): Don't pass an arg to lisp-mode-variables.
5695 Set comment-start-skip.
5696
5697 * emacs-lisp/lisp-mnt.el (lm-history-header): Accept `ChangeLog'.
5698
5699 * emacs-lisp/cl-macs.el (frame-parameter): Add a setf method.
5700 (ignore-errors): Don't bother using a `err' symbol.
5701
5702 * emacs-lisp/autoload.el (autoload-ensure-default-file)
5703 (autoload-insert-section-header, autoload-before-p)
5704 (autoload-remove-section): New functions.
5705 (generate-file-autoloads): Use them.
5706 (update-file-autoloads): Use them. Return FILE if there's no cookie.
5707 Make sure the autoload file is properly formatted when creating it.
5708 (update-autoloads-from-directories): Use them as well.
5709 Only update autoloads for files whose timestamp has changed.
5710 Add a dummy entry to remember the files which had no autoload cookies.
5711
5712 * timer.el (timer-relative-time): Fix computation for negative `micro'.
5713
5714 * subr.el (define-key-after): Allow `key' to be longer than 1.
5715 (make-local-hook): Make obsolete.
5716 (add-hook, remove-hook): Don't use make-local-hook any more.
5717 (make-syntax-table): Inherit all chars from s-s-t.
5718
5719 2001-10-04 Gerd Moellmann <gerd@gnu.org>
5720
5721 This is a fix for a report saying that resuming a search with C-s
5722 C-s doesn't use the case-fold-search setting of the previous
5723 search (C-s ... M-c ... then C-s C-s).
5724
5725 * isearch.el (isearch-last-case-fold-search): New variable.
5726 (isearch-mode): Remember value of isearch-case-fold-search
5727 in isearch-last-case-fold-search.
5728 (isearch-done): Quote value of isearch-case-fold-search.
5729 (isearch-repeat): When resuming a search, restore
5730 isearch-case-fold-search from isearch-last-case-fold-search.
5731
5732 Added to NEWS.
5733
5734 * startup.el (inhibit-startup-buffer-menu): New user-option.
5735 (command-line-1): If inhibit-startup-buffer-menu is set, don't
5736 display the buffer menu. From Simon Josefsson <jas@extundo.com>.
5737
5738 This allows upto 99999 messages in the summary without screwing up
5739 the summary sorting. Previously 9999 was the maximum. Added to NEWS.
5740
5741 * mail/rmailsum.el (rmail-make-summary-line)
5742 (rmail-make-summary-line-1, rmail-summary-next-same-subject)
5743 (rmail-summary-goto-msg, rmail-summary-goto-msg):
5744 Allow 5-digit message ids instead of 4.
5745
5746 This adds expansion of environment variables in the value
5747 specified with M-x setenv. Added to NEWS.
5748
5749 * env.el (substitute-env-vars): New function.
5750 (setenv): Add parameter SUBSTITUTE-ENV-VARS. If set, substitute
5751 environment variables in VALUE. Return VALUE.
5752
5753 2001-10-04 Gerd Moellmann <gerd@gnu.org>
5754
5755 * Branch for 21.1.
5756
5757 2001-10-03 Stefan Monnier <monnier@cs.yale.edu>
5758
5759 * pcvs-util.el (cvs-prefix-define): Typo cons->concat.
5760
5761 2001-10-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
5762
5763 * emulation/tpu-edt.el: Make messages match original TPU/edt
5764 editor. From riepel@Stanford.EDU (Rob Riepel).
5765
5766 2001-10-03 Eli Zaretskii <eliz@is.elta.co.il>
5767
5768 * rect.el: Update maintainer's email address.
5769
5770 2001-10-02 Andreas Schwab <schwab@suse.de>
5771
5772 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 227 and 228 for Long
5773 and Extended Passive Mode, resp.
5774
5775 2001-10-01 Eli Zaretskii <eliz@is.elta.co.il>
5776
5777 These changes add support for Calendar-related items in the
5778 menu bar on tty's as well:
5779
5780 * calendar/calendar.el (calendar-mode-map): Require cal-menu
5781 unconditionally.
5782 (calendar-mode): Set up activate-menubar-hook unconditionally.
5783
5784 * calendar/cal-menu.el (cal-menu-x-popup-menu): New function,
5785 calls x-popup-menu only if popup menus are supported.
5786 (calendar-mouse-insert-hebrew-diary-entry)
5787 (calendar-mouse-insert-islamic-diary-entry)
5788 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
5789 (calendar-mouse-view-other-diary-entries)
5790 (calendar-mouse-print-dates, calendar-mouse-2-date-menu)
5791 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
5792 Call cal-menu-x-popup-menu instead of x-popup-menu.
5793
5794 2001-10-01 Gerd Moellmann <gerd@gnu.org>
5795
5796 * gs.el (gs-set-ghostview-window-prop): Fix args of `elt'.
5797
5798 * emacs-lisp/edebug.el (rx): Add def-edebug-spec.
5799
5800 * emacs-lisp/rx.el: New file.
5801
5802 2001-10-01 Eli Zaretskii <eliz@is.elta.co.il>
5803
5804 * help.el (help-for-help): Doc fix. From Pavel@Janik.cz (Pavel Janik).
5805
5806 2001-09-30 Eli Zaretskii <eliz@is.elta.co.il>
5807
5808 * frame.el (select-frame-by-name, other-frame): Doc fix.
5809
5810 2001-09-29 Eli Zaretskii <eliz@is.elta.co.il>
5811
5812 * play/snake.el (snake-score-file): Use temporary-file-directory
5813 instead of a literal "/tmp". Suggested by Robert
5814 <robert@chezmarshall.freeserve.co.uk>.
5815
5816 * play/tetris.el (tetris-score-file): Ditto.
5817
5818 2001-09-28 Eli Zaretskii <eliz@is.elta.co.il>
5819
5820 * apropos.el (apropos-print): Make the directions inserted at the
5821 beginning of the *Apropos* buffer more clear.
5822
5823 2001-09-27 Michael Kifer <kifer@cs.sunysb.edu>
5824
5825 * ediff-mult.el (ediff-get-meta-info): Installed Gerd's changes.
5826 Added comments.
5827
5828 2001-09-27 Stefan Monnier <monnier@cs.yale.edu>
5829
5830 * newcomment.el (comment-normalize-vars): Use " \t" rather than
5831 "\\s-" when defining comment-end-skip.
5832
5833 2001-09-27 Gerd Moellmann <gerd@gnu.org>
5834
5835 * mail/feedmail.el (feedmail-queue-send-edit-prompt-help):
5836 Call get-buffer-window first second arg `visible'.
5837
5838 * international/mule-diag.el (list-input-methods-1):
5839 Output something that's independent of Emacs' version.
5840
5841 * tar-mode.el (tar-mode-write-file): Don't signal an error by
5842 calling byte-to-position with a nil tar-header-offset.
5843
5844 2001-09-27 Simon Josefsson <jas@extundo.com>
5845
5846 * mail/sendmail.el (send-mail-function): Doc fix.
5847 (mail-do-fcc): Error if header-end is not a marker.
5848 (mail-do-fcc): Add a comment.
5849 (mail-reply-to): Doc fix.
5850 (mail-signature): Make ATPOINT optional.
5851 (mail-yank-original): Use cond instead of nestled if.
5852
5853 2001-09-26 Stefan Monnier <monnier@cs.yale.edu>
5854
5855 * info.el (Info-on-current-buffer): Default arg to "Top".
5856
5857 2001-09-25 Eli Barzilay <eli@barzilay.org>
5858
5859 * calculator.el (calculator-copy-displayer): New user-option.
5860 (calculator-displayer-prev, calculator-displayer-next):
5861 Renamed from calculator-displayed-{left,right}.
5862 (calculator, calculator-standard-displayer)
5863 (calculator-num-to-string, calculator-update-display)
5864 (calculator-copy, calculator-put-value): Bug and display fixes.
5865
5866 2001-09-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5867
5868 * ebnf2ps.el: Eliminate make-local-hook calls. Doc fix.
5869 (ebnf-version): New version (3.6.1).
5870
5871 * ebnf-bnf.el: Fix character range regexp. Doc fix.
5872 (ebnf-bnf-non-terminal-chars): New internal const.
5873 (ebnf-bnf-lex): Fix code.
5874
5875 * ebnf-iso.el: Fix character range regexp. Doc fix.
5876 (ebnf-iso-non-terminal-chars): New internal const.
5877 (ebnf-iso-lex): Fix code.
5878
5879 * ebnf-yac.el: Fix character range regexp. Doc fix.
5880 (ebnf-yac-skip-chars): New internal const.
5881 (ebnf-yac-skip-code): Fix code.
5882
5883 2001-09-24 Stefan Monnier <monnier@cs.yale.edu>
5884
5885 * vc.el (vc-checkin): Use vc-delete-automatic-version-backups.
5886
5887 * pcvs-parse.el (cvs-parse-commit): Expand the file name before
5888 passing it to VC.
5889
5890 * vc-hooks.el (vc-delete-automatic-version-backups): Handle the
5891 case where the file is relative.
5892
5893 2001-09-24 Gerd Moellmann <gerd@gnu.org>
5894
5895 * xml.el (xml-parse-attlist): Quotes around attributes must be the
5896 same on each side. Make sure we properly handle simple quotes.
5897 From Daiki Ueno <ueno@unixuser.org>.
5898
5899 2001-09-23 Eli Zaretskii <eliz@is.elta.co.il>
5900
5901 * mail/sendmail.el (mail-mode): Doc fix. From Simon Josefsson
5902 <jas@extundo.com>.
5903
5904 * menu-bar.el (top-level): Minor fixes for text of help-echo in
5905 some items of the Options menu.
5906
5907 2001-09-22 Stefan Monnier <monnier@cs.yale.edu>
5908
5909 * pcvs-parse.el (cvs-parse-commit): Remove the temp files used by VC.
5910
5911 * vc-hooks.el (vc-delete-automatic-version-backups):
5912 Don't fail if the directory doesn't exist.
5913
5914 * diff-mode.el (diff-default-read-only): New var.
5915 (diff-mode): Use it.
5916
5917 2001-09-22 Eli Zaretskii <eliz@is.elta.co.il>
5918
5919 * hexl.el (hexl-mode-map): Fix the change of 2001-08-23:
5920 Use make-keymap instead of copy-keymap, since copying the global
5921 keymap messes up the menu bar.
5922
5923 * info.el (Info-goto-node, Info-menu): Doc fix. Suggested by
5924 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
5925
5926 2001-09-21 Eli Zaretskii <eliz@is.elta.co.il>
5927
5928 * dired.el (dired-build-subdir-alist): Accept optional arg SWITCHES.
5929
5930 * dired-aux.el (dired-insert-subdir): Pass switches to
5931 dired-build-subdir-alist.
5932
5933 2001-09-21 Stephen Gildea <gildea@stop.mail-abuse.org>
5934
5935 * time-stamp.el (time-stamp-string-preprocess): Fix bug that
5936 caused %#a and %#b to be mis-formatted.
5937
5938 2001-09-20 Eli Zaretskii <eliz@is.elta.co.il>
5939
5940 * info.el (Info-file-list-for-emacs): Add elements for ada-mode,
5941 ccmode, emacs-mime, and eudc manuals.
5942
5943 2001-09-19 Sam Steingold <sds@gnu.org>
5944
5945 w32 find cannot be used with `grep-find'.
5946 * progmodes/compile.el (find-program): New variable.
5947 (grep-compute-defaults): Use it to set `grep-find-command'.
5948
5949 2001-09-19 Gerd Moellmann <gerd@gnu.org>
5950
5951 * ps-bdf.el (bdf-read-bitmap): Initialize returned values to defaults.
5952
5953 2001-09-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5954
5955 * ebnf2ps.el: Replace "Prologue" by "Prolog" in PostScript
5956 programming. Doc fix.
5957 (ebnf-version): New version (3.6).
5958 (ebnf-eps-begin): Data fix.
5959 (ebnf-begin-file): Code fix.
5960
5961 * ebnf-bnf.el: Doc fix.
5962 (ebnf-bnf-lex): Fix regexp for non-terminal and terminal tokens.
5963
5964 * ebnf-iso.el, ebnf-otz.el, ebnf-yac.el: Doc fix.
5965
5966 2001-09-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5967
5968 * ps-print.el: Better face mapping for black/white PostScript printers.
5969 Check if mark is active when printing a region. Doc fix.
5970 (ps-print-version): New version number (6.5.5).
5971 (ps-print-color-p): Customization fix.
5972 (ps-black-white-faces): New option.
5973 (ps-black-white-faces-alist): New internal var.
5974 (ps-count-lines-preprint, ps-print-preprint-region): New funs.
5975 (ps-print-region, ps-print-region-with-faces, ps-nb-pages-buffer)
5976 (ps-nb-pages-region): Interactive fix.
5977 (ps-extend-face-list, ps-extend-face, ps-setup, ps-begin-job)
5978 (ps-face-attributes, ps-generate-postscript-with-faces): Code fix.
5979
5980 2001-09-18 Eli Zaretskii <eliz@is.elta.co.il>
5981
5982 * dired.el (dired-move-to-filename-regexp): Allow one digit in the
5983 numeric month value, and allow the Kanji character after the it to
5984 be missing (happens with ls-lisp's output on Japanese versions of
5985 MS-Windows).
5986
5987 2001-09-18 Miles Bader <miles@gnu.org>
5988
5989 * diff-mode.el (diff-mode): Don't make the buffer read-only if
5990 it's empty (and thus probably a new patch file about to be edited).
5991
5992 2001-09-17 Gerd Moellmann <gerd@gnu.org>
5993
5994 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
5995 Check for '(' in column 0 of doc string.
5996
5997 * gs.el (gs-set-ghostview-window-prop): Use `elt' instead
5998 of `nth' so that using a vector as bounding-box works.
5999 From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
6000
6001 2001-09-17 Andre Spiegel <spiegel@gnu.org>
6002
6003 * vc.el (vc-annotate): Use current workfile version explicitly as
6004 a default, suggested by Gustav H\e,Ae\e(Bllberg <gustav@virtutech.se>.
6005
6006 2001-09-16 Eli Zaretskii <eliz@is.elta.co.il>
6007
6008 * ps-bdf.el (bdf-cache-file) <ms-dos>: Use _bdfcache.el, since
6009 convert-standard-filename doesn't guarantee that the .el extension
6010 is preserved.
6011
6012 * dos-fns.el (convert-standard-filename): Replace invalid
6013 characters only after converting dash/underscore to a period.
6014 (original-make-auto-save-file-name): New.
6015 (make-auto-save-file-name): New function, overrides the definition
6016 on files.el and calls the original function via
6017 original-make-auto-save-file-name.
6018
6019 * mail/rmail.el (top-level): Require mule-utils when compiling.
6020 (rmail-decode-babyl-format): Use detect-coding-with-priority
6021 instead of detect-coding-region, to favor detection of emacs-mule
6022 encoded Babyl files written by rmailout.el etc. Suggested by
6023 Kenichi Handa <handa@etl.go.jp>.
6024
6025 2001-09-14 Eli Zaretskii <eliz@is.elta.co.il>
6026
6027 * eshell/em-unix.el (eshell-shuffle-files, eshell-shuffle-files):
6028 Use `equal', not `=', since the device number can be a cons cell.
6029
6030 2001-09-14 Gerd Moellmann <gerd@gnu.org>
6031
6032 * simple.el: Comment out change of 2001-09-13.
6033
6034 2001-09-13 Milan Zamazal <pdm@zamazal.org>
6035
6036 * progmodes/compile.el (grep-compute-defaults): Don't set
6037 grep-command/grep-find-command when it is already non-nil.
6038 (grep-command): Make it a user option.
6039 (grep-find-command): Likewise.
6040
6041 2001-09-13 Michael Kifer <kifer@cs.sunysb.edu>
6042
6043 * viper-cmd.el (viper-replace-char-subr, viper-envelop-ESC-key):
6044 inhibit quit.
6045
6046 2001-09-13 Eli Zaretskii <eliz@is.elta.co.il>
6047
6048 * files.el (make-auto-save-file-name): If long file names are not
6049 supported on MS-DOS, truncate the file name to DOS 8+3 limits before
6050 generating an auto-save file name from it.
6051
6052 2001-09-13 Gerd Moellmann <gerd@gnu.org>
6053
6054 * ps-print.el (ps-print-region, ps-print-region-with-faces)
6055 (ps-nb-pages-region): Signal an error if called interactively
6056 and the mark is not active.
6057
6058 * simple.el (minibuffer-prompt-modification)
6059 (minibuffer-prompt-insertion): New functions.
6060 (minibuffer-prompt-properties): Use `modification-hooks' and
6061 `insert-in-front-hooks'.
6062
6063 2001-09-12 Richard M. Stallman <rms@gnu.org>
6064
6065 * textmodes/outline.el (outline-regexp): Doc fix.
6066 Initialize it in the defcustom, the usual way.
6067
6068 2001-09-12 Gerd Moellmann <gerd@gnu.org>
6069
6070 * ediff-mult.el (ediff-get-meta-info): Take into account that data
6071 from `ediff-meta-info' properties need not be an overlay.
6072 From David Ponce <dponce@voila.fr>.
6073
6074 * isearch.el (isearch-intersects-p): Fix end checks.
6075
6076 2001-09-11 Eli Zaretskii <a34785@is.elta.co.il>
6077
6078 * gud.el (dbx) <gud-dbx-use-stopformat-p>: Move this case into the
6079 `t' branch of `cond', since Irix 6.1 and up is a special case of
6080 the standard dbx interface.
6081
6082 2001-09-11 Miles Bader <miles@gnu.org>
6083
6084 * comint.el (comint-send-input): When waiting for echoed input,
6085 don't save the expected end position in `echo-end', so that things
6086 work properly even if the buffer is modified elsewhere at the same
6087 time [this happens if `comint-truncate-buffer' is used].
6088
6089 2001-09-11 Gerd Moellmann <gerd@gnu.org>
6090
6091 * textmodes/outline.el (outline-mode): Use `^' and a shy group
6092 when constructing imenu-generic-expression from outline-regexp.
6093
6094 2001-09-10 Eli Zaretskii <eliz@is.elta.co.il>
6095
6096 * eshell/em-unix.el (eshell-shuffle-files): Compare inodes with
6097 `equal' instead of `=', since they can be cons cells. From Nils
6098 Goesche <cartan@cartan.de>.
6099
6100 2001-09-10 Andre Spiegel <spiegel@gnu.org>
6101
6102 * vc.el (vc-annotate): Rewrote doc string.
6103
6104 2001-09-10 Eli Zaretskii <eliz@is.elta.co.il>
6105
6106 * time-stamp.el: Update Stephen Gildea's email address.
6107
6108 2001-09-10 Gerd Moellmann <gerd@gnu.org>
6109
6110 * mail/sendmail.el (mail-send): Obey mail-send-nonascii when
6111 enable-multibyte-characters = nil. From Hallvard B Furuseth
6112 <h.b.furuseth@usit.uio.no>.
6113
6114 2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
6115
6116 * ediff-init.el (ediff-highest-priority): Bug fix.
6117
6118 * viper-cmd.el (viper-special-read-and-insert-char): New function
6119 that reads a character and uses the current input method or
6120 iso-accents when appropriate.
6121
6122 * viper.el and all others: Corrections to the comment blocks at
6123 the top.
6124
6125 2001-09-09 Eli Zaretskii <eliz@is.elta.co.il>
6126
6127 * info.el (Info-goto-node): Doc fix.
6128
6129 2001-09-07 Gerd Moellmann <gerd@gnu.org>
6130
6131 * isearch.el (isearch-intersects-p): New function.
6132 (isearch-close-unnecessary-overlays): Renamed from *unecessary*,
6133 use isearch-intersects-p, and clean up.
6134
6135 2001-09-07 Eli Zaretskii <eliz@is.elta.co.il>
6136
6137 * textmodes/ispell.el (ispell-dictionary-alist-4): Add "german"
6138 and "german8", for the new German orthography dictionaries,
6139 (ispell-dictionary-alist-5, ispell-dictionary-alist-6): Rearrange
6140 the entries, to keep the line length balanced for loaddefs.el.
6141
6142 2001-09-07 Dr Francis J. Wright <F.J.Wright@qmw.ac.uk>
6143
6144 * comint.el (comint-send-input): Handle comint-process-echoes
6145 differently.
6146
6147 2001-09-07 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6148
6149 * locate.el (locate-insert-header): Remove unnecessary whitespace.
6150
6151 2001-09-07 Eli Zaretskii <eliz@is.elta.co.il>
6152
6153 * arc-mode.el (archive-dostime): Fix a typo in minutes' computation.
6154
6155 2001-09-07 Gerd Moellmann <gerd@gnu.org>
6156
6157 * server.el (server-switch-buffer):
6158 * textmodes/refer.el (refer-find-entry-internal):
6159 * term/sup-mouse.el (sup-pos-to-window):
6160 * term/bg-mouse.el (bg-window-from-x-y):
6161 * emacs-lisp/edebug.el (edebug-window-live-p):
6162 Use get-window-with-predicate.
6163
6164 * window.el (get-window-with-predicate): Renamed from some-window.
6165 (some-window): Make it an alias.
6166
6167 2001-09-06 Gerd Moellmann <gerd@gnu.org>
6168
6169 * simple.el (undo): Remove positions from buffer-undo-list up to
6170 the next undo boundary only.
6171
6172 2001-09-06 Eli Zaretskii <eliz@is.elta.co.il>
6173
6174 * makefile.nt (install): Don't copy sc.el. Reported by Richard
6175 Kim <ryk@dspwiz.com>
6176
6177 * cus-edit.el (custom-buffer-create-internal): Remove "100%" from
6178 the message "Creating customization items...done".
6179
6180 2001-09-05 Gerd Moellmann <gerd@gnu.org>
6181
6182 * font-lock.el (toplevel): Require `jit-lock' only if
6183 font-lock-support-mode is set to jit-lock-mode.
6184
6185 2001-09-05 Eli Zaretskii <eliz@is.elta.co.il>
6186
6187 * international/quail.el (quail-use-package, quail-inactivate)
6188 (quail-activate): Mention the hooks these functions run in their
6189 doc strings.
6190
6191 2001-09-05 Edward M. Reingold <reingold@iit.edu>
6192
6193 * cal-menu.el (calendar-mouse-view-other-diary-entries): Fix name
6194 of file in header of menu.
6195
6196 2001-09-04 Gerd Moellmann <gerd@gnu.org>
6197
6198 * env.el (setenv): Interactively, if VARIABLE has a current value,
6199 add that to the front of the history, as the doc string says.
6200
6201 * comint.el (comint-send-input): Change help-echo.
6202 From "Dr Francis J. Wright" <F.J.Wright@qmw.ac.uk>.
6203
6204 * bookmark.el (bookmark-write-file): Bind print-length and
6205 print-level to nil. From Tom Capey <tomc@edina.co.uk>.
6206
6207 * obsolete/uncompress.el: Moved there from lisp/.
6208
6209 * comint.el (comint-insert-clicked-input): Goto point-max before
6210 deleting previous input. From "Dr Francis J. Wright"
6211 <F.J.Wright@qmw.ac.uk>.
6212
6213 * simple.el (backward-word): Doc fix.
6214
6215 2001-09-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6216
6217 * emacs-lisp/levents.el, emacs-lisp/lucid.el, emacs-lisp/pp.el
6218 * uncompress.el, uniquify.el, vc.el, view.el, window.el
6219 * w32-fns.el: Add Keywords header.
6220
6221 2001-09-04 Eli Zaretskii <eliz@is.elta.co.il>
6222
6223 * menu-bar.el: Fix separators in the Edit menu. Bring "Fill" near
6224 "Text Properties". Suggested by Simon Marshall
6225 <Simon.Marshall@midas-kapiti.com>.
6226
6227 2001-09-04 Andrew Choi <akochoi@cse.cuhk.edu.hk>
6228
6229 * term/mac-win.el (mac-drag-n-drop): Decode file name by
6230 consulting the value of file-name-coding-system.
6231
6232 2001-09-03 Stefan Monnier <monnier@cs.yale.edu>
6233
6234 * help.el (describe-function-1): Save precomputed `file-name' rather
6235 than recomputing it (incorrectly) with `symbol-file'.
6236
6237 2001-09-03 Gerd Moellmann <gerd@gnu.org>
6238
6239 * international/isearch-x.el (isearch-exit-recursive-edit):
6240 Take three parameters, since it's used as an after-change-function.
6241
6242 * emacs-lisp/backquote.el (backquote-backquote-symbol)
6243 (backquote-unquote-symbol, backquote-splice-symbol): Remove `*'
6244 from doc strings.
6245
6246 2001-09-02 Milan Zamazal <pdm@zamazal.org>
6247
6248 * progmodes/glasses.el (glasses-convert-to-unreadable):
6249 Consider underscores as in `glasses-make-readable'.
6250
6251 2001-09-02 Eli Zaretskii <eliz@is.elta.co.il>
6252
6253 * progmodes/cmacexp.el (c-macro-preprocessor): Use "gcc -E" for
6254 MS-DOS, since cpp might not be available.
6255
6256 * menu-bar.el (menu-bar-edit-menu) <yank-menu, yank>:
6257 Mention "yank" in the help-echo text.
6258 Suggested by Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6259
6260 2001-09-01 Stefan Monnier <monnier@cs.yale.edu>
6261
6262 * newcomment.el (comment-indent): Insert spaces more carefully.
6263
6264 2001-08-31 Eli Zaretskii <eliz@is.elta.co.il>
6265
6266 * mail/emacsbug.el (report-emacs-bug): Make sure *Messages*
6267 exists. From Andy Petrusenco <andy@int.spb.ru>.
6268
6269 * hi-lock.el (hi-lock-unface-buffer): Don't call x-popup-menu if
6270 display-popup-menus-p returns nil. Suggested by Andy Petrusenco
6271 <andy@int.spb.ru>.
6272
6273 2001-08-31 Gerd Moellmann <gerd@gnu.org>
6274
6275 * isearch.el (isearch-mouse-2): Renamed from isearch-mouse-yank.
6276 Instead of running mouse-yank-at-click, see what the event is
6277 bound to outside Isearch and run that.
6278
6279 2001-08-31 Eli Zaretskii <eliz@is.elta.co.il>
6280
6281 * menu-bar.el (menu-bar-options-menu) <transient-mark-mode>:
6282 Fix the menu entry to mention transient-mark-mode.
6283
6284 2001-08-30 Gerd Moellmann <gerd@gnu.org>
6285
6286 * simple.el (eval-expression-print-level): Fix last change.
6287
6288 * bindings.el (mode-line-coding-system-map): New variable.
6289 (mode-line-mule-info): Give the "%Z" a local-map keymap.
6290
6291 * simple.el (eval-expression-print-level): Change the type
6292 of the defcustom to allow nil.
6293
6294 * emacs-lisp/find-gc.el: Moved here from lisp/.
6295
6296 * international/quail.el (quail-completion-1):
6297 Reverse the ((CHAR . DEFN) ...) list before processing it.
6298 From Kenichi Handa <handa@etl.go.jp>.
6299
6300 * obsolete/rsz-mini.el, obsolete/sun-curs.el, obsolete/sun-fns.el
6301 * obsolete/x-apollo.el, obsolete/x-menu.el: Moved here from lisp/.
6302
6303 2001-08-30 Eli Zaretskii <eliz@is.elta.co.il>
6304
6305 * toolbar/tool-bar.el (tool-bar-mode): Make it a no-op if images
6306 aren't supported. This avoids the annoying gray strip drawn by
6307 the Windows version instead of the missing tool bar.
6308
6309 2001-08-29 Gerd Moellmann <gerd@gnu.org>
6310
6311 * menu-bar.el (menu-bar-options-menu): Make option text, messages
6312 and tooltips more consistent. From "Marshall, Simon"
6313 <Simon.Marshall@midas-kapiti.com>.
6314
6315 * startup.el (fancy-splash-screens): Temporarily set
6316 minor-mode-map-alist to nil while displaying splash screens.
6317
6318 2001-08-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6319
6320 * buff-menu.el: Add Keywords header.
6321 Doc fix (C-x C-b is bound to list-buffers).
6322
6323 * dired-x.el: Add keyword files to get listed in finder.
6324 Remove confusing notes about GNU Emacs 19.
6325
6326 * dired.el, dired-aux.el: Add Keywords header.
6327
6328 2001-08-28 Andre Spiegel <spiegel@gnu.org>
6329
6330 * vc.el (vc-revert-file): Call the backend even if the FILE's
6331 contents can be reverted locally; pass new arg CONTENTS-DONE
6332 down to the backend.
6333
6334 * vc-cvs.el, vc-rcs.el, vc-sccs.el (vc-*-revert-file): Handle new
6335 optional arg CONTENTS-DONE.
6336
6337 2001-08-28 Andrew Innes <andrewi@gnu.org>
6338
6339 * makefile.nt (DONTCOMPILE): Sync list from makefile.w32-in.
6340
6341 2001-08-28 Eli Zaretskii <eliz@is.elta.co.il>
6342
6343 * makefile.nt (install): Copy more *.el files.
6344
6345 2001-08-28 Gerd Moellmann <gerd@gnu.org>
6346
6347 * dired.el (dired-mode-map): Bind `y' to dired-show-file-type
6348 instead of `w' which is already in use.
6349
6350 * gs.el (gs-load-image): Use sleep-for.
6351 From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
6352
6353 2001-08-28 Miles Bader <miles@gnu.org>
6354
6355 * replace.el (query-replace-regexp-eval): Return args from
6356 `interactive' form in correct order.
6357
6358 2001-08-28 Eli Zaretskii <eliz@is.elta.co.il>
6359
6360 * mouse.el (mouse-buffer-menu): If the buffer menu is split by
6361 major modes, don't create panes for modes for which
6362 mouse-buffer-menu-alist returns an empty alist.
6363
6364 2001-08-28 Thien-Thi Nguyen <ttn@gnu.org>
6365
6366 * progmodes/hideshow.el: Update first-line description.
6367 Sync comments w/ maintainer version 5.31.
6368
6369 (hs-isearch-open): Default value now `code'.
6370 Fix docstring to use "code blocks" vs "comment blocks",
6371 as opposed to "block" vs "comment".
6372 (hs-flag-region): Accept `hs-isearch-open' value
6373 of `block' as synonymous w/ `code'.
6374 (hs-hide-block-at-point): For code blocks, pass `code'
6375 to `hs-flag-region' instead of `block'.
6376
6377 2001-08-28 Miles Bader <miles@gnu.org>
6378
6379 * comint.el (comint-next-prompt): Don't loop infinitely if
6380 {next,previous}-single-char-property-change returns its input
6381 position when the search fails.
6382
6383 2001-08-27 Miles Bader <miles@gnu.org>
6384
6385 * comint.el (comint-get-old-input-default): Don't signal an error
6386 if point is not on an input field; instead, return the current
6387 line (using `comint-bol' to skip any prompt, in case we're not
6388 using fields at all).
6389
6390 * man.el (Man-mode-line-format): Variable removed.
6391 (Man-mode): Change `mode-line-buffer-identification' instead of
6392 `mode-line-format'.
6393
6394 2001-08-27 Gerd Moellmann <gerd@gnu.org>
6395
6396 * mail/sendmail.el (mail-send-hook): Remove a duplicate defcustom.
6397 From Simon Josefsson <jas@extundo.com>.
6398
6399 2001-08-26 Eli Zaretskii <eliz@is.elta.co.il>
6400
6401 * textmodes/texnfo-upd.el: Remove dots and exclams at end of error
6402 messages. From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6403
6404 * emacs-lisp/levents.el: Specify FSF as Maintainer. From Pavel
6405 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6406
6407 * emacs-lisp/lselect.el: Ditto.
6408
6409 * hexl.el (hexl-insert-multibyte-char, hexl-insert-char):
6410 Remove periods from the end of error message strings.
6411 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6412
6413 * progmodes/antlr-mode.el: Add Keywords header. From Pavel
6414 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6415
6416 * net/telnet.el: Ditto.
6417
6418 2001-08-26 Gerd Moellmann <gerd@gnu.org>
6419
6420 * hl-line.el (hl-line-mode): Add args INIT-VALUE, LIGHTER, and
6421 KEYMAP to the call to define-minor-mode.
6422
6423 2001-08-24 Eli Zaretskii <eliz@is.elta.co.il>
6424
6425 * term/internal.el (IT-character-translations) <hebrew-iso8859-8>:
6426 Replace some of the undefined characters with emulations of bidi
6427 formatting characters and Niqud as per SI 1311-1.
6428 (IT-unicode-translations): Ditto.
6429 (IT-display-table-setup, IT-setup-unicode-display):
6430 Fill characters without translations with dos-unsupported-char-glyph.
6431
6432 2001-08-24 Simon Josefsson <jas@extundo.com>
6433
6434 * hl-line.el (hl-line-mode): Don't be a global mode.
6435 (global-hl-line-mode): New function.
6436
6437 2001-08-24 Gerd Moellmann <gerd@gnu.org>
6438
6439 * gs.el (gs-load-image): Wait for GHOSTVIEW window property
6440 being reset by Ghostscript. Don't kill the gs process.
6441 From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
6442
6443 2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
6444
6445 * term/mac-win.el: Require scroll-bar.
6446
6447 2001-08-23 Stefan Monnier <monnier@cs.yale.edu>
6448
6449 * ebuff-menu.el (electric-buffer-list): Use list-buffers-noselect.
6450
6451 2001-08-23 Eli Zaretskii <eliz@is.elta.co.il>
6452
6453 * hexl.el (hexl-insert-multibyte-char) New function.
6454 (hexl-quoted-insert, hexl-self-insert-command)
6455 (hexl-insert-hex-char, hexl-insert-decimal-char)
6456 (hexl-insert-octal-char): Call it instead of hexl-insert-char.
6457 Fix the doc strings accordingly.
6458 (hexl-insert-char): Reject characters whose code is above 255.
6459 Doc fix.
6460 (hexl-mode-map): Copy the global keymap instead of creating a
6461 sparse keymap, and bind all self-inserting characters to
6462 hexl-self-insert-command.
6463
6464 2001-08-22 Stefan Monnier <monnier@cs.yale.edu>
6465
6466 * wid-edit.el (text): Re-order docstring correctly.
6467
6468 * mail/sendmail.el (mail-mode): Use adaptive-fill-regexp.
6469
6470 * textmodes/fill.el (adaptive-fill-regexp): Admit tabs as well.
6471
6472 2001-08-22 Eli Zaretskii <eliz@is.elta.co.il>
6473
6474 * simple.el (line-number-mode): Mention the variable
6475 line-number-display-limit-width in the doc string.
6476
6477 2001-08-22 Gerd Moellmann <gerd@gnu.org>
6478
6479 * bindings.el (mode-line-unbury-buffer): Add EVENT parameter.
6480 Temporarily select EVENT's window for switching buffers.
6481 (mode-line-bury-buffer): New function.
6482 (mode-line-buffer-identification-keymap): Use it instead of
6483 bury-buffer. Bind down-mouse events to prevent global down-mouse
6484 events from shining through.
6485
6486 2001-08-21 Stefan Monnier <monnier@cs.yale.edu>
6487
6488 * newcomment.el (comment-beginning): Make sure the comment-start
6489 we found isn't a comment-end (in cases where confusion is possible).
6490
6491 2001-08-22 Miles Bader <miles@gnu.org>
6492
6493 * emacs-lisp/bytecomp.el (byte-compile-file): Remove TARGET-FILE
6494 before writing it, so that hard-links don't see new version.
6495
6496 2001-08-21 Gerd Moellmann <gerd@gnu.org>
6497
6498 * gs.el (gs-set-ghostview-colors-window-prop):
6499 Call x-change-window-property with 3rd arg FRAME.
6500 (gs-load-image): Wait for a previous Ghostscript process
6501 to complete before starting a new one.
6502
6503 * image.el (image-type-regexps): Make sure that the TIFF
6504 pattern is only matched at the beginning of a string.
6505 From Markus Rost <rost@math.ohio-state.edu>.
6506
6507 * international/swedish.el: Pre-Mule file removed. From Jonas
6508 Oberg <jonas@gnu.org>.
6509
6510 2001-08-20 Rajesh Vaidheeswarran <rv@gnu.org>
6511
6512 * whitespace.el (whitespace-abort-on-error): Add custom variable
6513 to whitespace to abort a write-file if whitespace is detected in file.
6514
6515 * whitespace.el (whitespace-write-file-hook): Hook to be called
6516 when writing a file. If `whitespace-abort-on-error' is set, the
6517 write will abort on detecting whitespaces.
6518 If `whitespace-auto-cleanup' is set, the file will be cleaned
6519 automatically prior to writing.
6520
6521 * whitespace.el (whitespace-buffer-search): Let's not insert bogus
6522 whitespaces in the error output!
6523
6524 * whitespace.el (whitespace-check-indent-whitespace): Defaults to
6525 `indent-tabs-mode', since the latter notes user preferences on
6526 TABs anyway.
6527
6528 * whitespace.el (whitespace-version): 3.1. All of the above issues
6529 were raised by Fran\e,Ag\e(Bois Pinard, which led to the fixes described.
6530
6531 2001-08-20 Gerd Moellmann <gerd@gnu.org>
6532
6533 * textmodes/texnfo-upd.el (texinfo-every-node-update): Remove
6534 some spaces from a message. From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6535
6536 * whitespace.el (whitespace-global-mode): Add autoload cookie.
6537
6538 2001-08-20 Alex Schroeder <alex@gnu.org>
6539
6540 * sql.el (sql-db2): Doc change.
6541
6542 2001-08-20 Alex Schroeder <alex@gnu.org>
6543
6544 * sql.el (sql-postgres): Add the database at the end of the
6545 parameters instead of at the beginning.
6546 (sql-postgres-options): Doc change.
6547
6548 2001-08-17 Gerd Moellmann <gerd@gnu.org>
6549
6550 * custom.el (defcustom): Doc fix.
6551
6552 2001-08-16 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6553
6554 * ps-mule.el (find-composition): Check if (char-after POS)
6555 returns a valid character.
6556
6557 2001-08-16 Eli Zaretskii <eliz@is.elta.co.il>
6558
6559 * hexl.el (hexl-mode, hexl-mode-exit): Adjust hexl-max-address and
6560 original-point for extra CR characters that are added/removed when
6561 the buffer is written/read whose EOL type is -dos.
6562
6563 2001-08-16 Miles Bader <miles@gnu.org>
6564
6565 * simple.el (line-move): Undo previous change.
6566
6567 * comint.el (comint-send-input): Add `inhibit-line-move-field-capture'
6568 property to input-terminating `boundary' overlays to avoid
6569 line-move wierdness.
6570
6571 2001-08-16 Gerd Moellmann <gerd@gnu.org>
6572
6573 * lazy-lock.el (lazy-lock-fontify-region): Widen the current
6574 buffer in a save-restriction. Under one test case with Ediff,
6575 window-scroll-functions are run with a window start that's
6576 temporarily outside of the restriction.
6577
6578 2001-08-16 Robert J. Chassell <bug-texinfo@gnu.org>
6579
6580 * textmodes/texnfo-upd.el: Update copyright notice, fix minor typos.
6581 (texinfo-find-lower-level-node, texinfo-find-higher-level-node)
6582 (texinfo-menu-locate-entry-p, texinfo-start-menu-description)
6583 (texinfo-update-menu-region-beginning)
6584 (texinfo-update-menu-region-end, texinfo-find-pointer): Add new
6585 command, @ifnottex, to regexps, so it is found.
6586
6587 2001-08-16 Andrew Innes <andrewi@gnu.org>
6588
6589 * makefile.nt (DONTCOMPILE): Omit bindings.el.
6590 (DONTCOMPILE): Omit sc.el.
6591
6592 * makefile.w32-in (DONTCOMPILE): Omit bindings.el.
6593 (DONTCOMPILE): Omit sc.el.
6594
6595 2001-08-16 Gerd Moellmann <gerd@gnu.org>
6596
6597 * replace.el (occur): Bind inhibit-read-only to t.
6598
6599 2001-08-16 Miles Bader <miles@gnu.org>
6600
6601 * simple.el (line-move): Pass an ESCAPE-FROM-EDGE argument of t when
6602 calling `constrain-to-field', to avoid problems with comint prompts.
6603
6604 2001-08-15 Gerd Moellmann <gerd@gnu.org>
6605
6606 * emacs-lisp/cl-indent.el (lisp-indent-defmethod): New function.
6607 (toplevel): Set it as `common-lisp-indent-function' for `defmethod'.
6608
6609 * ediff-mult.el (ediff-get-meta-info): Fix the condition
6610 of a while-loop.
6611
6612 * Makefile.in (DONTCOMPILE): Remove sc.el.
6613
6614 * Makefile.in (finder_setwins): Renamed from nonobsolete_setwins.
6615 Don't include term/.
6616
6617 * mail/sc.el: Moved to obsolete/.
6618
6619 2001-08-14 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6620
6621 * ps-print.el: Change error function arguments to follow Emacs
6622 message convention. Doc fix.
6623 (ps-print-version): New version number (6.5.4).
6624 (coding-system-for-write): Change declaration position to avoid
6625 XEmacs compilation gripes.
6626 (coding-system-for-read, buffer-file-coding-system):
6627 Declarations to avoid XEmacs compilation gripes.
6628
6629 * ps-mule.el: Doc fix.
6630 (ps-mule-encode-header-string): If STRING is not a string, replace
6631 STRING by empty string.
6632
6633 2001-08-14 Eli Zaretskii <eliz@is.elta.co.il>
6634
6635 * frame.el (show-trailing-whitespace): Doc fix.
6636
6637 2001-08-13 Eli Zaretskii <eliz@is.elta.co.il>
6638
6639 * desktop.el (desktop-save): Insert the coding: tag before
6640 desktop-header.
6641
6642 2001-08-13 Gerd Moellmann <gerd@gnu.org>
6643
6644 * Makefile.in (TAGS, TAGS-LISP): Remove "loaddefs.el" including
6645 its path from $els.
6646
6647 * image.el (image-jpeg-p): Fix call of substring.
6648
6649 2001-08-10 Gerd Moellmann <gerd@gnu.org>
6650
6651 * play/animate.el (animate-string): Doc fix. Use a buffer
6652 name with stars in it.
6653 (animate-sequence): New function.
6654 From Richard Stallman <rms@gnu.org>.
6655
6656 * frame.el (select-frame-set-input-focus): New function
6657 extracted from other-frame.
6658 (other-frame): Use it.
6659 (next-multiframe-window, previous-multiframe-window): Use it.
6660
6661 * isearch.el (isearch-other-meta-char): Don't switch to the
6662 buffer of a window clicked on, when the current buffer is
6663 in Isearch mode.
6664
6665 * image.el (image-jpeg-p): Test for APPn markers in the range
6666 #xe0..#xef.
6667
6668 2001-08-09 Gerd Moellmann <gerd@gnu.org>
6669
6670 * desktop.el (desktop-save): Don't use concat to form a file
6671 name, use expand-file-name.
6672
6673 * mouse.el (mouse-delete-window): Do nothing if frame has just
6674 one window.
6675
6676 * bindings.el (minor-mode-alist): Use mode-line-minor-mode-keymap
6677 for the minor mode name.
6678
6679 * view.el (toplevel): Use mode-line-minor-mode-keymap for the
6680 minor mode name.
6681
6682 * time.el (display-time-string-forms): Use make-mode-line-mouse-map
6683 instead of make-mode-line-mouse2-map.
6684
6685 * subr.el (add-minor-mode): Use mode-line-minor-mode-keymap for
6686 the minor mode name.
6687
6688 * emacs-lisp/easy-mmode.el (define-minor-mode):
6689 Use mode-line-minor-mode-keymap for the minor mode name.
6690
6691 * calendar/calendar.el (calendar-mode-line-format):
6692 Use make-mode-line-mouse-map instead of make-mode-line-mouse2-map.
6693
6694 * bindings.el (make-mode-line-mouse-map): Renamed from
6695 make-mode-line-mouse2-map. Take additional arg MOUSE.
6696 (mode-line-modified): Use mouse-3 instead of mouse-2.
6697 (mode-line-buffer-identification-keymap): Bind keys differently.
6698 (propertized-buffer-identification): Adapt help-echo to new bindings.
6699
6700 * bindings.el (mode-line-format): Specify help-echo for line
6701 number, column number and buffer-percent part of the mode-line.
6702
6703 * image.el (image-type-regexps): Allow whitespace at the start
6704 of the image data for XPM, XBM and Postscript, which are
6705 text files.
6706 (image-jpeg-p): Correct calculation of next field offset.
6707
6708 2001-08-08 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6709
6710 * battery.el: Fix typo.
6711
6712 2001-08-08 Gerd Moellmann <gerd@gnu.org>
6713
6714 * image.el (image-type-regexps): Allow predicates. Change the way
6715 JPEG images are recognized.
6716 (image-jpeg-p): New function.
6717 (image-type-from-data): Handle predicates in image-type-regexps.
6718
6719 * emacs-lisp/edebug.el (edebug-read-function): Fix handling of
6720 #:, #x, #o, and similar constructs.
6721
6722 2001-08-07 Gerd Moellmann <gerd@gnu.org>
6723
6724 * vc.el (vc-transfer-file): Fix malformed autoload cookie.
6725
6726 * emulation/viper-util.el (viper-file-checked-in-p): Use `and'
6727 instead of `progn'.
6728
6729 * tar-mode.el (tar-extract): Avoid generating a new buffer
6730 for each file visited. From Markus Rost <rost@math.ohio-state.edu>.
6731
6732 * textmodes/paragraphs.el (forward-sentence): Avoid building
6733 a regexp from sentence-end. From Kenichi Handa <handa@etl.go.jp>.
6734
6735 * progmodes/executable.el (executable-set-magic):
6736 If executable-find returns a quoted file name, unquote it before
6737 inserting it.
6738
6739 * image.el (image-type-regexps): For JPEG files, use a regexp
6740 derived from the JFIF spec.
6741
6742 * image.el (image-type-regexps): Use `\`' instead of `^' in
6743 most regular expressions.
6744
6745 2001-08-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6746
6747 * play/animate.el: Re-insert a reference to re-inserted function.
6748
6749 2001-08-06 Gerd Moellmann <gerd@gnu.org>
6750
6751 * help.el (describe-function-1): Use find-function-search-for-symbol
6752 instead of find-function-noselect because the latter follows aliases.
6753
6754 * play/animate.el (animate-birthday-present): Re-insert.
6755
6756 * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
6757 Handle old-style menu definitions.
6758
6759 2001-08-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6760
6761 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/page.el,
6762 * textmodes/text-mode.el, textmodes/two-column.el: Keywords added.
6763
6764 * play/studly.el, mail/unrmail.el, emacs-lisp/lucid.el,
6765 * emulation/pc-mode.el, diff.el, textmodes/fill.el, abbrev.el,
6766 * add-log.el, faces.el, mail/sc.el: Specify FSF as Maintainer.
6767
6768 2001-08-05 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6769
6770 * textmodes/tildify.el: Milan Zamazal has new address.
6771
6772 2001-08-03 Gerd Moellmann <gerd@gnu.org>
6773
6774 * custom.el (custom-set-variables): Don't test `custom-requests'
6775 properties, check the third element of the options passed to
6776 custom-set-variables instead.
6777
6778 * info.el (info-insert-file-contents): Use info-file-exists-p
6779 instead of file-exists-p.
6780
6781 * play/zone.el (zone-pgm-stress): Use unwind-protect to make sure
6782 the mode-line face is restored. Fix several bugs.
6783
6784 * replace.el (perform-replace): Doc fix.
6785
6786 2001-08-02 Francesco Potorti` <pot@gnu.org>
6787
6788 * uniquify.el (uniquify-ref-base, uniquify-ref-filename)
6789 (uniquify-ref-buffer, uniquify-ref-proposed): New functions.
6790 (uniquify-fix-item-base, uniquify-fix-item-filename)
6791 (uniquify-fix-item-buffer, uniquify-fix-item-proposed): Deleted.
6792 Callers changed.
6793 (uniquify-set-proposed): Changed to work with a vector item.
6794 (uniquify-rationalize-file-buffer-names): Use a list of arrays for
6795 the fix list, and a list of strings for the non-file buffer
6796 names. Both changes reduce consing.
6797 (uniquify-rationalize-a-list): Local variable renaming.
6798 (uniquify-rationalize-conflicting-sublist): Use member instead of
6799 assoc.
6800 (uniquify-rename-buffer): Use unless instead of if not.
6801
6802 2001-08-02 Gerd Moellmann <gerd@gnu.org>
6803
6804 * recentf.el (recentf-dump-variable): Handle a value of nil correctly.
6805
6806 * custom.el (custom-set-variables): Set options with :require
6807 clauses last.
6808
6809 * custom.el (defcustom): Doc fix.
6810
6811 * Makefile.in (TAGS, TAGS-LISP): Exclude loaddefs.el.
6812
6813 2001-08-01 Eli Zaretskii <eliz@is.elta.co.il>
6814
6815 * man.el (man): Mention Man-switches in the doc string.
6816 (Man-switches): Mention -a in the doc string.
6817
6818 * textmodes/ispell.el (ispell-alternate-dictionary):
6819 Add /usr/share/lib/dict/words, for Irix.
6820
6821 * bindings.el: Bind shifted and control-shifted kp-* keys to the
6822 corresponding non-kp keys. Suggested by Stephen Gildea
6823 <gildea@stop.mail-abuse.org>.
6824
6825 2001-08-01 Francesco Potorti` <pot@gnu.org>
6826
6827 * uniquify.el: These changes correct a corner case that the old
6828 code managed correctly.
6829 (uniquify-fix-item-proposed): Renamed from
6830 uniquify-fix-item-min-proposed.
6831 (uniquify-set-proposed): New function.
6832 (uniquify-rationalize-file-buffer-names): Code reshuffled for
6833 clarity and speed.
6834 (uniquify-item-greaterp): Substitutes uniquify-item-lessp.
6835 This is equivalent to what the old code did.
6836 (uniquify-rationalize-a-list): Never recompute the proposed
6837 name. Sort the conflicting sublist before rationalising it: this
6838 is equivalent to what the old code did, but one directory element
6839 at a time, and only when necessary.
6840 (uniquify-rationalize-conflicting-sublist): Recompute here the
6841 proposed name.
6842
6843 2001-08-01 Gerd Moellmann <gerd@gnu.org>
6844
6845 * play/animate.el: Add Keywords and Maintainer. Remove a
6846 reference to a removed function.
6847
6848 * play/animate.el (animate-string): Handle case that the string is
6849 longer than the window is wide.
6850
6851 2001-07-31 Gerd Moellmann <gerd@gnu.org>
6852
6853 * desktop.el (desktop-save): Bind coding-system-for-write to
6854 `emacs-mule' for write-region.
6855
6856 * delsel.el (delete-selection-pre-hook): Don't set this-command
6857 to `ignore' if the region is empty.
6858
6859 * international/mule.el (set-keyboard-coding-system):
6860 Set keyboard-coding-system.
6861
6862 * smerge-mode.el (smerge-mode): Check if `font-lock-mode' is bound
6863 before accessing it.
6864
6865 2001-07-30 Andreas Schwab <schwab@suse.de>
6866
6867 * menu-bar.el (toggle-highlight-paren-mode):
6868 Use `(show-paren-mode)' as body.
6869
6870 2001-07-30 Andre Spiegel <spiegel@gnu.org>
6871
6872 * vc.el (vc-checkout-hook): New hook.
6873 (vc-checkout): Run it.
6874
6875 2001-07-30 Eli Zaretskii <eliz@is.elta.co.il>
6876
6877 * progmodes/make-mode.el (makefile-macroassign-regex):
6878 Recognize the ?= operator. From Jonathan Kamens <jik@curl.com>.
6879
6880 2001-07-30 Gerd Moellmann <gerd@gnu.org>
6881
6882 * vc.el (vc-switch-backend): Fix autoload cookie.
6883
6884 * desktop.el (desktop-save): Add `-*- coding: emacs-mule -*-' to
6885 the desktop file.
6886
6887 2001-07-30 Simon Josefsson <jas@extundo.com>
6888
6889 * mail/mail-utils.el (mail-strip-quoted-names): Replace text
6890 literally. Reported by Sean Rima <sean@**Delete**.tcob1.net>.
6891
6892 2001-07-27 Gerd Moellmann <gerd@gnu.org>
6893
6894 * emacs-lisp/lisp-mode.el (last-sexp-setup-props): New function.
6895 (last-sexp-toggle-display): Renamed from last-sexp-print.
6896 (last-sexp-toggle-display, eval-last-sexp-1):
6897 Use last-sexp-setup-props.
6898
6899 * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button):
6900 New user-options.
6901 (mouse-wheel-change-button): New function.
6902 (mouse-wheel-mode): Use mouse-wheel-{up,down}-button.
6903 (mwheel-scroll): Ditto.
6904
6905 2001-07-26 Gerd Moellmann <gerd@gnu.org>
6906
6907 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Don't search for
6908 `...', compare with unabbreviated printed representation instead.
6909 (last-sexp-print): Bind print-length and print-level to nil.
6910
6911 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Look for a `...'
6912 before assigning text properties. Make properties rear-nonsticky.
6913
6914 * emacs-lisp/lisp-mode.el (last-sexp-print): New function.
6915 (eval-last-sexp-1): Give printed text a `keymap' property and bind
6916 <mouse-2> and <RET> in that map to a function printing the
6917 unabbreviated value.
6918
6919 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): If standard-output
6920 is a buffer, put a text property `printed-value' on the printed
6921 representation, with the Lisp object printed as value.
6922
6923 2001-07-25 Eli Zaretskii <eliz@is.elta.co.il>
6924
6925 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-defun):
6926 Mention the effect of eval-expression-print-length and
6927 eval-expression-print-level in the doc strings. Suggested by
6928 Kevin Gallagher <kevingal@onramp.net>.
6929
6930 2001-07-25 Gerd Moellmann <gerd@gnu.org>
6931
6932 * xt-mouse.el (xterm-mouse-event): Recognize control sequences
6933 for buttons > 3.
6934 (xterm-mouse-translate): Handle the case that we don't get a
6935 down-event.
6936
6937 * emacs-lisp/find-func.el (find-function-regexp):
6938 Add easy-mmode-define-global-mode to the regexp. Allow newlines
6939 in front of the function name.
6940
6941 * isearch.el (isearch-other-meta-char): Fix last change.
6942
6943 * isearch.el (isearch-other-meta-char): Don't modify mode-line and
6944 similar events for which fake prefix keys are generated. It's no
6945 longer necessary since read_key_sequence doesn't modify these
6946 events for internal purposes anymore.
6947
6948 * files.el (auto-mode-alist): Use nroff-mode for files ending
6949 in `.9'. From Assar Westerlund <assar@stacken.kth.se>.
6950
6951 2001-07-24 Eli Zaretskii <eliz@is.elta.co.il>
6952
6953 * avoid.el (mouse-avoidance-too-close-p): If the frame lacks a
6954 tool-bar-lines parameter, behave as if its value were zero.
6955 (mouse-avoidance-set-pointer-shape): Don't do anything if
6956 x-pointer-shape is not boundp.
6957
6958 2001-07-23 Francesco Potorti` <pot@gnu.org>
6959
6960 * uniquify.el: Overall speedup changes when using many buffers.
6961 (uniquify-fix-item-base, uniquify-fix-item-filename)
6962 (uniquify-fix-item-buffer): Changed defmacro to defalias (cosmetic).
6963 (uniquify-fix-item-unrationalized-buffer): Deleted: was the fourth
6964 place in the item, but was never used.
6965 (uniquify-fix-item-min-proposed): New defalias: the fourth place
6966 in the item is now used as cache for the proposed name.
6967 (uniquify-rationalize-file-buffer-names): Move computation made on
6968 newbuffile out of the loop, in the newbuffile-nd local var.
6969 Use dolist (cosmetic change). Compute the proposed name for the most
6970 common case and cache it in the fourth place in the item.
6971 (uniquify-rationalize-file-buffer-names): Used to return a a list
6972 of buffer whose name was changed, but that return value was never used.
6973 (uniquify-item-lessp): Replaces uniquify-filename-lessp, works on
6974 the cached proposed name, does much less consing and is quicker.
6975 (uniquify-filename-lessp): Deleted.
6976 (uniquify-rationalize-a-list): Use dolist (cosmetic change).
6977 Do not bind locally the uniquify-possibly-resolvable flag. Use the
6978 cached proposed name is possible.
6979 (uniquify-get-proposed-name): Arguments changed, callers changed.
6980 (uniquify-rationalize-conflicting-sublist): Explicitely reset the
6981 uniquify-possibly-resolvable flag, which is no more bound locally.
6982 (uniquify-rename-buffer): Do not set the old unrationalised-buffer
6983 flag, which does not exist any more.
6984
6985 2001-07-23 Eli Zaretskii <eliz@is.elta.co.il>
6986
6987 * term/internal.el (IT-unicode-translations): Fix the appearance of
6988 "6`".
6989
6990 * progmodes/compile.el (compile-internal): If EMACS is already
6991 defined in the environment, don't override its value.
6992
6993 2001-07-23 Gerd Moellmann <gerd@gnu.org>
6994
6995 * play/fortune.el: Undo change of 2001-07-13.
6996 Fix autoload cookies. Add types to defcustoms.
6997 (fortune) <defgroup>: Add :link.
6998 (fortune-from-region): Use eq, not eql.
6999 From Dave Love <fx@gnu.org>.
7000
7001 * play/animate.el (animate-birthday-present): Function removed.
7002
7003 * play/animate.el: New file.
7004
7005 2001-07-22 Eli Zaretskii <eliz@is.elta.co.il>
7006
7007 * startup.el (normal-top-level-add-subdirs-to-load-path):
7008 On Windows, put into normal-top-level-add-subdirs-inode-list the
7009 canonicalized names of the directories instead of inode numbers.
7010
7011 2001-07-21 Michael Kifer <kifer@cs.sunysb.edu>
7012
7013 * ediff-util.el: Copyright years.
7014 (ediff-choose-syntax-table): New function.
7015 (ediff-setup): Use ediff-choose-syntax-table.
7016 (ediff-file-checked-out-p,ediff-file-checked-in-p): Check if
7017 vc-state is available.
7018 (ediff-make-temp-file): Use ediff-coding-system-for-write.
7019
7020 * ediff-init.el (ediff-with-syntax-table): New macro, uses
7021 with-syntax-table.
7022 (ediff-coding-system-for-read): From ediff-diff.el
7023 (ediff-coding-system-for-write): New variable.
7024 (ediff-highest-priority): Fixed the bug having to do with disappearing
7025 overlays.
7026 (ediff-file-remote-p): Use file-remote-p, if available.
7027 (ediff-listable-file): New function.
7028 (ediff-file-attributes): Use ediff-listable-file.
7029
7030 * ediff-mult.el (ediff-meta-insert-file-info1):
7031 Use ediff-listable-file.
7032
7033 * ediff-ptch.el (ediff-prompt-for-patch-file):
7034 Use ediff-coding-system-for-read.
7035 (ediff-patch-file-internal): Use ediff-coding-system-for-write.
7036
7037 * ediff-diff.el (ediff-coding-system-for-read): Moved to ediff-init.el.
7038 (ediff-match-diff3-line,ediff-get-diff3-group): Improved pattern.
7039
7040 * ediff.el: Date of last update, copyright years.
7041
7042 * ediff-wind (ediff-setup-control-frame): Nill->nil.
7043
7044 * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
7045 of Scott Bronson.
7046 (ex-cmd-assoc,ex-compile,ex-cmd-one-letr): New functions.
7047 (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
7048 Deleted functions.
7049 (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
7050 ex-token-list.
7051 (viper-get-ex-address-subr): Convert registers to char data type.
7052
7053 * viper-util.el (viper-int-to-char,viper-char-equal): New functions.
7054 (viper-memq-char): Use viper-int-to-char.
7055 (viper-file-checked-in-p): Use vc-locking-user, if vc doesn't have
7056 vc-locking-state.
7057 (viper-read-key): Use viper-read-key-sequence.
7058
7059 * viper.el (viper-major-mode-modifier-list):
7060 Added inferior-emacs-lisp-mode.
7061 (this-major-mode-requires-vi-state): New function that uses simple
7062 heuristics to decide if vi state is appropriate.
7063 (set-viper-state-in-major-mode): Use this-major-mode-requires-vi-state.
7064 (viper-non-hook-settings): Don't advise read-key-sequence.
7065 (viper-read-key-sequence): New function that replaces the
7066 previously used advice to read-key-sequence.
7067
7068 * viper-cmd.el (viper-test-com-defun,viper-exec-change)
7069 (viper-exec-Change,viper-execute-com,viper-insert,viper-append)
7070 (viper-Append,viper-Insert,viper-open-line,viper-Open-line)
7071 (viper-open-line-at-point,viper-substitute,viper-overwrite)
7072 (viper-replace-char-subr,viper-forward-word,viper-forward-Word):
7073 Got rid of the negative character hack.
7074 (viper-escape-to-state,viper-replace-state-exit-cmd):
7075 Use viper-read-key-sequence.
7076 (viper-envelop-ESC-key): No need for ad-get-orig-definition.
7077 (viper-minibuffer-standard-hook,viper-read-string-with-history):
7078 Don't override existing minibuffer-setup-hook.
7079 (viper-mark-point,viper-goto-mark-subr,viper-brac-function):
7080 Convert registers to char data type.
7081 (viper-autoindent): Use viper-indent-line.
7082
7083 * viper-keym.el: Use viper-exec-key-in-emacs.
7084
7085 2001-07-20 Stefan Monnier <monnier@cs.yale.edu>
7086
7087 * server.el (server-visit-files): Fix variable name typo.
7088
7089 2001-07-20 Gerd Moellmann <gerd@gnu.org>
7090
7091 * simple.el (delete-trailing-whitespace): Save match data
7092 around looking-at. From Markus Rost <rost@math.ohio-state.edu>.
7093
7094 2001-07-19 Stefan Monnier <monnier@cs.yale.edu>
7095
7096 * progmodes/compile.el (compilation-parse-errors): `linenum' might
7097 return a this-error using the alternative format (a pair of markers).
7098
7099 2001-07-19 Gerd Moellmann <gerd@gnu.org>
7100
7101 * font-lock.el (c++-keywords): Add Standard C++ operator names.
7102
7103 * mail/mh-utils.el (mh-find-progs): Also search in `lib'.
7104 From Mats Bengtsson <mats.bengtsson@s3.kth.se>,
7105
7106 2001-07-17 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7107
7108 * international/iso-transl.el: Fix typo in the header of the file.
7109
7110 * textmodes/picture.el (picture): Doc fix.
7111
7112 * international/ja-dic-cnv.el (skkdic-convert): Some fixes to
7113 follow coding conventions in generated files.
7114
7115 2001-07-17 Eli Zaretskii <eliz@is.elta.co.il>
7116
7117 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
7118 (tool-bar-add-item): Don't call image-related primitives if the
7119 display doesn't support images.
7120
7121 * frame.el (display-images-p): New function.
7122
7123 2001-07-17 Gerd Moellmann <gerd@gnu.org>
7124
7125 * server.el (server-visit-files): Handle the case the specified
7126 column number is <= 0.
7127
7128 2001-07-17 Jan Nieuwenhuizen <jan@netland.nl>
7129
7130 * startup.el (command-line-1): Add support for +LINE:COLUMN
7131 command line argument.
7132
7133 2000-07-17 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7134
7135 * server.el (server-process-filter, server-visit-files):
7136 Add support for +LINE:COLUMN style emacsclient calls.
7137
7138 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7139
7140 * emacs-lisp/easy-mmode.el: Add Keywords header.
7141
7142 * play/pong.el: Author has new address.
7143
7144 * play/landmark.el: Author is no more reachable.
7145
7146 * play/handwrite.el: Author is no more reachable.
7147
7148 2001-07-17 Stefan Monnier <monnier@cs.yale.edu>
7149
7150 * term/sun.el (ignore-key, sun-esc-bracket, meta-flag): Remove.
7151 (sun-raw-prefix): Replace t3, t4, t6, and t7 with f3, f4, f6 and f7.
7152 Complete bindings for F<1..12> keys.
7153 (global-map): Remove `undo' binding (already in the default).
7154 Replace `t<n>' bindings with `f<n>' bindings.
7155
7156 2001-07-16 Stefan Monnier <monnier@cs.yale.edu>
7157
7158 * progmodes/tcl.el (tcl-fill-mode-map): Use tcl-indent-exp.
7159 (tcl-mode): Use tcl-add-log-defun.
7160 (tcl-indent-line): Use tcl-calculate-indent.
7161 (tcl-calculate-indent): Renamed from calculate-tcl-indent.
7162 (tcl-indent-exp): Renamed from indent-tcl-exp.
7163 (tcl-add-log-defun): Renamed from add-log-tcl-defun.
7164 (tcl-indent-for-comment): Call comment-indent-function properly
7165 and handle the case where it returns nil.
7166
7167 2001-07-16 Gerd Moellmann <gerd@gnu.org>
7168
7169 * calendar/cal-islam.el (calendar-goto-islamic-date):
7170 Remove autoload cookie.
7171
7172 * calendar/calendar.el (calendar-goto-islamic-date):
7173 Add call to autoload.
7174
7175 2001-07-16 Stefan Monnier <monnier@cs.yale.edu>
7176
7177 * progmodes/ada-mode.el (ada-mode): Avoid unneeded version checks.
7178 Don't change compile-auto-highlight globally.
7179 Don't bother with `font-lock-defaults' property since XEmacs
7180 also understands the `font-lock-defaults' variable.
7181 Use make-local-variable rather than make-variable-buffer-local.
7182 Don't `defconst' comment-indent-function: keep the default.
7183 Call easy-menu-add unconditionally.
7184 (ada-create-keymap): Use [(shift tab)] so it works on both Emacsen.
7185 (ada-create-menu): Use :included for Emacs as well.
7186
7187 * vc.el (vc-do-command): Autoload.
7188
7189 * progmodes/ada-xref.el (ada-xref-initialize): Fix call to add-hook.
7190
7191 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7192
7193 * ps-print.el: Fix Author: header.
7194
7195 2001-07-16 Gerd Moellmann <gerd@gnu.org>
7196
7197 * mouse-sel.el (mouse-sel-bindings): Instead of unbinding
7198 mouse-1 etc., bind them to `ignore'.
7199
7200 * eshell/esh-mode.el (eshell-send-invisible): Renamed from
7201 send-invisible, which is already defined in Comint.
7202 (eshell-watch-for-password-prompt): Use it.
7203
7204 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7205
7206 * which-func.el (which-func-mode): Doc fix.
7207
7208 * align.el, apropos.el, autorevert.el, battery.el, bookmark.el,
7209 * calculator.el, calendar/todo-mode.el, complete.el, cus-dep.el,
7210 * cus-edit.el, cus-face.el, delim-col.el, dos-fns.el, double.el,
7211 * edmacro.el, elide-head.el, emacs-lisp/autoload.el,
7212 * emacs-lisp/checkdoc.el, emacs-lisp/cl-compat.el,
7213 * emacs-lisp/cl-specs.el, emacs-lisp/copyright.el,
7214 * emacs-lisp/cust-print.el, emacs-lisp/easy-mmode.el,
7215 * emacs-lisp/elint.el, emacs-lisp/ewoc.el, emacs-lisp/find-func.el,
7216 * emacs-lisp/pp.el, emacs-lisp/re-builder.el, emacs-lisp/shadow.el,
7217 * emacs-lisp/sregex.el, emerge.el, emulation/edt-lk201.el,
7218 * emulation/edt-mapper.el, emulation/edt-pc.el,
7219 * emulation/edt-vt100.el, emulation/edt.el, emulation/pc-select.el,
7220 * emulation/tpu-edt.el, emulation/tpu-extras.el,
7221 * emulation/tpu-mapper.el, emulation/vip.el, expand.el, finder.el,
7222 * foldout.el, follow.el, format.el, forms-d2.el, forms.el,
7223 * generic.el, hi-lock.el, hilit-chg.el, hippie-exp.el, info-look.el,
7224 * international/isearch-x.el, international/iso-cvt.el,
7225 * international/ogonek.el, international/quail.el,
7226 * international/utf-8.el, jit-lock.el, language/devan-util.el,
7227 * language/devanagari.el, language/ethio-util.el,
7228 * language/ethiopic.el, language/european.el, language/indian.el,
7229 * language/romanian.el, language/tibet-util.el, language/tibetan.el,
7230 * mail/feedmail.el, mail/footnote.el, mail/mail-hist.el,
7231 * mail/mailheader.el, mail/mspools.el, mail/supercite.el,
7232 * mouse-sel.el, net/browse-url.el, net/net-utils.el,
7233 * net/quickurl.el, net/snmp-mode.el, net/webjump.el,
7234 * net/zone-mode.el, pcomplete.el, progmodes/antlr-mode.el,
7235 * progmodes/autoconf.el, progmodes/cmacexp.el,
7236 * progmodes/cperl-mode.el, progmodes/cpp.el, progmodes/cwarn.el,
7237 * progmodes/delphi.el, progmodes/ebnf-bnf.el, progmodes/ebnf-iso.el,
7238 * progmodes/ebnf-otz.el, progmodes/ebnf-yac.el,
7239 * progmodes/ebnf2ps.el, progmodes/executable.el,
7240 * progmodes/fortran.el, progmodes/idlw-shell.el,
7241 * progmodes/idlw-toolbar.el, progmodes/idlwave.el,
7242 * progmodes/m4-mode.el, progmodes/mantemp.el,
7243 * progmodes/meta-mode.el, progmodes/octave-inf.el,
7244 * progmodes/ps-mode.el, progmodes/scheme.el, progmodes/simula.el,
7245 * progmodes/tcl.el, ps-bdf.el, ps-mule.el, ps-print.el, recentf.el,
7246 * rect.el, regi.el, rsz-mini.el, s-region.el, scroll-all.el,
7247 * shadowfile.el, speedbar.el, term/AT386.el, term/internal.el,
7248 * term/iris-ansi.el, term/mac-win.el, term/tvi970.el,
7249 * textmodes/artist.el, textmodes/flyspell.el, textmodes/ispell.el,
7250 * textmodes/page-ext.el, textmodes/refer.el, textmodes/texinfmt.el,
7251 * textmodes/texinfo.el, textmodes/texnfo-upd.el,
7252 * textmodes/two-column.el, time-stamp.el, timezone.el,
7253 * toolbar/tool-bar.el, vc-rcs.el, vc-sccs.el, view.el, w32-fns.el,
7254 * which-func.el, whitespace.el, wid-browse.el, widget.el,
7255 * windmove.el, woman.el, xt-mouse.el: Some fixes to follow coding
7256 conventions.
7257
7258 2001-07-16 Gerd Moellmann <gerd@gnu.org>
7259
7260 * simple.el (set-variable): Require 'cus-edit' instead of
7261 `wid-edit', so that the Custom widgets get defined.
7262
7263 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7264
7265 * allout.el: A fix to follow coding conventions.
7266
7267 * find-lisp.el: A fix to follow coding conventions.
7268
7269 * term/w32-win.el: A fix to follow coding conventions.
7270
7271 * textmodes/sgml-mode.el: A fix to follow coding conventions.
7272
7273 * term/xterm.el: A fix to follow coding conventions.
7274
7275 * term/news.el: A fix to follow coding conventions.
7276
7277 * emulation/vi.el: A fix to follow coding conventions, Maintainer:
7278 header line fixed.
7279
7280 * sun-curs.el: Fix Maintainer: header line.
7281
7282 * emacs-lisp/easymenu.el: Address of the author added.
7283
7284 2001-07-16 Gerd Moellmann <gerd@gnu.org>
7285
7286 * dired.el (dired-insert-set-properties): Fix invalid mouse-face
7287 property.
7288
7289 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7290
7291 * play/5x5.el, play/decipher.el, play/dunnet.el, play/fortune.el,
7292 * play/gamegrid.el, play/handwrite.el, play/landmark.el,
7293 * play/morse.el, play/pong.el, play/snake.el, play/tetris.el:
7294 Some fixes to follow coding conventions.
7295
7296 2001-07-16 Gerd Moellmann <gerd@gnu.org>
7297
7298 * which-func.el (which-func-mode): Doc fix.
7299
7300 2001-07-15 Stefan Monnier <monnier@cs.yale.edu>
7301
7302 * net/rcompile.el (remote-compile): Use make-local-variable.
7303
7304 * progmodes/hideshow.el (hs-minor-mode): Use make-local-variable.
7305
7306 * progmodes/make-mode.el (makefile-browse): Use make-local-variable.
7307
7308 * mail/reporter.el (reporter-submit-bug-report):
7309 Don't abuse make-variable-buffer-local. Fix call to add-hook.
7310
7311 2001-07-15 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7312
7313 * calendar/cal-china.el, calendar/cal-coptic.el,
7314 * calendar/cal-dst.el, calendar/cal-french.el,
7315 * calendar/cal-hebrew.el, calendar/cal-islam.el,
7316 * calendar/cal-iso.el, calendar/cal-julian.el,
7317 * calendar/cal-mayan.el, calendar/cal-persia.el,
7318 * calendar/cal-tex.el, calendar/calendar.el, calendar/diary-lib.el,
7319 * calendar/lunar.el, calendar/solar.el, ediff-diff.el,
7320 * ediff-help.el, ediff-hook.el, ediff-init.el, ediff-merg.el,
7321 * ediff-ptch.el, ediff-util.el, ediff-vers.el, ediff-wind.el,
7322 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
7323 * net/eudc-vars.el, net/ldap.el, pcvs-defs.el, pcvs-info.el,
7324 * pcvs-parse.el, pcvs-util.el, pcvs.el, progmodes/ada-mode.el,
7325 * progmodes/ada-prj.el, progmodes/ada-stmt.el,
7326 * progmodes/ada-xref.el, progmodes/cc-align.el,
7327 * progmodes/cc-bytecomp.el, progmodes/cc-cmds.el,
7328 * progmodes/cc-defs.el, progmodes/cc-engine.el,
7329 * progmodes/cc-langs.el, progmodes/cc-menus.el,
7330 * progmodes/cc-styles.el, progmodes/cc-vars.el,
7331 * textmodes/reftex-auc.el, textmodes/reftex-cite.el,
7332 * textmodes/reftex-dcr.el, textmodes/reftex-global.el,
7333 * textmodes/reftex-index.el, textmodes/reftex-parse.el,
7334 * textmodes/reftex-ref.el, textmodes/reftex-sel.el,
7335 * textmodes/reftex-toc.el, textmodes/reftex-vars.el,
7336 * textmodes/reftex.el: Some fixes to follow coding
7337 conventions in Elisp files with known maintainers.
7338
7339 * emulation/viper.el: A fix to follow coding conventions.
7340
7341 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el,
7342 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el,
7343 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el,
7344 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el,
7345 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el,
7346 * eshell/em-xtra.el, eshell/esh-arg.el, eshell/esh-cmd.el,
7347 * eshell/esh-ext.el, eshell/esh-io.el, eshell/esh-maint.el,
7348 * eshell/esh-mode.el, eshell/esh-module.el, eshell/esh-opt.el,
7349 * eshell/esh-proc.el, eshell/esh-test.el, eshell/esh-util.el,
7350 * eshell/esh-var.el, eshell/eshell.el: Some fixes to follow coding
7351 conventions in Elisp files.
7352
7353 * composite.el, diff.el, emacs-lisp/levents.el,
7354 * emacs-lisp/lmenu.el, emacs-lisp/lselect.el, emacs-lisp/lucid.el,
7355 * emulation/pc-mode.el, emulation/viper-cmd.el,
7356 * emulation/viper-ex.el, emulation/viper-init.el,
7357 * emulation/viper-keym.el, emulation/viper-macs.el,
7358 * emulation/viper-mous.el, emulation/viper-util.el,
7359 * emulation/viper.el, forms-pass.el, international/ccl.el,
7360 * international/characters.el, international/encoded-kb.el,
7361 * international/fontset.el, international/ja-dic-cnv.el,
7362 * international/ja-dic-utl.el, international/kinsoku.el,
7363 * international/kkc.el, international/mule-cmds.el,
7364 * international/mule-diag.el, international/mule-util.el,
7365 * international/mule.el, international/titdic-cnv.el,
7366 * language/china-util.el, language/chinese.el,
7367 * language/cyril-util.el, language/cyrillic.el, language/english.el,
7368 * language/greek.el, language/hebrew.el, language/japan-util.el,
7369 * language/japanese.el, language/korea-util.el, language/korean.el,
7370 * language/lao-util.el, language/lao.el, language/misc-lang.el,
7371 * language/slovak.el, language/thai-util.el, language/thai.el,
7372 * language/viet-util.el, language/vietnamese.el, mail/mh-comp.el,
7373 * mail/mh-e.el, mail/mh-funcs.el, mail/mh-mime.el, mail/mh-pick.el,
7374 * mail/mh-seq.el, mail/mh-utils.el, mail/sc.el, mail/unrmail.el,
7375 * midnight.el, patcomp.el, pcmpl-cvs.el, pcmpl-gnu.el,
7376 * pcmpl-linux.el, pcmpl-rpm.el, pcmpl-unix.el, play/studly.el,
7377 * play/zone.el, replace.el, select.el, subr.el, talk.el, term.el,
7378 * term/apollo.el, term/bobcat.el, term/linux.el, term/lk201.el,
7379 * term/vt102.el, term/vt125.el, term/vt200.el, term/vt201.el,
7380 * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el,
7381 * term/vt400.el, term/vt420.el, x-apollo.el, x-menu.el: Some fixes
7382 to follow coding conventions in files without maintainer or in files
7383 with clear maintainer (but without Maintainer header stating so).
7384
7385 * emacs-lisp/elp.el: A fix to follow coding conventions.
7386
7387 * gnus/binhex.el, gnus/binhex.el, gnus/earcon.el,
7388 * gnus/gnus-agent.el, gnus/gnus-art.el, gnus/gnus-audio.el,
7389 * gnus/gnus-logic.el, gnus/gnus-ml.el, gnus/gnus-mlspl.el,
7390 * gnus/gnus-setup.el, gnus/gnus-srvr.el, gnus/gnus-sum.el,
7391 * gnus/gnus-uu.el, gnus/gnus-vm.el, gnus/ietf-drums.el,
7392 * gnus/mail-parse.el, gnus/mail-prsvr.el, gnus/mail-source.el,
7393 * gnus/mm-bodies.el, gnus/mm-decode.el, gnus/mm-encode.el,
7394 * gnus/mm-partial.el, gnus/mm-util.el, gnus/mm-uu.el,
7395 * gnus/mm-view.el, gnus/mml.el, gnus/nnimap.el, gnus/nnoo.el,
7396 * gnus/parse-time.el, gnus/rfc1843.el, gnus/rfc2045.el,
7397 * gnus/rfc2047.el, gnus/rfc2104.el, gnus/rfc2231.el,
7398 * gnus/time-date.el, gnus/uudecode.el: Some fixes to follow coding
7399 conventions in files from Gnus.
7400
7401 * abbrevlist.el, array.el, buff-menu.el, calendar/appt.el,
7402 * case-table.el, cdl.el, cmuscheme.el, compare-w.el, completion.el,
7403 * custom.el, derived.el, dired-aux.el, disp-table.el, dos-vars.el,
7404 * echistory.el, electric.el, emacs-lisp/authors.el,
7405 * emacs-lisp/backquote.el, emacs-lisp/byte-opt.el,
7406 * emacs-lisp/bytecomp.el, emacs-lisp/float.el, emacs-lisp/gulp.el,
7407 * emacs-lisp/helper.el, emacs-lisp/lisp-mode.el,
7408 * emacs-lisp/regexp-opt.el, emulation/mlconvert.el,
7409 * emulation/mlsupport.el, env.el, fast-lock.el, find-dired.el,
7410 * float-sup.el, frame.el, gnus/gnus-mule.el, gnus/pop3.el, gs.el,
7411 * gud.el, help-macro.el, hexl.el, imenu.el, info.el, informat.el,
7412 * international/codepage.el, international/iso-ascii.el,
7413 * international/iso-insert.el, international/iso-transl.el,
7414 * international/swedish.el, isearch.el, jka-compr.el, kermit.el,
7415 * lazy-lock.el, ledit.el, loadup.el, lpr.el, ls-lisp.el, macros.el,
7416 * mail/blessmail.el, mail/emacsbug.el, mail/mail-extr.el,
7417 * mail/mailabbrev.el, mail/mailpost.el, mail/rmail.el,
7418 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmsc.el,
7419 * mail/rmailout.el, mail/rmailsort.el, mail/rmailsum.el,
7420 * mail/vms-pmail.el, man.el, map-ynp.el, menu-bar.el, misc.el,
7421 * msb.el, net/ange-ftp.el, net/goto-addr.el, novice.el,
7422 * obsolete/auto-show.el, obsolete/hilit19.el, obsolete/ooutline.el,
7423 * obsolete/rnews.el, obsolete/rnewspost.el, options.el, paren.el,
7424 * paths.el, play/dissociate.el, play/doctor.el, play/hanoi.el,
7425 * play/meese.el, progmodes/compile.el, progmodes/ebrowse.el,
7426 * progmodes/hideif.el, progmodes/modula2.el, register.el, rot13.el,
7427 * saveplace.el, scroll-bar.el, server.el, sort.el, soundex.el,
7428 * term/bg-mouse.el, term/pc-win.el, term/sup-mouse.el,
7429 * term/tty-colors.el, terminal.el, textmodes/bib-mode.el,
7430 * textmodes/makeinfo.el, textmodes/page.el, textmodes/paragraphs.el,
7431 * textmodes/picture.el, textmodes/scribe.el, textmodes/spell.el,
7432 * textmodes/tex-mode.el, textmodes/text-mode.el,
7433 * textmodes/underline.el, thingatpt.el, time.el, timer.el,
7434 * unused.el, vcursor.el, version.el, vms-patch.el, vmsproc.el,
7435 * vt100-led.el, window.el: Some fixes to follow coding conventions in
7436 files maintained by FSF.
7437
7438 2001-07-13 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7439
7440 * arc-mode.el: A fix to follow coding conventions.
7441
7442 * bindings.el: Ditto.
7443
7444 * cdl.el: Ditto.
7445
7446 * comint.el: Ditto.
7447
7448 * cus-start.el: Ditto.
7449
7450 * shell.el: Ditto.
7451
7452 * skeleton.el: Ditto.
7453
7454 2001-07-13 Stefan Monnier <monnier@cs.yale.edu>
7455
7456 * info.el (Info-build-node-completions):
7457 Make Info-current-file-completions buffer local.
7458
7459 2001-07-13 Gerd Moellmann <gerd@gnu.org>
7460
7461 * which-func.el (which-func-mode, which-func-ff-hook)
7462 (which-function-mode): Remove references to which-func-mode-global.
7463
7464 * calendar/cal-islam.el (calendar-goto-islamic-date):
7465 Add autoload cookie.
7466
7467 * play/fortune.el: Add types to defcustoms.
7468
7469 2001-07-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7470
7471 * language/czech.el: A fix to follow coding conventions.
7472
7473 2001-07-11 Eli Zaretskii <eliz@is.elta.co.il>
7474
7475 * speedbar.el (speedbar-supported-extension-expressions): Add .g
7476 to the extension list, for antlr-mode. From Christoph Wedler
7477 <Christoph.Wedler@sap.com>.
7478
7479 2001-07-11 Stefan Monnier <monnier@cs.yale.edu>
7480
7481 * vc.el (vc-prefix-map): Moved back to vc-hooks.el.
7482 (vc-dired-mode-map): Fix the madness.
7483
7484 * vc-hooks.el (vc-mode): Dummy function for doc purposes.
7485 (vc-prefix-map): Moved back from vc.el.
7486
7487 2001-07-11 Gerd Moellmann <gerd@gnu.org>
7488
7489 * mail/mail-extr.el (mail-extr-all-top-level-domains):
7490 Increase the size of the obarray.
7491 (mail-extr-all-top-level-domains): Add more toplevel domains,
7492 add more long names.
7493 From: Per Starback <starback@ling.uu.se>.
7494
7495 2001-07-11 Eli Zaretskii <eliz@is.elta.co.il>
7496
7497 * progmodes/ada-prj.el: Say that the file _is_ part of Emacs.
7498 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7499
7500 * progmodes/ada-mode.el: Ditto.
7501
7502 * progmodes/ada-xref.el: Ditto.
7503
7504 2001-07-11 Miles Bader <miles@gnu.org>
7505
7506 * finder.el (finder-insert-at-column): Also move to the next line
7507 if exactly at COLUMN.
7508
7509 2001-07-10 Gerd Moellmann <gerd@gnu.org>
7510
7511 * help.el (describe-function-1): When printing FUNCTION's
7512 documentation, don't assume FUNCTION is a symbol.
7513
7514 * startup.el (normal-top-level): Don't operate on the initial
7515 frame if we failed to create one.
7516
7517 2001-07-10 Martin Stjernholm <bug-cc-mode@gnu.org>
7518
7519 * cc-cmds.el (c-indent-exp): Keep the indentation of the block
7520 itself, i.e. only indent the contents in it.
7521
7522 2001-07-10 Markus Rost <rost@math.ohio-state.edu>
7523
7524 * mail/rmail.el (rmail-show-message): Show beginning of message in
7525 all windows containing it.
7526
7527 2001-07-10 Eli Zaretskii <eliz@is.elta.co.il>
7528
7529 * term/tty-colors.el: Fix the header line and copyright years.
7530
7531 2001-07-09 Gerd Moellmann <gerd@gnu.org>
7532
7533 * emacs-lisp/advice.el (ad-make-advised-definition): If the
7534 original definition has an interactive form, but is Elp
7535 instrumented, use the interactive form of the function called by
7536 elp-wrapper.
7537
7538 * winner.el (winner-equal): Make it a defun. Don't compare Winner
7539 configurations with compare-window-configuration; they aren't
7540 window configurations.
7541
7542 * net/ange-ftp.el (ange-ftp-file-modtime): Check a 213 response
7543 from the server for the format we expect. Don't use it if it
7544 doesn't look like what the Internet draft for FTP extensions specifies.
7545
7546 * toolbar/*.pbm: Cleaned up.
7547 From Luis Fernandes <elf@ee.ryerson.ca>.
7548
7549 2001-07-09 Martin Stjernholm <bug-cc-mode@gnu.org>
7550
7551 * cc-cmds.el: Extended the kludge to interoperate with the
7552 delsel and pending-del packages wrt to the new function
7553 `c-electric-delete-forward'.
7554
7555 2001-07-08 Stefan Monnier <monnier@cs.yale.edu>
7556
7557 * emacs-lisp/easy-mmode.el (define-minor-mode): Use eval-after-load
7558 to delay the call to <mode> for global minor modes.
7559 (easy-mmode-define-navigation): Only recenter if interactive.
7560
7561 2001-07-06 Gerd Moellmann <gerd@gnu.org>
7562
7563 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind TAB
7564 to lisp-indent-line.
7565
7566 * net/ange-ftp.el (ange-ftp-file-modtime): Ignore 226 responses
7567 from the server. Call encode-time only when we are sure that we
7568 got a 213 response.
7569
7570 2001-07-06 Simon Josefsson <jas@extundo.com>
7571
7572 * mail/sendmail.el (mail-specify-envelope-from): Doc fix.
7573 (mail-envelope-from): New user option.
7574 (sendmail-send-it): Use it.
7575
7576 2001-07-06 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7577
7578 * ps-print.el: Use locale dependant date to print date in header.
7579 Doc fix.
7580 (ps-print-version): New version number (6.5.3).
7581 (ps-right-header, ps-right-footer): Initialization and doc fix.
7582 (ps-time-stamp-locale-default): New fun.
7583
7584 2001-07-06 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
7585
7586 * mail/rmailout.el (rmail-output): Fix duplicate MIME-Version:
7587 field problem with MIME-mode.
7588
7589 * mail/rmailout.el (rmail-output): Fix bug in MIME-mode.
7590
7591 2001-07-06 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
7592
7593 * mail/rmail.el (rmail-reply): Don't forget to narrow header in
7594 MIME-mode.
7595
7596 2001-07-06 Eli Zaretskii <eliz@is.elta.co.il>
7597
7598 * bindings.el (mode-line-mule-info): Don't show the tip with
7599 buffer-file-coding-system if that is nil.
7600
7601 2001-07-05 Gerd Moellmann <gerd@gnu.org>
7602
7603 * calendar/todo-mode.el (todo-top-priorities): Use delete-region
7604 instead of kill-line.
7605
7606 * play/pong.el: Fix first line. From Pavel Jan\e,Bm\e(Bk
7607 <Pavel@Janik.cz>.
7608
7609 * battery.el (battery-update): Add help-echo. From Pavel Jan\e,Bm\e(Bk
7610 <Pavel@Janik.cz>.
7611
7612 2001-07-04 Gerd Moellmann <gerd@gnu.org>
7613
7614 * font-lock.el (c-font-lock-keywords-3): When matching something
7615 like `struct X Y', finish with point after Y.
7616
7617 2001-07-04 Simon Josefsson <jas@extundo.com>
7618
7619 * mail/sendmail.el (sendmail-send-it): Look at `sendmail-program'
7620 in caller buffer.
7621
7622 2001-07-03 Eli Zaretskii <eliz@is.elta.co.il>
7623
7624 * find-file.el (ff-find-the-other-file): Use file-name-nondirectory
7625 instead of string-match to find the basename of the file.
7626 From Pascal Obry <p.obry@wanadoo.fr>.
7627
7628 * net/browse-url.el (browse-url-default-windows-browser):
7629 Support the MS-DOS port when it runs on Windows.
7630 (browse-url-browser-function) [ms-dos]: Default to
7631 browse-url-default-windows-browser.
7632
7633 * help.el (locate-library): Enable code that looks for compressed
7634 libraries if auto-compression-mode is on.
7635
7636 2001-07-02 Stefan Monnier <monnier@cs.yale.edu>
7637
7638 * info.el (Info-clone-buffer-hook): Really unconditionally copy marker.
7639
7640 2001-07-02 Gerd Moellmann <gerd@gnu.org>
7641
7642 * emacs-lisp/cl-macs.el (cl-do-arglist): Revert change of 2000-10-15.
7643
7644 2001-07-02 Eli Zaretskii <eliz@is.elta.co.il>
7645
7646 * allout.el: Fix the header line, so that finder.el recognizes it.
7647 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
7648
7649 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Doc fix.
7650 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
7651
7652 2001-06-29 Eli Zaretskii <eliz@is.elta.co.il>
7653
7654 * term/w32-win.el (x-colors): Add colors from the recent rgb.txt file.
7655
7656 * ps-bdf.el (bdf-directory-list): Use the value relative to
7657 installation-directory for MS-Windows as well.
7658
7659 2001-06-29 Richard M. Stallman <rms@gnu.org>
7660
7661 * wid-edit.el (widget-color-sample-face-get):
7662 Return ((foreground-color . COLOR)) instead of constructing a face.
7663
7664 2001-06-29 Eli Zaretskii <eliz@is.elta.co.il>
7665
7666 * faces.el (region): Change the background color for the
7667 light-background color display to lightgoldenrod2, to make it
7668 visible on some laptops.
7669
7670 2001-06-28 Richard M. Stallman <rms@gnu.org>
7671
7672 * mail/rmail.el (rmail-reformat-message): Bind inhibit-read-only to t.
7673 (rmail-msg-restore-non-pruned-header): Likewise.
7674 If point was in the old pruned header, put it at the top.
7675 (rmail-msg-prune-header): If point was at the top, keep it there.
7676
7677 * mail/rmail.el (rmail-narrow-to-non-pruned-header): New function.
7678 (rmail-retry-failure): Use rmail-narrow-to-non-pruned-header.
7679
7680 2001-06-28 Stefan Monnier <monnier@cs.yale.edu>
7681
7682 * info.el (Info-clone-buffer-hook): Unconditionally copy marker.
7683
7684 2001-06-28 Karl Fogel <kfogel@red-bean.com>
7685
7686 * saveplace.el: Update maintainer email address.
7687
7688 2001-06-27 Francesco Potorti` <pot@gnu.org>
7689
7690 * uniquify.el: (uniquify-rationalize-file-buffer-names):
7691 Undo previous change.
7692
7693 2001-06-27 Francesco Potorti` <pot@gnu.org>
7694
7695 * uniquify.el (uniquify-rationalize-file-buffer-names): Do a
7696 preliminary quick reordering. Can speed things up dramatically.
7697
7698 2001-06-26 Richard M. Stallman <rms@gnu.org>
7699
7700 * dired.el (dired-get-filename): A file name starting with ~
7701 is not absolute in this context.
7702
7703 * which-func.el (which-func-maxout): Increase default to 500000.
7704 (which-function-mode): This is now the "real" name of the function.
7705 (which-func-mode): Now an alias.
7706 (which-func-mode-global): Name deleted.
7707
7708 * progmodes/hideshow.el (hs-minor-mode-map): Use mouse-2, not
7709 button-2, when binding hs-mouse-toggle-hiding.
7710
7711 2001-06-26 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
7712
7713 * mail/rmail.el (rmail-msg-restore-non-pruned-header): New function.
7714 (rmail-msg-prune-header): Likewise.
7715 (rmail-toggle-header): Use `rmail-msg-restore-non-pruned-header'
7716 and `rmail-msg-prune-header'.
7717
7718 2001-06-25 Stefan Monnier <monnier@cs.yale.edu>
7719
7720 * textmodes/fill.el (fill-region-as-paragraph): Don't look further
7721 back than LINEBEG.
7722
7723 2001-06-25 Eli Zaretskii <eliz@is.elta.co.il>
7724
7725 * xt-mouse.el (xterm-mouse-event): If the buffer displayed in the
7726 window where they clicked the mouse has a header line, adjust
7727 vertical movement by one.
7728
7729 2001-06-25 Milan Zamazal <pdm@zamazal.org>
7730
7731 * progmodes/glasses.el (glasses-make-readable): Consider underscores
7732 too when separating a parenthesis.
7733
7734 2001-06-24 Eli Zaretskii <eliz@is.elta.co.il>
7735
7736 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
7737 (bookmark-bmenu-hide-filenames): Add help-echo to
7738 mouse-highlighted text.
7739 (bookmark-bmenu-show-filenames): Remove help-echo property from
7740 the whitespace.
7741
7742 2001-06-23 Eli Zaretskii <eliz@is.elta.co.il>
7743
7744 * files.el (auto-mode-alist): Add configure.ac (autoconf).
7745 From Karl Eichwalder <ke@suse.de>.
7746
7747 2001-06-23 Richard M. Stallman <rms@gnu.org>
7748
7749 * emacs-lisp/lisp-mode.el (eval-last-sexp): Doc fix.
7750
7751 * progmodes/cc-styles.el (c-set-style): Don't specify initial
7752 contents for completing-read.
7753
7754 2001-06-22 Richard M. Stallman <rms@gnu.org>
7755
7756 * menu-bar.el (menu-bar-make-toggle): Construct the
7757 function's doc string from HELP, not DOC, and make it accurate by
7758 adding "Toggle whether to " at the front and downcasing the initial.
7759 Change the HELP arg in some calls to make it fit this usage.
7760
7761 * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error):
7762 Undo previous change.
7763
7764 2001-06-22 Eli Zaretskii <eliz@is.elta.co.il>
7765
7766 * indent.el (indent-relative-maybe, indent-relative): Doc fix.
7767
7768 * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error): Doc fix.
7769
7770 2001-06-21 Eli Zaretskii <eliz@is.elta.co.il>
7771
7772 * toolbar/tool-bar.el (tool-bar-setup): Remove the EXIT button.
7773
7774 * dabbrev.el (dabbrev--select-buffers): Fix last change.
7775
7776 2001-06-20 Richard M. Stallman <rms@gnu.org>
7777
7778 * dabbrev.el (dabbrev--make-friend-buffer-list): New function,
7779 broken out from dabbrev--find-expansion. Handle minibuffer
7780 specially here.
7781 (dabbrev--find-expansion): Simplify code in various ways.
7782 Don't treat minibuffers specially.
7783 Call dabbrev--make-friend-buffer-list.
7784 (dabbrev--select-buffers): Don't treat minibuffers specially. Simplify.
7785 (dabbrev--scanning-message): Do nothing when minibuffer is current.
7786
7787 2001-06-19 John Wiegley <johnw@gnu.org>
7788
7789 * eshell/eshell.el: Don't load in esh-util if it's already loaded.
7790 Also, added a comment describing how to greatly speedup Eshell
7791 loadup time, by concatenating together all of Eshell's .elc files.
7792
7793 2001-06-19 John Wiegley <johnw@gnu.org>
7794
7795 * eshell/esh-mode.el: Disabled a test that often yields false failures.
7796
7797 2001-06-19 Eli Zaretskii <eliz@is.elta.co.il>
7798
7799 * woman.el (WoMan-highlight-references): Add help-echo to
7800 mouse-highlighted text.
7801
7802 2001-06-18 Stefan Monnier <monnier@cs.yale.edu>
7803
7804 * textmodes/sgml-mode.el (sgml-mode-map): Fix thinko.
7805
7806 2001-06-18 Gerd Moellmann <gerd@gnu.org>
7807
7808 * international/quail.el (quail-start-conversion):
7809 Reset quail-translating to nil.
7810
7811 * antlr-mode.el (antlr-mode): Check that `c-Java-access-key' is
7812 bound. Suggested by David B. Malkovsky <David.Malkovsky@sas.com>.
7813
7814 2001-06-18 Eli Zaretskii <eliz@is.elta.co.il>
7815
7816 * bs.el (bs--get-name, bs--get-file-name): Add help-echo to
7817 mouse-highlighted text.
7818
7819 * dired.el (dired-mark-pop-up): Fix last change.
7820
7821 2001-06-17 Eli Zaretskii <eliz@is.elta.co.il>
7822
7823 * calendar/calendar.el (generate-calendar-month): Add help-echo to
7824 mouse-highlighted text.
7825
7826 * net/quickurl.el (quickurl-url-file): Run through
7827 convert-standard-filename.
7828 (quickurl-list-populate-buffer): Add help-echo to
7829 mouse-highlighted text.
7830 (top-level): Update Dave's URL.
7831
7832 * textmodes/tex-mode.el (tex-validate-buffer): Add help-echo to
7833 mouse-highlighted text.
7834
7835 * textmodes/page-ext.el (pages-copy-header-and-position):
7836 Add help-echo to mouse-highlighted text.
7837
7838 * tar-mode.el (tar-header-block-summarize): Add help-echo to
7839 mouse-highlighted text.
7840
7841 * replace.el (occur): Add help-echo to mouse-highlighted text.
7842
7843 * progmodes/sh-script.el (sh-mark-line): Add help-echo to
7844 mouse-highlighted text.
7845
7846 * progmodes/cpp.el (cpp-make-button): Add help-echo to
7847 mouse-highlighted text.
7848
7849 * progmodes/compile.el (compile-reinitialize-errors):
7850 Add help-echo to mouse-highlighted messages.
7851 (compilation-forget-errors): Remove help-echo property as well.
7852
7853 * play/landmark.el (lm-plot-square, lm-init-display):
7854 Add help-echo to mouse-highlighted text.
7855
7856 * play/gomoku.el (gomoku-plot-square, gomoku-init-display):
7857 Add help-echo to mouse-highlighted text.
7858
7859 * dired.el (dired-insert-set-properties): Add help-echo to
7860 mouse-highlighted text.
7861 (dired-mark-pop-up): Remove help-echo property from the file name.
7862
7863 * comint.el (comint-send-input): Add help-echo to
7864 mouse-highlighted text.
7865
7866 * buff-menu.el (list-buffers-noselect): Add help-echo to
7867 mouse-highlighted text.
7868
7869 * arc-mode.el (archive-summarize-files): Add help-echo to
7870 mouse-highlighted text.
7871
7872 * ffap.el (ffap-machine-p): Always return nil if
7873 open-network-stream is not fboundp.
7874
7875 2001-06-17 Stefan Monnier <monnier@cs.yale.edu>
7876
7877 * textmodes/sgml-mode.el: Move `provide' to the end. Update copyright.
7878 (sgml-mode-map): Use `make-keymap' rather than make the keymap by hand.
7879 Bind the latin-1 charset-char to sgml-maybe-name-self rather than
7880 incorrectly binding chars between 128 and 256 to it.
7881 (sgml-maybe-name-self): Handle latin-1 chars properly.
7882 (sgml-tags-invisible): Bind buffer-file-name to nil.
7883 Use unwind-protect and restore-buffer-modified-p.
7884 (sgml-point-entered): Use buffer-substring-no-properties.
7885 (html-tag-alist): Add `div' and `span' and fix backquote/unquote typos.
7886 (html-mode): Don't force `imenu-sort-function'.
7887
7888 2001-06-15 Eli Zaretskii <eliz@is.elta.co.il>
7889
7890 * tar-mode.el: Fix the copyright notice.
7891
7892 * font-lock.el (font-lock-comment-face): For tty's with dark
7893 background, use "red1", since "lightred" is not one of the colors
7894 recognized by tty-colors.el.
7895
7896 * tar-mode.el (tar-extract): Call generate-new-buffer-name to
7897 create a buffer for extracted file, in case there's more than one
7898 file by that name in an archive, possibly in different
7899 directories. From Kevin Rodgers <kevinr@ihs.com>.
7900
7901 * format.el (format-alist): Doc fix. Suggested by Alex Schroeder
7902 <alex@gnu.org>.
7903
7904 2001-06-15 Miles Bader <miles@gnu.org>
7905
7906 * textmodes/texinfmt.el (texinfo-format-syntax-table):
7907 Revert previous change.
7908
7909 2001-06-14 Richard M. Stallman <rms@gnu.org>
7910
7911 * replace.el (keep-lines-read-args): Return just a regexp.
7912 Provide nil for the region args.
7913 (keep-lines, flush-lines, how-many):
7914 Calculate the defaults for the region here, when args are nil.
7915
7916 2001-06-14 Eli Zaretskii <eliz@is.elta.co.il>
7917
7918 * rot13.el (rot13-other-window): Some more doc fix.
7919
7920 2001-06-14 Per Starback <starback@ling.uu.se>
7921
7922 * replace.el (case-replace, query-replace-from-history-variable)
7923 (query-replace-to-history-variable, keep-lines-read-args)
7924 (occur-revert-function, query-replace-help): Dox fix.
7925
7926 2001-06-14 Eli Zaretskii <eliz@is.elta.co.il>
7927
7928 * rot13.el (rot13-other-window): Doc fix.
7929
7930 2001-06-14 Miles Bader <miles@gnu.org>
7931
7932 * textmodes/texinfo.el (texinfo-mode-syntax-table): Change syntax
7933 of " and \ to "." (punctuation).
7934 * textmodes/texinfmt.el (texinfo-format-syntax-table): Likewise.
7935
7936 2001-06-13 Richard M. Stallman <rms@gnu.org>
7937
7938 * emacs-lisp/backquote.el (backquote-process): Handle `[,@SYMBOL].
7939
7940 * simple.el (shell-command-on-region): Never kill the
7941 *Shell Command Output* buffer.
7942
7943 2001-06-13 Stefan Monnier <monnier@cs.yale.edu>
7944
7945 * diff-mode.el (diff-font-lock-keywords): Fix unanchored regexp.
7946
7947 2001-06-10 Stefan Monnier <monnier@cs.yale.edu>
7948
7949 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
7950 New var, to recognize ${ $' and PODs.
7951 (perl-font-lock-syntactic-face-function): New function.
7952 (perl-mode): Use them.
7953 (perl-continuation-line-p): New function, from perl-calculate-indent.
7954 (perl-calculate-indent): Use it, to properly handle continuation
7955 lines of continuation lines.
7956
7957 2001-06-10 Eli Zaretskii <eliz@is.elta.co.il>
7958
7959 * server.el (server-process, server-buffer-clients): Doc fix.
7960 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
7961
7962 2001-06-09 John Wiegley <johnw@gnu.org>
7963
7964 * eshell/esh-cmd.el (eshell-exit-success-p): Use a string-match to
7965 test if the last command was Lisp or not.
7966 (eshell-rewrite-if-command): "if" syntax is "if A B C", not "if A
7967 B x C".
7968
7969 2001-06-08 Eli Zaretskii <eliz@is.elta.co.il>
7970
7971 * dos-w32.el (grep-regexp-alist): Remove definition, since the
7972 general one on compile.el supports drive letters.
7973
7974 2001-06-08 Carsten Dominik <dominik@strw.leidenuniv.nl>
7975
7976 * textmodes/reftex-ref.el (reftex-select-label-help): Add "z"
7977 key description.
7978
7979 * textmodes/reftex-sel.el (reftex-select-jump): New command.
7980
7981 * textmodes/reftex-toc.el (reftex-toc-help): Add "z" key description.
7982 (reftex-toc-jump): New command.
7983
7984 * textmodes/reftex-cite.el (reftex-parse-bibitem): Regexp changed
7985 to parse international characters as well.
7986
7987 * textmodes/reftex.el: Add autoloads for `reftex-varioref-vref',
7988 `reftex-fancyref-fref', `reftex-fancyref-Fref'.
7989
7990 * textmodes/reftex-vars.el: Protect single backslash in docstrings.
7991
7992 * textmodes/reftex-dcr.el (reftex-view-crossref): Add SPACE and
7993 TAB to the key separators.
7994
7995 2001-06-07 Eli Zaretskii <eliz@is.elta.co.il>
7996
7997 * international/mule.el (auto-coding-alist): Remove redundant
7998 up-cased versions of the extensions (auto-coding-alist-lookup is
7999 case-insensitive where needed). Recognize .gz, .Z, .bz, .bz2, and
8000 .gpg files as binary. Suggested by Karl Berry <karl@gnu.org>.
8001
8002 2001-06-05 Eli Zaretskii <eliz@is.elta.co.il>
8003
8004 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Add a doc string.
8005
8006 2001-06-01 Richard M. Stallman <rms@gnu.org>
8007
8008 * help.el (describe-variable): Put value on same line
8009 with preceding text, if it is short enough to look good that way.
8010
8011 2001-06-01 Eli Zaretskii <eliz@is.elta.co.il>
8012
8013 * term/internal.el (IT-unicode-translations): New variable.
8014 (IT-setup-unicode-display): New function.
8015
8016 2001-06-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8017
8018 * ps-print.el: Handle before-string and after-string overlay properties
8019 in ps-print-*-with-faces commands. Doc fix.
8020 (ps-print-version): New version number (6.5.2).
8021 (ps-e-overlay-end): Alias for overlay-end to avoid compilation gripes
8022 for XEmacs.
8023 (ps-prefix-quote): Doc fix.
8024 (ps-setup, ps-print-quote, ps-generate-postscript-with-faces): Code fix.
8025 (ps-basic-plot-str, ps-plot-string): New funs.
8026
8027 2001-05-31 Stefan Monnier <monnier@cs.yale.edu>
8028
8029 * progmodes/etags.el (tags-compression-info-list): Fix docstring
8030 and :type spec.
8031
8032 2001-05-31 Gerd Moellmann <gerd@gnu.org>
8033
8034 * international/mule-cmds.el (inactivate-input-method):
8035 Set input-method-function to nil.
8036
8037 * xml.el (xml-parse-tag): The document may contain invalid characters.
8038 From ShengHuo ZHU <zsh@cs.rochester.edu>
8039
8040 2001-05-31 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
8041
8042 * mail/rmailsum.el (rmail-message-subject-p): Don't call
8043 `rmail-summary-line-decoder' if the message does not have
8044 a Subject: field.
8045
8046 * mail/rmail.el (rmail-revert): Modify to work in rmail-view-buffer.
8047
8048 * mail/rmail.el (rmail-insert-mime-resent-message-function):
8049 New variable.
8050 (rmail-resend): Modify to work in `rmail-view-buffer'; call
8051 `rmail-insert-mime-resent-message-function' if `rmail-enable-mime'
8052 is non-nil.
8053
8054 2001-05-30 Stefan Monnier <monnier@rum.cs.yale.edu>
8055
8056 * textmodes/tex-mode.el (latex-find-indent): Handle the BOBP case.
8057
8058 2001-05-29 Sam Steingold <sds@gnu.org>
8059
8060 * faces.el (face-valid-attribute-values): Bind `valid' directly
8061 instead of using `setq'.
8062
8063 * textmodes/tex-mode.el (tex-feed-input, tex-display-shell):
8064 Use `tex-shell-buf'.
8065 (tex-shell-proc): Use `tex-shell-running'.
8066 (tex-shell-buf-no-error): New function.
8067 (tex-send-tex-command): Use it.
8068 (tex-shell-running): Kill tex-shell when the buffer is dead for w32.
8069 (tex-kill-job): Check the process before calling `quit-process'.
8070
8071 2001-05-29 Gerd Moellmann <gerd@gnu.org>
8072
8073 * international/utf-8.el (ccl-decode-mule-utf-8): Handle invalid
8074 UTF-8 sequences.
8075
8076 2001-05-28 Miles Bader <miles@gnu.org>
8077
8078 * comint.el (comint-carriage-motion): Renamed from
8079 `comint-cr-magic'. Operate on the buffer instead of the string
8080 (for use as a comint post-output filter, instead of as a
8081 pre-output filter). Handle backspaces too. Add to the
8082 `comint-output-filter-functions' hook instead of
8083 `comint-preoutput-filter-functions'.
8084
8085 2001-05-28 Gerd Moellmann <gerd@gnu.org>
8086
8087 * language/japan-util.el (japanese-hankaku): Prefer the charset
8088 `jisx0201' when the optional argument `ascii-only' is not specified.
8089 (japanese-hankaku-region): Ditto.
8090 From Katsumi Yamaoka <yamaoka@jpl.org>
8091
8092 2001-05-28 Stefan Monnier <monnier@cs.yale.edu>
8093
8094 * textmodes/outline.el (outline-mode): Fix font-lock-defaults.
8095 (outline-invisible-p): New function.
8096 (hide-leaves): Save excursion.
8097 (hide-other): Stop looping when reaching bobp.
8098
8099 2001-05-28 Eli Zaretskii <eliz@is.elta.co.il>
8100
8101 * cus-edit.el (custom-file): Fix last change.
8102
8103 2001-05-27 Stefan Monnier <monnier@cs.yale.edu>
8104
8105 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload): Use the
8106 same definition in byte-compile-function-environment as `autoload'
8107 would put in `symbol-function'.
8108
8109 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Complete Dave's
8110 patch to correct the error message as well.
8111
8112 2001-05-27 Eli Zaretskii <eliz@is.elta.co.il>
8113
8114 * cus-edit.el (custom-file): Don't assume we were invoked with -q
8115 unless ~/.emacs exists.
8116
8117 * novice.el (enable-command): If user-init-file is nil or does not
8118 exist, default to "~/.emacs" (~/_emacs on DOS and, maybe, Windows).
8119
8120 2001-05-25 Stefan Monnier <monnier@cs.yale.edu>
8121
8122 * textmodes/tex-mode.el (tex-mode-syntax-table): Add ^.
8123 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
8124 Allow spaces around macro arguments.
8125 (tex-mode-map): Inherit from text-mode-map, but rebind \t to
8126 indent-for-tab-command.
8127 (latex-mode-map, plain-tex-mode-map): New keymaps.
8128 Inherit from tex-mode-map.
8129 (tex-common-initialization): Don't setup the keymap any more
8130 since it's now done right by define-derived-mode.
8131 (latex-mode): Set skeleton-end-hook to nil.
8132 (latex-skeleton-end-hook): Remove.
8133 (tex-latex-block, latex-insert-item): Simplify.
8134 (latex-syntax-after): Use following-char rather than char-after.
8135 (tex-discount-args-cmds, tex-count-words): New functions.
8136
8137 * textmodes/tildify.el (tildify-ignored-environments-alist):
8138 Recognize \verb* as well.
8139
8140 * progmodes/perl-mode.el (perl-mode): Use define-derived-mode.
8141 (perl-comment-indent): Simplify to let newcomment.el do its job.
8142 (perl-electric-terminator, perl-calculate-indent, perl-indent-exp)
8143 (perl-mark-function): Cleanup the namespace.
8144 (perl-calculate-indent): Don't be fooled by nested functions.
8145
8146 * speedbar.el (speedbar-find-selected-file): RE-quote the filename.
8147
8148 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
8149 Fix the arg of `load'. From Dave Love <fx@gnu.org>.
8150
8151 2001-05-25 Andrew Choi <akochoi@i-cable.com>
8152
8153 * international/titdic-cnv.el (ctlau-gb-converter): `\' should
8154 actually be `\\'.
8155 (ctlau-b5-converter): Likewise.
8156
8157 2001-05-24 Andrew Choi <akochoi@i-cable.com>
8158
8159 * international/titdic-cnv.el (quail-misc-package-ext-info):
8160 Change CTLauB.el to CTLau-b5.el.
8161
8162 2001-05-23 Stefan Monnier <monnier@cs.yale.edu>
8163
8164 * gud.el (gud-gdb-run-command-fetch-lines): Use forward-line
8165 rather than beginning-of-line to avoid problems with fields.
8166 (gud-perldb-massage-args): Use unless and push.
8167 (gud-chdir-before-run): New var.
8168 (gud-common-init): Use it.
8169
8170 2001-05-24 Andrew Choi <akochoi@i-cable.com>
8171
8172 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
8173 delete entries for chinese-ctlau and chinese-ctlaub.
8174 (quail-misc-package-ext-info): Add entries for chinese-ctlau and
8175 chinese-ctlaub.
8176 (ctlau-converter, ctlau-gb-converter, ctlau-b5-converter):
8177 New functions.
8178
8179 2001-05-22 Gerd Moellmann <gerd@gnu.org>
8180
8181 * cus-edit.el (custom-comment-show): Remove debug code.
8182
8183 * language/japan-util.el (japanese-symbol-table): Fix handling of
8184 Japanese long tone sign. From Kenichi Handa <handa@etl.go.jp>.
8185
8186 2001-05-21 Stefan Monnier <monnier@cs.yale.edu>
8187
8188 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly):
8189 Renamed by removing the silly `-flag' suffix.
8190 (diff-mode, diff-minor-mode, diff-find-source-location): Update.
8191
8192 2001-05-20 Stefan Monnier <monnier@cs.yale.edu>
8193
8194 * replace.el (keep-lines-read-args): Use `copy-marker'.
8195 (how-many): Save excursion properly.
8196 (occur-mode): Use define-derived-mode.
8197 (perform-replace): Use with-current-buffer.
8198
8199 2001-05-20 Richard M. Stallman <rms@gnu.org>
8200
8201 * play/landmark.el (lm): Use "p" not "P" for interactive spec.
8202
8203 * mail/rmail.el (rmail-retry-failure): Do save-window-excursion.
8204
8205 * info.el (Info-read-subfile): Widen before finding the
8206 desired node in the subfile.
8207
8208 * startup.el (command-line-1): When >2 files visited,
8209 leave the last one visible, and make that the selected window.
8210
8211 2001-05-20 Gerd Moellmann <gerd@gnu.org>
8212
8213 * font-lock.el (lisp-font-lock-keywords-1): Add `defvaralias'.
8214
8215 2001-05-20 Eli Zaretskii <eliz@is.elta.co.il>
8216
8217 * international/ccl.el (define-ccl-program): Fix a typo.
8218 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8219
8220 * international/mule.el (decode-char): Fix a typo. From Pavel
8221 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8222
8223 * textmodes/artist.el (artist-mode): Fix a typo. From Pavel
8224 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8225
8226 * frame.el (automatic-hscrolling): Fix a typo. From Pavel
8227 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8228
8229 2001-05-18 Sam Steingold <sds@gnu.org>
8230
8231 * pcvs-defs.el (cvs-mode-map): Bind "z" to `kill-this-buffer'
8232 and [RET] to `cvs-mode-find-file'.
8233
8234 2001-05-18 John Wiegley <johnw@gnu.org>
8235
8236 * eshell/esh-ext.el (eshell-explicit-command-char): A new
8237 configuration variable, which determines the initial character
8238 that forces use of an external version of a command. The default
8239 is *, but may be set to \, for example.
8240
8241 * eshell/esh-ext.el (eshell-explicit-command):
8242 Use `eshell-explicit-command-char' instead of ?*.
8243
8244 * eshell/esh-cmd.el (eshell/which):
8245 Use `eshell-explicit-command-char' instead of ?*.
8246
8247 * eshell/em-cmpl.el (eshell-completion-command-name)
8248 (eshell-complete-commands-list): Use `eshell-explicit-command-char'
8249 instead of ?*.
8250
8251 2001-05-18 Gerd Moellmann <gerd@gnu.org>
8252
8253 * net/ange-ftp.el (ange-ftp-fix-name-for-vms): Reverse args of
8254 subst-char-in-string.
8255 (ange-ftp-after-parse-ls-hook): New variable.
8256 (ange-ftp-ls): Run that hook.
8257 From Peter Milliken <Peter.Milliken@GTECH.COM>.
8258
8259 * tmm.el (tmm-get-keymap): Fix handling of :filter.
8260 (tmm-add-prompt): Bind buffer-read-only to nil when inserting
8261 text into *Completions*.
8262
8263 * net/goto-addr.el (goto-address-at-point): Deal with URLs
8264 part of which look like email addresses.
8265
8266 2001-05-18 Andrew Innes <andrewi@gnu.org>
8267
8268 * makefile.w32-in (compile-files-CMD, bootstrap-clean-CMD):
8269 Use . instead of absolute path for lisp dir, to avoid bug in W2K
8270 cmd.exe's handling of FOR loops.
8271 (autoloads): Set find-file-suppress-same-file-warnings to t to
8272 avoid slew of spurious messages.
8273
8274 2001-05-18 Simon Josefsson <simon@josefsson.org>
8275
8276 * mail/smtpmail.el (maybe-append-domain): Renamed to
8277 `smtpmail-maybe-append-domain'.
8278 (smtpmail-via-smtp): Use the new name.
8279
8280 * net/browse-url.el (browse-url-browser-function): Add kde.
8281 (browse-url-kde-program, browse-url-kde-args): New variables.
8282 (browse-url-kde): New function.
8283
8284 2001-05-18 Miles Bader <miles@gnu.org>
8285
8286 * simple.el (delete-horizontal-space, just-one-space):
8287 Use `constrain-to-field' instead of `field-end'/`field-beginning',
8288 because it's more efficient for large files.
8289
8290 2001-05-17 Gerd Moellmann <gerd@gnu.org>
8291
8292 * mail/rmail.el (rmail-require-mime-maybe): New function.
8293 (rmail): Use it.
8294 (rmail-mode): Handle the case of finding Rmail files.
8295
8296 * emacs-lisp/elp.el (elp-instrument-function): Handle advised
8297 functions.
8298
8299 2001-05-17 Stefan Monnier <monnier@cs.yale.edu>
8300
8301 * jit-lock.el (jit-lock-after-change): Check the font-lock-multiline
8302 text-property after moving to the beginning of line and regardless
8303 of the value of font-lock-multiline.
8304
8305 2001-05-17 Gerd Moellmann <gerd@gnu.org>
8306
8307 * startup.el (fancy-splash-screens): Ignore events on the mode-line.
8308
8309 * net/ange-ftp.el (ange-ftp-write-region): Make sure to record the
8310 last coding system used before calling set-buffer-modified-p
8311 because that function changes last-coding-system.
8312
8313 2001-05-17 Eli Zaretskii <eliz@is.elta.co.il>
8314
8315 * files.el (switch-to-buffer-other-window)
8316 (switch-to-buffer-other-frame): Add an xref to display-buffer in
8317 the doc string.
8318
8319 2001-05-17 Gerd Moellmann <gerd@gnu.org>
8320
8321 * language/slovak.el, language/czech.el: New maintainer.
8322
8323 2001-05-16 Sam Steingold <sds@gnu.org>
8324
8325 * emacs-lisp/cl-indent.el (toplevel): Indent the :method
8326 sub-form of `defgeneric' correctly.
8327
8328 2001-05-16 Gerd Moellmann <gerd@gnu.org>
8329
8330 * tooltip.el (tooltip) <defgroup>: Put it in `gud' group instead
8331 of `c'.
8332
8333 * textmodes/outline.el (outline-font-lock-level): Remove the
8334 condition-case, test what outline-level returns instead, to
8335 ease debugging.
8336
8337 * international/mule.el (auto-coding-regexp-alist): New user-option.
8338 (auto-coding-from-file-contents): New function.
8339 (set-auto-coding): Use it to determine a coding system.
8340
8341 2001-05-15 Gerd Moellmann <gerd@gnu.org>
8342
8343 * mouse.el (mouse-delete-other-windows): Doc fix.
8344
8345 * emacs-lisp/lisp-mode.el (lisp-mode):
8346 Make font-lock-keywords-case-fold-search a buffer-local variable with
8347 make-local-variable before setting it.
8348
8349 2001-05-14 Eli Zaretskii <eliz@is.elta.co.il>
8350
8351 * emacs-lisp/elp.el (elp-instrument-package): Don't allow empty
8352 prefixes.
8353
8354 2001-05-14 Gerd Moellmann <gerd@gnu.org>
8355
8356 * hexl.el (hexl-current-address): Print a message when called
8357 interactively.
8358
8359 2001-05-11 Stefan Monnier <monnier@cs.yale.edu>
8360
8361 * gud.el (gud-jdb-build-source-files-list): Fix paren typo.
8362
8363 * pcvs-defs.el (cvs-mode-map): Don't rebind `undo'.
8364
8365 * files.el (auto-mode-alist): Add *.perl and fix the *.<rev> case.
8366
8367 2001-05-11 Gerd Moellmann <gerd@gnu.org>
8368
8369 * startup.el (command-line): If parameters have been changed in
8370 the init files which influence font selection, clear the face
8371 cache so that faces get realized with the new parameters.
8372
8373 * Makefile.in (compile-files): Redirect output of chmod to /dev/null.
8374
8375 2001-05-10 Stefan Monnier <monnier@cs.yale.edu>
8376
8377 * smerge-mode.el (smerge-mode): Force font-lock-multiline to t.
8378
8379 2001-05-10 Eli Zaretskii <eliz@is.elta.co.il>
8380
8381 * mail/emacsbug.el (report-emacs-bug): Don't switch the buffer to
8382 unibyte. Suggested by Kenichi Handa <handa@etl.go.jp>.
8383
8384 2001-05-10 Gerd Moellmann <gerd@gnu.org>
8385
8386 * net/browse-url.el (browse-url-filename-alist): Allow UNC file
8387 names for MS-Windows and MS-DOS. From Dan Holmsand <dan@eyebee.com>.
8388
8389 2001-05-09 John Wiegley <johnw@gnu.org>
8390
8391 * eshell/esh-util.el (eshell-convert-numeric-arguments):
8392 Annotated the documentation string to tell users about
8393 `eshell-no-numeric-conversions'.
8394
8395 * eshell/esh-cmd.el (eshell-lisp-command): Don't perform numeric
8396 conversions if a Lisp function has the property
8397 `eshell-no-numeric-conversions' set to a non-nil value.
8398
8399 * eshell/em-dirs.el, eshell/em-ls.el, eshell/em-script.el,
8400 eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-cmd.el: Set the
8401 property `eshell-no-numeric-conversions' on the following
8402 functions (which all deal with filesystem entities, and never Lisp
8403 numerical values): eshell/cd, eshell/pushd, eshell/popd,
8404 eshell/ls, eshell/source, eshell/., eshell/man, eshell/rm,
8405 eshell/mkdir, eshell/rmdir, eshell/mv, eshell/cp, eshell/ln,
8406 eshell/cat, eshell/make, eshell/diff, eshell/locate, eshell/occur,
8407 eshell/which, eshell/addpath.
8408
8409 2001-05-09 John Wiegley <johnw@gnu.org>
8410
8411 * eshell/esh-arg.el (eshell-parse-argument-hook): If a number is
8412 encountered as an argument, don't convert it right away, but tag
8413 the first character of the string with the text properties
8414 `number', which signifies to `eshell-lisp-command' that the
8415 argument should be passed through `string-to-number' if it is
8416 actually used in the call to a Lisp function.
8417
8418 * eshell/esh-cmd.el (eshell-lisp-command): Before calling a Lisp
8419 function, convert any string arguments that have been tagged as
8420 "numbers", by calling string-to-number.
8421
8422 * eshell/esh-util.el (eshell-number-regexp): Now that number
8423 conversions only happen for Lisp function calls, the number regexp
8424 should now match all integer and floating point forms.
8425
8426 * eshell/esh-proc.el: Disable `eshell-stop-process' and
8427 `eshell-continue-process', since they are both nonfunctional at
8428 the moment.
8429 (eshell-proc-initialize): Don't bind keys for
8430 `eshell-stop-process' or `eshell-continue-process'.
8431
8432 * eshell/em-unix.el (eshell-shuffle-files):
8433 Apply `directory-file-name' before calling `file-name-directory'.
8434
8435 * eshell/em-hist.el (eshell-add-to-history): Reference to
8436 `eshell-history-ring' needed to be `eshell-history-index'.
8437
8438 * calendar/timeclock.el (timeclock-find-discrep):
8439 Initialize `elapsed' to 0.
8440 (timeclock-find-discrep): Set `timeclock-last-event-workday' if
8441 it's still nil.
8442
8443 2001-05-09 Stefan Monnier <monnier@cs.yale.edu>
8444
8445 * arc-mode.el (archive-int-to-mode): Construct the string directly.
8446 (archive-mode): Use capitalize.
8447 (archive-unique-fname): Use make-temp-file.
8448
8449 2001-05-09 Gerd Moellmann <gerd@gnu.org>
8450
8451 * emacs-lisp/lisp-mode.el (lisp-interaction-mode): Doc fix.
8452
8453 2001-05-09 Eli Zaretskii <eliz@is.elta.co.il>
8454
8455 * tar-mode.el (tar-extract): Pay attention to the value of
8456 coding-system-for-read, if it is non-nil.
8457
8458 * calendar/holidays.el (holidays): Add an autoload cookie.
8459 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8460
8461 2001-05-08 John Wiegley <johnw@gnu.org>
8462
8463 * calendar/timeclock.el (timeclock-workday-remaining):
8464 Changed logic for determining how much time is remaining.
8465 (timeclock-workday-elapsed): Don't accept a "relative" argument
8466 for the current day's elapsed time. What could that have meant?
8467 (timeclock-workday-elapsed-string): No "relative" argument anymore.
8468 (timeclock-when-to-leave): Changed logic, similarly to what was
8469 done for `timeclock-workday-remaining'.
8470 (timeclock-find-discrep): Removed "today-only" argument, which had
8471 no meaning. Fixed some more math problems. The function now
8472 returns a three member list: (TOTAL-TIME-DISCREPANCY
8473 TODAYS-TIME-DISCREPANCY TODAYS-ELAPSED-TIME).
8474
8475 2001-05-08 Eli Zaretskii <eliz@is.elta.co.il>
8476
8477 * w32-fns.el (convert-standard-filename): Start replacing slashes
8478 from the beginning of the file name, not from where the last
8479 invalid character was. From "Andrew Maguire (SWW)"
8480 <Andrew.Maguire@Smallworld.co.uk>
8481
8482 2001-05-07 MORIOKA Tomohiko <tomo@m17n.org>
8483
8484 The following changes are to provide infrastructure for handling
8485 MIME messages to rmail. They don't affect the original behaviour
8486 if rmail-enable-mime is nil.
8487
8488 * mail/rmail.el (rmail-insert-mime-forwarded-message-function)
8489 (rmail-search-mime-message-function)
8490 (rmail-search-mime-header-function): New variables.
8491 (rmail-expunge-and-save): Be sure to set-buffer to the Rmail buffer.
8492 (rmail-quit, rmail-get-new-mail): Bury `rmail-buffer' after
8493 `rmail-view-buffer' is hidden.
8494 (rmail-toggle-header): Likewise. If rmail-enable-mime is non-nil,
8495 call rmai-show-mime-function.
8496 (rmail-display-labels): If rmail-enable-mime is non-nil, update
8497 mode-line-process of rmail-view-buffer.
8498 (rmail-set-attribute): Be sure to set-buffer to the Rmail buffer.
8499 (rmail-show-message): Be sure to call rmail-auto-file in the Rmail
8500 buffer.
8501 (rmail-next-message, rmail-next-undeleted-message): Be sure to
8502 set-buffer to the Rmail buffer.
8503 (rmail-message-regexp-p): If rmail-enable-mime is non-nil, call
8504 rmail-search-mime-header-function.
8505 (rmail-search-message): New function.
8506 (rmail-search): Call rmail-search-message to check if a message
8507 matches REGEXP, lastly update point after calling
8508 rmail-show-message.
8509 (rmail-undelete-previous-message, rmail-expunge-confirmed)
8510 (rmail-only-expunge): Be sure to set-buffer to the Rmail buffer.
8511 (rmail-reply): If rmail-enable-mime is non-nil, don't narrow to
8512 header region, refer to rmail-msgref-vector while setting the
8513 current buffer to rmail-buffer temporarily.
8514 (rmail-forward): Be sure to bind forward-buffer to the Rmail buffer.
8515 If rmail-enable-mime is non-nil, call
8516 rmail-insert-mime-forwarded-message-function instead of inserting
8517 forwarded message by itself.
8518
8519 * mail/rmailkwd.el (rmail-read-label): Be sure to work in the
8520 Rmail buffer.
8521 (rmail-set-label, rmail-next-labeled-message): Likewise.
8522
8523 * mail/rmailout.el (rmail-output-read-rmail-file-name): Be sure to
8524 set-buffer to the Rmail buffer.
8525 (rmail-output-to-rmail-file): Likewise.
8526 (rmail-output): Likewise.
8527
8528 * mail/rmailsum.el (rmail-message-subject-p): Process the result
8529 of mail-fetch-field by rmail-summary-line-decoder.
8530 (rmail-new-summary): Be sure to go to the Rmail buffer.
8531 If rmail-enable-mime is non-nil, set rmail-summary-buffer of
8532 rmail-view-buffer to nil.
8533 (rmail-summary-undelete): If rmail-enable-mime is non-nil, pop to
8534 rmail-view-buffer.
8535 (rmail-summary-scroll-msg-up): Handle rmail-view-buffer, not
8536 rmail-buffer.
8537 (rmail-summary-scroll-msg-down): Likewise.
8538 (rmail-summary-beginning-of-message): Likewise.
8539 (rmail-summary-wipe): Likewise.
8540 (rmail-summary-toggle-header): Use save-window-excursion, not
8541 save-excursion. Update point in rmail-view-buffer, not in
8542 rmail-buffer.
8543 (rmail-summary-reply): Before calling rmail-reply, set buffer to
8544 rmail-view-buffer, not rmail-buffer.
8545
8546 2001-05-07 Gerd Moellmann <gerd@gnu.org>
8547
8548 * cus-edit.el (custom-file): Signal an error if user-init-file is
8549 nil (running -q).
8550
8551 * mail/rmailedit.el (rmail-edit-mode-hook): Add :version.
8552
8553 * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
8554 Add :version.
8555
8556 * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
8557 New option.
8558 (smtpmail-via-smtp): Print warnings about unknown SMTP extensions
8559 only if smtpmail-warn-about-unknown-extensions is set.
8560
8561 * mail/rmail.el (rmail-mode-map): Use rmail-sort-by-labels
8562 instead of rmail-sort-by-keywords.
8563
8564 * mail/rmailsort.el (rmail-sort-by-labels): Renamed from
8565 rmail-sort-by-keywords.
8566
8567 * mail/rmailsum.el (rmail-summary-sort-by-labels): Renamed from
8568 rmail-summary-sort-by-keywords. Doc fix.
8569 (rmail-summary-mode): Doc fix.
8570
8571 * mail/rmail.el (rmail-edit): New Custom group.
8572
8573 * mail/rmailedit.el (rmail-edit-mode): Doc fix.
8574 (rmail-edit-mode-hook): New user-option.
8575
8576 2001-05-05 Richard M. Stallman <rms@gnu.org>
8577
8578 * help.el (help-xref-symbol-regexp): Recognize "source of"
8579 and friends, meaning make a link to the source file.
8580 (help-make-xrefs): Handle "source of" and friends
8581 by constructing a link that visits the source file.
8582
8583 * dabbrev.el (dabbrev-select-buffers-function): Doc fix.
8584
8585 2001-05-04 Stefan Monnier <monnier@cs.yale.edu>
8586
8587 * progmodes/cperl-mode.el (cperl-font-lock-keywords)
8588 (cperl-font-lock-keywords-1, cperl-font-lock-keywords-2):
8589 Renamed from perl-font-lock-keywords to avoid clashes.
8590 (cperl-mode, cperl-load-font-lock-keywords, cperl-init-faces)
8591 (cperl-load-font-lock-keywords-1, cperl-load-font-lock-keywords-2):
8592 Updated correspondingly.
8593
8594 * diff-mode.el (diff-nonexistent-face, diff-font-lock-keywords):
8595 Typo `nonexistant' -> `nonexistent'.
8596
8597 2001-05-04 Martin Stjernholm <bug-cc-mode@gnu.org>
8598
8599 * cc-cmds.el (c-electric-delete, c-electric-delete-forward):
8600 Split `c-electric-delete' into two functions where
8601 `c-electric-delete-forward' always deletes forward and
8602 `c-electric-delete' only contains the code necessary for XEmacs to
8603 choose between backward and forward deletion.
8604
8605 * cc-mode.el: `c-electric-delete-forward' is now bound to C-d to
8606 get the electric behavior on that key too.
8607 (c-fill-paragraph): Fixed bogus direct use of
8608 c-comment-prefix-regexp, which caused an error when it's a list.
8609
8610 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
8611
8612 * dired-aux.el (dired-diff): Doc fix.
8613
8614 * dired.el (dired-diff): Likewise.
8615
8616 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
8617
8618 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
8619
8620 2001-05-02 Stefan Monnier <monnier@cs.yale.edu>
8621
8622 * vc.el (vc-next-action-on-file): Only force buffer+file to writable
8623 if both the buffer and the file are read-only.
8624
8625 * progmodes/sh-script.el (sh-prev-line): Look for sh-heredoc-face
8626 rather than font-lock-string-face.
8627 (sh-get-indent-info): Treat heredocs like strings.
8628
8629 2001-05-02 Gerd Moellmann <gerd@gnu.org>
8630
8631 * textmodes/texinfmt.el (texinfo-format-parse-args): Don't consume
8632 a newline following `}'.
8633 (texinfo-format-email): New function.
8634 (toplevel): Use texinfo-format-email for @email.
8635 (texinfo-format-kbd-regexp, texinfo-format-kbd-end-regexp):
8636 Add `display'.
8637 (texinfo-sort-region): Goto point-min before sorting.
8638 (texinfo-set): Remove leading white space from value.
8639 From yagi@is.titech.ac.jp.
8640
8641 * replace.el (query-replace-regexp-eval): Doc fix.
8642
8643 2001-05-01 Stefan Monnier <monnier@cs.yale.edu>
8644
8645 * diff-mode.el (diff-nonexistant-face): New face.
8646 (diff-font-lock-keywords): Use it.
8647
8648 2001-04-30 Eli Zaretskii <eliz@is.elta.co.il>
8649
8650 * font-lock.el (font-lock-mode): Doc fix.
8651
8652 * dired-aux.el (dired-do-rename-regexp, dired-do-copy-regexp)
8653 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
8654
8655 2001-04-30 Gerd Moellmann <gerd@gnu.org>
8656
8657 * progmodes/sh-script.el (sh-font-lock-heredoc): Allow optional
8658 backslash at the start of the here-document delimiter.
8659 (sh-font-lock-syntactic-keywords): Likewise.
8660
8661 * mail/rmail.el (rmail-message-regexp-p): Yet another fix.
8662
8663 2001-04-29 Eli Zaretskii <eliz@is.elta.co.il>
8664
8665 * term/tty-colors.el (tty-color-define, tty-color-off-gray-diag)
8666 (tty-color-translate, tty-color-by-index, tty-color-values)
8667 (tty-color-desc): Doc fix.
8668
8669 2001-04-27 Eli Zaretskii <eliz@is.elta.co.il>
8670
8671 * dired-aux.el (dired-do-create-files, dired-do-copy)
8672 (dired-do-symlink, dired-do-hardlink, dired-do-rename):
8673 Mention dired-dwim-target in the doc string.
8674
8675 2001-04-28 Miles Bader <miles@gnu.org>
8676
8677 * dabbrev.el (dabbrev--ignore-buffer-p): New function.
8678 (dabbrev--find-expansion): Use it.
8679 (dabbrev--select-buffers): Don't select ignored buffers.
8680
8681 2001-04-27 Gerd Moellmann <gerd@gnu.org>
8682
8683 * mail/rmail.el (rmail-message-regexp-p): Don't match before headers.
8684
8685 2001-04-26 Richard M. Stallman <rms@gnu.org>
8686
8687 * dabbrev.el: Add doc strings for some functions.
8688 (dabbrev--eliminate-newlines): New variable.
8689 (dabbrev--substitute-expansion): Convert newlines to spaces
8690 if dabbrev--eliminate-newlines is set.
8691 If abbrev and expansion are both all-lower-case,
8692 leave dabbrev--last-case-pattern nil.
8693
8694 2001-04-26 Gerd Moellmann <gerd@gnu.org>
8695
8696 * mail/rmail.el (rmail-message-regexp-p): Use rfc822-goto-eoh
8697 if necessary, like in rmail-show-message.
8698
8699 2001-04-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8700
8701 * ps-print.el: Color specified by number is forced to be float number.
8702 (ps-print-version): New version number (6.5.1.1).
8703 (ps-header-frame-alist, ps-footer-frame-alist): Adjust color
8704 initialization.
8705 (ps-prefix-quote): New internal var.
8706 (ps-print-quote): New fun.
8707 (ps-setup, ps-output-frame-properties, ps-float-format)
8708 (ps-format-color): Code fix.
8709 (ps-plot-region): Eliminate redundant foreground color text setting.
8710
8711 2001-04-26 Eli Zaretskii <eliz@is.elta.co.il>
8712
8713 * dabbrev.el (dabbrev--select-buffers): Add a doc string.
8714
8715 2001-04-25 Gerd Moellmann <gerd@gnu.org>
8716
8717 * faces.el (tty-handle-reverse-video): Don't set inverse-video.
8718
8719 2001-04-25 Eli Zaretskii <eliz@is.elta.co.il>
8720
8721 * info.el (Info-additional-directory-list): Doc fix.
8722
8723 * find-lisp.el (find-lisp-find-dired-filter)
8724 (find-lisp-find-dired-subdirectories, find-lisp-find-dired):
8725 Add autoload cookies. From Richard Y. Kim <ryk@dspwiz.com>.
8726
8727 2001-04-25 Stefan Monnier <monnier@cs.yale.edu>
8728
8729 * progmodes/make-mode.el (makefile-font-lock-keywords):
8730 Rationalize the rules for includes and conditionals and use the
8731 keyword face for them.
8732
8733 * faces.el (modify-face): Add compatibility for non-interactive use.
8734
8735 2001-04-24 John Wiegley <johnw@gnu.org>
8736
8737 * eshell/esh-cmd.el (eshell-find-alias-function): Corrected the
8738 fix from last night, since it wasn't finding eshell/cd.
8739
8740 2001-04-24 Gerd Moellmann <gerd@gnu.org>
8741
8742 * rect.el (string-rectangle): Revert to 20.x behaviour.
8743 (replace-rectangle): Make it an alias for string-rectangle.
8744 (string-insert-rectangle): New function.
8745
8746 2001-04-23 John Wiegley <johnw@gnu.org>
8747
8748 * eshell/em-unix.el (eshell/diff): Fixed problems that were
8749 occurring with Emacs 21's diff.el/compile.el interaction layer.
8750
8751 2001-04-23 Colin Walters <walters@cis.ohio-state.edu>
8752
8753 * eshell/esh-cmd.el (eshell-find-alias-function): Return t in the
8754 case where the function was defined in a file, but not part of an
8755 eshell module.
8756
8757 2001-04-23 John Wiegley <johnw@gnu.org>
8758
8759 * eshell/em-smart.el (eshell-smart-redisplay): Added some safety
8760 code to work around a redisplay problem I've been having.
8761
8762 2001-04-23 John Wiegley <johnw@gnu.org>
8763
8764 * calendar/timeclock.el (timeclock-day-required): If the time
8765 required for a particular day is not set, use `timeclock-workday'.
8766 (timeclock-find-discrep): Added some sample code in a comment.
8767
8768 * eshell/eshell.el (eshell-command): Made a few changes so that
8769 `eshell-command' could be called programmatically.
8770
8771 * eshell/esh-mode.el (eshell-non-interactive-p): Moved to eshell.el.
8772
8773 * eshell/eshell.el (eshell-non-interactive-p): Moved from esh-mode.el.
8774
8775 2001-04-23 John Wiegley <johnw@gnu.org>
8776
8777 * calendar/timeclock.el: Updated copyright.
8778 (timeclock-generate-report): Don't report the daily or two-week
8779 total, if no time has been worked in that period.
8780 (timeclock-find-discrep): Moved call to `file-readable-p'; removed
8781 final computational form, which was unnecessary; corrected a
8782 parsing problem when timeclock-relative was nil.
8783
8784 2001-04-23 Kahlil Hodgson <kahlil@discus.anu.edu.au>
8785
8786 * calendar/timeclock.el (timeclock-modeline-display): Check if
8787 `list-entry' is null.
8788 (timeclock-use-display-time): The first argument to `set-variable'
8789 must be a symbol.
8790
8791 2001-04-23 Eli Zaretskii <eliz@is.elta.co.il>
8792
8793 * calendar/calendar.el (diary-entry-marker)
8794 (calendar-today-marker, calendar-holiday-marker):
8795 Use display-color-p instead of window-system.
8796 (calendar-mode-map, calendar-mode): Use display-popup-menus-p
8797 instead of window-system.
8798 (calendar-hide-window): Use display-multi-frame-p instead of
8799 window-system.
8800
8801 * calendar/cal-x.el (calendar-two-frame-setup)
8802 (calendar-only-one-frame-setup, calendar-one-frame-setup):
8803 Use display-multi-frame-p instead of window-system.
8804
8805 2001-04-23 Gerd Moellmann <gerd@gnu.org>
8806
8807 * play/fortune.el (fortune-from-region): Use `eq' instead of `eql'.
8808
8809 * textmodes/ispell.el, emacs-lisp/checkdoc.el,
8810 * progmodes/ebrowse.el, play/fortune.el: Fix autoload cookies.
8811
8812 2001-04-23 Alex Schroeder <alex@gnu.org>
8813
8814 * goto-addr.el: Instead of defining line-beginning-position and
8815 line-end-position a defalias is used for point-at-bol and point-at-eol.
8816
8817 2001-04-23 Alex Schroeder <alex@gnu.org>
8818
8819 * goto-addr.el: Added XEmacs compatibility code.
8820 (goto-address-highlight-keymap): Made keybindings XEmacs compatible.
8821
8822 2001-04-22 Eli Zaretskii <eliz@is.elta.co.il>
8823
8824 * textmodes/paragraphs.el (sentence-end): Doc fix.
8825
8826 2001-04-20 Alex Schroeder <alex@gnu.org>
8827
8828 * sql.el (sql-escape-newlines-and-send): New function.
8829 (sql-db2): Set comint-input-sender to sql-escape-newlines-and-send.
8830
8831 2001-04-20 Alex Schroeder <alex@gnu.org>
8832
8833 * sql.el (sql-db2-program): New option.
8834 (sql-db2-options): New option.
8835 (sql-db2): New function.
8836
8837 2001-04-20 Alex Schroeder <alex@gnu.org>
8838
8839 * sql.el (sql-mode-menu): Added highlighting entries.
8840 (sql-highlight-oracle-keywords): New function.
8841 (sql-highlight-postgres-keywords): New function.
8842 (sql-highlight-ansi-keywords): New function.
8843
8844 2001-04-20 Alex Schroeder <alex@gnu.org>
8845
8846 * sql.el (sql-help): Doc change.
8847
8848 2001-04-19 Karl Fogel <kfogel@collab.net>
8849
8850 * saveplace.el (save-place-alist-to-file): Removed no-effect code
8851 that inserted file content only to delete it immediately.
8852 Probably a cut-and-paste bug. Thanks to Juanma Barranquero
8853 <lektu@uol.com.br> for the patch.
8854
8855 2001-04-19 Stefan Monnier <monnier@cs.yale.edu>
8856
8857 * emacs-lisp/easy-mmode.el (easy-mmode-defsyntax): Unquote `doc'.
8858
8859 2001-04-18 Gerd Moellmann <gerd@gnu.org>
8860
8861 * emacs-lisp/cl-indent.el (toplevel): Comment out the spec
8862 for defmethod.
8863
8864 * comint.el (comint-cr-magic): New function.
8865 (toplevel): Add it to comint-preoutput-filter-functions.
8866
8867 2001-04-18 Andrew Innes <andrewi@gnu.org>
8868
8869 * makefile.w32-in (EMACSLOADPATH): Define.
8870 (custom-deps, autoloads, .el.elc, compile-files-CMD, compile-files-SH)
8871 (recompile): Remove stuff to set EMACSLOADPATH.
8872
8873 2001-04-18 Gerd Moellmann <gerd@gnu.org>
8874
8875 * language/slovak.el ("Slovak"): Add tutorial entry.
8876
8877 * net/browse-url.el (browse-url-new-window-flag): Renamed from
8878 browse-url-new-window-p.
8879
8880 2001-04-17 Eli Zaretskii <eliz@is.elta.co.il>
8881
8882 * info.el (Info-menu-update): When there are no menus and/or no
8883 cross references in the node, make the respective items of the
8884 Info menu-bar menu inactive.
8885
8886 2001-04-17 Gerd Moellmann <gerd@gnu.org>
8887
8888 * indent.el (indent-for-tab-command): Call indent-line-function
8889 with no argument if PREFIX-ARG is non-nil.
8890
8891 * frame.el (delete-other-frames): Handle minibuffer-only frames.
8892
8893 2001-04-17 Eli Zaretskii <eliz@is.elta.co.il>
8894
8895 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Don't invoke CVS as
8896 an async subprocess if start-process is unavailable. Suggested by
8897 Tim Van Holder <tim.van.holder@pandora.be>.
8898
8899 2001-04-15 Eli Zaretskii <eliz@is.elta.co.il>
8900
8901 * info.el (Info-additional-directory-list): Doc fix. Suggested by
8902 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>.
8903
8904 2001-04-14 Eli Zaretskii <eliz@is.elta.co.il>
8905
8906 * info.el (Info-file-list-for-emacs): Add an entry for the "info"
8907 manual.
8908
8909 2001-04-13 Stefan Monnier <monnier@cs.yale.edu>
8910
8911 * pcvs-defs.el (cvs-mode-map): Bind C-o like in dired.
8912 (cvs-menu): Add a few entries.
8913
8914 * pcvs.el (cvs-addto-collection): Don't merge MESSAGE fileinfos.
8915 (cvs-update-filter): Only advertise `cvs-mode-delete-lock' if the
8916 lock file appears to be reachable from Emacs.
8917 (cvs-mode-mark-on-state, cvs-mode-display-file): New functions.
8918 (cvs-mode-find-file): Look for cvs-header-face rather than
8919 cvs-dirname-face (which doesn't exist).
8920 (cvs-mode-find-file): Allow `other' to be set to `dont-select'.
8921
8922 * pcvs-parse.el (cvs-parse-run-table): Remove misleading text.
8923
8924 2001-04-13 Eli Zaretskii <eliz@is.elta.co.il>
8925
8926 * emulation/pc-select.el (pc-selection-mode): Don't turn on
8927 normal-erase-is-backspace on a tty. Instead, bind some keys such
8928 as [delete] directly, like pc-select.el did before
8929 normal-erase-is-backspace was invented.
8930
8931 2001-04-12 Eli Zaretskii <eliz@is.elta.co.il>
8932
8933 * ls-lisp.el (ls-lisp-format): Leave a blank before "root".
8934
8935 2001-04-11 John Wiegley <johnw@gnu.org>
8936
8937 * eshell/em-ls.el (eshell-ls-insert-directory):
8938 Set font-lock-defaults to nil, to prevent fontification in dired
8939 buffers, if Eshell's ls is being used.
8940
8941 2001-04-11 John Wiegley <johnw@gnu.org>
8942
8943 * calendar/timeclock.el (timeclock-completing-read): New function.
8944 (timeclock-ask-for-project, timeclock-ask-for-reason):
8945 Call `timeclock-completing-read'.
8946
8947 * eshell/em-alias.el (eshell-command-aliased-p): `assoc' was
8948 required where `member' was being used.
8949
8950 2001-04-11 Colin Walters <walters@cis.ohio-state.edu>
8951
8952 * eshell/em-hist.el (eshell-previous-matching-input):
8953 Don't display "History item" if the minibuffer is active.
8954
8955 2001-04-11 Gerd Moellmann <gerd@gnu.org>
8956
8957 * startup.el (command-line): Output a newline after printing
8958 an error from loading the window system's init file.
8959
8960 2001-04-11 Eli Zaretskii <eliz@is.elta.co.il>
8961
8962 * textmodes/texinfo.el (texinfo-font-lock-keywords):
8963 Add fontification for @value, @dfn, @dmn, @acronym, @anchor, and
8964 @inforef. Add an OVERRIDE of `keep' to highlight specs of
8965 keywords whose arguments routinely include @@.
8966
8967 2001-04-10 Gerd Moellmann <gerd@gnu.org>
8968
8969 * emacs-lisp/advice.el (ad-make-advised-definition):
8970 Construct advice for subrs differently.
8971
8972 * textmodes/paragraphs.el (forward-sentence): Put the sentence-end
8973 regexp in parentheses when building the regexp for searching backwards.
8974
8975 * simple.el (completion-list-mode-finish): New function.
8976 (toplevel): Add completion-list-mode-finish to temp-buffer-show-hook.
8977
8978 * language/european.el ("Polish"): Change sample text.
8979 From jsbien@mimuw.edu.pl (Janusz S. Bie\e,Bq\e(B).
8980
8981 * progmodes/sh-script.el (sh-indent-line): Add optional PREFIX-ARG
8982 parameter.
8983
8984 * faces.el (menu): Doc fix.
8985
8986 2001-04-10 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8987
8988 * ps-print.el: Footer implementation. Doc fix.
8989 (ps-print-version): New version number (6.5.1).
8990 (ps-header-frame-alist): New customization var for header frame
8991 properties.
8992 (ps-line-number-color): New customization var for line number color.
8993 (ps-footer-offset, ps-footer-line-pad, ps-print-footer)
8994 (ps-print-footer-frame, ps-footer-frame-alist, ps-footer-lines)
8995 (ps-footer-font-family, ps-footer-font-size, ps-left-footer)
8996 (ps-right-footer): New customization vars for footers.
8997 (ps-footer-pad, ps-footer-font-size-internal): New internal vars for
8998 footers.
8999 (ps-setup, ps-get-page-dimensions, ps-generate-header-line)
9000 (ps-generate-header, ps-begin-file, ps-begin-job, ps-begin-page):
9001 Code fix.
9002 (ps-prologue-file): Indentation fix.
9003 (ps-print-quote): Fun eliminated.
9004 (ps-value, ps-get, ps-put, ps-del): New funs for alist handling.
9005 (ps-output-frame-properties): New fun.
9006 (ps-fonts, ps-font-number, ps-rgb-color, ps-end-page, ps-next-page)
9007 (ps-skip-newline): Replace defun by defsubst.
9008
9009 2001-04-10 Colin Walters <walters@cis.ohio-state.edu>
9010
9011 * eshell/eshell.el (eshell-command): Needed a "%s" format
9012 specifier, in case the buffer contains percent characters.
9013
9014 2001-04-10 John Wiegley <johnw@gnu.org>
9015
9016 * calendar/timeclock.el (timeclock-generate-report): Added a
9017 missing insert of the project name.
9018
9019 2001-04-09 Gerd Moellmann <gerd@gnu.org>
9020
9021 * obsolete/profile.el: Moved from emacs-lisp/.
9022
9023 * Makefile.in (nonobsolete_setwins): New macro.
9024 (finder-data): Use it instead of `setwins'.
9025 From: Dave Love <fx@gnu.org>.
9026
9027 * server.el (server-visit-files): Set server-existing-buffer correctly.
9028 (server-visit-files): Run server-visit-hook after going to
9029 line 1 so that the hook can set point as it sees fit.
9030
9031 * bindings.el (mode-line-modified): Unify help messages.
9032
9033 2001-04-07 Eli Zaretskii <eliz@is.elta.co.il>
9034
9035 * dos-fns.el (dos-8+3-filename): Rename from dos-truncate-to-8+3.
9036 All callers changed.
9037
9038 2001-04-06 Eli Zaretskii <eliz@is.elta.co.il>
9039
9040 * international/titdic-cnv.el (miscdic-convert): For MS-DOS, if
9041 long file names aren't supported, truncate the file names in
9042 quail-misc-package-ext-info to 8+3 before matching them against
9043 FILENAME.
9044
9045 * dos-fns.el (dos-truncate-to-8+3): New function.
9046
9047 * progmodes/compile.el (grep-compute-defaults): Use null-device
9048 instead of literal /dev/null. Reported by Jens Schmidt
9049 <schmidt@mathematik.uni-kl.de>.
9050
9051 * simple.el (normal-erase-is-backspace-mode): Doc fix.
9052
9053 2001-04-06 Stefan Monnier <monnier@cs.yale.edu>
9054
9055 * textmodes/sgml-mode.el: Add unknown maintainer.
9056 (sgml-tag): Pass `str' explicitly through skeleton-transformation.
9057 (html-mode-map): Use set-keymap-parent.
9058
9059 2001-04-06 Dave Love <fx@gnu.org>
9060
9061 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
9062 Remove redundant string-to-list.
9063
9064 2001-04-05 Stefan Monnier <monnier@cs.yale.edu>
9065
9066 * composite.el (reference-point-alist): Doc fix.
9067
9068 2001-04-05 Sam Steingold <sds@gnu.org>
9069
9070 * font-lock.el (font-lock-keywords-case-fold-search):
9071 Make buffer-local. This fixes a very annoying bug when loading a Lisp
9072 file made font-lock case-insensitive.
9073
9074 2001-04-05 Gerd Moellmann <gerd@gnu.org>
9075
9076 * faces.el (defface menu): Doc fix.
9077
9078 * wid-edit.el (widget-color-sample-face-get): Don't make
9079 faces for undefined colors.
9080
9081 * version.el (emacs-version): Include LessTif/Motif version info.
9082
9083 2001-04-04 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9084
9085 * ps-mule.el: Eliminate cl package dependence.
9086 (char-valid-p, multibyte-string-p, string-make-multibyte): Define funs
9087 if they aren't defined yet.
9088 (ps-mule-encode-header-string, ps-mule-header-string-charsets):
9089 Eliminate cl package dependence.
9090
9091 2001-04-04 Stefan Monnier <monnier@cs.yale.edu>
9092
9093 * progmodes/cc-cmds.el (c-outline-level):
9094 Bind buffer-invisibility-spec. Originally from Dave Love, but
9095 got lost when incorporating version 5.26.
9096
9097 2001-04-04 Eli Zaretskii <eliz@is.elta.co.il>
9098
9099 * emulation/pc-select.el (pc-selection-mode):
9100 Call normal-erase-is-backspace-mode instead of binding
9101 keys individually.
9102
9103 * cus-load.el (normal-erase-is-backspace): Use it instead of
9104 delete-key-deletes-forward.
9105
9106 * startup.el (command-line): Use normal-erase-is-backspace and
9107 normal-erase-is-backspace-mode.
9108
9109 * simple.el (normal-erase-is-backspace): Rename from
9110 delete-key-deletes-forward. Doc fix.
9111 (normal-erase-is-backspace-mode): Rename from
9112 delete-key-deletes-forward-mode. Doc fix.
9113 Run normal-erase-is-backspace-hook.
9114
9115 * dired.el (dired-move-to-filename-regexp): Support file sizes in
9116 ``human-readable'' format produced by GNU `ls'.
9117 (dired-move-to-filename-regexp): Recognize ISO format dates.
9118 From Paul Eggert <eggert@twinsun.com>.
9119
9120 2001-04-04 Gerd Moellmann <gerd@gnu.org>
9121
9122 * emacs-lisp/lisp-mnt.el (lm-keywords-list, lm-keywords-finder-p):
9123 New functions.
9124 (lm-verify): Check keywords.
9125 From Eric M. Ludlam <eric@siege-engine.com>.
9126
9127 2001-04-03 Eric M. Ludlam <eric@siege-engine.com>
9128
9129 * speedbar.el (speedbar-insert-image-button-maybe): Check for
9130 `xemacs' feature instead of for the function `set-extent-property'.
9131
9132 2001-04-03 Stefan Monnier <monnier@cs.yale.edu>
9133
9134 * mail/mh-utils.el (mh-folder-hist): New var.
9135 (mh-prompt-for-folder): Use it and pass `default' to completing-read.
9136
9137 2001-04-03 Eli Zaretskii <eliz@is.elta.co.il>
9138
9139 * hexl.el (hexl-scroll-up): If scrolling gets outside the hexl
9140 region, position point on the first or last 16-byte group.
9141 (hexl-mode-map): Bind C-Home and C-End to hexl-beginning-of-buffer
9142 and hexl-end-of-buffer. Bind End and Home to hexl-end-of-line and
9143 hexl-beginning-of-line.
9144
9145 2001-04-03 Gerd Moellmann <gerd@gnu.org>
9146
9147 * icomplete.el (icomplete-mode): Treat an argument like other
9148 modes do.
9149
9150 * startup.el (fancy-splash-head): Use splash8.xpm for color
9151 depth 8.
9152
9153 * emacs-lisp/checkdoc.el (checkdoc-common-verbs-wrong-voice):
9154 Add an antry for ``converts''.
9155
9156 * language/slovak.el ("Slovak"): Add documentation string.
9157 From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk).
9158
9159 * language/czech.el ("Czech"): Add documentation string.
9160 From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk).
9161
9162 * ps-mule.el (ps-mule-font-info-database-bdf): Change `isci24-etl.bdf'
9163 to `isci24-mule.bdf'. From: Kenichi Handa <handa@etl.go.jp>.
9164
9165 2001-04-02 Stefan Monnier <monnier@cs.yale.edu>
9166
9167 * mail/mail-extr.el (mail-extr-delete-char, mail-extr-safe-move-sexp)
9168 (mail-extr-skip-whitespace-forward, mail-extr-nuke-char-at)
9169 (mail-extr-skip-whitespace-backward, mail-extr-undo-backslash-quoting):
9170 Use `defsubst' rather than a macro to ease debugging.
9171 (mail-extr-last): Remove (use `last' instead).
9172 (mail-extract-address-components): Properly reset the syntax-table
9173 after parsing an address. Use `last' rather than mail-extr-last.
9174 Make sure the end marker stays at the very end.
9175
9176 2001-04-02 Eli Zaretskii <eliz@is.elta.co.il>
9177
9178 * international/titdic-cnv.el (miscdic-convert): Fix a typo in the
9179 last change.
9180
9181 2001-04-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9182
9183 * ps-print.el: Line and paragraph spacing feature. Region to cut
9184 out when printing. Doc fix.
9185 (ps-print-version): New version number (6.5).
9186 (ps-line-spacing, ps-paragraph-spacing, ps-paragraph-regexp):
9187 New vars. Line and paragraph spacing feature.
9188 (ps-begin-cut-regexp, ps-end-cut-regexp): New vars. Region to cut
9189 out when printing.
9190 (ps-setup, ps-nb-pages, ps-get-page-dimensions, ps-begin-file)
9191 (ps-get-font-size, ps-begin-job, ps-continue-line)
9192 (ps-plot-region): Code fix.
9193 (ps-print-prologue-2): Var eliminated.
9194 (ps-line-spacing-internal, ps-paragraph-spacing-internal):
9195 New internal vars.
9196 (ps-get-size): New fun.
9197 (ps-output-string-prim, ps-init-output-queue, ps-print-page-p)
9198 (ps-next-line): Replace defun by defsubst.
9199 (ps-mule-plot-string): Autoload doc fix.
9200
9201 * ps-bdf.el: XEmacs compatibility. Doc fix.
9202 (installation-directory, coding-system-for-read): Declare vars if
9203 it's not declared yet.
9204 (bdf-read-font-info, bdf-read-bitmap, bdf-get-bitmaps): Code fix.
9205
9206 * ps-mule.el: XEmacs compatibility. Doc fix.
9207 (leading-code-private-22): Declare var if it's not declared yet.
9208 (charset-bytes, charset-dimension, charset-id, charset-width)
9209 (find-charset-region, split-char, char-width, chars-in-region)
9210 (forward-point, decompose-composite-char, encode-coding-string)
9211 (coding-system-p, ccl-execute-on-string, define-ccl-program):
9212 Define funs if not defined yet.
9213 (encode-composition-rule, find-composition): Define funs if not
9214 loaded yet.
9215 (ps-mule-prologue): PostScript code fix.
9216
9217 2001-04-02 Kenichi Handa <handa@etl.go.jp>
9218
9219 * ps-mule.el (ps-mule-generate-font): New arg HEADER-P. If it is
9220 non-nil, generate font for the header strings.
9221 (ps-mule-prepare-font): Likewise.
9222 (ps-mule-generate-glyphs): Likewise.
9223 (ps-mule-string-encoding): Likewise.
9224 (ps-mule-header-charsets): New variable.
9225 (ps-mule-encode-header-string): New function.
9226 (ps-mule-header-string-charsets): New function.
9227 (ps-mule-begin-job): Check charsets in the header strings. If there
9228 are non-ASCII and non-Latin1 charsets, prepare fonts for them.
9229
9230 * ps-print.el (ps-generate-header-line): Encode the header string by
9231 ps-mule-encode-header-string.
9232 (ps-mule-encode-header-string): Declare autoload.
9233
9234 2001-04-02 Gerd Moellmann <gerd@gnu.org>
9235
9236 * frame.el (cursor-in-non-selected-windows):
9237 Replaces show-cursor-in-non-selected-windows.
9238
9239 2001-03-31 Kenichi Handa <handa@etl.go.jp>
9240
9241 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
9242 Delete entries for "chinese-py" and "chinese-ziranma".
9243 (quail-misc-package-ext-info): New variable.
9244 (tsang-quick-converter): New function.
9245 (tsang-b5-converter, quick-b5-converter, tsang-cns-converter)
9246 (quick-cns-converter, py-converter, ziranma-converter)
9247 (miscdic-convert, batch-miscdic-convert): New functions.
9248
9249 2001-03-30 Kenichi Handa <handa@etl.go.jp>
9250
9251 * international/utf-8.el (ccl-encode-mule-utf-8): Fix handling of
9252 eight-bit-control chars.
9253
9254 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
9255 Reduce making temporary vector (suggested by Dave Love).
9256
9257 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
9258
9259 * simple.el (transient-mark-mode): Mention ESC ESC ESC in the doc
9260 string as well.
9261
9262 2001-03-30 Andreas Schwab <schwab@suse.de>
9263
9264 * files.el (backup-directory-alist): Fix typo.
9265
9266 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
9267
9268 * time-stamp.el (time-stamp-format): Doc fix. From Paul Eggert
9269 <eggert@twinsun.com>.
9270
9271 2001-03-30 Dave Love <fx@gnu.org>
9272
9273 * progmodes/fortran.el (fortran-comment-region): Fix typo.
9274
9275 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
9276
9277 * simple.el (transient-mark-mode): Mention C-g in the doc string.
9278
9279 2001-03-30 Miles Bader <miles@gnu.org>
9280
9281 * subr.el (interactive-form): Fix paren typo.
9282
9283 2001-03-29 Eli Zaretskii <eliz@is.elta.co.il>
9284
9285 * emacs-lisp/profile.el: Say that it's obsolete in the header
9286 line, so that finder.el puts that into its data-base.
9287 Suggested by Alex Schroeder <alex@gnu.org>.
9288
9289 2001-03-29 Paul Eggert <eggert@twinsun.com>
9290
9291 * mail/emacsbug.el (report-emacs-bug): Report LC_COLLATE,
9292 LC_MESSAGES, LC_MONETARY, LC_NUMERIC, and LC_TIME as well.
9293
9294 2001-03-29 Stefan Monnier <monnier@cs.yale.edu>
9295
9296 * generic.el (generic-mode-set-comments): Use "" rather than nil
9297 for comment-end.
9298
9299 2001-03-29 Gerd Moellmann <gerd@gnu.org>
9300
9301 * emacs-lisp/advice.el (ad-make-advised-definition):
9302 Call interactive-form to obtain the interactive spec of subrs.
9303
9304 * subr.el (interactive-form): New function.
9305
9306 2001-03-29 Andre Spiegel <spiegel@gnu.org>
9307
9308 * vc-sccs.el (vc-sccs-register): Use relative file names.
9309
9310 2001-03-28 Gerd Moellmann <gerd@gnu.org>
9311
9312 * bookmark.el (bookmark-get-bookmark): Handle case that
9313 BOOKMARK is not a string.
9314
9315 * image.el (image-type-regexps): Change type for PS files
9316 to `postscript'.
9317
9318 * subr.el (read-passwd): Clear command history after each
9319 character entered. From: Stephen Gildea
9320 <gildea@stop.mail-abuse.org>.
9321
9322 2001-03-27 Kenichi Handa <handa@etl.go.jp>
9323
9324 * international/kkc.el (kkc-save-init-file): Locally bind
9325 print-length to nil.
9326
9327 2001-03-26 Gerd Moellmann <gerd@gnu.org>
9328
9329 * textmodes/flyspell.el: Some doc fixes.
9330 (flyspell-maybe-correct-transposition)
9331 (flyspell-maybe-correct-doubling): Use a temporary buffer
9332
9333 * textmodes/ispell.el (ispell-parse-output): Doc fix.
9334
9335 * emacs-lisp/byte-opt.el (byte-optimize-while)
9336 (byte-optimize-form-code-walker): Diagnose too few arguments
9337 for `if' and `while'.
9338
9339 2001-03-26 Kenichi Handa <handa@etl.go.jp>
9340
9341 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
9342 Prepend `\' to "\<quail-translation-docstring>".
9343
9344 2001-03-26 Gerd Moellmann <gerd@gnu.org>
9345
9346 * autorevert.el (global-auto-revert-non-file-buffers):
9347 Remove duplicate defcustom.
9348
9349 2001-03-26 Miles Bader <miles@gnu.org>
9350
9351 * international/latin1-disp.el (latin1-char-displayable-p):
9352 Add leading "-" for X font pattern.
9353
9354 2001-03-26 Kenichi Handa <handa@etl.go.jp>
9355
9356 * international/mule-diag.el (describe-coding-system):
9357 For raw-text and emacs-mule, don't add anymore text about what
9358 charsets they can encode.
9359
9360 2001-03-25 Eli Zaretskii <eliz@is.elta.co.il>
9361
9362 * help.el (view-lossage): Mention open-dribble-file in the doc
9363 string. Suggested by Riku Saikkonen <rjs@lloke.dna.fi>.
9364
9365 2001-03-23 Stefan Monnier <monnier@cs.yale.edu>
9366
9367 * skeleton.el (skeleton-internal-list): Fix bogus logic.
9368 (skeleton-pair-insert-maybe): Don't pair after a backslash.
9369
9370 2001-03-23 Kenichi Handa <handa@etl.go.jp>
9371
9372 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
9373 Call ccl-execute-on-string directly so that CCL program handling
9374 multibyte sequence can work correctly.
9375 (encoded-kbd-setup-keymap): Fix the default value of `valid-codes'
9376 property of the coding system.
9377
9378 2001-03-23 Stefan Monnier <monnier@cs.yale.edu>
9379
9380 * textmodes/fill.el (fill-individual-paragraphs-prefix):
9381 Fix transcription typo.
9382
9383 2001-03-22 Rajesh Vaidheeswarran <rv@gnu.org>
9384
9385 * whitespace.el: Add buffer local variables to toggle testing of
9386 whitespaces in buffers without affecting the default values.
9387 Bump version to 3.0 to account for a few other changes.
9388 (whitespace-toggle-ateol-check, whitespace-toggle-leading-check)
9389 (whitespace-toggle-trailing-check, whitespace-toggle-indent-check)
9390 (whitespace-toggle-spacetab-check): New functions.
9391
9392 2001-03-21 Stefan Monnier <monnier@cs.yale.edu>
9393
9394 * obsolete/cplus-md.el: Moved from progmodes/cplus-md.el.
9395
9396 2001-03-21 Gerd Moellmann <gerd@gnu.org>
9397
9398 * bs.el (bs-cycle-next, bs-cycle-previous): Fix handling of
9399 bs-cycle-configuration-name. From Juanma Barranquero
9400 <lektu@uol.com.br>.
9401
9402 * Makefile.in, makefile.w32-in (COMPILE_FIRST): Add cc-mode.el
9403 and cc-vars.el.
9404
9405 * mail/sendmail.el (sendmail-send-it): Don't parse Resent-*
9406 headers. Always invoke sendmail with option -t.
9407
9408 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9409
9410 * Release of cc-mode 5.28.
9411
9412 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9413
9414 * cc-mode.el, cc-vars.el (c-common-init, c-default-style):
9415 Removed the hardcoded switch to "java" style in Java mode.
9416 It's instead taken care of by the default value for c-default-style.
9417
9418 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9419
9420 * cc-align.el (c-lineup-math): Fix bug where lineup was
9421 triggered by equal signs in string literals.
9422
9423 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9424
9425 * cc-cmds.el (c-fill-paragraph): Fixed bug in the paragraph
9426 limit detection when at the ends of the buffer.
9427
9428 * cc-engine.el (c-guess-basic-syntax): Removed bogus check for
9429 "for" statement clause in case 7F; a better one is done
9430 earlier in case 7D anyway.
9431
9432 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9433
9434 * cc-cmds.el (c-guess-fill-prefix): Improved the heuristics
9435 somewhat more and did a small optimization.
9436
9437 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9438
9439 * cc-cmds.el (c-beginning-of-statement, c-end-of-statement):
9440 Use the limit argument only to limit the syntactic context
9441 search, not to limit the actual movement.
9442
9443 * cc-cmds.el (c-beginning-of-statement): Move by sentence
9444 inside multiline strings, just like in comments. Also various
9445 fixes to the paragraph and comment prefix recognition, block
9446 comment ender handling etc.
9447
9448 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9449
9450 * cc-cmds.el (c-fill-paragraph): Take more care to preserve
9451 the relative position of the point.
9452
9453 * cc-cmds.el (c-electric-continued-statement): New function to
9454 use as abbrev hook to reindent for keywords such as "else"
9455 that continues an earlier statement.
9456
9457 * cc-menus.el (cc-imenu-c++-generic-expression): Treat structs
9458 like classes.
9459
9460 * cc-mode.el (c-mode, c++-mode, java-mode, objc-mode)
9461 (pike-mode): Populate the default abbrev tables to reindent for
9462 keywords such as "else" that can continue earlier statements.
9463 Abbrev mode is therefore turned on by default now. (Note that
9464 this doesn't apply to idl-mode, since IDL afaik doesn't have
9465 statements at all.)
9466
9467 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9468
9469 * cc-engine.el (c-inside-bracelist-p): Fix for handling
9470 bracelists where the declaration contains template arguments.
9471
9472 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9473
9474 * cc-cmds.el (c-comment-indent):
9475 Use `c-get-syntactic-indentation' to correctly calculate the
9476 syntactic indentation. Fixes bug with lineup functions that
9477 return vectors.
9478
9479 * cc-engine.el (c-get-syntactic-indentation): Split the
9480 indentation sum calculation from `c-indent-line' to a separate
9481 function.
9482
9483 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9484
9485 * cc-cmds.el (c-beginning-of-statement, c-comment-indent):
9486 Fixed places where it was assumed that preprocessor directives
9487 have to start in column zero.
9488
9489 * cc-engine.el (c-beginning-of-member-init-list): Handle C++
9490 template arguments after a class identifier properly.
9491
9492 * cc-engine.el (c-guess-basic-syntax): Treat initializer brace
9493 lists for `new Foo[]' constructs in Java as expressions and
9494 not top level definition brace lists on the top level, so that
9495 they'll get indented consistently with the same type of
9496 expression in a normal block.
9497
9498 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9499
9500 * cc-cmds.el (c-fill-paragraph): The kludge that checks
9501 whether the adaptive filling package fails to keep the comment
9502 prefix is now kludged further to check for filladapt-mode
9503 which doesn't have that problem. This is really icky, but it's
9504 the only way that works with the current misfeatures/bugs in
9505 both adaptive-fill-mode and filladapt-mode.
9506
9507 * cc-cmds.el (c-fill-paragraph): Made the way the paragraph
9508 around point is recognized more robust.
9509
9510 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9511
9512 * cc-cmds.el, cc-engine.el, cc-lobotomy.el (c-state-cache)
9513 (c-in-literal-cache, c-auto-fill-prefix, c-lit-limits)
9514 (c-lit-type): Fixed all internal variables used dynamically so
9515 that they are always bound.
9516
9517 * cc-cmds.el, cc-engine.el: Improved recovery of syntactic
9518 errors:
9519
9520 (c-indent-region): Fixed reporting of syntactic errors so that
9521 the region is fully reindented even when an error occurs.
9522 The last syntactic error is printed afterwards. Also cleanup up a
9523 whole lot of code that tried to optimize indentation of whole
9524 sexps but in reality accomplishes nothing.
9525
9526 (c-indent-sexp): Use c-indent-region.
9527
9528 (c-parsing-error): Changed this variable to hold the message
9529 for any syntactic error that is discovered.
9530
9531 (c-parse-state): Search backward from point instead of the bod
9532 position when the latter is invalid. This makes CC Mode
9533 recover faster when there are unbalanced close braces.
9534
9535 (c-backward-to-start-of-if): Use c-parsing-error to report
9536 dangling "else" clauses instead of throwing an error, and fall
9537 back to a reasonable position.
9538
9539 (c-indent-line): Added argument to avoid reporting syntactic errors.
9540
9541 (c-show-syntactic-information): Don't report any syntactic errors.
9542
9543 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9544
9545 * cc-cmds.el (c-beginning-of-statement): Fixed bugs with
9546 paragraph recognition when moving by sentence in literals.
9547
9548 * cc-langs.el (c-Java-javadoc-paragraph-start): Modified paragraph
9549 start regexp for javadoc to recognize javadoc markup in general instead
9550 of a specific set of keywords, to be more future-safe.
9551
9552 (c-Pike-pikedoc-paragraph-start)
9553 (c-Pike-pikedoc-paragraph-separate): New regexps to recognize
9554 pikedoc markup.
9555
9556 * cc-mode.el: Fixed initialization and use of c-current-comment-prefix.
9557
9558 (pike-mode): Initialize paragraph settings pikedoc recognition.
9559
9560 * cc-vars.el (c-default-style): Made a nicer Customize widget.
9561
9562 (c-comment-prefix-regexp): Made it possible to use an
9563 association list on this to specify mode specific regexps.
9564 The default value now use a special regexp in Pike mode to
9565 recognize pikedoc markup.
9566
9567 (c-current-comment-prefix): New variable containing the actual
9568 regexp from c-comment-prefix-regexp for the current buffer.
9569
9570 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9571
9572 * cc-cmds.el (c-electric-brace): Fixed check for special brace
9573 lists: We can't look at the syntax, since a brace list can get
9574 recognized as a plain statement-cont.
9575
9576 * cc-engine.el (c-guess-basic-syntax): Fixed bug where a
9577 special brace list opener broken over two lines got recognized
9578 as a statement on the second line. Case 9A changed.
9579
9580 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9581
9582 * cc-cmds.el (c-electric-brace): Fixed bug in c-state-cache
9583 adjustment after line is reindented.
9584
9585 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9586
9587 * cc-defs.el (c-point): Added optional argument for position
9588 to use instead of the current point.
9589
9590 * cc-defs.el, cc-engine.el (c-add-class-syntax): Do not add
9591 the in-expression block symbols when the construct starts at
9592 boi, to avoid the extra level of indentation in that case.
9593 Cases 4, 16A and 17E affected.
9594
9595 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9596
9597 * cc-cmds.el: Use `indent-according-to-mode' instead of direct
9598 calls to `c-indent-line', to adhere better to Emacs conventions.
9599
9600 * cc-engine.el (c-indent-line): Use the syntax already bound
9601 to `c-syntactic-context', if there is any.
9602
9603 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9604
9605 * cc-engine.el (c-get-offset): Fixed bug where the indentation
9606 wasn't added up correctly when a lineup function returned nil.
9607
9608 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9609
9610 * cc-engine.el (c-collect-line-comments): Fixed bug where
9611 empty lines were ignored when collecting line comments backwards.
9612
9613 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9614
9615 * cc-align.el (c-lineup-dont-change): Return an absolute
9616 indentation column to work correctly in the case when several
9617 syntactic elements are processed for the same line.
9618
9619 * cc-engine.el, cc-styles.el, cc-vars.el (c-evaluate-offset)
9620 (c-get-offset, c-indent-line, c-valid-offset, c-read-offset)
9621 (c-set-offset): Added absolute indentation column settings by
9622 using the vector type.
9623
9624 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9625
9626 * cc-cmds.el, cc-vars.el (c-electric-paren, c-cleanup-list):
9627 Implemented two new cleanups `space-before-funcall' and
9628 `compact-empty-funcall'.
9629
9630 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9631
9632 * cc-defs.el (c-paren-re, c-identifier-re): Two new macros for
9633 helping building regexps.
9634
9635 * cc-engine.el (c-on-identifier): New function for detecting
9636 identifiers. It takes keywords into account.
9637
9638 * cc-langs.el, cc-mode.el: Added regexps for complete keyword
9639 lists. `c-keywords' is set to a regexp matching all keywords
9640 in the current language.
9641
9642 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9643
9644 * cc-engine.el (c-beginning-of-statement-1): Added '#' to the
9645 list of characters to skip backwards over at the beginning of
9646 a statement, since it can precede string literals in Pike.
9647
9648 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9649
9650 * cc-cmds.el (c-guess-fill-prefix): Fixed bug with prefix
9651 recognition when standing on the last line in a C++ comment
9652 with nothing but whitespace after the prefix.
9653
9654 * cc-engine.el (c-backward-to-start-of-if): Fixed bug when
9655 given no limit argument.
9656
9657 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9658
9659 * cc-engine.el (c-inside-bracelist-p): Fixed brace list
9660 recognition for the `[]= operator symbol in Pike.
9661
9662 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9663
9664 * cc-bytecomp.el (cc-eval-when-compile): New macro that works
9665 around a bug in `eval-when-compile' in the byte compiler.
9666
9667 * cc-engine.el (c-forward-token-1): Fixed bug with return
9668 value when count is zero and there's no token start within the limit.
9669
9670 (c-guess-basic-syntax): Don't add 'comment-intro to lines with
9671 "prefix comments", i.e. comments which are followed by code on
9672 the same line.
9673
9674 * cc-mode-19.el: Fixes so that checks that must be done at
9675 compile time also are done then.
9676
9677 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9678
9679 * cc-defs.el: Make sure cc-mode-19 is loaded both at compile
9680 time and at runtime, and only when it's needed.
9681
9682 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9683
9684 Major cleanup for less error prone and more warning free
9685 compilation, including some fixes for bugs due to different
9686 compilation orders. Thanks to Martin Buchholz for providing
9687 the basis for all this.
9688
9689 * cc-bytecomp.el: New file that provides some byte compilation
9690 features: It ensures that files always are loaded from the
9691 current source directory during compilation, and it provides a
9692 set of macros to turn off specific compiler warnings for
9693 specific symbols. (It's not CC Mode specific in any way.)
9694
9695 Fixed a nearly acyclic dependency tree (both runtime and
9696 compile-time) between all files.
9697
9698 * cc-defs.el: Separated all macros before the inline functions,
9699 to ensure correct compilation.
9700
9701 * cc-defs.el, cc-engine.el: Moved c-beginning-of-macro to from
9702 cc-defs.el to cc-engine.el and made it a function instead.
9703
9704 * cc-mode-19.el: Patch the byte compiler in Emacs 19 not to warn
9705 about char-after.
9706
9707 * cc-vars.el: Cope even when there isn't a custom package
9708 containing defcustom available.
9709
9710 * cc-make.el: Removed since it's no longer necessary.
9711
9712 README: Updated installation instructions.
9713
9714 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9715
9716 * cc-cmds.el, cc-langs.el, cc-mode.el: Moved around things to
9717 improve the modularity: Moved all mode init stuff from
9718 cc-langs.el to cc-mode.el, including the keymap
9719 initialization; cc-langs now only contains the various
9720 variables for configuring the language syntax.
9721
9722 * cc-engine.el, cc-styles.el (c-evaluate-offset)
9723 (c-get-offset): Moved from cc-styles to cc-engine since file
9724 dependency analysis suggests they belong there (which also
9725 makes more sense). Thanks to Martin Buchholz for doing the analysis.
9726
9727 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9728
9729 * cc-cmds.el (c-fn-region-is-active-p): New function that
9730 wraps the corresponding macro, for use in places that aren't
9731 compiled. Thanks to Martin Buchholz for pointing out this.
9732
9733 * cc-langs.el (c-mode-menu): Use c-fn-region-is-active-p.
9734
9735 * cc-mode.el (c-prepare-bug-report-hooks): Hook variable to
9736 add things to the bug report.
9737
9738 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9739
9740 * cc-cmds.el (c-guess-fill-prefix): Fixed bug where the
9741 returned prefix could contain a newline when the search for a
9742 good prefix line failed.
9743
9744 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9745
9746 * cc-cmds.el (c-toggle-auto-state, c-toggle-hungry-state)
9747 (c-toggle-auto-hungry-state): Made the argument optional, as
9748 the documentation says it is.
9749
9750 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9751
9752 * cc-engine.el (c-guess-basic-syntax): Don't treat the Pike
9753 multiline string syntax, #"...", as a cpp macro.
9754
9755 2001-03-21 Paul Eggert <eggert@twinsun.com>
9756
9757 * international/mule-cmds.el (set-locale-environment):
9758 Set system-messages-locale and system-time-locale, but only if the
9759 caller specifies a non-nil locale name.
9760
9761 2001-03-20 Gerd Moellmann <gerd@gnu.org>
9762
9763 * pcvs-util.el (cvs-bury-buffer): Bodiless `if' statements cause
9764 problems for the interpreter. From: John Wiegley <johnw@gnu.org>
9765
9766 2001-03-20 Gerd Moellmann <gerd@gnu.org>
9767
9768 * follow.el (follow-avoid-tail-recenter): Doc fix.
9769
9770 * custom.el (custom-set-variables): Avoid reversing the list
9771 of args needlessly.
9772
9773 * startup.el (fancy-splash-head): Don't change the colors of the
9774 XPM image on a dark background.
9775
9776 * comint.el (comint-exec-1): Set columns of the terminal to
9777 window-width instead of frame-width.
9778
9779 * info.el (Info-scroll-down): Add missing WINDOW arg for
9780 pos-visible-in-window-p.
9781
9782 * ehelp.el (electric-help-mode-hook): Add defcustom.
9783
9784 * mail/sendmail.el (mail-mode): Activate case-folding in
9785 font-lock-defaults.
9786
9787 2001-03-19 Stefan Monnier <monnier@cs.yale.edu>
9788
9789 * bindings.el (mode-line-mode-menu): `glasses-mode' might be unbound.
9790 (completion-ignored-extensions): Remove duplicate ".class".
9791
9792 2001-03-19 Andreas Schwab <schwab@suse.de>
9793
9794 * textmodes/reftex-dcr.el (reftex-view-crossref): Doc fix.
9795 From Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
9796
9797 2001-03-19 Gerd Moellmann <gerd@gnu.org>
9798
9799 * language/european.el ("Latin-5", "Latin-4"): Use postfix input
9800 methods since there are not prefix input methods.
9801
9802 2001-03-19 Kenichi Handa <handa@etl.go.jp>
9803
9804 * international/mule-cmds.el (read-input-method-name):
9805 Locally bind enable-recursive-minibuffers to t.
9806
9807 2001-03-18 Stefan Monnier <monnier@cs.yale.edu>
9808
9809 * emacs-lisp/lmenu.el (add-menu): Re-added (was erroneously removed).
9810
9811 2001-03-17 Michael Kifer <kifer@cs.sunysb.edu>
9812
9813 * ediff-util.el: Copyright years.
9814 (ediff-choose-syntax-table): New function.
9815 (ediff-setup): Use ediff-choose-syntax-table.
9816
9817 * ediff-init.el (ediff-with-syntax-table): New macro, uses
9818 with-syntax-table.
9819
9820 * ediff.el: Date of last update, copyright years.
9821
9822 * ediff-wind (ediff-setup-control-frame): Nill->nil.
9823
9824 * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
9825 of Scott Bronson.
9826 (ex-cmd-assoc,ex-cmd-one-letr): New functions.
9827 (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
9828 Deleted functions.
9829 (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
9830 ex-token-list.
9831
9832 * viper-util.el: Spaces, indentation.
9833
9834 * viper.el: Changed version, modification time.
9835
9836 2001-03-16 John Wiegley <johnw@gnu.org>
9837
9838 * calendar/timeclock.el (timeclock-workday-remaining):
9839 Check whether `discrep' is non-null before using it.
9840
9841 2001-03-16 John Wiegley <johnw@gnu.org>
9842
9843 * calendar/timeclock.el (timeclock-reread-log): Fixed problem with
9844 first-time checkins.
9845 (timeclock-log-data): Fixed problem with reading timelog log file.
9846 Resulting data in the "day list" was incorrect.
9847 (timeclock-find-discrep): Check if `timeclock-file' is readable
9848 before opening it.
9849 (timeclock-time-less-p): New function.
9850 (timeclock-day-base): New function.
9851 (timeclock-geometric-mean): New function.
9852 (timeclock-generate-report): Generate a summary report based on
9853 the contents of the log file. This uses `timeclock-log-data', and
9854 is an example of writing a timelog manipulation function.
9855 (timeclock-visit-timelog): A quick command for opening the timelog
9856 file.
9857 (timeclock-log-data): Bound the variable event.
9858
9859 2001-03-16 Kenichi Handa <handa@etl.go.jp>
9860
9861 * international/mule-cmds.el (select-safe-coding-system):
9862 Fix typo: symbol-name -> symbol-value.
9863
9864 * mail/rmail.el (rmail-insert-inbox-text): Call expand-file-name
9865 before substitute-in-file-name to handle double slashes in FILE
9866 correctly.
9867
9868 2001-03-15 Gerd Moellmann <gerd@gnu.org>
9869
9870 * textmodes/ispell.el (ispell-dictionary-alist-6): Add support
9871 for Slovak. From Pavel.Janik@suse.cz (Pavel Jan\e,Bm\e(Bk ml.).
9872
9873 2001-03-14 Gerd Moellmann <gerd@gnu.org>
9874
9875 * bindings.el (features): Add `md5' and `overlay' to the list.
9876
9877 * scroll-bar.el (toplevel): Test if `x-toolkit-scroll-bars' is
9878 bound before using it. It's not bound when configured without X,
9879 for instance.
9880
9881 2001-03-13 Thien-Thi Nguyen <ttn@gnu.org>
9882
9883 * progmodes/hideshow.el: Update copyright.
9884 (hs-minor-mode-map): Change bindings to use `C-c @' prefix.
9885 (hs-minor-mode-hook): Include `:version' in defcustom form.
9886
9887 2001-03-13 Gerd Moellmann <gerd@gnu.org>
9888
9889 * help.el (string-key-binding): Don't call event-start on
9890 a non-list.
9891
9892 2001-03-13 Eli Zaretskii <eliz@is.elta.co.il>
9893
9894 * startup.el (fancy-splash-tail, command-line-1): Fix the
9895 copyright year.
9896
9897 2001-03-13 Kenichi Handa <handa@etl.go.jp>
9898
9899 * term.el: These changes are based on a patch sent from Yong Lu
9900 <lyongu@yahoo.com>.
9901 (term-set-escape-char): Bind M-x to execute-extended-command in
9902 term-raw-escape-map.
9903 (term-move-columns): Don't try to move to negagive column.
9904 (term-emulate-terminal): Insert a string before deleting a text to
9905 overwrite.
9906
9907 2001-03-12 Gerd Moellmann <gerd@gnu.org>
9908
9909 * play/life.el (life): Rearrange code so that all calls to
9910 life-display-generation are in a catch-form.
9911
9912 * progmodes/etags.el (tags-loop-continue): Don't change point in a
9913 file that isn't interesting. In an interesting file, push the old
9914 value of point on the mark ring.
9915
9916 * mail/rmailsum.el (rmail-summary-override-mail-send-and-exit):
9917 New function.
9918 (rmail-summary-mail, rmail-summary-reply, rmail-summary-forward):
9919 Use it.
9920
9921 * emacs-lisp/autoload.el (generate-file-autoloads):
9922 Remove warning about line lengths.
9923
9924 2001-03-12 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be>
9925
9926 * progmodes/etags.el (tags-compression-info-list): New variable.
9927 (find-tag-in-order): Use it to deal with compressed source files.
9928 (tag-file-name-match-p): New function.
9929 (etags-recognize-tags-table): Use it for better match of file names.
9930
9931 2001-03-12 Kenichi Handa <handa@etl.go.jp>
9932
9933 * international/mule-cmds.el (register-input-method): Doc fix.
9934
9935 * international/quail.el (quail-translate-key): Fix condition to
9936 check if there's another breaking point in the current key.
9937
9938 2001-03-11 Eli Zaretskii <eliz@is.elta.co.il>
9939
9940 * mail/rmailout.el (rmail-output-to-rmail-file): When writing the
9941 Babyl header to the newly-created output file, bind
9942 coding-system-for-write to either rmail-file-coding-system or
9943 emacs-mule-unix.
9944
9945 2001-03-11 Stefan Monnier <monnier@cs.yale.edu>
9946
9947 * textmodes/texnfo-upd.el (texinfo-update-menu-lower-regexps):
9948 Fix the name and regexp used for subsubsections.
9949
9950 2001-03-10 Dave Love <fx@gnu.org>
9951
9952 * toolbar/tool-bar.el (tool-bar-setup): Don't suppress write-file
9953 and save-buffer if buffer-file-name non-nil. From rms.
9954
9955 2001-03-10 Andre Spiegel <spiegel@gnu.org>
9956
9957 * vc.el (vc-do-command): If the destination buffer is already
9958 current, don't set it up and don't erase it. Updated doc string
9959 to reflect that.
9960 (vc-version-diff): When doing a single file diff, don't switch to the
9961 *vc-diff* buffer before the command. This is to preserve local
9962 variable bindings that might affect the diff command.
9963 (vc-print-log): Don't switch to the *vc* buffer before the
9964 command, so that local variable bindings are preserved.
9965
9966 * vc-{cvs,rcs,sccs}.el (vc-*-print-log): Output to buffer *vc*,
9967 not the current buffer.
9968 (vc-*-diff): Output to buffer *vc-diff*, not the current buffer.
9969
9970 * vc-cvs.el (vc-cvs-checkin): When removing the sticky tag,
9971 make output go to buffer *vc*, not the current buffer.
9972
9973 2001-03-09 Stefan Monnier <monnier@cs.yale.edu>
9974
9975 * hi-lock.el (hi-lock-line-face-buffer): Wrap the regexp in a group
9976 so ^, $, *, ? and + are interpreted correctly.
9977
9978 2001-03-09 Gerd Moellmann <gerd@gnu.org>
9979
9980 * help.el (string-key-binding): Renamed from
9981 mode-line-key-binding. Handle any event on a string.
9982 Check for `keymap' properties as well as `local-map' properties.
9983
9984 * comint.el (comint-insert-clicked-input): Use the last key
9985 from this-command-keys to lookup the global key definition.
9986
9987 2001-03-09 Kenichi Handa <handa@etl.go.jp>
9988
9989 * international/characters.el: Add category `j' for
9990 katakana-jisx0201. Fix syntaxes of katakana-jisx0201.
9991
9992 * international/mule-conf.el (no-conversion): Fix docstring.
9993 (raw-text): Fix docstring.
9994
9995 2001-03-08 Gerd Moellmann <gerd@gnu.org>
9996
9997 * simple.el (choose-completion-string): When not leaving the
9998 minibuffer, raise the minibuffer frame when minibuffer-auto-raise
9999 is set.
10000
10001 * window.el (shrink-window-if-larger-than-buffer): Handle frame
10002 parameter `(minibuffer . t)'.
10003
10004 2001-03-07 Stefan Monnier <monnier@cs.yale.edu>
10005
10006 * progmodes/sh-script.el (sh-st-symbol): New symbol.
10007 (sh-font-lock-syntactic-keywords): Use it and fix bogus comment regexp.
10008 (sh-mode): Remove `make-local-variable' for unused var
10009 `font-lock-unfontify-region-function'.
10010
10011 2001-03-07 Richard M. Stallman <rms@gnu.org>
10012
10013 * info.el (Info-scroll-down): Fix previous change.
10014
10015 * mail/rmail.el (rmail-toggle-header): Use a window which
10016 is showing the Rmail buffer, rather than the selected window.
10017
10018 2001-03-07 Dave Love <fx@gnu.org>
10019
10020 * imenu.el (imenu--create-keymap-2): Revert use of menu-item for
10021 now, to avoid problems with binding imenu directly to a mouse event.
10022
10023 2001-03-07 Gerd Moellmann <gerd@gnu.org>
10024
10025 * info.el (Info-scroll-down): Call pos-visible-in-window-p with
10026 second arg t.
10027
10028 2001-03-07 Stefan Monnier <monnier@cs.yale.edu>
10029
10030 * log-edit.el (log-edit-common-indent): New var.
10031 (log-edit-set-common-indentation): Renamed from
10032 log-edit-delete-common-indentation. Use the new var.
10033 (log-edit-insert-changelog, log-edit-done-hook): Use the new name.
10034
10035 * pcvs.el (cvs-ignore-marks-modif): Use `rassoc' rather than `member*'.
10036 (cvs-mode-add-change-log-entry-other-window):
10037 Don't presume change-log-default-name is defined.
10038
10039 * pcvs-util.el (cvs-bury-buffer): In doubt, don't delete window.
10040
10041 * pcvs-defs.el (cvs-buffer-name-alist): Use *cvs-info* for
10042 the "tree" operation as well.
10043
10044 * pcvs-parse.el (cvs-parse-table): Add another ignored message.
10045
10046 * textmodes/fill.el (fill-context-prefix): Allow first-line-prefix
10047 to match paragraph-start.
10048
10049 * textmodes/sgml-mode.el (sgml-mode-common): Correct value of
10050 comment-start-skip and set comment-end-skip as well.
10051 (sgml-comment-indent): Fix for new value of comment-start-skip.
10052 (html-autoview-mode): Don't bother using make-local-hook.
10053
10054 2001-03-07 Gerd Moellmann <gerd@gnu.org>
10055
10056 * cus-edit.el (custom-save-delete): Move in front of local
10057 variables, otherwise long Custom entries would make them ineffective.
10058
10059 * uniquify.el: Set maintainer to FSF.
10060
10061 2001-03-07 Eli Zaretskii <eliz@is.elta.co.il>
10062
10063 * dired-aux.el (dired-do-shell-command): Doc fix.
10064
10065 2001-03-06 Stefan Monnier <monnier@cs.yale.edu>
10066
10067 * emulation/viper.el (viper-vi-state-mode-list): Add cperl-mode.
10068
10069 * which-func.el (which-func-modes): Add cperl-mode.
10070 (which-func-mode-global): Use define-minor-mode.
10071
10072 * info-look.el: Docstring fixes and dead code eliminated.
10073 (cperl-mode): Add support.
10074 (emacs-lisp-mode): List all entries from elisp manual, whether
10075 or not they are currently (f)bound or not. Update regexp.
10076
10077 * add-log.el (add-log-current-defun): Accept `cperl-mode' as well.
10078
10079 * progmodes/cperl-mode.el (cperl-mode): Set major-mode to cperl-mode
10080 so that C-h m shows the correct information.
10081 Use make-local-variable rather than make-variable-buffer-local.
10082 (cperl-info-buffer, cperl-setup-tmp-buf):
10083 Use make-local-variable rather than make-variable-buffer-local.
10084 (cperl-msb-fix, cperl-get-help-defer):
10085 Check major-mode for `cperl-mode' as well.
10086
10087 * progmodes/cperl-mode.el: Updated to author version 4.23.
10088 (cperl-electric-pod): SYNOPSIS was misspelled.
10089 (cperl-find-pods-heres): @if ? a : b was considered a REx.
10090 (cperl-after-expr-p): Make true after __END__.
10091
10092 2001-03-06 Gerd Moellmann <gerd@gnu.org>
10093
10094 * bookmark.el (bookmark-get-bookmark): Use assoc-ignore-case if
10095 bookmark-completion-ignore-case is t.
10096
10097 * term/x-win.el (x-handle-xrm-switch): Accept more than one -xrm
10098 switch, like xterm, and concat resource strings, with a newline
10099 between them.
10100
10101 2001-03-06 Eli Zaretskii <eliz@is.elta.co.il>
10102
10103 * international/codepage.el (cp770-decode-table)
10104 (cp773-decode-table, cp774-decode-table): New variables.
10105
10106 * man.el (Man-hyphenated-reference-regexp): New variable.
10107 (Man-build-references-alist): Use it to search for referenced
10108 manpages. If hyphenated is non-nil, record a concatenated word in
10109 Man-refpages-alist only if it matches Man-reference-regexp.
10110 Update word's length when it is concatenated. Reverse the list,
10111 to get the first manpage at the head.
10112 (Man-possibly-hyphenated-word): New function.
10113 (Man-follow-manual-reference): Use it instead of current-word to
10114 find a manpage at point, in a way that accounts for hyphenated
10115 references.
10116
10117 2001-03-06 Alex Schroeder <alex@gnu.org>
10118
10119 * sql.el (sql-interbase): New function.
10120 (sql-interbase-program): New option.
10121 (sql-interbase-options): New option.
10122 And some typos fixed: "customise" to "customize".
10123
10124 2001-03-06 Dave Love <fx@gnu.org>
10125
10126 * textmodes/flyspell.el (flyspell-region):
10127 Set up flyspell-local-mouse-map.
10128
10129 2001-03-05 Richard M. Stallman <rms@gnu.org>
10130
10131 * mail/rmail.el (rmail-retry-failure):
10132 Don't call rmail-beginning-of-message.
10133 Don't discard From: field. Do discard Received: field.
10134 Use unwind-protect to re-prune.
10135 (rmail-retry-ignored-headers): Discard X-Authentication-Warning field.
10136
10137 2001-03-06 Kenichi Handa <handa@etl.go.jp>
10138
10139 * international/quail.el (quail-title): Add autoload cookie.
10140
10141 2001-03-05 Dave Love <fx@gnu.org>
10142
10143 * emacs-lisp/cl.el (dotimes, dolist): Undef prior to autoloading
10144 new defs.
10145
10146 2001-03-05 Kenichi Handa <handa@etl.go.jp>
10147
10148 * language/ethio-util.el (ethio-toggle-space):
10149 Update current-input-method-title if necessary.
10150 (ethio-toggle-punctuation): Likewise.
10151
10152 * international/quail.el (quail-title): Fix for the case that a
10153 title of an input method is specified by a list of the same form
10154 as used in mode-line-format.
10155
10156 * international/mule-cmds.el (activate-input-method):
10157 If current-input-method-title is set by activating INPUT-METHOD,
10158 respect that value.
10159
10160 2001-03-05 Gerd Moellmann <gerd@gnu.org>
10161
10162 * play/dunnet.el (dun-mode): Set major-mode to `dun-mode'.
10163
10164 2001-03-05 Alex Schroeder <alex@gnu.org>
10165
10166 * sql.el (sql-sybase): Fix typo (was: query user about server two
10167 times instead of server and database).
10168
10169 * sql.el (sql-sybase): Doc change.
10170 (sql-mysql): Doc change.
10171 (sql-postgres): Doc change.
10172
10173 2001-03-05 Kenichi Handa <handa@etl.go.jp>
10174
10175 * international/mule-conf.el (emacs-mule, raw-text):
10176 Docstring modified.
10177
10178 2001-03-04 Eli Zaretskii <eliz@is.elta.co.il>
10179
10180 * term/internal.el: Update copyright notice.
10181
10182 * term/pc-win.el: Update copyright notice.
10183
10184 2001-03-02 Dave Love <fx@gnu.org>
10185
10186 * files.el (insert-file-contents-literally):
10187 Bind inhibit-file-name-handlers and inhibit-file-name-operation,
10188 not jka-compr-compression-info-list.
10189
10190 2001-03-02 Stefan Monnier <monnier@cs.yale.edu>
10191
10192 * newcomment.el (comment-normalize-vars): Use [ \t] for the trailing
10193 spaces in default comment-start-skip settings rather than \s-.
10194
10195 2001-03-02 Eli Zaretskii <eliz@is.elta.co.il>
10196
10197 * term/pc-win.el (msdos-handle-reverse-video): Look for reverse in
10198 default-frame-alist as well.
10199
10200 2001-03-01 Dave Love <fx@gnu.org>
10201
10202 * textmodes/reftex.el (defvar): Wrap some defvars in
10203 eval-when-compile. From Markus Rost <rost@math.ohio-state.edu>.
10204
10205 * subr.el (event-basic-type): Doc fix.
10206
10207 * international/quail.el: Doc fixes.
10208
10209 * international/utf-8.el: Doc fixes.
10210
10211 * international/mule-cmds.el: Doc fixes.
10212 (leim-list-header): Fix header text.
10213
10214 * international/mule.el (coding-system-category): Doc fix.
10215
10216 * international/ccl.el (ccl-compile): Doc fix.
10217
10218 2001-03-01 Stefan Monnier <monnier@cs.yale.edu>
10219
10220 * font-lock.el (save-buffer-state): Use inhibit-modification-hooks
10221 rather than (before|after)-change-functions.
10222
10223 2001-03-01 Gerd Moellmann <gerd@gnu.org>
10224
10225 * ediff-util.el (ediff-scroll-horizontally): Arrange for
10226 scroll-left and scroll-right being called interactively so that
10227 they set the window's min_hscroll.
10228
10229 2001-03-01 Eli Zaretskii <eliz@is.elta.co.il>
10230
10231 * info.el (info-insert-file-contents-1): Accept an additional
10232 argument `lfn': if it is non-nil, concatenate `filename' and
10233 `suffix'; otherwise use the complicated MS-DOS code.
10234 All callers changed.
10235 (info-insert-file-contents, Info-find-node): If the MS-DOS port
10236 can access long file names, try the long file-name version of
10237 `info-insert-file-contents-1', then the short file-name version.
10238
10239 2001-02-28 TAKAHASHI Naoto <ntakahas@m17n.org>
10240
10241 * language/ethio-util.el (setup-ethiopic-environment-internal):
10242 Change bindings of functions keys to conform to "Emacs Lisp Coding
10243 Convention".
10244
10245 * language/ethiopic.el ("Ethiopic"): Add documentation.
10246
10247 2001-02-28 Kenichi Handa <handa@etl.go.jp>
10248
10249 * international/utf-8.el (mule-utf-8): Set coding-category
10250 property to coding-category-utf-8.
10251
10252 2001-02-27 Richard M. Stallman <rms@gnu.org>
10253
10254 * lpr.el (lpr-page-header-switches, print-region-1):
10255 Undo 2000-07-06 change.
10256 (lpr-add-switches): Default to t on gnu/linux.
10257
10258 2001-02-27 Gerd Moellmann <gerd@gnu.org>
10259
10260 * bs.el (bs-attributes-list): Doc fix.
10261
10262 2001-02-26 Gerd Moellmann <gerd@gnu.org>
10263
10264 * help.el (describe-project): Display the file THE-GNU-PROJECT.
10265
10266 * help.el (view-order-manuals): Use goto-address.
10267
10268 * startup.el (command-line-1): Add info about ordering manuals
10269 to the not so fancy splash screens.
10270
10271 2001-02-26 Andre Spiegel <spiegel@gnu.org>
10272
10273 * vc.el (vc-default-workfile-unchanged-p)
10274 (vc-default-latest-on-branch-p): Add missing BACKEND argument.
10275
10276 2001-02-26 Gerd Moellmann <gerd@gnu.org>
10277
10278 * lazy-lock.el (lazy-lock-fontify-after-idle): Make sure to
10279 fontify in the right buffer.
10280
10281 * allout.el (outline-flag-region): Move macro in front of first
10282 use to avoid a run-time error.
10283
10284 2001-02-24 Andrew Innes <andrewi@gnu.org>
10285
10286 * makefile.w32-in: Fix copyright notice.
10287
10288 2001-02-24 Kenichi Handa <handa@etl.go.jp>
10289
10290 * international/utf-8.el (mule-utf-8): Set correct value for
10291 valid-codes property.
10292
10293 * international/fontset.el (x-complement-fontset-spec): In the
10294 case that we use ASCII font for the other charsets, use only
10295 family and registry part of it.
10296
10297 2001-02-23 Eli Zaretskii <eliz@is.elta.co.il>
10298
10299 * window.el (fit-window-to-buffer, window-safely-shrinkable-p)
10300 (shrink-window-if-larger-than-buffer): Doc fix.
10301
10302 2001-02-23 Stefan Monnier <monnier@cs.yale.edu>
10303
10304 * hi-lock.el (hi-lock-unface-buffer): Use nil rather than t for
10305 predicate passed to completing-read.
10306
10307 2001-02-23 Eli Zaretskii <eliz@is.elta.co.il>
10308
10309 * startup.el (command-line): Fix last change.
10310
10311 2001-02-23 Jason Rumney <jasonr@gnu.org>
10312
10313 * startup.el (tool-bar-originally-present): New variable.
10314 (command-line): Set it if the tool-bar is switched on at startup.
10315
10316 * frame.el (frame-notice-user-settings): Only adjust frame height
10317 for no tool-bar case if tool-bar was originally switched on.
10318 From E. Jay Berkenbilt.
10319
10320 2001-02-22 Stefan Monnier <monnier@cs.yale.edu>
10321
10322 * server.el (server-switch-buffer): Only switch window if the
10323 current one is dedicated.
10324
10325 * textmodes/fill.el (fill-region-as-paragraph): Skip spaces backward
10326 rather than using (match-beginning 0) when searching for break point.
10327
10328 2001-02-22 Eli Zaretskii <eliz@is.elta.co.il>
10329
10330 * textmodes/texinfmt.el (texinfo-format-scan): Signal an error if
10331 @ follows an accent command such as @'. Support optional braces
10332 in commands that insert accents, like makeinfo does.
10333
10334 2001-02-22 Gerd Moellmann <gerd@gnu.org>
10335
10336 * startup.el (fancy-splash-text): Add a line for ordering
10337 manuals. Reverse order of splash screens shown.
10338 (use-fancy-splash-screens-p): Adapt to the text line added.
10339
10340 * menu-bar.el (menu-bar-help-menu): Add an item for ordering
10341 manuals from the FSF.
10342
10343 * help.el (view-order-manuals): New function.
10344 (toplevel): Bind C-h C-m to this function.
10345
10346 2001-02-21 Stefan Monnier <monnier@cs.yale.edu>
10347
10348 * newcomment.el (comment-forward): Skip the comment-start before
10349 searching for the comment-end.
10350
10351 2001-02-21 Dave Love <fx@gnu.org>
10352
10353 * custom.el (custom-initialize-changed, defcustom): Doc fix.
10354
10355 * international/mule-cmds.el, international/mule.el: Doc fixes.
10356
10357 2001-02-21 Gerd Moellmann <gerd@gnu.org>
10358
10359 * startup.el (fancy-splash-screens): Use display-hourglass
10360 instead of display-busy-cursor.
10361
10362 * frame.el (display-hourglass): Renamed from busy-cursor.
10363 (hourglass-delay): Renamed from busy-cursor-delay-seconds.
10364 (show-cursor-in-non-selected-windows): Doc fix.
10365
10366 2001-02-20 Dave Love <fx@gnu.org>
10367
10368 * international/utf-8.el: Doc and commentary fixes.
10369
10370 2001-02-20 Eli Zaretskii <eliz@is.elta.co.il>
10371
10372 * ehelp.el (with-electric-help): Doc fix.
10373
10374 2001-02-20 Gerd Moellmann <gerd@gnu.org>
10375
10376 * msb.el (msb-mode): Call the update-buffers function explicitly
10377 with a FORCE argument.
10378
10379 * menu-bar.el (menu-bar-update-buffers): Add optional parameter
10380 FORCE. If set, update the menu even if frame-or-buffer-changed-p
10381 returns nil.
10382
10383 2001-02-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10384
10385 * ps-print.el: Timestamp package replacement. Some enhancements.
10386 Some XEmacs compatibility. Doc fix.
10387 (ps-print-version): New version number (6.4).
10388 (ps-printer-name): Initialization fix.
10389 (ps-zebra-stripe-follow): Funcionality enhancement.
10390 (ps-prologue-file): Code enhancement.
10391 (ps-right-header): Timestamp package replacement.
10392 (ps-setup, ps-face-bold-p, ps-face-italic-p)
10393 (ps-get-page-dimensions)
10394 (ps-generate-header, ps-begin-file, ps-begin-job)
10395 (ps-generate-postscript-with-faces, ps-do-despool): Code fix.
10396 (ps-time-stamp-mon-dd-yyyy, ps-time-stamp-hh:mm:ss): New funs.
10397 (ps-zebra-stripe-full-p, ps-zebra-stripe-alist): New vars.
10398 (coding-system-for-write): Var declaration (XEmacs compatibility).
10399
10400 2001-02-20 Miles Bader <miles@gnu.org>
10401
10402 * image-file.el (image-file-name-extensions): Add "tif".
10403
10404 2001-02-19 Gerd Moellmann <gerd@gnu.org>
10405
10406 * wid-edit.el (widget-button-click): Save the selected window
10407 around the code handling clicks on buttons.
10408
10409 2001-02-18 Dave Love <fx@gnu.org>
10410
10411 * imenu.el (imenu--generic-function): Use mapc to iterate over
10412 syntax characters.
10413
10414 2001-02-17 Richard M. Stallman <rms@gnu.org>
10415
10416 * progmodes/fortran.el (fortran-strip-sqeuence-nos): Doc fix.
10417
10418 * uniquify.el (uniquify-buffer-name-style): Doc fix.
10419
10420 2001-02-16 Gerd Moellmann <gerd@gnu.org>
10421
10422 * mouse.el (mouse-save-then-kill): If the distance from the new
10423 point to the mark is equal to the distance of point from the new
10424 point, move point instead of the mark.
10425
10426 2001-02-16 Dave Love <fx@gnu.org>
10427
10428 * textmodes/flyspell.el (flyspell-get-word): Return string without
10429 properties.
10430
10431 2001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
10432
10433 * generic.el (generic-find-file-regexp): Doc fix.
10434 (generic-ignore-files-regexp): New defcustom.
10435 (generic-mode-find-file-hook): If the file's name matches the
10436 regexp in `generic-ignore-files-regexp', don't enter
10437 default-generic-mode. Doc fix.
10438
10439 2001-02-16 Gerd Moellmann <gerd@gnu.org>
10440
10441 * textmodes/flyspell.el (flyspell-region, flyspell-buffer):
10442 Add autoload cookies.
10443
10444 * calendar/cal-tex.el (cal-tex-weekly4-box): Respect setting
10445 of cal-tex-24.
10446
10447 2001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
10448
10449 * simple.el (kill-region, kill-line, kill-ring-save): Doc fix.
10450
10451 * progmodes/compile.el (grep-regexp-alist): Remove the blank from
10452 the character class after the (optional) drive, to support file
10453 names with embedded blanks.
10454
10455 2001-02-15 Sam Steingold <sds@gnu.org>
10456
10457 * textmodes/tex-mode.el (tex-shell-running):
10458 Check the process buffer too.
10459
10460 2001-02-15 Dave Love <fx@gnu.org>
10461
10462 * battery.el (battery-status-function): Fix doc, :type.
10463
10464 * calendar/timeclock.el (timeclock-get-workday-function): Fix :type.
10465
10466 2001-02-15 Gerd Moellmann <gerd@gnu.org>
10467
10468 * subr.el (read-passwd): Clear Lisp memory holding password.
10469
10470 2001-02-15 Miles Bader <miles@gnu.org>
10471
10472 * info.el (Info-copy-current-node-name): New function.
10473 (Info-mode-menu): Add it to the menu.
10474
10475 2001-02-14 Richard M. Stallman <rms@theobromine.ai.mit.edu>
10476
10477 * international/mule-cmds.el (toggle-input-method): Doc fix.
10478
10479 2001-02-13 Stefan Monnier <monnier@cs.yale.edu>
10480
10481 * replace.el (occur): Stop at end of buffer.
10482
10483 2001-02-13 Eli Zaretskii <eliz@is.elta.co.il>
10484
10485 * international/mule-cmds.el (set-input-method): Another doc fix.
10486
10487 2001-02-13 David M. Koppelman <koppel@ee.lsu.edu>
10488
10489 * hi-lock.el (hi-lock-find-patterns): Don't activate font-lock-mode.
10490
10491 2001-02-13 Miles Bader <miles@gnu.org>
10492
10493 * faces.el (set-face-background, set-face-foreground)
10494 (set-face-stipple): Treat a value of nil as being `unspecified'.
10495
10496 2001-02-12 Dave Love <d.love@dl.ac.uk>
10497
10498 * international/latin1-disp.el: Doc fixes.
10499 (latin1-display) <defgroup>: Add :link.
10500 (latin1-display) <function>: Set variable latin1-display.
10501
10502 2001-02-12 Eli Zaretskii <eliz@is.elta.co.il>
10503
10504 * international/mule-cmds.el (set-input-method): Doc fix.
10505
10506 2001-02-12 Eric M. Ludlam <zappo@choochoo.ultranet.com>
10507
10508 * speedbar.el (speedbar-frame-parameters): No toolbar lines.
10509 (speedbar-line-file): Return nil if not a file.
10510 (speedbar-buffers-line-path): Return file for tags, and dir for files.
10511
10512 2001-02-12 Michael Kifer <kifer@cs.sunysb.edu>
10513
10514 * ediff-diff.el (ediff-make-diff2-buffer): Removed bogus checks
10515 for remote files.
10516 (ediff-coding-system-for-read): Replaced the no-conversion default
10517 with raw-text.
10518
10519 * ediff-init.el: Removed :version from defcustom vars.
10520
10521 * ediff-util.el (ediff-compute-custom-diffs-maybe):
10522 Better handling of the diff mode.
10523
10524 * ediff.texi: Added ediff-coding-system-for-read.
10525
10526 * viper.texi: Fix typos.
10527
10528 2001-02-11 Dave Love <fx@gnu.org>
10529
10530 * shadowfile.el: Doc fixes.
10531 (shadow) <defgroup>: Add :link.
10532 (shadowfile-unload-hook): New function.
10533 (shadow-initialize): Use defalias, not fset.
10534 (shadow-define-cluster, shadow-define-literal-group)
10535 (shadow-define-regexp-group, shadow-initialize): Add autoload cookie.
10536
10537 * international/mule.el: Doc and message fixes.
10538
10539 * international/ccl.el (define-ccl-program): Doc fix.
10540
10541 2001-02-11 Kenichi Handa <handa@etl.go.jp>
10542
10543 * faces.el (mode-line): Set :line-width property to -1.
10544
10545 2001-02-10 Richard M. Stallman <rms@gnu.org>
10546
10547 * complete.el (partial-completion-mode): Doc fix.
10548
10549 * simple.el (delete-key-deletes-forward-mode):
10550 Change `let' to `let*' to fix gross bug in last change.
10551
10552 * repeat.el (repeat): Don't let execute-kbd-macro alter
10553 real-last-command.
10554
10555 2001-02-10 Eli Zaretskii <eliz@is.elta.co.il>
10556
10557 * simple.el (eval-expression): Doc fix.
10558
10559 2001-02-09 Dave Love <fx@gnu.org>
10560
10561 * imenu.el (imenu-generic-expression): Doc fix.
10562
10563 * emacs-lisp/re-builder.el (reb-mode): Quote the hook name.
10564 From Juanma Barranquero.
10565
10566 * emacs-lisp/authors.el (authors): Expand `root' before running find.
10567
10568 2001-02-09 Kenichi Handa <handa@etl.go.jp>
10569
10570 * faces.el (set-face-attribute): Describe the case of a negative
10571 value specified for :line-width.
10572
10573 2001-02-08 Stefan Monnier <monnier@cs.yale.edu>
10574
10575 * which-func.el (which-func-mode): Invert which-func-mode-global.
10576 From Juanma Barranquero <lektu@uol.com.br>.
10577
10578 2001-02-08 Dave Love <fx@gnu.org>
10579
10580 * wid-edit.el (widget-plist-convert-widget): Replace binding of
10581 widget-plist-value-type.
10582 (widget-alist-convert-widget): Replace binding of
10583 widget-alist-value-type.
10584
10585 * textmodes/paragraphs.el (sentence-end): Doc fix.
10586
10587 * eshell/em-rebind.el (eshell-cannot-leave-input-list):
10588 Remove `backward-line'.
10589
10590 * play/pong.el (pong-blank-color, pong-bat-color)
10591 (pong-ball-color, pong-border-color, pong-left-key)
10592 (pong-right-key, pong-up-key, pong-down-key, pong-quit-key)
10593 (pong-pause-key, pong-resume-key, pong-timer-delay):
10594 * mail/mh-comp.el (mh-compose-letter-function):
10595 * eshell/esh-mode.el (eshell-skip-prompt-function):
10596 * emulation/viper-ex.el (ex-unix-type-shell-options):
10597 * recentf.el (recentf-menu-filter):
10598 * ps-print.el (ps-print-region-function):
10599 * lpr.el (print-region-function):
10600 * forms.el (forms-mode-hooks):
10601 * dirtrack.el (dirtrack-directory-change-hook):
10602 * cus-start.el (temp-buffer-show-function, display-buffer-function):
10603 * textmodes/spell.el (spell-filter):
10604 * textmodes/fill.el (adaptive-fill-function):
10605 * textmodes/bibtex.el (bibtex-autokey-before-presentation-function):
10606 * progmodes/etags.el (find-tag-default-function):
10607 * progmodes/dcl-mode.el (dcl-calc-command-indent-function):
10608 * progmodes/ada-mode.el (ada-popup-key): Fix :type.
10609
10610 2001-02-07 Eli Zaretskii <eliz@is.elta.co.il>
10611
10612 * emulation/viper-init.el (viper-fast-keyseq-timeout)
10613 (viper-translate-all-ESC-keysequences): Doc fix. From Jim
10614 Meyering <jim@meyering.net>.
10615
10616 * loadup.el: Revert last change.
10617
10618 2001-02-07 Kenichi Handa <handa@etl.go.jp>
10619
10620 * international/mule.el (transform-make-coding-system-args):
10621 Make it work also for coding systems not using CCL.
10622
10623 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
10624
10625 * simple.el (previous-matching-history-element)
10626 (next-matching-history-element): Doc fix.
10627
10628 * loadup.el: Load ccl before utf-8; don't load ccl in the ms-dos
10629 specific part.
10630
10631 2001-02-06 Dave Love <fx@gnu.org>
10632
10633 * add-log.el (add-log-current-defun-function)
10634 (add-log-buffer-file-name-function, add-log-file-name-function):
10635 Fix :type.
10636 (change-log-mode) <font-lock-defaults>: Set SYNTAX-BEGIN.
10637
10638 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
10639
10640 * info.el (info-initialize): Remove the test for system-type when
10641 invocation-directory is non-nil.
10642
10643 * progmodes/make-mode.el (makefile-mode): Set SYNTAX-BEGIN member
10644 of `font-lock-defaults' to `backward-paragraph' rather than nil.
10645
10646 2001-02-06 Andrew Innes <andrewi@gnu.org>
10647
10648 * makefile.w32-in (EMACS): Use $(THISDIR) to make emacs.exe path
10649 absolute.
10650
10651 2001-02-06 David M. Koppelman <koppel@ee.lsu.edu>
10652
10653 * hi-lock.el (hi-lock-mode): Toggling hi-lock-mode now affects all
10654 buffers. When hi-lock turned on rather than only checking current
10655 buffer for regexps, all buffers are checked. Moved activation of
10656 font-lock to hi-lock-refontify. When font-lock turned off rather
10657 than removing added highlighting just in current buffer, remove it
10658 in all buffers. Changed edit menu text from "Automatic
10659 Highlighting" to "Regexp Highlighting" Documentation for
10660 highlighting phrases, minor documentation changes.
10661 (hi-lock-set-file-patterns): Execute only if there are new or
10662 existing file patterns.
10663 (hi-lock-refontify): Assume font-lock-fontify-buffer will first
10664 unfontify and, if a support mode is active, will not refontify the
10665 whole buffer. If necessary, turn on font lock. (Removed
10666 font-lock-unfontify and font-lock support-mode-specific calls,
10667 such as lazy-lock-fontify-window.)
10668 (hi-lock-find-patterns): Do not turn on hi-lock-mode even if
10669 patterns are found. Not useful now since find-file-hook is removed
10670 if hi-lock is off, but may be needed for per-buffer hi-lock activation.
10671 (hi-lock-face-phrase-buffer): New function. Also added related
10672 menu item and keybinding.
10673 (highlight-phrase): New alias, to hi-lock-face-phrase-buffer.
10674 (hi-lock-process-phrase): New function.
10675 (hi-lock-line-face-buffer): Doc fixes.
10676 (hi-lock-face-buffer): Doc fixes.
10677 (hi-lock-unface-buffer): Doc fixes.
10678
10679 2001-02-06 Gerd Moellmann <gerd@gnu.org>
10680
10681 * dabbrev.el (dabbrev-ignored-buffer-regexps): Renamed from
10682 dabbrev-ignored-regexps.
10683
10684 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
10685
10686 * simple.el (kill-line): Doc fix.
10687
10688 2001-02-05 Dave Love <fx@gnu.org>
10689
10690 * loadup.el: Revert last two changes -- bootstrapping works with
10691 regenerated loaddefs.
10692
10693 2001-02-05 Eli Zaretskii <eliz@is.elta.co.il>
10694
10695 * isearch.el (isearch-forward): Doc fix.
10696
10697 * textmodes/nroff-mode.el (nroff-mode): Set the SYNTAX-BEGIN part
10698 of font-lock-defaults to backward-paragraph.
10699
10700 2001-02-05 Gerd Moellmann <gerd@gnu.org>
10701
10702 * mail/rmail.el (rmail-ignored-headers): Add X-Trace,
10703 X-Complaints-To, NNTP-Posting-Date, and User-Agent.
10704
10705 2001-02-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10706
10707 * ebnf2ps.el: Eliminate time-stamp functions.
10708 (ebnf-version): New version (3.5).
10709 (ebnf-eps-finish-and-write): Replace time-stamp functions by
10710 format-time-string.
10711
10712 2001-02-05 Gerd Moellmann <gerd@gnu.org>
10713
10714 * simple.el (next-line): Goto end-of-line before inserting a newline.
10715
10716 2001-02-05 Miles Bader <miles@gnu.org>
10717
10718 * image-file.el (insert-image-file): When visiting an image, also
10719 set `truncate-lines' to t so that any fringe arrow looks correct.
10720
10721 2001-02-05 Kenichi Handa <handa@etl.go.jp>
10722
10723 * isearch.el (isearch-forward): Add description about input method
10724 in the docsting.
10725
10726 2001-02-04 Stefan Monnier <monnier@cs.yale.edu>
10727
10728 * skeleton.el (skeleton-internal-1): Always push the mark for @.
10729
10730 2001-02-02 Eli Zaretskii <eliz@is.elta.co.il>
10731
10732 * info.el (info-initialize): If installation-directory is nil, for
10733 DOS/Windows systems try looking in a sibling of invocation-directory.
10734
10735 2001-02-02 Gerd Moellmann <gerd@gnu.org>
10736
10737 * wid-edit.el (widget-button-click): Fix last change.
10738
10739 * frame.el (frame-notice-user-settings): When resizing the initial
10740 frame because the tool bar is off, also change the frame's top
10741 position if a negative top position was specified.
10742
10743 2001-02-02 Miles Bader <miles@gnu.org>
10744
10745 * image-file.el (insert-image-file): When visiting an image,
10746 suppress the cursor in the image buffer.
10747
10748 2001-02-01 Dave Love <fx@gnu.org>
10749
10750 * progmodes/f90.el (f90-mode): Remove startup message.
10751
10752 * vc-cvs.el: Remove autoloads. Require vc when compiling.
10753
10754 2001-02-01 Gerd Moellmann <gerd@gnu.org>
10755
10756 * startup.el (command-line): Fix code determining whether or not
10757 to use delete-key-deletes-forward-mode.
10758
10759 2001-02-01 Andre Spiegel <spiegel@gnu.org>
10760
10761 * vc.el (vc-diff-switches): New user option.
10762 (vc-version-diff): Use it.
10763 (vc-diff-switches-list): New macro.
10764
10765 * vc-{rcs,cvs,sccs}.el: (vc-BACKEND-diff-switches):
10766 New customization options.
10767 (vc-BACKEND-diff): Use new options via vc-diff-switches-list.
10768
10769 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Return correct status.
10770
10771 2001-02-01 Gerd Moellmann <gerd@gnu.org>
10772
10773 * msb.el (toplevel): Quote hook symbols.
10774
10775 2001-02-01 Kenichi Handa <handa@etl.go.jp>
10776
10777 * international/mule.el (make-coding-system): Add description
10778 about recognized properties in the docstring.
10779
10780 * international/mule-conf.el: Remove unused charsets
10781 mac-roman-lower and mac-roman-upper.
10782
10783 2001-01-31 Gerd Moellmann <gerd@gnu.org>
10784
10785 * textmodes/fill.el (set-fill-prefix): Cancel fill prefix if point
10786 is in front of the left-margin, if any.
10787
10788 * simple.el (delete-key-deletes-forward-mode): Treat `kp-delete'
10789 like `delete'.
10790
10791 * bindings.el: Define `kp-delete' like `delete' in function-key-map.
10792
10793 * term/w32-win.el (mouse-set-font): Doc fix.
10794
10795 2001-01-31 Stefan Monnier <monnier@cs.yale.edu>
10796
10797 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer): Doc fix.
10798 (hi-lock-find-patterns): Turn on font-lock-mode, if it is not
10799 on already.
10800
10801 2001-01-31 Markus Rost <rost@math.ohio-state.edu>
10802
10803 * files.el (save-buffer): Don't give message if (buffer-file-name)
10804 returns nil.
10805
10806 2001-01-31 Eli Zaretskii <eliz@is.elta.co.il>
10807
10808 * toolbar/tool-bar.el (tool-bar-add-item): Doc fix.
10809
10810 * emacs-lisp/re-builder.el (reb-update-modestring): Don't use
10811 concat for integers. From Juanma Barranquero <lektu@uol.com.br>.
10812
10813 * term/w32-win.el (redisplay-dont-pause): Set to t to alleviate
10814 display problems.
10815
10816 2001-01-31 Kenichi Handa <handa@etl.go.jp>
10817
10818 * international/mule.el (charset-info): Fix docstring.
10819
10820 * international/mule-diag.el (describe-character-set): Check final
10821 char valid before printing it.
10822
10823 2001-01-30 Gerd Moellmann <gerd@gnu.org>
10824
10825 * lpr.el (lpr-windows-system, lpr-lp-system): Add autoload cookies.
10826
10827 * frame.el (frame-notice-user-settings): Do the tool-bar
10828 stuff only for graphical displays. Fix a braino.
10829
10830 * frame.el (frame-initialize): Create initial frame visible.
10831 (frame-notice-user-settings): When tool-bar has been switched off,
10832 correct the frame size and sync tool-bar-mode.
10833
10834 * startup.el (command-line): Remove manipulation of frame
10835 height for tool bars.
10836
10837 2001-01-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10838
10839 * lpr.el: Compatibility with XEmacs and doc fixes.
10840 (lpr-windows-system, lpr-lp-system): New vars.
10841 (lpr-printer-switch): New defcustom.
10842 (printer-name, lpr-command): Customization fix.
10843 (print-region-1): Code fix.
10844 (print-region-new-buffer, printify-region): Indentation fix.
10845 (lpr-eval-switch, lpr-flatten-list, lpr-flatten-list-1):
10846 New functions.
10847
10848 2001-01-29 Gerd Moellmann <gerd@gnu.org>
10849
10850 * msb.el (toplevel): Fix the eval-after-load.
10851
10852 2001-01-29 Dave Love <fx@gnu.org>
10853
10854 * eshell/esh-ext.el (eshell-windows-shell-file): Fix :type.
10855
10856 * eshell/em-ls.el (eshell-ls-exclude-regexp): Fix :type.
10857
10858 * progmodes/tcl.el (outline, dabbrev, add-log): Require when compiling.
10859 (tcl-using-emacs-19-23): Consider Emacs 21+.
10860 (tcl-help-directory-list, tcl-command-switches): Fix :type.
10861 (tcl-add-emacs-menu): Supply menu name.
10862 (tcl-beginning-of-defun, tcl-end-of-defun): Defalias, don't fset.
10863
10864 2001-01-29 Gerd Moellmann <gerd@gnu.org>
10865
10866 * simple.el (delete-trailing-whitespace): Don't delete formfeeds.
10867
10868 2001-01-29 Stefan Monnier <monnier@cs.yale.edu>
10869
10870 * pcvs.el (cvs-mark-fis-dead): New function.
10871 (cvs-mode-add): Use it.
10872 (cvs-mode-add-change-log-entry-other-window):
10873 Rebind change-log-default-name to itself rather than to nil.
10874
10875 2001-01-29 Sam Steingold <sds@gnu.org>
10876
10877 * vc-cvs.el: Replaced (require 'vc) with a bunch of
10878 `autoload' statements.
10879
10880 2001-01-29 Eli Zaretskii <eliz@is.elta.co.il>
10881
10882 * files.el (confirm-kill-emacs): Doc fix.
10883
10884 * frame.el (frame-initialize): Doc fix.
10885
10886 * time-stamp.el (time-stamp-string): Doc fix.
10887
10888 * woman.el (WoMan-log-1): Make the log buffer writable.
10889 From Markus Rost <rost@math.ohio-state.edu>.
10890
10891 2001-01-29 Gerd Moellmann <gerd@gnu.org>
10892
10893 * imenu.el (imenu-syntax-alist): Add autoload cookie for
10894 the `make-variable-buffer-local'.
10895
10896 2001-01-29 Dave Love <fx@gnu.org>
10897
10898 * ansi-color.el (ansi-color-for-comint-mode): Add :version.
10899 (ansi-color-for-comint-mode-on, ansi-color-process-output):
10900 Add autoload cookie.
10901 (ansi-color-apply-sequence): Fix typo.
10902
10903 2001-01-29 Gerd Moellmann <gerd@gnu.org>
10904
10905 * menu-bar.el (menu-bar-files-menu): Add menu items for
10906 Postscript printing in black and white.
10907
10908 * mail/rmail.el (rmail-ignored-headers): Add X-Sign, X-BeenThere,
10909 X-Mailman-Version, Precedence, List-Help, List-Post,
10910 List-Subscribe, List-Id, List-Unsubscribe, List-Archive,
10911 Content-Type, Content-Length.
10912
10913 2001-01-29 Dave Love <fx@gnu.org>
10914
10915 * elide-head.el (elide-head): Make overlay evaporate.
10916
10917 * international/mule-conf.el (chinese-big5-1, chinese-big5-2): Doc fix.
10918
10919 2001-01-28 Eli Zaretskii <eliz@is.elta.co.il>
10920
10921 * isearch.el (isearch-highlight): Don't punt if the display
10922 doesn't support colors, since isearch faces are defined for
10923 monochrome displays as well.
10924
10925 2001-01-27 Sam Steingold <sds@gnu.org>
10926
10927 * shell.el (shell-write-history-on-exit): Make sure that we are in
10928 the shell buffer (M-x tex-file RET inserted the error message into
10929 the TeX buffer).
10930
10931 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
10932
10933 * simple.el (transient-mark-mode): Doc fix.
10934
10935 2001-01-27 Gerd Moellmann <gerd@gnu.org>
10936
10937 * progmodes/etags.el (find-tag-noselect): Don't bind tags-file-name.
10938
10939 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
10940
10941 * shell.el (shell-unquote-argument): If the shell is one of the
10942 mentioned in shell-dumb-shell-regexp, don't treat a backslash as a
10943 quote character.
10944 (shell-dumb-shell-regexp): Document that the shells which match
10945 this regexp are supposed to not treat a backslash as a quote character.
10946
10947 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Undo the change
10948 from 2001-01-12. It is not needed, since backspace is mapped into DEL.
10949
10950 2001-01-27 Richard M. Stallman <rms@gnu.org>
10951
10952 * dabbrev.el (dabbrev--substitute-expansion):
10953 Treat a one-capital-letter abbrev as "not all upper case",
10954 so as to force preservation of the expansion's pattern
10955 if the expansion starts with a capital letter.
10956
10957 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
10958
10959 * facemenu.el (facemenu-set-face, facemenu-set-face-from-menu):
10960 Doc fix.
10961
10962 * simple.el (transient-mark-mode): Document the fact that many
10963 commands act on the region when mark is active.
10964
10965 2001-01-27 Kenichi Handa <handa@etl.go.jp>
10966
10967 * international/quail.el (quail-setup-completion-buf): Make the
10968 multibyteness of current buffer inherited to Quail completion buffer.
10969 (quail-show-guidance-buf): Make the multibyteness of current
10970 buffer inherited to Quail guidance buffer.
10971 (quail-help): Make the multibyteness of current buffer inherited
10972 to Quail help buffer.
10973
10974 2001-01-26 Dave Love <fx@gnu.org>
10975
10976 * time-stamp.el: Doc fixes.
10977
10978 * progmodes/delphi.el (delphi-comment-face, delphi-string-face)
10979 (delphi-keyword-face, delphi-other-face): Fix :type.
10980
10981 * textmodes/flyspell.el: Doc fixes. Add :version to new options.
10982
10983 * mail/feedmail.el (feedmail): Add :link.
10984 (feedmail-send-it): Doc fix.
10985
10986 * mail/sendmail.el: Doc fixes.
10987 (sendmail-send-it): Fix the non-ASCII regexp and use
10988 rfc2047-encode-string.
10989
10990 * dired.el, dired-aux.el: Revert last change.
10991
10992 2001-01-26 Gerd Moellmann <gerd@gnu.org>
10993
10994 * makefile.w32-in (DONTCOMPILE): Add various term files.
10995
10996 2001-01-26 Dave Love <fx@gnu.org>
10997
10998 * Makefile.in (DONTCOMPILE): Add various term files.
10999
11000 2001-01-26 Gerd Moellmann <gerd@gnu.org>
11001
11002 * man.el (Man-default-man-entry, Man-mode): Doc fix.
11003
11004 * startup.el (display-startup-echo-area-message): Make sure
11005 the echo area is resized to fit the size of the startup message.
11006
11007 * gud.el (gud-perldb-massage-args): Avoid nreverse'ing a list
11008 part of which is a constant.
11009
11010 2001-01-26 Eli Zaretskii <eliz@is.elta.co.il>
11011
11012 * loadup.el (Top-level) [ms-dos]: Don't load international/ccl twice.
11013
11014 2001-01-26 Richard M. Stallman <rms@gnu.org>
11015
11016 * simple.el (next-line): Don't let `newline' expand abbrevs.
11017 Simplify slightly.
11018 (open-line): Don't let `newline' expand abbrevs.
11019
11020 2001-01-25 John Wiegley <johnw@gnu.org>
11021
11022 * eshell/esh-util.el (eshell-ange-ls-uids): Changed use of `alist'
11023 to `repeat' in the :type field.
11024
11025 * pcomplete.el (pcomplete-file-ignore): Changed a :type field to
11026 allow a choice of regexp or nil.
11027 (pcomplete-dir-ignore): Same.
11028
11029 * eshell/em-unix.el (eshell/occur): Fixed bug causing `occur' (as
11030 a command) to always fail.
11031
11032 2001-01-25 Gerd Moellmann <gerd@gnu.org>
11033
11034 * iswitchb.el (iswitchb-make-buflist): When nconc'ing lists, don't
11035 discard the result.
11036 (iswitchb-to-end): Likewise.
11037
11038 2001-01-25 Sam Steingold <sds@gnu.org>
11039
11040 * vc-cvs.el (vc-cvs-mode-line-string): Doc & comment fix.
11041 Require vc.
11042
11043 2001-01-25 Stefan Monnier <monnier@cs.yale.edu>
11044
11045 * smerge-mode.el (smerge-font-lock-keywords): Relax submatch 1.
11046
11047 * emacs-lisp/easy-mmode.el (define-minor-mode): Docstring fix.
11048
11049 2001-01-25 Dave Love <fx@gnu.org>
11050
11051 * lisp/international/mule-diag.el (describe-char-after): Doc fix.
11052 (describe-coding-system): Tweak the English text.
11053
11054 * loadup.el: Preload international/ccl for utf-8.
11055
11056 2001-01-25 Eli Zaretskii <eliz@is.elta.co.il>
11057
11058 * mail/rmail.el (rmail-redecode-body): Doc fix.
11059
11060 2001-01-25 Kenichi Handa <handa@etl.go.jp>
11061
11062 * international/mule-cmds.el (reset-language-environment):
11063 Reset coding-category-utf-8 to mule-utf-8.
11064
11065 * international/mule-conf.el (coding-category-utf-8):
11066 Initialize to mule-utf-8.
11067
11068 * loadup.el: Preload international/utf-8.
11069
11070 * international/utf-8.el: New file.
11071
11072 2001-01-24 Stefan Monnier <monnier@cs.yale.edu>
11073
11074 * diff-mode.el (diff-mode): Disable preliminary support for `compile'.
11075
11076 2001-01-24 Sam Steingold <sds@gnu.org>
11077
11078 * dired.el (dired-replace-in-string): Removed.
11079 (dired-sort-toggle): Use `replace-regexps-in-string'
11080 instead of `dired-replace-in-string'.
11081
11082 * dired-aux.el (dired-shell-stuff-it, dired-rename-subdir)
11083 (dired-rename-subdir-2, dired-insert-subdir-doinsert): Ditto.
11084
11085 * gs.el (gs-replace-in-string): Removed.
11086 (gs-options): Use `replace-regexps-in-string'
11087 instead of `gs-replace-in-string'.
11088
11089 2001-01-24 Eli Zaretskii <eliz@is.elta.co.il>
11090
11091 * mail/emacsbug.el (report-emacs-bug): Mention the fact that the
11092 bug report is mailed to an email list and posted to a news group.
11093
11094 2001-01-24 Gerd Moellmann <gerd@gnu.org>
11095
11096 * comint.el (comint-replace-by-expanded-history-before-point):
11097 Fix change of 2000-08-03 to move point to the start of the line again.
11098
11099 * startup.el (tool-bar-images-pixel-height): New variable.
11100 (command-line): After loading the user's init file, when
11101 tool-bar-mode is on, increase the frame's size by some lines for
11102 the tool-bar.
11103
11104 * frame.el (frame-initialize): Create the initial frame invisible.
11105
11106 2001-01-24 ShengHuo ZHU <zsh@cs.rochester.edu>
11107
11108 * language/chinese.el (chinese-iso-8bit): MIME:GB2312.
11109 (chinese-big5): MIME:Big5.
11110
11111 2001-01-24 Gerd Moellmann <gerd@gnu.org>
11112
11113 * international/mule-cmds.el (universal-coding-system-argument):
11114 Handle commands with prefix args.
11115
11116 2001-01-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
11117
11118 * calendar/diary-lib.el (diary-float): Fix case of MONTH
11119 being a list of numbers.
11120 (diary-mail-entries): Rewritten.
11121
11122 2001-01-23 Dave Love <fx@gnu.org>
11123
11124 * international/mule.el (make-coding-system): Fix typo.
11125
11126 * textmodes/outline.el (outline-mode) <font-lock-defaults>:
11127 Add backward-paragraph as font-lock-beginning-of-syntax-function.
11128
11129 2001-01-23 Eli Zaretskii <eliz@is.elta.co.il>
11130
11131 * font-lock.el (font-lock-mode): Doc fix.
11132
11133 2001-01-23 Kenichi Handa <handa@etl.go.jp>
11134
11135 * international/mule.el (make-translation-table): Fix docstring.
11136
11137 2001-01-22 Eli Zaretskii <eliz@is.elta.co.il>
11138
11139 * mail/rmail.el (rmail-redecode-body): New function.
11140
11141 * icomplete.el (icomplete-minibuffer-setup-hook): Doc fix.
11142
11143 2001-01-22 Gerd Moellmann <gerd@gnu.org>
11144
11145 * isearch.el (isearch-lazy-highlight-case-fold-search)
11146 (isearch-lazy-highlight-regexp): New variables.
11147 (isearch-lazy-highlight-cleanup): Update lazy highlight if
11148 case-fold search or regexp search has been toggled.
11149
11150 * wid-edit.el (widget-button-click): Avoid a save-excursion
11151 around running a global binding.
11152
11153 * isearch.el (isearch-lazy-highlight-initial-delay): Set default
11154 to 0.25.
11155
11156 2001-01-20 Miles Bader <miles@gnu.org>
11157
11158 * cus-edit.el (custom-face-save): Do post-processing on the face's
11159 new value like `custom-face-set' does.
11160
11161 2001-01-19 Eli Zaretskii <eliz@is.elta.co.il>
11162
11163 * mail/emacsbug.el (report-emacs-bug): Report the value of
11164 LC_CTYPE, not LC_TYPE.
11165
11166 * isearch.el (isearch-forward): Add isearch-toggle-case-fold,
11167 isearch-toggle-regexp and isearch-edit-string to doc string.
11168
11169 2001-01-19 Gerd Moellmann <gerd@gnu.org>
11170
11171 * textmodes/texinfo.el (texinfo-mode): Use backward-paragraph
11172 as font-lock-beginning-of-syntax-function in font-lock-defaults.
11173
11174 * jit-lock.el (jit-lock-fontify-now): Don't bind
11175 font-lock-beginning-of-syntax-function to nil.
11176
11177 2001-01-19 Eli Zaretskii <eliz@is.elta.co.il>
11178
11179 * mail/emacsbug.el (report-emacs-bug): Report values of
11180 locale-coding-system, default-enable-multibyte-characters, and the
11181 environment variables LC_ALL, LC_TYPE, and LANG.
11182
11183 2001-01-19 Gerd Moellmann <gerd@gnu.org>
11184
11185 * font-lock.el (font-lock-default-fontify-region): Fix last change.
11186
11187 * font-lock.el (font-lock-multiline): Default to nil.
11188 (font-lock-default-fontify-region): If font-lock-multiline is
11189 nil, don't check the property `font-lock-multiline'.
11190
11191 * jit-lock.el (jit-lock-after-change): If font-lock-multiline
11192 is nil, don't check the `font-lock-multiline' text property.
11193
11194 2001-01-19 Michael Kifer <kifer@cs.sunysb.edu>
11195
11196 * viper.el: Call initial-major-mode on startup.
11197
11198 * ediff.el (ediff-patch-file): Use better defaults.
11199
11200 * ediff-vers.el: Fix for 8+3 DOS file systems.
11201
11202 2001-01-19 Colin Walters <walters@cis.ohio-state.edu>
11203
11204 * ediff-util.el (ediff-compare-custom-diffs-maybe): Put diff in
11205 diff mode, if available.
11206
11207 2001-01-19 Michael Kifer <kifer@cs.sunysb.edu>
11208
11209 * ediff-hook.el (ediff-xemacs-init-menus): Fixed add-menu-button.
11210
11211 * ediff-init.el (subst-char-in-string): Define and use it, unless
11212 it's already defined.
11213
11214 2001-01-18 Gerd Moellmann <gerd@gnu.org>
11215
11216 * tooltip.el (tooltip-hide-delay): New user-option.
11217 (tooltip-show): Use tooltip-hide-delay instead of the default.
11218
11219 2001-01-18 Kenichi Handa <handa@etl.go.jp>
11220
11221 * mail/sendmail.el (mail-setup): Call set-buffer-multibyte because
11222 kill-local-variable doesn't work for enable-multibyte-characters.
11223
11224 2001-01-17 Dave Love <fx@gnu.org>
11225
11226 * ediff-init.el (ediff-before-setup-hook)
11227 (ediff-merge-filename-prefix): Add :version.
11228
11229 * international/latin1-disp.el: Require disp-table.
11230 (latin1-display): Fix :set.
11231
11232 * net/eudc-vars.el (eudc-server, eudc-protocol): Fix :type.
11233
11234 2001-01-17 Gerd Moellmann <gerd@gnu.org>
11235
11236 * isearch.el (isearch-lazy-highlight-initial-delay)
11237 (isearch-lazy-highlight-interval): Default to 0.
11238
11239 2001-01-17 Bob Glickstein <bobg@zanshin.com>
11240
11241 * isearch.el (isearch-highlight): Set isearch-overlay priority to
11242 1 here rather than each time through
11243 isearch-lazy-highlight-new-loop.
11244 (isearch-lazy-highlight-max): Variable deleted.
11245 (isearch-lazy-highlight-max-at-a-time): New user variable, like
11246 isearch-lazy-highlight-max but controls a single invocation of
11247 isearch-lazy-highlight-update.
11248 (isearch-lazy-highlight-wrapped): Variable recreated.
11249 (isearch-lazy-highlight-window-start): New variable.
11250 (isearch-lazy-highlight-cleanup): Restored to behavior of
11251 before 2-Jan.
11252 (isearch-lazy-highlight-remove-overlays): Function deleted;
11253 behavior folded into isearch-lazy-highlight-cleanup. "Keep"
11254 behavior removed.
11255 (isearch-lazy-highlight-new-loop): Restore old behavior of calling
11256 isearch-lazy-highlight-update in a loop rather than just once.
11257 Test isearch-invalid-regexp here and decide not to start a new
11258 loop, rather than testing it each time through
11259 isearch-lazy-highlight-update.
11260 (isearch-lazy-highlight-search): Function restored.
11261 (isearch-lazy-highlight-update): Get called in a timer loop again,
11262 but this time highlight more than one match each time through.
11263 Only highlight matches in the visible part of the window.
11264 Start at point, move in the direction of the search, and wrap around at
11265 the edge of the window. Use sit-for to force redisplay and ensure
11266 window-start is credible. "Face suppressing" behavior removed;
11267 overlay priorities should make it unnecessary, right?
11268 (isearch-highlight): Face suppressing behavior removed.
11269 (isearch-dehighlight): Face suppressing behavior removed.
11270 (isearch-set-lazy-highlight-faces-at): Removed.
11271
11272 2001-01-17 Kenichi Handa <handa@etl.go.jp>
11273
11274 * language/european.el ("Latin-1"): Make the format of description
11275 about additional language environments same as that of Latin-2.
11276
11277 2001-01-16 Dave Love <fx@gnu.org>
11278
11279 * isearch.el (isearch-lazy-highlight): Add :version.
11280
11281 * simple.el (backward-delete-char-untabify-method)
11282 (next-line-add-newlines): Add :version.
11283
11284 2001-01-16 Gerd Moellmann <gerd@gnu.org>
11285
11286 * bindings.el: Bind <backspace> and <delete> via function-key-map.
11287 Don't bind <delete> otherwise.
11288
11289 * simple.el (delete-key-deletes-forward-mode): Bind <backspace>
11290 and <delete> via function-key-map.
11291
11292 * textmodes/flyspell.el (mail-mode-flyspell-verify): Check in
11293 Subject line only if point is after the `Subject:'.
11294
11295 2001-01-16 Kenichi Handa <handa@etl.go.jp>
11296
11297 * language/japanese.el ("Japanese"): Add japanese-jisx0213-1 and
11298 japanese-jisx0213-2 in `charset' property of this lang. env.
11299
11300 * language/european.el ("Latin-1"): Add description for Dutch and
11301 Spanish lang. env.
11302
11303 * international/mule.el (decode-char): Fix conditions.
11304 (encode-char): Handle eight-bit-control too.
11305 (transform-make-coding-system-args): New function.
11306 (make-coding-system): Accept XEmacs style arguments for CCL base
11307 coding system.
11308
11309 2001-01-15 Gerd Moellmann <gerd@gnu.org>
11310
11311 * progmodes/etags.el (find-tag-noselect): Save the value of
11312 tags-file-name before switching buffers, for the case it has a
11313 buffer-local value.
11314
11315 2001-01-15 Alex Schroeder <alex@gnu.org>
11316
11317 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
11318 From Dave Love <fx@gnu.org>.
11319 (ansi-color-for-comint-mode): Fix :version.
11320
11321 2001-01-15 Alex Schroeder <alex@gnu.org>
11322
11323 * ansi-color.el (ansi-color-unfontify-region): Doc change.
11324
11325 2001-01-14 Eli Zaretskii <eliz@is.elta.co.il>
11326
11327 * dired.el (dired-insert-directory): If file-system-info fails,
11328 remove the " free " part, but don't signal an error.
11329
11330 2001-01-12 Sam Steingold <sds@gnu.org>
11331
11332 * bookmark.el (bookmark-maybe-historicize-string):
11333 Use new backquote syntax.
11334
11335 2001-01-12 Richard M. Stallman <rms@gnu.org>
11336
11337 * subr.el (last): Handle a list that doesn't end in nil.
11338
11339 2001-01-12 Sam Steingold <sds@gnu.org>
11340
11341 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind `backspace'
11342 to `backward-delete-char-untabify'.
11343
11344 2001-01-12 Dave Love <fx@gnu.org>
11345
11346 * cus-edit.el (customize-menu-create): Fix the :filter following
11347 easymenu change.
11348
11349 * wid-edit.el (function): Add :match-alternatives.
11350 (widget-color-action): Doc fix.
11351
11352 2001-01-12 Gerd Moellmann <gerd@gnu.org>
11353
11354 * calendar/calendar.el (calendar-basic-setup): Doc fix.
11355
11356 2001-01-12 Kenichi Handa <handa@etl.go.jp>
11357
11358 * international/mule-cmds.el (prefer-coding-system): Fix docstring.
11359
11360 * international/ccl.el (define-ccl-program): Fix docstring.
11361
11362 2001-01-11 Dave Love <fx@gnu.org>
11363
11364 * international/mule-cmds.el (standard-display-european-internal):
11365 Set display table for 2208 as for 160.
11366
11367 * progmodes/ada-mode.el (ada-popup-key): Fix last change.
11368
11369 * progmodes/fortran.el (fortran-mode-map): Modify Customization
11370 entry for custom-menu-create change.
11371 (fortran-strip-sqeuence-nos): Make arg optional. Fix regexp and
11372 don't cons it in the search loop.
11373
11374 * imenu.el (imenu--truncate-items): Revert last change.
11375
11376 2001-01-11 Eli Zaretskii <eliz@is.elta.co.il>
11377
11378 * info.el (Info-setup-header-line): If the node header includes
11379 either Next: or Prev: links, don't show the File: and Node: parts
11380 in the header line.
11381
11382 2001-01-11 Gerd Moellmann <gerd@gnu.org>
11383
11384 * comint.el (comint-goto-process-mark): Don't print a message
11385 when running in batch mode.
11386
11387 * isearch.el (isearch-search): In the condition-case handler for
11388 `error', set isearch-invalid-regexp to the whole error message.
11389
11390 * subr.el (eval-after-load): Call load-symbol-file-load-history to
11391 ensure that eval-after-load works for files dumped with Emacs.
11392
11393 * help.el (load-symbol-file-load-history): New function extracted
11394 from function symbol-file.
11395 (symbol-file): Use it.
11396
11397 * toolbar/save.xpm, toolbar/undo.xpm: Use the same colors as exit.xpm.
11398
11399 2001-01-11 Eli Zaretskii <eliz@is.elta.co.il>
11400
11401 * progmodes/etags.el (find-tag-interactive): If last-tag is nil,
11402 behave as if there were no prefix argument.
11403 (find-tag-noselect): If last-tag is nil, behave as if the NEXT-P
11404 argument were nil.
11405
11406 2001-01-11 Richard M. Stallman <rms@gnu.org>
11407
11408 * isearch.el (isearch-lazy-highlight-update):
11409 Don't look for more potential matches once maximum is exceeded.
11410 Use overlays-in to check correctly for overlap with current match.
11411 Ignore empty matches.
11412
11413 2001-01-11 Miles Bader <miles@gnu.org>
11414
11415 * textmodes/ispell.el (ispell-adjusted-window-height): New function.
11416 (ispell-overlay-window, ispell-help, ispell-show-choices)
11417 (ispell-command-loop): Use it instead of `window-height'.
11418
11419 2001-01-10 Gerd Moellmann <gerd@gnu.org>
11420
11421 * files.el (confirm-kill-emacs): New user-option.
11422 (save-buffers-kill-emacs): Ask for final confirmation before
11423 killing Emacs.
11424
11425 * isearch.el (isearch-done): Set isearch-lazy-highlight-start
11426 to nil.
11427
11428 2001-01-10 Dave Love <fx@gnu.org>
11429
11430 * progmodes/etags.el (tags-apropos-additional-actions): Fix :type.
11431
11432 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix doc, :type.
11433
11434 * hi-lock.el (hi-lock-exclude-modes): Fix :type.
11435
11436 * calculator.el (calculator-number-digits): Fix :type.
11437
11438 * vc-cvs.el (vc-cvs-header): Fix :type.
11439 * vc-rcs.el (vc-rcs-header): Fix :type.
11440 * vc-sccs.el (vc-sccs-header): Fix :type.
11441
11442 * progmodes/ada-mode.el (ada-popup-key): Fix :type.
11443
11444 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
11445
11446 * eshell/esh-util.el (eshell-ange-ls-uids): Fix :type.
11447
11448 2001-01-10 Gerd Moellmann <gerd@gnu.org>
11449
11450 * simple.el (set-variable): Force a thorough redisplay for the
11451 case that the variable has an effect on the display, like
11452 `tab-width' has.
11453
11454 2001-01-10 Andre Spiegel <spiegel@gnu.org>
11455
11456 * vc.el: Add documentation for backend interface.
11457
11458 2001-01-10 Kenichi Handa <handa@etl.go.jp>
11459
11460 * font-lock.el (c-font-lock-extra-types): Add "Lisp_Object".
11461
11462 * international/mule-conf.el (latin-extra-code-table): Set to t
11463 for \223 and \224.
11464
11465 2001-01-09 Kenichi Handa <handa@etl.go.jp>
11466
11467 * international/mule-cmds.el (locale-language-names): Map "es" to
11468 "Spanish" and "nl" to "Dutch".
11469
11470 2001-01-09 Gerd Moellmann <gerd@gnu.org>
11471
11472 * bindings.el (global-map): Bind <home> to beginning-of-line,
11473 <end> to end-of-line, C-<home> to beginning-of-buffer, and
11474 C-<end> to end-of-buffer.
11475
11476 * language/european.el: Add Dutch and Spanish language info
11477 to be able to use the appropriate tutorials.
11478
11479 2001-01-09 Alex Schroeder <alex@gnu.org>
11480
11481 * ansi-color.el (ansi-color-process-output): Use markers instead
11482 of positions for start and end of region.
11483 (ansi-color-apply-on-region): Rewrote code to make it more robust.
11484 Previously, occasional mistakes happend when fontifying many
11485 chunks of output (eg. ls --color=yes /dev). This happened
11486 whenever an overlay was created up to the end of the region, which
11487 coincided with the process-mark. New text would then be added
11488 within that overlay instead of after it.
11489 (ansi-color-make-extent): Overlays are created with the property
11490 `modification-hooks' set to '(ansi-color-freeze-overlay).
11491 (ansi-color-freeze-overlay): New function. When inserting text at
11492 the end of the overlay, the overlay will resize.
11493
11494 2000-01-09 Alex Schroeder <alex@gnu.org>
11495
11496 * ansi-color.el (ansi-color-process-output): Doc change.
11497 (ansi-color-unfontify-region): Doc change. No longer installed
11498 automatically in font-lock-unfontify-region-function.
11499 (ansi-color-apply): Doc change.
11500 (ansi-color-apply-on-region): Use extents or overlays instead of
11501 text-properties.
11502 (ansi-color-make-extent): New function.
11503 (ansi-color-set-extent-face): New function.
11504
11505 2000-01-09 Alex Schroeder <alex@gnu.org>
11506
11507 * ansi-color.el (ansi-color-process): Removed, Emacs and XEmacs
11508 both use ansi-color-process-output, now.
11509 (ansi-color-process-output): Doesn't return string anymore. It is
11510 installed in comint-output-filter-functions for both Emacs and
11511 XEmacs, now.
11512 (ansi-color-unfontify-region): Simplified code removing variables
11513 pos and start-ansi.
11514 (ansi-color-apply): Put text-property ansi-color before putting
11515 text-property face because ansi-color-unfontify-region is called
11516 immediately after the call to put-text-property.
11517 (ansi-color-context-region): Doc change.
11518 (ansi-color-filter-region): Simplified code.
11519 (ansi-color-apply-on-region): Changed start to start-marker, using
11520 a marker explicitly. Put text-property ansi-color before putting
11521 text-property face because ansi-color-unfontify-region is called
11522 immediately after the call to put-text-property.
11523
11524 2000-01-09 Alex Schroeder <alex@gnu.org>
11525
11526 * ansi-color.el (ansi-color-faces-vector): Doc change.
11527 (ansi-color-for-comint-mode): Changed :type property to choice.
11528 (ansi-color-last-context): Removed.
11529 (ansi-color-process-output): Don't use ansi-color-last-context, as
11530 the main functions will store their context now.
11531 (ansi-color-context): Doc change.
11532 (ansi-color-filter-apply): Rewrote it based on ansi-color-apply.
11533 Uses ansi-color-context such that repeated calls will strip
11534 partial escape sequences, too.
11535 (ansi-color-apply): Simplified code. Colorize end of string if
11536 face is not null. Store context in new (FACE STRING) format, such
11537 that repeated calls will strip partial escape sequences, too.
11538 Append faces to face property using ansi-color-apply-sequence such
11539 that cumulative mode actually works.
11540 (ansi-color-context-region): New variable.
11541 (ansi-color-filter-region): Rewrote it based on
11542 ansi-color-apply-on-region. Uses ansi-color-context-region such
11543 that repeated calls will strip partial escape sequences, too.
11544 (ansi-color-apply-on-region): Simplified code. Colorize end of
11545 region if face is not null. Store context in new (FACE POS)
11546 format, such that repeated calls will strip partial escape
11547 sequences, too. Append faces to face property using
11548 ansi-color-apply-sequence such that cumulative mode actually works.
11549 (ansi-color-apply-sequence): New function.
11550 (ansi-color-get-face): When the default face is added to the list
11551 of faces, all previous settings are discarded and the list of
11552 faces is set to '(default).
11553
11554 2000-01-09 Alex Schroeder <alex@gnu.org>
11555
11556 * ansi-color.el (ansi-color-faces-vector): Use nil for the default
11557 face, such that ansi-color-apply and ansi-color-apply-on-region
11558 will do the right thing.
11559 (ansi-color-apply): Do the right thing, ie. if ansi-color-get-face
11560 returns nil, set the list of faces back to nil instead of
11561 appending the result of ansi-color-get-face to the front of the list.
11562
11563 2000-01-09 Alex Schroeder <alex@gnu.org>
11564
11565 * ansi-color.el (ansi-color-for-comint-mode): Doc change.
11566 (ansi-color-process): Doc change.
11567 (ansi-color-last-context): New buffer-local variable.
11568 (ansi-color-process-output): New function. It is automatically
11569 added to comint-output-filter-functions if this is XEmacs.
11570 (ansi-color-unfontify-region): New optional parameter for XEmacs
11571 compatibility. Check wether font-lock-syntactic-keywords is
11572 boundp before removing the syntax table text property, as XEmacs
11573 doesn't have it.
11574 (ansi-color-filter-region): Doc change.
11575 (ansi-color-apply-on-region): Doc change.
11576 (ansi-color-make-face): New function. Compatibility layer for
11577 XEmacs. Return temporary faces instead of cons cells for XEmacs.
11578 (ansi-color-make-color-map): Use ansi-color-make-face.
11579 (ansi-color-get-face): Avoid face text property '(nil) as results
11580 in an errow for XEmacs.
11581
11582 2000-01-09 Alex Schroeder <alex@gnu.org>
11583
11584 * ansi-color.el (ansi-color-unfontify-region): New function.
11585 Uses text-property ansi-color in order to preserve fontification by
11586 ansi-color. When the package is loaded, a lambda expression is
11587 put onto font-lock-mode-hook. This lambda expression will check
11588 font-lock-unfontify-region-function and replace
11589 font-lock-default-unfontify-region with ansi-color-unfontify-region.
11590 (ansi-color-apply): Add text-property ansi-color in addition to
11591 text-property face.
11592 (ansi-color-apply-on-region): Add text-property ansi-color in
11593 addition to text-property face.
11594 (save-buffer-state): Copy of the macro that is also used by
11595 lazy-lock and font-lock.
11596
11597 (ansi-color-for-comint-mode): New option.
11598 (ansi-color-for-comint-mode-on): Set ansi-color-for-comint-mode.
11599 (ansi-color-for-comint-mode-off): Ditto.
11600 (ansi-color-for-comint-mode-filter): Ditto.
11601 (ansi-color-process): New function. Uses ansi-color-for-comint-mode to
11602 decide what to do. This function is added to
11603 comint-preoutput-filter-functions when the package is loaded.
11604
11605 (ansi-color-for-shell-mode-set): Removed.
11606 (ansi-color-for-shell-mode): Removed.
11607
11608 2000-01-09 Alex Schroeder <alex@gnu.org>
11609
11610 * ansi-color.el (ansi-color-for-shell-mode-set): New function with
11611 the lambda expression from the ansi-color-for-shell-mode :set
11612 property. Additionally, modify shell-mode-hook to enable or
11613 disable font-lock-mode for future shell buffers.
11614 (ansi-color-for-shell-mode): The :set property calls
11615 ansi-color-for-shell-mode-set instead of a lambda expression.
11616
11617 2000-01-09 Alex Schroeder <alex@gnu.org>
11618
11619 * ansi-color.el (ansi-color-for-shell-mode): Doc change.
11620 (ansi-color-context): New variable.
11621 (ansi-color-apply): Save context between calls.
11622
11623 2001-01-09 Eli Zaretskii <eliz@is.elta.co.il>
11624
11625 * isearch.el (isearch, isearch-lazy-highlight-face):
11626 New definitions for face colors and attributes.
11627
11628 * wid-edit.el (widget-choose): Call display-popup-menus-p instead
11629 of display-mouse-p.
11630
11631 2001-01-09 Kenichi Handa <handa@etl.go.jp>
11632
11633 * international/mule.el (make-coding-system): If the coding system
11634 accepts extra latin codes, register such codes as safe for the
11635 coding system.
11636
11637 2001-01-08 Richard M. Stallman <rms@gnu.org>
11638
11639 * emacs-lisp/bytecomp.el (byte-compile-log-1): In non-batch case,
11640 don't mention the file name or the date here, because they are
11641 logged at the start of the file.
11642
11643 2001-01-08 Richard M. Stallman <rms@gnu.org>
11644
11645 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
11646 Change screen-width to frame-width.
11647
11648 2001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
11649
11650 * info.el (Info-search): Print the default as part of the prompt.
11651
11652 2001-01-08 Andre Spiegel <spiegel@gnu.org>
11653
11654 * vc.el (vc-default-latest-on-branch-p): New function, replaces
11655 constant implementations in backends.
11656
11657 * vc-cvs.el (vc-cvs-latest-on-branch-p): Removed.
11658 (vc-cvs-checkout): Renamed arg WRITABLE to EDITABLE.
11659
11660 * vc-rcs.el (vc-rcs-checkout, vc-rcs-cancel-version): Renamed arg
11661 WRITABLE to EDITABLE.
11662
11663 * vc-sccs.el (vc-sccs-latest-on-branch-p): Removed.
11664 (vc-sccs-checkout, vc-sccs-cancel-version): Renamed arg WRITABLE
11665 to EDITABLE.
11666
11667 2001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
11668
11669 * emacs-lisp/copyright.el (copyright-current-year): Now a defvar.
11670 (copyright, copyright-update): Compute the current year at run time.
11671
11672 2001-01-08 Gerd Moellmann <gerd@gnu.org>
11673
11674 * isearch.el (isearch-old-signal-hook): Removed.
11675 (isearch-mode): Add isearch-done to kbd-macro-termination-hook
11676 instead of setting signal-hook-function.
11677 (isearch-done): Remove isearch-done from kbd-macro-termination-hook.
11678
11679 2001-01-08 Kevin Gallagher <kevingal@onramp.net>
11680
11681 * emulation/edt.el: Update to version 4.0. Provide support for
11682 EDT scroll margins at top and bottom of the window. Provide an
11683 emulation of the EDT SUBS command (bound to GOLD-Enter, by
11684 default). Enhance edt-quit, bound to GOLD-q by default, to warn
11685 user when file-related buffer modifications exist.
11686 Provide support for running EDT Emulation in XEmacs.
11687 Provide customize access to some user updatable variables.
11688 Add Commentary section to file header.
11689 Fixed a few minor bugs and cleaned up some code.
11690
11691 * emulation/edt-mapper.el: Update to version 4.0. Provide support
11692 for detecting a keypress that generates an ASCII key sequence.
11693 (Previously, only a keypress that generates a vector was
11694 recognized.) Embed Window Manager name into name of the generated
11695 EDT Emulation initialization file since the initialization file is
11696 Window Manager specific. Add Commentary section to file header.
11697
11698 2001-01-07 Eli Zaretskii <eliz@is.elta.co.il>
11699
11700 * mail/sendmail.el (mail-mode): Doc fix.
11701
11702 * info.el (Info-goto-emacs-command-node): Doc fix.
11703 (Info-goto-emacs-key-command-node): Doc fix.
11704
11705 2001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
11706
11707 * ediff-vers.el (noninteractive): Don't load generic-sc on MS-DOS
11708 systems without long file-name support.
11709
11710 2001-01-06 Andrew Innes <andrewi@gnu.org>
11711
11712 * makefile.w32-in (custom-deps): Set EMACSLOADPATH explicitly.
11713
11714 2001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
11715
11716 * isearch.el (isearch-lazy-highlight-remove-overlays): Doc fix.
11717 (isearch-lazy-highlight-update): Doc fix.
11718
11719 * ffap.el (ffap-bindings): Doc fix.
11720
11721 * dired-x.el (dired-virtual-guess-dir): Doc fix.
11722
11723 2001-01-05 Dave Love <fx@gnu.org>
11724
11725 * emacs-lisp/cl-seq.el (remove, remq): Remove.
11726
11727 2001-01-05 Gerd Moellmann <gerd@gnu.org>
11728
11729 * mouse-drag.el (mouse-drag-safe-scroll):
11730 Bind scroll-preserve-screen-position to nil.
11731
11732 * isearch.el (isearch-old-signal-hook): New variable.
11733 (isearch-mode): Set signal-hook-function to isearch-done.
11734 (isearch-done): Restore old signal-hook-function.
11735
11736 * info.el (Info-fontify-node): Mark one more char as intangible.
11737
11738 2000-01-05 Kenichi Handa <handa@etl.go.jp>
11739
11740 * composite.el (compose-last-chars): New argument COMPONENTS.
11741 If it is non-nil, compose preceding characters by compose-region with
11742 COMPONENTS.
11743
11744 * international/quail.el (quail-input-string-to-events): New function.
11745 (quail-input-method): Convert input string to events here.
11746 (quail-start-translation): Return input string, not event list.
11747 (quail-start-conversion): Likewise.
11748
11749 2001-01-04 Gerd Moellmann <gerd@gnu.org>
11750
11751 * tooltip.el (tooltip-cancel-delayed-tip)
11752 (tooltip-start-delayed-tip): Renamed from tooltip-disable-timeout
11753 and tooltip-add-timeout.
11754 (tooltip-show): Set border color from faces's foreground.
11755 (tooltip-show-help-function): If called with the same help string
11756 as last time, do nothing.
11757 (tooltip-help-tips): Don't set tooltip-help-message to nil.
11758
11759 * startup.el (fancy-splash-screens): Don't bind show-help-function
11760 to nil.
11761
11762 * tooltip.el (tooltip-frame-parameters): Remove colors.
11763 (tooltip): New face
11764 (tooltip-set-param): New function.
11765 (tooltip-show): Set up color frame parameters from face `tooltip'.
11766 Display the tooltip text in face `tooltip'.
11767
11768 2001-01-04 Dave Love <fx@gnu.org>
11769
11770 * whitespace.el (whitespace-global-mode): Fix typo.
11771
11772 * hilit19.el, mail/rnewspost.el, mail/rnews.el: Moved to obsolete.
11773
11774 2001-01-04 Eli Zaretskii <eliz@is.elta.co.il>
11775
11776 * help.el (help-for-help): Fix a typo in a doc string.
11777 From kwzh@gnu.org (Karl Heuer).
11778
11779 2001-01-03 Dave Love <fx@gnu.org>
11780
11781 * dired-x.el: Doc fixes. Maintainer change.
11782 (dired-guess-shell-gnutar, dired-guess-shell-znew-switches): Fix :type.
11783 (dired-guess-shell-alist-default): Don't use xloadimage for PNG.
11784 (dired-guess-shell-alist-user): Customize.
11785 (dired-x-help-address): Set to bug-gnu-emacs.
11786 (dired-x-maintainer, dired-x-file, dired-x-version): Deleted.
11787 (dired-default-directory): Renamed from default-directory.
11788
11789 * hl-line.el (hl-line): Doc fix.
11790
11791 2001-01-03 Karl Fogel <kfogel@red-bean.com>
11792
11793 * mail/mail-hist.el (mail-hist-text-too-long-p): Doc fix.
11794
11795 2001-01-02 Richard M. Stallman <rms@gnu.org>
11796
11797 * isearch.el (isearch-lazy-highlight-cleanup): Arg now says
11798 to remove all the current alternative-match highlighting.
11799 If nil, remove only what's outside the current window.
11800 (isearch-lazy-highlight-remove-overlays): Take optional
11801 region within which NOT to remove them.
11802 (isearch-lazy-highlight-new-loop): Greatly simplified.
11803 (isearch-lazy-highlight-update): Find all the other occurrences
11804 visible in the window, in just one call.
11805 (isearch-lazy-highlight-start): Now holds start of region to scan.
11806 (isearch-lazy-highlight-end): Now holds end of region to scan.
11807 (isearch-lazy-highlight-wrapped): Variable deleted.
11808 (isearch-lazy-highlight-search): Function deleted.
11809
11810 2000-01-02 Andrew Innes <andrewi@gnu.org>
11811
11812 * w32-fns.el (convert-standard-filename): Do length check on name
11813 before aref.
11814
11815 2001-01-02 Dave Love <fx@gnu.org>
11816
11817 * progmodes/cperl-mode.el (cperl-invalid-face): Don't double-quote
11818 value.
11819 (cperl-init-faces): Allow cperl-invalid-face to be a normal face.
11820
11821 * ls-lisp.el (ls-lisp) <defgroup>: Add :version.
11822
11823 * net/browse-url.el (browse-url-filename-alist): Avoid backquote
11824 read syntax.
11825
11826 * calendar/todo-mode.el (todo): Add :link, :version.
11827 (todo-save-top-priorities): Remove autoload cookie.
11828 (todo-add-category, todo-add-item-non-interactively)
11829 (todo-insert-item, todo-mode, todo-cp, todo-show): Fix autoload cookie.
11830
11831 2001-01-02 Gerd Moellmann <gerd@gnu.org>
11832
11833 * comint.el (comint-input-history-ignore): New variable.
11834 (comint-read-input-ring): Ignore entries matching
11835 comint-input-history-ignore.
11836
11837 2001-01-02 Eric M. Ludlam <zappo@gnu.org>
11838
11839 * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): New Variable.
11840 (lm-copyright-mark): New function.
11841 (lm-crack-copyright): New function.
11842 (lm-verify): Check that the file has a copyright.
11843 Check that the file is copyright Free Software Foundation.
11844
11845 2000-12-30 Kenichi Handa <handa@etl.go.jp>
11846
11847 * international/mule-diag.el (print-fontset): Indent font name by
11848 24 columns, not 25.
11849
11850 2000-12-29 Gerd Moellmann <gerd@gnu.org>
11851
11852 * textmodes/flyspell.el (mail-mode-flyspell-verify): Spell-check
11853 in Subject line.
11854
11855 * mail/mailabbrev.el (mail-abbrevs-enable, mail-abbrevs-disable):
11856 Use mail-mode-hook instead of mail-setup-hook.
11857 Otherwise continuing an interrupted message with C-u C-x m for
11858 instance, winds up in Mail mode without abbrevs.
11859
11860 2000-12-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11861
11862 * ps-print.el: Handle form feed better when ps-zebra-stripe-follow is
11863 non-nil. Adding almost all customization variables on ps-setup.
11864 Doc fix.
11865 (ps-print-version): New version number (6.3.3).
11866 (ps-end-with-control-d): Initialization fix.
11867 (ps-lines-printed): New var.
11868 (ps-skip-newline): New fun.
11869 (ps-setup, ps-prologue-file, ps-begin-job, ps-begin-page)
11870 (ps-next-line, ps-continue-line, ps-plot-region)
11871 (ps-generate-postscript-with-faces, ps-end-job): Code fix.
11872
11873 2000-12-29 Kenichi Handa <handa@etl.go.jp>
11874
11875 * international/fontset.el (x-complement-fontset-spec):
11876 Resolve ASCII font name so that the same family name is used for fonts
11877 registered in x-font-name-charset-alist.
11878 (create-fontset-from-fontset-spec): Adjusted for the above change.
11879 The name of fontset alias should be a unresolved ASCII font name.
11880
11881 2000-12-28 Gerd Moellmann <gerd@gnu.org>
11882
11883 * simple.el (delete-key-deletes-forward-mode): Bind backspace
11884 and delete in isearch-mode-map.
11885
11886 2000-12-28 Richard M. Stallman <rms@gnu.org>
11887
11888 * dired-x.el (dired-guess-shell-alist-default):
11889 Use xpdf instead of acroread.
11890
11891 2000-12-28 Kenichi Handa <handa@etl.go.jp>
11892
11893 * textmodes/artist.el (artist-butlast): Deleted.
11894 (artist-ellipse-mirror-quadrant): Use butlast instead of
11895 artist-butlast.
11896
11897 * subr.el (butlast, nbutlast): Moved from cl.el to here.
11898
11899 * emacs-lisp/cl.el (butlast, nbutlast): Moved to subr.el.
11900
11901 2000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
11902
11903 From Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>:
11904
11905 * ls-lisp.el: Better support for the Mac and MS-Windows.
11906 (ls-lisp): New defgroup.
11907 (ls-lisp-emulation, ls-lisp-ignore-case, ls-lisp-dirs-first)
11908 (ls-lisp-verbosity, ls-lisp-use-insert-directory-program)
11909 (ls-lisp-support-shell-wildcards): New defcustoms.
11910 (ls-lisp-parse-symlink): New function.
11911 (insert-directory): Code to convert switches to a list and set up
11912 the wildcard argument copied from ls-lisp-insert-directory.
11913 (ls-lisp-insert-directory): New argument TIME-INDEX. Add support
11914 for -C and -R switches.
11915 (ls-lisp-column-format): New function.
11916 (ls-lisp-delete-matching, ls-lisp-handle-switches)
11917 (ls-lisp-format-time): Add doc strings.
11918 (ls-lisp-handle-switches): Handle -U, -S, -X, and -F switches.
11919 Support ls-lisp-dirs-first.
11920 (ls-lisp-classify, ls-lisp-extension): New functions.
11921 (ls-lisp-format): Optionally support emulation of symlinks.
11922 Support -i, -s, and -G switches.
11923
11924 2000-12-27 Gerd Moellmann <gerd@gnu.org>
11925
11926 * textmodes/texinfo.el (texinfo-mode): Set fill-column to 70.
11927
11928 * version.el (emacs-version): Print X scroll bar information.
11929
11930 * scroll-bar.el (toplevel): Check for x-toolkit-scroll-bars
11931 instead of x-toolkit-scroll-bars-p.
11932
11933 * loadup.el (toplevel): Check for x-toolkit-scroll-bars instead
11934 of x-toolkit-scroll-bars-p.
11935
11936 2000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
11937
11938 * ffap.el (ffap-bindings): Make interactive and add an autoload cookie.
11939 (ffap-bindings): Doc fix, to reflect the above change.
11940
11941 2000-12-27 Kenichi Handa <handa@etl.go.jp>
11942
11943 * term.el (term-char-mode): Define all non-ascii self-inserting
11944 characters to 'term-send-raw in term-raw-map.
11945
11946 2000-12-25 Michael Kifer <kifer@cs.sunysb.edu>
11947
11948 * viper-init (viper-restore-cursor-type): Added condition-case guard.
11949
11950 * ediff-init.el (ediff-quit-hook,ediff-suspend-hook):
11951 Changed initialization; use add-hook.
11952 (ediff-file-remote-p): Use file-local-copy.
11953
11954 * ediff-ptch.el (ediff-prompt-for-patch-buffer): Improved defaults.
11955
11956 * ediff.el (ediff-patch-buffer): Bug fix.
11957 (ediff-revision): Allow selection of the file at the prompt.
11958
11959 2000-12-23 Stefan Monnier <monnier@cs.yale.edu>
11960
11961 * subr.el (combine-run-hooks): Remove.
11962
11963 * emacs-lisp/edebug.el (define-minor-mode): Improve the spec
11964 and remove the rogue second spec.
11965
11966 2000-12-23 Gerd Moellmann <gerd@gnu.org>
11967
11968 * progmodes/compile.el (compilation-forget-errors): Fix indentation.
11969
11970 2000-12-22 Stefan Monnier <monnier@cs.yale.edu>
11971
11972 * smerge-mode.el (smerge-basic-map): Use `=' rather than `d'.
11973 Use minibuffer menu prompt for the `=' prefix.
11974 (smerge-command-prefix): Change default to C-^.
11975 (smerge-mode): Don't assume font-lock doesn't move point.
11976
11977 * skeleton.el (skeleton-internal-1): Make sure the first line of
11978 the region is also re-indented.
11979 (skeleton-end-newline): New var.
11980 (skeleton-end-hook): Use it.
11981
11982 2000-12-22 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
11983
11984 * comint.el (comint-password-prompt-regexp): Support CVS.
11985
11986 2000-12-22 Gerd Moellmann <gerd@gnu.org>
11987
11988 * simple.el (delete-key-deletes-forward-mode): Simplify.
11989 Also backspace key combinations, depending on
11990 delete-key-deletes-forward.
11991
11992 * bindings.el ([C-backspace]): Bind C-backspace to kill-word.
11993
11994 * simple.el (delete-key-deletes-forward): Doc fix.
11995
11996 2000-08-22 Emmanuel Briot <briot@gnat.com>
11997
11998 * xml.el (top level comment): Updated to reflect the fact that
11999 white spaces are relevant in the XML file.
12000 (xml-parse-file): Do not kill an existing Emacs buffer if the file
12001 to parse was already edited. This allows for on-the-fly analysis
12002 of XML files.
12003 (xml-parse-tag): Check that the casing is the same in the start
12004 tag and end tag, since XML is case-sensitive. Allows for spaces
12005 in the end tag, after the name of the tag.
12006 (xml-parse-attlist): Allow for the character '-' in the name of
12007 attributes, as in the standard http-equiv attribute Do not save
12008 the properties in the XML tree, since they are not relevant.
12009
12010 2000-12-21 Stefan Monnier <monnier@cs.yale.edu>
12011
12012 * generic.el (generic-read-type): Undo last change, inline into
12013 `generic-mode' and then remove.
12014 (generic-mode): Inline generic-read-type.
12015 (define-generic-mode): Push the symbol name rather than the symbol
12016 onto generic-mode-list.
12017
12018 2000-12-21 Gerd Moellmann <gerd@gnu.org>
12019
12020 * generic.el (generic-read-type): Build an alist for
12021 completing-read as in 20.7.
12022
12023 * play/landmark.el (lm): Use interactive spec `P'.
12024 (toplevel): Don't set debug-on-error.
12025
12026 * server.el (server-switch-buffer): Choose a window on a visible frame.
12027
12028 2000-12-21 Dave Pearson <davep@davep.org>
12029
12030 * quickurl.el: Commentry change, I've moved my web site.
12031
12032 2000-12-21 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12033
12034 * ebnf2ps.el: Fix a problem with skip-chars-forward: it doesn't accept
12035 ranges like \177-\237, but accepts the character sequence from \177 to
12036 \237. Doc fix.
12037 (ebnf-version): New version (3.4).
12038 (ebnf-setup): Code fix.
12039 (ebnf-range-regexp): New fun.
12040 (ebnf-8-bit-chars): Const fix.
12041
12042 * ebnf-bnf.el: Fix the same problem as described on ebnf2ps.el log
12043 entry. Doc fix.
12044 (ebnf-bnf-lex): Code fix.
12045 (ebnf-bnf-comment-chars): Const fix.
12046
12047 * ebnf-iso.el: Fix the same problem as described on ebnf2ps.el log
12048 entry. Doc fix.
12049 (ebnf-iso-comment-chars): Const fix.
12050
12051 * ebnf-otz.el: Doc fix.
12052
12053 * ebnf-yac.el: Fix the same problem as described on ebnf2ps.el log
12054 entry. Doc fix.
12055 (ebnf-yac-skip-code): Code fix.
12056 (ebnf-yac-comment-chars): Const fix.
12057
12058 2000-12-21 Eli Zaretskii <eliz@is.elta.co.il>
12059
12060 * files.el (insert-directory-safely): New function.
12061 (recover-file): Use it instead of insert-directory.
12062 From Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12063
12064 2000-12-21 Kenichi Handa <handa@etl.go.jp>
12065
12066 * international/mule-cmds.el (select-safe-coding-system):
12067 Check coding-category-list more rigidly. Improve help message.
12068
12069 * dired.el (dired-move-to-filename-regexp): Fix previous change.
12070
12071 2000-12-21 Miles Bader <miles@gnu.org>
12072
12073 * mail/sendmail.el (mail-mode): Set `comment-start' to the yank prefix.
12074
12075 2000-12-21 Kenichi Handa <handa@etl.go.jp>
12076
12077 * international/mule-diag.el (describe-char-after): Make *Help*
12078 buffer inherit multibyteness of the current buffer.
12079
12080 * international/mule.el (make-char): Docstring adjusted for the
12081 change of make-char-internal.
12082
12083 2000-12-20 Stefan Monnier <monnier@cs.yale.edu>
12084
12085 * international/iso-cvt.el: Docstrings fix.
12086
12087 2000-12-20 Dave Love <fx@gnu.org>
12088
12089 * subr.el (eval-after-load): Doc fix.
12090
12091 2000-12-20 Kenichi Handa <handa@etl.go.jp>
12092
12093 * jka-compr.el (jka-compr-partial-uncompress): Don't use `concat'
12094 for numbers.
12095
12096 2000-12-20 Miles Bader <miles@gnu.org>
12097
12098 * international/quail.el (quail-help): Resize the help window
12099 again after it has all its contents. Remove unneeded progn.
12100
12101 2000-12-19 Gerd Moellmann <gerd@gnu.org>
12102
12103 * pcmpl-linux.el: Fix copy/paste error.
12104
12105 2000-12-19 Andrew Innes <andrewi@gnu.org>
12106
12107 * simple.el (delete-key-deletes-forward-mode): Fix typo in docstring.
12108
12109 2000-12-19 Carsten Dominik <dominik@strw.leidenuniv.nl>
12110
12111 * progmodes/idlw-rinfo.el: Fixed copyright notice.
12112
12113 * progmodes/idlw-toolbar.el: Fixed copyright notice.
12114
12115 * progmodes/idlw-shell.el: Fixed copyright notice.
12116
12117 * progmodes/idlwave.el: Fixed copyright notice.
12118
12119 * textmodes/reftex-dcr.el (reftex-view-crossref): Added SPACE and
12120 TAB as key separators.
12121
12122 2000-12-19 Alex Schroeder <alex@gnu.org>
12123
12124 * sql.el (sql-sybase-options): New option.
12125 (sql-sybase): Use it. Add sql-database to the list of parameters
12126 provided for login. The options -w 2048 -n are not used any more.
12127 (sql-postgres-options): Changed default from "--pset" to "-P".
12128 (sql-mysql-options): Doc change.
12129 (sql-stop): Doc change.
12130
12131 2000-12-19 Kenichi Handa <handa@etl.go.jp>
12132
12133 * international/quail.el (quail-input-method): Always hide
12134 the guidance buffer on exiting.
12135
12136 2000-12-18 Gerd Moellmann <gerd@gnu.org>
12137
12138 * tooltip.el (tooltip-mode): Signal an error if x-show-tip
12139 isn't fboundp.
12140
12141 * server.el (server-buffer-done): Bury the buffer before
12142 killing it.
12143
12144 * faces.el (face-spec-set): Interpret a nil in specs for
12145 foreground and background colors as `unspecified', for
12146 compatibility with 20.x.
12147
12148 2000-12-18 Dave Love <fx@gnu.org>
12149
12150 * simple.el (mail-user-agent): Doc fix.
12151 (input-mode-8-bit): Removed.
12152
12153 * international/mule.el (set-keyboard-coding-system): Doc fix.
12154 (keyboard-coding-system): New option.
12155
12156 * mail/sendmail.el (send-mail-function): Customize.
12157
12158 2000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
12159
12160 * international/codepage.el (cp866-decode-table): New table.
12161
12162 2000-12-18 Gerd Moellmann <gerd@gnu.org>
12163
12164 * version.el (emacs-version): Remove `%a' from the time format
12165 because the weekday doesn't fit well into each locale.
12166
12167 2000-12-18 Miles Bader <miles@gnu.org>
12168
12169 * image-file.el (image-file-name-extensions): Add "pgm" and "ppm".
12170
12171 * textmodes/artist.el (artist-replace-chars, artist-replace-char):
12172 Check that emacs-major-version is `=' to 20, not `>='.
12173 (artist-replace-chars): Use `make-string' instead of a loop.
12174
12175 2000-12-17 Stefan Monnier <monnier@cs.yale.edu>
12176
12177 * pcvs.el (cvs-diff-backup-extractor): Return full-path for file.
12178 (cvs-execute-single-file): Don't change directory.
12179 Patch from Per Cederqvist.
12180
12181 2000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
12182
12183 * textmodes/ispell.el (check-ispell-version):
12184 If `ispell-program-name' is "aspell", pass it the -v switch instead
12185 of -vv.
12186
12187 2000-12-16 Kenichi Handa <handa@etl.go.jp>
12188
12189 * international/mule-diag.el (mule-diag): Insert information about
12190 configure options, multibyte awareness, language env.
12191
12192 * international/ja-dic-cnv.el (skkdic-get-candidate-list): Fix the
12193 regexp to search for candidates.
12194
12195 2000-12-15 Eli Zaretskii <eliz@is.elta.co.il>
12196
12197 * info.el (Info-forward-node): If the node has an
12198 Info-header-line, widen the buffer before searching for "next:"
12199 and "up:" pointers, and set the search limit to stay in the
12200 current node.
12201
12202 2000-12-16 Miles Bader <miles@gnu.org>
12203
12204 * simple.el (delete-trailing-whitespace): Remove extraneous let.
12205
12206 2000-12-15 Miles Bader <miles@gnu.org>
12207
12208 * comint.el (comint-send-string, comint-send-region): Also accept
12209 a buffer, buffer-name, or nil for PROCESS, for compatibility with
12210 process-send-string/region.
12211
12212 2000-12-15 Gerd Moellmann <gerd@gnu.org>
12213
12214 * isearch.el (isearch-lazy-highlight-max): New user-option.
12215 (isearch-lazy-highlight-update): Don't highlight more than
12216 isearch-lazy-highlight-max matches.
12217
12218 * mail/mh-utils.el (mh-find-path): Set read-mail-command.
12219
12220 2000-12-15 Richard M. Stallman <rms@gnu.org>
12221
12222 * sort.el (sort-columns): Fix error message.
12223
12224 * dabbrev.el (dabbrev--last-case-pattern): Value is now
12225 `upcase' or `downcase' or nil.
12226 (dabbrev-expand): Don't do anything with dabbrev--last-case-pattern.
12227 Pass new record-case-pattern arg to dabbrev--substitute-expansion.
12228 (dabbrev--substitute-expansion): New arg record-case-pattern.
12229 If it is non-nil, set dabbrev--last-case-pattern.
12230 If ABBREV is " ", use dabbrev--last-case-pattern to change EXPANSION.
12231
12232 * dabbrev.el (dabbrev--find-expansion): Remove extra nreverse.
12233
12234 2000-12-15 Miles Bader <miles@gnu.org>
12235
12236 * paths.el (Info-default-directory-list): Don't delete
12237 configure-info-directory from the list of standard info
12238 directories when appending it to the end -- their order is important.
12239
12240 * faces.el (read-face-attribute): If there's no entry for the
12241 user's input in VALID, just use it as-is (this will often result
12242 in an error, but it may be OK for e.g. colors using hexadecimal
12243 notation, and at least will yield a better error message).
12244
12245 * window.el (mode-line-window-height-fudge): Function removed.
12246 (height-affecting-face-attributes, mode-line-window-height-fudge):
12247 Variables removed.
12248 * textmodes/ispell.el (ispell-overlay-window): Ensure that the new
12249 window is really the right size. Use vertical-motion
12250 rather than forward-line.
12251 (ispell-help): Don't use ispell-mode-line-window-height-fudge.
12252 (ispell-command-loop, ispell-show-choices): Use the variable
12253 ispell-choices-win-default-height, rather than the function.
12254 (ispell-choices-win-default-height): Function removed.
12255 (ispell-mode-line-window-height-fudge): Function removed.
12256
12257 2000-12-14 Stefan Monnier <monnier@cs.yale.edu>
12258
12259 * add-log.el (add-change-log-entry): Only expand-file-name if non-nil.
12260
12261 2000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
12262
12263 * paths.el (Info-default-directory-list):
12264 If configure-info-directory is not one of the standard directories,
12265 put it first in the list; otherwise put it last. Doc string
12266 changed accordingly.
12267
12268 * info.el (Info-directory-list): Change doc string to reflect the
12269 change in Info-default-directory-list.
12270
12271 * simple.el (delete-key-deletes-forward-mode): Treat ms-dos and
12272 windows-nt as windowed environments, even under -nw.
12273
12274 * startup.el (command-line): Don't call x-backspace-delete-keys-p
12275 if not fboundp. Switch delete-forward mode for the <delete> key
12276 on all PC platforms, even under -nw.
12277
12278 * term/internal.el ([M-delete]): Remap to M-d.
12279
12280 2000-12-14 Gerd Moellmann <gerd@gnu.org>
12281
12282 * emacs-lisp/lisp-mnt.el: Change maintainer to FSF.
12283
12284 2000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
12285
12286 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
12287
12288 2000-12-14 Gerd Moellmann <gerd@gnu.org>
12289
12290 * startup.el (command-line): Call delete-key-deletes-forward-mode,
12291 if appropriate.
12292
12293 * simple.el (delete-key-deletes-forward): New user-option.
12294 (delete-key-deletes-forward-mode): New function.
12295
12296 * bindings.el: Bind `delete' to backward-delete-char.
12297
12298 * emacs-lisp/easymenu.el (easy-menu-current-active-maps):
12299 Test if symbol is bound before getting its value.
12300
12301 * tooltip.el (tooltip-show): If an error is signaled in
12302 x-show-tip, display that error, and display the help in the
12303 echo area.
12304
12305 2000-12-14 Kenichi Handa <handa@etl.go.jp>
12306
12307 * international/ja-dic-cnv.el (skkdic-set-okuri-nasi):
12308 Show "... entries" messages for every 10000 entries, not 10.
12309
12310 2000-12-13 Karl Fogel <kfogel@red-bean.com>
12311
12312 * bookmark.el: Provide a generic exit hook, as suggested by
12313 Ovidiu Predescu <ovidiu@cup.hp.com>:
12314 (bookmark-exit-hook): New var.
12315 (bookmark-exit-hook-internal): New func, replaces
12316 old raw lambda form in `kill-emacs-hook', and runs new
12317 `bookmark-exit-hooks'. No longer tests for the bookmark feature,
12318 as logically that feature must have been provided if this function
12319 is running.
12320 Removed ;;;###autoload before the `add-hook' call.
12321
12322 2000-12-13 Stefan Monnier <monnier@cs.yale.edu>
12323
12324 * emacs-lisp/easymenu.el (easy-menu-define): Setup indentation.
12325 (easy-menu-current-active-maps): New function.
12326 (easy-menu-get-map): Use it.
12327 Make a proper menu entry when creating a new keymap.
12328
12329 2000-12-13 Kenichi Handa <handa@etl.go.jp>
12330
12331 * international/characters.el: Fix cases and syntaxes for
12332 mule-unicode-0100-24ff.
12333
12334 * dired.el (dired-move-to-filename-regexp): Fixed for the case
12335 that a Japanese character is not appended after day and year.
12336
12337 * info.el (Info-suffix-list): Change format for a command that
12338 requires arguments.
12339 (info-insert-file-contents): Adjusted for the above change.
12340
12341 2000-12-12 Andreas Schwab <schwab@suse.de>
12342
12343 * tar-mode.el (tar-extract): Base the name of the subfile buffer
12344 on the name of the tar buffer. Verify that the existing buffer is
12345 visiting the same subfile.
12346
12347 2000-12-12 Dave Love <fx@gnu.org>
12348
12349 * subdirs.el: Add obsolete.
12350
12351 2000-12-12 Gerd Moellmann <gerd@gnu.org>
12352
12353 * mail/rmailsum.el (rmail-summary-expunge)
12354 (rmail-summary-expunge-and-save): Use rmail-expunge-confirmed
12355 instead of rmail-confirm-expunge.
12356
12357 * replace.el (perform-replace): Don't use an empty match adjacent
12358 to a non-empty match when computing the next match before the
12359 replacement is performed.
12360
12361 2000-12-12 Milan Zamazal <pdm@freesoft.cz>
12362
12363 * progmodes/glasses.el: Use `define-minor-mode' for the minor mode
12364 definition (patch by Stefan Monnier).
12365 (glasses-mode): Use jit-lock instead of `after-change-functions'
12366 (patch by Stefan Monnier).
12367
12368 2000-12-12 Miles Bader <miles@gnu.org>
12369
12370 * info.el (Info-last-preorder): Don't barf on nodes without a prev.
12371 (Info-scroll-down): Respect `Info-scroll-prefer-subnodes'.
12372
12373 2000-12-12 Andrew Choi <akochoi@i-cable.com>
12374
12375 * term/mac-win.el: Remove load for ls-lisp.
12376
12377 * loadup.el: Load ls-lisp for system-type `macos'.
12378
12379 2000-12-12 Miles Bader <miles@gnu.org>
12380
12381 * simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter.
12382 Respect field end too.
12383 (just-one-space): Respect fields as `delete-horizontal-space'.
12384 (newline-and-indent, reindent-then-newline-and-indent):
12385 Use `delete-horizontal-space'.
12386
12387 2000-12-11 Stefan Monnier <monnier@cs.yale.edu>
12388
12389 * newcomment.el (comment-indent-new-line): Use delete-horizontal-space
12390 (so as to obey the field property in the minibuffer).
12391
12392 * obsolete/c-mode.el: Moved from lisp/progmodes.
12393 * obsolete/auto-show.el: Moved from lisp.
12394 * obsolete/ooutline.el: Moved from lisp/textmodes.
12395
12396 2000-12-11 Carsten Dominik <dominik@strw.leidenuniv.nl>
12397
12398 * progmodes/idlwave.el: Updated to IDLWAVE version 4.7. Too many
12399 changes to list them here.
12400
12401 * progmodes/idlw-shell.el: Updated to IDLWAVE version 4.7.
12402 Too many changes to list them here.
12403
12404 * progmodes/idlw-rinfo.el: Updated to IDLWAVE version 4.7.
12405 Too many changes to list them here.
12406
12407 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version 4.7.
12408
12409 2000-12-11 Gerd Moellmann <gerd@gnu.org>
12410
12411 * simple.el (kill-new): Don't try to setcar kill-ring if it is nil.
12412
12413 * cus-edit.el (custom-save-variables, custom-save-faces):
12414 Comment fix.
12415
12416 * hscroll.el: Moved to `obsolete' subdir.
12417
12418 2000-12-11 Miles Bader <miles@gnu.org>
12419
12420 * window.el (window-text-height): Function removed (now in C).
12421
12422 2000-12-10 Stefan Monnier <monnier@cs.yale.edu>
12423
12424 * log-edit.el (log-edit-parent-buffer): New var.
12425 (log-edit): Set it. Add BUFFER argument.
12426 (log-edit-done): Use char-before.
12427 Don't bother checking validity of vc-comment-ring.
12428 Only bury the buffer if log-edit popped it up.
12429
12430 * pcvs.el: Update references to CVS-Edit (now Log-Edit).
12431 (cvs-mode-diff-help): Remove.
12432 (cvs-mode-commit): Use the new `log-edit' BUFFER argument.
12433 (cvs-mode-marked): Set up the default for CMD manually.
12434
12435 * pcvs-defs.el (cvs-mode-diff-map): Use minibuffer menu prompt.
12436 Remove binding for ? now made unnecessary.
12437
12438 2000-12-10 Carsten Dominik <dominik@strw.leidenuniv.nl>
12439
12440 * textmodes/reftex.el (reftex-scanning-info-available-p): New function.
12441 (reftex-TeX-master-file): Check for `tex-main-file' early enough.
12442
12443 * textmodes/reftex-global.el (reftex-create-tags-file): Fixed bug
12444 when master file is not open.
12445
12446 2000-12-09 Stefan Monnier <monnier@cs.yale.edu>
12447
12448 * progmodes/ada-stmt.el: Update `maintainer'.
12449
12450 2000-12-09 Stephen Gildea <gildea@stop.mail-abuse.org>
12451
12452 * time-stamp.el (time-stamp-old-format-warn): Reorder custom
12453 choices to match documentation string.
12454
12455 2000-12-09 Miles Bader <miles@gnu.org>
12456
12457 * minibuf-eldef.el: New file.
12458
12459 * window.el (fit-window-to-buffer): Don't pass last argument to
12460 pos-visible-in-window-p, now that its meaning is inverted.
12461
12462 2000-12-08 Eli Zaretskii <eliz@is.elta.co.il>
12463
12464 * image.el (create-image): Doc fix; spotted by Per Cederqvist
12465 <ceder@lysator.liu.se>.
12466
12467 2000-12-08 Stefan Monnier <monnier@cs.yale.edu>
12468
12469 * autoinsert.el (auto-insert-alist): Add missing final \n.
12470
12471 * pcvs-defs.el (cvs-menu): Move. Make submenu for diff commands.
12472 (cvs-menu-map): Remove.
12473 * pcvs.el (cvs-menu): Use `cvs-menu' rather than `cvs-menu-map'.
12474 (cvs-mode-quit): Turn it back into a plain function.
12475
12476 * textmodes/texnfo-upd.el (texinfo-chapter-level-regexp)
12477 (texinfo-filter): Remove (move to texinfo.el).
12478
12479 * textmodes/texinfo.el: Move the (require 'cl) to the front of the
12480 file where it's more visible.
12481 (texinfo-filter, texinfo-chapter-level-regexp): New variables
12482 moved from texnfo-upd.el (for AUCTeX's compatibility, originally).
12483 (texinfo-mode): Use texinfo-chapter-level-regexp for page-delimiter.
12484 (texinfo-inside-macro-p): Only catch `scan-error's.
12485 (texinfo-inside-env-p): Make better use of the match info.
12486 (texinfo-insert-quote): Collapse calls to `texinfo-inside-macro-p'.
12487 (texinfo-insert-@end): Slight re-organization.
12488 Also remove useless `looking-at' call.
12489
12490 2000-12-08 Andrew Innes <andrewi@gnu.org>
12491
12492 * w32-fns.el: Add clipboard support from term/w32-win.el, so it is
12493 accessible in -nw mode.
12494
12495 * term/w32-win.el: Remove stuff about selection timeout, which is
12496 irrelevant on Windows. Move clipboard support to w32-fns.el, so
12497 it is accessible in -nw mode.
12498
12499 2000-12-08 Dave Love <fx@gnu.org>
12500
12501 * emacs-lisp/lisp-mode.el (lisp-mode):
12502 Set font-lock-keywords-case-fold-search.
12503
12504 2000-12-08 Gerd Moellmann <gerd@gnu.org>
12505
12506 * textmodes/ispell.el (ispell): Doc fix.
12507
12508 2000-12-08 Kenichi Handa <handa@etl.go.jp>
12509
12510 * international/quail.el (quail-insert-decode-map): Check the
12511 frame width of a window displaying the current buffer, not that of
12512 the selected frame.
12513 (quail-help): Make sure that the help buffer has window before
12514 inserting text in it.
12515
12516 2000-12-07 Sam Steingold <sds@gnu.org>
12517
12518 * loadup.el: Load emacs-lisp/backquote instead of autoloading.
12519 Backquote is used in isearch.el, so autoloading saves nothing.
12520
12521 2000-12-07 Eli Zaretskii <eliz@is.elta.co.il>
12522
12523 * startup.el (normal-top-level-add-subdirs-to-load-path):
12524 Ignore the CVS and RCS subdirectories case-insensitively.
12525
12526 * dired.el (dired-insert-directory): If file-system-info is
12527 fboundp, call it instead of invoking dired-free-space-program.
12528
12529 2000-12-07 Gerd Moellmann <gerd@gnu.org>
12530
12531 * server.el (server-visit-files): Push files on file-name-history.
12532
12533 * progmodes/cc-langs.el: Update copyright.
12534
12535 * progmodes/idlw-shell.el, progmodes/idlwave.el: Update copyright.
12536
12537 * bindings.el (mode-line-mode-menu): Add glasses-mode.
12538
12539 * bindings.el (mode-line-mode-menu): Reverse the order
12540 of define-keys so that the menu appears in alphabetical order.
12541
12542 2000-12-07 Milan Zamazal <pdm@freesoft.cz>
12543
12544 * progmodes/glasses.el (glasses-mode): Update mode line at the end
12545 of the function.
12546
12547 2000-12-07 Dave Love <fx@gnu.org>
12548
12549 * jka-compr.el (jka-compr-compression-info-list): Fix :type.
12550
12551 * facemenu.el (facemenu-unlisted-faces): Fix value.
12552
12553 2000-12-07 Stefan Monnier <monnier@cs.yale.edu>
12554
12555 * font-lock.el (font-lock-default-fontify-region):
12556 Include the terminating \n (off-by-one error).
12557 (font-lock-set-defaults): Use dolist.
12558
12559 * derived.el (define-derived-mode): Don't use combine-run-hooks.
12560
12561 2000-12-07 Kenichi Handa <handa@etl.go.jp>
12562
12563 * international/mule-cmds.el (describe-language-environment):
12564 Fix for the case that an input method title is not string but a list.
12565
12566 * ps-bdf.el (bdf-read-font-info): Modify the kludgy code for fonts
12567 of wrong SIZE record.
12568
12569 2000-12-06 Dave Love <fx@gnu.org>
12570
12571 * newcomment.el (comment-region, comment-dwim): Doc fix.
12572
12573 * textmodes/texinfo.el: Require tex-mode when compiling.
12574 (texinfo-update-node): Doc fix.
12575 (texinfo-imenu-generic-expression): Add @anchor.
12576 (texinfo-font-lock-keywords): Add @uref.
12577 (texinfo-inside-macro-p): Don't use ignore-errors.
12578 (texinfo-insert-quote): Match more contexts.
12579
12580 * international/mule.el (decode-char, encode-char): Doc fix.
12581 (auto-coding-alist): Customize.
12582
12583 * files.el (load-file): Fix change of 2000-03-12.
12584
12585 * wid-edit.el (widget-text-keymap): Doc fix.
12586
12587 2000-12-06 Andrew Innes <andrewi@gnu.org>
12588
12589 * makefile.w32-in (lisp): Set to an absolute directory, namely
12590 $(CURDIR).
12591
12592 2000-12-06 Eli Zaretskii <eliz@is.elta.co.il>
12593
12594 * emacs-lisp/autoload.el (update-file-autoloads): Use raw-text to
12595 read generated-autoload-file, and set buffer-file-coding-system to
12596 raw-text-unix after reading the file.
12597
12598 * international/mule-conf.el (file-coding-system-alist):
12599 Use raw-text for reading loaddefs.el and raw-text-unix for writing it.
12600
12601 2000-12-06 Gerd Moellmann <gerd@gnu.org>
12602
12603 * replace.el (occur): Make line-number-width 1 smaller for the
12604 colon following the line number.
12605
12606 * startup.el (fancy-splash-text, command-line-1):
12607 Use `File' for the menu name instead of `Files'.
12608
12609 * tmm.el: Update copyright.
12610
12611 * cus-start.el: Add entry for even-window-heights.
12612
12613 2000-12-06 Miles Bader <miles@gnu.org>
12614
12615 * faces.el (frame-set-background-mode): Avoid stomping on
12616 locally modified faces.
12617
12618 2000-12-06 Kenichi Handa <handa@etl.go.jp>
12619
12620 * international/fontset.el: Correct the font registries for
12621 japanese-jisx0213-1 and japanese-jisx0213-2.
12622
12623 2000-12-05 Gerd Moellmann <gerd@gnu.org>
12624
12625 * textmodes/reftex-toc.el (reftex-toc-menu): Fix typo.
12626
12627 * iswitchb.el: Update customization commentary.
12628
12629 2000-12-05 Rob Riepel <riepel@Stanford.EDU>
12630
12631 * emulation/tpu-edt.el (tpu-help): Fixed previous screen logic.
12632 (tpu-search-highlight): Fixed comparison of overlay end positions.
12633 (tpu-trim-line-ends): Implemented trimming logic locally.
12634
12635 * emulation/tpu-extras.el (tpu-write-file-hook)
12636 (tpu-set-cursor-bound): Replaced picture-clean with tpu-trim-line-ends.
12637
12638 2000-12-05 Kenichi Handa <handa@etl.go.jp>
12639
12640 * language/chinese.el (chinese-iso-8bit): Change mime-charset name
12641 to cn-gb.
12642 (cn-gb, gb2312): New aliases for chinese-iso-8bit.
12643
12644 2000-12-04 Dave Love <fx@gnu.org>
12645
12646 * emacs-lisp/cl-indent.el: Remove erroneous spec for condition-case.
12647
12648 2000-12-04 Gerd Moellmann <gerd@gnu.org>
12649
12650 * mail/rmailsum.el (rmail-summary-expunge)
12651 (rmail-summary-expunge-and-save): Ask for confirmation with
12652 rmail-expunge-confirmed.
12653
12654 * mail/rmail.el (rmail-expunge-confirmed): New function.
12655 (rmail-expunge): Use it.
12656
12657 2000-12-04 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be>
12658
12659 * progmodes/etags.el (tag-partial-file-name-match-p): New function.
12660 (etags-recognize-tags-table, find-tag-in-order):
12661 New functionality: interpret file names as tags.
12662
12663 2000-12-04 Eli Zaretskii <eliz@is.elta.co.il>
12664
12665 * info.el (Info-scroll-prefer-subnodes): New defcustom.
12666 (Info-scroll-up): If Info-scroll-prefer-subnodes is nil, don't visit
12667 the first subnode until the bottom of the current node is visible.
12668
12669 2000-12-04 Gerd Moellmann <gerd@gnu.org>
12670
12671 * format.el (format-decode): Don't change buffer's undo list.
12672
12673 2000-12-04 Kenichi Handa <handa@etl.go.jp>
12674
12675 * faces.el (face-font-registry-alternatives): Add entries for CJK
12676 fonts. Doc-string adjusted for the actual usage of this data.
12677
12678 * international/fontset.el: Change the font registries for CJK
12679 fonts in the default fontset. Don't append '*' to registries.
12680
12681 2000-12-03 Stefan Monnier <monnier@cs.yale.edu>
12682
12683 * emacs-lisp/easy-mmode.el (define-derived-mode)
12684 (easy-mmode-derived-mode-p): Remove (moved to derived.el).
12685
12686 * derived.el (define-derived-mode): Revived, moved from easy-mmode.el.
12687 (derived-mode-p): New function.
12688 (derived-mode-make-docstring): Add `docstring' argument.
12689 Use it if available and complete it if necessary.
12690
12691 2000-12-03 Andreas Schwab <schwab@suse.de>
12692
12693 * type-break.el (type-break): Don't make parent of itself.
12694
12695 2000-12-03 Miles Bader <miles@gnu.org>
12696
12697 * simple.el (delete-trailing-whitespace): Don't delete newlines too.
12698
12699 2000-12-02 Stefan Monnier <monnier@cs.yale.edu>
12700
12701 * textmodes/tex-mode.el (tex-start-shell): Obey shell-file-name.
12702 (tex-main-file, tex-file): Simplify.
12703 (tex-generate-zap-file-name): Use subst-char-in-string.
12704 (tex-strip-dots): Remove.
12705
12706 * tmm.el (tmm-get-keymap): Eval the menu name in `menu-item'.
12707
12708 * textmodes/ispell.el (check-ispell-version): Don't use match-beginning
12709 to check if the match succeeded.
12710
12711 2000-12-02 Gerd Moellmann <gerd@gnu.org>
12712
12713 * startup.el (use-fancy-splash-screens-p): New function.
12714 (command-line-1): Use it to determine whether or not to use
12715 a fancy splash screen.
12716
12717 2000-12-02 Andreas Schwab <schwab@suse.de>
12718
12719 * emacs-lisp/eldoc.el (eldoc): Don't make parent of itself.
12720
12721 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
12722
12723 * international/mule.el (make-char): Fix last change.
12724
12725 * textmode/texinfo.el (texinfo-open-quote, texinfo-close-quote):
12726 New defcustoms.
12727 (texinfo-insert-quote): Don't call tex-insert-quote, to avoid
12728 autoloading tex-mode; instead, do the same manually.
12729 Use texinfo-open-quote and texinfo-close-quote. Insert literal quote
12730 with numeric argument. Docstring fix.
12731 (toplevel): Require cl when compiling.
12732
12733 * international/mule.el (make-char): Doc fix.
12734
12735 2000-12-02 Jason Rumney <jasonr@gnu.org>
12736
12737 * term/w32-win.el (x-select-enable-clipboard): Customize (as per
12738 the Emacs Lisp manual)
12739
12740 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
12741
12742 * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
12743
12744 * term/pc-win.el (x-select-enable-clipboard): Customize (as per
12745 the Emacs Lisp manual).
12746
12747 2000-12-02 Gerd Moellmann <gerd@gnu.org>
12748
12749 * simple.el (next-line-add-newlines): Change default to nil.
12750
12751 2000-12-01 Eli Zaretskii <eliz@is.elta.co.il>
12752
12753 * files.el (revert-buffer, recover-file):
12754 Bind coding-system-for-read to emacs-mule-unix, not to no-conversion.
12755
12756 2000-12-01 Gerd Moellmann <gerd@gnu.org>
12757
12758 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
12759
12760 2000-12-01 Miles Bader <miles@gnu.org>
12761
12762 * window.el (fit-window-to-buffer): Handle non-nil `truncate-lines'.
12763
12764 2000-12-01 Kenichi Handa <handa@etl.go.jp>
12765
12766 * international/mule-diag.el (describe-char-after): Fix typo.
12767 (describe-character-set, non-iso-charset-alist): Fix typo.
12768
12769 2000-12-01 Miles Bader <miles@gnu.org>
12770
12771 * image-file.el (image-file-name-regexp): Automatically add
12772 upper-case variants of each filename extension in
12773 `image-file-name-extensions', since they seem to be common.
12774
12775 * simple.el (minibuffer-contents)
12776 (minibuffer-contents-no-properties, delete-minibuffer-contents):
12777 New functions.
12778 * filecache.el (file-cache-directory-name)
12779 (file-cache-minibuffer-complete): Ignore the minibuffer prompt.
12780
12781 2000-12-01 Milan Zamazal <Milan.Zamazal@qbizm.com>
12782
12783 * filecache.el (file-cache-minibuffer-complete): Don't try to
12784 delete the minibuffer prompt.
12785
12786 2000-11-30 Dave Love <fx@gnu.org>
12787
12788 * cus-start.el: Fix read-buffer-function type.
12789
12790 2000-11-30 Gerd Moellmann <gerd@gnu.org>
12791
12792 * md5.el: Removed. There's a built-in function, now.
12793
12794 2000-11-30 Markus Rost <rost@math.ohio-state.edu>
12795
12796 * mail/rmail.el (rmail-set-message-counters): Don't use "D"
12797 as dummy 0-th char of rmail-deleted-vector.
12798
12799 2000-11-30 Eli Zaretskii <eliz@is.elta.co.il>
12800
12801 * ps-print.el (ps-end-job): Bind case-fold-search only after
12802 switching to ps-spool-buffer.
12803
12804 2000-11-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12805
12806 * ps-print.el: Line number font customization. PostScript: Lines and
12807 PageCount are initialized on each page. Doc Fix.
12808 (ps-print-version): New version number (6.3.2).
12809 (ps-lpr-switches, ps-font-info-database, ps-font-size)
12810 (ps-header-font-size, ps-header-title-font-size, ps-left-header)
12811 (ps-right-header): Customization fix.
12812 (ps-setup, ps-select-font, ps-begin-file, ps-header-sheet, ps-end-job):
12813 Fix code.
12814 (ps-end-with-control-d, ps-line-number-font, ps-line-number-font-size):
12815 New vars.
12816
12817 2000-11-30 Gerd Moellmann <gerd@gnu.org>
12818
12819 * bs.el: Fix typos and spelling errors.
12820 (bs-appearance) <defgroup>: Renamed from bs-appearence.
12821 (bs-configuration): Doc fix.
12822
12823 * bs.el: Undo mistaken change of 2000-11-28. Update copyright.
12824
12825 2000-11-30 Rob Riepel <riepel@Stanford.EDU>
12826
12827 * emulation/tpu-edt.el (tpu-version): New version.
12828 (tpu-search-overlay, tpu-replace-overlay): New initial range.
12829 (tpu-original-mode-line): Variable deleted.
12830 (tpu-mark-flag): New initial value.
12831 (tpu-set-mode-line): Don't redefine mode-line-format.
12832 Add tpu-mark-flag to minor-mode-alist.
12833 (tpu-update-mode-line): New mark flag logic.
12834 (tpu-get): Use find-file-wildcards.
12835 (tpu-search-highlight): Move overlay less, reset overlay properly.
12836 (tpu-unselect): Deactivate mark.
12837 (tpu-lm-replace): Reset overlay properly.
12838 (tpu-forward-line): Use forward-visible-line.
12839 (tpu-edt-on): Set transient mark mode. ispell autoloads deleted.
12840
12841 * emulation/tpu-extras.el (tpu-forward-line): Use forward-visible-line.
12842
12843 2000-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
12844
12845 * cus-edit.el (custom-face-value-create): Always emphasize tag.
12846
12847 2000-11-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
12848
12849 * calendar/diary-lib.el (diary-entry-time): Anchor pattern correctly
12850 and skip whitespace and newlines.
12851
12852 2000-11-30 Stefan Monnier <monnier@cs.yale.edu>
12853
12854 * emacs-lisp/cl.el (third...tenth): Really undo change of 2000-08-05.
12855
12856 2000-11-29 Gerd Moellmann <gerd@gnu.org>
12857
12858 * help.el (describe-function-1): Regexp-quote function name
12859 when used as part of a regexp.
12860
12861 * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
12862 Use face-attribute instead of face-foreground and face-background.
12863 (tool-bar-add-item): Likewise, and handle unspecified colors.
12864
12865 * enriched.el (enriched-face-ans): Use face-attribute instead
12866 of face-foreground and face-background.
12867
12868 * faces.el (face-foreground, face-background, face-stipple):
12869 Return nil if attribute is unspecified, for backward compatibility.
12870
12871 * files.el (auto-mode-alist): Add an entry for antlr-mode.
12872
12873 * play/5x5.el: Remove version info.
12874
12875 * toolbar/tool-bar.el (tool-bar-mode): Doc fix.
12876
12877 * frame.el (blink-cursor-mode): Doc fix.
12878
12879 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
12880
12881 * antlr-mode.el: New commands to run ANTLR from within Emacs and
12882 to create Makefile rules.
12883 (antlr-tool-command): New user option.
12884 (antlr-ask-about-save): New user option.
12885 (antlr-makefile-specification): New user option.
12886 (antlr-file-formats-alist): New variable.
12887 (antlr-special-file-formats): New variable.
12888 (antlr-unknown-file-formats): New user option.
12889 (antlr-help-unknown-file-text): New variable.
12890 (antlr-help-rules-intro): New variable.
12891 (antlr-mode-map): Add [C-c C-r] for `antlr-run-tool'.
12892 (antlr-mode-menu): Add entries.
12893 (antlr-file-dependencies): New function.
12894 (antlr-directory-dependencies): New function.
12895 (antlr-superclasses-glibs): New function.
12896 (antlr-run-tool): New command.
12897 (antlr-makefile-insert-variable): New function.
12898 (antlr-insert-makefile-rules): New function.
12899 (antlr-show-makefile-rules): New command.
12900
12901 * antlr-mode.el: More Emacs/XEmacs stuff.
12902 (antlr-no-action-keywords): New constant with value nil.
12903 (antlr-font-lock-keywords-alist): Use it. Old value would break
12904 syntax highlighting in Emacs-21.0.
12905 (antlr-default-directory): Emacs/XEmacs dependend function.
12906 (antlr-read-shell-command): Ditto.
12907 (antlr-with-displaying-help-buffer): Ditto.
12908
12909 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
12910
12911 * antlr-mode.el: imenu, parsing and highlighting changes.
12912 (antlr-imenu-create-index-function): Don't create extra submenus
12913 for definitions in different grammar classes. It is not necessary
12914 for the menu and would make command `imenu' awkward to use.
12915 (antlr-skip-file-prelude): With ANTLR-2.7+, you can specify named
12916 header actions and more than one.
12917 (antlr-font-lock-tokendef-face): Changed color.
12918 (antlr-font-lock-tokenref-face): Changed color.
12919 (antlr-font-lock-additional-keywords): Also highlight lowercase.
12920 (antlr-mode-syntax-table): New variable.
12921 (antlr-mode): Populate and use it instead `java-mode-syntax-table'.
12922 (antlr-with-syntax-table): Don't copy syntax table.
12923
12924 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
12925
12926 * antlr-mode.el: Minor changes: language setting.
12927 (antlr-language-alist): The value for file option "language" can
12928 be both an identifier and a string.
12929 Reported by Rajesh Radhakrishnan <radhakrs@email.uc.edu>.
12930 (antlr-language-limit-n-regexp): Change accordingly.
12931
12932 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
12933
12934 * antlr-mode.el: Minor changes: tabs, hiding.
12935 (antlr-tab-offset-alist): Set `indent-tabs-mode' to nil instead t.
12936 (antlr-action-visibility): Also allow value nil to also hide the
12937 braces. Renamed from `antlr-tiny-action-length'.
12938 Suggested by Jay@aol.com.
12939 (antlr-hide-actions): Change accordingly. Hide line if completely
12940 hidden action is on a line of its own.
12941
12942 2000-11-29 Stefan Monnier <monnier@cs.yale.edu>
12943
12944 * subr.el (combine-run-hooks): Only run-hooks if there's a hook to run.
12945
12946 * sort.el (sort-columns): Don't concat strings with numbers.
12947
12948 2000-11-29 Dave Love <fx@gnu.org>
12949
12950 * cus-edit.el (face): Fix :format.
12951
12952 * mail/feedmail.el: Require smtpmail when compiling.
12953 (mail-do-fcc): Autoload.
12954 (feedmail) <defgroup>: Fix :link.
12955 (feedmail-nuke-body-in-fcc): Fix :type.
12956 (feedmail-send-it): Add autoload cookie.
12957
12958 2000-11-29 Stefan Monnier <monnier@cs.yale.edu>
12959
12960 * newcomment.el (comment-indent): Save excursion around call to
12961 comment-indent-function.
12962
12963 2000-11-29 Miles Bader <miles@gnu.org>
12964
12965 * subr.el (member-ignore-case): Return the tail of the list who's
12966 car matches, like `member', not the matching element itself.
12967
12968 2000-11-29 Kenichi Handa <handa@etl.go.jp>
12969
12970 * xml.el (xml-parse-tag): Fix finding opening tag. A tag name
12971 should not contain `\n'.
12972
12973 2000-11-28 Gerd Moellmann <gerd@gnu.org>
12974
12975 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
12976
12977 * hscroll.el: Add hints to `automatic-hscrolling' to doc strings.
12978
12979 * dired-aux.el (dired-do-create-files): Construct default file
12980 name for dired-mark-read-file-name so that when the user enters
12981 just RET, the target file will end up in the target directory.
12982
12983 * abbrev.el (prepare-abbrev-list-buffer): Get the value of
12984 local-abbrev-table before changing buffers because it might
12985 have a buffer-local binding.
12986
12987 2000-11-28 Miles Bader <miles@gnu.org>
12988
12989 * simple.el (delete-horizontal-space): Handle fields more generally.
12990
12991 2000-11-28 Gerd Moellmann <gerd@gnu.org>
12992
12993 * simple.el (delete-horizontal-space): Handle minibuffer prompt.
12994
12995 2000-11-28 Dave Love <fx@gnu.org>
12996
12997 * progmodes/ps-mode.el (ps-mode): Set comment-start and
12998 comment-start-skip locally.
12999
13000 * progmodes/fortran.el (fortran-mode): Don't set
13001 fortran-comment-line-start-skip. Set comment-start to
13002 fortran-comment-line-start.
13003 (fortran-fill-paragraph) <non-empty-comment>: Remove regexp group.
13004 (fortran-comment-line-start-skip): Simplify slightly.
13005
13006 2000-11-28 Gerd Moellmann <gerd@gnu.org>
13007
13008 * play/5x5.el: Remove RCS keyword.
13009
13010 * bs.el: Mistaken commit, undone 2000-11-30.
13011
13012 2000-11-28 Milan Zamazal <pdm@freesoft.cz>
13013
13014 * textmodes/tildify.el (tildify-string-alist):
13015 Add `plain-tex-mode' here.
13016
13017 2000-11-28 Colin Walters <walters@cis.ohio-state.edu>
13018
13019 * chistory.el (Command-history-setup): Remove extraneous `keymap'
13020 reference.
13021
13022 2000-11-28 Miles Bader <miles@gnu.org>
13023
13024 * cus-face.el (custom-face-attributes): Add post-filter function
13025 for :box. Make pre-filter function for :box handle all cases.
13026
13027 * wid-edit.el (widget-choose): Make sure pop-up window is large
13028 enough to display all the choices, as there's no way to scroll it.
13029
13030 2000-11-28 Kenichi Handa <handa@etl.go.jp>
13031
13032 * international/mule-conf.el: Make the coding system no-conversion
13033 safe for all characters.
13034
13035 2000-11-27 Dave Love <fx@gnu.org>
13036
13037 * net/ldap.el (ldap) <defgroup>: Add :version.
13038
13039 * tooltip.el (tooltip-use-echo-area): Doc fix.
13040
13041 * cus-start.el <minibuffer-prompt-properties>: Add version.
13042 <read-buffer-function>: Add.
13043
13044 * apropos.el (apropos-print): Add help-echo to active text.
13045
13046 * term/x-win.el (x-select-enable-clipboard): Customize (per lispref).
13047
13048 2000-11-27 Gerd Moellmann <gerd@gnu.org>
13049
13050 * mail/rmail.el (rmail-automatic-folder-directives): Add a custom
13051 type, group and version.
13052
13053 2000-11-27 Eli Zaretskii <eliz@is.elta.co.il>
13054
13055 * select.el (x-get-selection): Docstring fix.
13056
13057 2000-11-27 Dave Pearson <davep@hagbard.demon.co.uk>
13058
13059 * play/5x5.el (5x5-play-solution): Bind hinhibit-quit to t.
13060
13061 2000-11-27 Andrew Innes <andrewi@gnu.org>
13062
13063 * makefile.nt (.SUFFIXES): Add .SUFFIXES.
13064
13065 * makefile.w32-in (.SUFFIXES): Add .SUFFIXES.
13066
13067 2000-11-27 Miles Bader <miles@gnu.org>
13068
13069 * dired.el (dired-get-filename): Return filename verbatim if
13070 LOCALP is `verbatim'.
13071 * dired-aux.el (dired-add-entry): Call `dired-get-filename' with
13072 `verbatim' so that we don't inadvertently delete a non-existant
13073 directory name.
13074
13075 2000-11-27 Kenichi Handa <handa@etl.go.jp>
13076
13077 * international/characters.el: Specify cases and syntaxes for
13078 mule-unicode-0100-24ff.
13079
13080 2000-11-27 Gerd Moellmann <gerd@gnu.org>
13081
13082 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Handle case
13083 that foreground and/or background colors of the face `tool-bar'
13084 are unspecified.
13085
13086 2000-11-27 Miles Bader <miles@gnu.org>
13087
13088 * wid-edit.el (widget-field-buffer, widget-field-start)
13089 (widget-field-end): Handle widget field `pseudo-overlays'.
13090 (widget-field-value-delete): Delete WIDGET from `widget-field-new'
13091 if it's there instead of in `widget-field-list'.
13092
13093 * help.el (help-manyarg-func-alist): Correct entry for `vconcat'.
13094 (help-make-xrefs): Delete extraneous newlines at the end of the
13095 docstring.
13096
13097 2000-11-25 Jason Rumney <jasonr@gnu.org>
13098
13099 * startup.el (command-line): Call set-locale-environment after
13100 Window System init file is read, as it can result in a call to
13101 redraw-frame.
13102
13103 2000-11-25 Eli Zaretskii <eliz@is.elta.co.il>
13104
13105 * simple.el (shell-command): Mention the effect of the prefix
13106 argument in the doc string.
13107
13108 2000-11-25 Miles Bader <miles@gnu.org>
13109
13110 * cus-face.el (custom-face-attributes): Add "None" choice to :stipple.
13111
13112 * wid-edit.el (widget-field-value-delete): Don't try to delete
13113 overlay when it's the `pseudo-overlay' that exists at some points.
13114
13115 2000-11-24 Jason Rumney <jasonr@gnu.org>
13116
13117 * international/mule-cmds.el (locale-language-names): Add "jp" as
13118 a non-standard alternative for Japanese.
13119
13120 2000-11-24 Andre Spiegel <spiegel@gnu.org>
13121
13122 * vc-hooks.el: Require 'cl during compilation.
13123
13124 2000-11-24 Gerd Moellmann <gerd@gnu.org>
13125
13126 * faces.el (face-set-after-frame-default): Let face attributes
13127 specified for new frames override frame parameters.
13128
13129 * startup.el (command-line): Fix computation of the source file
13130 for user-init-file when user-init-file is a compiled file.
13131
13132 2000-11-24 Miles Bader <miles@gnu.org>
13133
13134 * cus-edit.el (custom-filter-face-spec, custom-pre-filter-face-spec)
13135 (custom-post-filter-face-spec): New functions.
13136 (custom-face-set, custom-face-value-create): Filter the face spec
13137 before and after customization.
13138 (custom-face-set): If VALUE specifies a null face, pass a
13139 non-null-but-otherwise-ignored face-spec instead to `face-spec-set'.
13140 * cus-face.el (custom-face-attributes): Remove SET and GET
13141 functions. Add some IN-FILTER and OUT-FILTER functions in the few
13142 cases they're needed.
13143
13144 * wid-edit.el (checkbox): Add a small `X' to the :on-glyph, so
13145 that it's distinguishable from the :off-glyph on dark-background
13146 displays. Set its background color too.
13147
13148 * cus-start.el (all): Restore entry for `mode-line-inverse-video',
13149 so that people can easily turn it off.
13150
13151 2000-11-24 Michael Kifer <kifer@cs.sunysb.edu>
13152
13153 * ediff-diff.el: Moved variables around to have it compile under NT.
13154
13155 * ediff-help.el (ediff-use-long-help-message): Made it customizable.
13156
13157 * ediff-init.el (ediff-abbrev-jobname): Use capitalize.
13158
13159 * ediff-wind.el (ediff-skip-unsuitable-frames): Deleted the
13160 redundant skip-small-frames test.
13161
13162 * viper-cmd.el (viper-change-state-to-vi): Disable overwrite mode.
13163 (viper-downgrade-to-insert): Protect against errors in hooks.
13164
13165 * viper-init.el (viper-vi-state-hook,viper-insert-state-hook)
13166 (viper-replace-state-hook,viper-emacs-state-hook): Do cursor handling.
13167 (viper-restore-cursor-type,viper-set-insert-cursor-type):
13168 New functions.
13169
13170 * viper-util.el (viper-memq-char): Bug fixes.
13171
13172 * viper.el (viper-mode): Fix cursor handling.
13173
13174 2000-11-24 Kenichi Handa <handa@etl.go.jp>
13175
13176 * international/mule-diag.el (list-iso-charset-chars):
13177 For two-byte charset, fix the `while' condition.
13178 (list-non-iso-charset-chars): Fix the `while' condition.
13179
13180 2000-11-23 Stefan Monnier <monnier@cs.yale.edu>
13181
13182 * subr.el (add-hook, remove-hook): Don't call make-local-hook
13183 if the variable is make-variable-buffer-local.
13184
13185 * progmodes/ada-stmt.el (ada-template-map):
13186 Initialize and bind it to C-c t in ada-mode-map.
13187 (ada-stmt-mode-hook): New function extracted from old code.
13188 Only change the buffer-local side of skeleton-*.
13189 (ada-mode-hook): Use it.
13190
13191 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
13192
13193 * iswitchb.el (iswitchb-minibuf-depth): New variable.
13194 (iswitchb-read-buffer): Record in iswitchb-minibuf-depth the value
13195 we expect to be returned by minibuffer-depth once we prompt the
13196 user in the minibuffer.
13197 (iswitchb-entryfn-p): If minibuffer-depth returns the same value
13198 as recorded in iswitchb-minibuf-depth, return non-nil.
13199
13200 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
13201
13202 * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode)
13203 (hscroll-window-maybe): Docstring fix.
13204
13205 2000-11-23 Dave Love <fx@gnu.org>
13206
13207 * rect.el (string-rectangle): Don't test delete-selection-mode.
13208
13209 2000-11-23 Gerd Moellmann <gerd@gnu.org>
13210
13211 * avoid.el (mouse-avoidance-too-close-p): Return nil if mouse
13212 is in the tool bar.
13213
13214 * dired-aux.el (dired-add-entry): Don't call dired-get-filename
13215 with `no-dir'; we want the directory part to be able to remove it.
13216
13217 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
13218
13219 * textmodes/outline.el (outline-flag-region):
13220 Don't bind inhibit-read-only since we don't modify the buffer.
13221 (outline-isearch-open-invisible): Don't jump to overlay-start
13222 since we're trying to unhide text around point.
13223 (outline-discard-overlays): Use dolist.
13224
13225 * autoinsert.el (auto-insert-alist): Add `provide' to elisp skeleton.
13226
13227 2000-11-22 Gerd Moellmann <gerd@gnu.org>
13228
13229 * mail/rmail.el (rmail-confirm-expunge): Default to y-or-n-p.
13230
13231 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
13232
13233 * textmodes/tex-mode.el (tex-font-lock-keywords-1):
13234 Fix ARG regexp to skip quoted braces.
13235 (tex-font-lock-keywords-2): Fix ARG regexp to skip quoted braces.
13236 Remove `bf' and `it' from `bold' and `italic' (they were wrong and
13237 are (correctly) handled separately).
13238 Remove `caption' and `footnote' from `citations': they contain text.
13239 Don't highlight `textmd', `texttt' and `textrm' with bold-italic.
13240 (latex-skeleton-end-hook): New function.
13241 (latex-mode): Use it.
13242 (tex-start-tex-marker): Remove.
13243 (tex-send-tex-command): Don't set tex-start-tex-marker.
13244 (tex-error-parse-syntax-table): New var.
13245 (tex-compilation-parse-errors): Use it.
13246 Ignore tex-start-tex-marker. Don't bother with marker-position.
13247 (tex-validate-buffer): Don't bother with marker-position.
13248
13249 * textmodes/flyspell.el (flyspell-prog-text-faces): New var.
13250 (flyspell-generic-progmode-verify): Use it.
13251
13252 2000-11-22 Sam Steingold <sds@gnu.org>
13253
13254 * simple.el (delete-trailing-whitespace): New interactive function.
13255
13256 * progmodes/ada-mode.el (ada-mode): Use it instead of
13257 `ada-remove-trailing-spaces'.
13258 (ada-remove-trailing-spaces): Removed.
13259
13260 * textmodes/two-column.el (2C-merge): Recommend it in the doc.
13261
13262 * textmodes/picture.el (picture-clean): Removed.
13263 (picture-mode-exit): Call it instead of `picture-clean'.
13264
13265 2000-11-22 Gerd Moellmann <gerd@gnu.org>
13266
13267 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
13268
13269 * hi-lock.el (hi-lock-refontify): Don't call non-existent
13270 jit-lock-fontify-buffer; it should anyway be unneccessary to
13271 do anything special when jit-lock is active.
13272 (hi-yellow, hi-pink, hi-green, hi-blue): Fix defface specs.
13273
13274 2000-11-22 Dave Love <fx@gnu.org>
13275
13276 * calendar/todo-mode.el (todo-top-priorities): Use
13277 todo-tmp-buffer-name. From Milan Zamazal <Milan.Zamazal@qbizm.com>.
13278
13279 * language/chinese.el, language/cyrillic.el:
13280 * language/devanagari.el, language/ethiopic.el, language/greek.el:
13281 * language/hebrew.el, language/indian.el, language/japanese.el:
13282 * language/korean.el, language/lao.el, language/misc-lang.el:
13283 * language/thai.el, language/tibetan.el, language/vietnamese.el:
13284 Use provide.
13285
13286 * cus-edit.el (custom-buffer-create-internal): Save some consing.
13287 (custom-variable-set): Improve validation error mesage.
13288
13289 * rect.el (string-rectangle): Revert last change.
13290 (string-rectangle-line): New arg DELETE.
13291 (string-rectangle): Check delete-selection-mode.
13292
13293 * emacs-lisp/edebug.el (edebug-version)
13294 (edebug-maintainer-address): Deleted.
13295 (edebug-submit-bug-report): Just alias to report-emacs-bug.
13296 (edebug-read-function): Account for other `'#' read forms.
13297 (edebug-mode-menus): Make some items toggles.
13298 (edebug-outside-unread-command-event, unread-command-event):
13299 Remove these to avoid warnings.
13300
13301 2000-11-22 David Ponce <david@dponce.com>
13302
13303 * recentf.el (recentf-menu-items-for-commands)
13304 (recentf-make-menu-items, recentf-make-menu-item)
13305 (recentf-filter-changer): Added :help and :active menu-item properties.
13306
13307 (recentf-build-dir-rules, recentf-dump-variable)
13308 (recentf-edit-list, recentf-open-files-item)
13309 (recentf-open-files): Replaced unnecessary `mapcar' with new
13310 built-in `mapc'.
13311
13312 2000-11-23 Miles Bader <miles@gnu.org>
13313
13314 * faces.el (menu): Make inverse-video on ttys too.
13315
13316 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
13317
13318 * simple.el (comment-line-break-function): Use the new name
13319 indent-new-comment-line -> comment-indent-new-line.
13320 (clone-indirect-buffer): Don't ignore NORECORD.
13321 (next-completion): Properly handle the case where items are adjacent.
13322
13323 * mouse.el (popup-menu): Stupid typo.
13324
13325 2000-11-22 Gerd Moellmann <gerd@gnu.org>
13326
13327 * emacs-lisp/authors.el: Remove autoload cookies, add author,
13328 maintainer, keywords tags.
13329
13330 * rect.el (replace-rectangle): Don't call string-rectangle-line
13331 with too many arguments.
13332
13333 2000-11-22 Andre Spiegel <spiegel@gnu.org>
13334
13335 * ediff-util.el (ediff-file-checked-out-p)
13336 (ediff-file-checked-in-p): Call vc-state instead of
13337 vc-locking-user, which no longer exists.
13338
13339 * emulation/viper-util.el (viper-file-checked-in-p): Same as above.
13340
13341 2000-11-22 Dave Love <fx@gnu.org>
13342
13343 * md5.el (md5): Provide.
13344 (md5): Fix error call.
13345
13346 2000-11-22 Miles Bader <miles@gnu.org>
13347
13348 * textmodes/refill.el (refill-adjust-ignorable-overlay)
13349 (refill-fill-paragraph-at): Remove debugging code.
13350
13351 * calendar/calendar.el (generate-calendar-window): When we don't
13352 call `fit-window-to-buffer', make sure the top line is fully visible.
13353
13354 * image-file.el (insert-image-file): Don't make `read-only'
13355 property rear-nonsticky.
13356
13357 * isearch.el (isearch-original-minibuffer-message-timeout): New var.
13358 (isearch-mode): Set `minibuffer-message-timeout' to nil, after
13359 stashing away its original value.
13360 (isearch-edit-string): Temporarily restore `minibuffer-message-timeout'
13361 in the recursive edit.
13362 Bind `isearch-original-minibuffer-message-timeout' to protect it.
13363 (isearch-done): Restore `minibuffer-message-timeout'.
13364
13365 * cus-start.el: Remove entry for `mode-line-inverse-video'.
13366
13367 2000-11-21 Stefan Monnier <monnier@cs.yale.edu>
13368
13369 * progmodes/ada-mode.el (ada-mode): `set '' -> `setq'.
13370
13371 * find-lisp.el (find-lisp-find-files-internal):
13372 Use dolist, when and file-name-as-directory.
13373
13374 * emacs-lisp/edebug.el (edebug-form-spec prop): Use dolist.
13375 (define-derived-mode, define-minor-mode): Add specs.
13376
13377 * window.el: General comment and spacing fixes.
13378 (save-selected-window): Use backquotes.
13379 (window-safely-shrinkable-p): New function.
13380 (shrink-window-if-larger-than-buffer): Use it.
13381
13382 * subr.el (make-local-hook): Docstring fix.
13383
13384 * shell.el (shell-mode): Use define-derived-mode.
13385
13386 * newcomment.el (comment-indent): Insert comment before calling
13387 comment-indent-function. Don't insert in column 0.
13388 (comment-dwim): Indent before inserting comment.
13389
13390 * isearch.el (isearch-mode-map): Fix docstring. Init in defvar.
13391 (minibuffer-local-isearch-map): Init in defvar. Use inheritance.
13392 (isearch-clean-overlays, isearch-range-invisible, isearch-unread):
13393 Use mapc rather than map.
13394
13395 * files.el (find-buffer-visiting): Compare all attributes before
13396 declaring two files identical (rather than just their inode-no).
13397 (auto-mode-alist): Use \' rather than $.
13398
13399 * which-func.el: Update maintainer line.
13400
13401 * pcvs.el (uniquify-buffer-file-name): Remove advice.
13402 * uniquify.el (uniquify-list-buffers-directory-modes): New var.
13403 (uniquify-buffer-file-name): Use it.
13404
13405 2000-11-22 Miles Bader <miles@gnu.org>
13406
13407 * cus-start.el: Add entry for `minibuffer-prompt-properties'.
13408 * simple.el (minibuffer-avoid-prompt): New function.
13409
13410 2000-11-21 Gerd Moellmann <gerd@gnu.org>
13411
13412 * Makefile.in (.SUFFIXES): Add .SUFFIXES.
13413
13414 2000-11-21 Miles Bader <miles@gnu.org>
13415
13416 * emacs-lisp/advice.el (ad-special-forms): Correct the conditional
13417 inclusion of `track-mouse'.
13418
13419 * textmodes/refill.el (refill-ignorable-overlay): New variable.
13420 (refill-adjust-ignorable-overlay): New function.
13421 (refill-fill-paragraph-at): Use `refill-ignorable-overlay' to fill
13422 only the paragraph's tail if possible.
13423 Update `refill-ignorable-overlay'.
13424 (refill-mode): Initialize/cleanup `refill-ignorable-overlay'.
13425
13426 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
13427 point inside the fill-prefix.
13428
13429 * textmodes/refill.el (refill-post-command-function): Don't reset
13430 refill-doit in the case where a self-insertion command doesn't
13431 case a refill. Use `refill-fill-paragraph-at', getting position
13432 from `refill-doit'.
13433 (refill-after-change-function): Set `refill-doit' to END.
13434 (refill-fill-paragraph-at): New function, mostly from old
13435 refill-fill-paragraph.
13436 (refill-fill-paragraph): Use `refill-fill-paragraph-at'.
13437 (refill-pre-command-function): New function.
13438 (refill-mode): Add it to `pre-command-hook'.
13439
13440 2000-11-20 Gerd Moellmann <gerd@gnu.org>
13441
13442 * textmodes/artist.el (artist-mode): Fix autoload cookie.
13443
13444 * font-lock.el (java-keywords): Add MATCH-HIGHLIGHT part for
13445 javadoc tags.
13446
13447 2000-11-20 Andre Spiegel <spiegel@gnu.org>
13448
13449 * vc.el, vc-hooks.el: Undo prev change (moved functions back to
13450 vc.el).
13451
13452 * vc-rcs.el (vc-rcs-state): Before calling vc-workfile-unchanged-p,
13453 require vc.
13454
13455 * vc-cvs.el (vc-cvs-checkout): Fix bug that broke C-x v ~-style
13456 checkouts.
13457
13458 2000-11-20 Dave Love <fx@gnu.org>
13459
13460 * Makefile.in (DONTCOMPILE): Omit bindings.el.
13461
13462 2000-11-20 Eli Barzilay <eli@www.barzilay.org>
13463
13464 * calculator.el (calculator-paste): Use `if' instead of `and'
13465 and `or'.
13466 (calculator-help): Don't use electric-describe-mode for XEmacs.
13467
13468 2000-11-19 Gerd Moellmann <gerd@gnu.org>
13469
13470 * info.el (info-menu-5): Doc fix.
13471
13472 * textmodes/artist.el: New file.
13473
13474 2000-11-19 Andre Spiegel <spiegel@gnu.org>
13475
13476 * vc-rcs.el (vc-rcs-state): Call vc-workfile-unchanged-p only here,
13477 and differentiate according to checkout model.
13478 (vc-rcs-fetch-master-state): Don't call vc-workfile-unchanged-p,
13479 since this function is only concerned with master state.
13480
13481 * vc-hooks.el (vc-workfile-unchanged-p)
13482 (vc-default-workfile-unchanged-p): Moved here from vc.el.
13483
13484 * vc.el (vc-workfile-unchanged-p)
13485 (vc-default-workfile-unchanged-p): See above.
13486
13487 2000-11-19 Miles Bader <miles@gnu.org>
13488
13489 * image-file.el (insert-image-file): Make `intangible' and
13490 `read-only' properties rear-nonsticky too.
13491
13492 2000-11-18 Gerd Moellmann <gerd@gnu.org>
13493
13494 * ps-print.el: Update copyright notice.
13495
13496 * tooltip.el (tooltip-x-offset, tooltip-y-offset): New user-options.
13497 (tooltip-show): Use the offsets.
13498
13499 * bindings.el (mode-line-modified): Fix a typo.
13500 (mode-line-toggle-modified, mode-line-widen)
13501 (mode-line-abbrev-mode, mode-line-auto-fill-mode): Fix typos.
13502
13503 2000-11-17 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13504
13505 * ps-print.el (toplevel): Test for find-coding-system being
13506 fboundp before calling ps-x-find-coding-system.
13507
13508 2000-11-16 Stefan Monnier <monnier@cs.yale.edu>
13509
13510 * vc.el (vc-version-diff): Bind inhibit-read-only when inserting text.
13511 (vc-version-backup-file): Docstring fix.
13512
13513 2000-11-16 Gerd Moellmann <gerd@gnu.org>
13514
13515 * files.el (basic-save-buffer): Don't add a newline if
13516 find-file-literally is non-nil.
13517 (find-file-literally): Extend doc string.
13518
13519 * sort.el (sort-columns): If sort-fold-case it non-nil, invoke
13520 sort(1) with the `-f' argument.
13521
13522 2000-11-16 Andre Spiegel <spiegel@gnu.org>
13523
13524 * vc.el: Updated backend documentation.
13525 (vc-default-check-headers): New function.
13526
13527 * vc-{cvs,rcs,sccs}.el: Functions reordered.
13528
13529 * vc.el (vc-revert-buffer): Ask for confirmation if file seems
13530 up-to-date.
13531 (vc-do-command): In the asynchronous case, output messages only if
13532 the minibuffer is not active.
13533
13534 * vc-cvs.el (vc-cvs-revert): Use `cvs unedit' only if
13535 `vc-cvs-use-edit' is on.
13536 (vc-cvs-checkout): When this is used for reverting the workfile,
13537 make a backup of the original contents and revert to that in case
13538 of error.
13539 (vc-cvs-print-log, vc-cvs-diff): Use asynchronous mode only for
13540 remote repositories.
13541
13542 * vc.el (vc-annotate): Changed handling of prefix arg; now asks
13543 for both version and ratio in the minibuffer.
13544
13545 * vc-cvs.el (vc-cvs-annotate-command): New optional arg VERSION.
13546 Use vc-do-command to perform the annotation, not call-process.
13547
13548 2000-11-16 Kenichi Handa <handa@etl.go.jp>
13549
13550 * international/quail.el (quail-start-translation): Don't call
13551 `message' before reading key sequence.
13552
13553 2000-11-16 Miles Bader <miles@lsi.nec.co.jp>
13554
13555 * net/ange-ftp.el (ange-ftp-file-modtime): Don't use `caddr'.
13556
13557 2000-11-16 Kenichi Handa <handa@etl.go.jp>
13558
13559 * window.el (fit-window-to-buffer): Be sure to acquire at least
13560 one text line even if the buffer is empty.
13561
13562 2000-11-16 Gerd Moellmann <gerd@gnu.org>
13563
13564 * net/ange-ftp.el (ange-ftp-file-writable-p)
13565 (ange-ftp-file-readable-p, ange-ftp-file-executable-p):
13566 Bind ange-ftp-process-verbose to nil.
13567
13568 2000-11-15 Dave Love <fx@gnu.org>
13569
13570 * wid-edit.el (widget-specify-field, widget-specify-button):
13571 If :help-echo is a function, set help-echo of overlay to
13572 widget-mouse-help.
13573 (widget-mouse-help): New function.
13574 (widget-echo-help): Rewritten for :help-echo functions only taking
13575 a widget arg.
13576
13577 * net/eudc-bob.el (eudc-bob-can-display-inline-images):
13578 Use display-graphic-p.
13579 (eudc-bob-display-jpeg) <!eudc-xemacs-p>: Test create-image bound
13580 and that JPEG is available.
13581 (eudc-bob-toggle-inline-display): Avoid non-existent `imagep'.
13582
13583 * international/mule-cmds.el (locale-charset-language-names):
13584 Match @euro.
13585
13586 2000-11-15 Gerd Moellmann <gerd@gnu.org>
13587
13588 * faces.el (face-set-after-frame-default):
13589 If `inhibit-default-face-x-resources' is bound, don't intialize the
13590 default face from X resources.
13591
13592 2000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
13593
13594 * Makefile.in (custom-deps, finder-data, autoloads, recompile):
13595 Don't set EMACSLOADPATH.
13596
13597 2000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
13598
13599 * textmodes/texinfo.el (texinfo-insert-@uref): Renamed from
13600 texinfo-insert-@url.
13601 (texinfo-insert-@url): A defalias for texinfo-insert-@uref.
13602 (texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref.
13603
13604 2000-11-14 Stefan Monnier <monnier@cs.yale.edu>
13605
13606 * emacs-lisp/checkdoc.el (checkdoc-minor-mode) <defvar>: Remove.
13607 (checkdoc-minor-mode-map): New map, replaces checkdoc-minor-keymap.
13608 (checkdoc-minor-keymap): Backward compatibility.
13609 (checkdoc-minor-menu): Don't bother checking checkdoc-minor-keymap.
13610 (checkdoc-minor-mode) <defun>: Use easy-mmode-define-minor-mode.
13611 (checkdoc-this-string-valid-engine): Be a bit more strict
13612 to avoid matching substrings of `...' quoted vars/funs.
13613 (checkdoc-defun-info): Only look for `interactive' if alone.
13614 (debug-ignored-errors): Add "arg doesn't appear in docstring".
13615
13616 * progmodes/compile.el (grep): `tag-default' can be nil.
13617
13618 * newcomment.el (comment-indent): Paren typo.
13619
13620 2000-11-14 Dave Love <fx@gnu.org>
13621
13622 * calculator.el: New maintainer version.
13623
13624 * diff-mode.el (diff-imenu-generic-expression): Modify unidiff pattern.
13625
13626 * cmuscheme.el: Doc fixes.
13627 (cmuscheme) <defgroup>: Use `scheme' as parent.
13628 (cmuscheme-program-name): Remove. Change uses to scheme-program-name.
13629
13630 * xscheme.el (scheme-program-name): Don't define here.
13631
13632 * progmodes/scheme.el (scheme-program-name): New variable
13633 (originally in cmuscheme).
13634
13635 2000-11-14 Miles Bader <miles@gnu.org>
13636
13637 * window.el (fit-window-to-buffer): Handle windows without mode-lines.
13638 Handle header-lines. Don't loop forever if we can't enlarge the
13639 window anymore. Simplify a bit.
13640
13641 2000-11-14 Kenichi Handa <handa@etl.go.jp>
13642
13643 * window.el (fit-window-to-buffer): Don't check
13644 window-text-height. Assure that the last line is fully visible.
13645
13646 * international/quail.el (quail-show-guidance-buf):
13647 Call fit-window-to-buffer to assure the enough height of the guidance
13648 buffer.
13649 (quail-update-guidance): Avoid making the guidance buffer shorter.
13650
13651 2000-11-14 Stefan Monnier <monnier@cs.yale.edu>
13652
13653 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Use `keep'
13654 rather than `prepend' and add an interesting comment.
13655 (tex-math-face, tex-font-lock-syntactic-face-function):
13656 New face and function to use it.
13657 (tex-define-common-keys, tex-mode-map): Use menu-item rather
13658 than `menu-enable' symbol property.
13659 (tex-mode-map): Bind {, (, [ and $ to skeleton-pair-insert-maybe.
13660 (tex-mode): Add some latex-mode commands for auto-selection.
13661 Use tex-font-lock-syntactic-face-function.
13662 (tex-insert-quote): Simplify.
13663 (tex-shell): New mode.
13664 (tex-start-shell): Use it.
13665 (tex-shell-proc, tex-shell-buf): New functions.
13666 (tex-send-command): Use it.
13667 (tex-main-file): Fix the meaning of the new arg REALFILE.
13668 (tex-send-tex-command): New function split from `tex-start-tex'.
13669 Set compilation-last-buffer and compilation-parsing-end.
13670
13671 * newcomment.el (comment-indent-default): Stick \s<\s< to the left
13672 when it follows non-comment text on the line.
13673
13674 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13675 Set font-lock-defaults.
13676 (lisp-mode-shared-map): Init inside the defvar.
13677 (emacs-lisp-mode, lisp-mode, lisp-interaction-mode):
13678 Use define-derived-mode.
13679
13680 2000-11-14 Miles Bader <miles@lsi.nec.co.jp>
13681
13682 * faces.el (header-line): Use `:box nil' for color/gs displays too.
13683
13684 2000-11-14 Gerd Moellmann <gerd@gnu.org>
13685
13686 * emacs-lisp/byte-opt.el (byte-compile-unfold-lambda):
13687 Don't recursively optimize body because that can lead to infinite
13688 recursion; see comment there.
13689
13690 2000-11-13 Eli Zaretskii <eliz@is.elta.co.il>
13691
13692 * faces.el (face-spec-set-match-display): Revert the change from
13693 2000-10-24. Add a FIXME for after v21.1.
13694
13695 2000-11-13 Miles Bader <miles@gnu.org>
13696
13697 * textmodes/fill.el (skip-line-prefix): New function.
13698 (fill-region-as-paragraph, fill-region): Return the fill-prefix.
13699 (fill-paragraph): Don't leave point inside the fill-prefix.
13700 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
13701 point inside the fill-prefix.
13702
13703 2000-11-13 Miles Bader <miles@lsi.nec.co.jp>
13704
13705 * calendar/calendar.el (generate-calendar-window):
13706 Use `fit-window-to-buffer'.
13707
13708 2000-11-12 Stefan Monnier <monnier@cs.yale.edu>
13709
13710 * gud.el (gud-minor-mode): New var.
13711 (gud-symbol, gud-val): New functions.
13712 (gud-find-file): Copy gud-minor-mode to the new buffer.
13713 (gud-menu-map): Include entries for commands that are not always
13714 available, using :enable to (de)activate them.
13715 (gud-minor-mode-map): New map. Add it to minor-mode-map-alist.
13716 (gud-mode-map): New map.
13717 (gud-gdb-find-file, gud-sdb-find-file, gud-dbx-find-file)
13718 (gud-xdb-find-file, gud-perldb-find-file, gud-pdb-find-file):
13719 Don't set up gud's menu (it's done by the minor-mode).
13720 (gud-minibuffer-local-map): New.
13721 Replace gdb-minibuffer-local-map and pdb-minibuffer-local-map.
13722 (gud-query-cmdline): New function.
13723 (gdb, sdb, dbx, xdb, perldb, pdb, jdb): Use it. Set gud-minor-mode.
13724 (gud-mode): Use define-derived-mode.
13725 Don't set up gud's menu (it's done by the minor-mode).
13726 (gud-chop-words): Remove.
13727 (gud-common-init): Use split-string instead.
13728 (gud-new-keymap, gud-make-debug-menu): Eradicate.
13729
13730 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
13731 Add keyword arg :name.
13732
13733 * diff-mode.el (diff-mode-menu): Add entry for applying hunk.
13734 (diff-count-matches, diff-split-hunk): New functions.
13735 (diff-mode-map): Bind C-c C-s to diff-split-hunk.
13736
13737 * pcvs-info.el (cvs-fi-conflict-face): New var.
13738
13739 * progmodes/sh-script.el (sh-mode-syntax-table) <defvar>:
13740 Make it into a simple syntax-table, shared among all submodes.
13741 (sh-heredoc-face): Re-introduce.
13742 (sh-font-lock-syntactic-face-function): New function.
13743 (sh-mode): Use it. Also use define-derived-mode.
13744 Remove old bogus setting of indent-region-function.
13745 (sh-set-shell): Don't set the syntax-table any more.
13746 (sh-mode-syntax-table) <defun>: Remove.
13747
13748 2000-11-12 Miles Bader <miles@gnu.org>
13749
13750 * textmodes/flyspell.el (flyspell-mode-on): Only output welcome
13751 message if interactive.
13752
13753 2000-11-12 Dave Love <fx@gnu.org>
13754
13755 * mail/feedmail.el: Fix header,
13756 (feedmail) <defgroup>: Add :link.
13757
13758 * view.el: Use local-map property, not keymap on mode-line string.
13759
13760 * scroll-all.el (scroll-all-mode): Customize variable.
13761 Add autoload cookie to function.
13762
13763 * lazy-lock.el: Remove compatibility code.
13764
13765 * finder.el (finder-known-keywords): Add `files', remove `vms'.
13766 (finder-help-echo): New variable.
13767 (finder-mouse-face-on-line): Add help-echo stuff.
13768 (finder-list-keywords, finder-list-matches): Use mapc.
13769
13770 * faces.el (face-font-registry-alternatives): Add :version.
13771
13772 * progmodes/etags.el (visit-tags-table-buffer): Beware of `t' in
13773 tags-table-list.
13774
13775 * net/browse-url.el (browse-url-browser-function): Update :version.
13776
13777 * mail/sendmail.el (mail-font-lock-keywords): Use [:alpha:], not a-z.
13778 (mail-mode): Use [:alnum:] in some regexps.
13779
13780 2000-11-10 Dave Love <fx@gnu.org>
13781
13782 * ediff.el (ediff-regions-internal, ediff-documentation):
13783 * ediff-vers.el (rcs-ediff-view-revision): Put temp buffer into
13784 fundamental mode.
13785
13786 * ediff-util.el (ediff-status-info, ediff-debug-info): Put temp
13787 buffer into fundamental mode.
13788 (ediff-set-difference): Use copy-sequence if available.
13789
13790 * ediff-ptch.el (ediff-dispatch-file-patching-job):
13791 Check ediff-patch-map non-nil.
13792 (ediff-fixup-patch-map, ediff-fixup-patch-map)
13793 (ediff-fixup-patch-map, ediff-patch-file-internal): Put temp
13794 buffer into fundamental mode.
13795
13796 * ediff-merg.el (state-or-merge): Defvar when compiling.
13797
13798 2000-11-10 Jason Rumney <jasonr@gnu.org>
13799
13800 * w32-fns.el (w32-add-charset-info): New function.
13801 (w32-charset-info-alist): Use it.
13802
13803 2000-11-10 Gerd Moellmann <gerd@gnu.org>
13804
13805 * faces.el (face-font-registry-alternatives): New user-option.
13806
13807 2000-11-10 Stefan Monnier <monnier@cs.yale.edu>
13808
13809 * textmodes/texinfo.el (texinfo-block-default): New var.
13810 (texinfo-insert-block): Use it. Insert a newline if needed.
13811
13812 * textmodes/fill.el (fill-indent-according-to-mode): New var.
13813 (fill-region-as-paragraph): Use it.
13814
13815 * textmodes/tex-mode.el (standard-latex-block-names): Add "math".
13816 (latex-mode): Tweak tex-*-(head|trail)er regexps.
13817 Tweak paragraph regexps to allow a leading [ \t]*.
13818 (tex-latex-block): Insert a newline if necessary.
13819 (latex-insert-item): Only insert a newline if necessary.
13820 (tex-guess-main-file): New function.
13821 (tex-main-file): Use it. Add arg `realfile'. Trim `.tex'.
13822 Set tex-main-file if TeX-master is provided.
13823 (tex-latex-indent-syntax-table): Map ( and ) to punctuation.
13824
13825 2000-11-10 Gerd Moellmann <gerd@gnu.org>
13826
13827 * startup.el (command-line): Set the default tooltip-mode
13828 to t for graphical displays which implement x-show-tip.
13829
13830 * tooltip.el (tooltip-mode): Add a comment about startup.el
13831 setting the default value of this user-option.
13832
13833 2000-11-09 Stefan Monnier <monnier@cs.yale.edu>
13834
13835 * font-lock.el (font-lock-*-face) <defvar>: Move.
13836 (font-lock-defaults-alist): Mark obsolete.
13837 (font-lock-mode, font-lock-mode-hook) <defvar>: Remove.
13838 (font-lock-mode): Use define-minor-mode.
13839 (font-lock-support-mode): Tweak type to default to jit-lock-mode.
13840 (font-lock-turn-off-thing-lock): Be more explicit.
13841 (font-lock-apply-syntactic-highlight): Use string-to-syntax after eval.
13842 (font-lock-syntactic-face-function): New var.
13843 (font-lock-fontify-syntactically-region): Use it.
13844 (font-lock-doc-face): New.
13845
13846 * pcvs.el (cvs-enabledp): Ignore errors.
13847 (cvs-commit-filelist): Never query.
13848 (cvs-mode-insert): Always add a terminating / in the initial prompt.
13849 (cvs-mode-diff-backup): Use cvs-partition rather than delete-if-not.
13850 (cvs-do-removal): Use cvs-partition rather than delete-if.
13851 Use cvs-insert-strings, cvs-pop-to-buffer-same-frame and
13852 cvs-bury-buffer.
13853
13854 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
13855 Allow `next' to jump to after the end of the last match.
13856
13857 2000-11-09 Gerd Moellmann <gerd@gnu.org>
13858
13859 * simple.el (byte-compiling-files-p): New function.
13860
13861 * textmodes/ispell.el (toplevel): Use byte-compiling-files-p
13862 if it is there.
13863
13864 * emacs-lisp/bytecomp.el (byte-compile-current-file): Bind it to
13865 nil again.
13866
13867 * textmodes/ispell.el (ispell-library-path): Don't call
13868 check-ispell-version when byte-compiling because that starts
13869 an ispell process, and ispell might not be installed.
13870 (toplevel): Don't set up a menu when byte-compiling.
13871
13872 * emacs-lisp/bytecomp.el (byte-compile-current-file): Don't bind
13873 it, so that a boundp test can be used to determine if we're
13874 currently byte-compiling.
13875
13876 2000-11-09 Dave Love <fx@gnu.org>
13877
13878 * pcvs.el (uniquify-buffer-file-name): Wrap advice in eval-after-load.
13879
13880 2000-11-09 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13881
13882 * ps-print.el: Patch for variable initialization when spooling.
13883 Doc fix.
13884 (ps-output-list): Fun eliminated.
13885 (ps-begin-file, ps-begin-job): Code fix.
13886
13887 2000-11-08 Dave Love <fx@gnu.org>
13888
13889 * ediff-wind.el (ediff-control-frame-parameters): Zero tool-bar-lines.
13890
13891 2000-11-08 Gerd Moellmann <gerd@gnu.org>
13892
13893 * simple.el (shell-command, display-message-or-buffer)
13894 (shell-command-on-region): Mention resize-mini-windows in the doc
13895 string.
13896 (display-message-or-buffer): Take the value of resize-mini-windows
13897 into account.
13898
13899 2000-11-07 Gerd Moellmann <gerd@gnu.org>
13900
13901 * macros.el (insert-kbd-macro): Print semi-colons as `?\;'.
13902
13903 * dired.el (dired-between-files): Add `^. find' as an alternative
13904 to the regular expression, for find-dired.
13905
13906 2000-11-06 Stefan Monnier <monnier@cs.yale.edu>
13907
13908 * textmodes/texnfo-upd.el: Require texinfo.
13909 (defmacro, defgroup): Remove.
13910 (texinfo-section-to-generic-alist): Remove.
13911 Use texinfo-section-list instead (i.e. level is changed string->int).
13912 (texinfo-filter): New function.
13913 (texinfo-chapter-level-regexp, texinfo-subsubsection-level-regexp)
13914 (texinfo-subsection-level-regexp, texinfo-section-level-regexp):
13915 Use it. And use regexp-opt.
13916 (texinfo-find-higher-level-node, texinfo-hierarchic-level)
13917 (texinfo-update-menu-region-beginning)
13918 (texinfo-update-menu-higher-regexps, texinfo-update-menu-lower-regexps)
13919 (texinfo-update-the-node, texinfo-sequentially-update-the-node)
13920 (texinfo-update-menu-same-level-regexps): Update.
13921 (texinfo-update-node, texinfo-every-node-update)
13922 (texinfo-sequential-node-update): Remove autoload cookie.
13923
13924 * textmodes/texinfo.el (texinfo-section-list): Change majorheading.
13925 (texinfo-font-lock-syntactic-keywords): Use syntax-strings.
13926 (texinfo-chapter-level-regexp): Remove.
13927 (texinfo-mode): Hard code texinfo-chapter-level-regexp.
13928
13929 2000-11-06 Dave Love <fx@gnu.org>
13930
13931 * autoinsert.el (auto-insert-alist) <latex-mode>: Use \documentclass.
13932
13933 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
13934 Match defun*.
13935
13936 2000-11-06 Kenichi Handa <handa@etl.go.jp>
13937
13938 * composite.el (composition-function-table): Variable declaration
13939 moved to src/composite.c.
13940 (compose-chars-after): New optional arg object.
13941
13942 2000-11-06 Gerd Moellmann <gerd@gnu.org>
13943
13944 * bindings.el (mode-line-toggle-read-only)
13945 (mode-line-toggle-modified, mode-line-widen)
13946 (mode-line-abbrev-mode, mode-line-auto-fill-mode): New functions.
13947 (make-mode-line-mouse2-map): Rewritten.
13948 (mode-line-modified, mode-line-format, minor-mode-alist): Use new
13949 functions so that C-h k can show something with a doc string.
13950
13951 * startup.el (fancy-splash-delay): Set to 10 seconds.
13952 (fancy-splash-max-time): New user-option.
13953 (fancy-splash-stop-time): New variable.
13954 (fancy-splash-screens): Set it. Catch `stop-splashing'.
13955 (fancy-splash-screens-1): Throw `stop-splashing' when current
13956 time is greater than fancy-splash-stop-time.
13957
13958 2000-11-06 Stefan Monnier <monnier@cs.yale.edu>
13959
13960 * vc-hooks.el (vc-insert-file): Don't assume byte==char.
13961
13962 * pcvs.el (cvs-mode-marked): New arg `noquery'.
13963 Prompt user for a file rather than raising an error.
13964 (cvs-enabledp): Fix call to cvs-mode-marked.
13965 (cvs-insert-file): New function (extracted from cvs-mode-insert).
13966 (cvs-mode-insert): Use it. Change the init prompt' value.
13967 (cvs-mode-tree): Use cvs-status-cvstrees instead of cvs-status-trees.
13968
13969 * emacs-lisp/ewoc.el (ewoc-goto-prev, ewoc-goto-next):
13970 Don't pass default arg to ewoc-locate.
13971 (ewoc-collect): Return result in the right order.
13972
13973 * log-edit.el (log-edit-show-files): Use cvs-insert-strings.
13974
13975 * cvs-status.el (cvs-tree-merge): Use cvs-butlast (avoid CL).
13976 (cvs-status-get-tags): Fix regexp.
13977 (cvs-status-trees, cvs-status-cvstrees):
13978 Combine after change hooks and don't sit-for.
13979 (cvs-tree-use-jisx0208): Rename from cvs-tree-dstr-2byte-ready.
13980 (cvs-tree-char-*): Rename from cvs-tree-dstr-char-*.
13981 Use make-char rather than hard-coded cryptic data.
13982 (cvs-status-cvstrees): Convert the buffer to multibyte if necessary.
13983
13984 * pcvs-defs.el (cvs-menu): Add entries for tree and insert.
13985
13986 * pcvs-util.el (cvs-butlast, cvs-nbutlast): New (copied from CL).
13987 (cvs-insert-strings): New function.
13988
13989 2000-11-06 Miles Bader <miles@lsi.nec.co.jp>
13990
13991 * mwheel.el (mouse-wheel-scroll-amount): Renamed from
13992 `mwheel-scroll-amount'.
13993 (mouse-wheel-follow-mouse): Renamed from `mwheel-follow-mouse'.
13994 (mouse-wheel-mode): Use (featurep 'xemacs) instead of
13995 string-matching against the version string.
13996
13997 2000-11-06 Kenichi Handa <handa@etl.go.jp>
13998
13999 * language/thai.el ("Thai"): Set a lisp form that produces
14000 composed string in `sample-text' language info.
14001
14002 * language/tibetan.el ("Tibetan"): Set a lisp form that produces
14003 composed string in `sample-text' language info.
14004
14005 * international/mule-cmds.el (describe-language-environment):
14006 Eval `sample-text' data and insert the result.
14007
14008 * international/mule-conf.el (compound-text): Define this coding
14009 system here. Make x-ctext and ctext aliases of it.
14010
14011 * language/european.el (compound-text, ctext): Moved to
14012 international/mule-conf.el.
14013
14014 2000-11-05 Andrew Innes <andrewi@gnu.org>
14015
14016 * w32-fns.el (w32-version): New function.
14017
14018 2000-11-05 Stefan Monnier <monnier@cs.yale.edu>
14019
14020 * progmodes/awk-mode.el: Update copyright.
14021 (awk-mode-abbrev-table): Remove.
14022 (awk-font-lock-keywords): Use regexp-opt.
14023 (awk-mode): Use define-derived-mode.
14024
14025 * emacs-lisp/regexp-opt.el (regexp-opt-group): Sort the strings
14026 when extracting a suffix.
14027
14028 2000-11-04 Andre Spiegel <spiegel@gnu.org>
14029
14030 * vc-hooks.el (vc-insert-file): Rewritten. Don't bother about
14031 auto-save-mode.
14032
14033 2000-11-04 Jason Rumney <jasonr@gnu.org>
14034
14035 * language/european.el (decode-mac-roman): Test against r1 not r0.
14036
14037 2000-11-03 Stefan Monnier <monnier@cs.yale.edu>
14038
14039 * progmodes/icon.el (icon-mode-map): Don't rebind \t.
14040 (icon-mode): Define indent-line-function.
14041 (icon-comment-indent): Simplify.
14042 (icon-font-lock-keywords-2): Use the `words' arg to regexp-opt.
14043
14044 * emacs-lisp/find-func.el (find-function-do-it): Quote the hook.
14045
14046 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
14047 Bind change-log-default-mode to defeat the caching done on it.
14048 Don't bother saving excursion any more.
14049
14050 * menu-bar.el (minibuffer maps): Use dolist rather than mapcar.
14051
14052 * frame.el (after-setting-font-hook): Rename hooks -> hook.
14053 (set-frame-font): Use the new name (and the old for compatibility).
14054
14055 * toolbar/tool-bar.el (tool-bar-mode):
14056 * time.el (display-time-mode):
14057 * recentf.el (recentf-mode):
14058 * paren.el (show-paren-mode):
14059 * mwheel.el (mouse-wheel-mode):
14060 * msb.el (msb-mode):
14061 * jka-compr.el (auto-compression-mode):
14062 * image-file.el (auto-image-file-mode):
14063 * hl-line.el (hl-line-mode):
14064 * delsel.el (delete-selection-mode):
14065 * autoinsert.el (auto-insert-mode):
14066 * complete.el (partial-completion-mode): Drop unneeded positional args.
14067
14068 * info.el (Info-mode):
14069 * comint.el (comint-mode): Don't bother with make-local-hook.
14070
14071 * log-edit.el (log-edit-menu): New menu.
14072
14073 2000-11-03 Miles Bader <miles@gnu.org>
14074
14075 * wid-edit.el (widget-end-of-line): Reinstate, with a new
14076 definition, so that trailing spaces are handled properly.
14077 (widget-field-keymap, widget-text-keymap): Likewise C-e binding.
14078
14079 2000-11-03 Gerd Moellmann <gerd@gnu.org>
14080
14081 * startup.el (fancy-splash-text, fancy-splash-text): Use a single
14082 tab character.
14083 (fancy-splash-screens): Set tab-width to 20.
14084
14085 2000-11-03 Dave Love <fx@gnu.org>
14086
14087 * comint.el (comint-completion-addsuffix): Fix custom type.
14088
14089 2000-11-02 Stefan Monnier <monnier@cs.yale.edu>
14090
14091 * font-lock.el (font-lock-buffers): Remove.
14092 (font-lock-global-modes): Define with easy-mmode-define-global-mode.
14093 (font-lock-change-major-mode): Remove.
14094 (turn-on-font-lock-if-enabled): Only apply to the current buffer.
14095 (font-lock-default-fontify-region): Extend the multiline
14096 fontification to whole lines.
14097 (font-lock-fontify-anchored-keywords)
14098 (font-lock-fontify-keywords-region): If matching just one
14099 line (with \n) only mark the \n as multiline.
14100
14101 * emacs-lisp/easy-mmode.el (define-minor-mode): Remove :toggle arg.
14102 Correctly handle the case where several :group args are supplied.
14103 Allow :extra-args.
14104 (easy-mmode-define-global-mode): Allow :extra-args.
14105 Correctly handle the case where several :group args are supplied.
14106
14107 2000-11-02 Miles Bader <miles@gnu.org>
14108
14109 * calendar/calendar.el (diary-face, calendar-today-face)
14110 (holiday-face): Remove dependency on `window-system'.
14111
14112 2000-11-02 Ken Raeburn <raeburn@gnu.org>
14113
14114 * Makefile.in (emacs): Set EMACSLOADPATH always.
14115 (update-authors, .el.elc, compile-files): Don't do it explicitly here.
14116 (compile-files): Bomb out if compilation of a file fails.
14117
14118 2000-11-02 Dave Love <fx@gnu.org>
14119
14120 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup.
14121
14122 2000-11-02 Eli Zaretskii <eliz@is.elta.co.il>
14123
14124 * mail/emacsbug.el (report-emacs-bug): Fix whitespace and
14125 punctuation in the warning inserted into the *mail* buffer.
14126
14127 2000-11-02 Gerd Moellmann <gerd@gnu.org>
14128
14129 * emacs-lisp/authors.el (authors-public-domain-files): New variable.
14130 (authors-public-domain-p): New function.
14131 (authors-print): Use it.
14132
14133 * help.el (view-emacs-news): Use ONEWS.* instead of NEWS.* files.
14134
14135 * mail/mh-e.el, mail/mh-comp.el: Change maintainer.
14136
14137 2000-11-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14138
14139 * ps-print.el: Extension for even/odd printing. Doc fix.
14140 (ps-print-version): New version number (6.3.1).
14141 (ps-even-or-odd-pages): Customization fix.
14142 (ps-print-page-p, ps-begin-file, ps-begin-job, ps-page-number)
14143 (ps-header-sheet, ps-header-page, ps-end-job): Code fix.
14144 (ps-page-count): Var replaced by `ps-page-column'.
14145 (ps-page-column, ps-page-sheet, ps-page-printed): New vars.
14146 (ps-print-sheet-p): New fun.
14147
14148 2000-11-02 Miles Bader <miles@lsi.nec.co.jp>
14149
14150 * tooltip.el (tooltip-gud-tips-setup): New function.
14151 (tooltip-gud-tips-p): Add :set to call tooltip-gud-tips-setup.
14152 (tooltip-mode): Call tooltip-gud-tips-setup.
14153 (tooltip-gud-tips): Use `gud-basic-call' instead of
14154 process-send-string, so the prompt gets frobbed appropriately.
14155 Handle nil return value from `tooltip-gud-print-command'.
14156
14157 2000-11-01 Eric M. Ludlam <zappo@ultranet.com>
14158
14159 * comint.el (comint-add-to-input-history): New function.
14160 (comint-send-input): Use `comint-add-to-input-history'.
14161
14162 2000-11-02 Miles Bader <miles@lsi.nec.co.jp>
14163
14164 * info.el (info-menu-header): New face.
14165 (Info-fontify-menu-headers): New function.
14166 (Info-fontify-node, Info-insert-dir): Call `Info-fontify-menu-headers'.
14167
14168 * info.el (Info-insert-dir): Don't include blank lines at
14169 beginning of additional dir files (one is added automatically).
14170
14171 2000-11-01 Stefan Monnier <monnier@cs.yale.edu>
14172
14173 * emacs-lisp/easy-mmode.el (define-minor-mode):
14174 Revert the latest changes.
14175 Allow the three positional arguments to be skipped and replaced
14176 by keyword arguments.
14177 Add a :toggle argument to determine whether a nil arg means toggle
14178 or means turn-on. The default is unchanged.
14179 Add a call to force-mode-line-update.
14180
14181 2000-11-01 Dave Love <fx@gnu.org>
14182
14183 * emacs-lisp/elp.el (elp-restore-function): Remove autoload cookie.
14184
14185 2000-11-01 Miles Bader <miles@lsi.nec.co.jp>
14186
14187 * calendar/calendar.el (diary-face, holiday-face):
14188 Add dark-background variants.
14189
14190 2000-10-31 Sam Steingold <sds@gnu.org>
14191
14192 * textmodes/tex-mode.el (tex-file): Use `default-directory' when
14193 `tex-main-file' does not have directory in it.
14194
14195 2000-10-31 Stefan Monnier <monnier@cs.yale.edu>
14196
14197 * cus-edit.el (custom-mode-map): Switch back to a sparse keymap.
14198
14199 2000-10-31 Thien-Thi Nguyen <ttn@gnu.org>
14200
14201 * ediff-init.el (ediff-prepare-buffer-hook): Expand docstring, no
14202 functional change.
14203
14204 2000-10-31 Gerd Moellmann <gerd@gnu.org>
14205
14206 * files.el (find-file-noselect): When we expand a wildcard, return
14207 a list of buffers, as we should do according to the doc string.
14208
14209 2000-10-31 Ken Raeburn <raeburn@gnu.org>
14210
14211 * loadup.el (top level): Adjust load path if program name is
14212 "../src/bootstrap-emacs", in case it's not dumped and thus the
14213 load path adjustment hasn't already been done.
14214
14215 2000-10-31 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14216
14217 * ps-print.el: Fix bug on selected pages for printing.
14218 Use `color-values' for Emacs 21. Ensure fontification when jit-lock
14219 is on. Try to avoid warning messages when compiling. Doc Fix.
14220 (ps-print-version): New version number (6.3).
14221 (ps-color-device): Use `color-values' to determine if device
14222 supports color.
14223 (ps-color-values): Try to use `x-color-values' when using XEmacs.
14224 (ps-print-page-p): Changed from defsubst to defun.
14225 (ps-page-number): Changed from defmacro to defun.
14226 (ps-header-sheet, ps-header-page): Fix bug on selected pages for
14227 printing.
14228 (ps-print-ensure-fontified): Ensure fontification when jit-lock is on.
14229 (ps-end-file, ps-dummy-page): Funs eliminated.
14230 (ps-print-color-scale): Changed default value.
14231 (ps-page-n-up, ps-print-page-p): New internal vars.
14232 (ps-print-preprint, ps-output, ps-begin-file, ps-begin-page)
14233 (ps-plot-region, ps-generate, ps-end-job): Code fix.
14234
14235 * delim-col.el: Little programming improvement.
14236 (delimit-columns-str): New macro.
14237 (delimit-columns-region, delimit-columns-rectangle): Code fix.
14238
14239 2000-10-31 Kenichi Handa <handa@etl.go.jp>
14240
14241 * term/mac-win.el (decode-mac-roman, encode-mac-roman, mac-roman):
14242 Moved to european.el.
14243 (ccl-encode-mac-roman-font, fontset-mac): Modified for
14244 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
14245 (mac-roman-kbd-insert, mac-roman-kbd-mode): These functions deleted.
14246 (mac-roman-kbd-mode, mac-roman-kbd-mode-map): These variables deleted.
14247
14248 2000-10-30 Dave Love <fx@gnu.org>
14249
14250 * progmodes/cc-menus.el (imenu-generic-expression)
14251 (imenu-progress-message): Only defvar when compiling.
14252
14253 * emacs-lisp/elp.el (elp-unload-hook): New function.
14254
14255 * loadhist.el (unload-feature): Call elp-restore-function,
14256 checking for symbols; don't use elp-restore-all.
14257 (loadhist-hook-functions): Doc fix.
14258
14259 2000-10-30 Stefan Monnier <monnier@cs.yale.edu>
14260
14261 * log-edit.el (log-edit-confirm): Fix the default.
14262
14263 2000-10-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14264
14265 * delim-col.el: Little fix: replace delimit-columns-align-columns by
14266 delimit-columns-format.
14267 (delimit-columns-region, delimit-columns-rectangle): Code fix.
14268
14269 2000-10-30 Miles Bader <miles@lsi.nec.co.jp>
14270
14271 * comint.el (comint-replace-by-expanded-history): Don't use
14272 comint-get-old-input (we're not looking at *old* input).
14273 (comint-get-old-input-default): If using fields, signal an error
14274 when the point is not in an input field.
14275
14276 2000-10-30 Kenichi Handa <handa@etl.go.jp>
14277
14278 * international/mule-conf.el: New charsets mule-unicode-2500-33ff
14279 and mule-unicode-e000-ffff.
14280
14281 * international/mule.el (decode-char, encode-char): New functions.
14282 (make-coding-system): Accept a symbol of translation table as a
14283 value of property `safe-chars'.
14284
14285 * international/mule-cmds.el (encode-coding-char): Check property
14286 safe-chars instead of safe-charsets.
14287
14288 * international/fontset.el (fontset-default): Modified for
14289 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
14290 (x-font-name-charset-alist): Likewise.
14291 (ccl-encode-unicode-font): New CCL program. Record it in
14292 font-ccl-encoder-alist to be used for fonts "ISO10646-1".
14293
14294 * language/european.el (mac-roman-decoder, mac-roman-encoder):
14295 New translation tables.
14296 (decode-mac-roman, encode-mac-roman): Definition of these CCL
14297 programs are modified and moved from mac-win.el.
14298 (mac-roman): Definition of this coding system is modified and
14299 moved from mac-win.el.
14300
14301 2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
14302
14303 * ediff-wind.el (ediff-setup-control-frame): Enclose
14304 face-attribute in condition-case to avoid errors in older emacsen.
14305
14306 2000-10-29 Miles Bader <miles@gnu.org>
14307
14308 * custom.el (custom-add-to-group): Allow multiple entries for a
14309 given value OPTION, as long as their widget types are different.
14310 * cus-edit.el (custom-face-value-create): If face name doesn't end
14311 with "face", add such here (similar to custom group widgets).
14312
14313 * comint.el (comint-highlight-prompt): Add :type.
14314
14315 2000-10-28 John Wiegley <johnw@gnu.org>
14316
14317 * calendar/timeclock.el (timeclock-log): Doc fix.
14318 (timeclock-last-event): Doc fix.
14319 (timeclock-log): Kill the timelog buffer after appending a new event.
14320 (timeclock-find-discrep): Use a temp buffer to read in the
14321 timelog, instead of visiting the file.
14322 (timeclock-log-data): A new function, along with a host of helper
14323 functions, for the purpose of making timelog data accessible to
14324 programmers.
14325
14326 * eshell/esh-mode.el (window-height test): Make certain that
14327 `eshell-stringify-t' is non-nil.
14328 (eshell-password-prompt-regexp): Changed to a much simpler
14329 password regexp.
14330 (eshell-send-input): If `eshell-invoke-directly' returns t,
14331 directly invoke the parsed command using `eval'. This improves
14332 turn-around time on simple commands by a factor of three or
14333 greater, such as cd, ls, pwd, etc. -- which get used very often.
14334 It also conserves thousands of cons cells per call (since
14335 `eshell-do-eval' consumes memory like a Cookie Monster set loose
14336 in the Pacific Cookie Company).
14337
14338 * eshell/esh-test.el (eshell-test): Whitespace fix.
14339
14340 * eshell/em-ls.el (eshell-ls-insert-directory):
14341 Make `eshell-ls-initial-args' nil when inserting directory contents.
14342
14343 * eshell/em-script.el (eshell-script-initialize): Add names to
14344 `eshell-complex-commands, since `source' and `.' are complex.
14345
14346 * eshell/esh-cmd.el (eshell-rewrite-for-command)
14347 (eshell-rewrite-while-command): Use `eshell-protect' instead of
14348 `eshell-copy-handles'.
14349 (eshell-rewrite-if-command): Use `eshell-protect' to wrap the call
14350 bodies.
14351 (eshell-separate-commands): Whitespace fix.
14352 (eshell-complex-commands): Added a new list of names, for
14353 determining whether a given command is as simple as it looks.
14354 (eshell-invoke-directly): New function. Returns t if a command
14355 should be invoked directly (using `eval'), rather than indirectly
14356 using `eshell-do-eval'.
14357 (eshell-do-eval): Whitespace fix.
14358
14359 * eshell/em-unix.el (eshell-default-target-is-dot): New variable,
14360 which provides an emulation of the DOS shell behavior of assuming
14361 that cp/mv/ln should copy/move/link to the current directory.
14362 (eshell-remove-entries): Added a doc string.
14363 (eshell-shuffle-files): Removed the check for `target' being null.
14364 (eshell-mvcp-template, eshell-mvcpln-template): Renamed
14365 `eshell-mvcp-template' to `eshell-mvcpln-template', and extended
14366 it to do a smarter check of whether a destination was provided.
14367 (eshell/mv, eshell/cp): Enable `:preserve-args'.
14368 (eshell/ln): Enable `:preserve-args', and use
14369 `eshell-mvcpln-template' to implement the body of the function.
14370 (eshell/cat, eshell/make, eshell-poor-mans-grep, eshell-grep)
14371 (eshell/du, eshell/diff, eshell/locate): Stringify the argument
14372 list after flattening it. This makes it possible to cat files
14373 with numerical names.
14374 (eshell-unix-initialize): Added several names to
14375 `eshell-complex-commands.
14376 (eshell-unix-command-complex-p): Return t if a given command name
14377 may result in external processes being invoked.
14378
14379 * eshell/em-glob.el (eshell-glob-show-progress): Make this
14380 variable nil by default, since it slows down glob processing by a
14381 factor of two or more, and increases memory consumption.
14382
14383 * eshell/em-smart.el: Added a note about how memory consumptive
14384 smart display mode can be (at least this is true in Emacs 21).
14385 (eshell-smart-initialize): Whitespace fix.
14386 (eshell-refresh-windows): Use `if' instead of `when'.
14387 (eshell-smart-scroll-window): Calling `save-current-buffer' was
14388 not necessary.
14389 (eshell-currently-handling-window): Added a missing global variable.
14390
14391 * eshell/em-ls.el (eshell-do-ls): Code simplification.
14392 (eshell-ls-sort-entries, eshell-ls-entries, eshell-ls-dir):
14393 Whitespace fix.
14394 (eshell-ls-exclude-hidden): Added this variable in addition to
14395 `eshell-ls-exclude-regexp'. This one prevents files beginning
14396 with . from even being read, which can improve memory consumption
14397 quite a bit.
14398 (eshell-ls-dir): If `eshell-ls-exclude-hidden' is non-nil, do not
14399 read file entries beginning with a dot. In home directories with
14400 lots of hidden files, fully two-thirds of the time spent in ls is
14401 used to read directory entries that are immediately thrown away.
14402 (eshell-ls-initial-args): Added back this configuration variable,
14403 for specifying default initial arguments to every call to ls.
14404 Much faster than using an alias to do the same thing.
14405 (eshell-do-ls): Use `eshell-ls-initial-args', if set.
14406 (eshell-ls-dir): Whitespace change.
14407
14408 * eshell/em-dirs.el (eshell/pwd): Small code simplification.
14409
14410 * eshell/esh-util.el: Don't require `ange-ftp' if it's not available.
14411 (eshell-stringify-t): Added a customization variable, to indicate
14412 whether `t' should be rendered as a string at all. If not, one
14413 can still determine if the result of an expression is true using
14414 "file-exists-p FILE && echo true".
14415 (eshell-stringify): If `eshell-stringify-t' is nil, don't
14416 stringify t!
14417
14418 * eshell/esh-module.el: Whitespace fix.
14419
14420 * eshell/em-alias.el (eshell-alias-initialize):
14421 Added `eshell-command-aliased-p' to `eshell-complex-commands'.
14422 (eshell-command-aliased-p): New function that returns t if a
14423 command name names an aliased.
14424
14425 2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
14426
14427 * viper-cmd.el (viper-preserve-cursor-color): New test that avoids
14428 redrawing the screen when changing cursor color.
14429 (viper-insert-state-pre-command-sentinel)
14430 (viper-replace-state-pre-command-sentinel)
14431 (viper-replace-state-post-command-sentinel):
14432 Use viper-preserve-cursor-color.
14433 Many functions changed to use viper= instead of = when comparing
14434 characters.
14435 * viper-util.el (viper-memq-char,viper=): New functions for
14436 working with characters.
14437 (viper-change-cursor-color): Fixed buglet.
14438 Many functions changed to use viper= instead of = when comparing
14439 characters.
14440 * viper.el (viper-insert-state-mode-list): Added eshell.
14441
14442 * ediff-init.el (ediff-before-setup-hook): New hook.
14443 Several typos fixed in various docstrings.
14444 * ediff-merg.el (ediff-show-clashes-only): Docstring typo fixed.
14445 * ediff-nult.el (ediff-before-session-group-setup-hooks): New hook.
14446 (ediff-show-meta-buffer): Run ediff-before-session-group-setup-hooks.
14447 * ediff-util.el (ediff-setup): Run ediff-before-setup-hook.
14448 (ediff-other-buffer): Use selected buffers if in Buffer-menu buffer.
14449 (ediff-get-selected-buffers): New function.
14450 * ediff-vers.el (ediff-vc-internal,ediff-rcs-internal)
14451 (ediff-vc-merge-internal,ediff-rcs-merge-internal):
14452 Use save-window-excursion.
14453 * ediff-wind.el (ediff-skip-unsuitable-frames): More robust
14454 termination check in while loop.
14455 * ediff.el (ediff-get-default-file-name): Better defaults when in
14456 dired buffer.
14457 (ediff-files,ediff-merge-files,ediff-files3)
14458 (ediff-merge-files-with-ancestor): Use ediff-get-default-file-name.
14459
14460 2000-10-28 Dave Love <fx@gnu.org>
14461
14462 * info.el (Info-fontify-node): Add help-echo for menu items.
14463
14464 2000-10-28 Eli Zaretskii <eliz@is.elta.co.il>
14465
14466 * startup.el (normal-top-level): If the value of $TERM indicates
14467 we are running from xterm or one of its work-alikes, default to a
14468 light background mode.
14469
14470 Support for -fg, -bg, and -rv command-line arguments for TTYs:
14471 * faces.el (tty-handle-reverse-video): New function.
14472 (tty-create-frame-with-faces): Call it.
14473
14474 * frame.el (frame-notice-user-settings): Don't apply
14475 default-frame-alist and initial-frame-alist to MS-DOS frames.
14476 Call tty-handle-reverse-video, frame-set-background-mode, and
14477 face-set-after-frame-default for non-MS-DOS frames.
14478
14479 * startup.el (tty-long-option-alist): New variable.
14480 (tty-handle-args): New function.
14481 (command-line): Call tty-handle-args.
14482
14483 * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove;
14484 startup.el now does that for all character-terminal frames.
14485
14486 2000-10-28 Miles Bader <miles@gnu.org>
14487
14488 * emacs-lisp/easy-mmode.el (define-minor-mode):
14489 Generate `turn-on-MODE' and `turn-off-MODE' functions unless the mode
14490 is global. If :global is followed by a non-nil but non-t value,
14491 make the mode buffer-local, but also generate a `global-MODE'
14492 version using `easy-mmode-define-global-mode'.
14493 Add :conditional-turn-on keyword argument.
14494
14495 2000-10-28 Dave Love <fx@gnu.org>
14496
14497 * international/latin1-disp.el (latin1-char-displayable-p):
14498 Don't use window-system.
14499
14500 2000-10-27 Eli Zaretskii <eliz@is.elta.co.il>
14501
14502 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
14503 Don't call find-buffer-file-type-coding-system. Instead, just
14504 set eol-type to -unix if inhibit-eol-conversion is in effect, or
14505 if the file is on an untranslated filesystem.
14506 (add-untranslated-filesystem): Use "D" instead of "f" inside
14507 interactive.
14508
14509 2000-10-27 Dave Love <fx@gnu.org>
14510
14511 * textmodes/refill.el (refill-late-fill-paragraph-function): New var.
14512 (refill-mode): Use it.
14513
14514 2000-10-27 Stefan Monnier <monnier@cs.yale.edu>
14515
14516 * international/quail.el (quail-activate): Don't make-local-hook.
14517
14518 2000-10-27 Andre Spiegel <spiegel@gnu.org>
14519
14520 * vc-hooks.el (vc-version-backup-file-name): Use file.~<rev>~ for
14521 manual backups and file.~<rev>.~ for automatic ones.
14522 (vc-make-version-backup): Don't do it on MS-DOS without long file
14523 names.
14524
14525 * vc.el (vc-version-other-window): If an automatic backup of the
14526 desired version exists, rename it instead of copying it.
14527
14528 * vc-cvs.el (vc-cvs-checkin): Check both status and error message
14529 after command. If there's an unexpected error, signal it instead
14530 of being silent.
14531 (vc-cvs-merge-news): Be prepared for no news at all.
14532
14533 2000-10-27 Miles Bader <miles@lsi.nec.co.jp>
14534
14535 * shell.el (shell): Add BUFFER argument.
14536 * comint.el (make-comint-in-buffer): New function.
14537 (make-comint): Use it.
14538
14539 * faces.el (face-spec-choose): Change syntax so that the list of
14540 attribute-value pairs is now the cdr of each clause, not the cadr.
14541 Detect old-style entries, and handle them. Use pop.
14542
14543 2000-10-26 Stefan Monnier <monnier@cs.yale.edu>
14544
14545 * cus-edit.el (custom-mode-map): Use a sparse map.
14546 (custom-mode): Don't bother with make-local-hook.
14547
14548 * wid-edit.el (widget-add-change): Don't bother with make-local-hook.
14549
14550 * vc.el (vc-start-entry): Only erase the buffer if comment is set.
14551
14552 2000-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14553
14554 * ps-print.el: Avoid compilation gripes.
14555 (ps-print-version): New version number (6.2.1).
14556
14557 2000-10-26 Dave Love <fx@gnu.org>
14558
14559 * menu-bar.el: Modify some menu item help strings.
14560 (menu-bar-help-menu): Add link to MORE.STUFF.
14561
14562 * cus-edit.el (custom-mode): Add `special' mode-class property.
14563
14564 * wid-browse.el (widget-browse-mode): Likewise.
14565
14566 * wid-edit.el (widget-specify-field): Revert to using local-map
14567 property, not keymap.
14568
14569 2000-10-26 Miles Bader <miles@lsi.nec.co.jp>
14570
14571 * wid-edit.el (widget-field-end): When checking for a `boundary'
14572 field, do so in the correct buffer.
14573
14574 * simple.el (undo): Correctly distinguish between numeric and
14575 non-numeric prefix args in non-transient-mark-mode, as per the doc
14576 string. When in transient-mark-mode, treat all prefix-args as
14577 numeric.
14578
14579 * simple.el (previous-matching-history-element): Miscellaneous cleanup.
14580 Position point on match. Handle N == 0 correctly.
14581
14582 * comint.el (comint-mode): Locally set `next-line-add-newlines' to nil.
14583 (comint-mode-map): Reverse order of `comint-write-output' and
14584 `comint-append-output-to-file'.
14585 (comint-append-output-to-file): Reinstate this function, for the
14586 benefit of the menu.
14587
14588 2000-10-25 Stefan Monnier <monnier@cs.yale.edu>
14589
14590 * vc.el (vc-version-other-window): Bind `file'.
14591
14592 2000-10-25 Gerd Moellmann <gerd@gnu.org>
14593
14594 * Makefile.in (update-authors): New target for maintenance purposes.
14595
14596 * emacs-lisp/authors.el (batch-update-authors): New function.
14597 (authors-fixed-entries): New defconst.
14598 (authors-add-fixed-entries): New function.
14599 (authors): Call it.: Don't process lispref/.
14600
14601 2000-10-25 Jason Rumney <jasonr@gnu.org>
14602
14603 * cus-edit.el (custom-button-face, custom-button-pressed-face):
14604 Merge x w32 and mac definitions.
14605
14606 2000-10-25 Gerd Moellmann <gerd@gnu.org>
14607
14608 * menu-bar.el (menu-bar-options-menu): Add a help string for
14609 `uniquify'.
14610
14611 2000-10-25 Stephen Gildea <gildea@stop.mail-abuse.org>
14612
14613 * time-stamp.el (time-stamp-string-preprocess):
14614 Fix a wrong type argument error.
14615
14616 2000-10-25 Miles Bader <miles@gnu.org>
14617
14618 * recentf.el (recentf-mode): Variable removed.
14619 (recentf-mode): Use `define-minor-mode'.
14620
14621 * mwheel.el (mouse-wheel-mode): New global minor mode.
14622 (mwheel-install): Use `mouse-wheel-mode'.
14623
14624 2000-10-25 Dave Love <fx@gnu.org>
14625
14626 * progmodes/cperl-mode.el (cperl-mode):
14627 Set normal-auto-fill-function correctly.
14628
14629 * wid-edit.el (widget-field-keymap, widget-text-keymap):
14630 Don't inherit from global-map and don't nullify menu-bar and tool-bar
14631 bindings.
14632
14633 2000-10-25 Miles Bader <miles@lsi.nec.co.jp>
14634
14635 * wid-edit.el (widget-field-at): New function.
14636 (widget-at, widget-field-activate): Use it.
14637 (widget-tabable-at): Use `widget-at'.
14638 (widget-specify-field): If the terminating character of the widget
14639 field (which is read-only) is a newline, put it into a special
14640 `boundary' field so that C-n/C-p act more naturally.
14641 (widget-field-end): Also don't subtract one if a special
14642 `boundary' field has been added after the widget field.
14643
14644 * comint.el (comint-output-filter, comint-send-input):
14645 Don't bother adding stickiness fields to overlays to fool the field
14646 code, since it should notice the overlay insertion-types now.
14647
14648 * wid-edit.el (widget-beginning-of-line, widget-end-of-line):
14649 Replace with aliases of the normal emacs b-o-l/e-o-l functions.
14650 (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e.
14651
14652 2000-10-24 Gerd Moellmann <gerd@gnu.org>
14653
14654 * emacs-lisp/authors.el (authors-aliases): Add some more aliases.
14655 (authors): Set file coding system to iso-2022-7bit.
14656 Add file-local variables to output buffer.
14657
14658 * files.el (after-find-file): Don't print any warnings if
14659 WARN is nil.
14660
14661 2000-10-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14662
14663 * ps-print.el (ps-generate): Fix odd/even pages printing bug.
14664
14665 * delim-col.el: Now there is a column formatting mechanism.
14666 Modified to customization mechanisms convention. Doc fix.
14667 (columns): New group for delim-col.
14668 (delimit-columns-before, delimit-columns-after)
14669 (delimit-columns-format, delimit-columns-extra, delimit-columns-start)
14670 (delimit-columns-end): New vars.
14671 (delimit-columns-customize, delimit-columns-format): New funs.
14672 (delimit-columns-region, delimit-columns-rectangle)
14673 (delimit-columns-rectangle-line): Modified to support column
14674 formatting.
14675
14676 2000-10-24 Dave Love <fx@gnu.org>
14677
14678 * log-edit.el (log-edit): Add :version and a :group for vc.
14679
14680 2000-10-24 Gerd Moellmann <gerd@gnu.org>
14681
14682 * files.el (after-find-file): Don't print a message ``New file''
14683 if WARN is nil.
14684
14685 * wid-edit.el (widget-field-keymap, widget-text-keymap):
14686 Define the tool-bar map as nil, as for the menu-bar. Otherwise, we'll
14687 get duplicate tool-bar entries because we'll see the global ones
14688 on more than one path through keymaps.
14689
14690 * emacs-lisp/lisp.el (defun-prompt-regexp): Doc fix.
14691
14692 * progmodes/cmacexp.el: Change Francesco's email address.
14693
14694 2000-10-24 Kenichi Handa <handa@etl.go.jp>
14695
14696 * window.el (fit-window-to-buffer): Adjust point of the window
14697 buffer, not that of the current buffer.
14698
14699 2000-10-24 Eli Zaretskii <eliz@is.elta.co.il>
14700
14701 * progmodes/cmacexp.el: Update the euthor's email address.
14702
14703 2000-10-24 Miles Bader <miles@lsi.nec.co.jp>
14704
14705 * faces.el (face-spec-set-match-display): Add `graphic' display
14706 type (the inverse of `tty'). Use `display-graphic-p' instead of
14707 the window-system variable.
14708
14709 2000-10-24 Kenichi Handa <handa@etl.go.jp>
14710
14711 * international/isearch-x.el (isearch-with-input-method):
14712 Call input-method-function with the first event in
14713 unread-command-events.
14714
14715 2000-10-24 Miles Bader <miles@lsi.nec.co.jp>
14716
14717 * faces.el (face-default-spec, face-user-default-spec): Make defsubsts.
14718
14719 2000-10-24 Andrew Choi <akochoi@i-cable.com>
14720
14721 * international/mule-conf.el (mac-roman-lower, mac-roman-upper):
14722 New charsets.
14723
14724 * term/mac-win.el: Remove definitions of mac-roman-lower and
14725 mac-roman-upper, require dired, and define instead of set
14726 mac-ready-for-drag-n-drop to avoid compilation error.
14727
14728 2000-10-23 Andrew Innes <andrewi@gnu.org>
14729
14730 * files.el (make-backup-file-name-1) [windowsnt, ms-dos]:
14731 Remove superfluous calls to subst-char-in-string; instead apply
14732 expand-file-name after convert-standard-filename to ensure
14733 expected directory separators are used.
14734
14735 2000-10-23 Eli Zaretskii <eliz@is.elta.co.il>
14736
14737 * info.el (Info-file-list-for-emacs): Add an entry for Eshell.
14738
14739 2000-10-23 Dave Love <fx@gnu.org>
14740
14741 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
14742 (tool-bar-add-item): Set foreground and background for XBM icons.
14743
14744 * international/latin1-disp.el (latin1-char-displayable-p):
14745 New function (from Handa).
14746 (latin1-display-check-font): Use it.
14747
14748 * imenu.el (imenu--create-keymap-2): Build menu with menu-item
14749 using :key-sequence, making it much more usable.
14750 Use nconc, not append.
14751 (imenu--create-keymap-1): Avoid append.
14752
14753 * textmodes/refill.el: Remove bits redundant with define-minor-mode.
14754
14755 2000-10-23 Miles Bader <miles@lsi.nec.co.jp>
14756
14757 [the following changes fix a bug where `define-minor-mode' didn't
14758 correctly generate :require clauses for defcustoms in compiled files]
14759 * emacs-lisp/bytecomp.el (byte-compile-last-logged-file): New variable.
14760 (byte-compile-log-file, byte-compile-log-1): Don't set
14761 `byte-compile-current-file' to nil. Instead set
14762 `byte-compile-last-logged-file' to it. Test whether
14763 byte-compile-current-file equals byte-compile-last-logged-file
14764 instead of whether its nil.
14765 (byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
14766
14767 2000-10-23 Stefan Monnier <monnier@cs.yale.edu>
14768
14769 * textmodes/refill.el: Fix var names in doc.
14770 (refill-mode): Don't bother with make-local-hook anymore.
14771
14772 2000-10-23 Miles Bader <miles@lsi.nec.co.jp>
14773
14774 * faces.el (face-user-default-spec, face-default-spec): New functions.
14775 (face-spec-choose, face-spec-set): Document nil-SPEC behavior.
14776 (frame-set-background-mode, face-set-after-frame-default):
14777 Use `face-user-default-spec'. Simplify code slightly.
14778
14779 * woman.el (woman-italic-face, woman-bold-face)
14780 (woman-unknown-face): Add dark-background variants.
14781 (woman-default-faces): Renamed from `woman-colour-faces'.
14782 Set using the stored defaults, rather than using hard-wired colors.
14783 (woman-monochrome-faces): Renamed from `woman-black-faces'.
14784 Just make the foreground `unspecified' rather than "black".
14785 (woman-menu): Rename menu entries accordingly.
14786
14787 * faces.el (header-line): Make more reasonable on mono/grayscale
14788 displays.
14789
14790 2000-10-23 Andrew Choi <akochoi@i-cable.com>
14791
14792 * cus-edit.el (custom-button-face): Use 3D look for mac.
14793 (custom-button-pressed-face): Likewise.
14794
14795 * faces.el (set-face-attributes-from-resources): Handle mac frames
14796 in the same way as x and w32 frames.
14797 (face-valid-attribute-values): Likewise.
14798 (read-face-attribute): Likewise.
14799 (defined-colors): Likewise.
14800 (color-defined-p): Likewise.
14801 (color-values): Likewise.
14802 (display-grayscale-p): Likewise.
14803 (face-set-after-frame-default): Likewise.
14804 (mode-line): Same default face as for x and w32.
14805 (tool-bar): Likewise.
14806
14807 * frame.el: Remove call to frame-notice-user-settings at end of
14808 the file.
14809
14810 * info.el (Info-fontify-node): Make underlines invisible for mac
14811 as for x, pc, and w32 frame types.
14812
14813 * term/mac-win.el: New file.
14814
14815 2000-10-22 Dave Love <fx@gnu.org>
14816
14817 * textmodes/refill.el: New file.
14818
14819 2000-10-22 Andre Spiegel <spiegel@gnu.org>
14820
14821 * vc-hooks.el (vc-version-backup-file-name): New optional args
14822 MANUAL and REGEXP.
14823 (vc-delete-automatic-version-backups, vc-make-version-backup):
14824 New functions.
14825 (vc-before-save): Use the latter.
14826 (vc-default-make-version-backups-p): Added `-p' suffix to avoid
14827 confusion.
14828
14829 * vc-cvs.el (vc-cvs-make-version-backups-p): Added `-p' suffix as
14830 expected by vc[-hooks].el.
14831
14832 * vc.el (vc-checkout): Added `-p' suffix in call to
14833 vc-make-version-backups-p; use vc-make-version-backup to actually
14834 make the backup.
14835 (vc-version-other-window, vc-version-backup-file): Handle both
14836 automatic and manual backups.
14837 (vc-revert-file): Use vc-delete-automatic-version-backups to get rid
14838 of all of them.
14839
14840 2000-10-22 Miles Bader <miles@gnu.org>
14841
14842 * comint.el (comint-highlight-input, comint-highlight-prompt):
14843 Renamed, `-face' at end removed.
14844 (comint-send-input, comint-output-filter): Use renamed faces.
14845
14846 * window.el (fit-window-to-buffer): Change defaulting of
14847 MAX-HEIGHT slightly.
14848
14849 * faces.el (color-values, color-defined-p): Use `member', not
14850 `memq', because it works correctly for strings.
14851 (frame-set-background-mode): Actually, "unspecified-fg" and
14852 "unspecified-bg" *are* strings. Use `member', not `memq', and
14853 `equal', not `eq', when a string value is possible.
14854
14855 2000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
14856
14857 * info.el (Info-file-list-for-emacs): Add an entry for Speedbar.
14858
14859 2000-10-21 Stefan Monnier <monnier@cs.yale.edu>
14860
14861 * progmodes/sh-script.el (sh-mode-map): Remove bindings for
14862 sh-electric-rparen, sh-electric-less and sh-electric-hash.
14863 (sh-st-punc, sh-here-doc-syntax): Use string-to-syntax.
14864 (sh-font-lock-heredoc, sh-font-lock-paren): New funs.
14865 (sh-font-lock-syntactic-keywords): Use them.
14866 (sh-heredoc-face, sh-st-face, sh-special-syntax): Remove.
14867 (sh-mkword-regexp, sh-electric-rparen-needed-here): Remove.
14868 (sh-mode): Don't override font-lock-unfontify-region-function.
14869 Use a copy of sh-font-lock-syntactic-keywords.
14870 (sh-set-shell): Don't set sh-electric-rparen-needed-here.
14871 Don't call sh-scan-buffer since font-lock does it on the fly.
14872 (sh-get-indent-info): Use `face' rather than `syntax-table'
14873 text-property to detect here-documents.
14874 Replace sh-special-syntax with sh-st-punc.
14875 (sh-prev-line): Use `face' rather than `syntax-table'
14876 text-property to skip over here-documents.
14877 (sh-font-lock-unfontify-region-function, sh-check-paren-in-case)
14878 (sh-set-char-syntax, sh-electric-rparen, sh-electric-hash)
14879 (sh-electric-less, sh-set-here-doc-region)
14880 (sh-remove-our-text-properties, sh-search-word, sh-scan-case)
14881 (sh-scan-buffer, sh-rescan-buffer): Remove.
14882
14883 2000-10-21 Andrew Innes <andrewi@gnu.org>
14884
14885 * w32-fns.el (make-auto-save-file-name): Don't apply conversion to
14886 remote (ange-ftp) file names.
14887
14888 2000-10-21 Miles Bader <miles@gnu.org>
14889
14890 * window.el (fit-window-to-buffer): New function.
14891 (shrink-window-if-larger-than-buffer): Use it.
14892 (window-text-height): Don't expect minibuffers to have mode-lines.
14893
14894 * help.el (resize-temp-buffer-window): Use `fit-window-to-buffer'.
14895 * international/quail.el (quail-update-guidance):
14896 Use `fit-window-to-buffer' instead of `set-window-text-height'.
14897
14898 * international/quail.el (quail-show-guidance-buf): Make sure
14899 guidance window really has enough room.
14900 (quail-update-guidance): If quail-guidance-win is already shown,
14901 make sure its height is OK.
14902
14903 * window.el (window-text-height, set-window-text-height):
14904 New functions.
14905 (shrink-window-if-larger-than-buffer): Use `window-text-height'
14906 instead of `window-height' & `mode-line-window-height-fudge'.
14907 (mode-line-window-height-fudge): Add FACE parameter.
14908 * help.el (resize-temp-buffer-window): Use `set-window-text-height'
14909 instead of `enlarge-window' & `mode-line-window-height-fudge'.
14910
14911 2000-10-20 Miles Bader <miles@gnu.org>
14912
14913 * window.el (height-affecting-face-attributes): Use `defconst'.
14914
14915 * textmodes/ispell.el (ispell-mode-line-window-height-fudge):
14916 New function, conditionally aliased to `mode-line-window-height-fudge'.
14917 (ispell-help): Use it.
14918 (ispell-choices-win-default-height): Don't include mode-line fudge.
14919 (ispell-choices-win-default-height): New function.
14920 (ispell-show-choices, ispell-command-loop): Use function
14921 `ispell-choices-win-default-height' instead of variable.
14922
14923 2000-10-20 Miles Bader <miles@lsi.nec.co.jp>
14924
14925 * window.el (mode-line-window-height-fudge): New variable.
14926 (height-affecting-face-attributes): New variable.
14927 (mode-line-window-height-fudge): New function.
14928 (shrink-window-if-larger-than-buffer): Use it.
14929 * help.el (resize-temp-buffer-window): Likewise.
14930
14931 * info.el (Info-fontify-node): Add support for @subsubsection
14932 titles, which use `Info-title-4-face'.
14933 (Info-title-4-face): New face.
14934 (Info-title-3-face): Inherit from Info-title-4-face instead of
14935 variable-pitch.
14936
14937 2000-10-19 Jason Rumney <jasonr@gnu.org>
14938
14939 * dired.el (dired-insert-directory): Do not let errors signalled by
14940 attempt to run dired-free-space-program prevent dired from working.
14941
14942 2000-10-19 Stefan Monnier <monnier@cs.yale.edu>
14943
14944 * diff-mode.el (diff-find-file-name): Fix regex subgroup number.
14945
14946 2000-10-19 Gerd Moellmann <gerd@gnu.org>
14947
14948 * dirtrack.el (dirtrack): Fix call to run-hooks.
14949
14950 * cmuscheme.el (cmuscheme-program-name): Renamed from
14951 scheme-program-name because xscheme.el contains a defcustom with
14952 the same name. As a consequence, customizing group `cmuscheme'
14953 loaded `xscheme' which redefined run-scheme.
14954 (run-scheme): Use cmuscheme-program-name.
14955
14956 * ps-print.el (ps-print-emacs-type): Move into the eval-and-compile.
14957
14958 * play/doctor.el (doctor-death): Update the Samaritans'
14959 anonymous address, and add a website for Befrienders International.
14960
14961 2000-10-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14962
14963 * ps-print.el: Even/odd pages fix. Fix little bug on XEmacs.
14964 Avoid compilation gripes. Doc fix.
14965 (ps-print-version): New version number (6.2).
14966 (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
14967 (ps-x-color-name, ps-x-color-specifier-p, ps-x-copy-coding-system)
14968 (ps-x-device-class, ps-x-extent-end-position, ps-x-extent-face)
14969 (ps-x-extent-priority, ps-x-extent-start-position)
14970 (ps-x-face-font-instance, ps-x-find-coding-system)
14971 (ps-x-font-instance-properties, ps-x-make-color-instance)
14972 (ps-x-map-extents): Alias for functions without the prefix `ps-x-', to
14973 avoid compilation gripes without defining functions.
14974 (ps-e-find-composition): Alias for function find-composition, to have a
14975 suitable function depending on Emacs version.
14976 (ps-color-device, ps-color-values, ps-face-foreground-name)
14977 (ps-face-background-name, ps-face-bold-p, ps-face-italic-p, ps-mapper)
14978 (ps-extent-sorter, ps-xemacs-face-kind-p, ps-xemacs-color-name)
14979 (ps-print-ensure-fontified): Function definitions surrounded by
14980 `eval-and-compile' to avoid compilation gripes.
14981 (ps-font-lock-face-attributes): `font-lock-face-attributes' evaluated
14982 by symbol-value to avoid compilation gripes.
14983 (ps-end-file, ps-header-sheet, ps-plot-region): Even/odd pages fix.
14984 (ps-generate-postscript-with-faces): Fix little bug on XEmacs.
14985
14986 2000-10-19 Miles Bader <miles@lsi.nec.co.jp>
14987
14988 * startup.el (normal-top-level): Call `frame-set-background-mode'
14989 after `frame-notice-user-settings' because the latter doesn't call
14990 the former on a tty.
14991
14992 * faces.el (frame-set-background-mode): `unspecified' &c are
14993 symbols, not strings.
14994
14995 2000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
14996
14997 * term/tty-colors.el (color-name-rgb-alist): Add a comment explaining
14998 why some "light*" colors are deliberately absent from the alist.
14999
15000 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face):
15001 Change colors for tty's, as suggested by Miles Bader.
15002
15003 2000-10-19 Kenichi Handa <handa@etl.go.jp>
15004
15005 * international/fontset.el: Use registry "MuleTibetan-2" for Tibetan.
15006 (ccl-encode-mule-unicode-0100-24ff): New CCL program. Register it
15007 for ISO10646-1 fonts.
15008 (x-font-name-charset-alist): Add an entry for "iso10646-1".
15009
15010 2000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
15011
15012 * faces.el (frame-set-background-mode): If a tty frame defines a
15013 background color, use that to compute the background mode, instead
15014 of always defaulting to "dark".
15015
15016 2000-10-19 Miles Bader <miles@lsi.nec.co.jp>
15017
15018 * comint.el (comint-write-output): New function.
15019 (comint-mode-map): Add it to the menu.
15020 Bind `C-c C-s' to comint-write-output.
15021
15022 2000-10-18 Gerd Moellmann <gerd@gnu.org>
15023
15024 * startup.el (fancy-splash-screens): Set buffer-undo-list to t.
15025 Use fancy-splash-delay.
15026
15027 2000-10-18 Alex Schroeder <alex@gnu.org>
15028
15029 * progmodes/sql.el (sql-sybase-options): New option.
15030 (sql-sybase): Use it. Add sql-database to the list of parameters
15031 provided for login. The options -w 2048 -n are not used any more.
15032
15033 * comint.el (comint-read-input-ring): Bugfix such that the first
15034 and the last entry of the input ring file are not lost.
15035
15036 2000-10-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
15037
15038 * ps-print.el: Internal variable changes to defcustom,
15039 make-local-hook changes to defvar. Doc fix.
15040 (ps-print-version): New version number (6.1).
15041 (ps-setup, ps-do-despool): Code fix.
15042 (ps-printer-name): Customization fix.
15043 (ps-printer-name-option): Now is a defcustom instead of an
15044 internal variable.
15045 (ps-print-hook, ps-print-begin-sheet-hook, ps-print-begin-page-hook)
15046 (ps-print-begin-column-hook): Now are defvar instead of
15047 make-local-hook.
15048
15049 2000-10-18 Miles Bader <miles@gnu.org>
15050
15051 * comint.el (comint-delete-output): Renamed from `comint-kill-output'.
15052 (comint-kill-output): Changed into an alias for `comint-delete-output',
15053 and made obsolete.
15054 (comint-mode-map): Rename references to comint-kill-output.
15055
15056 2000-10-18 Eli Zaretskii <eliz@is.elta.co.il>
15057
15058 * diff-mode.el (diff-header-face, diff-file-header-face)
15059 (diff-changed-face): Add bold and italic attributes to tty faces.
15060 (diff-function-face): New face.
15061 (diff-font-lock-keywords): Use it.
15062
15063 2000-10-18 Miles Bader <miles@lsi.nec.co.jp>
15064
15065 * comint.el (comint-output-filter): Fixup comint-last-input-end too.
15066 Remove commented-out call to force-mode-line-update.
15067 (comint-kill-output): Use `forward-line 0' instead of
15068 beginning-of-line to make sure we get past the prompt.
15069
15070 2000-10-17 Stefan Monnier <monnier@cs.yale.edu>
15071
15072 * diff-mode.el (diff-header-face, diff-file-header-face):
15073 Add specific setting for dark background.
15074 (diff-context-face): Renamed from diff-comment-face.
15075 Set explicitly rather than inheriting from font-lock-comment-face.
15076
15077 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
15078
15079 * startup.el (command-line): Move the code which sets the default
15080 TTY colors to before before-init-hook.
15081
15082 2000-10-17 Gerd Moellmann <gerd@gnu.org>
15083
15084 * jit-lock.el (jit-lock-stealth-time): Doc fix.
15085
15086 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
15087
15088 * files.el (auto-mode-alist): Add .dif and .pat as diff-mode
15089 extensions, for MS-DOS.
15090
15091 * diff-mode.el (diff-header-face, diff-file-header-face)
15092 (diff-changed-face): Define tty-specific colors.
15093
15094 2000-10-17 Gerd Moellmann <gerd@gnu.org>
15095
15096 * startup.el (fancy-splash-text): Realign the text.
15097
15098 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
15099
15100 * font-lock.el (font-lock-comment-face): Define a separate default
15101 for dark-background tty's.
15102
15103 2000-10-17 Miles Bader <miles@gnu.org>
15104
15105 * help.el (resize-temp-buffer-window): Add hack to avoid last line
15106 being obscured by whizzy mode-lines on graphics displays.
15107
15108 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
15109
15110 * info.el (Info-title-1-face, Info-title-2-face)
15111 (Info-title-3-face): Define colors for tty's.
15112 (info-header-node): Remove unneeded tty-specific definition.
15113
15114 2000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
15115
15116 * term/pc-win.el (msdos-handle-reverse-video): Don't remove
15117 reverse from the frame parameters, and don't invert foreground and
15118 background colors.
15119
15120 2000-10-16 Miles Bader <miles@gnu.org>
15121
15122 * info.el (Info-set-mode-line): Use `%b' instead of hardwired
15123 string "*Info*". Call propertized-buffer-identification to spruce
15124 up the result.
15125
15126 2000-10-16 Gerd Moellmann <gerd@gnu.org>
15127
15128 * help.el: Provide `help' for the sake of define-minor-mode
15129 which generates defcustoms with requires.
15130
15131 * jit-lock.el (jit-lock-after-change): If we're in text that
15132 matches a multi-line font-lock pattern, make sure the whole text
15133 will be redisplayed.
15134
15135 * emacs-lisp/authors.el (authors-add): Don't add an entry if
15136 author's name is unknown.
15137
15138 * eshell/esh-var.el, eshell/esh-util.el, eshell/esh-test.el,
15139 * eshell/esh-proc.el, eshell/esh-opt.el, eshell/esh-mode.el,
15140 * eshell/esh-maint.el, eshell/esh-io.el, eshell/esh-ext.el,
15141 * eshell/esh-cmd.el, eshell/esh-arg.el, eshell/em-xtra.el,
15142 * eshell/em-unix.el, eshell/em-term.el, eshell/em-smart.el,
15143 * eshell/em-script.el, eshell/em-rebind.el, eshell/em-prompt.el,
15144 * eshell/em-pred.el, eshell/em-ls.el, eshell/em-hist.el,
15145 * eshell/em-glob.el, shell/em-dirs.el, eshell/em-cmpl.el,
15146 * eshell/em-basic.el, eshell/em-banner.el, eshell/em-alias.el:
15147 Add author information.
15148
15149 2000-10-16 Miles Bader <miles@lsi.nec.co.jp>
15150
15151 * toolbar/up_arrow.xpm, toolbar/right_arrow.xpm:
15152 * toolbar/left_arrow.xpm, toolbar/home.xpm: Re-convert from
15153 full-color version (using the Gimp) to eliminate dithering artifacts.
15154
15155 2000-10-15 Stefan Monnier <monnier@cs.yale.edu>
15156
15157 * font-lock.el (font-lock-syntactic-keywords): Fix docstring.
15158
15159 * simple.el (syntax-flag-table, string-to-syntax): Remove.
15160
15161 2000-10-15 Dave Love <fx@gnu.org>
15162
15163 * progmodes/sh-script.el: Require skeleton and comint when compiling.
15164
15165 * pcomplete.el (pcomplete) <defgroup>: Add :version.
15166
15167 * whitespace.el: Doc fixes.
15168 (top-level): Don't add hooks here.
15169 (whitespace-running-emacs): Deleted.
15170 (timer): Don't require.
15171 (whitespace): Add back :version conditional on xemacs test.
15172 (whitespace-spacetab-regexp, whitespace-indent-regexp)
15173 (whitespace-ateol-regexp, whitespace-modes): Fix custom type.
15174 (whitespace-force-mode-line-update, whitespace-refresh-rescan-list)
15175 (whitespace-tickle-timer, whitespace-rescan-files-in-buffers):
15176 Avoid specific xemacs test.
15177 (whitespace-global-mode): New option.
15178 (whitespace-global-mode): New command.
15179 (whitespace-unload-hook): New function.
15180
15181 * info.el (Info-mouse-follow-nearest-node): Use mouse-set-point.
15182 (Info-fontify-node, Info-goto-node, Info-mode-menu)
15183 (Info-fontify-node): `Goto' goes to `Go to'.
15184 (Info-fontify-node): Add help-echo to xref links.
15185
15186 2000-10-15 Eli Zaretskii <eliz@is.elta.co.il>
15187
15188 * eshell/em-unix.el (eshell-du-prefer-over-ange): Doc fix.
15189
15190 2000-10-15 Stefan Monnier <monnier@cs.yale.edu>
15191
15192 * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
15193 Use plist-get and allow :inherit.
15194
15195 * emacs-lisp/cl-macs.el (cl-do-arglist):
15196 Use plist-get and plist-member instead of memq.
15197
15198 * emacs-lisp/ewoc.el (ewoc-location): New function.
15199 (ewoc-enter-after, ewoc-enter-before): Document return value.
15200 * pcvs.el (cvs-make-cvs-buffer, cvs-run-process):
15201 Don't need make-local-hook any more.
15202 (cvs-addto-collection): Return the new tin.
15203 (cvs-mode-insert): Jump to the new line.
15204
15205 * jit-lock.el (jit-lock-fontify-buffer): Remove.
15206
15207 * arc-mode.el (archive-zoo-summarize): Fix from gnu.emacs.bug.
15208
15209 * font-lock.el (font-lock-syntactically-fontified): New var.
15210 (font-lock-fontify-syntactic-keywords-region): Use it.
15211 (font-lock-mode): Fix docstring. Don't need make-local-hook anymore.
15212
15213 * diff-mode.el (diff-find-file-name): Fix regexp.
15214
15215 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
15216 (cl-builtin-clrhash, cl-builtin-maphash): Add for byte-compatibility.
15217
15218 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix.
15219 (sh-mode-syntax-table): Add punctuation syntax for < and >.
15220 (sh-mode): Don't make all vars local here.
15221 (sh-kw): Reformat.
15222 (sh-set-shell): Use dolist. Don't set indent-region-function.
15223 (sh-mode-syntax-table): Use pop.
15224 (sh-remember-variable): Use push.
15225 (sh-help-string-for-variable): Use memq.
15226 (sh-safe-backward-sexp): Remove.
15227 (sh-safe-forward-sexp): Add ARG.
15228 (sh-get-indent-info, sh-prev-stmt): Use it.
15229 (sh-prev-line): Simplify by using forward-comment.
15230 (sh-this-is-a-continuation): Simplify.
15231 (sh-learn-buffer-indent): Use dolist.
15232 (sh-do-nothing): Remove.
15233 (sh-set-char-syntax, sh-set-here-doc-region):
15234 Use inhibit-modification-hooks.
15235 (sh-name-style): Use mapcar and push.
15236 (sh-load-style): Use dolist.
15237 (sh-save-styles-to-buffer): Use with-current-buffer and pp.
15238 (sh-case, sh-while-getopts): Use propertize directly rather
15239 than sh-electric-rparen.
15240
15241 2000-10-14 Stefan Monnier <monnier@cs.yale.edu>
15242
15243 * textmodes/tex-mode.el: Require CL when compiling.
15244 (tex-mode-syntax-table): Init immediately.
15245 (tex-mode-map): Bind M-RET to latex-insert-item.
15246 (latex-mode): Set indent-line-function to latex-indent.
15247 (tex-common-initialization): Don't setup the syntax-table any more.
15248 (latex-insert-item): New skeleton.
15249 (tex-next-unmatched-end): Fix copy/paste braino.
15250 (latex-syntax-after, latex-skip-close-parens, latex-down-list)
15251 (latex-indent, latex-find-indent): New functions.
15252 (tex-indent-allhanging, tex-indent-arg, tex-latex-indent-syntax-table)
15253 (tex-indent-item, tex-indent-item-re, tex-indent-basic): New vars.
15254 (tex-compilation-parse-errors): Use with-syntax-table.
15255
15256 2000-10-15 Miles Bader <miles@gnu.org>
15257
15258 * font-lock.el (font-lock-comment-face): Change dark-background,
15259 color, non-tty, default to `chocolate1'.
15260
15261 2000-10-13 John Wiegley <johnw@gnu.org>
15262
15263 * eshell/esh-util.el (require): Added a missing `require' form,
15264 needed when compiling (for an ange-ftp macro definition).
15265
15266 2000-10-13 Dave Love <fx@gnu.org>
15267
15268 * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch.
15269
15270 2000-10-13 Gerd Moellmann <gerd@gnu.org>
15271
15272 * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc fix.
15273
15274 * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace
15275 transparent -colors 8).
15276
15277 2000-10-13 Stephen Gildea <gildea@stop.mail-abuse.org>
15278
15279 * time-stamp.el (time-stamp): Fixed bug in new multi-line code
15280 that breaks with old list format timestamps.
15281 (time-stamp-warn-inactive, time-stamp-old-format-warn)
15282 (time-stamp-count, time-stamp-conversion-warn): Improved doc strings.
15283
15284 2000-10-13 John Wiegley <johnw@gnu.org>
15285
15286 * align.el, pcomplete.el, calendar/timeclock.el,
15287 eshell/esh-module.el, eshell/eshell.el: Removed URL reference.
15288
15289 * calendar/timeclock.el (timeclock-find-discrep): A fix to some
15290 faulty math, where holiday hours were being computing as seconds.
15291
15292 2000-10-13 John Wiegley <johnw@gnu.org>
15293
15294 * desktop.el (desktop-buffer-modes-to-save): Added a global for
15295 specifying what "other" kinds of buffers should be saved.
15296 This used to be hard-coded.
15297 (desktop-buffer-misc-functions): A global for specifying how
15298 auxiliary data should be determined for special buffer types.
15299 (desktop-save-buffer-p): Use `desktop-buffer-modes-to-save',
15300 instead of hard-coding the special buffer types.
15301 (desktop-save): Run `desktop-buffer-misc-functions' to gather
15302 auxiliary data, instead of hard-coding for Info buffers and dired.
15303 (desktop-buffer-info-misc-data): Aux function for determining Info
15304 buffer auxiliary info.
15305 (desktop-buffer-dired-misc-data): Likewise, but for dired buffers.
15306 (desktop-buffer-info): Changed this function to use the info
15307 gathered above.
15308 (desktop-create-buffer): Be a little more careful about what
15309 `minor-mode' means before calling it. This is important for some
15310 buffer types.
15311
15312 2000-10-13 John Wiegley <johnw@gnu.org>
15313
15314 * eshell/esh-util.el: Added a global form which declares an
15315 autoload for `parse-time-string', if that function is not already
15316 defined, and if parse-time.el is available on the user's system.
15317
15318 * eshell/em-ls.el (eshell-ls-applicable): Extended this function
15319 to be aware of ange-ftp user info.
15320 (eshell-do-ls): Bind `ange-cache'. Also, use `eshell-file-attributes'.
15321 (eshell-ls-annotate): Use `eshell-file-attributes'.
15322 (eshell-ls-file): Made the user-id printing code a bit smarter.
15323
15324 * eshell/esh-util.el (eshell-ange-ls-uids): Added variable, to
15325 allow identification of alias user ids in remote directories.
15326 It's manual, but there's no other way to know when the current user
15327 on the local machine, is also the owning user on the remote machine.
15328 (fboundp): Bind `ange-cache'.
15329 (eshell-directory-files-and-attributes): Re-organized the logic a
15330 bit to use `eshell-file-attributes' instead of `file-attributes'.
15331 The former is more sensitive to directories that are read via FTP,
15332 and knows how to use ange-ftp to determine full attribute
15333 information, instead of just the name and last modtime.
15334 (eshell-current-ange-uids): Return the current user id when in a
15335 remote directory.
15336 (eshell-parse-ange-ls): Parse a full directory listing that has
15337 been returned by ange-ftp.
15338 (eshell-file-attributes): This beefed up version of
15339 `file-attributes' is only special if the user is currently in a
15340 remote directory, in which case it does a lot of work to find out
15341 what the real attributes of a file are, as they appear on the
15342 remote machine. This makes usage of remote directories (i.e.,
15343 ange-ftp pathnames) much more useful. You can now use Eshell as a
15344 full-fledged FTP client, with much more manipulation ability than
15345 most other clients.
15346
15347 * eshell/em-unix.el (eshell-du-prefer-over-ange): Added a new
15348 variable, which means that Eshell's du should always be preferred
15349 in remote directories.
15350 (eshell-shuffle-files): Use `eshell-file-attributes', rather than
15351 just `file-attributes'.
15352 (eshell-mvcp-template): Bind `ange-cache', to improve performance
15353 when reading remote directories. This is an Eshell-specific
15354 variable (not part of ange-ftp).
15355 (eshell/ln): Bind `ange-cache'.
15356 (eshell/du): Added some extra logic for determining when to use
15357 Eshell's du (which is slow), and when to use the external version
15358 (which may or may not exist).
15359
15360 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
15361 Call `eshell-interactive-process', rather than using
15362 `get-buffer-process', since backgrounded processes don't count in
15363 the context of this function's logic.
15364
15365 * eshell/esh-arg.el (eshell-parse-double-quote): Moved a call to
15366 `forward-char', so that null strings are parsed correctly.
15367
15368 2000-09-13 John Wiegley <johnw@gnu.org>
15369
15370 * eshell/em-pred.el (eshell-pred-file-type)
15371 (eshell-pred-file-links, eshell-pred-file-size):
15372 Use `eshell-file-attributes'. This is more correct over ange-ftp.
15373
15374 * eshell/em-glob.el (eshell-extended-glob): Bind `ange-cache', so
15375 that remote file globbing is more efficient.
15376
15377 * eshell/em-ls.el (eshell-ls-dir): Use `expand-file-name' when
15378 gathering the files and attributes within a directory.
15379
15380 * eshell/em-unix.el (eshell/cat): If any of the files passed on
15381 the command line is a special file (not a regular file, directory
15382 or symlink), always attempt to call the external version of cat.
15383
15384 2000-09-13 John Wiegley <johnw@gnu.org>
15385
15386 * eshell/esh-mode.el (eshell-find-tag): Corrections to the
15387 Eshell-friendly version of find-tag.
15388
15389 2000-10-13 Miles Bader <miles@lsi.nec.co.jp>
15390
15391 * image-file.el (image-file-name-extensions)
15392 (image-file-name-regexps): Add autoload cookies.
15393
15394 2000-10-13 Kenichi Handa <handa@etl.go.jp>
15395
15396 * international/mule-cmds.el (select-safe-coding-system): If FROM
15397 is string, show it in *Warning* buffer.
15398
15399 2000-10-13 Eli Zaretskii <eliz@is.elta.co.il>
15400
15401 * startup.el (normal-top-level): Use display-popup-menus-p instead
15402 of window-system.
15403 (command-line): Use display-graphic-p instead of window-system.
15404 (command-line-1): Use display-popup-menus-p and display-mouse-p
15405 instead of window-system.
15406
15407 2000-10-12 Sam Steingold <sds@gnu.org>
15408
15409 * tooltip.el (tooltip-use-echo-area): New user variable.
15410 (tooltip-show): Use it to choose between `x-show-tip' and `message'.
15411
15412 2000-10-12 Dave Love <fx@gnu.org>
15413
15414 * recentf.el: Maintainer's checkdoc fixes.
15415
15416 * startup.el (normal-top-level-add-subdirs-to-load-path):
15417 Use character class, not ASCII when matching file names.
15418 (fancy-splash-head): Add trailing slash to URL.
15419 (command-line): Don't require XPM support for toolbar.
15420
15421 * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix.
15422 (cperl-invalid-face): Revert last change.
15423 (cperl-init-faces): Quote cperl-invalid-face.
15424
15425 2000-10-12 Kenichi Handa <handa@etl.go.jp>
15426
15427 * startup.el (fancy-splash-text): Remove superfluous quote.
15428
15429 2000-10-12 Gerd Moellmann <gerd@gnu.org>
15430
15431 * startup.el (fancy-splash-screens): Don't add a pre-command hook.
15432 (fancy-splash-pre-command, fancy-splash-pending-command): Removed.
15433 (command-line-1): Don't use fancy-splash-pending-command.
15434 (fancy-splash-screens-1): Goto point-min after inserting text.
15435
15436 * calendar/diary-lib.el (diary-cyclic): Doc fix from Ed Reingold.
15437
15438 * progmodes/scheme.el (scheme-mode-map): Use lisp-mode-shared-map
15439 instead of shared-lisp-mode-map.
15440
15441 2000-10-12 Miles Bader <miles@lsi.nec.co.jp>
15442
15443 * faces.el (header-line): Change tty-variant to use underlining.
15444
15445 * isearch.el (isearch-set-lazy-highlight-faces-at): New function.
15446 (isearch-highlight): Restore lazy-isearch face properties at old
15447 position, and suppress them at new position.
15448 (isearch-dehighlight): Restore lazy-isearch face properties.
15449 (isearch-lazy-highlight-update): Add lazy-isearch overlays even
15450 over the real isearch overlay, but in that case, don't give it a
15451 face property. Use `push'.
15452
15453 2000-10-12 Kenichi Handa <handa@etl.go.jp>
15454
15455 * man.el (Man-getpage-in-background): Fix previous change.
15456 Decode the process output only when we are in multibyte mode.
15457
15458 2000-10-11 Dave Love <fx@gnu.org>
15459
15460 * info.el (Info-mode-menu): Fix some help.
15461 (info-tool-bar-map): Add entry for Info-last.
15462
15463 * toolbar/cancel.xpm, toolbar/jump_to.xpm, toolbar/right_arrow.xpm:
15464 * toolbar/close.xpm, toolbar/left_arrow.xpm, toolbar/save.xpm:
15465 * toolbar/copy.xpm, toolbar/mail.xpm, toolbar/saveas.xpm:
15466 * toolbar/cut.xpm, toolbar/mail_compose.xpm:
15467 * toolbar/search-replace.xpm, toolbar/exit.xpm:
15468 * toolbar/mail_send.xpm, toolbar/search.xpm, toolbar/fld_open.xpm:
15469 * toolbar/new.xpm, toolbar/spell.xpm, toolbar/help.xpm:
15470 * toolbar/open.xpm, toolbar/undo.xpm, toolbar/home.xpm:
15471 * toolbar/paste.xpm, toolbar/up_arrow.xpm, toolbar/index.xpm:
15472 * toolbar/preferences.xpm, toolbar/info.xpm, toolbar/print.xpm:
15473 Reduce colour requirements to 25 overall. (Probably wants
15474 revisiting from the originals to reduce further.)
15475
15476 2000-10-11 Eli Zaretskii <eliz@is.elta.co.il>
15477
15478 * hexl.el (hexlify-buffer): Bind coding-system-for-write to
15479 buffer-file-coding-system, instead of raw-text.
15480 (dehexlify-buffer): Bind coding-system-for-read to
15481 buffer-file-coding-system, instead of raw-text.
15482
15483 2000-10-11 Sam Steingold <sds@gnu.org>
15484
15485 * progmodes/cperl-mode.el (cperl-invalid-face): Double-quote
15486 `underline' - fixes the bug introduced on 2000-09-21.
15487
15488 2000-10-11 Dave Love <fx@gnu.org>
15489
15490 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
15491 Avoid compiler warnings.
15492 (scheme-mode): Doc fix.
15493 (scheme-font-lock-keywords-1): Match `define-syntax'.
15494
15495 2000-10-11 Miles Bader <miles@lsi.nec.co.jp>
15496
15497 * faces.el (frame-set-background-mode): Pay attention to saved
15498 face specs as well as default ones. Only do anything if the
15499 bg-mode or display-type has actually changed. Use `dolist'.
15500 (region): Make dark-background `region' face less in-your-face.
15501
15502 2000-10-10 Sam Steingold <sds@gnu.org>
15503
15504 * chistory.el, ielm.el, ledit.el:
15505 * progmodes/inf-lisp.el, progmodes/scheme.el:
15506 Use `lisp-mode-shared-map' instead of `shared-lisp-mode-map'.
15507
15508 2000-10-10 Stefan Monnier <monnier@cs.yale.edu>
15509
15510 * textmodes/texinfo.el: Update copyright and fix typo.
15511
15512 * desktop.el (desktop-modes-not-to-save): New var.
15513 (desktop-save-buffer-p): Use it.
15514 Also, obey desktop-buffers-not-to-save even for non-file buffers.
15515 (desktop-buffer-file): Use pop-to-buffer if switch-to-buffer fails.
15516
15517 2000-10-10 Dave Love <fx@gnu.org>
15518
15519 * toolbar/tool-bar.el (tool-bar-add-item)
15520 (tool-bar-add-item-from-menu): Don't favour XPM icons on mono display.
15521
15522 * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm:
15523 * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm:
15524 * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm:
15525 * toolbar/index.pbm, toolbar/info.pbm, toolbar/jump_to.pbm:
15526 * toolbar/left_arrow.pbm, toolbar/mail.pbm, toolbar/mail_compose.pbm:
15527 * toolbar/mail_send.pbm, toolbar/new.pbm, toolbar/open.pbm:
15528 * toolbar/paste.pbm, toolbar/preferences.pbm, toolbar/print.pbm:
15529 * toolbar/right_arrow.pbm, toolbar/save.pbm, toolbar/saveas.pbm:
15530 * toolbar/search-replace.pbm, toolbar/search.pbm, toolbar/spell.pbm:
15531 * toolbar/undo.pbm, toolbar/up_arrow.pbm: New files straight from
15532 the .xpms; probably need retouching.
15533
15534 2000-10-10 Miles Bader <miles@lsi.nec.co.jp>
15535
15536 * subr.el (add-to-list): Add optional argument APPEND.
15537 * battery.el (display-battery): Use `add-to-list'.
15538
15539 2000-10-09 Thien-Thi Nguyen <ttn@gnu.org>
15540
15541 * play/zone.el (zone-timer, zone-wc-tbl): Rework these vars as symbol
15542 properties.
15543 (zone, zone-when-idle, zone-leave-me-alone)
15544 (zone-pgm-whack-chars): Use new symbol properties.
15545
15546 * battery.el (display-battery): Doc spelling fix.
15547
15548 * vc.el (with-vc-file, edit-vc-file): Specify `indent-function'
15549 property.
15550
15551 2000-10-09 Dave Love <fx@gnu.org>
15552
15553 * toolbar/tool-bar.el (tool-bar-mode): Check whether tool-bar-map
15554 has been initialized before calling tool-bar-setup.
15555 (tool-bar-add-item-from-menu): Add autoload cookie.
15556
15557 2000-10-09 Eli Zaretskii <eliz@is.elta.co.il>
15558
15559 * menu-bar.el (send-mail-item-name): New function.
15560 (menu-bar-tools-menu) <compose-mail>: Use it to display the value
15561 of mail-user-agent in the menu. Don't display the "Send Mail"
15562 item if mail-user-agent is nil or its value is ignore.
15563 (menu-bar-tools-menu) <rmail>: Don't display the "Read Mail" item
15564 if read-mail-command is nil or its value is ignore.
15565
15566 * mouse.el ([header-line mouse-1]): Bind to mouse-select-window.
15567
15568 2000-10-09 Miles Bader <miles@gnu.org>
15569
15570 * toolbar/up_arrow.xpm: Flip to put highlight in correct place.
15571 Correct image size.
15572 * toolbar/left_arrow.xpm: Correct image size.
15573
15574 * jka-compr.el: Don't call `jka-compr-install' when loading (it
15575 will be done by the definition of `auto-compression-mode' if
15576 necessary. Move code to uninstall existing file-name handler
15577 before definition of `auto-compression-mode'.
15578
15579 * image-file.el (auto-image-file-mode): Move to the end of the
15580 file, because `define-minor-mode' actually calls the mode-function
15581 if the associated variable is non-nil, which requires that all
15582 needed functions be already defined.
15583
15584 * mouse.el (popup-menu): Balance parens.
15585
15586 2000-10-08 Stefan Monnier <monnier@cs.yale.edu>
15587
15588 * mouse.el (popup-menu): Move the command call outside the loop
15589 so that popup-menu returns whatever the command returns.
15590
15591 * progmodes/etags.el: Docstring fixes. Maintainer line updated.
15592 (initialize-new-tags-table): Use run-hook-with-args-until-success.
15593 (find-tag): Use pop-to-buffer if switch-to-buffer failed.
15594 (tags-table-format-functions): Renamed from tags-table-format-hooks.
15595
15596 * vc.el (vc-version-diff): diff-switches can be a list.
15597 Use relative filenames for prettier output.
15598
15599 * pcvs.el (cvs-append-to-ignore, cvs-vc-command-advice)
15600 (vc-post-command-functions): Remove old-VC compatibility code.
15601
15602 * newcomment.el (comment-indent-default): Autoload.
15603
15604 * font-lock.el (font-lock-defaults): Make buffer-local.
15605 (font-lock-turn-on-thing-lock): Use jit-lock-refontify.
15606 (font-lock-choose-keywords):
15607 Ignore LEVEL unless KEYWORDS is a list of syms.
15608 (c-keywords, c++-keywords, objc-keywords, java-keywords):
15609 Don't wrap regexp-opt things in \(...\) unnecessarily.
15610
15611 * jit-lock.el: Don't require font-lock any more.
15612 (jit-lock-functions): Make buffer-local.
15613 (jit-lock-saved-fontify-buffer-function): Remove.
15614 (jit-lock-mode): Remove autoload cookie.
15615 Remove font-lock specific code.
15616 (jit-lock-unregister): Don't bother handling complex hooks any more.
15617 (jit-lock-refontify): New function.
15618 (jit-lock-fontify-buffer): Use it.
15619 (jit-lock-function-1): Replaced by jit-lock-fontify-now.
15620 (jit-lock-fontify-now): Renamed from jit-lock-function-1.
15621 Add optional args START and END.
15622 Never call font-lock-fontify-region directly.
15623 (jit-lock-function, jit-lock-stealth-fontify): Use it.
15624
15625 * emacs-lisp/regexp-opt.el (regexp-opt): Add \<...\> if PAREN=`words'.
15626
15627 2000-10-08 Dave Love <fx@gnu.org>
15628
15629 * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
15630
15631 * progmodes/icon.el (icon-mode-map): Add name to menu-bar keymap.
15632
15633 * play/studly.el (studlify-region, studlify-word): Add autoload
15634 cookie.
15635
15636 * play/morse.el (morse-region, unmorse-region): Add autoload
15637 cookie.
15638
15639 * play/spook.el (spook-phrases-file): Use expand-file-name, not
15640 concat.
15641
15642 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Don't
15643 insist on symbols starting with word syntax.
15644 (lisp-mode-shared-map): Renamed from shared-lisp-mode-map.
15645 (eval-defun-1): Doc fix.
15646 (indent-sexp): Use nconc to build up indent-stack.
15647
15648 * mail/sendmail.el: Byte-compile-dynamic since it gets loaded by
15649 Gnus with little use.
15650 (mail-setup-hook): Add mail-abbrevs-setup to options.
15651
15652 * recentf.el: Doc fixes.
15653
15654 * vcursor.el (vcursor-cs-binding): Remove compatibility code.
15655 Clean up remainder.
15656
15657 * timezone.el (timezone-parse-date): Doc fix. Fix regexps for (5)
15658 without timezone and (8) with timezone to enforce some whitespace.
15659 Simplify code somewhat.
15660
15661 * options.el (list-options): Doc that you should use customize.
15662
15663 * iswitchb.el (iswitchb-mode): Add :require.
15664
15665 * info.el (Info-goto-node, Info-menu): Doc fix.
15666 (Info-mode-menu): Bind beginning-of-buffer, Info-edit
15667 (info-tool-bar-map): New variable.
15668 (Info-mode): Use it.
15669 (Info-edit-map): Define all in defvar.
15670 (speedbar-attached-frame): Avoid compiler warning.
15671
15672 * toolbar/tool-bar.el (tool-bar-map): Define it empty.
15673 (global-map): Bind [tool-bar] to a filtered map.
15674 (tool-bar-add-item): Remove MAP arg. Allow PBM icons.
15675 (tool-bar-add-item-from-menu): Use tool-bar-map, not tb-map.
15676 Allow PBM icons.
15677 (tool-bar-setup): Adjust calls of tool-bar-add-item.
15678
15679 * toolbar/index.xpm, toolbar/jump_to.xpm, toolbar/attach.xpm:
15680 * toolbar/up_arrow.xpm, toolbar/left_arrow.xpm, toolbar/home.xpm:
15681 * toolbar/right_arrow.xpm: New files. Renamed from tigert's
15682 icons, except up_arrow, which is left-arrow rotated.
15683
15684 * imenu.el (imenu-add-to-menubar): Fix last change.
15685
15686 2000-10-08 Peter Breton <pbreton@ne.mediaone.net>
15687
15688 * generic-x.el (rul-generic-mode): Remove eval-when-compile
15689 statements. Suggested by Stefan Monnier <monnier@cs.yale.edu>.
15690
15691 2000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
15692
15693 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Fix
15694 typos in doc strings.
15695
15696 * font-lock.el (font-lock-mode, global-font-lock-mode): Mention in
15697 the doc strings how to customize Font Lock faces.
15698
15699 * mouse.el (mouse-drag-mode-line-1): Fix an off-by-one error in
15700 computing growth when dragging the header line.
15701
15702 2000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
15703
15704 * simple.el (kill-line): Doc fix.
15705
15706 2000-10-08 Miles Bader <miles@gnu.org>
15707
15708 * faces.el (secondary-selection): Make foreground visible on tty.
15709
15710 * jka-compr.el (auto-compression-mode): Move to the end of the
15711 file, because `define-minor-mode' actually calls the mode-function
15712 if the associated variable is non-nil, which requires that all
15713 needed functions be already defined.
15714 (with-auto-compression-mode): Add autoload cookie.
15715
15716 2000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
15717
15718 * files.el (find-backup-file-name) [ms-dos]: If support for long
15719 file names is not available, behave as if version-control were set
15720 to never.
15721
15722 2000-10-07 Dave Love <fx@gnu.org>
15723
15724 * net/browse-url.el (browse-url-gnome-moz-arguments): New option.
15725 (browse-url-gnome-moz): New function.
15726 (browse-url-browser-function): Use it.
15727 Suggested by Colin Walters <walters@cis.ohio-state.edu>.
15728
15729 2000-10-07 Stefan Monnier <monnier@cs.yale.edu>
15730
15731 * indent.el (tab-always-indent): New var.
15732 (indent-for-tab-command): Use it.
15733
15734 * files.el (set-auto-mode): Ignore unknown -*- mode -*- rather than
15735 raise an error. This way it can still default to a sane value.
15736
15737 2000-10-06 Stefan Monnier <monnier@cs.yale.edu>
15738
15739 * startup.el (fancy-splash-screens): Use local rather than global map.
15740 Don't use `update-menu-bindings' any more.
15741 Get rid of assumptions about keymap representation.
15742
15743 2000-10-06 Dave Love <fx@gnu.org>
15744
15745 * textmodes/fill.el (sentence-end-double-space)
15746 (sentence-end-without-period): Doc fix.
15747 (adaptive-fill-regexp): Purecopy.
15748 (unjustify-current-line): Use line-end-position.
15749 (fill-individual-paragraphs-prefix): Use line-beginning-position.
15750
15751 * net/eudc-vars.el (eudc): Add :version, :link.
15752
15753 * international/mule-conf.el (file-coding-system-alist): Use \', not $.
15754
15755 * emacs-lisp/find-func.el (find-function-regexp): Remove spurion.
15756 Fix for define-minor-mode.
15757 (function-at-point): Alias to function-called-at-point.
15758
15759 * custom.el (custom-declare-variable, custom-set-variables): Use mapc.
15760
15761 * simple.el (backward-word): Doc fix.
15762
15763 * image-file.el (image-file-name-regexp): image-file-regexps ->
15764 image-file-name-regexps.
15765 (image-file-name-extensions): Add pbm.
15766
15767 2000-10-06 Stefan Monnier <monnier@cs.yale.edu>
15768
15769 * smerge-mode.el (smerge-diff): Setup the buffer's default-directory
15770 and add filename to the names so that diff-mode can jump to source.
15771
15772 * font-lock.el (font-lock-defaults-alist): Remove the TeX entries.
15773 (tex-font-lock-keywords, tex-font-lock-keywords-2)
15774 (tex-font-lock-keywords-1): Remove.
15775 (font-lock-turn-on-thing-lock): Use jit-lock-register.
15776 (font-lock-turn-off-thing-lock): Use jit-lock-unregister.
15777 (font-lock-default-fontify-region):
15778 Expand beg..end correctly when just following a multiline region.
15779 (font-lock-fontify-anchored-keywords):
15780 Include the anchor text as part of the multiline.
15781
15782 2000-10-06 Gerd Moellmann <gerd@gnu.org>
15783
15784 * loadup.el (toplevel): Load `loaddefs' before `help' because the
15785 latter needs the autoloaded define-minor-mode macro during the
15786 bootstrap.
15787
15788 * startup.el (command-line): For now, activate tool-bar-mode only
15789 if XPM images are supported.
15790
15791 * mouse.el (mouse-drag-header-line): Don't allow resizing a
15792 window by dragging a header-line at the top of the frame; that's
15793 confusing because the header-line doesn't move.
15794 (mouse-drag-mode-line-1): Use event-* and posn-* functions instead
15795 of treating the event as a list. Some cleanup.
15796
15797 2000-10-06 Miles Bader <miles@gnu.org>
15798
15799 * simple.el (display-message-or-buffer): New function.
15800 (shell-command-on-region): Use `display-message-or-buffer'.
15801
15802 * emacs-lisp/easy-mmode.el (define-derived-mode): Tweak generated
15803 docstring parts.
15804
15805 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
15806 (smbclient-prompt-regexp): Add usage note to doc string.
15807 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Removed.
15808 (ftp-mode, smbclient-mode): Don't set `font-lock-defaults'.
15809 Use add-hook for adding the comint filter function, and only do so
15810 if it's not already in the global hook list.
15811 (ftp-mode, smbclient-mode, nslookup-mode): Remove redundant calls
15812 to `make-local-variable'.
15813 (nslookup-font-lock-keywords): Remove prompt entry.
15814 (nslookup): Don't set the process-filter.
15815 (finger): Exit the loop correctly when the regexps list runs out.
15816 (ftp, smbclient, smbclient-list-shares):
15817 Set the real major mode immediately, not after execing.
15818 Use `pop-to-buffer' instead of `switch-to-buffer-other-window'.
15819
15820 * comint.el (comint-watch-for-password-prompt): Use STRING as a prompt.
15821
15822 2000-10-05 Stefan Monnier <monnier@cs.yale.edu>
15823
15824 * progmodes/compile.el (compile-collect-regexps): Use dolist and push.
15825
15826 * which-func.el (which-func-format): Remove spurious space.
15827 (which-func-mode): Don't make it permanent-local.
15828 (which-func-ff-hook): Allow which-func-maxout to be nil.
15829 (which-func-update): Simplify a bit. Only run if which-func-mode is t.
15830 (which-func-mode): Simplify.
15831 Use post-command-idle-hook rather than post-command-hook.
15832 Go through all buffers and update their state.
15833 (which-function): Also try add-log-current-defun-function.
15834
15835 * vc.el (with-vc-properties): Use conses rather than length-2 lists.
15836 (vc-checkout, vc-finish-steal, vc-checkin, vc-revert-file):
15837 Update call to with-vc-properties accordingly.
15838 (vc-comment-search-reverse, vc-comment-search-forward): Docstring fix.
15839 (vc-revert-buffer): More careful about window selection and deletion.
15840 (vc-switch-backend): Slight reorg to avoid calling `registered' twice.
15841
15842 * pcvs.el (cvs-ediff-exit-hook): Expect delete-window to fail.
15843 (cvs-retrieve-revision): Reuse a pre-existing buffer.
15844 (cvs-dired-action): Change the default to quickdir.
15845
15846 * newcomment.el (comment-indent): Delegate to indent-according-to-mode
15847 if comment-indent-function returns nil.
15848 (comment-indent-default): New function.
15849 (comment-indent-function): Use it and document the new semantics.
15850
15851 * image-file.el: Docstring fixes.
15852
15853 * help.el (help-xref-on-pp): Use match-string.
15854 (describe-variable): New arg BUFFER.
15855 Store the current buffer in the help-xref-stack.
15856 (temp-buffer-resize-mode): Use define-minor-mode.
15857
15858 * jit-lock.el (jit-lock-mode): Use jit-lock-defer-contextually
15859 consistently with its docstring.
15860 Set jit-lock-first-unfontify-pos in an idempotent way.
15861 (jit-lock-register): Autoload and add arg CONTEXTUAL.
15862
15863 2000-10-05 Alex Schroeder <alex@gnu.org>
15864
15865 * sql.el (sql-mysql-options): New variable.
15866 (sql-mysql): Use it.
15867
15868 2000-10-05 Miles Bader <miles@lsi.nec.co.jp>
15869
15870 * image.el (image): New group.
15871
15872 * smerge-mode.el (smerge-mine-face, smerge-other-face)
15873 (smerge-base-face, smerge-markers-face): Add dark-background variants.
15874
15875 2000-10-04 Peter Breton <pbreton@ne.mediaone.net>
15876
15877 * net/net-utils.el (nslookup-font-lock-keywords)
15878 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
15879 Ignore the value of wqindow-system; always define keywords
15880
15881 2000-10-05 Kenichi Handa <handa@etl.go.jp>
15882
15883 * startup.el (fancy-splash-screens): Remove the code for
15884 debugging; `(trace-to-stderr "EXITTT\n")'.
15885
15886 2000-10-05 Miles Bader <miles@gnu.org>
15887
15888 * diff-mode.el (diff-goto-source): Update call to
15889 `diff-hunk-status-msg' to reflect new REV variable.
15890
15891 2000-10-04 Stefan Monnier <monnier@cs.yale.edu>
15892
15893 * progmodes/icon.el (icon-mode):
15894 Don't gratuitously override the default for comment-column.
15895
15896 * vc-hooks.el (vc-mode-line): Fix interactive spec.
15897
15898 * jit-lock.el (with-buffer-unmodified): Use unwind-protect.
15899 (jit-lock-mode): Make sure font-lock-keywords-only is bound before use.
15900 (jit-lock-functions): New var.
15901 (jit-lock-function-1): Use it if non-nil.
15902 Don't switch the syntax-table. Don't set parse-sexp-lookup-properties.
15903 Set the `fontified' property before doing the fontification to avoid
15904 repeatedly going through the same error.
15905 Don't turn errors into messages.
15906 (jit-lock-register, jit-lock-unregister): New functions.
15907
15908 * dired.el (dired-mark-pop-up): Turn comment into docstring.
15909 Use with-current-buffer.
15910
15911 * dired-aux.el (dired-do-create-files, dired-kill-tree):
15912 Turn comment into docstring.
15913
15914 * apropos.el (apropos-mode): Use define-derived-mode.
15915
15916 2000-10-04 Gerd Moellmann <gerd@gnu.org>
15917
15918 * startup.el (fancy-splash-pending-command): New variable.
15919 (fancy-splash-pre-command): New function.
15920 (fancy-splash-screens): Rewritten.
15921 (command-line-1): If fancy-splash-pending-command is set, call it
15922 interactively.
15923
15924 2000-10-04 Dave Love <fx@gnu.org>
15925
15926 * toolbar/tool-bar.el (tool-bar-setup): New function.
15927 (tool-bar-mode): Use it.
15928
15929 * subr.el (substitute-key-definition): Doc fix.
15930 (play-sound-file): New command.
15931
15932 2000-10-04 Andre Spiegel <spiegel@gnu.org>
15933
15934 * vc-hooks.el (vc-before-save, vc-default-make-version-backups,
15935 vc-version-backup-file-name): New functions.
15936
15937 * files.el (basic-save-buffer): Call vc-before-save before saving.
15938
15939 * vc-cvs.el (vc-cvs-make-version-backups): Return t if
15940 vc-cvs-stay-local-p.
15941
15942 * vc.el (vc-revert-buffer): Handle empty diff properly.
15943 (vc-version-backup-file): New function.
15944 (vc-checkout): Create a version backup if necessary.
15945 (vc-checkin): If a version backup file exists, delete it.
15946 (vc-version-diff): Diff locally using version backups, if available.
15947 (vc-revert-file): If there's a version backup, revert locally.
15948 (vc-transfer-file): Use version backup for base version, if
15949 available. If not, ask for confirmation whether to get it from the
15950 server. Update mode line before check-in.
15951
15952 2000-10-04 Dave Love <fx@gnu.org>
15953
15954 * toolbar/tool-bar.el (tool-bar-setup): New function.
15955 (tool-bar-mode): Use it.
15956
15957 2000-10-04 Peter Breton <pbreton@ne.mediaone.net>
15958
15959 * net/net-utils.el (nslookup-font-lock-keywords)
15960 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
15961 Only set if window-system is non-nil
15962 (net-utils-run-program): Returns buffer.
15963 (network-connection-reconnect): Added this function.
15964
15965 * generic.el:
15966 Incorporates extensive cleanup and docfixes by
15967 Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu).
15968 Uses cl compile-time macros.
15969 (generic-mode-name, generic-comment-list)
15970 (generic-keywords-list, generic-font-lock-expressions)
15971 (generic-mode-function-list, generic-mode-syntax-table):
15972 Removed variables.
15973 (generic-mode-alist): Renamed to generic-mode-list.
15974 (generic-find-file-regexp): Default changed to "^#".
15975 (generic-read-type): Uses completing read on generic-mode-list.
15976 (generic-mode-sanity-check): removed this function.
15977 (generic-add-to-auto-mode): Removed this function
15978 (generic-mode-internal): Bind mode-specific definitions
15979 into function instead of putting them in alist.
15980 (generic-mode-set-comments): Reworked extensively.
15981 (generic-mode-find-file-hook): Simplified regexp searching
15982 (generic-make-keywords-list): Omit extra pair of parens
15983
15984 * find-lisp.el (find-lisp-find-files-internal):
15985 Make sure directory name ends with "/".
15986
15987 * generic-x.el (apache-conf-generic-mode):
15988 Regexp now allows leading whitespace.
15989 (rc-generic-mode): Added eval-when-compile
15990 around generic-make-keywords-list.
15991 Deleted duplicate regexp
15992 (rul-generic-mode): Added eval-when-compile
15993 around generic-make-keywords-list.
15994 (etc-fstab-generic-mode): New generic mode.
15995 (rul-generic-mode): Removed one eval-when-compile
15996 which caused a max-specpdl-size exceeded error.
15997
15998 2000-10-04 Miles Bader <miles@gnu.org>
15999
16000 * simple.el (minibuffer-temporary-goal-position): New variable.
16001 (next-history-element): Try to keep the position of point in the
16002 input string constant.
16003
16004 * dired-aux.el (dired-mark-read-file-name): Add optional arg DEFAULT.
16005 (dired-do-create-files): If there's only one file, pass it in as
16006 the DEFAULT arg to dired-mark-read-file-name.
16007
16008 2000-10-03 Stefan Monnier <monnier@cs.yale.edu>
16009
16010 * diff-mode.el (diff-font-lock-keywords): Minor regex fix.
16011 (diff-goto-source): Be smarter when choosing REVERSE or not.
16012
16013 * textmodes/texinfo.el (texinfo-heading-face): Forgot the var def.
16014 (texinfo-mode-menu): Add an explicit shortcut for update all.
16015
16016 2000-10-03 Andre Spiegel <spiegel@gnu.org>
16017
16018 * vc.el (vc-transfer-file, vc-default-receive-file): Rewritten to
16019 factorize backend-specific code cleanly (this was essentially
16020 conceived by Stefan Monnier).
16021 (vc-unregister): Function removed.
16022 (vc-revert-file): New function.
16023 (vc-revert-buffer): Delegate some of the work to it.
16024
16025 * vc-rcs.el (vc-rcs-fetch-master-state): Parse and remember
16026 default branch unconditionally.
16027 (vc-rcs-set-default-branch): New function.
16028 (vc-rcs-cancel-version, vc-rcs-checkin, vc-rcs-checkout): Use it.
16029 (vc-rcs-checkin): If an appropriate default branch has been set,
16030 force creation of that branch.
16031 (vc-rcs-receive-file): Rewritten to contain only backend-specific
16032 code (as suggested by Stefan Monnier).
16033
16034 2000-10-02 Gerd Moellmann <gerd@gnu.org>
16035
16036 * isearch.el (isearch-lazy-highlight-update): Don't put a lazy
16037 highlighting overlay with a different face over the overlay
16038 isearch uses to highlight the current match because that can lead
16039 to bad face combinations.
16040
16041 * loadup.el (toplevel): Load faces before isearch.
16042
16043 * isearch.el (isearch-faces): New custom group.
16044 (isearch): New defface; was already tested for in the code.
16045 (isearch-lazy-highlight-face): Changed to defface from defcustom.
16046 (isearch-highlight): Always use face `isearch'.
16047
16048 2000-10-02 Dave Love <fx@gnu.org>
16049
16050 * emacs-lisp/byte-opt.el (byte-optimize-lapcode): Don't bind
16051 unused vars. Treat byte-constant2 like byte-constant. Fix bogus
16052 comparison of opcode with operand.
16053
16054 2000-10-03 Miles Bader <miles@gnu.org>
16055
16056 * play/yow.el (yow): Don't display multi-line quotations in a *Help*
16057 buffer, since the echo area will now grow to accommodate them.
16058
16059 2000-10-02 Andre Spiegel <spiegel@gnu.org>
16060
16061 * vc-hooks.el (vc-registered): If FILE used to be registered under
16062 a certain backend, try that one first.
16063
16064 * vc.el (vc-responsible-backend): Undo the previous change in the
16065 argument list. Handle multiple backends correctly.
16066 (vc-find-new-backend): Function removed.
16067 (vc-register): Use vc-responsible-backend, as before.
16068 (vc-next-action-on-file): Do use vc-registered, not vc-backend.
16069
16070 2000-10-02 Gerd Moellmann <gerd@gnu.org>
16071
16072 * startup.el (fancy-splash-head): Change message below the
16073 logo.
16074
16075 2000-10-02 Miles Bader <miles@lsi.nec.co.jp>
16076
16077 * diff-mode.el (diff-goto-source): Emit a status message.
16078 (diff-test-hunk, diff-apply-hunk): Remove unneeded `let'.
16079 (diff-test-hunk): Fix doc string.
16080 (diff-apply-hunk): Only advance if `diff-advance-after-apply-hunk'.
16081 (diff-advance-after-apply-hunk): New variable.
16082 (diff-apply-hunk): Don't return a value.
16083
16084 2000-10-01 Stefan Monnier <monnier@cs.yale.edu>
16085
16086 * vc.el (vc-editable-p): Minor optimization.
16087 (edit-vc-file, vc-next-action-on-file): Don't use find-file.
16088 (vc-find-new-backend): New function split from vc-responsible-backend.
16089 (vc-register): Use it.
16090 (vc-responsible-backend): Remove REGISTER arg and add BACKENDS arg.
16091 (vc-unregister): Drop BACKEND arg (it doesn't work anyway).
16092 (vc-default-unregister, vc-revert-buffer): Docstring fix.
16093 (vc-clear-headers): Don't use find-file.
16094 (vc-revert-buffer): Use `and' again (must have been a braino).
16095 (vc-switch-backend): Only prompt if requested.
16096 Short circuit if nothing is to be done.
16097 Don't use vc-resynch-buffer which could lose unsaved editing.
16098 (vc-default-receive-file): Update call to vc-unregister.
16099 (with-vc-file, vc-next-action-on-file):
16100 Use vc-backend rather than vc-registered.
16101 (vc-next-action-on-file): Use intern-soft.
16102 Deal with read-only *vc-diff* buffer.
16103 (vc-transfer-file): Docstring fix.
16104
16105 * vc-rcs.el (vc-rcs-unregister): Keep a backup of the master file.
16106 (vc-rcs-receive-file): Avoid with-vc-properties.
16107 Update call to vc-unregister.
16108 Use constant `RCS' rather than (dynamically bound) var `backend'.
16109
16110 2000-10-01 Andre Spiegel <spiegel@gnu.org>
16111
16112 * vc.el (vc-next-action-on-file): Update mode line only if file
16113 is visited.
16114 (vc-start-entry): New argument initial-contents. Don't visit the file
16115 if it isn't already visited. Brought documentation up-to-date.
16116 (vc-next-action, vc-register): Updated calls to vc-start-entry.
16117 (vc-checkin): New optional arg initial-contents, which is passed to
16118 vc-start-entry.
16119 (vc-finish-logentry): Make sure to bury log buffer only if there
16120 really is one. Call `vc-resynch-buffer' on log-file, not
16121 buffer-file-name.
16122 (vc-default-comment-history, vc-default-wash-log): New functions.
16123 (vc-index-of): Removed.
16124 (vc-transfer-file): Make do without the above.
16125 (vc-default-receive-file): Call comment-history unconditionally. Pass
16126 the resulting string to vc-checkin, instead of inserting it into the
16127 comment ring.
16128
16129 * vc-rcs.el (vc-rcs-receive-file): Call comment-history
16130 unconditionally. Use the comments as initial contents of the log
16131 entry buffer. Document the trick to force branch creation with no
16132 changes.
16133
16134 2000-10-01 Miles Bader <miles@gnu.org>
16135
16136 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Call
16137 `recenter' with an arg to prevent redrawing the display.
16138
16139 2000-09-30 Stefan Monnier <monnier@cs.yale.edu>
16140
16141 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Prettier.
16142
16143 * emacs-lisp/lisp.el (lisp-complete-symbol): Only jump 2 not 3 levels.
16144
16145 * progmodes/c-mode.el (c-mode):
16146 Don't gratuitously override the default for comment-column.
16147
16148 * textmodes/tex-mode.el (latex-metasection-list): New var.
16149 (latex-imenu-create-index): Use it.
16150 Move the regexp construction outside loops (and use push).
16151 (tex-font-lock-keywords-1, tex-font-lock-keywords-2)
16152 (tex-font-lock-keywords): Moved from font-lock.el.
16153 (tex-comment-indent): Remove.
16154 (tex-common-initialization): Don't set comment-indent-function.
16155 (latex-block-default): New var.
16156 (tex-latex-block): Use it to provide a default choice.
16157 Add any unknown choice to latex-block-names.
16158 Insert [...] after {...}.
16159 (tex-last-unended-begin): Simplify regexp.
16160 (tex-goto-last-unclosed-latex-block, latex-backward-sexp-1)
16161 (latex-forward-sexp-1, latex-forward-sexp): New functions.
16162 (latex-mode): Set forward-sexp-function.
16163
16164 * textmodes/texinfo.el (texinfo-font-lock-syntactic-keywords):
16165 Add regexp for @ignore ... @end ignore.
16166 (texinfo-heading-face): New face.
16167 (texinfo-font-lock-keywords): Use it.
16168 (texinfo-mode-menu): New menu.
16169 (texinfo-inside-macro-p, texinfo-inside-env-p, texinfo-insert-quote):
16170 New functions.
16171 (texinfo-mode-map): Bind " to insert-quote and M-RET to insert-@item.
16172 (texinfo-section-types-regexp, texinfo-section-level-regexp)
16173 (texinfo-subsection-level-regexp, texinfo-subsubsection-level-regexp):
16174 Remove declaration.
16175 (texinfo-show-structure): Use outline-regexp and texinfo-section-list.
16176
16177 * delsel.el (delete-selection-mode): Use define-minor-mode.
16178
16179 * emacs-lisp/regexp-opt.el (regexp-opt-group): Put more parenthesis.
16180
16181 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
16182
16183 * dired.el (dired-map-over-marks): Use modern backquotes and docstring.
16184
16185 2000-09-30 Gerd Moellmann <gerd@gnu.org>
16186
16187 * replace.el (keep-lines-read-args): New function.
16188 (keep-lines, flush-lines, how-many): Use keep-lines-read-args to
16189 read arguments interactively. Add parameters RSTART and REND.
16190 Operate on the active region in Transient Mark mode.
16191
16192 * files.el (auto-mode-alist): Add pattern for `#*mail*...'.
16193
16194 * emacs-lisp/authors.el (authors-obsolete-file-p): New function.
16195 (authors-obsolete-files-regexps): New variable.
16196 (authors-add): Don't record changes in obsolete files.
16197
16198 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
16199
16200 * autoinsert.el (auto-insert-mode): Use define-minor-mode.
16201
16202 * newcomment.el (comment-indent-function): Use 0 for ;;; and %%%.
16203 (comment-indent): Make sure there's a space between code and comment.
16204 Shift comments left to avoid going past fill-column.
16205
16206 2000-09-29 Gerd Moellmann <gerd@gnu.org>
16207
16208 * startup.el (startup-echo-area-message): New function.
16209 (display-startup-echo-area-message): Use it.
16210 (fancy-splash-screens): Rewritten to use keymaps and a timer.
16211 (fancy-splash-default-action): New function.
16212 (fancy-splash-screens-1): New function.
16213 (fancy-splash-head): Put a help-echo and a keymap under the image.
16214
16215 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
16216
16217 * diff-mode.el (diff-add-log-file-name): Remove.
16218 (diff-mode): Use add-log-buffer-file-name-function.
16219
16220 * add-log.el (find-change-log): New arg BUFFER-FILE.
16221 (add-log-file-name): Obey add-log-file-name-function.
16222 (add-log-buffer-file-name-function): New var.
16223 (add-change-log-entry): Use it.
16224
16225 2000-09-29 Miles Bader <miles@gnu.org>
16226
16227 * image-file.el (image-file-name-extensions): New variable.
16228 (image-file-name-regexps): Renamed from `image-file-regexps'.
16229 New default value is nil. Call `auto-image-file-mode'.
16230 (image-file-name-regexp): New function.
16231 (auto-image-file-mode): New minor mode.
16232 (insert-image-file): Don't make conditional on the image-file
16233 handler being enabled.
16234 (image-file-handler): Make the call here conditional instead.
16235 (set-image-file-handler-enabled, enable-image-file-handler)
16236 (disable-image-file-handler): Functions removed.
16237
16238 * emacs-lisp/authors.el (authors-print): Rephrase many-files
16239 string.
16240
16241 2000-09-29 Gerd Moellmann <gerd@gnu.org>
16242
16243 * textmodes/tex-mode.el (latex-outline-regexp): Don't use `list*';
16244 it's a function from CL.
16245 (latex-imenu-create-index): Replace eval-when-compile with progn
16246 because latex-section-alist is not bound while compiling.
16247
16248 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
16249
16250 * textmodes/outline.el (outline-minor-mode): Use define-minor-mode.
16251 (outline-mode): Use define-derived-mode.
16252
16253 * progmodes/perl-mode.el (perl-mode):
16254 * progmodes/awk-mode.el (awk-mode):
16255 * progmodes/asm-mode.el (asm-mode):
16256 Don't gratuitously override the default for comment-column.
16257
16258 * emacs-lisp/lisp.el (lisp-complete-symbol):
16259 Distinguish the let-binding case from the funcall case.
16260 (forward-sexp-function): New variable.
16261 (forward-sexp): Use it.
16262
16263 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Autoload.
16264 (easy-mmode-defmap): Remove the now useless autoload.
16265
16266 * time.el (display-time-mode): Use define-minor-mode.
16267
16268 * subr.el (add-minor-mode): Don't eval NAME.
16269 Don't depend on the presence of TOGGLE-FUN for any special behavior.
16270 Use if rather than cond.
16271
16272 * simple.el (read-expression-map): Define more properly.
16273 (comment-indent-hook): Remove.
16274 (string-to-syntax): Bug fix.
16275
16276 * pcvs.el (cvs-ediff-exit-hook): Kill buffer before window.
16277 (cvs-ediff-diff): Fix typo.
16278 (cvs-revert-if-needed): Don't bother preserving read-only.
16279
16280 * paren.el (show-paren-mode): Use define-minor-mode.
16281
16282 * jka-compr.el (auto-compression-mode): Use define-minor-mode.
16283 (toggle-auto-compression): Remove.
16284 (jka-compr-build-file-regexp): Remove useless grouping.
16285
16286 * diff-mode.el (diff-mode-map, diff-minor-mode-prefix):
16287 Avoid user-reserved bindings.
16288 (diff-mode, diff-minor-mode): Drop make-local-hook (done by add-hook).
16289 (diff-header-face): Revert to grey85.
16290
16291 * cvs-status.el (cvs-status-entry-leader-re): Minor fix.
16292
16293 * complete.el (partial-completion-mode) <defcustom>: Remove.
16294 (partial-completion-mode): Use define-minor-mode.
16295 (PC-do-completion): Understand `completion-auto-help = delay'
16296 to mean to popup the completion buffer only the second time.
16297 (PC-include-file-all-completions, PC-include-file-all-completions)
16298 (PC-include-file-all-completions): Don't quote lambda.
16299
16300 * comint.el (comint-mode-hook): Docstring fix.
16301 (comint-mode): Use define-derived-mode.
16302 (comint-mode-map): Remove obsolete comment.
16303 (make-comint): Minor stylistic change.
16304 (comint-insert-clicked-input): Be more careful to find the overlay.
16305 Use this-command-keys rather than hardcoding mouse-2.
16306
16307 * font-lock.el: Replace confusing (,@ with ,
16308 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
16309 Don't use regexp-opt-depth. Spice up the regexp for args.
16310 Don't distinguish between cmds that can take an opt arg or not.
16311 Use `append' and `prepend' rather than `keep'.
16312
16313 * textmodes/tex-mode.el (latex-imenu-indent-string): Add a space.
16314 (latex-outline-regexp): New var.
16315 (latex-outline-level): New fun.
16316 (latex-section-alist): New var.
16317 (latex-imenu-create-index): Use it. Use `push' as well.
16318 (tex-shell-map): Initialize it properly.
16319 (tex-mode): Minor stylistic change.
16320 (plain-tex-mode): Use define-derived-mode.
16321 (latex-mode): Use define-derived-mode.
16322 Construct the paragraph regexps in a more readable way.
16323 Set the buffer-local outline-{level,regexp} vars.
16324 (slitex-mode): Derive from latex-mode.
16325 (tex-common-initialization): Don't kill-all-vars anymore.
16326 Add setting for comment-add and font-lock-defaults.
16327 (tex-start-shell): Use with-current-buffer and don't re-init keymap.
16328 (tex-main-file): New fun. Obey TeX-master as well and remove `.tex'.
16329 (tex-start-tex): New arg DIR (and send a chdir command for it).
16330 Also display the shell buffer and save it in tex-last-buffer-texed.
16331 (tex-region): Use expand-file-name rather than concat.
16332 Remove code made useless by changes in tex-start-tex.
16333 (tex-file): Use tex-main-file and adapt to new tex-start-tex.
16334
16335 * map-ynp.el (map-y-or-n-p): Fix missing backquotes.
16336
16337 2000-09-28 Dave Love <fx@gnu.org>
16338
16339 * eshell/eshell.el (eshell) <defgroup>: Add :version.
16340
16341 2000-09-28 Gerd Moellmann <gerd@gnu.org>
16342
16343 * emacs-lisp/authors.el (authors-add): Use `nconc' instead of
16344 `append'.
16345
16346 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
16347
16348 * info.el (Info-extract-pointer): Undo last change.
16349 Instead, fix the position of the `bound' arg to re-search-backward.
16350
16351 2000-09-27 Stefan Monnier <monnier@cs.yale.edu>
16352
16353 * info.el (Info-extract-pointer):
16354 Widen more carefully, to avoid finding pointers in other nodes.
16355 (Info-index): Use push.
16356
16357 2000-09-27 Gerd Moellmann <gerd@gnu.org>
16358
16359 * frame.el (set-frame-font): Remove call to obsolete function
16360 frame-update-faces.
16361 (set-foreground-color, set-background-color): Likewise for
16362 frame-update-face-colors.
16363
16364 2000-09-27 Miles Bader <miles@gnu.org>
16365
16366 * image-file.el: New file.
16367
16368 2000-09-27 Gerd Moellmann <gerd@gnu.org>
16369
16370 * frame.el (frame-notice-user-settings): Don't call
16371 frame-update-faces, which is a no-op now.
16372
16373 * ediff-wind.el (ediff-control-frame-parameters): Add zero
16374 tool-bar-lines.
16375
16376 2000-09-27 Dave Love <fx@gnu.org>
16377
16378 * mouse.el: Fix last change.
16379
16380 2000-09-27 Miles Bader <miles@lsi.nec.co.jp>
16381
16382 * toolbar/tool-bar.el (tool-bar-help): Use `mouse-pixel-position'.
16383
16384 2000-09-22 Kenichi Handa <handa@etl.go.jp>
16385
16386 * international/quail.el (quail-help): The output message is
16387 improved.
16388
16389 2000-09-26 Dave Love <fx@gnu.org>
16390
16391 * mouse.el (popup-menu): If POSITION is nil, set it using
16392 mouse-position.
16393
16394 2000-09-25 Sam Steingold <sds@gnu.org>
16395
16396 * net/browse-url.el (browse-url-file-url): Check for null maps.
16397
16398 2000-09-26 Gerd Moellmann <gerd@gnu.org>
16399
16400 * frame.el (frame-notice-user-settings): Don't add a
16401 tool-bar-lines frame parameter to default-frame-alist in batch mode.
16402
16403 * frame.el (frame-notice-user-settings):
16404 Make tool-bar-mode and default-frame-alist consistent.
16405
16406 * toolbar/tool-bar.el (tool-bar-help): New function.
16407
16408 2000-09-25 Gerd Moellmann <gerd@gnu.org>
16409
16410 * bytecomp.el (byte-compile-defvar-or-defconst): Only cons onto
16411 current-load-list in top-level forms. Else this leaks a cons cell
16412 every time a defun is called.
16413
16414 * mail/mail-utils.el (rmail-dont-reply-to): Fix last change.
16415
16416 2000-09-25 Dave Love <fx@gnu.org>
16417
16418 * startup.el (fancy-splash-head): Check XPM is available.
16419
16420 * autoinsert.el (auto-insert): Doc fix.
16421 (auto-insert-alist): Following GNU notices, don't say `copyright
16422 _by_'. Use line-beginning-position.
16423 (auto-insert): Check buffer-file-name is non-nil before use.
16424
16425 2000-09-25 Gerd Moellmann <gerd@gnu.org>
16426
16427 * textmodes/texinfo.el (texinfo-mode): Prevent filling lines
16428 starting with `@def' or `@multitable', in addition to ones
16429 specified by the user in auto-fill-inhibit-regexp.
16430
16431 2000-09-25 Markus Rost <rost@math.ohio-state.edu>
16432
16433 * mail/mail-utils.el (rmail-dont-reply-to): Avoid infinite loop if
16434 rmail-dont-reply-to-names matches the empty string.
16435
16436 2000-09-25 Gerd Moellmann <gerd@gnu.org>
16437
16438 * startup.el (command-line-1, fancy-splash-text): Change the
16439 text to sound more friendly.
16440
16441 2000-09-23 Thien-Thi Nguyen <ttn@gnu.org>
16442
16443 * progmodes/hideshow.el: Update author email address.
16444 Generally, sync w/ maintainer version 5.22.
16445 (hs-hide-all-non-comment-function): New var.
16446 (hs-hide-hook, hs-show-hook, hs-minor-mode): Update docstrings.
16447 (hs-hide-all): Use `hs-hide-all-non-comment-function'.
16448 (hs-show-region): Delete this command.
16449 (hs-minor-mode-map): Change bindings to leave "C-c LETTER" alone.
16450
16451 2000-09-22 Dave Love <fx@gnu.org>
16452
16453 * hl-line.el (hl-line-overlay): Don't make it buffer-local.
16454 (hl-line-highlight): Specify buffer when moving overlay.
16455
16456 * progmodes/fortran.el (fortran-mode): Locally set
16457 normal-auto-fill-function.
16458 (fortran-auto-fill-mode): Just alias to auto-fill-mode.
16459 (fortran-mode-map): Adjust auto-fill menu entry.
16460
16461 2000-09-22 Gerd Moellmann <gerd@gnu.org>
16462
16463 * vc-rcs.el (toplevel): Require `vc' when compiling.
16464
16465 * startup.el (fancy-splash-head): Use splash.pbm instead of splash.xbm.
16466
16467 2000-09-22 Andre Spiegel <spiegel@gnu.org>
16468
16469 * vc.el (vc-switch-backend): Signal an error if the file is not
16470 registered under the new backend.
16471
16472 * vc-rcs.el (vc-rcs-checkin): Fix bug that prevented check-in
16473 without explicit revision number.
16474
16475 2000-09-21 Stefan Monnier <monnier@cs.yale.edu>
16476
16477 * diff-mode.el (diff-file-header-face): Reset to its previous value.
16478 (diff-hunk-text): Correctly use offsets rather than buffer-positions.
16479 (diff-xor): New function.
16480 (diff-find-source-location): Use it. Fix a stupid name clash.
16481 (diff-hunk-status-msg): New function.
16482 (diff-apply-hunk): Drop args OTHER-FILE, DRY-RUN, POPUP and NOERROR.
16483 (diff-test-hunk): Use diff-find-source-location.
16484 (diff-goto-source): Favor the `reverse'.
16485 (diff-hunk-text): Properly handle one-sided context diffs.
16486 (diff-apply-hunk): When done, advance to the next hunk.
16487
16488 2000-09-21 Gerd Moellmann <gerd@gnu.org>
16489
16490 * startup.el (command-line): If frame was created with a non-zero
16491 tool-bar-lines parameter, switch tool-bar-mode on.
16492
16493 * add-log.el (change-log-date-face, change-log-name-face)
16494 (change-log-email-face, change-log-file-face)
16495 (change-log-list-face, change-log-conditionals-face)
16496 (change-log-function-face, change-log-acknowledgement-face):
16497 New faces, inheriting from font-lock faces.
16498 (change-log-font-lock-keywords): Use them.
16499
16500 2000-09-21 Dave Love <fx@gnu.org>
16501
16502 * progmodes/cperl-mode.el (top-level): Clean up
16503 `eval-when-compile's and assorted defvars.
16504 (cperl-invalid-face): Don't double-quote value. Change custom
16505 type.
16506 (cperl-mode): Set normal-auto-fill-function and don't zap
16507 auto-fill-function.
16508 (cperl-imenu--function-name-regexp-perl): Renamed from
16509 imenu-example--function-name-regexp-perl.
16510 (cperl-imenu--create-perl-index): Renamed from
16511 imenu-example--create-perl-index.
16512 (cperl-xsub-scan): Don't require cl.
16513
16514 * msb.el (msb-mode-map): Use substitute-key-definition.
16515 (msb-mode): Use msb-mode-map.
16516
16517 2000-09-21 Andre Spiegel <spiegel@gnu.org>
16518
16519 * vc.el (vc-index-of, vc-transfer-file, vc-default-receive-file):
16520 New functions.
16521 (vc-next-action-on-file): Call vc-transfer-file at appropriate places.
16522 (vc-switch-backend): New function.
16523 (vc-prefix-map): Bind `vc-switch-backend' to `b'.
16524 (vc-register): Fix prompt.
16525 (vc-unregister, vc-default-unregister): New functions.
16526 (vc-version-diff): Handle empty buffer in sentinel.
16527
16528 * vc-rcs.el (vc-rcs-workfile-is-newer): New function.
16529 (vc-rcs-state-heuristic): Use it to guess the state of files with
16530 non-strict locking.
16531 (vc-rcs-find-most-recent-rev): Handle the case when a branch has
16532 been set with -b, but not created yet.
16533 (vc-rcs-fetch-master-state): With non-strict locking, compare file
16534 contents in order to find the state.
16535 (vc-rcs-checkin): Allow creation of branches with no changes.
16536 (vc-rcs-unregister, vc-rcs-receive-file)
16537 (vc-rcs-set-non-strict-locking): New functions.
16538
16539 * vc-hooks.el (vc-name): Force correct computation of the value
16540 in case it is missing.
16541
16542 2000-09-21 Gerd Moellmann <gerd@gnu.org>
16543
16544 * startup.el (fancy-splash-tail): Use a different foreground
16545 color on a dark frame background.
16546
16547 2000-09-21 Miles Bader <miles@lsi.nec.co.jp>
16548
16549 * info.el: Use the correct capitalization when making Info-mode
16550 and Info-edit-mode `special' modes.
16551
16552 2000-09-20 Stefan Monnier <monnier@cs.yale.edu>
16553
16554 * diff-mode.el (diff-add-log-file-name, diff-current-defun): New funs.
16555 (diff-mode): Add support for add-log.el.
16556 (diff-hunk-text): Use char offsets rather than line offsets.
16557 (diff-find-source-location): Replace LINE with line-offset (nil
16558 if not found) and always set POS to a meaningful position.
16559 Adapt to the new char-offsets.
16560 (diff-apply-hunk): Drop support for the unused `select' POPUP.
16561 Adapt to the new diff-find-source-location.
16562 (diff-goto-source): Adapt to the new diff-find-source-location.
16563
16564 * add-log.el (add-log-file-name): New function (split out of
16565 add-change-log-entry).
16566 (add-change-log-entry): Use it.
16567 Call add-log-file-name-function with the changelog file name if
16568 the current buffer is not associated with any file.
16569 Avoid find-file if the selected window is dedicated.
16570
16571 * diff-mode.el (diff-find-source-location):
16572 Move code from diff-apply-hunk. Return buffer rather than file.
16573 (diff-apply-hunk): Use the new result from diff-find-source-location.
16574 (diff-goto-source): Use the new diff-find-source-location.
16575
16576 2000-09-20 Dave Love <fx@gnu.org>
16577
16578 * iswitchb.el: Some doc fixes.
16579 (iswitchb-mode-map): Define completely initially. Inherit
16580 minibuffer-local-map.
16581 (iswitchb-completion-help) <!iswitchb-xemacs>: Use
16582 fundamental-mode.
16583 (iswitchb-global-map): New variable.
16584 (iswitchb-summaries-to-end): Amalgamate regexps.
16585 (iswitchb-mode): New.
16586 (iswitchb-mode-hook): New variable.
16587 (iswitchb) <defgroup>: Add URL link. Use group `completion', not
16588 `extensions'.
16589
16590 2000-09-20 Gerd Moellmann <gerd@gnu.org>
16591
16592 * ehelp.el (electric-help): New defgroup.
16593 (electric-help-shrink-window): New user-option.
16594 (with-electric-help): Use it.
16595
16596 * window.el (shrink-window-if-larger-than-buffer): If face
16597 `mode-line' has a :box, and we're on a graphical frame, add 1
16598 to the needed window height.
16599
16600 * frame.el (frame-notice-user-settings): Add a last parameter nil
16601 to a call to `append', because the last list passed to `append' is
16602 not copied, and so subsequent calls to assq-delete-all will modify
16603 default-frame-alist.
16604
16605 * startup.el (fancy-splash-image): Change :type.
16606 (fancy-splash-head): Use an XBM image if appropriate.
16607 (command-line-1): Show splash screens in more cases.
16608
16609 * startup.el (fancy-splash-text): Don't quote faces.
16610
16611 * dired.el (dired-font-lock-keywords): Undo last change.
16612 (dired-readin): Bind indent-tabs-mode to nil.
16613
16614 * startup.el (fancy-splash-head): If frame's background mode
16615 is `dark', change the black background of the image to gray.
16616 (fancy-splash-screens): Display startup echo area message.
16617 (display-startup-echo-area-message): New function.
16618
16619 2000-09-20 Miles Bader <miles@lsi.nec.co.jp>
16620
16621 * faces.el (mode-line, tool-bar): Merge entries for `x' and `w32'.
16622
16623 * info.el (info-header-node): Tweak for color ttys.
16624
16625 * faces.el (face-valid-attribute-values): Make sure directories we
16626 search for stipples both exist and are readable before trying to
16627 search them.
16628
16629 * diff-mode.el (diff-apply-hunk): Jump to the correct line offset
16630 in the dry-run case.
16631
16632 * jka-compr.el (with-auto-compression-mode): New macro.
16633
16634 * cus-edit.el (custom-face-tag-face, custom-group-tag-face-1)
16635 (custom-group-tag-face, custom-variable-tag-face): Use relative
16636 :height and inherit from `variable-pitch' face instead of
16637 hardwiring :family.
16638 * hi-lock.el (hi-black-hb): Likewise.
16639
16640 Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
16641 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Like in
16642 toolbar-add-item, if image doesn't have a mask add a `:mask
16643 heuristic'.
16644
16645 2000-09-19 Stefan Monnier <monnier@cs.yale.edu>
16646
16647 * diff-mode.el: Docstring fixes.
16648 (diff-header-face, diff-comment-face): New faces.
16649 (diff-font-lock-keywords): Highlight a bit differently.
16650 (diff-find-source-location): Don't return SPAN any more.
16651 (diff-hunk-text): Don't bother erasing the temp buffer.
16652 (diff-find-text): Drop argument LINE.
16653 (diff-apply-hunk): Update calls to diff-find-text.
16654 (diff-goto-source): Use pop-to-buffer again and don't raise an error.
16655
16656 * calendar/calendar.el: Docstring fixes.
16657 (calendar-make-alist): Don't quote lambda.
16658 (calendar-star-date): Use make-local-variable.
16659
16660 2000-09-19 Dave Love <fx@gnu.org>
16661
16662 * toolbar/tool-bar.el: Renamed from toolbar.el.
16663 Change `toolbar' to `tool-bar' generally in symbols.
16664 Make some items invisible in `special' major modes.
16665 (tool-bar-add-item-from-menu): Renamed from toolbar-like-menu-item.
16666 Add arg PROPS.
16667
16668 * startup.el (fancy-splash-screen) <defgroup>: Fix syntax.
16669 Add :version here.
16670 (fancy-splash-delay, fancy-splash-image): Remove :version here.
16671
16672 2000-09-19 Gerd Moellmann <gerd@gnu.org>
16673
16674 * progmodes/sh-script.el (sh-search-word): Remove call to `debug'.
16675
16676 * files.el (find-file-suppress-same-file-warnings): New user-option.
16677 (find-file-noselect): Use it.
16678
16679 * startup.el (fancy-splash-delay, fancy-splash-image): Add :version.
16680 (fancy-splash-screen): Defgroup.
16681
16682 * add-log.el (change-log-font-lock-keywords): Match names
16683 more exactly for the case that font-lock-constant-face is
16684 underlined.
16685
16686 2000-09-19 Richard M. Stallman <rms@gnu.org>
16687
16688 * progmodes/sh-script.el (sh-search-word): Rewritten for speed.
16689
16690 2000-09-19 Andre Spiegel <spiegel@gnu.org>
16691
16692 * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
16693
16694 2000-09-19 Gerd Moellmann <gerd@gnu.org>
16695
16696 * gnus/: Update to emacs-21-branch of the Gnus CVS repository.
16697 * gnus/binhex.el, gnus/flow-fill.el, gnus/format-spec.el
16698 * gnus/gnus-ml.el, gnus/gnus-mlspl.el, gnus/ietf-drums.el,
16699 * gnus/imap.el, gnus/mail-parse.el, gnus/mail-prsvr.el,
16700 * gnus/mail-source.el, gnus/mailcap.el, gnus/mm-bodies.el,
16701 * gnus/mm-decode.el, gnus/mm-encode.el, gnus/mm-partial.el,
16702 * gnus/mm-util.el, gnus/mm-uu.el, gnus/mm-view.el,
16703 * gnus/mml.el, gnus/nnimap.el, gnus/nnslashdot.el,
16704 * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
16705 * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
16706 * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
16707 * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
16708
16709 * startup.el (fancy-splash-text): New variable.
16710 (fancy-splash-delay, fancy-splash-image): New user-options.
16711 (fancy-splash-insert, fancy-splash-head, fancy-splash-tail)
16712 (fancy-splash-screens): New functions.
16713 (command-line-1): If display has a `display' frame parameter, has
16714 colors, and we have XPM support, show more fancy splash screens.
16715
16716 2000-09-19 Dave Love <fx@gnu.org>
16717
16718 * map-ynp.el (map-y-or-n-p): Check use-dialog-box. Don't lose
16719 with null `help'. Use modern backquote syntax.
16720
16721 2000-09-19 Gerd Moellmann <gerd@gnu.org>
16722
16723 * font-lock.el (font-lock-mode): Change message telling the user
16724 that ``the buffer is too big''.
16725
16726 * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
16727 for instance for the case that tab-width is 2.
16728
16729 2000-09-18 Gerd Moellmann <gerd@gnu.org>
16730
16731 * toolbar/toolbar.el (toolbar-like-menu-item): Like in
16732 toolbar-add-item, if image doesn't have a mask add a `:mask
16733 heuristic'.
16734
16735 2000-09-18 Miles Bader <miles@lsi.nec.co.jp>
16736
16737 * diff-mode.el (diff-hunk-text): Add new optional arg LINE-OFFSET,
16738 and return a cons if it's non-nil.
16739 (diff-apply-hunk): Try to jump to the line in the source text
16740 corresponding to the position of point in the in the hunk.
16741
16742 * info.el (Info-title-3-face, Info-title-2-face)
16743 (Info-title-1-face): Use face inheritance and relative sizes
16744 instead of hard-wiring things.
16745
16746 * faces.el (secondary-selection): Make dark-background variant sane.
16747
16748 2000-09-16 Andrew Innes <andrewi@gnu.org>
16749
16750 * makefile.w32-in (compile-files-CMD): No need to make .elc files
16751 read-only, since they aren't under VC now.
16752
16753 2000-09-17 Dave Love <fx@gnu.org>
16754
16755 * tmm.el: Replace mapcar with mapc in several places.
16756
16757 * loadhist.el (unload-feature): Maybe call elp-restore-list and
16758 ad-unadvise.
16759
16760 * international/latin1-disp.el: New file.
16761
16762 * calendar/cal-move.el (scroll-calendar-left)
16763 (scroll-calendar-right): Make arg optional (for active mode line).
16764
16765 * calendar/calendar.el (calendar-mode-line-format): Make fields
16766 mouse-sensitive.
16767 (calendar-read-date, calendar-read-date, calendar-window-list):
16768 Unquote lambda.
16769 (calendar-month-name): Use aref, not sref.
16770
16771 * view.el (minor-mode-alist): Propertize the string.
16772
16773 * international/characters.el (standard-case-table): Add entries
16774 for Greek.
16775
16776 2000-09-18 Miles Bader <miles@gnu.org>
16777
16778 * info.el (info-node, info-xref): Add dark-background variants.
16779
16780 * faces.el (header-line): Change defaults to be less confusing
16781 when mixed with mode-lines.
16782
16783 * info.el (Info-fontify-node): Make a few cleanups.
16784 Add extra `help-echo' and `local-map' props to node xrefs.
16785 Use header-specific faces for node-names & xrefs.
16786 (Info-use-header-line): New variable.
16787 (info-header-xref, info-header-node): New faces.
16788 (Info-setup-header-line): New function.
16789 (Info-select-node): Call Info-setup-header-line when enabled.
16790 (Info-extract-pointer): Work even if the header line is hidden.
16791 (Info-header-line): New variable.
16792
16793 2000-09-16 Stefan Monnier <monnier@cs.yale.edu>
16794
16795 * vms-patch.el (print-region-function): Don't quote lambda.
16796
16797 * tempo.el (tempo-expand-if-complete): Quote paren in docstring.
16798
16799 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Cleanup the regexp.
16800 (lm-get-header-re): Allow spaces between the header and the colon.
16801 (lm-header): Allow $ in non-RCS headers.
16802 (lm-header-multiline): Put the strings back into order.
16803 Stop at an empty line. Don't require two space chars if the
16804 line is clearly not another header line.
16805
16806 * emacs-lisp/lmenu.el (popup-menu, popup-menu-internal)
16807 (popup-menu-popup): Remove.
16808
16809 2000-09-15 Gerd Moellmann <gerd@gnu.org>
16810
16811 * toolbar/toolbar.el (toolbar-add-item): Use the same image
16812 specification if or if not tool-bar item contains an `:enabled'
16813 property.
16814
16815 * menu-bar.el (menu-bar-files-menu): Disable ``Save'' if
16816 current buffer has no file name.
16817
16818 2000-09-15 Dave Love <fx@gnu.org>
16819
16820 * strokes.el: Sync with maintainer's current version with changes
16821 for Emacs, but avoid runtime cl and levents.
16822 (toplevel): Change autoloads and compilation requires.
16823 (strokes-version, strokes-bug-address, strokes-lift): Values
16824 changed.
16825 (strokes-xpm-header, strokes-insinuated): New variable.
16826 (strokes): Add :link.
16827 (strokes-mode): Customized.
16828 (strokes-while-inhibiting-garbage-collector): New macro.
16829 (strokes-remassoc): Avoid remove-if.
16830 (strokes-fix-button2-command): Don't use ad-do-it.
16831 (strokes-insinuate): New function.
16832 (strokes-button-press-event-p, strokes-button-release-event-p):
16833 New functions, used instead of non-`strokes-' versions..
16834 (strokes-mouse-event-p): Rewritten.
16835 (strokes-event-closest-point): Avoid event-point.
16836 (strokes-get-grid-position): Avoid cdadr, caadr
16837 (strokes-read-stroke, strokes-read-complex-stroke): Avoid levents
16838 functions.
16839 (strokes-help): Use with-output-to-temp-buffer.
16840 (strokes-window-configuration-changed-p): New function.
16841 (strokes-update-window-configuration): Use buffer-live-p,
16842 strokes-window-configuration-changed-p.
16843 (strokes-mode): Use strokes-insinuate. Alter mouse bindings.
16844 (strokes-char-face): New face.
16845 (strokes-char-table, strokes-base64-chars): New variable.
16846 (strokes-xpm-for-stroke, strokes-list-strokes)
16847 (strokes-xpm-char-on-p, strokes-xpm-char-bit-p)
16848 (strokes-xpm-encode-length-as-string, strokes-xpm-decode-char)
16849 (strokes-xpm-to-compressed-string, strokes-decode-buffer)
16850 (strokes-encode-buffer, strokes-xpm-for-compressed-string)
16851 (strokes-compose-complex-stroke, strokes-alphabetic-lessp): New
16852 functions.
16853
16854 2000-09-15 Gerd Moellmann <gerd@gnu.org>
16855
16856 * toolbar/toolbar.el (toolbar-add-item): Use image-mask-p.
16857
16858 * image.el (create-image): Doc fix.
16859
16860 * toolbar/toolbar.el (toolbar-add-item): Use `:mask heuristic'
16861 instead of `:heuristic-mask t'.
16862
16863 2000-09-14 Andrew Innes <andrewi@gnu.org>
16864
16865 * makefile.w32-in: Revert to Unix line endings.
16866
16867 2000-09-14 Andrew Innes <andrewi@gnu.org>
16868
16869 * makefile.w32-in: Add bootstrap support. Also copy lisp source
16870 when installing.
16871
16872 * makefile.nt (DONTCOMPILE): Fix typo.
16873
16874 * shell.el (shell-write-history-on-exit): New function.
16875 (shell-dumb-shell-regexp): New custom variable.
16876 (shell-mode): Make shell-write-history-on-exit the process
16877 sentinel if shell name matches shell-dumb-shell-regexp.
16878
16879 * w32-fns.el: Comment out before-init-hook function which resets
16880 source-directory based; this breaks bootstrap.
16881
16882 2000-09-14 Dave Love <fx@gnu.org>
16883
16884 * toolbar/cancel.xpm, toolbar/close.xpm, toolbar/copy.xpm,
16885 toolbar/cut.xpm, toolbar/exit.xpm, toolbar/fld_open.xpm,
16886 toolbar/help.xpm, toolbar/info.xpm, toolbar/mail.xpm,
16887 toolbar/mail_compose.xpm, toolbar/new.xpm, toolbar/open.xpm,
16888 toolbar/paste.xpm, toolbar/preferences.xpm, toolbar/print.xpm,
16889 toolbar/save.xpm, toolbar/saveas.xpm, toolbar/search-replace.xpm,
16890 toolbar/search.xpm, toolbar/spell.xpm, toolbar/undo.xpm: New.
16891 From Tuomas Kuosmanen <tigert@gimp.org>. (Gnome icons fetched
16892 from <URL:http://tigert.gimp.org/gnome/gnome-stock/>.)
16893
16894 * toolbar/toolbar.el: New.
16895
16896 * subdirs.el: Add toolbar.
16897
16898 2000-09-14 Gerd Moellmann <gerd@gnu.org>
16899
16900 * indent.el (indent-for-tab-command): Doc fix.
16901
16902 2000-09-14 Alex Schroeder <alex@gnu.org>
16903
16904 * ansi-color.el (ansi-colors): Doc change.
16905 (ansi-color-get-face): Simplified regexp.
16906 (ansi-color-faces-vector): Added more faces, doc change.
16907 (ansi-color-names-vector): Doc change.
16908 (ansi-color-regexp): Simplified regexp.
16909 (ansi-color-parameter-regexp): New regexp.
16910 (ansi-color-filter-apply): Doc change.
16911 (ansi-color-filter-region): Doc change.
16912 (ansi-color-apply): Use ansi-color-regexp and ansi-color-get-face,
16913 deal with zero length parameters.
16914 (ansi-color-apply-on-region): Doc change.
16915 (ansi-color-map): Doc change.
16916 (ansi-color-map-update): Removed debugging message.
16917 (ansi-color-get-face-1): Added condition-case to trap
16918 args-out-of-range errors.
16919 (ansi-color-get-face): Doc change.
16920 (ansi-color-make-face): Removed.
16921 (ansi-color-for-shell-mode): New option.
16922
16923 2000-09-13 Kenichi Handa <handa@etl.go.jp>
16924
16925 * international/quail.el (quail-start-translation): Translate KEY
16926 if necessary even if it doesn't have any mapping in the current
16927 input method.
16928 (quail-start-conversion): Likewise.
16929 (quail-help): The output message is improved.
16930
16931 2000-09-13 Miles Bader <miles@gnu.org>
16932
16933 * comint.el (comint-output-filter): Revert to using
16934 `insert-before-markers'. Add bletcherous hack to undo damage
16935 caused by `insert-before-markers'. Put `front-sticky' property on
16936 overlays created here so that the field code understands how the
16937 overlay works. Use a let when making comint-last-prompt-overlay,
16938 so that the code is easier to read.
16939
16940 2000-09-13 Dave Love <fx@gnu.org>
16941
16942 * wid-edit.el (widget-default-format-handler): DTRT when
16943 doc-property is a function.
16944
16945 2000-09-12 Francesco Potorti` <pot@gnu.org>
16946
16947 * mail/sendmail.el (mail-mode-fill-paragraph): Do not get the
16948 filed name if it's not there.
16949
16950 2000-09-12 Dave Love <fx@gnu.org>
16951
16952 * simple.el (read-mail-command): Doc fix.
16953 (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
16954
16955 * vc.el (vc-dired-listing-switches): Fix :version.
16956
16957 * vc-hooks.el: Doc fixes.
16958
16959 * subr.el (add-minor-mode): Use toggle-fun arg.
16960
16961 * speedbar.el: Add :version to several defcustoms.
16962
16963 * imenu.el (imenu--truncate-items, imenu--cleanup)
16964 (imenu--generic-function): Avoid mapcar.
16965 (imenu--replace-spaces): Function removed.
16966 (imenu--completion-buffer): Use subst-char-in-string.
16967 (imenu-add-to-menubar): Use keymap inheritance.
16968
16969 2000-09-12 Miles Bader <miles@gnu.org>
16970
16971 * diff-mode.el (diff-hunk-text): Use `with-temp-buffer'.
16972 (diff-mode-map): Bind `diff-test-hunk'.
16973 (diff-apply-hunk): Use `select-window' instead of `pop-to-buffer'.
16974
16975 2000-09-11 Gerd Moellmann <gerd@gnu.org>
16976
16977 * bytecomp.el (byte-compile-defvar): Undo last change
16978 because it breaks '(make-variable-buffer-local (defvar ...)'
16979 which is used at least in dired.
16980
16981 2000-09-12 Kenichi Handa <handa@etl.go.jp>
16982
16983 * international/quail.el (quail-define-package): Docstring
16984 modified.
16985
16986 2000-09-12 Kenichi Handa <handa@etl.go.jp>
16987
16988 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Add
16989 extra docstrings for "chinese-ccdospy", "chinese-ecdict",
16990 "chinese-etzy", "chinese-sw", and "chinese-ziranma". Modify the
16991 docstring of "chinese-py".
16992
16993 * international/quail.el (quail-translation-docstring): New
16994 variable.
16995 (quail-show-keyboard-layout): Docstring modified.
16996 (quail-select-current): Likewise.
16997 (quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
16998 infinite recursive call.
16999 (quail-help): Check quail-translation-docstring. Format of the
17000 output changed.
17001 (quail-help-insert-keymap-description): Adjusted for the above
17002 change.
17003
17004 2000-09-11 Gerd Moellmann <gerd@gnu.org>
17005
17006 * bytecomp.el (byte-compile-defvar): Only cons onto
17007 current-load-list in top-level forms. Else this leaks a cons cell
17008 every time a defun is called.
17009
17010 2000-09-11 Miles Bader <miles@lsi.nec.co.jp>
17011
17012 * diff-mode.el (diff-apply-hunk): Function basically rewritten.
17013 Now understands non-unified diffs. Some functionality moved into
17014 `diff-hunk-text' and `diff-find-text'. Add OTHER-FILE, DRY-RUN,
17015 POPUP, and NOERROR arguments. If DRY-RUN is true, don't actually
17016 modify anything. Only reposition point in the patched file if the
17017 patch succeeds. Only pop up another window if POPUP is true.
17018 Emit a message describing what happened if successful, and at what
17019 line-offset. Automatically detect reversed hunks and do something
17020 appropriate.
17021 (diff-hunk-text, diff-find-text): New functions.
17022 (diff-filter-lines): Function removed.
17023 (diff-test-hunk): New function.
17024 (diff-goto-source): Rewritten in terms of diff-apply-hunk.
17025
17026 2000-09-10 Dave Love <fx@gnu.org>
17027
17028 * textmodes/tildify.el: Minor doc/commentary fixes.
17029 (tildify) <defgroup>: Add :version.
17030
17031 * faces.el (face-x-resources): Make custom type more specific.
17032 (frame-background-mode): Use mapc.
17033 (region) <defcustom>: Add :version.
17034
17035 2000-09-08 Stefan Monnier <monnier@cs.yale.edu>
17036
17037 * vc-sccs.el (vc-sccs-register):
17038 * vc-rcs.el (vc-rcs-register):
17039 * vc-cvs.el (vc-cvs-register): Don't clear file's properties.
17040 * vc.el (vc-register): Clear file's properties.
17041
17042 2000-09-08 Gerd Moellmann <gerd@gnu.org>
17043
17044 * faces.el (face-spec-set): Only face-spec-reset-face when
17045 ATTRS is non-nil.
17046
17047 2000-09-08 Eli Zaretskii <eliz@is.elta.co.il>
17048
17049 * help.el (help-insert-xref-button): Fix a typo in doc string.
17050
17051 2000-09-07 Eli Zaretskii <eliz@is.elta.co.il>
17052
17053 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
17054 Fix doc strings of chinese-py-b5, chinese-py, and chinese-tonepy input
17055 methods.
17056
17057 * menu-bar.el (read-mail-item-name): New function.
17058 (menu-bar-tools-menu): Use it to compute and display the package
17059 used to read email.
17060 (menu-bar-tools-menu): Fix typo in GUD's help string.
17061
17062 2000-09-07 Dave Love <fx@gnu.org>
17063
17064 * diff-mode.el (diff-mouse-goto-source): New function.
17065
17066 * vc-sccs.el: Doc fixes.
17067 (vc-sccs-register-switches, vc-sccs-master-templates): Add :version.
17068
17069 * vc-rcs.el: Doc fixes.
17070 (vc-rcs-register-switches, vc-rcs-checkin-switches)
17071 (vc-rcs-checkout-switches, vc-rcs-header)
17072 (vc-rcs-master-templates): Add or change :version.
17073
17074 * vc-cvs.el: Doc fixes.
17075 (vc-cvs-register-switches, vc-cvs-header, vc-cvs-use-edit)
17076 (vc-cvs-stay-local): Add :version.
17077
17078 * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
17079
17080 2000-09-07 Kenichi Handa <handa@etl.go.jp>
17081
17082 * international/quail.el (quail-help): Fix previous change.
17083
17084 2000-09-07 Gerd Moellmann <gerd@gnu.org>
17085
17086 * faces.el (color-values): Doc fix.
17087
17088 * faces.el (frame-set-background-mode): Use frame-parameter
17089 instead of frame-parameters.
17090
17091 * frame.el (filtered-frame-list): Reduce consing.
17092 (frames-on-display-list): Call frame-parameter instead of
17093 frame-parameters.
17094
17095 2000-09-07 Kenichi Handa <handa@etl.go.jp>
17096
17097 * language/devan-util.el (devanagari-to-indian-region): In the
17098 loop, change the following char, not preceding char.
17099
17100 2000-09-07 Gerd Moellmann <gerd@gnu.org>
17101
17102 * menu-bar.el (menu-bar-update-buffers): Call frame-parameter
17103 instead of frame-parameters.
17104
17105 * faces.el (set-face-attribute): Simplify by calling
17106 internal-set-lisp-face-attribute with FRAME being 0.
17107
17108 * vc.el: Remove `Id' version control keyword.
17109
17110 2000-09-07 Kenichi Handa <handa@etl.go.jp>
17111
17112 * help.el (help-make-xrefs): Adjusted for the change of
17113 help-xref-mule-regexp.
17114 (help-insert-xref-button): New function.
17115
17116 * international/mule-cmds.el (help-xref-mule-regexp-template):
17117 Include the pattern for character set.
17118 (leim): New group.
17119
17120 * international/quail.el: Don't require face.
17121 (quail): New group.
17122 (quail-other-command): Dummy command to make quail-help work better.
17123 (quail-keyboard-layout-alist): Add Keyboard type "jp106".
17124 (quail-keyboard-layout-substitution): New variable.
17125 (quail-update-keyboard-layout): New function.
17126 (quail-keyboard-layout-type): New customizable variable.
17127 (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
17128 (quail-keyboard-translate): Pay attention to
17129 quail-keyboard-layout-substitution.
17130 (quail-insert-kbd-layout): New function.
17131 (quail-show-keyboard-layout): New function.
17132 (quail-get-translation): If the definition is a vector of length
17133 1, and the element is a string of length 1, return the character
17134 in that string.
17135 (quail-update-current-translations): Fix the case of
17136 relative-index out of range.
17137 (quail-build-decode-map, quail-insert-decode-map): New Functions.
17138 (quail-help): Show keyboard layout by quail-insert-kbd-layout.
17139 Show key sequences for all available characters.
17140 (quail-help-insert-keymap-description): Don't show such verbose
17141 key bindings as quail-self-insert-command.
17142
17143 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
17144 Format changed, and each element now have extra documentations.
17145 (tit-process-header): Delete invalid characters from TIT-PROMPT.
17146 Adjusted for the change of quail-cxterm-package-ext-info.
17147
17148 2000-09-06 Gerd Moellmann <gerd@gnu.org>
17149
17150 * vc-hooks.el (toplevel): Don't require `vc' during compilation;
17151 requiring it leads to a recursive loading of vc.el and vc-hooks.el
17152 during bootstrap.
17153
17154 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
17155
17156 * vc.el: (toplevel): Don't require `dired' at run-time.
17157 (vc-dired-resynch-file): Remove autoload cookie.
17158
17159 2000-09-05 Andre Spiegel <spiegel@gnu.org>
17160
17161 * vc.el: Made several backend functions optional.
17162 (vc-default-responsible-p): New function.
17163 (vc-merge): Use RET for first version to trigger merge-news, not
17164 prefix arg.
17165 (vc-annotate): Handle backends that do not support annotation.
17166 (vc-default-merge-news): Removed. The existence of a merge-news
17167 implementation is now checked on caller sites.
17168
17169 * vc-hooks.el (vc-default-mode-line-string): Removed CVS special
17170 case.
17171
17172 * vc-cvs.el (vc-cvs-mode-line-string): New function, handles the
17173 special case that has been removed from the default in vc-hooks.el.
17174
17175 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
17176
17177 * vc.el (vc-log-edit): Properly handle the case where FILE is nil.
17178
17179 2000-09-05 Andre Spiegel <spiegel@gnu.org>
17180
17181 * vc-hooks.el: Require vc during compilation.
17182 (vc-file-setprop): Use `vc-touched-properties' if bound by the new
17183 macro `with-vc-properties' in vc.el.
17184 (vc-file-getprop): Doc fix.
17185 (vc-after-save): Call `vc-dired-resynch-file' only if vc is loaded.
17186
17187 * vc.el: Require dired-aux during compilation.
17188 (vc-name-assoc-file): Moved to vc-sccs.el.
17189 (with-vc-properties): New macro.
17190 (vc-checkin, vc-checkout, vc-revert, vc-cancel-version,
17191 vc-finish-steal): Use it.
17192 (vc-cancel-version): Moved RCS-specific code to vc-rcs.el. The call
17193 to the backend-specific function is now supposed to do the checkout,
17194 too.
17195 (vc-log-edit): Handle FILE being nil and added a FIXME for log-edit.
17196
17197 * vc-cvs.el (vc-cvs-checkin, vc-cvs-checkout): Don't bother to
17198 set file properties; that gets done in the generic code now.
17199
17200 * vc-rcs.el (vc-rcs-uncheck): Renamed to `vc-rcs-cancel-version'.
17201 Changed parameter list, added code from vc.el that does the
17202 checkout, possibly with a double-take.
17203
17204 * vc-sccs.el (vc-sccs-name-assoc-file): Moved here from vc.el.
17205 (vc-sccs-add-triple, vc-sccs-rename-file, vc-sccs-lookup-triple): Use
17206 the above under the new name.
17207 (vc-sccs-uncheck): Renamed to `vc-sccs-cancel-version'. Changed
17208 parameter list, added checkout command.
17209 (vc-sccs-checkin, vc-sccs-checkout): Don't bother to set file
17210 properties; that gets done in the generic code now.
17211
17212 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
17213
17214 * vc.el: Docstring fixes (courtesy of checkdoc).
17215
17216 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
17217
17218 * vc.el (vc-checkout-writable-buffer-hook)
17219 (vc-checkout-writable-buffer): Remove.
17220 (vc-start-entry): Always call vc-log-edit, never vc-log-mode.
17221 (vc-log-mode): Make it into a clean derived major mode.
17222 (vc-log-edit): Mark buffer unmodified (as vc-log-mode did) and use
17223 vc-log-mode if log-edit is not available.
17224 (vc-dired-mode-map): Don't set-keymap-parent yet.
17225 (vc-dired-mode): Do set-keymap-parent here.
17226 (vc-dired-buffers-for-dir): Nop if dired is not loaded.
17227
17228 2000-09-05 Gerd Moellmann <gerd@gnu.org>
17229
17230 * faces.el (set-face-attribute, face-spec-reset-face)
17231 (face-spec-set): Avoid consing by removing calls to `apply'.
17232
17233 * frame.el (frame-parameter): Move to C code.
17234
17235 2000-09-05 Dave Love <fx@gnu.org>
17236
17237 * help.el (help-manyarg-func-alist): Add ml-prefix-argument-loop,
17238 insert-before-markers-and-inherit. Now checked systematically!
17239
17240 2000-09-05 Alex Schroeder <alex@gnu.org>
17241
17242 * sql.el (sql-postgres): Use sql-postgres-options.
17243 (sql-postgres-options): New variable.
17244
17245 2000-09-05 Alex Schroeder <alex@gnu.org>
17246
17247 * sql.el (sql-mode-menu): Work around missing variable mark-active
17248 in XEmacs.
17249 (sql-mode): Added call to easy-menu-add for XEmacs compatibility.
17250 (sql-interactive-mode): Added call to easy-menu-add for XEmacs
17251 compatibility.
17252
17253 2000-09-04 Gerd Moellmann <gerd@gnu.org>
17254
17255 * vc.el (vc-dired-resynch-file): Add autoload cookie.
17256
17257 * vc.el (toplevel): Require `dired' at run-time for dired-mode-map.
17258
17259 * Makefile.in (DONTCOMPILE): Fix typo in file name.
17260
17261 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17262
17263 * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we
17264 don't support anything else under SCCS yet.
17265
17266 * vc-hooks.el: Minor doc fixes.
17267
17268 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17269
17270 * vc.el (vc-next-action-on-file): Do not visit the file if it's
17271 not necessary. If verbose in state `needs-patch', do the same as
17272 under `up-to-date'. When NOT verbose and `needs-patch', check out
17273 latest version instead of `merge-news'.
17274 (vc-next-action-dired): Don't mess with default-directory here; it
17275 breaks other parts of dired. It is the job of the
17276 backend-specific functions to adjust it temporarily if they need it.
17277 (vc-next-action): Remove a special CVS case.
17278 (vc-clear-headers): New optional arg FILE.
17279 (vc-checkin, vc-checkout): Set properties vc-state and
17280 vc-checkout-time properly.
17281 (vc-finish-steal): Call steal-lock, not steal, which doesn't exist.
17282 (vc-print-log): Use new backend function `show-log-entry'.
17283 (vc-cancel-version): Do the checks in a different order. Added a
17284 FIXME concerning RCS-only code.
17285
17286 * vc-rcs.el (vc-rcs-show-log-entry): New function.
17287 (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties.
17288
17289 * vc-cvs.el (vc-cvs-show-log-entry): New function.
17290
17291 * vc-hooks.el (vc-default-mode-line-string): Show state
17292 `needs-patch' as a `-' too.
17293
17294 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17295
17296 * vc.el (vc-responsible-backend): New optional arg REGISTER.
17297 (vc-default-could-register): New function.
17298 (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions.
17299 (vc-resynch-buffer): Call vc-dired-resynch-file.
17300 (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use
17301 vc-resynch-buffer instead of vc-resynch-window.
17302 (vc-next-action-dired): Don't redisplay here, that gets done as a
17303 result of the individual file operations.
17304 (vc-retrieve-snapshot): Corrected prompt order.
17305
17306 * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file.
17307
17308 * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp
17309 as well.
17310 (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p. Handle
17311 hostname regexps. Updated all callers.
17312 (vc-cvs-responsible-p): Handle directories as well.
17313 (vc-cvs-could-register): New function.
17314 (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file
17315 properties up-to-date.
17316
17317 * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the
17318 user whether to create one.
17319
17320 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17321
17322 * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to
17323 check out a non-existing file.
17324
17325 * vc-cvs.el (vc-cvs-checkout): Do the right thing when the
17326 workfile does not exist.
17327
17328 * vc.el (vc-version-diff): Use `require' to check for existence of
17329 diff-mode.
17330
17331 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17332
17333 * vc-cvs.el (vc-cvs-registered): Use new function
17334 vc-cvs-parse-entry to do the actual work.
17335
17336 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17337
17338 * vc-hooks.el (vc-find-backend-function): If function doesn't
17339 exist, return nil instead of error.
17340 (vc-call-backend): Doc fix.
17341
17342 * vc.el (vc-do-command): Doc fix.
17343 (vc-finish-logentry): When checking in from vc-dired, choose the
17344 right backend for logentry check.
17345 (vc-dired-mode-map): Inherit from dired-mode-map.
17346 (vc-dired-mode): Local value of dired-move-to-filename-regexp
17347 simplified.
17348 (vc-dired-state-info): Removed, updated caller.
17349 (vc-default-dired-state-info): Use parentheses instead of hyphens.
17350 (vc-dired-hook): Use vc-BACKEND-dir-state, if available.
17351 (vc-dired-listing-switches): New variable.
17352 (vc-directory): Use it, instead of dired-listing-switches.
17353
17354 * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too.
17355 (vc-cvs-dir-state): New function.
17356 (vc-cvs-dir-state-heuristic): New function, subroutine of the above.
17357 (vc-cvs-parse-entry): New function, also to be used in
17358 vc-cvs-registered.
17359
17360 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17361
17362 * vc.el (vc-revert-buffer): Hide the frame for dedicated windows
17363 *or* single-window-frames.
17364
17365 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17366
17367 * vc.el (vc-update-changelog): Split into generic part and default
17368 implementation. Doc string adapted.
17369 (vc-default-update-changelog): New function. Call the `rcs2log'
17370 script in exec-directory, to fix a long-standing nuisance.
17371
17372 * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that
17373 simply signals an error.
17374
17375 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17376
17377 * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the
17378 control-flow more clear and to avoid running `cvs' twice.
17379
17380 * vc.el (vc-next-action-on-file): Doc fix.
17381 (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode.
17382 (vc-print-log): Eval `file' before constructing the continuation.
17383
17384 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17385
17386 * vc.el (vc-next-action-on-file): Corrected several messages.
17387 (vc-merge): Add prefix arg `merge-news'; handle it.
17388
17389 * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this
17390 is not reached. It is.
17391 (vc-cvs-merge): Set state to 'edited after merge.
17392 (vc-cvs-merge-news): Set workfile version to nil if not known.
17393 (vc-cvs-latest-on-branch-p): Recommented. Candidate for removal.
17394
17395 * vc-*.el (vc-*-checkout): Switch off coding systems for checkout
17396 via stdout. (Merge from main line.)
17397
17398 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17399
17400 * vc.el (vc-finish-logentry): Thinko in the "same comment"
17401 detection.
17402
17403 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17404
17405 * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them
17406 against kill-all-local-variables.
17407 (vc-log-edit): Don't save vc-parent-buffer any more.
17408 (vc-last-comment-match): Initialize to an empty string.
17409 (vc-post-command-functions): New hook.
17410 (vc-do-command): Run it.
17411 (vc-next-action-on-file): Remove unnecessary pop-to-buffer.
17412 (vc-finish-logentry): Only add the comment to the ring if it's
17413 different from the last comment entered.
17414 (vc-new-comment-index): New function.
17415 (vc-previous-comment): Use it. Make the minibuffer message
17416 slightly less terse.
17417 (vc-comment-search-reverse): Make it work forward as well. Don't
17418 set vc-comment-ring-index if no match is found. Use
17419 vc-new-comment-index.
17420 (vc-comment-search-forward): Use vc-comment-search-reverse.
17421 (vc-dired-mode-map): Don't inherit from dired-mode-map since
17422 define-derived-mode will do it for us. Bind `v' to a keymap that
17423 inherits from vc-prefix-map so that we can bind `vt' without
17424 binding C-x v t.
17425 (vc-retrieve-snapshot): Parenthesis typo.
17426
17427 * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0
17428 to 1. Make sure to switch to *vc* before looking for an error
17429 message. Use vc-parse-buffer.
17430
17431 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17432
17433 * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR
17434 and NAME.
17435 (vc-retrieve-snapshot): Split into two parts.
17436 (vc-default-retrieve-snapshot): New function.
17437
17438 * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME.
17439 (vc-cvs-retrieve-snapshot): New function (untested).
17440 (vc-cvs-stay-local): Default to t.
17441 (vc-cvs-remote-p): New function and property.
17442 (vc-cvs-state): Stay local only if the above is t.
17443 (vc-handle-cvs): Removed.
17444 (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be
17445 done via vc-handled-backends now.
17446 (vc-cvs-header): Escape Id.
17447
17448 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17449
17450 * vc.el (vc-do-command): Remove unused commands.
17451 (vc-version-diff): Make sure default-directory ends with a slash.
17452 Move the window commands into a vc-exec-after.
17453 (vc-print-log): Move more of the code into the `vc-exec-after'.
17454
17455 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17456
17457 * vc.el (vc-exec-after): Fix disassembly of previous sentinel.
17458 (vc-print-log): Search current revision from beginning of buffer.
17459 (vc-revert-buffer): Clear echo area after the diff is finished.
17460 (vc-prefix-map): Removed definition of "t" for terse display in vc
17461 dired.
17462 (vc-dired-mode-map): Inherit from dired-mode-map. Added
17463 definition of "vt" for terse display.
17464 (vc-dired-mode): Fix dired-move-to-filename-regexp.
17465
17466 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17467
17468 * vc.el (vc-exec-after): Avoid caddr.
17469
17470 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17471
17472 * vc.el (vc-exec-after): New function.
17473 (vc-do-command): Use it to add a termination message for async
17474 procs.
17475 (vc-checkout): Try to handle a missing-backend situation.
17476 (vc-version-diff): Use vc-exec-after to fix the behavior for diffs
17477 of a directory with a backend using async diffs.
17478 (vc-print-log): Use vc-exec-after and use log-view-goto-rev if
17479 present.
17480
17481 * vc-sccs.el (vc-sccs-state-heuristic): Use
17482 file-ownership-preserved-p.
17483
17484 * vc-rcs.el (vc-rcs-state-heuristic): Use
17485 file-ownership-preserved-p.
17486 (vc-rcs-checkout): Remove the error-handling for missing-rcs.
17487
17488 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17489
17490 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to
17491 vc-do-command.
17492
17493 * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert
17494 when there are no changes.
17495
17496 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17497
17498 * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p.
17499
17500 * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p.
17501
17502 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17503
17504 * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el.
17505
17506 * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move
17507 the `fset' outside of the defvar so that it works even if
17508 vc-prefix-map was already defined.
17509 (vc-setup-buffer): New function, split out of vc-do-command.
17510 (vc-do-command): Allow BUFFER to be t to mean `just use the
17511 current buffer without any fuss'.
17512 (vc-version-diff): Change the `diff' backend operation to just put
17513 the diff in the current buffer without erasing it. Always use
17514 *vc-diff* even for directory-diffs. Use vc-setup-buffer. Protect
17515 shrink-window-if-larger-than-buffer.
17516 (vc-print-log): Change the `print-log' backend operation to just
17517 put the log in the current buffer without erasing it. Protect
17518 shrink-window-if-larger-than-buffer.
17519 (vc-update-change-log): Fix setd typo.
17520
17521 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis.
17522 (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer.
17523
17524 * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer.
17525 (vc-rcs-diff): Insert in the current buffer and remove unused arg
17526 CMP.
17527
17528 * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use
17529 with-temp-file. Use the new BUFFER=t argument to vc-do-command.
17530 (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer.
17531
17532 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17533
17534 * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is
17535 not possible, use vc-BACKEND-workfile-unchanged-p.
17536 (vc-default-workfile-unchanged-p): New function. Delegates to a
17537 full vc-BACKEND-diff.
17538
17539 * vc-hooks.el (vc-simple-command): Removed.
17540
17541 * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command
17542 instead of vc-simple-command.
17543 (vc-rcs-fetch-master-state): Removed check for unlocked-changes to
17544 avoid doing a diff when opening a file.
17545 (vc-rcs-state): Added check for unlocked-changes.
17546 (vc-rcs-header): Escape Id.
17547 (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION.
17548 (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific
17549 version.
17550
17551 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten.
17552 (vc-sccs-diff): Remove optional arg CMP.
17553 (vc-sccs-state): Call vc-workfile-unchanged-p, not the
17554 SCCS-specific function.
17555
17556 * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of
17557 vc-simple-command.
17558
17559 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17560
17561 * vc.el (vc-editable-p): Renamed from vc-writable-p.
17562 (with-vc-file, vc-merge): Use vc-editable-p.
17563 (vc-do-command): Remove unused var vc-file and fix the
17564 doubly-defined `status' var. Add a user message when starting an
17565 async command.
17566 (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry)
17567 (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file):
17568 Use with-current-buffer.
17569 (vc-buffer-sync): Use unless.
17570 (vc-next-action-on-file): If the file is 'edited by read-only,
17571 make it read-write instead of trying to commit.
17572 (vc-version-diff, vc-update-change-log): Use `setq
17573 default-directory' rather than `cd'.
17574 (vc-log-edit): Don't forget to set default-directory in the
17575 buffer.
17576
17577 * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis.
17578 (vc-sccs-state-heuristic): Use file-writable-p instead of
17579 comparing userids.
17580 (vc-sccs-checkout): Use `unless'.
17581
17582 * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead
17583 of comparing userids.
17584 (vc-rcs-fetch-master-state): Handle the case where rcs is missing.
17585 Simplify the logic by eliminating unreachable code.
17586 (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and
17587 just do a recursive call if we need to retry.
17588 (vc-rcs-checkout): Handle the case where rcs is missing by making
17589 the buffer read-write if requested and re-signalling the error.
17590
17591 * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP.
17592
17593 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17594
17595 * vc-hooks.el (vc-handled-backends): Docstring change.
17596 (vc-ignore-vc-files): Mark obsolete.
17597 (vc-registered): Check vc-ignore-vc-files.
17598 (vc-find-file-hook, vc-file-not-found-hook): Don't check
17599 vc-ignore-vc-files.
17600
17601 * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs.
17602
17603 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17604
17605 * vc.el (vc-checkout): Don't do anything special for ange-ftp
17606 files since ange-ftp already has vc-registered return nil.
17607
17608 * vc-sccs.el (vc-sccs-state): Use with-temp-buffer.
17609 (vc-sccs-workfile-version): Use with-temp-buffer and new
17610 vc-parse-buffer and don't bother setting the property.
17611 (vc-sccs-add-triple): Use with-current-buffer and
17612 find-file-noselect.
17613 (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if.
17614
17615 * vc-rcs.el (vc-rcs-find-most-recent-rev): New function. The code
17616 derives from the old vc-parse-buffer but uses the revision number
17617 rather than the date (much easier to compare robustly).
17618 (vc-rcs-fetch-master-state): Use `with-temp-buffer'. Adapt to the
17619 new vc-parse-buffer (and vc-rcs-find-most-recent-rev). Find the
17620 locking-user more directly. Check strict locking and set
17621 checkout-model appropriately.
17622 (vc-rcs-parse-locks): Remove.
17623 (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the
17624 new vc-parse-buffer (and vc-rcs-find-most-recent-rev).
17625 (vc-rcs-system-release): Use with-current-buffer and
17626 vc-parse-buffer.
17627 (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer.
17628
17629 * vc-hooks.el (vc-parse-buffer): Lobotomize the monster.
17630 (vc-simple-command): Docstring fix.
17631 (vc-registered): Align the way the file-handler is called with the
17632 way the function itself works.
17633 (vc-file-owner): Remove.
17634
17635 * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer. Reorder
17636 extraction of fields and call to file-attributes because of a
17637 temporary bug in rcp.el.
17638 (vc-cvs-fetch-status): Use with-current-buffer.
17639
17640 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17641
17642 * vc.el (vc-do-command): Use file-relative-name.
17643 (vc-responsible-backend): Use vc-backend if possible.
17644 (vc-create-snapshot): Improve the `interactive' spec. Add support
17645 for branches and dispatch to backend-specific `create-snapshot'.
17646 (vc-default-create-snapshot): New function, containing the bulk of
17647 the old vc-create-snapshot.
17648 (vc-retrieve-snapshot): Improve the interactive spec.
17649
17650 * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el.
17651 (vc-backend-hook-functions): Remove.
17652 (vc-find-backend-function): Don't try to load vc-X-hooks anymore.
17653 (vc-backend): Reintroduce the test for `file = nil' now that I
17654 know why it was there (and added a comment to better remember).
17655
17656 * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in
17657 code from vc-sccs-hooks.el.
17658 (vc-sccs-release, vc-sccs-system-release): Remove. Don't require
17659 'vc anymore.
17660 (vc-sccs-responsible-p): Use expand-file-name instead of concat
17661 and file-directory-p instead of file-exists-p.
17662 (vc-sccs-check-headers): Simplify the regexp.
17663
17664 * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code
17665 from vc-rcs-hooks.el. Don't require 'vc anymore.
17666 (vc-rcs-responsible-p): Use expand-file-name instead of concat and
17667 file-directory-p instead of file-exists-p.
17668
17669 * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code
17670 from vc-cvs-hooks.el.
17671 (proto vc-cvs-registered): Require 'vc-cvs instead of
17672 'vc-cvs-hooks. Don't require 'vc anymore.
17673 (vc-cvs-responsible-p): Use expand-file-name instead of concat and
17674 file-directory-p instead of file-exists-p.
17675 (vc-cvs-create-snapshot): New function, replacing
17676 vc-cvs-assign-name.
17677 (vc-cvs-assign-name): Remove.
17678
17679 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17680
17681 * vc-cvs.el (vc-cvs-header): New var.
17682
17683 * vc-rcs.el (vc-rcs-exists): Remove.
17684 (vc-rcs-header): New var.
17685
17686 * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use
17687 `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'.
17688 (vc-sccs-header): New var.
17689
17690 * vc.el (vc-do-command): Get rid of the `last' argument.
17691 (vc-header-alist): Remove, replaced by vc-X-header.
17692 (vc-insert-headers): Use vc-X-header instead of vc-header-alist.
17693 (vc-dired-hook): Use expand-file-name instead of concat.
17694 (vc-directory): Use file-name-as-directory.
17695 (vc-snapshot-precondition, vc-create-snapshot)
17696 (vc-retrieve-snapshot): Allow the command to operate on any
17697 directory.
17698
17699 * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either
17700 just removing the 'WORKFILE argument or by removing the 'MASTER
17701 argument and replacing `file' with (vc-name file).
17702
17703 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17704
17705 * vc.el: Update Copyright and add a crude list of backend funs.
17706 (vc-writable-p): New function.
17707 (with-vc-file): Use vc-writable-p.
17708 (vc-next-action-on-file): Update call to vc-steal-lock and cleanup.
17709 (vc-register): Avoid vc-name.
17710 (vc-locking-user): Remove.
17711 (vc-steal-lock): Make the `owner' arg non-optional.
17712 (vc-merge): Use vc-writable-p instead of vc-locking-user and
17713 vc-checkout-model.
17714 (vc-default-dired-state-info): Use vc-state instead of
17715 vc-locking-user and return special strings for special states.
17716 (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user
17717 and get rid of one of the special CVS cases.
17718 (vc-cancel-version): prettify error message with \\[...].
17719 (vc-rename-master): New function.
17720 (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn
17721 use vc-rename-master) instead of vc-BACKEND-record-rename. Make
17722 the CVS special case generic.
17723 (vc-default-record-rename): Remove.
17724 (vc-file-tree-walk-internal): Only call FUNC for files that are
17725 under control of some VC backend and replace `concat' with
17726 expand-file-name.
17727 (vc-file-tree-walk): Update docstring.
17728 (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot)
17729 (vc-retrieve-snapshot): Update call to vc-file-tree-walk.
17730
17731 * vc-sccs.el (vc-sccs-rename-file): Renamed from
17732 vc-sccs-record-rename. Use `find-file-noselect' rather than
17733 `find-file' and call `vc-rename-master' to do the actual move.
17734 (vc-sccs-diff): Remove unused `backend' variable.
17735
17736 * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version
17737 to delay loading of vc-sccs until it is really used.
17738 (vc-sccs-master-templates): Preload.
17739 (vc-sccs-state): Update call to vc-sccs-parse-locks.
17740 (vc-sccs-project-dir): Remove (merged into
17741 vc-sccs-search-project-dir).
17742 (vc-sccs-search-project-dir): Rewrite using file name handling ops
17743 rather than `concat', make sure it is preloaded and don't bother
17744 to check that the file actually exists.
17745 (vc-sccs-parse-locks): Remove unused `file' argument, remove
17746 `locks' argument (use buffer's content instead) and eliminate n^2
17747 behavior.
17748
17749 * vc-rcs.el: Update Copyright.
17750 (vc-rcs-rename-file): New function.
17751 (vc-rcs-diff): Remove unused `backend' variable.
17752
17753 * vc-hooks.el: Update Copyright.
17754 (vc-backend): Don't accept a nil argument any more.
17755 (vc-up-to-date-p): Turn into a defsubst.
17756 (vc-possible-master): New function.
17757 (vc-check-master-templates): Use `vc-possible-master' and allow
17758 funs in vc-X-master-templates to return a non-existent file.
17759
17760 * vc-cvs.el: Update Copyright.
17761 (vc-cvs-diff): Remove unused `backend' variable.
17762 (vc-cvs-checkout): Only toggle read-only if the buffer is setup right.
17763
17764 * vc-cvs-hooks.el: Preload a proto vc-cvs-registered.
17765
17766 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17767
17768 * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version
17769 since it can be called from vc-rcs.el.
17770 (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior.
17771
17772 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17773
17774 * vc.el (vc-version-diff): Expand file name read from the
17775 minibuffer. Handle the case when a previous version number can't
17776 be guessed. Give suitable messages when there were no differences
17777 found.
17778 (vc-clear-headers): Call backend-specific implementation, if one
17779 exists.
17780 (vc-cancel-version): Made error checks generic. When done, clear
17781 headers generically, too.
17782
17783 * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here
17784 from vc-clear-headers in vc.el.
17785
17786 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer
17787 correctly.
17788 (vc-rcs-latest-on-branch-p): Made second argument VERSION
17789 optional. Handle the case when it's not there.
17790
17791 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17792
17793 * vc.el (vc-locking-user): Moved from vc-hooks.el.
17794
17795 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17796
17797 * vc-hooks.el (vc-loadup): Remove.
17798 (vc-find-backend-function): Use `require'. Also, handle the case
17799 where vc-BACKEND-hooks.el doesn't exist.
17800 (vc-call-backend): Cleanup.
17801
17802 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17803
17804 * vc-rcs-hooks.el (vc-rcs-templates-grabbed,
17805 vc-rcs-grab-templates)
17806 (vc-rcs-registered): Remove. The default function works as well.
17807 * vc-sccs-hooks.el (vc-sccs-templates-grabbed,
17808 vc-sccs-grab-templates)
17809 (vc-sccs-registered): Remove. The default function works as well.
17810
17811 * vc.el (vc-version-diff): Left out a vc- in call to
17812 vc-call-backend.
17813 (vc-default-dired-state-info, vc-default-record-rename)
17814 (vc-default-merge-news): Update for the new backend argument.
17815
17816 * vc-hooks.el (vc-find-backend-function): Return a cons cell if
17817 using the default function.
17818 (vc-call-backend): If calling the default function, pass it the
17819 backend as first argument. Update the docstring accordingly.
17820 (vc-default-state-heuristic, vc-default-mode-line-string): Update
17821 for the new backend argument.
17822 (vc-make-backend-sym): Renamed from vc-make-backend-function.
17823 (vc-find-backend-function): Use the new name.
17824 (vc-default-registered): New function.
17825
17826 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17827
17828 * vc.el (vc-merge): Use vc-find-backend-function.
17829
17830 * vc-hooks.el (vc-backend-functions): Remove.
17831 (vc-loadup): Don't setup 'vc-functions.
17832 (vc-find-backend-function): New function.
17833 (vc-call-backend): Use above fun and populate 'vc-functions
17834 lazily.
17835 (vc-backend-defines): Remove.
17836
17837 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17838
17839 * vc.el (vc-register): Put a FIXME note for a newly found bug.
17840 Call vc-call-backend without the leading vc-.
17841 (vc-responsible-backend, vc-finish-logentry, vc-annotate)
17842 (vc-check-headers): Call vc-call-backend without the leading vc-.
17843 (vc-annotate-time-span): Replace confusing use of `cond' with `or'.
17844 (vc-annotate-display): Replace confusing use of `cond' with `or'.
17845 Call vc-call-backend without the leading vc-.
17846
17847 * vc-cvs.el (tail): Provide vc-cvs.
17848 * vc-sccs.el (tail): Provide vc-sccs.
17849 * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check.
17850
17851 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions)
17852 (vc-make-backend-function, vc-call): Pass names without leading
17853 `vc-' to vc-call-backend so we can blindly prefix them with vc-BACKEND.
17854 (vc-loadup): Don't load vc-X-hooks if vc-X is requested.
17855 (vc-call-backend): Always try to load vc-X-hooks.
17856 (vc-registered): Remove vc- in call to vc-call-backend.
17857
17858 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17859
17860 * vc.el (vc-process-filter): New function.
17861 (vc-do-command): Setup `vc-process-filter' for the async process.
17862 (vc-maybe-resolve-conflicts): New function to reduce
17863 code-duplication. Additionally, it puts the buffer in
17864 `smerge-mode' if applicable.
17865 (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after
17866 calling `merge-news'.
17867 (vc-merge): Use `vc-maybe-resolve-conflicts' after calling `merge'.
17868 (vc-log-edit): New function. Replacement for `vc-log-mode' by
17869 interfacing to log-edit.el.
17870 (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if
17871 log-edit is available.
17872 (vc-resolve-conflicts): Delegate to `smerge-ediff' if available.
17873
17874 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17875
17876 * vc.el (vc-register): Remove `vc-buffer-backend' setup.
17877 (vc-log-mode-map): New name for vc-log-entry-mode and merge the
17878 defvar and the initialization.
17879 (vc-log-mode): Minor docstring fix and use vc-log-mode-map.
17880
17881 * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove.
17882 (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling.
17883
17884 * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a FIXME.
17885
17886 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17887
17888 * vc.el (vc-file-clear-masterprops): Removed.
17889 (vc-checkin, vc-revert-buffer): Removed calls to the above.
17890 (vc-version-diff): Use buffer-size without argument.
17891 (vc-register): Heed vc-initial-comment.
17892
17893 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for
17894 default branch.
17895
17896 * vc-rcs.el (vc-rcs-register): Parse command output to find master
17897 file name and workfile version.
17898 (vc-rcs-checkout): Removed call to vc-file-clear-masterprops.
17899
17900 * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to
17901 vc-file-clear-masterprops.
17902
17903 * vc-sccs.el (vc-sccs-checkout): Removed call to
17904 vc-file-clear-masterprops. If writable, set vc-state to 'edited
17905 rather than user login name.
17906
17907
17908 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17909
17910 * vc.el (vc-workfile-unchanged-p): Remove unused argument
17911 `want-differences-if-changed' and simplify.
17912 (vc-next-action-on-file) [needs-merge]: Resynch the buffer.
17913 (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status
17914 output (which is invalid for async vc-diff) to decide whether to
17915 do the revert silently or not.
17916
17917 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17918
17919 * vc-hooks.el (vc-loadup): Load files quietly.
17920 (vc-call-backend): Oops, brain fart.
17921
17922 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17923
17924 * vc-cvs.el (vc-cvs-state): Typo.
17925 (vc-cvs-merge-news): Return the status code rather than the error msg.
17926
17927 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17928
17929 * vc.el (with-vc-file, vc-next-action, vc-version-diff)
17930 (vc-dired-mark-locked): Replaced usage of vc-locking-user with
17931 vc-state or vc-up-to-date-p.
17932 (vc-merge): Use vc-backend-defines to check whether merging is
17933 possible. Set state to 'edited after successful merge.
17934
17935 * vc-hooks.el (vc-locking-user): If locked by the calling user,
17936 return that name. Redocumented.
17937
17938 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17939
17940 * vc.el (vc-recompute-state, vc-next-action-on-file): Update to
17941 new `vc-state' semantics.
17942 (vc-finish-steal): Set 'vc-state to 'edited rather than setting
17943 'vc-locking-user to the current user.
17944 (vc-merge): Inline vc-backend-merge. Comment out code that I
17945 don't understand and hence can't adapt to the new `vc-state' and
17946 `vc-locking-user' semantics.
17947 (vc-backend-merge): Remove.
17948
17949 * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state
17950 rather than 'vc-locking-user.
17951
17952 * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'.
17953
17954 * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit.
17955 (vc-state): Don't use 'reserved any more. Just use the same
17956 convention as the one used for vc-<backend>-state where the
17957 locking user (as a string) is returned.
17958 (vc-locking-user): Update, based on the above convention. The
17959 'vc-locking-user property has disappeared.
17960 (vc-mode-line, vc-default-mode-line-string): Adapt to new `vc-state'.
17961
17962 * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state
17963 with a heuristic one.
17964 (vc-cvs-merge-news): Just use 'edited for the case with conflicts.
17965 (vc-cvs-checkin): Do a trivial parse to set the state in case of
17966 error. That allows us to get to 'needs-merge even in the
17967 stay-local case. There's still no way to detect 'needs-patch in
17968 such a setup (or to force an update for that matter).
17969 (vc-cvs-logentry-check): Remove, the default works as well.
17970
17971 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17972
17973 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs asynchronously.
17974
17975 * vc.el (vc-do-command): kill-all-local-variables, to reset any
17976 major-mode in which the buffer might have been put earlier. Use
17977 `remove' and `when'. Allow `okstatus' to be `async' and use
17978 `start-process' in this case.
17979 (vc-version-diff): Handle the case where the diff looks empty
17980 because of the use of an async process.
17981
17982 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17983
17984 * vc.el (vc-next-action-on-file): Removed optional parameter
17985 `simple'. Recompute state unconditionally.
17986 (vc-default-toggle-read-only): Removed.
17987
17988 * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only.
17989 (vc-toggle-read-only): Undid prev change.
17990
17991 * vc-cvs.el (vc-cvs-stay-local): Renamed from
17992 vc-cvs-simple-toggle. Redocumented.
17993 (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic.
17994 (vc-cvs-toggle-read-only): Removed.
17995
17996 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17997
17998 * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): Remove.
17999 (vc-prefix-map): Move from vc-hooks.el and make autoloaded.
18000 (vc-release-greater-or-equal-p): Move to vc-rcs.el.
18001 (vc-file-clear-masterprops): Braindead "fix". It was a nop and
18002 still is. So maybe it should be removed.
18003 (vc-head-version, vc-find-binary): Remove.
18004 (vc-recompute-state): Move from vc-hooks.el.
18005 (vc-next-action-on-file): Add a `simple' argument to allow
18006 avoiding the `recompute' step (use for vc-cvs-simple-toggle).
18007 (vc-default-toggle-read-only, vc-default-record-rename): New funs.
18008 (vc-next-action, vc-dired-hook): Use vc-state instead of vc-cvs-status.
18009 (vc-dired-mode-map): Properly defvar it.
18010 (vc-print-log): Call log-view-mode if available.
18011 (small-temporary-file-directory): defvar instead of use boundp.
18012 (vc-merge-news): Moved to vc-cvs.el.
18013 (vc-default-merge-news): New function.
18014
18015 * vc-sccs.el: Require 'vc and 'vc-sccs-hooks.
18016 (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks.
18017 (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the
18018 unknown `vc-latest-version' function. It should probably refer to
18019 vc-workfile-version or somesuch, but it's very unclear to me and I
18020 don't have SCCS to test things.
18021
18022 * vc-sccs-hooks.el: Provide 'vc-sccs-hooks.
18023 (vc-sccs-state-heuristic): Fix typo.
18024 (vc-sccs-workfile-unchanged-p): Add missing argument.
18025
18026 * vc-rcs.el: Require vc and vc-rcs-hooks.
18027 (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks.
18028 (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p).
18029 (vc-release-greater-or-equal-p): Move from vc.
18030 (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part,
18031 vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates.
18032 (vc-rcs-checkout): Add a missing `new-version' argument in the
18033 call to vc-rcs-latest-on-branch-p. Hopefully that was the right one.
18034
18035 * vc-rcs-hooks.el: Provide 'vc-rcs-hooks.
18036 (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el.
18037 (vc-rcs-latest-on-branch-p): Use the `version' argument rather
18038 than the apparently unbound `workfile-version'.
18039
18040 * vc-hooks.el (vc-master-templates): Def the obsolete var.
18041 (vc-file-prop-obarray): Use `make-vector'.
18042 (vc-backend-functions): Add new hookable functions
18043 vc-toggle-read-only, vc-record-rename and vc-merge-news.
18044 (vc-loadup): If neither backend nor default functions exist, use
18045 the backend function rather than nil.
18046 (vc-call-backend): If the function if not bound yet, try to load
18047 the non-hook file to see if it provides it.
18048 (vc-call): New macro plus use it wherever possible.
18049 (vc-backend-subdirectory-name): Use neither `vc-default-back-end'
18050 nor `vc-find-binary' since it's only called from
18051 vc-mistrust-permission which is only used once the backend is known.
18052 (vc-checkout-model): Fix parenthesis.
18053 (vc-recompute-state, vc-prefix-map): Move to vc.el.
18054
18055 * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler warnings).
18056 (vc-cvs-release, vc-cvs-system-release): Remove.
18057 (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables.
18058 (vc-cvs-dired-state-info): Use `cvs-state' and slightly different
18059 status symbols.
18060 (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el.
18061 (vc-cvs-toggle-read-only): First cut at a function to allow a
18062 cvs-status-free vc-toggle-read-only.
18063 (vc-cvs-merge-news): Move from cvs-merge-news in vc.el.
18064 (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of
18065 vc-cvs-status. Also set vc-state rather than vc-locking-user.
18066 (vc-cvs-checkout): Modify access rights directly if the user
18067 requested not to use `cvs edit'. And refresh the mode line.
18068
18069 * vc-cvs-hooks.el: Provide 'vc-cvs-hooks.
18070 (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el.
18071
18072 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
18073
18074 * vc-cvs.el (vc-cvs-checkout): Docstring fix. Added a `(if
18075 workfile' that got lost when the code was extracted from vc.el.
18076 And merged the tail with the rest of the code (not possible in the
18077 old vc.el where the tail was shared among all backends). And
18078 explicitly set the state to 'edited if `writable' is set.
18079
18080 * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name.
18081 (vc-cvs-state): Be careful to return the value from
18082 vc-cvs-parse-state.
18083 (vc-cvs-parse-status): Use expand-file-name. Don't set 'vc-state
18084 property but return it instead. Also be careful to handle a nil
18085 or "" `rev' when workfile is non-nil (it was handled properly when
18086 workfile was nil).
18087
18088 * vc.el: Removed those pesky unnecessary `(function' quotes.
18089 (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize
18090 directly in the defvar.
18091 (vc-do-command): Bind inhibit-read-only so as to properly handle
18092 the case where the destination buffer has been made read-only.
18093 (vc-diff): Delegate to vc-version-diff in all cases.
18094 (vc-version-diff): Setup the *vc-diff* buffer as was done in vc-diff.
18095 (vc-annotate-mode-variables): Removed (code moved partly to
18096 defvars and partly to vc-annotate-add-menu).
18097 (vc-annotate-mode): Turned into a derived-mode.
18098 (vc-annotate-add-menu): Moved in code in
18099 vc-annotate-mode-variables.
18100 (vc-update-change-log): Use make-temp-file if available.
18101
18102 2000-09-04 Martin Lorentzson <martinl@delysid.gnu.org>
18103
18104 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to
18105 `vc-checkout-model' updated to `vc-cvs-update-model'.
18106
18107 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18108
18109 * vc.el (vc-next-action-on-file): Added handling of state
18110 `unlocked-changes'.
18111 (vc-checkout-carefully): Is now practically obsolete, unless the
18112 above is too slow to be enabled unconditionally.
18113 (vc-update-change-log): Fixed typo.
18114
18115 * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'.
18116
18117 * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten.
18118 Now handles state `unlocked-changes'.
18119 (vc-sccs-workfile-unchanged-p): New function, to support the above.
18120
18121 * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'.
18122
18123 * vc-rcs-hooks.el (vc-rcs-state): Fixed typo.
18124 (vc-rcs-fetch-master-state): Bug fixes. Recognize state
18125 `unlocked-changes'.
18126 (vc-rcs-workfile-unchanged-p): Renamed from
18127 `vc-rcs-workfile-unchanged'. This is not a real backend-specific
18128 function yet, but supposed to become one soon.
18129
18130 * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to
18131 `vc-steal-lock'.
18132 (vc-call-backend): Changed error message.
18133 (vc-state): Added description of state `unlocked-changes'.
18134
18135 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18136
18137 * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to
18138 always return t in CVS-controlled directories.
18139
18140 * vc.el (vc-responsible-backend): New function.
18141 (vc-register): Largely rewritten.
18142 (vc-admin): Removed (implementation moved into vc-register).
18143 (vc-checkin): Redocumented.
18144 (vc-finish-logentry): If no backend defined yet (because we are in
18145 the process of registering), use the responsible backend.
18146
18147 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
18148 Updated function lists.
18149 (vc-call-backend): Fixed typo.
18150
18151 * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p):
18152 New functions.
18153 (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'.
18154 Removed query option. Redocumented.
18155
18156 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18157
18158 * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'.
18159
18160 * vc.el: Updated callers of `vc-checkout-required' to use
18161 `vc-checkout-model'.
18162
18163 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18164
18165 * vc-rcs.el (vc-rcs-backend-release-p): function added. other
18166 stuff updated to reference this function instead of the old
18167 `vc-backend-release-p'.
18168
18169 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18170
18171 * vc-sccs-hooks.el (vc-uses-locking): Renamed to
18172 vc-checkout-model. Return appropriate values. Updated callers.
18173
18174 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18175
18176 * vc.el (vc-backend-release, vc-backend-release-p): Moved to vc-rcs.el.
18177 (vc-backend-revert): Function moved into `vc-revert';
18178 `vc-next-action' must be updated to accomodate this change.
18179 (vc-backend-steal): Function moved into `vc-finish-steal'.
18180 (vc-backend-logentry-check): Function moved into
18181 `vc-finish-logentry'.
18182 (vc-backend-printlog): Function moved into `vc-print-log'.
18183 (vc-backend-uncheck): Function moved into `vc-cancel-version'.
18184 (vc-backend-assign-name): Function moved into
18185 `vc-create-snapshot'.
18186
18187 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18188
18189 * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking):
18190 Rename to vc-checkout-model. Return appropriate values.
18191 Update callers.
18192
18193 * vc-hooks.el (vc-backend-hook-functions): Rename vc-uses-locking
18194 to vc-checkout-model.
18195 (vc-checkout-required): Rename to vc-checkout-model.
18196 Re-implement and re-comment.
18197 (vc-after-save): Use vc-checkout-model.
18198
18199 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18200
18201 * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff):
18202 Update to use the vc-BACKEND-diff functions instead.
18203 `vc-diff' is now working.
18204
18205 * vc-rcs.el (vc-rcs-logentry-check): New function.
18206
18207 * vc-cvs.el (vc-cvs-logentry-check): New function.
18208
18209 * vc-sccs.el (vc-sccs-diff): Function changed name from
18210 `vc-backend-diff'. This makes `vc-diff' work.
18211
18212 * vc-hooks.el (vc-backend-functions): Add `vc-diff' to the list
18213 of functions possibly implemented in a vc-BACKEND library.
18214 (vc-checkout-required): Fix bug that caused an error to be
18215 signaled during `vc-after-save'.
18216
18217 * vc.el: Fix typo.
18218 This checkin is made with our new VC code base for the very first time.
18219 A simple `(vc-checkin (buffer-file-name))' was used to perform it.
18220
18221 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to
18222 `vc-checkout-required' updated to `vc-cvs-uses-locking'.
18223
18224 * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required'
18225 updated to `vc-uses-locking'.
18226 (vc-checkout-required): Call to backend function.
18227 `vc-checkout-required' updated to `vc-uses-locking' instead.
18228
18229 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to
18230 `vc-checkout-required' updated to `vc-rcs-uses-locking'.
18231
18232 * vc.el (vc-checkin): Merge with `vc-backend-checkin' and update
18233 to match the split into various backends.
18234 (vc-backend-checkin): Remove. Merge with `vc-checkin'.
18235 (vc-retrieve-snapshot): Bug fix.
18236
18237 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18238
18239 * vc-sccs.el (vc-sccs-release): Doc fix.
18240
18241 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18242
18243 * vc.el (vc-next-action-on-file): Bug found and fixed.
18244 (vc-checkout, vc-version-other-window, vc-retrieve-snapshot)
18245 (vc-cancel-version): Handle of vc-BACKEND-checkout updated.
18246
18247 * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version)
18248 (vc-rcs-checkout): Name space cleaned up. No more revision number
18249 crunching function names that are not prefixed with vc-rcs.
18250 (vc-rcs-checkout-model): Function added. References to
18251 `vc-checkout-model' replaced.
18252
18253 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18254
18255 * vc.el (vc-next-action-on-file): Rewritten for the new state model.
18256 (vc-backend-merge-news): Renamed to `vc-merge-news'. (Specific parts
18257 still need to be split, and implemented for RCS).
18258
18259 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18260
18261 * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed.
18262
18263 * vc-sccs.el (vc-sccs-admin): Added the query-only option as
18264 required by the vc.el file.
18265
18266 * vc-rcs.el (vc-rcs-admin): Added the query-only option as
18267 required by the vc.el file.
18268 (vc-rcs-exists): Function added.
18269
18270 * vc-cvs.el (vc-cvs-admin): Added the query-only option as
18271 required by the vc.el file.
18272
18273 * vc.el (vc-admin): Updated to handle selection of appropriate
18274 backend. Current implementation is crufty and need re-thinking.
18275
18276 * vc-hooks.el (vc-parse-buffer): Bug found and fixed.
18277
18278 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18279
18280 * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle
18281 beginning of annotate buffers correctly.
18282
18283 * vc.el (vc-annotate-get-backend, vc-annotate-display-default)
18284 (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate
18285 functionality updated quite a lot to support multiple backends.
18286 Variables `vc-annotate-mode', `vc-annotate-buffers',
18287 `vc-annotate-backend' added.
18288
18289 * vc-hooks.el (vc-backend-functions): `vc-annotate-command',
18290 `vc-annotate-difference' added to supported backend functions.
18291
18292 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18293
18294 * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout):
18295 Use with-temp-file instead of /bin/sh. Merged from mainline
18296
18297 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18298
18299 * vc-sccs-hooks.el (vc-sccs-registered): Updated.
18300
18301 * vc-rcs-hooks.el (vc-rcs-registered): Updated.
18302
18303 * vc-cvs-hooks.el (vc-cvs-registered): Updated.
18304
18305 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18306
18307 * vc-hooks.el: vc-state-heuristic added to
18308 vc-backend-hook-functions.
18309
18310 * vc-sccs-hooks.el (vc-sccs-registered): Bug fix.
18311
18312 * vc-rcs-hooks.el (vc-rcs-registered): Bug fix.
18313
18314 * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Rename
18315 `vc-uses-locking' to `vc-checkout-required'. Rename the `locked'
18316 state to `reserved'.
18317
18318 * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to
18319 `vc-checkout-required'. Rename the `locked' state to `reserved'.
18320
18321 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18322
18323 * vc-rcs-hooks.el: Implement new state model. Hardly anything
18324 untouched.
18325
18326 * vc-rcs.el (vc-rcs-latest-on-branch-p): Move to vc-rcs-hooks.el.
18327
18328 * vc.el (vc-update-change-log): Use small-temporary-file-directory,
18329 if defined. (Merged from main line, slightly adapted.)
18330
18331 * vc-cvs.el (vc-cvs-annotate-difference): Handle possible
18332 millenium problem (merged from mainline).
18333
18334 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18335
18336 * vc-cvs.el: Split the annotate feature into a BACKEND-specific
18337 part and moved the non-BACKEND stuff to vc.el.
18338
18339 * vc.el: Split the annotate feature into a BACKEND specific part
18340 and moved it from the vc-cvs.el file to this one.
18341
18342 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18343
18344 * vc-hooks.el: Implement new state model.
18345 (vc-state, vc-state-heuristic, vc-default-state-heuristic): New funs.
18346 (vc-locking-user): Simplify. Now only needed if the file is
18347 locked by somebody else.
18348 (vc-lock-from-permissions): Remove. Functionality is in
18349 vc-sccs-hooks.el and vc-rcs-hooks.el now.
18350 (vc-mode-line-string): New name for former vc-status. Adapted.
18351 (vc-mode-line): Adapt to use the above. Remove optional parameter.
18352
18353 * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New funs.
18354 Various simplifications and adaptations all over the place.
18355
18356 * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New funs.
18357 Simplify and adapt the rest.
18358
18359 * vc.el (vc-resynch-window): Add TODO comment: check for
18360 interaction with view mode according to recent RCS change.
18361 (vc-backend-merge-news): Merge "CMUP" patch from mainline.
18362
18363 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18364
18365 * vc.el: Convert the remaining function comments to docstrings.
18366
18367 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18368
18369 * vc.el (vc-backend-release, vc-release-greater-or-equal)
18370 (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part)
18371 (vc-minor-part, vc-previous-version): Functions that operate and
18372 compare revision numbers got proper documentation. Comments added
18373 about their possible removal.
18374
18375 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18376
18377 * vc.el (vc-latest-on-branch-p): Function removed and replaced in
18378 the vc-backend.el files.
18379
18380 * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added.
18381
18382 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p)
18383 (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part)
18384 (vc-rcs-previous-version): Functions added.
18385
18386 * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added.
18387
18388 * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed.
18389
18390 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18391
18392 * vc-hooks.el (vc-master-templates): Is really obsolete.
18393 Comment out the definition for now. What is the right procedure
18394 to get rid of it?
18395 (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely
18396 rewritten.
18397 (vc-default-registered): Remove.
18398 (vc-check-master-templates): New function; does mostly what the
18399 above did before.
18400 (vc-locking-user): Don't rely on the backend to set the property.
18401
18402 * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values.
18403 Rewrite documentation.
18404 (vc-rcs-templates-grabbed): New variable.
18405 (vc-rcs-grab-templates): New function.
18406 (vc-rcs-registered): Rewrite to use above mechanism.
18407
18408 * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values.
18409 Rewrite documentation.
18410 (vc-sccs-templates-grabbed): New variable.
18411 (vc-sccs-grab-templates): New function.
18412 (vc-sccs-registered): Rewrite to use above mechanism.
18413 (vc-sccs-search-project-dir): Rename from vc-search-sccs-project-dir.
18414 Don't throw the result, simply return it.
18415
18416 * vc-cvs-hooks.el (vc-cvs-master-templates): Remove.
18417 (vc-cvs-find-master): Remove. Code is now in vc-cvs-registered.
18418 (vc-cvs-registered): Does the check itself now. Simplify.
18419
18420 * vc-cvs.el (vc-cvs-revert): Merge and adapt "unedit" patch
18421 from main line.
18422
18423 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18424
18425 * vc-cvs.el (vc-cvs-diff): New function.
18426
18427 * vc-sccs.el (vc-sccs-diff): New function.
18428
18429 * vc-rcs.el (vc-rcs-diff): New function.
18430 (vc-rcs-checkout): Bug (typo) found and fixed.
18431 (vc-rcs-register-switches): New variable.
18432
18433 * vc.el (vc-backend-diff): Function removed and placed in the
18434 backend files.
18435
18436 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18437
18438 * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added.
18439
18440 * vc.el (vc-backend-checkout): Function removed and replaced in
18441 the vc-backend.el files.
18442
18443 * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'.
18444
18445 * vc.el (vc-backend-admin): Removed and replaced in the
18446 vc-backend.el files.
18447
18448 * vc.el (Martin): Removed all the annotate functionality since it
18449 is CVS backend specific.
18450
18451 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18452
18453 * spec.txt: Added specification of vc-state.
18454
18455 * vc-sccs-hooks.el (vc-sccs-master-properties):
18456 Remove handling of vc-latest-version and
18457 vc-your-latest-version. What used to be vc-latest-version, is now
18458 returned as vc-workfile-version.
18459 (vc-sccs-workfile-version): Adapt.
18460
18461 2000-09-04 Dave Love <fx@gnu.org>
18462
18463 * vc.el: [Merged from mainline.]
18464 (vc-dired-mode): Make the dired-move-to-filename-regexp
18465 regexp match the date, to avoid treating date as file size.
18466 Add YYYY S option to WESTERN/
18467
18468 2000-09-04 Dave Love <fx@gnu.org>
18469
18470 * vc.el: Require `compile' when compiling.
18471 (vc-logentry-check-hook): New option.
18472 (vc-steal-lock): Use compose-mail.
18473 (vc-dired-mode-map): Defvar when compiling.
18474 (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to
18475 vc-sccs.el and renamed. Callers changed.
18476 (vc-backend-checkout, vc-backend-logentry-check)
18477 (vc-backend-merge-news): Doc fix.
18478 (vc-default-logentry-check): New function.
18479 (vc-backend-checkin, vc-backend-revert, vc-backend-steal)
18480 (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name)
18481 (vc-backend-merge): Doc fix. Use backend functions.
18482 (vc-check-headers): Use backend functions.
18483
18484 * vc-cvs.el: Require vc when compiling.
18485 (vc-cvs-register-switches): Doc fix.
18486 (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type.
18487 (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge)
18488 (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin):
18489 New functions (code from vc.el).
18490 (vc-annotate-display-default): Fix interactive spec.
18491 (vc-annotate-time-span): Doc fix.
18492
18493 * vc-rcs.el: Require vc when compiling.
18494 (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge)
18495 (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert)
18496 (vc-rcs-checkin): New functions (code from vc.el).
18497 (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout):
18498 Doc fix.
18499 (vc-rcs-release): Deleted. (Duplicated vc-rcs-system-release).
18500
18501 * vc-sccs.el: Require vc when compiling.
18502 (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge)
18503 (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck)
18504 (vc-sccs-revert)
18505 (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code
18506 from vc.el).
18507 (vc-sccs-add-triple, vc-sccs-record-rename)
18508 (vc-sccs-lookup-triple): Moved from vc.el and renamed.
18509 (vc-sccs-admin): Doc fix.
18510
18511 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18512
18513 * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part)
18514 (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release)
18515 (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions
18516 from vc.el.
18517
18518 * vc-sccs.el (vc-admin-sccs): Added from vc.el
18519
18520 * vc-cvs.el: Moved the annotate functionality from vc.el.
18521 (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el.
18522
18523 2000-09-04 Dave Love <fx@gnu.org>
18524
18525 * vc.el (vc-backend-release): Call vc-system-release.
18526
18527 * vc-sccs.el (vc-sccs-system-release):
18528 Renamed from vc-sccs-backend-release.
18529
18530 * vc-rcs.el (vc-rcs-system-release):
18531 Renamed from vc-rcs-backend-release.
18532
18533 * vc-cvs.el (vc-cvs-system-release):
18534 Renamed from vc-cvs-backend-release.
18535
18536 2000-09-04 Dave Love <fx@gnu.org>
18537
18538 * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to
18539 backend files.
18540 (vc-backend-release): Dispatch to backend functions.
18541 (vc-backend-release-p): Don't mention CVS, RCS. [The SCCS case
18542 probably needs attention.]
18543
18544 * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el.
18545 (vc-sccs-backend-release): New function.
18546
18547 * vc-cvs.el (vc-cvs-release): Moved from vc.el.
18548 (vc-cvs-backend-release): New function.
18549
18550 * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge):
18551 Doc fix.
18552 (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed.
18553 (vc-default-dired-state-info): New function.
18554 (vc-dired-state-info): Dispatch to backends.
18555 (vc-dired-hook): Doc fix. Simplify, pending removal of CVS specifics.
18556
18557 * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved
18558 from vc.el and renamed.
18559
18560 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18561
18562 * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p)
18563 (vc-version-other-window, vc-backend-assign-name): Removed
18564 references to vc-latest-version; sometimes changed into
18565 vc-workfile-version.
18566
18567 * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to
18568 vc-rcs-master-workfile-version.
18569 (vc-rcs-workfile-version): Use the above. Don't call
18570 vc-latest-version (that was unreachable code, anyway).
18571 (vc-rcs-fetch-master-properties): Doc fix.
18572
18573 * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed.
18574 (vc-backend-hook-functions): Removed them from this list, too.
18575 (vc-fetch-properties): Removed.
18576 (vc-workfile-version): Doc fix.
18577
18578 * vc-rcs-hooks.el (vc-rcs-consult-headers): New function.
18579 (vc-rcs-workfile-version, vc-rcs-locking-user)
18580 (vc-rcs-uses-locking): Use it.
18581
18582 * vc-hooks.el (vc-consult-rcs-headers):
18583 Moved into vc-rcs-hooks.el, under the name
18584 vc-rcs-consult-headers.
18585
18586 * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS
18587 headers.
18588 (vc-cvs-find-master): Use this name only; correct different
18589 versions of the name.
18590
18591 * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user):
18592 New functions.
18593 (vc-sccs-locking-user): Use the latter.
18594
18595 * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user):
18596 New functions.
18597
18598 * vc-hooks.el (vc-master-locks, vc-master-locking-user):
18599 Moved into both
18600 vc-rcs-hooks.el and vc-sccs-hooks.el. These properties and access
18601 functions are implementation details of those two backends.
18602
18603 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18604
18605 * vc-rcs-hooks.el (vc-rcs-fetch-master-properties)
18606 (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks.
18607
18608 * vc-sccs-hooks.el (vc-sccs-fetch-master-properties)
18609 (vc-sccs-parse-locks): SCCS-specific code moved here from
18610 vc-hooks.
18611
18612 * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific
18613 code moved here from vc-hooks.
18614
18615 * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split
18616 into back-end specific parts and removed. Callers not updated
18617 yet; because I guess these callers will disappear into back-end
18618 specific files anyway.
18619
18620 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18621
18622 * vc.el (with-vc-file, vc-next-action-on-file, vc-merge)
18623 (vc-backend-checkout): Changed calls to `vc-checkout-model' to
18624 `vc-uses-locking'.
18625
18626 * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking.
18627 Store yes/no in the property, and return t/nil. Updated all
18628 callers.
18629
18630 * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to
18631 vc-sccs-uses-locking. Don't set property.
18632 (vc-sccs-locking-user): Don't set property.
18633
18634 * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to
18635 vc-cvs-uses-locking. Don't set property here; leave that to
18636 vc-hooks.
18637 (vc-cvs-locking-user): Reflect above change. Streamlined.
18638
18639 * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to
18640 vc-rcs-uses-locking.
18641 (vc-rcs-locking-user): Reflect above change.
18642
18643 2000-09-04 Dave Love <fx@gnu.org>
18644
18645 * vc-sccs-hooks.el (vc-sccs-checkout-model): New function.
18646
18647 * vc-rcs-hooks.el (vc-rcs-checkout-model): New function.
18648
18649 * vc-hooks.el (vc-checkout-model): Punt to backends.
18650
18651 * vc-cvs-hooks.el (vc-cvs-checkout-model): New function.
18652
18653 * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status.
18654
18655 * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user):
18656 New functions.
18657
18658 * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user):
18659 New functions.
18660
18661 * vc-cvs-hooks.el (vc-handle-cvs): Doc fix.
18662 (vc-cvs-workfile-version, vc-cvs-locking-user): New functions.
18663
18664 * vc-hooks.el (vc-default-locking-user): New function.
18665 (vc-locking-user, vc-workfile-version): Punt to backends.
18666
18667 2000-09-04 Dave Love <fx@gnu.org>
18668
18669 * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff)
18670 (vc-master-workfile-version): Moved from vc-hooks.
18671
18672 * vc-rcs-hooks.el: Fix duplicate code in last change.
18673
18674 * vc-rcs-hooks.el: Require vc-hooks when compiling.
18675 (vc-rcs-master-templates): Improve :type.
18676 (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff,
18677 vc-master-workfile-version): Moved from vc-hooks.
18678
18679 * vc-sccs-hooks.el: Require vc-hooks when compiling.
18680 (vc-sccs-master-templates): Improve :type.
18681 (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file.
18682
18683 * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed.
18684
18685 * vc-cvs-hooks.el: Require vc-hooks when compiling.
18686 (vc-cvs-master-templates): Improve :type. Use
18687 vc-cvs-find-cvs-master.
18688 (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here
18689 from vc-hooks.
18690 (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master.
18691
18692 * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status):
18693 Moved to vc-cvs-hooks.
18694
18695 * vc-hooks.el: Add doc strings in various places. Simplify the
18696 minor mode setup.
18697 (vc-handled-backends): New user variable.
18698 (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor
18699 simplification.
18700
18701 2000-09-04 Dave Love <fx@gnu.org>
18702
18703 * vc.el: Some doc fixes for autoloaded and interactive functions.
18704 Fix compilation warnings from ediff stuff.
18705 (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix.
18706
18707 * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version.
18708
18709 * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version.
18710
18711 * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version.
18712
18713 2000-09-04 Dave Love <fx@gnu.org>
18714
18715 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
18716 New variable.
18717 (vc-make-backend-function, vc-loadup, vc-call-backend)
18718 (vc-backend-defines): New functions.
18719
18720 * vc-hooks.el: Various doc fixes.
18721 (vc-default-back-end, vc-follow-symlinks): Custom fix.
18722 (vc-match-substring): Function removed. Callers changed to use
18723 match-string.
18724 (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook):
18725 Simplify.
18726
18727 2000-09-04 Dave Love <fx@gnu.org>
18728
18729 * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom
18730 type.
18731 (vc-sccs-project-dir, vc-search-sccs-project-dir)
18732 (vc-sccs-registered): Doc fix.
18733
18734 * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type.
18735 (vc-cvs-registered): Doc fix.
18736
18737 * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type.
18738 (vc-rcs-registered): Doc fix.
18739
18740 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18741
18742 * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file.
18743
18744 * vc-hooks.el: vc-registered has been renamed
18745 vc-default-registered. Some functions have been moved to the
18746 backend specific files. they all support the
18747 vc-BACKEND-registered functions.
18748
18749 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18750
18751 * vc-hooks.el: This is 1998-11-11T18:47:32Z!kwzh@gnu.org from the emacs sources
18752
18753 * vc.el: This is 1999-03-13T05:04:24Z!kwzh@gnu.org from the emacs sources
18754
18755 2000-09-04 Dave Love <fx@gnu.org>
18756
18757 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run
18758 menu-bar-update-hook.
18759
18760 * help.el (help-manyarg-func-alist): Add
18761 find-operation-coding-system.
18762
18763 * wid-edit.el (widget-sexp-validate): Fix garbled code.
18764
18765 * custom.el (custom-set-variables): Print message about errors in
18766 setting.
18767
18768 2000-09-03 Andrew Innes <andrewi@gnu.org>
18769
18770 * makefile.w32-in: Change to DOS line endings.
18771
18772 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
18773
18774 * mouse.el (mouse-popup-menubar): Supply the prompt string for
18775 minor-mode keymaps, if they don't have one.
18776
18777 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
18778
18779 * eshell/esh-module.el (eval-when-compile): Don't lose if
18780 esh-module.el's file name is truncated to DOS 8+3 limits.
18781
18782 2000-09-01 John Wiegley <johnw@gnu.org>
18783
18784 * pcomplete.el (pcomplete-dirs-or-entries): Added a missing
18785 predicate, which caused entries in the completion list to be
18786 doubled.
18787
18788 2000-08-30 John Wiegley <johnw@gnu.org>
18789
18790 * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct
18791 sending to subprocesses. Also, hook pre-command-hook if
18792 `eshell-send-direct-to-subprocesses' is non-nil.
18793 (eshell-send-direct-to-subprocesses): New config variable. If t,
18794 subprocess input is send immediately.
18795 (eshell-toggle-direct-send): New function.
18796 (eshell-self-insert-command): New function.
18797 (eshell-intercept-commands): New function.
18798 (eshell-send-input): If direct subprocess sending is enabled,
18799 don't echo any input to the Eshell buffer. Let the subprocess
18800 handle that. This requires "stty echo" in bash, for example.
18801
18802 2000-08-28 John Wiegley <johnw@gnu.org>
18803
18804 * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added
18805 completion function for Eshell's implementation of `unset'.
18806
18807 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
18808
18809 * info.el (Info-directory-list): Doc fix.
18810
18811 2000-08-31 Peter Breton <pbreton@ne.mediaone.net>
18812
18813 * filecache.el (file-cache-add-directory-using-find): Don't quote
18814 wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
18815
18816 2000-08-31 Kenichi Handa <handa@etl.go.jp>
18817
18818 * help.el (help-make-xrefs): Don't make hyperlinks for incorrect
18819 coding systems.
18820
18821 2000-08-30 Andrew Innes <andrewi@gnu.org>
18822
18823 * timer.el (run-with-idle-timer): Undo last change, so that timer
18824 is not activated immediately if Emacs is already idle. Some
18825 existing code relies on this behaviour.
18826
18827 2000-08-30 Miles Bader <miles@gnu.org>
18828
18829 * frame.el (set-frame-font): Do completion of font-name for
18830 interactive use.
18831
18832 2000-08-30 Kenichi Handa <handa@etl.go.jp>
18833
18834 * international/quail.el (quail-start-translation): Bind locally
18835 last-command-event, last-command, and this-command.
18836 (quail-start-conversion): Likewise.
18837 (quail-self-insert-command): Fix docstring.
18838
18839 2000-08-29 Gerd Moellmann <gerd@gnu.org>
18840
18841 * progmodes/executable.el
18842 (executable-make-buffer-file-executable-if-script-p): Check that
18843 buffer contains at least 2 characters.
18844
18845 2000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
18846
18847 * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix.
18848
18849 2000-08-29 Dave Love <fx@gnu.org>
18850
18851 * diff-mode.el (diff-mode) <defgroup>: Add :version.
18852 (diff-mode-shared-map): Bind mouse-2.
18853 (diff-imenu-generic-expression): New variable.
18854 (diff-mode): Use it.
18855
18856 * mouse.el (mouse-major-mode-menu): Use local-key-binding.
18857 (mouse-popup-menubar): Add minor mode menus.
18858 (popup-menu): Check for lookup-key returning number.
18859
18860 2000-08-29 Miles Bader <miles@gnu.org>
18861
18862 * comint.el (comint-send-input): Create overlays using the proper
18863 front/read-advance arguments.
18864
18865 2000-08-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
18866
18867 * ps-print.el: Even/odd pages printing. Doc fix.
18868 (ps-print-version): New version number (6.0).
18869 (ps-setup, ps-print-page-p, ps-background-text, ps-background-image)
18870 (ps-background, ps-begin-file, ps-begin-job): Code fix.
18871 (ps-print-duplex-feature): Variable eliminated.
18872 (ps-even-or-odd-pages): New variable.
18873
18874 * progmodes/ebnf2ps.el: Doc fix.
18875 (ebnf-version): New version (3.3).
18876 (ebnf-user-arrow): Change variable customization to sexp.
18877 (ebnf-user-arrow): Function eliminated.
18878 (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix.
18879
18880 2000-08-29 Kenichi Handa <handa@etl.go.jp>
18881
18882 * help.el (help-xref-mule-regexp): New variable.
18883 (help-make-xrefs): Handle help-xref-mule-regexp.
18884
18885 * international/mule-cmds.el (help-xref-mule-regexp-template): New
18886 variable.
18887 (describe-input-method): Temporarily activate the specfied input
18888 method to display the information.
18889 (describe-language-environment): Hyperlinks to mule related items.
18890
18891 * international/mule-diag.el (charset-multibyte-form-string): New
18892 function.
18893 (list-character-sets-1): Use charset-multibyte-form-string.
18894 (describe-character-set): New function.
18895 (describe-coding-system): Hyperlinks to safe character sets.
18896
18897 * international/quail.el (quail-help): New arg PACKAGE.
18898 Hyperlinks to mule related items.
18899 (quail-help-insert-keymap-description): Use
18900 substitute-command-keys instead of describe-bindings.
18901 (quail-translation-help): Hyperlinks to mule related items.
18902
18903 2000-08-28 John Wiegley <johnw@gnu.org>
18904
18905 * eshell/esh-util.el (eshell-flatten-list): It's not too wise to
18906 have a defsubst call itself. Made `eshell-flatten-list' back into
18907 a function again.
18908
18909 * eshell/em-smart.el (eshell-smart-redisplay): Added a safety
18910 catch, in case re-centering point at bottom messes up the display.
18911 This happens frequently in Emacs 21, due I believe to variable
18912 line heights.
18913
18914 * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order
18915 to call `find-tag-interactive'.
18916
18917 * eshell/em-dirs.el (eshell/cd): Use buffered printing to display
18918 the list of remember directories.
18919
18920 2000-08-28 John Wiegley <johnw@gnu.org>
18921
18922 * align.el: Test align-region-separate to see if it's a symbol.
18923
18924 2000-08-28 John Wiegley <johnw@gnu.org>
18925
18926 * eshell/esh-util.el (eshell-flatten-list): Made this function
18927 into a defsubst form. It gets used very frequently, although
18928 calls don't occur all that often.
18929
18930 * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
18931 examining it.
18932
18933 * eshell/esh-cmd.el (eshell-rewrite-while-command):
18934 (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
18935 `eshell-protect'.
18936 (eshell-copy-handles): Created a new macro for duplicating the
18937 current set of open handles. This is needed by the looping
18938 functions.
18939 (eshell-do-eval): Fixed while and if, so that the eshell-test-body
18940 is not incorrectly stomped on.
18941
18942 * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
18943 declaration for pcomplete-use-paring.
18944 (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
18945 value of eshell-cmpl-use-paring.
18946 * pcomplete.el (pcomplete-use-paring): New config variable, to
18947 indicate whether paring should be used.
18948 (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
18949 completion alternatives that have already been used.
18950
18951 * eshell/esh-mode.el (eshell-repeat-argument): Added function,
18952 bound to C-c C-y, which will repeat the previous N arguments
18953 (based on prefix argument).
18954 (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
18955
18956 * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
18957 if there is no *Help* buffer. This is for XEmacs, which renames
18958 its help buffers uniquely. TODO: Find out what the current buffer
18959 name to delete is.
18960
18961 * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
18962 first entry that correlates to a passwd/group number. Later
18963 entries (used for group/user name aliasing to multiple IDs) are
18964 ignored.
18965
18966 * eshell/em-xtra.el (eshell/expr):
18967 * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
18968 (eshell-grep, eshell/diff, eshell/locate):
18969 * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
18970 argument list, before passing it to the system command.
18971
18972 * eshell/esh-mode.el (eshell-find-tag): Added a special version of
18973 `find-tag' for use at final position in Eshell buffers (which
18974 otherwise triggers an error on Emacs 21).
18975 (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
18976 buffer, if it is currently bound to `find-tag'.
18977
18978 * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
18979 in the list of matched Makefile names.
18980 (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
18981 directory, prefer its contents to Makefile.
18982
18983 * eshell/em-dirs.el (eshell/cd): cd commands that look up
18984 directory parts (like "cd old new", or "cd =regexp"), are now case
18985 sensitive on non-Windows/DOS platforms.
18986
18987 * eshell/esh-mode.el (eshell-parse-command-input): When a user
18988 types RET after an open delimiter (like "), display a message
18989 indicating that Eshell is waiting for the closing delimiter.
18990
18991 * eshell/esh-var.el (eshell/unset): Added a command for unsetting
18992 environment variables.
18993
18994 * eshell/em-unix.el (eshell/diff): Added logic to fail more
18995 gracefully if the user enters incorrect arguments.
18996
18997 * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
18998 Eshell buffers.
18999
19000 * eshell/esh-var.el (eshell-interpolate-variable):
19001 * eshell/esh-mode.el (eshell-move-argument):
19002 * eshell/em-unix.el (eshell-du-sum-directory):
19003 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
19004 * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
19005 (not (= ...)).
19006
19007 * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
19008 to ensure the `preserve' flag gets propagated when doing recursive
19009 directory copies.
19010
19011 2000-08-28 Stefan Monnier <monnier@cs.yale.edu>
19012
19013 * eshell/em-hist.el (eshell-put-history, eshell-get-history):
19014 Don't convert \n into \0177 in memory.
19015 (eshell-read-history, eshell-write-history): Convert \n to \0177,
19016 and back again, when reading and writing.
19017
19018 2000-08-28 Eli Zaretskii <eliz@is.elta.co.il>
19019
19020 * eshell/esh-util.el (eshell-processp): Added to relieve constant
19021 testing of `fboundp' on `processp'.
19022
19023 * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
19024 (eshell/jobs): Don't call process-list if it is not bound.
19025 (eshell-gather-process-output): Support systems where async
19026 subprocesses aren't supported.
19027 (eshell-scratch-buffer, eshell-last-sync-output-start): New
19028 variables.
19029
19030 * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
19031 eshell-do-eval returns t.
19032 (eshell-do-pipelines-synchronously): New defmacro.
19033 (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
19034 when async subprocesses aren't supported.
19035 (eshell-do-eval): Use eshell-processp. Don't throw eshell-defer
19036 if async subprocesses aren't supported.
19037 (eshell-resume-command): Don't assume STATUS is a string.
19038
19039 * eshell/em-unix.el (eshell/rm): Use eshell-processp.
19040
19041 * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
19042 (eshell-close-target, eshell-get-target): Use eshell-processp.
19043 (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
19044 fix.
19045 (eshell-get-target, eshell-create-handles): Doc fix.
19046
19047 2000-08-28 Miles Bader <miles@lsi.nec.co.jp>
19048
19049 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the
19050 criterion to include commands that output something, as long as it
19051 leaves both the command and the end-of-buffer visible when the
19052 command has exited.
19053 (eshell-review-quick-commands): Adjust the help doc string
19054 accordingly.
19055
19056 2000-08-28 Peter Breton <pbreton@ne.mediaone.net>
19057
19058 * locate.el (locate): Cleaned up locate command's interactive prompting
19059 Thanks to Fran\e,Ag\e(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions.
19060
19061 * filecache.el (file-cache-case-fold-search): New variable
19062 (file-cache-assoc-function): New variable
19063 (file-cache-minibuffer-complete): Use file-cache-assoc-function.
19064 Use file-cache-case-fold-search variable
19065 (file-cache-add-file): Use file-cache-assoc-function
19066 (file-cache-delete-file): likewise
19067 (file-cache-directory-name): likewise
19068 (file-cache-debug-read-from-minibuffer): likewise
19069
19070 2000-08-28 Gerd Moellmann <gerd@gnu.org>
19071
19072 * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
19073 (abbrev-table-name): New function.
19074 (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
19075 If non-nil list local abbrev, only.
19076
19077 2000-08-28 Stanislav Shalunov <shalunov@internet2.edu>
19078
19079 * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*"
19080 from Gnus support code, and use special article copy buffer
19081 `(gnus-original-article-buffer)' instead. This allows to get rid
19082 of article-hide-headers usage (which breaks in the latest Gnus
19083 version). Thanks to Detlev Zundel.
19084
19085 2000-08-28 Kenichi Handa <handa@etl.go.jp>
19086
19087 * international/quail.el (quail-use-package): Hide "... loaded"
19088 message.
19089 (quail-start-translation, quail-start-conversion): Likewise.
19090
19091 * international/kkc.el (kkc-region): Hide "... loaded" message.
19092
19093 2000-08-27 Dave Love <fx@gnu.org>
19094
19095 * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
19096
19097 2000-08-27 Miles Bader <miles@gnu.org>
19098
19099 * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
19100
19101 2000-08-27 Kenichi Handa <handa@etl.go.jp>
19102
19103 * international/ja-dic-cnv.el (skkdic-convert): Insert (require
19104 'ja-dic-cnv), not (require 'skkdic-cnv).
19105
19106 2000-08-26 Miles Bader <miles@gnu.org>
19107
19108 * faces.el (face-x-resources): Add entry for :inherit.
19109 * cus-face.el (custom-face-attributes): Add support for :inherit
19110 attribute. Add support for relative face heights.
19111 (custom-face-attributes-get): Treat `nil' as being a default value
19112 for :inherit (as well as `unspecified').
19113
19114 * faces.el (set-face-attribute): Update doc string.
19115 (face-attribute-name-alist): Add :inherit.
19116 (face-valid-attribute-values): Handle :inherit.
19117 (face-read-string): Rephrase prompt to be less confusing.
19118 Assume that DEFAULT is a string, since we must return a string.
19119 (face-read-integer): Use `format' to turn DEFAULT into an
19120 acceptable default for face-read-string. Match NEW-VALUE against
19121 the string "unspecified", not the symbol `unspecified', since
19122 that's what face-read-string returns.
19123 (read-face-attribute): Lookup a name for old-value in valid, and
19124 use it as a default if we find one. Treat all values from
19125 face-read-string as strings. If the default is used, don't do any
19126 more processing on the value, just use the old value directly.
19127 (read-face-and-attribute, modify-face): Tweak prompt.
19128 (read-face-name): Don't assume prompt ends with a space.
19129
19130 * faces.el (describe-face): Add support for :inherit attribute.
19131
19132 2000-08-25 Kenichi Handa <handa@etl.go.jp>
19133
19134 * terminal.el (terminal-emulator): Fix args to `concat'. Now
19135 concat doesn't accept interger.
19136
19137 * international/kkc.el: Remove SKK from Keywords. Require
19138 ja-dic-utl instead of skkdic-utl.
19139
19140 * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
19141 Provide ja-dic-cnv instead of skkdic-cnv.
19142 (ja-dic-filename): Renamed from skkdic-filename. Referers changed
19143 (iso-2022-7bit-short): Add safe-charsets property.
19144 (skkdic-convert-postfix): Search Japanese chou-on character in
19145 addition to Hiragana character.
19146 (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
19147 (skkdic-convert): Change file names from skkdic.el to ja-dic.el
19148 (batch-skkdic-convert): Likewise.
19149
19150 * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
19151 Provide ja-dic-utl instead of skkdic-utl.
19152 (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
19153
19154 2000-08-24 Dave Love <fx@gnu.org>
19155
19156 * disp-table.el (standard-display-default): Make the test of `l'
19157 useful.
19158
19159 * language/european.el ("Latin-8", "Latin-9"): Add input methods,
19160 mod sample text.
19161
19162 * international/iso-ascii.el: Make pilcrow convenient string
19163 consistent with section.
19164 (iso-ascii-display): Set up multibyte characters as well as
19165 unibyte.
19166
19167 2000-08-24 Kenichi Handa <handa@etl.go.jp>
19168
19169 * international/mule-cmds.el (reset-language-environment): Set
19170 default-process-coding-system to '(undecided . iso-latin-1), which
19171 makes process I/O almost consistent with file I/O. Call this
19172 function when mule-cmds.el[c] is loaded.
19173
19174 2000-08-22 Andrew Innes <andrewi@gnu.org>
19175
19176 * makefile.w32-in: New file.
19177
19178 2000-08-22 Miles Bader <miles@lsi.nec.co.jp>
19179
19180 * comint.el (comint-output-filter): Compare end of
19181 comint-last-output-overlay with the start of the newly inserted
19182 text, not the end, when deciding whether to extend it.
19183 Set saved-point's insertion type to advance after insertion.
19184
19185 * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
19186 since this is now done independently of font-lock mode.
19187
19188 2000-08-21 Gerd Moellmann <gerd@gnu.org>
19189
19190 * server.el (server-kill-new-buffers): New user option.
19191 (server-existing-buffer): New buffer-local variable.
19192 (server-visit-files): When using an existing buffer, set
19193 server-existing-buffer to t.
19194 (server-buffer-done): If server-kill-new-buffers is t, kill the
19195 buffer, unless it was already present before visiting it with
19196 Emacs server.
19197
19198 2000-08-21 Eli Zaretskii <eliz@is.elta.co.il>
19199
19200 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
19201 even if the display doesn't support colors: some displays will
19202 support bold/underline faces.
19203
19204 2000-08-21 Gerd Moellmann <gerd@gnu.org>
19205
19206 * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
19207
19208 * startup.el (command-line): If user's init file had an error,
19209 add explanatory text to *Messages*.
19210
19211 2000-08-21 Kenichi Handa <handa@etl.go.jp>
19212
19213 * man.el (Man-getpage-in-background): Decode the process output by
19214 the system locale coding system.
19215
19216 2000-08-20 Dave Love <fx@gnu.org>
19217
19218 * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
19219 Don't test x-popup-menu.
19220 (function) <complete-function>: Complete only fbound symbols.
19221 <validate, value>: New.
19222 (variable) <complete-function>: Complete only bound symbols.
19223 (coding-system): Add :base-only, :complete-function, :validate,
19224 :value, :prompt-match.
19225 (widget-coding-system-prompt-value): Use read-coding-system and
19226 act on :base-only.
19227 (editable-field): Add :help-echo.
19228 (widget-push-button-gui, widget-push-button-cache)
19229 (widget-gui-action, widget-editable-list-gui): COmment out, along
19230 with uses.
19231 (widget-at): Make arg optional.
19232 (widget-echo-help): Adjust for current help-echo calling sequence.
19233 (widget-specify-field, widget-specify-button)
19234 (widget-specify-insert, widget-get-sibling, widget-image-find)
19235 (widget-convert, widget-insert, widget-leave-text)
19236 (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
19237 (widget-setup, widget-field-find, widget-before-change)
19238 (widget-after-change, widget-default-complete)
19239 (widget-default-create, widget-default-delete)
19240 (widget-push-button-value-create, editable-field)
19241 (widget-field-prompt-value, widget-field-validate)
19242 (widget-choice-value-create, widget-choice-action)
19243 (widget-choice-validate, widget-checklist-add-item)
19244 (widget-radio-add-item, widget-radio-chosen)
19245 (widget-radio-value-inline, widget-editable-list-value-create)
19246 (widget-editable-list-entry-create)
19247 (widget-documentation-link-add)
19248 (widget-documentation-string-value-create)
19249 (widget-regexp-validate, widget-file-complete)
19250 (widget-sexp-validate, widget-plist-convert-widget)
19251 (widget-plist-convert-widget, widget-alist-convert-widget)
19252 (widget-alist-convert-widget, widget-color-complete): Simplify,
19253 particularly to avoid bindings which aren't optimized out.
19254
19255 * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
19256 Doc fix.
19257 (down-list, backward-up-list, up-list, kill-sexp)
19258 (backward-kill-sexp, mark-sexp): Make arg optional.
19259 (lisp-complete-symbol): Add optional arg PREDICATE.
19260
19261 * cus-start.el: Add display-buffer-reuse-frames,
19262 file-coding-system-alist.
19263
19264 2000-08-20 Gerd Moellmann <gerd@gnu.org>
19265
19266 * startup.el (command-line): Clear realized faces after
19267 modifying TTY color mappings.
19268
19269 2000-08-20 Miles Bader <miles@gnu.org>
19270
19271 * faces.el (face-attr-match-p): Don't return true if ATTRS are
19272 merely a subset of FACE's attributes.
19273
19274 2000-08-19 Miles Bader <miles@gnu.org>
19275
19276 * comint.el (comint-output-filter): Save the point with a marker,
19277 not just a buffer position.
19278
19279 * international/mule.el (set-buffer-process-coding-system): Make
19280 interactive prompt less confusing.
19281
19282 2000-08-19 Gerd Moellmann <gerd@gnu.org>
19283
19284 * hilit-chg.el: General cleanup of doc strings, comments and
19285 code formatting.
19286
19287 2000-08-19 Miles Bader <miles@gnu.org>
19288
19289 * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
19290 Compiler macro removed; beginning-of-line is no longer always
19291 equivalent to forward-line, in the presence of fields.
19292
19293 * comint.el (comint-output-filter): Remove ad-hoc saving of
19294 restriction, and just use save-restriction, now that it works
19295 correctly. Don't adjust comint-last-input-start to account for
19296 our insertion; it shouldn't have moved because we don't use
19297 insert-before-markers anymore. Comment out call to
19298 `force-mode-line-update'; why is it here?
19299
19300 * gud.el (gud-basic-call): Temporarily widen gud comint buffer
19301 while checking for prompt to delete. Use `forward-line 0'
19302 instead of beginning-of-line.
19303 (gud-filter): Temporarily widen gud comint buffer while
19304 examining output.
19305
19306 2000-08-18 Stefan Monnier <monnier@cs.yale.edu>
19307
19308 * progmodes/sh-script.el: Big bag of typos.
19309
19310 * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
19311 check since ispell-process is not bound when ispell is not yet loaded.
19312
19313 2000-08-18 Dave Love <fx@gnu.org>
19314
19315 * image.el (find-image): Copy `spec' before using plist-put.
19316
19317 2000-08-18 Gerd Moellmann <gerd@gnu.org>
19318
19319 * textmodes/ispell.el (ispell-dictionary-alist-6): Add
19320 `portugues'.
19321
19322 * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
19323 backward-kill-sexp, analogous to kill-sexp.
19324
19325 * progmodes/icon.el (icon-indent-line)
19326 (icon-is-continuation-line): Handle comments specially.
19327
19328 2000-08-17 Ken Stevens <k.stevens@ieee.org>
19329
19330 * ispell.el: Set to standard author/maintainer/keyword fields.
19331 Fine tuning to menu map appearance and operation, and added help.
19332 Remove `start' and `end' error messages when compiling.
19333 (ispell-choices-win-default-height): Fixed comment string.
19334 (ispell-dictionary-alist-1): Fixed regexp in castellano and
19335 castellano8 dictionaries.
19336 (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
19337 (ispell-dictionary-alist-4): Fixed regexp in francais-tex
19338 dictionary, added italiano dictionary.
19339 (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
19340 word character
19341 (ispell-tex-skip-alists): Added psfig support.
19342 (ispell-skip-html): Renamed from ispell-skip-sgml.
19343 (ispell-begin-skip-region-regexp, ispell-skip-region)
19344 (ispell-minor-check): Improved html skipping support to skip across
19345 code, and recognize `&' commands without propper `;' syntax;
19346 (ispell-process-line): Fix alignment error when manually
19347 correcting spelling.
19348 (ispell): Fix comment string.
19349 (ispell-add-per-file-word-list): Always put word list on new line.
19350
19351 2000-08-17 Gerd Moellmann <gerd@gnu.org>
19352
19353 * format.el (format-encode-run-method): Fix error message to say
19354 `encode' instead of `decode'. Use save-window-excursion around
19355 shell-command-on-region as in format-decode-run-method because
19356 shell-command-on-region can display a buffer with error output.
19357 (format-decode): Don't record undo information for the decoding.
19358 (format-annotate-function): Add parameter FORMAT-COUNT. Make
19359 that number part of the temporary buffer name so that more than
19360 one decoding using a temporary buffer can happen safely.
19361
19362 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
19363 of `A-z' in the regexp.
19364
19365 * hilit-chg.el: Fix typos in commentary.
19366
19367 * help.el (view-emacs-news): Rewritten for new naming scheme
19368 for old NEWS files.
19369
19370 * startup.el (command-line): Pop to *Messages* in case an error
19371 is signaled while loading user-init-file.
19372
19373 2000-08-17 Andreas Schwab <schwab@suse.de>
19374
19375 * files.el (insert-directory): Don't lose original file name,
19376 undoing an undocumented change.
19377
19378 2000-08-17 Alex Schroeder <alex@gnu.org>
19379
19380 * sql.el (sql-magic-go): Use comint-bol.
19381 (sql-copy-column): Use comint-line-beginning-position.
19382 (comint-line-beginning-position): Define a replacement for
19383 comint-line-beginning-position if it is not fboundp.
19384
19385 2000-08-17 Alex Schroeder <alex@gnu.org>
19386
19387 * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
19388 it didn't have any effect anyway.
19389
19390 2000-08-17 Alex Schroeder <alex@gnu.org>
19391
19392 * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
19393 --pset and pager=off instead of sending \\o|cat at the beginning
19394 of the session.
19395
19396 2000-08-17 Miles Bader <miles@gnu.org>
19397
19398 * progmodes/octave-inf.el: Add compatibility definition of
19399 comint-line-beginning-position.
19400
19401 2000-08-17 Kenichi Handa <handa@etl.go.jp>
19402
19403 * startup.el (normal-top-level): Look in each dir in load-path for
19404 a leim-list.el file too. This assures of loading leim-list.el
19405 that is created at Emacs installation time even if a user have his
19406 own leim-list.el.
19407
19408 2000-08-17 Miles Bader <miles@gnu.org>
19409
19410 * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
19411 foreground color to black if the background is dark.
19412
19413 2000-08-16 Stefan Monnier <monnier@cs.yale.edu>
19414
19415 * loadhist.el (unload-feature): Typo.
19416
19417 * finder.el (finder-compile-keywords):
19418 * cus-dep.el (custom-make-dependencies): Add local-variable settings
19419 to the generated file.
19420
19421 * mail/mh-e.el (mh-make-local-vars):
19422 Replace make-variable-buffer-local with make-local-variable.
19423
19424 * play/landmark.el:
19425 * options.el (Edit-options-{set,toggle,t,nil}):
19426 * mail/mailabbrev.el (mail-abbrevs-mode):
19427 * textmodes/tex-mode.el (tex-expand-files):
19428 * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
19429
19430 * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
19431
19432 * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
19433 (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
19434 Allow going past the last element.
19435 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
19436 (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
19437 (cvs-mouse-toggle-mark): Don't move point.
19438 (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
19439
19440 * progmodes/compile.el (grep): Provide a default set of files.
19441 (next-error): Docstring fix.
19442 (compilation-find-file): Avoid find-file (fails in a dedicated window).
19443
19444 * emacs-lisp/easy-mmode.el (define-minor-mode):
19445 Use `symbol-value' to keep the byte-compiler quiet.
19446
19447 * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
19448 (diff-find-source-location): New fun, extracted from diff-goto-source.
19449 (diff-goto-source): Use it.
19450 (diff-next-complex-hunk, diff-filter-lines): New function.
19451 (diff-apply-hunk): New command.
19452
19453 * smerge-mode.el (smerge-mode-menu): Doc fix.
19454
19455 * msb.el (msb-mode): Define it in terms of define-minor-mode.
19456
19457 2000-08-16 Dave Love <fx@gnu.org>
19458
19459 * windmove.el (windmove) <defgroup>: Add :version.
19460
19461 * net/goto-addr.el: Don't require browse-url. Require thingatpt.
19462 (goto-address-fontify-p, goto-address-highlight-p)
19463 (goto-address-url-face, goto-address-url-mouse-face)
19464 (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
19465 (goto-address-url-regexp): Use thing-at-point-url-regexp.
19466 (goto-address-fontify, goto-address-at-mouse): Simplify,
19467 (goto-address-at-point): browse-url-url-at-point,
19468 goto-address-find-address-at-point can return nil.
19469 (goto-address-find-address-at-point): Return nil on failure.
19470
19471 * align.el (align) <defgroup>: Add :version.
19472
19473 * calculator.el (calculator): Add :version.
19474 (calculator): Use two lines for calculator window if `modeline'
19475 face is boxed.
19476
19477 * play/5x5.el: Doc fixes.
19478 (5x5) <defgroup>: Add :version.
19479
19480 * play/fortune.el (fortune) <defgroup>: Add :version.
19481 (fortune-append): Fix error message.
19482 (fortune-from-region): Doc fix.
19483
19484 * play/pong.el (pong): Doc fix.
19485
19486 * play/morse.el: Keywords, commentary, autoloads.
19487
19488 2000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
19489
19490 * desktop.el (desktop-save): Don't look at symbol-value of a
19491 member of minor-mode-alist, unless it is boundp.
19492
19493 2000-08-16 Sam Steingold <sds@gnu.org>
19494
19495 * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
19496 `while'; use `with-current-buffer' instead of `save-excursion'.
19497 Removed unnecessary kludges now that "*Buffer List*" is excluded.
19498
19499 2000-08-16 Kenichi Handa <handa@etl.go.jp>
19500
19501 * international/ccl.el (declare-ccl-program): Docstring modified.
19502 (ccl-execute-with-args): Likewise.
19503
19504 2000-08-16 Miles Bader <miles@gnu.org>
19505
19506 * progmodes/sql.el: Add compatibility definition of
19507 comint-line-beginning-position.
19508
19509 2000-08-15 Gerd Moellmann <gerd@gnu.org>
19510
19511 * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
19512 'buffer-menu' property.
19513 (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
19514 fails.
19515 (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
19516 buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
19517 wasn't killed.
19518
19519 * buff-menu.el (list-buffers-noselect): Don't display the
19520 *Buffer List* buffer.
19521
19522 * font-lock.el: Require jit-lock to prevent a very late
19523 `Loading jit-lock' message.
19524
19525 * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
19526 * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
19527 mail address.
19528
19529 2000-08-15 Miles Bader <miles@gnu.org>
19530
19531 * textmodes/ispell.el (ispell-graphic-p): New constant.
19532 (ispell-choices-win-default-height, ispell-help): Use
19533 `ispell-graphic-p' instead of `xemacsp'.
19534
19535 2000-08-15 Dave Love <fx@gnu.org>
19536
19537 * simple.el: Autoload widget-convert when compiling.
19538 (mail-user-agent): Doc fix.
19539
19540 * help.el (function-called-at-point, variable-at-point): Use
19541 with-syntax-table.
19542 (help-manyarg-func-alist): Add insert-and-inherit.
19543
19544 * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
19545
19546 * delsel.el (delsel-unload-hook): New function.
19547
19548 * find-file.el: Doc fixes. Move provide to end.
19549 (ff) <defgroup>: Add :link.
19550 (ff-goto-click): Deleted.
19551 (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
19552 Use mouse-set-point.
19553
19554 * textmodes/tildify.el: Doc fixes.
19555 (tildify) <defgroup>: Add:version.
19556
19557 * progmodes/glasses.el (glasses) <defgroup>: Add :version.
19558 (glasses-custom-set): Use set-default, not set.
19559 (minor-mode-alist): Propertize the lighter.
19560 (glasses-mode): Provide optional arg.
19561
19562 * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
19563 (global-cwarn-mode): Don't make it a user option. Unquote lambda.
19564 (cwarn-font-lock-feature-keywords-alist): Don't make it a user
19565 option. Provide :type.
19566 (cwarn-configuration): Provide :type.
19567 (cwarn-mode): Doc fix.
19568
19569 * add-log.el (change-log-merge): Doc fix.
19570 (change-log-redate): New command.
19571
19572 * net/browse-url.el (browse-url-filename-alist): Add a clause for
19573 Doze and Dog.
19574 (browse-url): Use dolist, not mapcar.
19575 (browse-url-at-point): Check for null url.
19576 (browse-url-event-buffer, browse-url-event-point): Functions
19577 deleted.
19578 (browse-url-at-mouse, browse-url-netscape): Simplify.
19579
19580 * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
19581 modes.
19582 (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
19583 Fix previous change to mapcan.
19584 (msb--init-file-alist, msb--add-separators)
19585 (msb--make-keymap-menu): Simplify.
19586 (msb--choose-file-menu): Use copy-sequence.
19587 (msb-mode-map): Add title to keymap.
19588 (msb-unload-hook): New function.
19589
19590 * bs.el: Fix indentation.
19591 (bs) <defgroup>: Add :links.
19592 (bs-show): Doc fix.
19593 (bs-apply-sort-faces): Don't use window-system.
19594 (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
19595
19596 2000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
19597
19598 * calendar/timeclock.el (timeclock-file): Run .timelog through
19599 convert-standard-filename.
19600
19601 2000-08-14 Gerd Moellmann <gerd@gnu.org>
19602
19603 * emacs-lisp/authors.el: New file.
19604
19605 * paren.el (show-paren-priority): New user option.
19606 (show-paren-function): Set overlay priorities to
19607 show-paren-priority.
19608
19609 2000-08-14 Miles Bader <miles@gnu.org>
19610
19611 * comint.el (comint-bol): Use `forward-line 0' instead of calling
19612 beginning-of-line with inhibit-field-text-motion bound.
19613
19614 2000-08-14 Gerd Moellmann <gerd@gnu.org>
19615
19616 * calendar/timeclock.el: New file.
19617
19618 2000-08-14 David Ponce <david@dponce.com>
19619
19620 * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
19621 `widget-button-click'. so that one can use left mouse button to
19622 click on dialog buttons.
19623
19624 2000-08-14 Emmanuel Briot <briot@gnat.com>
19625
19626 * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
19627 identifiers, since XML is case sensitive
19628
19629 2000-08-12 Miles Bader <miles@gnu.org>
19630
19631 * comint.el (comint-output-filter): Don't bother frobbing
19632 window-start, it doesn't seem to be necessary.
19633
19634 * comint.el (comint-send-string, comint-send-region): Make into
19635 real functions. Snapshot the prompt before sending.
19636
19637 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
19638
19639 * info.el (Info-find-emacs-command-nodes): Rewrite to use
19640 technique similar to Info-index, instead of relying on specific
19641 names of relevant Index nodes.
19642 (Info-goto-emacs-command-node): Bind Info-history to nil when
19643 going to the first node found by Info-find-emacs-command-nodes.
19644
19645 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
19646
19647 * menu-bar.el (menu-bar-help-menu): Add a :help string.
19648
19649 2000-08-10 Miles Bader <miles@gnu.org>
19650
19651 * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
19652
19653 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
19654
19655 * info.el (Info-file-list-for-emacs): More elements for the
19656 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
19657 and woman manuals.
19658
19659 2000-08-10 Miles Bader <miles@lsi.nec.co.jp>
19660
19661 * comint.el (comint-send-input): Make the newline boundary overlay
19662 rear-nonsticky. Use `insert' instead of `insert-before-markers'.
19663 (comint-output-filter): Use `insert' instead of
19664 `insert-before-markers'. Extend comint-last-output-overlay when
19665 necessary since we can't rely on insert-before-markers to do it.
19666 * gud.el (gud-filter): Use `with-current-buffer' instead of
19667 save-excursion when inserting the output, so that point gets
19668 updated correctly; the old method relied on a rather dodgy
19669 side-effect of comint-output-filter to avoid the effect of
19670 save-excursion.
19671
19672 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
19673
19674 * files.el (recover-file): Call insert-directory instead of
19675 invoking `ls' directly.
19676
19677 2000-08-10 Miles Bader <miles@gnu.org>
19678
19679 * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
19680 (comint-last-prompt-overlay): New variables.
19681 (comint-output-filter): Implement prompt highlighting.
19682 (comint-snapshot-last-prompt): New function.
19683 (comint-send-input): Snapshot the last prompt.
19684 Use comint-highlight-input-face.
19685 (comint-highlight-input-face): Renamed from `comint-highlight-face'.
19686 Use defface instead of defcustom.
19687 (send-invisible, comint-send-eof): Snapshot the last prompt.
19688 (comint-delchar-or-maybe-eof): Use comint-send-eof.
19689 (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
19690
19691 2000-08-09 Stefan Monnier <monnier@cs.yale.edu>
19692
19693 * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
19694 (regexp-opt-group): Use a list of chars for `letters'.
19695 (regexp-opt-charset): `chars' is now a list of chars.
19696 Use a char-table rather than a vector so it works for multibyte chars.
19697
19698 * pcvs.el (cvs-menu): Don't move point. Use popup-menu.
19699 Set cvs-minor-current-files to the selected fileinfo.
19700 (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
19701 (cvs-mode-insert): Manually macroexpand `ignore-errors'.
19702
19703 2000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
19704
19705 * files.el (insert-directory): Don't call access-file on
19706 directories on DOS and Windows.
19707
19708 2000-08-09 Kenichi Handa <handa@etl.go.jp>
19709
19710 * international/ccl.el (ccl-embed-data): Make ccl-program-vector
19711 longer if necessary.
19712 (ccl-embed-code): Call ccl-embed-data to store CODE in
19713 ccl-program-vector.
19714
19715 2000-08-09 Miles Bader <miles@gnu.org>
19716
19717 * comint.el (comint-output-filter): Properly handle the case where
19718 the text surrounded by comint-last-output-overlay was deleted.
19719
19720 2000-08-08 Gerd Moellmann <gerd@gnu.org>
19721
19722 * info.el (Info-insert-dir): Use Info-additional-directory-list if
19723 non-nil.
19724 (Info-file-list-for-emacs): Remove "info" from the list because
19725 that leads to trying to use the documentation from file `info'
19726 in various situations where it isn't appropriate, for instance
19727 C-h C-k C-h i.
19728
19729 * ffap.el (ffap-read-file-or-url-internal): Handle case that
19730 DIR and/or STRING are nil.
19731
19732 * progmodes/compile.el (compilation-setup): Make variable
19733 compilation-error-screen-columns buffer-local, as some comment
19734 in the code suggests it should be.
19735
19736 * files.el (auto-mode-interpreter-regexp): New variable.
19737 (set-auto-mode): Use it.
19738
19739 * indent.el (indent-for-tab-command): Doc fix.
19740
19741 * mouse-sel.el (mouse-sel-mode): Doc fix.
19742
19743 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
19744 labels.
19745
19746 * help.el (print-help-return-message): When
19747 display-buffer-reuse-frames is set, let the help window been quit,
19748 instead of deleting it, which might delete a reused frame.
19749
19750 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
19751
19752 * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
19753 rename a directory to a name that differs only by its letter case.
19754
19755 2000-08-08 Kenichi Handa <handa@etl.go.jp>
19756
19757 * international/quail.el (quail-define-rules): Handle Quail decode
19758 map correctly. Add code for supporting annotations.
19759 (quail-install-decode-map): New function.
19760 (quail-defrule-internal): New optional arguments decode-map and
19761 props.
19762 (quail-advice): New function.
19763
19764 2000-08-07 Sam Steingold <sds@gnu.org>
19765
19766 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
19767 `defconst', `define-condition', `with-slots'.
19768 * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
19769
19770 2000-08-03 Miles Bader <miles@gnu.org>
19771
19772 * comint.el (comint-use-prompt-regexp-instead-of-fields):
19773 New variable.
19774 (comint-prompt-regexp, comint-get-old-input): Document dependence on
19775 comint-use-prompt-regexp-instead-of-fields.
19776 (comint-send-input): Add `input' field property to stuff we send to
19777 the process, if comint-use-prompt-regexp-instead-of-fields is nil.
19778 (comint-output-filter): Add `output' field property to process
19779 output, if comint-use-prompt-regexp-instead-of-fields is nil.
19780 (comint-replace-by-expanded-history)
19781 (comint-get-old-input-default, comint-show-output)
19782 (comint-backward-matching-input, comint-forward-matching-input)
19783 (comint-next-prompt, comint-previous-prompt): Use field
19784 properties if comint-use-prompt-regexp-instead-of-fields is nil.
19785 (comint-line-beginning-position): New function.
19786 (comint-bol): Use comint-line-beginning-position. Make ARG optional.
19787 (comint-replace-by-expanded-history-before-point): Use
19788 comint-line-beginning-position and line-end-position.
19789 (comint-last-output-overlay): New variable.
19790 (comint-mode): Make `comint-last-output-overlay' buffer-local.
19791
19792 * shell.el (shell-prompt-pattern): Doc change.
19793 (shell-backward-command): Use line-beginning-position.
19794
19795 * gud.el (gud-gdb-complete-command): Use
19796 comint-line-beginning-position.
19797
19798 * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
19799 comint-bol doesn't actually go to the beginning of the line.
19800
19801 * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
19802 if comint-use-prompt-regexp-instead-of-fields is non-nil.
19803 (try-expand-line-all-buffers): Likewise.
19804
19805 * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
19806 explicitly matching comint-prompt-regexp.
19807 (sql-copy-column): Use comint-line-beginning-position instead of
19808 explicitly matching comint-prompt-regexp.
19809
19810 * progmodes/octave-inf.el (inferior-octave-complete): Use
19811 comint-line-beginning-position.
19812
19813 * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
19814
19815 * progmodes/idlw-shell.el (idlwave-shell-send-command): When
19816 looking for a prompt, use `forward-line 0' instead of
19817 `beginning-of-line', to avoid getting caught by an input field.
19818
19819 2000-08-07 Gerd Moellmann <gerd@gnu.org>
19820
19821 * files.el (shell-quote-wildcard-pattern): Make sure to return
19822 PATTERN, in the Unix case.
19823
19824 2000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
19825
19826 * play/zone.el (zone): Discard any pending input before running
19827 the randomly-chosen pgm.
19828
19829 2000-08-07 Kenichi Handa <handa@etl.go.jp>
19830
19831 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
19832 checking the existence of any multibyte characters.
19833
19834 2000-08-06 Gerd Moellmann <gerd@gnu.org>
19835
19836 * help.el (describe-mode): Test minor-mode symbol for being
19837 bound before testing its value for being nil.
19838
19839 * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
19840 `first', `second', and `third'.
19841
19842 * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
19843 (second): Make it an alias for `cadr'.
19844
19845 2000-08-06 Eli Zaretskii <eliz@is.elta.co.il>
19846
19847 * bs.el (bs-apply-sort-faces): Don't use window-system, since all
19848 types of display support faces now.
19849
19850 2000-08-05 Gerd Moellmann <gerd@gnu.org>
19851
19852 * pcvs.el (require): Require `cl' during compilation, only.
19853
19854 * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
19855 (toplevel): Remove `remq' and `remove' from autoloads.
19856 (cl-fake-autoloads): New variable. If set, arrange for an error
19857 when CL functions etc. are autoloaded.
19858
19859 2000-08-04 Eli Zaretskii <eliz@is.elta.co.il>
19860
19861 * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
19862
19863 * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
19864 popped up, but the user clicks outside the menu, return an empty
19865 regexp (that causes unhighlight-regexp to have no effect).
19866
19867 * menu-bar.el (menu-bar-games-menu): Add Zone.
19868
19869 * hi-lock.el (toplevel): Require font-lock.
19870
19871 2000-08-03 Vinicius Jose Latorre <vinicius@cpqd.com.br>
19872
19873 * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward.
19874 (ebnf-8-bit-chars): New var for bug fix.
19875 (ebnf-string): Bug fix.
19876
19877 2000-08-03 Sam Steingold <sds@gnu.org>
19878
19879 * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
19880 instead of `buffer-string'.
19881 (require 'cl): Always, not just when compiling.
19882 `ignore-errors' in `interactive', `list*', `defun*' &c make this
19883 necessary.
19884
19885 2000-08-03 Eli Zaretskii <eliz@is.elta.co.il>
19886
19887 * international/mule-cmds.el (select-safe-coding-system): Make
19888 the message text about selecting a safe coding system more clear.
19889
19890 2000-08-02 Gerd Moellmann <gerd@gnu.org>
19891
19892 * hi-lock.el: New file.
19893
19894 * play/zone.el: New file.
19895
19896 * replace.el (occur): Set tab-width in the *Occur* buffer to the
19897 value of tab-width in the original buffer. Choose a line number
19898 format that's a multiple of the original buffer's tab width, so
19899 that lines appear right.
19900
19901 * textmodes/ispell.el (ispell): New function, replacing an alias.
19902 Spell-check active region if in transient-mark-mode and mark
19903 is active; otherwise spell-check buffer.
19904
19905 2000-08-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
19906
19907 * ps-mule.el: Fix a customization problem on
19908 ps-mule-font-info-database-default.
19909
19910 2000-08-02 Eli Zaretskii <eliz@is.elta.co.il>
19911
19912 * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
19913 display-mouse-p instead of window-system.
19914 (ebrowse-member-mode-map): Ditto.
19915
19916 2000-08-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
19917
19918 * progmodes/ebnf2ps.el: Update ps-print functions call.
19919 Indentation fix. Doc fix.
19920 (ebnf-version): New version number (3.2).
19921 (ebnf-format-color, ebnf-begin-job): Code fix.
19922
19923 2000-08-01 Eli Zaretskii <eliz@is.elta.co.il>
19924
19925 * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
19926 font lock support on window-system.
19927 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
19928
19929 * textmodes/ispell.el (ispell-highlight-spelling-error): Use
19930 display-color-p, if fboundp, instead of window-system.
19931
19932 2000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
19933
19934 * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
19935 instead of window-system.
19936
19937 * wid-edit.el (widget-choose): Use display-mouse-p instead of
19938 window-system.
19939 (widget-choice-mouse-down-action): Use display-popup-menus-p
19940 instead of window-system.
19941
19942 * strokes.el (strokes-file): Run the file name through
19943 convert-standard-filename.
19944 (strokes-mode): Call display-mouse-p instead of looking at
19945 window-system. Change the error message accordingly.
19946
19947 * progmodes/cpp.el (toplevel): Support faces on tty's.
19948
19949 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
19950 (lm-plot-square, lm-init-display): Don't use window-system.
19951
19952 * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
19953 (gomoku-plot-square, gomoku-init-display): Don't use window-system.
19954
19955 * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
19956 instead of looking at window-system.
19957
19958 2000-07-30 Gerd Moellmann <gerd@gnu.org>
19959
19960 * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
19961 of testing if iswitchb-prepost-hooks is bound, because the
19962 latter will always be true when invoking a recursive minibuffer
19963 from an active Iswitchb buffer.
19964
19965 2000-07-30 Eli Zaretskii <eliz@is.elta.co.il>
19966
19967 * files.el (shell-quote-wildcard-pattern): New function.
19968 (insert-directory): Call it. Only prepend "\" to command on Unix
19969 and GNU/Linux systems.
19970
19971 2000-07-30 Gerd Moellmann <gerd@gnu.org>
19972
19973 * eshell/esh-groups.el: Change custom :link file names
19974 from `eshell.info' to `eshell'.
19975
19976 2000-07-30 Francis Wright <fjw@maths.qmw.ac.uk>
19977
19978 * dired.el (dired-build-subdir-alist): Expand subdirectory names
19979 correctly in recursive ange-ftp listings.
19980
19981 2000-07-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
19982
19983 * ps-print.el: Fix bug 1: if ps-font-size-internal,
19984 ps-header-font-size-internal and
19985 ps-header-title-font-size-internal variables are not set,
19986 ps-nb-pages and ps-line-lengths-internal crashes. Fix bug 2: if
19987 face text property is (foreground-color . COLOR) or
19988 `(background-color . COLOR)', ps-print crashes. Doc fix.
19989 (ps-print-version): New version number (5.2.4).
19990 (ps-plot-region): Code fix.
19991 (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
19992 (ps-face-attribute-list, ps-face-attributes, ps-face-background):
19993 Bug fix 2.
19994
19995 2000-07-30 Milan Zamazal <pdm@freesoft.cz>
19996
19997 * glasses.el (glasses-make-readable): Fix uncapitalization of
19998 identifiers like `myXMLDocument'.
19999
20000 2000-07-28 Karl Fogel <kfogel@red-bean.com>
20001
20002 * mail/mail-hist.el (mail-hist-previous-input)
20003 (mail-hist-next-input): Do the obvious code factorization.
20004 (mail-hist-retrieve-and-insert): New func, contains common
20005 code of above two.
20006 If inserting a message body, leave point at top.
20007
20008 2000-07-28 Sam Steingold <sds@gnu.org>
20009
20010 * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
20011 Use `<=', not `<' to compare times!
20012 (ange-ftp-ls): Remove.
20013
20014 2000-07-27 Gerd Moellmann <gerd@gnu.org>
20015
20016 * play/cookie1.el: Add explanation of how to make cookie.el
20017 compatible with strfile(1) to comment.
20018
20019 * subr.el (remove, remq): New functions.
20020
20021 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
20022 escape `*' in regexps.
20023 (midnight-find): Reverse order of arguments in the funcall of
20024 TEST.
20025
20026 * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
20027 and `.class'.
20028
20029 * play/meese.el: Add Commentary section.
20030
20031 2000-07-27 Alex Schroeder <alex@gnu.org>
20032
20033 * sql.el (sql-ms): Added autoload cookie.
20034 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
20035 (sql-oracle): Ditto.
20036 (sql-help): Doc change.
20037
20038 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
20039 types and exceptions.
20040
20041 2000-07-27 Alex Schroeder <alex@gnu.org>
20042
20043 * sql.el (sql-placeholder-history): New variable.
20044 (sql-query-placeholders-and-send): New function that will query
20045 the user and replace placeholders with user input.
20046 (sql-oracle): If running on NT, set comint-input-sender to
20047 sql-query-placeholders-and-send.
20048
20049 (sql-stop): If in the SQLi buffer, insert stop notification, else
20050 present it as a message.
20051
20052 2000-07-27 Alex Schroeder <alex@gnu.org>
20053
20054 * sql.el (sql-input-ring-separator): Doc change.
20055 (sql-input-ring-file-name): Doc change.
20056 (sql-interactive-mode): Use `sql-input-ring-separator' and
20057 `sql-input-ring-file-name' to set the comint-mode equivalents
20058 without making them local variables.
20059 (sql-stop): Don't bind `sql-input-ring-separator' and
20060 `sql-input-ring-file-name' dynamically to their comint-mode
20061 equivalents.
20062
20063 2000-07-27 Kenichi Handa <handa@etl.go.jp>
20064
20065 * international/mule.el (register-char-codings): New function.
20066 (make-coding-system): Handle `safe-chars' specification in the arg
20067 PROPERTY.
20068
20069 * international/mule-cmds.el
20070 (find-coding-systems-region-subset-p): This function deleted.
20071 (sort-coding-systems-predicate): New variable.
20072 (sort-coding-systems): New function.
20073 (find-coding-systems-region): Use
20074 find-coding-systems-region-internal.
20075 (find-coding-systems-string): Use find-coding-systems-region.
20076 (find-coding-systems-for-charsets): Check
20077 char-coding-system-table.
20078 (select-safe-coding-system-accept-default-p): New variable.
20079 (select-safe-coding-system): Mostly rewritten. New argument
20080 ACCEPT-DEFAULT-P.
20081 (select-message-coding-system): Call select-safe-coding-system
20082 with ACCEPT-DEFAULT-P arg.
20083 (reset-language-environment): Reset default-sendmail-coding-system
20084 to the default value iso-latin-1.
20085 (set-language-environment): Don't set the obsolete variable
20086 charset-origin-alist.
20087
20088 * international/codepage.el (cp-coding-system-for-codepage-1):
20089 Give `safe-chars' property to make-coding-system.
20090
20091 * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
20092 calling select-message-coding-system twice.
20093
20094 * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
20095 instead of `safe-charsets'.
20096 (cyrillic-alternativnyj): Likewise.
20097 (ccl-encode-alternativnyj): Don't check the charset
20098 cyrillic-iso8859-5.
20099
20100 2000-07-27 Kenichi Handa <handa@etl.go.jp>
20101
20102 * composite.el (compose-chars-after): Preserve match data.
20103
20104 2000-07-26 Sam Steingold <sds@gnu.org>
20105
20106 * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
20107 (ange-ftp-real-file-newer-than-file-p): New function.
20108 (ange-ftp-verify-visited-file-modtime): Use `float-time'.
20109 (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
20110
20111 * tooltip.el (tooltip-float-time): Removed (use `float-time').
20112 * midnight.el (midnight-float-time): Ditto.
20113
20114 2000-07-26 Andreas Schwab <schwab@suse.de>
20115
20116 * files.el (normal-backup-enable-predicate): Correct
20117 interpretation of the return value of compare-strings.
20118
20119 2000-07-26 Gerd Moellmann <gerd@gnu.org>
20120
20121 * isearch.el (isearch-resume): New function.
20122 (isearch-done): Add something to command-history to resume
20123 the search.
20124 (isearch-yank-line, isearch-yank-word): Use
20125 buffer-substring-no-properties instead of buffer-substring.
20126
20127 * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
20128 of flyspell-mouse-map.
20129
20130 * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
20131 duplicate definition.
20132 (makefile-mode): Remove duplicate setting of local-abbrev-table.
20133
20134 * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
20135 (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
20136
20137 2000-07-25 Sam Steingold <sds@gnu.org>
20138
20139 * net/ange-ftp.el: Get modtime over the net.
20140 (ange-ftp-file-modtime): New function.
20141 (ange-ftp-write-region, ange-ftp-insert-file-contents)
20142 (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
20143 Use it.
20144 (ange-ftp-dot-to-slash): New function.
20145 (ange-ftp-fix-name-for-vms): Use it.
20146
20147 * midnight.el (midnight-buffer-display-time): Use
20148 `with-current-buffer'.
20149
20150 2000-07-25 Gerd Moellmann <gerd@gnu.org>
20151
20152 * find-dired.el: Update copyright notice.
20153 (find-dired): Offer to kill a running `find'.
20154
20155 * enriched.el (enriched-face-ans): For a `foreground-color'
20156 property, return '(("x-color" COLOR))' so that COLOR will be
20157 output as a parameter of the x-color annotation. Likewise for the
20158 `background-color' property. In the case of normal face
20159 properties, don't return annotations for unspecified foreground
20160 and background face attributes.
20161
20162 2000-07-25 Kenichi Handa <handa@etl.go.jp>
20163
20164 * language/japan-util.el (japanese-katakana-region): Fix handling
20165 HANKAKU argument.
20166
20167 2000-07-25 Miles Bader <miles@gnu.org>
20168
20169 * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
20170 constrain-to-field. Pass nil ESCAPE-FROM-EDGE argument to
20171 constrain-to-field.
20172
20173 2000-07-24 Andrew Innes <andrewi@gnu.org>
20174
20175 * timer.el (timer-activate-when-idle): Add optional parameter
20176 DONT-WAIT. Update docstring.
20177 (run-with-idle-timer): Specify extra parameter to
20178 timer-activate-when-idle, so that timer will be activated
20179 immediately if Emacs is already idle.
20180
20181 * w32-fns.el (w32-using-nt): Fix docstring.
20182
20183 2000-07-24 Dave Love <fx@gnu.org>
20184
20185 * mouse.el (popup-menu): Set last-command-event.
20186 (mouse-major-mode-menu-prefix): Declare.
20187
20188 2000-07-24 Gerd Moellmann <gerd@gnu.org>
20189
20190 * textmodes/flyspell.el: Update to author's version 1.5d.
20191
20192 * progmodes/hideshow.el: Update copyright notice.
20193
20194 * vcursor.el: Set maintainer to FSF, since author cannot
20195 be reached.
20196
20197 2000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
20198
20199 * info.el (Info-goto-emacs-key-command-node): Leave a space after
20200 the prompt.
20201
20202 * mouse.el (popup-menu): Run the keymap through indirect-function,
20203 in case it was defined with define-prefix-key. If the menu is a
20204 list of keymaps, look up the binding of user's choice in each one
20205 of the keymaps.
20206 (mouse-popup-menubar): If the global and local menu-bar keymaps
20207 don't have a prompt string, create one and insert it into the
20208 keymap. Don't barf if current-local-map returns nil.
20209
20210 2000-07-24 Francis Wright <fjw@maths.qmw.ac.uk>
20211
20212 * dired.el (dired-sort-R-check): Added to allow recursive listing
20213 to be undone.
20214 (dired-sort-other): Use it.
20215
20216 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20217
20218 * Release of cc-mode 5.27
20219
20220 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20221
20222 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
20223 c-beginning-of-statement-1 that caused a bad case of recursion
20224 which could consume a lot of CPU in large classes in languages
20225 that have in-expression classes (i.e. Java and Pike).
20226
20227 * cc-engine.el (c-guess-basic-syntax): Check for in-expression
20228 statements before top level constructs (i.e. case 6 is moved
20229 before case 5 and is now case 4) to catch in-expression
20230 classes in top level expressions correctly.
20231
20232 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20233
20234 * cc-engine.el (c-guess-basic-syntax): Less naive handling of
20235 objc-method-intro. Case 4 removed and case 5I added.
20236
20237 * cc-langs.el (c-append-paragraph-start): New variable used by
20238 c-common-init to get paragraph-start correct.
20239 * cc-langs.el (c-common-init): Use c-append-paragraph-start to
20240 initialize paragraph-start to make it correct both with and
20241 without the javadoc special case.
20242
20243 * cc-mode.el (java-mode): Use c-append-paragraph-start to
20244 initialize paragraph-start for javadoc markup.
20245
20246 * cc-vars.el (c-style-variables-are-local-p): Incompatible
20247 change by defaulting this to t. It's motivated by the
20248 confusing behavior that otherwise arise from the style system
20249 when editing both java and non-java files at the same time
20250 (see the comments about style setting in c-common-init).
20251
20252 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20253
20254 * cc-cmds.el (c-indent-new-comment-line): Added a kludge
20255 similar to the one in c-fill-paragraph to check the fill
20256 prefix from the adaptive fill function for sanity.
20257
20258 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20259
20260 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
20261 defun block.
20262
20263 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20264
20265 * cc-align.el (c-lineup-multi-inher): Handle lines with
20266 leading comma nicely. Extended to handle member initializers
20267 too.
20268
20269 * cc-engine.el: (c-beginning-of-inheritance-list,
20270 c-guess-basic-syntax): Fixed recognition of inheritance lists
20271 when the lines begins with a comma.
20272
20273 * cc-vars.el (c-offsets-alist): Changed default for
20274 member-init-cont to c-lineup-multi-inher since it now handles
20275 member initializers and indents better for leading commas.
20276
20277 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20278
20279 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
20280 handling that caused class open lines to be recognized as
20281 statement-conts in some cases.
20282
20283 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
20284 guessed by the adaptive fill function unless point is on the
20285 first line of a block comment.
20286
20287 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
20288 when the buffer ends with a macro continuation char.
20289
20290 * cc-engine.el (c-guess-basic-syntax): Added support for
20291 function definitions as statements in Pike. The first
20292 statement in a lambda block is now labeled defun-block-intro
20293 instead of statement-block-intro.
20294
20295 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
20296 so that the class surrounding point is selected, not the one
20297 innermost in the state.
20298
20299 * cc-engine.el (c-guess-basic-syntax): Fixed bug in
20300 recognition of switch labels having hanging multiline
20301 statements.
20302
20303 * cc-engine.el (c-beginning-of-member-init-list): Broke out
20304 some code in c-guess-basic-syntax to a separate function.
20305 * cc-engine.el (c-just-after-func-arglist-p): Fixed
20306 recognition of member inits with multiple line arglists.
20307 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
20308 member-init-cont when the commas are in funny places.
20309
20310 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20311
20312 * cc-defs.el (c-auto-newline): Removed this macro since it's
20313 not used anymore.
20314
20315 * cc-engine.el (c-looking-at-bos): New helper function.
20316 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
20317 inexpr and toplevel classes apart in Pike.
20318
20319 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
20320 of case 9A.
20321
20322 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
20323 constant, since "class" can introduce an in-expression class
20324 in Pike nowadays.
20325
20326 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20327
20328 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
20329 indentation on cpp-macro lines.
20330
20331 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
20332 a syntax modifier like comment-intro, to make it possible to
20333 get syntactic indentation for preprocessor directives. It's
20334 incompatible wrt to lineup functions on cpp-macro, but it has
20335 no observable effect in the 99.9% common case where cpp-macro
20336 is set to -1000.
20337
20338 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20339
20340 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
20341 member-init-cont when the preceding arglist is several lines.
20342
20343 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20344
20345 * cc-styles.el (c-style-alist): The basic offset for the BSD
20346 style corrected to 8.
20347
20348 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20349
20350 * cc-styles.el (c-style-alist): Adjusted the indentation of
20351 brace list openers in the gnu style.
20352
20353 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20354
20355 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
20356
20357 * cc-cmds.el (c-electric-brace, c-electric-slash,
20358 c-electric-star, c-electric-semi&comma, c-electric-colon,
20359 c-electric-lt-gt, c-electric-paren): Don't reindent old lines
20360 when c-syntactic-indentation is nil.
20361
20362 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
20363 we were left at comments preceding the first statement when
20364 reaching the beginning of the buffer.
20365
20366 * cc-vars.el (c-syntactic-indentation): New variable to turn
20367 off all syntactic indentation.
20368
20369 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20370
20371 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
20372 between the text and the block comment ender when it hangs,
20373 depending on how many there are before the fill.
20374
20375 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20376
20377 * cc-engine.el (c-beginning-of-closest-statement): New helper
20378 function to go back to the closest preceding statement start,
20379 which could be inside a conditional statement.
20380 * cc-engine.el (c-guess-basic-syntax): Use
20381 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
20382
20383 * cc-engine.el (c-guess-basic-syntax): Better handling of
20384 arglist-intro, arglist-cont-nonempty and arglist-close when
20385 the arglist is nested inside parens. Cases 7A, 7C and 7F
20386 changed.
20387
20388 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
20389 up-to-date with javadoc 1.2.
20390
20391 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20392
20393 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
20394 multiline Pike type decls.
20395
20396 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20397
20398 * cc-cmds.el (c-indent-new-comment-line): Always break
20399 multiline comments in multiline mode, regardless of
20400 comment-multi-line.
20401
20402 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20403
20404 * cc-engine.el (c-guess-basic-syntax): Fixed bug with
20405 fully::qualified::names in C++ member init lists. Preamble in
20406 case 5D changed.
20407
20408 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20409
20410 * cc-langs.el (c-common-init): Handling of obsolete variables
20411 moved to c-initialize-cc-mode. More compatible style override
20412 when using global style variables.
20413 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
20414 variables moved here.
20415
20416 * cc-styles.el (c-make-styles-buffer-local): Flag style
20417 variable localness in c-style-variables-are-local-p to make
20418 the compatibility measure in c-common-init work well.
20419
20420 * cc-styles.el (c-set-style-1): c-special-indent-hook can no
20421 longer contain set-from-style.
20422 * cc-styles.el (c-initialize-builtin-style): Don't check for
20423 set-from-style on c-special-indent-hook.
20424 * cc-styles.el (c-copy-tree): Obsolete. The standard function
20425 copy-alist is sufficient now.
20426
20427 * cc-styles.el (c-set-style, c-set-style-1,
20428 c-get-style-variables): Fixes to variable initialization so
20429 that duplicate entries in styles have the same effect
20430 regardless of DONT-OVERRIDE.
20431
20432 * cc-styles.el (c-set-style-2): Fixed bug where the
20433 initialization of inheriting styles failed when the
20434 dont-override flag is set.
20435
20436 * cc-vars.el (c-special-indent-hook): Don't use set-from-style
20437 on this.
20438
20439 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20440
20441 * cc-defs.el (c-forward-comment): Removed the workaround
20442 introduced in 5.38 since it had worse side-effects. If a line
20443 contains the string "//\"", it regarded the // as a comment
20444 start since the \ temporarily doesn't have escape syntax.
20445
20446 2000-07-17 Emmanuel Briot <briot@act-europe.fr>
20447
20448 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
20449 ada-xref.el before ada-prj.el, so that the Project menu is created
20450 when ada-prj tries to add to it.
20451 (ada-activate-keys-for-case): Suppress the characters that are not
20452 part of the Ada syntax. Better compatibility with else-mode
20453 (ada-adjust-case-interactive): When auto-casing is not active,
20454 correctly insert newlines (used to insert only ^M). Prevent the
20455 syntax table from being changed in case of an error
20456 (or '_' becomes part of a word and some commands are confused).
20457 Do nothing if ada-auto-case is nil.
20458 (ada-after-keyword-p): Ignore keywords that are also attributes
20459 (ada-batch-reformat): Update usage comment
20460 (ada-call-from-contextual-menu): New function
20461 (ada-case-read-exceptions): Reinitialize the casing exception list
20462 first to nil first, so that the casing exception file can be
20463 shared.
20464 (ada-check-defun-name): Handles "configure" keyword for gnatdist
20465 files.
20466 (ada-compile-goto-error): Fix regexp used to detect a file:line
20467 anywhere in the error message
20468 (ada-contextual-menu-last-point): New variable
20469 (ada-create-keymap): If the variable delete-key-deletes-forward is
20470 t on XEmacs, it means that DEL should delete one character
20471 forward.
20472 (ada-create-menu): Use :included instead of :visible for XEmacs.
20473 New submenu "Options".
20474 (ada-end-stmt-re): Correctly indent "select ... then abort"
20475 statements.
20476 (ada-fill-comment-paragraph): Correctly delete all leading '--'
20477 even if they don't match ada-fill-comment-prefix Fix handling of
20478 paragraphs on the first or last line of a file.
20479 (ada-format-paramlist): Fix handling of default parameter values.
20480 (ada-get-body-name): New function.
20481 (ada-get-current-indent): Optimized by searchling directly for an
20482 existing generic part or a statement outside of it. Handle
20483 ada-indent-align-comments when indenting comments Replaced some
20484 regexps by testing directly the next character. This results in a
20485 huge speedup on some files. New indentation scheme for renames
20486 statements. Stop looking for the 'while' or 'for' associated with
20487 a 'loop' at the first semicolon encountered. A "return" can also
20488 match an anonymous access subprogram declaration.
20489 (ada-get-indent-noindent): Ignore strings and comments when
20490 looking for the keywords "record" and "private".
20491 (ada-goto-matching-decl-start): When matching "if", make sure we
20492 are not in fact seeing "end if". Ignore "when" statements except
20493 when initial keyword was "begin". Fix handling of nested
20494 procedures. Add a recursive call to this function to skip over
20495 other 'end' statmts. Fix indentation for "when .. => begin"
20496 (ada-in-open-paren-p): Fix indentation for complex boolean
20497 expressions, where 'and then', 'or else' and parenthesis
20498 statements are mixed up.
20499 (ada-in-paramlist-p): Skip comments while searching for the
20500 beginning Fix handling of operator declarations.
20501 (ada-indent-align-comments): New variable
20502 (ada-indent-current): Change the syntax table only in the
20503 protected section, so that we are sure it is restored correctly.
20504 (ada-indent-on-previous-lines): Use ada-use-indent and
20505 ada-with-indent Correctly indent "select ... then"
20506 (ada-indent-region): Slight speedup.
20507 (ada-indent-renames): New variable.
20508 (ada-last-which-function-subprog, ada-last-which-function-line):
20509 New variables
20510 (ada-looking-at-semi-private): Correctly indent the 'private'
20511 keyword when it is the first word in a package declaration.
20512 (ada-loose-case-word): Stop searching if at the end of the buffer.
20513 (ada-loose-case-word, ada-capitalize-word): Recase the whole word
20514 even if point is not initially at the end of the word.
20515 (ada-matching-decl-start-re): Add "when".
20516 (ada-mode): Add support for abbrev-mode, outline-mode and
20517 which-func-mode Override the old find-file.el entry in
20518 ff-special-constructs since it is using the obsolete
20519 ada-spec-suffix variable
20520 (ada-no-auto-case): New function
20521 (ada-scan-paramlist): When parsing the argument type, accept
20522 spaces (as in "X 'Class", generated by Rational Rose).
20523 (ada-other-file-name): No longer loads the other file.
20524 (ada-popup-menu): Save and restore the current buffer and cursor
20525 position before and after displaying the menu.
20526 (ada-search-ignore-complex-boolean): New function.
20527 (ada-uncomment-region): Emacs21 already knows how to delete
20528 comments not starting in the first column.
20529 (ada-use-indent): New variable
20530 (ada-which-function): New function.
20531 (ada-with-indent): New variable
20532 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
20533 can be batch-compiled from the command line.
20534
20535 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
20536 Add to the menu when the file is loaded, not in ada-mode-hook.
20537 Add -toolbar to the default ddd command Switches moved from
20538 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
20539 ada-prj-default-comp-opt
20540 (ada-add-ada-menu): Remove the map and name parameters Add the Ada
20541 Reference Manual to the menu
20542 (ada-check-current): rewritten as a call to ada-compile-current
20543 (ada-compile): Removed.
20544 (ada-compile-application, ada-compile-current, ada-check-current):
20545 Set the compilation-search-path so that compile.el automatically
20546 finds the sources in src_dir. Automatic scrollong of the
20547 compilation buffer. C-uC-cC-c asks for confirmation before
20548 compiling
20549 (ada-compile-current): New parameter, prj-field
20550 (ada-complete-identifier): Load the .ali file before doing
20551 processing
20552 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
20553 conform to gnatmake's behavior.
20554 (ada-find-file-in-dir): New function
20555 (ada-find-references): Set the environment variables for gnatfind
20556 (ada-find-src-file-in-dir): New function.
20557 (ada-first-non-nil): Removed
20558 (ada-gdb-application): Add support for jdb, the java debugger.
20559 (ada-get-ada-file-name): Load the original-file first if not done
20560 yet.
20561 (ada-get-all-references): Handles the new ali syntax (parent types
20562 are found between <>).
20563 (ada-initialize-runtime-library): New function
20564 (ada-mode-hook): Always load a project file when a file is opened,
20565 so that the casing exceptions are correctly read.
20566 (ada-operator-re): Add all missing operators ("abs", "rem", "**").
20567 (ada-parse-prj-file): Use find-file-noselect instead of find-file
20568 to open the project file, since the latter does not work with
20569 speedbar Get default values before loading the prj file, or the
20570 default executable file name is wrong. Use the absolute value of
20571 src_dir to initialize ada-search-directories and
20572 compilation-search-path,... Add the standard runtime library to
20573 the search path for find-file.
20574 (ada-prj-default-debugger): Was missing an opening '{'
20575 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
20576 variables.
20577 (ada-prj-default-gnatmake-opt): New variable
20578 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
20579 buffers, the project file is the default one Save the windows
20580 configuration before displaying the menu.
20581 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
20582 (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
20583 ...) regexp-quote identifiers names to support operators +,
20584 -,... in regexps.
20585 (ada-remote): New function.
20586 (ada-run-application): Erase the output buffer before starting the
20587 run Support remote execution of the application. Use
20588 call-process, or the arguments are incorrectly parsed
20589 (ada-set-default-project-file): Reread the content of the active
20590 project file, not the one from the current buffer When a project
20591 file is set as the default project, all directories are
20592 automatically associated with it.
20593 (ada-set-environment): New function
20594 (ada-treat-cmd-string): New special variable ${current}
20595 (ada-treat-cmd-string): Revised. The substitution is now done for
20596 any ${...} substring
20597 (ada-xref-current): If no body was found, compiles the spec
20598 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the
20599 compiler to get rid of command line length limitations.
20600 (ada-xref-get-project-field): New function
20601 (ada-xref-project-files): New variable
20602 (ada-xref-runtime-library-specs-path)
20603 (ada-xref-runtime-library-ali-path): New variables
20604 (ada-xref-set-default-prj-values): Default run command now does a
20605 cd to the build directory. New field: main_unit Provide a default
20606 file name even if the current buffer has no prj file.
20607
20608 * ada-prj.el:
20609 Rewritten to show a tabbed-dialog.
20610 (ada-prj-add-ada-menu): Remove the map and name parameters.
20611 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
20612 New function
20613 (ada-prj-load-directory, ada-prj-subdirs-of): New functions
20614 (ada-prj-load-from-file): New function
20615 (ada-prj-save): Always save fields that depend on the current buffer
20616 (ada-prj-show-value): New function
20617
20618 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
20619 Ada mode. This will allow us to display the Ada menu in any buffer
20620 we want (for project items).
20621 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
20622 number of spaces in the header.
20623
20624 2000-07-24 Dave Love <fx@gnu.org>
20625
20626 * ediff-init.el (ediff-region-help-echo): Bind face-help.
20627
20628 2000-07-23 Noah Friedman <friedman@splode.com>
20629
20630 * type-break.el (type-break): perform autosave.
20631 Suggested by Stephen Gildea <gildea@stop.mail-abuse.org>.
20632 (type-break-do-query): Cancel query schedule while performing
20633 actual query, to avoid possibility of a second query being made
20634 while first one is already in progress.
20635 (type-break-time-stamp-format): New variable.
20636 (type-break-time-stamp): New function.
20637 (type-break-time-warning): Use it.
20638 (type-break-keystroke-warning): Use it.
20639 (type-break-noninteractive-query): Use it.
20640
20641 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
20642 cookie.
20643 Use add-minor-mode to set minor-mode-alist, if available.
20644 (eldoc-echo-area-use-multiline-p): New user option.
20645 (eldoc-echo-area-multiline-supported-p): New variable.
20646 (eldoc-docstring-format-sym-doc): Use them.
20647 (eldoc-mode): If not using idle timers, append to local post and
20648 pre command hooks. Suggested by David Byers <davby@ida.liu.se>.
20649 (eldoc-display-message-no-interference-p): Don't interfere with
20650 edebug.
20651 Add autoload cookie for eldoc-mode minor-mode-alist initialization.
20652 (eldoc-function-arglist): New function.
20653 (eldoc-function-argstring): Use it.
20654
20655 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
20656 auto save directory exists before calling directory-files.
20657
20658 2000-07-23 Dave Love <fx@gnu.org>
20659
20660 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
20661 ^o, ^u.
20662
20663 2000-07-21 Dave Love <fx@gnu.org>
20664
20665 * ediff-init.el (ediff-region-help-echo): Modify to use overlay
20666 now passed to the function. It now works properly.
20667
20668 * smerge-mode.el (smerge-mode-menu): Fill it out.
20669
20670 2000-07-20 Gerd Moellmann <gerd@gnu.org>
20671
20672 * info-look.el (info-lookup): If *info* is shown in another frame
20673 on the same display, select that frame, instead of switching to
20674 the Info buffer in another window of the selected frame.
20675
20676 * simple.el (universal-argument-map): Bind numeric keypad keys
20677 kp-0 to kp-9 and kp-subtract.
20678 (digit-argument): Handle these keys.
20679
20680 2000-07-20 Dave Love <fx@gnu.org>
20681
20682 * net/goto-addr.el (goto-address-fontify): Don't bother with
20683 buffer-modified and read-only stuff -- irrelevant with overlays.
20684 Put an extra property on the overlays and use it to clean up in
20685 case goto-address is re-run.
20686
20687 2000-07-19 Richard M. Stallman <rms@gnu.org>
20688
20689 * timer.el (run-with-idle-timer): Doc fix.
20690
20691 * mail/mail-utils.el (mail-strip-quoted-names):
20692 Handle case where <...> appears inside "...".
20693 Use replace-match to edit the string more simply.
20694 (rmail-dont-reply-to): Cope with an unmatched ".
20695
20696 2000-07-19 Dave Love <fx@gnu.org>
20697
20698 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
20699 implementation.
20700
20701 * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
20702 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
20703 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
20704
20705 2000-07-19 Gerd Moellmann <gerd@gnu.org>
20706
20707 * textmodes/refer.el: Correct maintainer's email address.
20708
20709 * progmodes/hideif.el: Correct author's email address.
20710 Fix typo in comment.
20711
20712 * xml.el: New file.
20713
20714 * mail/mailheader.el: Correct author's mail address.
20715
20716 * gnus/parse-time.el: Correct author's mail address.
20717
20718 2000-07-19 Colin Walters <walters@cis.ohio-state.edu>
20719
20720 * comint.el (comint-highlight-input, comint-highlight-face):
20721 New user options.
20722 (comint-input-ring-file-name): Change custom type.
20723 (comint-mode-map): Bind mouse-2.
20724 (comint-insert-clicked-input): New function.
20725 (comint-send-input): Handle input highlighting.
20726
20727 2000-07-18 Stefan Monnier <monnier@cs.yale.edu>
20728
20729 * mouse.el (popup-menu): New function.
20730 (mouse-major-mode-menu): Use it.
20731
20732 2000-07-18 Dave Love <fx@gnu.org>
20733
20734 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
20735 improvements.
20736
20737 2000-07-18 Gerd Moellmann <gerd@gnu.org>
20738
20739 * faces.el (face-font-selection-order)
20740 (face-font-family-alternatives): Add custom type.
20741
20742 2000-07-18 Dave Love <fx@gnu.org>
20743
20744 * cus-edit.el (custom-variable-reset-saved)
20745 (custom-variable-reset-standard): Remove unused bindings.
20746
20747 * rect.el (open-rectangle-line): Remove unused let.
20748
20749 * hl-line.el (hl-line-highlight): Check hl-line-mode.
20750
20751 2000-07-18 Gerd Moellmann <gerd@gnu.org>
20752
20753 * cdl.el: Fix `Maintainer' keyword.
20754
20755 * play/pong.el: Add author's email address.
20756
20757 2000-07-17 Sam Steingold <sds@gnu.org>
20758
20759 * files.el (insert-directory): Call `split-string' instead of
20760 re-implementing it.
20761
20762 2000-07-18 Gerd Moellmann <gerd@gnu.org>
20763
20764 * mail/vms-pmail.el: Change maintainer to FSF.
20765
20766 * net/goto-addr.el: Change maintainer to FSF.
20767
20768 * info.el (Info-title-face-alist): Removed.
20769
20770 2000-07-18 David Ponce <david@dponce.com>
20771
20772 * recentf.el (recentf-open-files): New command that works like
20773 `recentf-open-more-files', but shows the whole list of files (not just
20774 those omitted from the menu). Useful if you don't use a menu-bar!
20775 (recentf-open-more-files) Modified to use `recentf-open-files'.
20776
20777 (recentf-open-files, recentf-open-more-files)
20778 (recentf-edit-list): Dialogs use `recentf-dialog-mode'
20779
20780 (recentf-dialog-mode): New mode for dialogs. You can now just type
20781 "q" to cancel the dialogs.
20782
20783 2000-07-18 David Ponce <david@dponce.com>
20784
20785 * recentf.el: This is a major update of recentf.el. It adds new
20786 features to better organize the recentf menu and "More..." buffer.
20787
20788 Using new provided menu filtering functions you can now organize the
20789 recent files list:
20790
20791 - by major modes
20792 - by directories
20793 - by user defined rules
20794
20795 Finally, with the new `recentf-filter-changer' customizable filter you
20796 can define a ring of filters and dynamically (via the menu) cycle on
20797 each menu organization in the ring (a la msb).
20798
20799 2000-07-18 Eli Zaretskii <eliz@is.elta.co.il>
20800
20801 * eshell/eshell.el (eshell): Replace links to eshell.info with
20802 links to eshell, to avoid problems on systems where the manual is
20803 installed as `eshell'.
20804 * eshell/esh-cmd.el (eshell-cmd): Ditto.
20805 * eshell/em-smart.el (eshell-smart): Ditto.
20806 * eshell/em-banner.el (eshell-banner): Ditto.
20807 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
20808
20809 * eshell/em-unix.el (eshell-shuffle-files): Don't disable
20810 same-file check in the MS-DOS version (it does support inodes).
20811
20812 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
20813
20814 * eshell/eshell.el (eshell-directory-name):
20815 Run default directory name through convert-standard-filename.
20816
20817 2000-07-18 Kenichi Handa <handa@etl.go.jp>
20818
20819 * international/mule-cmds.el (select-safe-coding-system):
20820 Fix typo in the comment.
20821
20822 * language/european.el (compound-text):
20823 Force katakana-jisx0201 to be designated to G1.
20824
20825 * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
20826 Don't translate some national variant characters of latin-jisx0201.
20827 (x-ctext): Force katakana-jisx0201 to be designated to G1.
20828
20829 * international/kkc.el (kkc-after-update-conversion-functions):
20830 New variable.
20831 (kkc-update-conversion): Run functions in it at the tail.
20832
20833 2000-07-16 John Wiegley <johnw@gnu.org>
20834
20835 * lisp/align.el (align-newline-and-indent):
20836 Adding new function. for auto-aligning blocks of code on RET.
20837 (align-region): Fixed badly formatted minibuffer message.
20838
20839 2000-07-17 Kenichi Handa <handa@etl.go.jp>
20840
20841 * international/kkc.el (kkc-show-conversion-list-count): Customize it.
20842 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show
20843 the conversion list at first if appropriate.
20844 (kkc-next): Don't update kkc-next-count here.
20845 (kkc-prev): Don't update kkc-prev-count here.
20846 (kkc-show-conversion-list-update): Fix setting up of conversion
20847 list message.
20848
20849 2000-07-16 Stefan Monnier <monnier@cs.yale.edu>
20850
20851 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
20852
20853 2000-07-16 Dave Love <fx@gnu.org>
20854
20855 * cus-edit.el (custom-buffer-create-internal): Use a help-echo
20856 function to be more specific.
20857
20858 * wid-edit.el (widget-specify-field, widget-specify-button): Allow
20859 non-string help-echo.
20860 (widget-types-convert-widget): Defsubst it.
20861 (widget-echo-help): Try to cope with a help-echo function of two
20862 possible sorts.
20863
20864 2000-07-15 Jason Rumney <jasonr@gnu.org>
20865
20866 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
20867 Declare as obsolete.
20868
20869 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
20870
20871 2000-07-14 Gerd Moellmann <gerd@gnu.org>
20872
20873 * hilit-chg.el: Fix typo.
20874
20875 2000-07-14 Dave Love <fx@gnu.org>
20876
20877 * info.el (Info-mode-menu): Fix use of :help, :enable.
20878
20879 2000-07-14 Stefan Monnier <monnier@cs.yale.edu>
20880
20881 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
20882
20883 2000-07-13 Dave Love <fx@gnu.org>
20884
20885 * emacs-lisp/easymenu.el: Doc fixes.
20886 (easy-menu-remove): Defalias to ignore.
20887
20888 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
20889 Call throw correctly.
20890
20891 2000-07-13 Gerd Moellmann <gerd@gnu.org>
20892
20893 * faces.el (frame-background-mode): Doc fix.
20894
20895 * simple.el (eval-expression-print-length): Change custom type to
20896 allow entering nil as value.
20897
20898 2000-07-13 Dave Love <fx@gnu.org>
20899
20900 * progmodes/fortran.el (fortran-imenu-generic-expression):
20901 Change definition layout.
20902 (fortran-mode-menu): Reinstate customize entries.
20903
20904 * cus-edit.el (custom-group-menu-create, customize-menu-create):
20905 Use :filter, per old XEmacs code.
20906
20907 2000-07-12 Gerd Moellmann <gerd@gnu.org>
20908
20909 * term.el (term-send-raw-meta): Strip modifiers from the keyboard
20910 event when deciding what to send to the terminal.
20911
20912 2000-07-12 Dave Love <fx@gnu.org>
20913
20914 * cus-start.el: Add optional version as 4th element of specs and
20915 use it for several things new in v21. Remove load-path. Fix type
20916 of line-number-display-limit.
20917
20918 2000-07-11 Dave Love <fx@gnu.org>
20919
20920 * progmodes/fortran.el: Don't require easymenu.
20921 Use repeat counts in various regexps.
20922 (fortran-mode-syntax-table): Defvar directly.
20923 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
20924 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
20925 Use defvar, not defconst.
20926 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'.
20927 (fortran-mode): Set fortran-comment-line-start-skip,
20928 fortran-comment-line-start-skip, dabbrev-case-fold-search.
20929 (fortran-comment-indent): Use defsubst.
20930 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
20931 Use fortran-comment-indent, not fortran-comment-indent-function.
20932 (fortran-comment-region, fortran-electric-line-number): Simplify.
20933 (fortran-auto-fill): New function.
20934 (fortran-do-auto-fill): Deleted.
20935 (fortran-find-comment-start-skip):
20936 Check for non-null comment-start-skip.
20937 (fortran-auto-fill-mode, fortran-fill-statement):
20938 Use fortran-auto-fill.
20939 (fortran-fill): Use fortran-auto-fill. Check for null
20940 comment-start-skip. Simplify final clause and use end-of-line finally.
20941
20942 * widget.el (widget-plist-member): New alias.
20943
20944 2000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
20945
20946 * eshell/esh-module.el (toplevel): Reference
20947 byte-compile-current-file only if it is bound.
20948
20949 2000-07-10 Gerd Moellmann <gerd@gnu.org>
20950
20951 * dired.el: Don't require `dired-aux'.
20952
20953 2000-07-10 Miles Bader <miles@lsi.nec.co.jp>
20954
20955 * dired-aux.el (dired-show-file-type): New function.
20956 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
20957 (dired-show-file-type): Add autoload.
20958
20959 2000-07-10 Kenichi Handa <handa@etl.go.jp>
20960
20961 * international/mule-diag.el (describe-font): Adjusted for the
20962 change of fontset-info.
20963 (print-fontset): Likewise.
20964
20965 2000-07-09 Stefan Monnier <monnier@cs.yale.edu>
20966
20967 * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
20968
20969 2000-07-07 Gerd Moellmann <gerd@gnu.org>
20970
20971 * bindings.el: Bind `[delete]' to delete-char.
20972
20973 * dired.el (dired-find-alternate-file): New function.
20974 (dired-mode-map): Bind `a' to dired-find-alternate-file.
20975 (toplevel): Require dired-aux when compiling.
20976 (dired-buffers): Move defvar within file to avoid compiler warning.
20977
20978 * info.el (Info-last-search): Variable removed.
20979 (Info-search-history): New variable.
20980 (Info-search): New Info-search-history.
20981
20982 * battery.el, info-look.el: Change author's mail address.
20983
20984 2000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
20985
20986 * mail/rmail.el (rmail-clear-headers): Don't throw an error
20987 if rmail-ignored-headers is nil.
20988 (rmail-retry-failure): Bind rmail-ignored-headers and
20989 rmail-displayed-headers to nil.
20990
20991 2000-07-06 Gerd Moellmann <gerd@gnu.org>
20992
20993 * lpr.el (lpr-page-header-switches): Add `-h' switch.
20994 (print-region-1): Don't hard code `-h' here.
20995
20996 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
20997
20998 2000-07-01 Francesco Potorti` <pot@gnu.org>
20999
21000 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
21001 exim can use "your message" instead of "the message".
21002
21003 2000-07-06 Stefan Monnier <monnier@cs.yale.edu>
21004
21005 * facemenu.el: Docstrings fixes.
21006 (facemenu-get-face): Don't use internal-find-face.
21007 (facemenu-iterate): Rename arg to match the docstring.
21008
21009 * newcomment.el (uncomment-region): Be more careful when skipping
21010 backwards over `=' not to bump into BOBP.
21011
21012 2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
21013
21014 * ediff-diff.el (ediff-wordify): Use syntax table.
21015 * ediff-init.el (ediff-has-face-support-p): Use
21016 ediff-color-display-p.
21017 (ediff-color-display-p): Use display-color-p, changed to defun
21018 from defsubst.
21019 Got rid of special cases for NeXT and OS/2.
21020 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
21021 face.
21022
21023 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
21024
21025 * emacs-lisp/lucid.el: Require CL.
21026 (copy-tree, remprop): Remove, it's provided by CL.
21027 (map-keymap): Define in terms of cl-map-keymap.
21028 (extent-property, set-extent-end-glyph): New functions.
21029
21030 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
21031
21032 2000-07-05 Gerd Moellmann <gerd@gnu.org>
21033
21034 * Makefile.in (DONTCOMPILE): Add comment that the name may
21035 not be changed without changing the make-dist script.
21036
21037 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
21038 (cl-mapc): Use mapc instead of cl-old-mapc.
21039
21040 2000-07-05 Andrew Innes <andrewi@gnu.org>
21041
21042 * makefile.nt: Add support for `bootstrap' and related targets.
21043
21044 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
21045
21046 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
21047 (easy-menu-do-define): Use `menu-item' format.
21048 Handle case where easy-menu-create-menu returns a symbol.
21049 Manually call the potential top-level filter in the function binding.
21050 (easy-menu-filter-return): New arg NAME.
21051 Convert to a keymap if MENU is an XEmacs menu.
21052 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item.
21053 (easy-menu-converted-items-table, easy-menu-convert-item):
21054 New var and fun to memoize easy-menu-convert-item-1.
21055 (easy-menu-do-add-item): Use it.
21056 (easy-menu-create-menu): Use easy-menu-convert-item.
21057 Wrap easy-menu-filter-return around any :filter specification.
21058 Don't convert the menu if a filter was specified.
21059 Tell easy-menu-make-symbol not to check for MENU being an expression.
21060 (easy-menu-make-symbol): New arg NOEXP.
21061
21062 2000-07-05 Gerd Moellmann <gerd@gnu.org>
21063
21064 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
21065 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
21066 (eval-defun): If called with prefix arg, instrument code for
21067 Edebug.
21068
21069 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
21070 similar to that of eval-defun.
21071
21072 2000-07-04 Dave Love <fx@gnu.org>
21073
21074 * hl-line.el (hl-line-overlay): Make it permanent-local.
21075
21076 * calendar/todo-mode.el: Replaced with a working version, based on
21077 1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
21078
21079 2000-07-03 Miles Bader <miles@lsi.nec.co.jp>
21080
21081 * paths.el (prune-directory-list): New function.
21082 (Info-default-directory-list): Rewritten to more methodically
21083 enumerate a big list of possible info directories (based on the
21084 list used by the standalone info reader).
21085
21086 * info.el (info-initialize): Use prune-directory-list to remove
21087 non-existent directories from Info-directory-list.
21088
21089 * paths.el (Info-default-directory-list): Try a list of possible
21090 info-directories instead of a single one. Add the possible
21091 info directory "/usr/share/info".
21092
21093 * woman.el (woman-man.conf-path): Explicitly include the debian
21094 man-db config file "/etc/manpath.config".
21095 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
21096 are present in `manpath.config'.
21097 (woman-manpath): Include "/usr/share/man".
21098
21099 2000-07-03 Gerd Moellmann <gerd@gnu.org>
21100
21101 * frame.el (blink-cursor-mode): Don't hide cursor initially.
21102
21103 * startup.el (command-line): Initialize blink-cursor based
21104 on window-system.
21105
21106 * frame.el (blink-cursor): Default to nil if not running under
21107 a window-system.
21108
21109 * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
21110 (face-x-resources): Remove duplicate entry for :font.
21111
21112 * textmodes/refer.el (refer-find-entry-internal): Use some-window
21113 instead of cycling through windows with next-window.
21114
21115 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
21116 of cycling through windows with next-window.
21117
21118 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
21119 of cycling through windows with next-window.
21120
21121 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
21122 (edebug-get-displayed-buffer-points): Use walk-windows/some-window
21123 instead of cycling through windows with next-window.
21124
21125 * calendar/appt.el (appt-select-lowest-window): Use walk-windows
21126 instead of cycling through windows with next-window.
21127
21128 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
21129 of cycling through windows with next-window.
21130
21131 * terminal.el (te-process-output): Use walk-windows instead of
21132 cycling through windows with next-window.
21133
21134 * server.el (server-switch-buffer): Use some-window instead of
21135 cycling through windows with next-window.
21136
21137 * window.el (some-window): New function.
21138 (walk-windows): Remove reference to walk-windows-start.
21139
21140 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
21141
21142 2000-07-03 Richard Stallman <rms@gnu.org>
21143
21144 * window.el (walk-windows): Guarantee termination by keeping a list
21145 of all the windows already handled.
21146
21147 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
21148
21149 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
21150 window-system.
21151
21152 * man.el (Man-notify-when-ready): Don't use window-system. If
21153 Man-notify-method is newframe, and the display is not
21154 multi-frame, select the frame created for the man page.
21155 (Man-init-defvars): Doc fix.
21156
21157 2000-06-28 Gerd Moellmann <gerd@gnu.org>
21158
21159 * faces.el (region): Change background color for light background.
21160
21161 * ediff-wind.el (ediff-setup-control-frame): Remove :box
21162 attribute from mode-line face of Ediff control frame.
21163
21164 * replace.el (query-replace-map): Bind `e' like `E'.
21165
21166 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
21167
21168 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
21169 Change name to "Select All".
21170
21171 * dos-fns.el (convert-standard-filename): Fix last change.
21172
21173 2000-06-27 Gerd Moellmann <gerd@gnu.org>
21174
21175 * help.el (describe-variable): Don't insert a second `'s' in front
21176 of the string `value is shown below'. Since the syntax-table is
21177 set to emacs-lisp-mode-syntax-table, forward-sexp skips over
21178 an existing `'s', so that this won't be deleted.
21179
21180 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
21181 * pcmpl-unix.el: New files.
21182
21183 2000-06-26 Stefan Monnier <monnier@cs.yale.edu>
21184
21185 * wid-edit.el (widget-member): Use the new plist-member.
21186
21187 2000-06-26 Gerd Moellmann <gerd@gnu.org>
21188
21189 * replace.el (perform-replace): Undo change of 2000-04-04.
21190 Instead, move backward 1 character at the end of the loop when
21191 necessary.
21192
21193 * faces.el (fringe): Change face for different backgrounds.
21194
21195 * eshell/esh-module.el (toplevel): Load defgroup's differently;
21196 patch from John.
21197
21198 * eshell/*.el: Change spelling of the Free Software Foundation.
21199
21200 * eshell/esh-toggle.el: Removed.
21201
21202 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
21203
21204 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
21205 interactively.
21206
21207 2000-06-26 Alex Schroeder <alex@gnu.org>
21208
21209 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
21210 `define-key'; instead of checking `(emacs-version)' check for
21211 `set-keymap-parent' and `set-keymap-name' directly. Add entries
21212 for `;' and `o' which might be electric.
21213
21214 (sql-electric-stuff): New user option.
21215 (sql-magic-go): New function which uses `sql-electric-stuff'.
21216 (sql-magic-semicolon): New function which uses
21217 `sql-electric-stuff'.
21218
21219 (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
21220 is not fboundp.
21221
21222 (sql-oracle-options): New variable.
21223 (sql-oracle): Use it.
21224
21225 (sql-imenu-generic-expression): Doc change.
21226 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
21227 is used.
21228
21229 (sql-informix): Added command line parameter "-" to force
21230 sql-informix-program to use stdout.
21231
21232 2000-06-25 Eli Zaretskii <eliz@is.elta.co.il>
21233
21234 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
21235 (cp864-decode-table): Doc fix.
21236 (cp720-decode-table): New variable, supports the Arabic OEM
21237 codepage used by Windows.
21238 (cp737-decode-table): New, Greek OEM codepage used by Windows.
21239
21240 2000-06-23 Dave Love <fx@gnu.org>
21241
21242 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
21243 (font-lock-fontify-anchored-keywords): Use
21244 line-beginning-position.
21245 (global-font-lock-mode): Use mapc.
21246
21247 2000-06-23 Stefan Monnier <monnier@cs.yale.edu>
21248
21249 * eshell/esh-module.el: Require CL when compiling.
21250
21251 2000-06-23 Gerd Moellmann <gerd@gnu.org>
21252
21253 * comint.el (comint-substitute-in-file-name): Call replace-match
21254 with second and third arg t.
21255
21256 * cus-edit.el (custom-button-face, custom-button-pressed-face):
21257 Specify foreground color.
21258
21259 * faces.el (tool-bar, mode-line, header-line): Specify foreground
21260 color.
21261
21262 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
21263
21264 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
21265 cddr instead of cdddr.
21266
21267 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
21268 instead of copy-list.
21269
21270 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
21271 of copy-list.
21272
21273 * subdirs.el: Add eshell subdirectory.
21274
21275 * eshell: New subdirectory containing the Eshell package.
21276
21277 * pcomplete.el: New file.
21278
21279 2000-06-23 Paul Eggert <eggert@twinsun.com>
21280
21281 * mail/mailpost.el (post-mail-send-it): Make sure file has
21282 proper permissions from birth.
21283
21284 * files.el (basic-save-buffer-2): When temporarily setting
21285 file modes, set them to current modes plus 0200, not to 0777.
21286
21287 * emerge.el (emerge-make-temp-file): Make sure file has proper
21288 permissions from birth.
21289
21290 2000-06-22 Eli Zaretskii <eliz@is.elta.co.il>
21291
21292 * files.el (make-backup-file-name-1): On DOS/Windows, run the
21293 backup file name through convert-standard-filename.
21294
21295 * dos-fns.el (convert-standard-filename): Convert leading
21296 directories as well. When long file names are supported, convert
21297 characters that are invalid in Windows file names.
21298
21299 2000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
21300
21301 * ps-print.el: Fix bug: if ^L is the very first buffer character,
21302 ps-print crashes. New feature: page selection for printing. Create
21303 raw-text-unix coding system for XEmacs. Doc fix.
21304 (ps-print-version): New version number (5.2.3).
21305 (ps-plot-region): Bug fix.
21306 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
21307 (ps-header-sheet, ps-generate, ps-end-job): Code fix.
21308 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
21309 funs.
21310 (ps-selected-pages, ps-last-selected-pages, ps-first-page)
21311 (ps-last-page): New vars.
21312
21313 2000-06-21 Gerd Moellmann <gerd@gnu.org>
21314
21315 * progmodes/sh-script.el (sh-while-getopts): Fix handling of
21316 empty option string.
21317
21318 2000-06-21 Eli Zaretskii <eliz@is.elta.co.il>
21319
21320 * man.el (man): Doc fix.
21321
21322 2000-06-21 Kenichi Handa <handa@etl.go.jp>
21323
21324 * international/mule-cmds.el (set-language-info-alist): Docstring
21325 fixed.
21326
21327 2000-06-20 Gerd Moellmann <gerd@gnu.org>
21328
21329 * version.el (emacs-version): Use ISO date format.
21330
21331 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
21332 instead of `M-backspace'.
21333
21334 * simple.el (turn-off-auto-fill): New function.
21335
21336 2000-06-20 Stefan Monnier <monnier@cs.yale.edu>
21337
21338 * jit-lock.el (with-buffer-prepared-for-jit-lock):
21339 Renamed from with-buffer-prepared-for-font-lock and use
21340 inhibit-modification-hooks rather than setting *-change-functions.
21341 Update all functions to use the new name.
21342 (jit-lock-first-unfontify-pos): New semantics (and doc).
21343 (jit-lock-mode): Make non-interactive.
21344 Don't automatically turn on font-lock.
21345 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
21346 Always use jit-lock-after-change.
21347 Remove and restore font-lock-after-change-function.
21348 (turn-on-jit-lock, jit-lock-after-fontify-buffer)
21349 (jit-lock-after-unfontify-buffer): Remove.
21350 (jit-lock-stealth-fontify):
21351 Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
21352 (jit-lock-after-change): Set the `fontified' text-prop to nil.
21353
21354 2000-06-20 Sam Steingold <sds@gnu.org>
21355
21356 * emacs-lisp/cl-indent.el (toplevel): Indent
21357 `print-unreadable-object' properly. Untabify.
21358
21359 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
21360
21361 * textmodes/reftex.el (reftex-find-citation-regexp-format):
21362 Support for bibentry.
21363 (reftex-compile-variables): Fixed problem with end of section-re.
21364
21365 * texmodes/reftex-dcr.el (reftex-view-crossref,
21366 reftex-view-crossref-from-bibtex):
21367 Deal with changed `reftex-find-citation-regexp-format'.
21368 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
21369 Replaced `remprop' with `put'.
21370 (reftex-view-crossref, reftex-view-crossref-when-idle):
21371 Support for bibentry.
21372
21373 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
21374 New entry for bibentry package.
21375
21376 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
21377 Regexp also matches "\nobibliography".
21378
21379 * textmodes/reftex-global.el (reftex-renumber-simple-labels):
21380 Call `reftex-ensure-write-access' before doing anything.
21381 (reftex-ensure-write-access): New function.
21382
21383 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
21384
21385 * progmodes/idlwave.el: File re-installed (update to version 4.2)
21386
21387 * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
21388
21389 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
21390
21391 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
21392
21393
21394 2000-06-20 Dave Love <fx@gnu.org>
21395
21396 * faces.el (frame-background-mode): Use set-default, not set, in
21397 setter.
21398 (frame-update-faces, frame-update-face-colors): Define with
21399 defalias.
21400
21401 * enriched.el (enriched-decode-foreground)
21402 (enriched-decode-background): Don't use internal-find-face.
21403
21404 * apropos.el: Doc fixes.
21405
21406 * cus-edit.el (customize-changed-options): Check arg.
21407 (customize-version-lessp): Don't require decimal point.
21408
21409 * custom.el (defcustom, defgroup): Doc fix.
21410
21411 * newcomment.el (comment) <defgroup>: Add :version.
21412 (comment-multi-line): Doc fix.
21413
21414 * emulation/mlsupport.el (define-hooked-local-abbrev,
21415 define-hooked-global-abbrev): Fix, using define-abbrev.
21416
21417 2000-06-19 Gerd Moellmann <gerd@gnu.org>
21418
21419 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
21420 the whole buffer.
21421
21422 2000-06-19 Dave Love <fx@gnu.org>
21423
21424 * menu-bar.el (menu-bar-options-save): New function.
21425 (menu-bar-options-menu): Use it.
21426 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
21427 Simplify.
21428
21429 2000-06-19 Andreas Schwab <schwab@suse.de>
21430
21431 * progmodes/etags.el (tags-query-replace): Put new parameters
21432 START and END at the end, for backward compatibility.
21433
21434 2000-06-19 Kenichi Handa <handa@etl.go.jp>
21435
21436 * international/codepage.el:
21437 (cp-coding-system-for-codepage-1): Delete special codes for
21438 generating xxx-dos coding system because now a CCL based coding
21439 system can handle EOL conversion by default.
21440
21441 * international/mule.el (make-coding-system): Generate subsidiary
21442 coding systems for EOL handling variants even for a CCL based
21443 coding system.
21444
21445 2000-06-19 Kenichi Handa <handa@etl.go.jp>
21446
21447 * international/isearch-x.el (isearch-minibuffer-input-method)
21448 (isearch-minibuffer-input-method-function): These variables
21449 deleted.
21450 (isearch-with-input-method): Don't use the above variables.
21451 (isearch-process-search-multibyte-characters): Likewise. Call
21452 read-string with the arg INHERIT-INPUT-METHOD t.
21453
21454 2000-06-17 Stefan Monnier <monnier@cs.yale.edu>
21455
21456 * font-lock.el (font-lock-after-fontify-buffer)
21457 (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
21458
21459 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
21460 Use consistent make-local-variable style for font-lock-fontified.
21461 (jit-lock-fontify-buffer):
21462 Don't bother checking for font-lock-mode and jit-lock-mode.
21463
21464 * time.el: Remove trailing ^M that prevent CVS-merging.
21465
21466 2000-06-16 Gerd Moellmann <gerd@gnu.org>
21467
21468 * Makefile.in (distclean): New target.
21469
21470 2000-06-16 Stefan Monnier <monnier@cs.yale.edu>
21471
21472 * Makefile.in (srcdir): Define for update-subdirs.
21473
21474 2000-06-16 Gerd Moellmann <gerd@gnu.org>
21475
21476 * find-lisp.el: New file.
21477
21478 2000-06-16 Andrew Innes <andrewi@gnu.org>
21479
21480 * time.el (display-time-mail-function): New variable, to allow
21481 external packages to indicate when new mail is available.
21482 (display-time-update): Use it.
21483
21484 2000-06-16 Kenichi Handa <handa@etl.go.jp>
21485
21486 * international/mule.el (mule-version): Change version name to
21487 SAKAKI. AOI has already been used by Meadow.
21488
21489 * international/quail.el (quail-show-guidance-buf): To find the
21490 bottom window (but minibuffer), pay attention to the height of
21491 minibuffer.
21492
21493 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
21494
21495 * arc-mode.el (archive-mode-map): Use the new menu-item format for
21496 menu-bar menus. Add help strings. Don't remove the Edit menu
21497 from the menu bar, as the menu bar has enough space now.
21498
21499 * Makefile.in (SHELL): Make sure /bin/sh is used.
21500
21501 * woman.el (woman-man-buffer): Fix bold and underlined CJK
21502 characters, which use series of two ^H characters instead of one.
21503
21504 2000-06-15 Gerd Moellmann <gerd@gnu.org>
21505
21506 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
21507 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
21508 functions.
21509 (Info-find-node-2): Try a case-sensitive search first, then
21510 do a case-insensitive search.
21511
21512 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
21513 tutorials.
21514
21515 * complete.el (PC-env-vars-alist): New variable.
21516 (PC-complete-as-file-name): New function.
21517 (partial-completion-mode): Initialize PC-env-vars-alist from
21518 process-environment.
21519 (PC-do-completion): Handle completion of env vars.
21520
21521 * info.el (Info-set-mode-line): Show file name in mode line,
21522 use `*Info*' instead of `Info:'.
21523
21524 * startup.el (command-line-1): Change copyright messages to year
21525 2000.
21526
21527 2000-06-15 Dave Love <fx@gnu.org>
21528
21529 * net/goto-addr.el (goto-address-fontify): Use keymap property,
21530 not local-map.
21531
21532 2000-06-15 Kenichi Handa <handa@etl.go.jp>
21533
21534 * international/mule.el (set-buffer-file-coding-system): Almost
21535 rewritten to handle `undecided' as no-op.
21536
21537 2000-06-14 Gerd Moellmann <gerd@gnu.org>
21538
21539 * Makefile.in: New file.
21540
21541 * Makefile: Removed.
21542
21543 * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
21544 (goto-address-highlight-keymap): Bind C-c RET.
21545
21546 2000-06-14 Kenichi Handa <handa@etl.go.jp>
21547
21548 * mail/sendmail.el (sendmail-send-it): The temporary buffer
21549 inherits buffer-file-coding-system of the current buffer.
21550
21551 * tar-mode.el (tar-extract): For goto-char, use (point-min), not
21552 0. Give correct argument to set-auto-coding-function.
21553 (tar-expunge): For goto-char, use (point-min), not 0.
21554 (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
21555 (tar-subfile-save-buffer): Likewize.
21556
21557 * international/mule.el
21558 (after-insert-file-set-buffer-file-coding-system): Call
21559 set-buffer-file-coding-system with the arg FORCE t.
21560
21561 2000-06-13 Gerd Moellmann <gerd@gnu.org>
21562
21563 * mail/sendmail.el (mail-specify-envelope-from): Initialize to
21564 nil. Contemporary sendmails issue an X-Authentication-Warning if
21565 the sender is set with `-f'.
21566
21567 2000-06-13 Dave Love <fx@gnu.org>
21568
21569 * help.el (describe-function-1): Kluge around cases of functions
21570 fset to subrs whose doc doesn't match their symbol-name.
21571
21572 * image.el (insert-image): Default STRING to a space.
21573
21574 * info.el Doc fixes.
21575 (Info-build-node-completions): Match Ref tags.
21576
21577 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
21578
21579 * frame.el (display-multi-frame-p, display-multi-font-p): New
21580 defaliases for display-graphic-p.
21581
21582 * hl-line.el: Fixed a typo in commentary.
21583
21584 2000-06-13 Kenichi Handa <handa@etl.go.jp>
21585
21586 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
21587 fixed.
21588
21589 2000-06-12 Dave Love <fx@gnu.org>
21590
21591 * image.el (insert-image): Save a little consing.
21592
21593 2000-06-12 Kenichi Handa <handa@etl.go.jp>
21594
21595 * language/tibet-util.el: Convert all tibetan-1-column characters
21596 to the corresponding tibetan characters.
21597 (tibetan-add-components): Delete code for the special treatment of
21598 'a chung.
21599
21600 * language/tibetan.el (tibetan-composable-pattern): Fix previous
21601 change.
21602 (tibetan-vowel-transcription-alist): More rules added.
21603 (tibetan-composite-vowel-alist): New variable.
21604 (tibetan-precomposition-rule-alist): More rules added.
21605
21606 2000-06-12 Stefan Monnier <monnier@cs.yale.edu>
21607
21608 * startup.el (command-line): Only call menu-bar-mode if interactive.
21609
21610 * thingatpt.el (toplevel symbol-properties):
21611 * textmodes/makeinfo.el (makeinfo-compile):
21612 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
21613 * progmodes/hideif.el (hif-compress-define-list)
21614 (hide-ifdef-use-define-alist):
21615 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
21616 (ange-ftp-vms-add-file-entry):
21617 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
21618 * man.el (Man-build-man-command):
21619 * mail/rnewspost.el (news-reply-header-hook):
21620 * info.el (Info-insert-dir):
21621 * emulation/mlconvert.el (backward-word, forward-word, setq):
21622 * emacs-lisp/gulp.el (gulp-send-requests):
21623 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
21624 (byte-optimize-inline-handler, byte-optimize-form-code-walker)
21625 (byte-optimize-apply, end of file):
21626 * emacs-lisp/advice.el (ad-advice-class-completion-table)
21627 (ad-make-freeze-definition):
21628 * startup.el (command-line, command-line-1): Don't quote lambdas.
21629
21630 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
21631 (cvs-cleanup-removed): New function.
21632 (cvs-cleanup-functions): New var.
21633 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
21634 some flexibility in specifying additional entries to auto-cleanup.
21635 (cvs-quickdir): New function.
21636 (cvs-mode-insert): Use cvs-fileinfo-from-entries.
21637 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
21638 (cvs-mode-find-file): Check that we are on a filename or dirname
21639 when invoked through a mouse-click.
21640 (cvs-full-path): Remove.
21641 (cvs-dired-action): Re-introduced.
21642 (cvs-dired-noselect): Use it.
21643 (vc-post-command-functions): use this new hook if available.
21644
21645 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
21646 (cvs-status-map): Don't inherit from cvs-mode-map anymore.
21647 (cvs-filename-map, cvs-dirname-map): Remove.
21648 (cvs-default-action): Remove.
21649 (cvs-add-face): Use `keymap' rather than `local-map' property, and only
21650 if the arg is really a keymap.
21651 (cvs-fileinfo-pp): Don't use any special map for file and dir names.
21652 Don't hardcode the mapping from state (aka type) to face, but check
21653 the var cvs-fi-<type>-face instead.
21654 (cvs-fileinfo-from-entries): New function.
21655
21656 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
21657 Docstring fix.
21658 (cvs-find-file-and-jump): Change default to be safer.
21659 (cvs-mode-diff-map): Define it as a function as well.
21660 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
21661 Bind mouse-2 in this global map rather than with text-properties.
21662
21663 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
21664 file to resolve the ambiguity between C(conflict) and C(need-merge).
21665
21666 2000-06-12 Kenichi Handa <handa@etl.go.jp>
21667
21668 * international/mule.el (set-buffer-file-coding-system): If
21669 CODING-SYSTEM is nil, set buffer-file-coding-system to nil
21670 unconditionally.
21671
21672 2000-06-12 Dave Love <fx@gnu.org>
21673
21674 * wid-edit.el (widget-specify-button): Really suppress the face if
21675 required.
21676
21677 2000-06-11 Gerd Moellmann <gerd@gnu.org>
21678
21679 * term/x-win.el (x-colors): Add colors from recent rgb.txt.
21680
21681 2000-06-11 Stefan Monnier <monnier@cs.yale.edu>
21682
21683 * imenu.el (imenu-generic-expression): Docstring fix.
21684
21685 * composite.el (composition-function-table): Move the `put'
21686 below the autoload cookie so we can load the file before loaddefs.
21687
21688 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
21689
21690 * emacs-lisp/autoload.el (make-autoload): Use `cond'.
21691 Handle easy-mmode-define-global-mode.
21692 For complex macros like define-minor-mode that can generate
21693 several autoload entries, try to autoload entries in the
21694 macroexpanded code.
21695
21696 * emacs-lisp/easy-mmode.el (define-minor-mode):
21697 If KEYMAP is a symbol, just use it.
21698 Use byte-compile-current-file and load-file-name to infer the
21699 proper :require to pass to defcustom.
21700 Wrap the hook var into `progn' so as not to autoload it.
21701 Add a :autoload-end cookie.
21702 Be more careful about the evaluation of KEYMAP.
21703 (easy-mmode-define-global-mode): Add a :autoload-end cookie.
21704 (define-derived-mode): Move define-abbrev-table outside of defvar.
21705
21706 2000-06-10 Stefan Monnier <monnier@cs.yale.edu>
21707
21708 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
21709 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
21710 (backup-compiled-files): Ignore errors during `tar'.
21711 (bootstrap): Make autoloads before elc files.
21712
21713 2000-06-10 Kenichi Handa <handa@etl.go.jp>
21714
21715 * international/mule.el (set-buffer-file-coding-system): If one of
21716 undecided-XXX is specified, change only EOL conversion.
21717
21718 * international/mule-conf.el (unix): New alias for the coding
21719 system undecided-unix.
21720
21721 2000-06-09 Dave Love <fx@gnu.org>
21722
21723 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
21724
21725 * progmodes/executable.el: Byte compile dynamic.
21726 (executable-insert): Change custom type.
21727 (executable-find): Add autoload cookie.
21728 (executable-make-buffer-file-executable-if-script-p): New
21729 function. After Noah Friedman.
21730
21731 * files.el (after-save-hook): Customize, with
21732 executable-make-buffer-file-executable-if-script-p as an option.
21733
21734 2000-06-09 Kenichi Handa <handa@etl.go.jp>
21735
21736 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
21737 "tib24p-mule.bdf" for Tibetan.
21738
21739 * composite.el (decompose-composite-char): Declare it as obsolete.
21740
21741 * man.el (Man-fontify-manpage): Pay attention to underline and
21742 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
21743
21744 2000-06-08 Gerd Moellmann <gerd@gnu.org>
21745
21746 * thingatpt.el (forward-thing): Use functionp instead of fboundp.
21747 Set maintainer to FSF since author isn't reachable.
21748
21749 2000-06-08 Dave Love <fx@gnu.org>
21750
21751 * international/mule-cmds.el (select-safe-coding-system): If
21752 DEFAULT-CODING-SYSTEM is not specified, also check the most
21753 preferred coding-system if buffer-file-coding-system is
21754 `undecided'. From Handa.
21755
21756 2000-06-08 Kenichi Handa <handa@etl.go.jp>
21757
21758 * international/mule.el
21759 (after-insert-file-set-buffer-file-coding-system): If the buffer
21760 size is greater than INSERTED, judget that we are not visiting.
21761
21762 2000-06-07 Rajesh Vaidheeswarran <rv@gnu.org>
21763
21764 * whitespace.el (defgroup whitespace): Comment out `:version'.
21765 XEmacs 20.4 has problems defining the group with this present.
21766 We'll have this commented out till get resolve the problem.
21767
21768 2000-06-07 John Wiegley <johnw@gnu.org>
21769
21770 * align.el (align-dq-string-modes, align-sq-string-modes)
21771 (align-open-comment-modes): Add pyhton-mode.
21772 (align-rules-list): Use get-text-property instead of
21773 text-properties-at.
21774 (align-rules-list): Add python-assignment.
21775 (align-rules-list): Change perl-comma-delimiter to
21776 basic-comma-delimiter. Use if for Perl modes and python-mode.
21777 (align-rules-list): Add python-chain-logic and
21778 basic-line-continuation.
21779
21780 2000-06-07 Jari Aalto <jari.aalto@poboxes.com>
21781
21782 * apropos.el (apropos-mode-hook): New user variable.
21783 (apropos-mode): Run apropos-mode-hook.
21784
21785 2000-06-07 David Ponce <david@dponce.com>
21786
21787 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
21788 commands. Require `wid-edit' at run-time.
21789
21790 2000-06-07 David Ponce <david@dponce.com>
21791
21792 * recentf.el: Added some "Commentary".
21793 (recentf-open-more-files, recentf-edit-list): Minor changes to
21794 move the point at the top of the file list. This behaviour is
21795 consistent with the menu one when the list contains a lot of
21796 files.
21797 (recentf-cleanup): Now displays the number of items removed from
21798 the list.
21799 (recentf-relative-filter) New menu filter to show filenames
21800 relative to `default-directory'.
21801
21802 2000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
21803
21804 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size
21805 with/without giving an error if PostScript printer doesn't have this
21806 kind of page size. Zebra Stripe continues or restarts on next page.
21807 Manual/automatic paper feeding. Switch or not the header.
21808 (ps-print-version): New version number (5.2.2).
21809 (ps-windows-system): Include emx as a Windows system.
21810 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
21811 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
21812 (ps-background-text): Code fix.
21813 (ps-error-handler-message, ps-user-defined-prologue)
21814 (ps-print-prologue-header, ps-printer-name)
21815 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
21816 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
21817 (ps-use-face-background): Customization fix.
21818 (ps-n-up-database): Data fix.
21819 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
21820 (ps-switch-header): New vars.
21821 (ps-xemacs-color-name, ps-face-foreground-name)
21822 (ps-face-background-name, ps-boolean-constant): New funs.
21823
21824 2000-06-07 Dave Love <fx@gnu.org>
21825
21826 * allout.el: New version from Manheimer.
21827
21828 2000-06-07 Kenichi Handa <handa@etl.go.jp>
21829
21830 * textmodes/fill.el (fill-find-break-point): Check the validity of
21831 charset.
21832
21833 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
21834
21835 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
21836 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
21837 Call display-color-p and display-mouse-p instead of looking at
21838 window-system.
21839
21840 2000-06-06 Dave Love <fx@gnu.org>
21841
21842 * image.el (find-image): Doc fix. Return nil if image not found.
21843 (put-image, insert-image): Make STRING arg optional.
21844
21845 2000-06-06 Kenichi Handa <handa@etl.go.jp>
21846
21847 * language/vietnamese.el: Remove eval-when-compile.
21848 (viet-viscii-nonascii-translation-table): Define it as a
21849 translation table made from viet-viscii-decode-table.
21850 (viet-viscii-encode-table): Define it as a translation table made
21851 from the reverse map of above.
21852 (viet-vscii-nonascii-translation-table): Define it as a
21853 translation table made from viet-vscii-decode-table.
21854 (viet-vscii-encode-table): Define it as a translation table made
21855 from the reverse map of above.
21856 (ccl-decode-viscii): Use translate-character.
21857 (ccl-encode-viscii, ccl-encode-viscii-font)
21858 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
21859 Likewize.
21860
21861 * language/cyrillic.el: Remove eval-when-compile.
21862 (cyrillic-koi8-r-nonascii-translation-table): Define it as a
21863 translation table made from cyrillic-koi8-r-decode-table.
21864 (cyrillic-koi8-r-encode-table): Define it as a translation table
21865 made from the reverse map of above.
21866 (ccl-decode-koi8): Use translate-character.
21867 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
21868 (cyrillic-alternativnyj-nonascii-translation-table): Define it as
21869 a translation table made from cyrillic-alternativnyj-decode-table.
21870 (cyrillic-alternativnyj-encode-table): Define it as a translation
21871 table made from the reverse map of above.
21872 (ccl-decode-alternativnyj): Use translate-character.
21873 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
21874 Likewize
21875
21876 * international/mule-diag.el (non-iso-charset-alist): Specify
21877 translation table symbol instead of translation table itself.
21878 (list-block-of-chars): CHARSET may be a translation table symbol.
21879
21880 * international/mule.el (make-coding-system): If CODING-SYSTEM
21881 already exists, override it.
21882
21883 * international/fontset.el: Use family `proportional' for Tibetan
21884 fonts.
21885
21886 * international/ccl.el (ccl-compile-translate-character): Don't
21887 check if Rrr has property translation-table.
21888 (ccl-compile-map-multiple): Modified to avoid compiler warning.
21889
21890 2000-06-05 Gerd Moellmann <gerd@gnu.org>
21891
21892 * info.el: Bind case-fold-search to t when searching in case
21893 a user sets it to nil in a hook.
21894
21895 2000-06-05 Stefan Monnier <monnier@cs.yale.edu>
21896
21897 * autoarg.el (autoarg-mode, autoarg-kp-mode):
21898 * hl-line.el (hl-line-mode): Use the new :global key argument.
21899
21900 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
21901 (tar-clip-time-string): Prepend a space.
21902 (tar-grind-file-mode): Construct a string rather than modifying one.
21903 (tar-header-block-summarize): Fix docstring.
21904 Use `format' rather than an error-prone set of copy-loops.
21905
21906 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
21907 (diff-goto-source, diff-unified->context, diff-context->unified)
21908 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
21909 understand the format output by the `-p' argument to diff.
21910
21911 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
21912 (sh-re-done): Use defconst.
21913 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
21914 (sh-help-string-for-variable, sh-guess-basic-offset):
21915 Don't quote lambdas.
21916 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
21917 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
21918
21919 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
21920 (mh-letter-mode): Derive from text-mode.
21921 This implicitly means that it now calls kill-all-local-variables.
21922 Also remove the Emacs-18 compatibility code.
21923
21924 * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
21925 Make use of symbol-property doc-string-elt.
21926 Use memq rather than a sequence of eq.
21927 (doc-string-elt): Fix the wrong or missing previously unused values.
21928 (autoload-print-form): New function extracted from
21929 generate-file-autoloads to allow recursion when handling progn
21930 so that defvar's and defun's docstrings are properly printed.
21931 (generate-file-autoloads): Use it.
21932
21933 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
21934 Use find-file-hooks in the minor-mode function.
21935 Be careful not to loop indefinitely in the post-command-hook function.
21936
21937 2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
21938
21939 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
21940 tty's.
21941 * ediff-diff.el (ediff-exec-process): Use --binary for fine
21942 differences whenever appropriate.
21943 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
21944 * viper.el (find-file, find-file-other-window): Get viper to do
21945 wildcards.
21946
21947 2000-06-04 Stefan Monnier <monnier@cs.yale.edu>
21948
21949 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
21950 (jit-lock-fontify-buffer): New function for JIT refontification.
21951 (jit-lock-mode): Fix docstring.
21952 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
21953 Remove jit-lock-after-change from the _local_ hook.
21954 (jit-lock-function-1): Fix docstring.
21955
21956 * info.el (Info-on-current-buffer): Initialize info.
21957
21958 * newcomment.el (comment-indent): Ignore comment-indent-hook.
21959
21960 * progmodes/tcl.el (tcl-indent-for-comment):
21961 Ignore comment-indent-hook.
21962
21963 * emacs-lisp/easy-mmode.el: Require CL during compilation.
21964 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
21965 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
21966 and improve to use the lighter to guess the capitalization.
21967 (define-minor-mode): Inline code from easy-mmode-define-toggle.
21968 Add keyword arguments to specify global-ness or the custom group.
21969 Add local-map and help-echo properties to the lighter.
21970 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
21971 (easy-mmode-define-global-mode): New macro.
21972
21973 2000-06-02 Dave Love <fx@gnu.org>
21974
21975 * wid-edit.el: byte-compile-dynamic since we typically don't use
21976 all the widgets. Don't require cl or widget. Remove
21977 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
21978 (widget-read-event): Removed. Callers changed to use read-event.
21979 (widget-button-release-event-p): Renamed from
21980 button-release-event-p.
21981 (widget-field-add-space, widget-field-use-before-change):
21982 Uncustomize.
21983 (widget-specify-field): Use keymap property, not local-map.
21984 (widget-specify-button): Obey :suppress-face.
21985 (widget-specify-insert): Use modern backquote syntax.
21986 (widget-image-directory): Renamed from widget-glyph-directory.
21987 (widget-image-enable): Renamed from widget-glyph-enable.
21988 (widget-image-find): Replaces widget-glyph-find.
21989 (widget-button-pressed-face): Move defvar.
21990 (widget-image-insert): Replaces widget-glyph-insert.
21991 (widget-convert): Use keywordp.
21992 (widget-leave-text, widget-children-value-delete): Use mapc.
21993 (widget-keymap): Remove XEmacs stuff.
21994 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
21995 (widget-button-click): Don't set point at the click, but re-centre
21996 if we scroll out of window. Rewritten for images v. glyphs &c.
21997 (widget-tabable-at): Use POS arg, not point.
21998 (widget-beginning-of-line, widget-end-of-line)
21999 (widget-item-value-create, widget-sublist, widget-princ-to-string)
22000 (widget-sexp-prompt-value, widget-echo-help): Simplify.
22001 (widget-default-create): Use widget-image-insert; some rewriting.
22002 (widget-visibility-value-create)
22003 (widget-push-button-value-create, widget-toggle-value-create): Use
22004 widget-image-insert.
22005 (checkbox): Create on and off images dynamically.
22006 (documentation-link): Change :help-echo.
22007 (widget-documentation-link-echo-help): Remove.
22008
22009 2000-06-02 Stefan Monnier <monnier@cs.yale.edu>
22010
22011 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
22012
22013 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
22014 (easy-mmode-define-toggle, define-minor-mode): Use it.
22015 (easy-mmode-define-keymap): Docstring fix.
22016 (define-derived-mode): Default PARENT to fundamental-mode.
22017 Add the derived-mode-parent symbol-property.
22018 (easy-mmode-derived-mode-p): New function.
22019
22020 2000-06-02 Dave Love <fx@gnu.org>
22021
22022 * files.el (convert-standard-filename): Doc fix.
22023 (normal-backup-enable-predicate): New function.
22024 (backup-enable-predicate): Use it to replace the lambda form.
22025
22026 * calendar/todo-mode.el: [This needs more work on the outline
22027 stuff.] Doc fixes.
22028 (todo) <defgroup>: Add :version.
22029 (todo-add-category): Don't use pushnew.
22030 (todo-cmd-raise): Fix typo.
22031 (todo-top-priorities): Change temp buffer name.
22032 (todo-category-alist): Avoid redundant lambda.
22033 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
22034 Use outline-next-heading.
22035
22036 * autoarg.el: Rewritten to use define-minor-mode.
22037 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
22038 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
22039
22040 2000-06-02 Kenichi Handa <handa@etl.go.jp>
22041
22042 * isearch.el (isearch-other-meta-char): Fix previous change.
22043
22044 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
22045
22046 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
22047 (log-edit-done): Only add the comment to the ring if it's different
22048 from the last comment entered.
22049
22050 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
22051
22052 2000-06-01 Dave Love <fx@gnu.org>
22053
22054 * hl-line.el: Rewritten using define-minor-mode.
22055
22056 * help.el (describe-function-1): Distinguish special form from
22057 builtin function. Sanity-check presence of arglist for builtins.
22058
22059 2000-06-01 Kenichi Handa <handa@etl.go.jp>
22060
22061 * international/characters.el: Fix syntax/category setting of
22062 Tibetan characters.
22063
22064 * language/tibet-util.el (tibetan-add-components): Fixes for new
22065 encoding of Tibetan characters.
22066 (tibetan-decompose-precomposition-alist): New variable.
22067 (tibetan-decompose-region): Convert precomposed characters to
22068 non-precomposed characters.
22069 (tibetan-decompose-string): Likewise.
22070 (tibetan-composition-function): Fix args to
22071 thibetan-compose-string.
22072
22073 * language/tibetan.el (tibetan-composable-pattern): More
22074 characters included.
22075 (tibetan-consonant-transcription-alist): Rule for "R" added.
22076 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
22077 "+R" added.
22078 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
22079
22080 * language/lao-util.el (lao-composition-function): Fix args to
22081 compose-string.
22082
22083 * language/thai-util.el (thai-composition-function): Fix args to
22084 compose-string.
22085
22086 * isearch.el (isearch-update): Set disable-point-adjustment to t
22087 to prevent the point moving to the end of a composition when a
22088 part of a composition is searched.
22089 (isearch-other-meta-char): If the key invoking this command can be
22090 mapped by function-key-map to a printing char, call
22091 isearch-process-search-char directly.
22092
22093 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
22094
22095 * emacs-lisp/bytecomp.el:
22096 * frame.el:
22097 * international/mule-cmds.el:
22098 * international/mule-util.el:
22099 * international/mule.el:
22100 * mouse.el:
22101 * subr.el:
22102 * faces.el: Update calls to make-obsolete with a WHEN argument.
22103
22104 * byte-run.el (make-obsolete, make-obsolete-variable):
22105 Add an optional WHEN argument and change the format of the
22106 symbol-property information.
22107 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
22108 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
22109 new obsolete-symbol-property format and print WHEN if it is provided.
22110
22111 2000-05-31 Dave Love <fx@gnu.org>
22112
22113 * loadhist.el (loadhist-hook-functions): Remove
22114 before-change-function, after-change-function.
22115 (unload-feature): Deal with symbols which are both bound and
22116 fbound.
22117
22118 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
22119 before-change-function, after-change-function.
22120
22121 * simple.el (newline): Don't bind before-change-function,
22122 after-change-function.
22123
22124 2000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
22125
22126 * whitespace.el (whitespace-rescan-timer-time): Update interval
22127 set to 600 seconds (10 minutes) instead of 60 seconds since
22128 a large number of whitespace buffers causes emacs to `freeze'
22129 for a considerable amount of time.
22130
22131 * whitespace.el: Updated email address
22132
22133 2000-05-31 Dave Love <fx@gnu.org>
22134
22135 * add-log.el (change-log-font-lock-keywords) <function>: Add
22136 pattern for function of change.
22137 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
22138 acknowledgements patterns.
22139
22140 2000-05-31 Kenichi Handa <handa@etl.go.jp>
22141
22142 * isearch.el (isearch-printing-char): If keyboard coding system is
22143 being used, call isearch-process-search-multibyte-characters.
22144
22145 * international/isearch-x.el: Mostly rewritten.
22146
22147 * international/quail.el (quail-start-conversion): Don't include
22148 unhandled events in the returned events, but set them in
22149 unread-command-events. Exit if all inputs are deleted.
22150
22151 2000-05-30 Jason Rumney <jasonr@gnu.org>
22152
22153 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
22154
22155 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
22156 Reenable code to create initial fontsets.
22157 Use set-fontset-font in place of put-charset-property.
22158
22159 2000-05-30 Gerd Moellmann <gerd@gnu.org>
22160
22161 * progmodes/perl-mode.el (perl-indent-line): When looking for a
22162 label, ensure that the first colon isn't followed by another.
22163
22164 * paths.el (Info-default-directory-list): Doc fix.
22165
22166 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
22167 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
22168 send a query containing USER only, not USER@HOST.
22169
22170 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
22171 and rmail-msgend to compute the restriction at the end, instead of
22172 computing it.
22173
22174 2000-05-29 Gerd Moellmann <gerd@gnu.org>
22175
22176 * dabbrev.el (dabbrev-expand): Don't display messages in the
22177 echo area if the minibuffer window is active.
22178
22179 * jit-lock.el (jit-lock-mode): Add after change function to
22180 local hook.
22181
22182 2000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
22183
22184 * antlr-mode.el: New commands: hide/unhide actions,
22185 upcase/downcase literals.
22186 (antlr-tiny-action-length): New user option.
22187 (antlr-hide-actions): New command. Suggested by
22188 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
22189 (antlr-mode-map): New binding [C-c C-v].
22190 (antlr-mode-menu): New entries.
22191 (antlr-downcase-literals): New command.
22192 (antlr-upcase-literals): Ditto.
22193
22194 * antlr-mode.el: Minor changes: indendation, mode-name.
22195 (antlr-indent-line): Indent cpp directive at column 0.
22196 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
22197
22198 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
22199 (antlr-font-lock-additional-keywords): Workaround for intentional
22200 bug in XEmacs version of font-lock.
22201 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
22202 be used by a smarter version of `buffers-menu-grouping-function'.
22203
22204 2000-05-29 Gerd Moellmann <gerd@gnu.org>
22205
22206 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
22207 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
22208
22209 2000-05-29 Kenichi Handa <handa@etl.go.jp>
22210
22211 * international/encoded-kb.el
22212 (encoded-kbd-iso2022-designation-map): Pay attention to that
22213 charset-iso-final-char return -1 for eight-bit-control and
22214 eight-bit-graphic.
22215
22216 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
22217
22218 * speedbar.el (speedbar-use-images, speedbar-update-flag)
22219 (speedbar-easymenu-definition-base): Use display-graphic-p where
22220 available, instead of window-system.
22221
22222 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
22223
22224 * international/codepage.el (cp-coding-system-for-codepage-1): Add
22225 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
22226 coding systems.
22227
22228 2000-05-26 Dave Love <fx@gnu.org>
22229
22230 * disp-table.el (standard-display-underline): Don't use
22231 internal-find-face.
22232
22233 * mail/reporter.el: Maintainer change. Doc fixes.
22234 (reporter-version): Deleted.
22235
22236 * emacs-lisp/elp.el: Maintainer change.
22237 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
22238
22239 2000-05-26 Stefan Monnier <monnier@cs.yale.edu>
22240
22241 * add-log.el (add-change-log-entry): Merge the current entry with the
22242 previous one if the previous one is empty.
22243
22244 2000-05-26 Dave Love <fx@gnu.org>
22245
22246 * loadhist.el (unload-feature): Fix interactive spec [from
22247 lijnzaad@ebi.ac.uk].
22248
22249 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
22250 subr-arity to check primitives.
22251 (byte-compile-flush-pending, byte-compile-file-form-progn)
22252 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
22253 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
22254 mapcar.
22255
22256 2000-05-26 Kenichi Handa <handa@etl.go.jp>
22257
22258 * international/fontset.el: Set family names of non-latin charsets
22259 in default fontset to "*".
22260
22261 * international/mule-diag.el (print-fontset): Combine family part
22262 and registry part of the fontname by "-*-" instead of "-".
22263
22264 * international/mule-cmds.el (encode-coding-char): Make strings
22265 multibyte before calling encode-coding-string.
22266
22267 2000-05-25 Stefan Monnier <monnier@cs.yale.edu>
22268
22269 * derived.el: Fix keywords.
22270 (define-derived-mode): Only define if needed.
22271
22272 * simple.el (fill-comment, comment-column, comment-start)
22273 (comment-start-skip, comment-end, comment-indent-function)
22274 (block-comment-start, block-comment-end, indent-for-comment)
22275 (set-comment-column, kill-comment, comment-padding, comment-region)
22276 (comment-multi-line, indent-new-comment-line): Remove.
22277
22278 * bindings.el (esc-map): Change ; to comment-dwim and use the new
22279 function names for comment operations.
22280
22281 * newcomment.el: Add abundant autoload cookies.
22282 (comment-style): Don't depend on runtime data at compile-time.
22283 (comment-indent-hook): Remove.
22284 (comment-indent): Check if comment-indent-hook is bound.
22285 (comment-region): Docstring fix.
22286
22287 2000-05-25 Dave Love <fx@gnu.org>
22288
22289 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
22290 byte-code-function-p.
22291
22292 * mail/rmailsum.el: Add provide.
22293
22294 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
22295
22296 * smerge-mode.el (smerge-diff-switches): Don't use list* in
22297 defcustom.
22298
22299 2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
22300
22301 * ediff-diff.el (ediff-exec-process): delete --binary option from
22302 non-buffer ediff jobs.
22303
22304 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
22305
22306 * hilit-chg.el (highlight-changes-mode): Ask about color or
22307 grayscale support, not about window-system.
22308
22309 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
22310 window-system.
22311 (ffap-highlight): Always default to t.
22312
22313 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
22314 display-popup-menus-p instead of looking at window-system.
22315
22316 * disp-table.el (standard-display-g1, standard-display-graphic):
22317 Only refuse to use string glyphs on X and MS-Windows.
22318
22319 * avoid.el: Remove window-system from commentary, suggest to use
22320 display-*-p instead.
22321
22322 * apropos.el (apropos-print): Use display-mouse-p instead of
22323 window-system.
22324
22325 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
22326
22327 * international/codepage.el (cp-decoding-vector-for-codepage):
22328 Fill up unsupported characters with their own codes. From Kenichi
22329 Handa.
22330
22331 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
22332
22333 * international/mule-diag.el (describe-char-after): Use
22334 display-graphic-p instead of window-system, so that this function
22335 works on MS-DOS.
22336
22337 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
22338
22339 * international/codepage.el (cp-make-coding-systems-for-codepage):
22340 Remove the eight-bit-graphic and eight-bit-control charsets from
22341 the list of charsets which we convert into `?'.
22342
22343 2000-05-25 Kenichi Handa <handa@etl.go.jp>
22344
22345 * international/mule-conf.el: Specify CHARSET-ID explicitely for
22346 private charsets.
22347 (mule-unicode-0100-24ff, japanese-jisx0213-1,
22348 japanese-jisx0213-2): New charsets.
22349
22350 * international/fontset.el: Setup default fontset for new charsets.
22351
22352 2000-05-24 Dave Love <fx@gnu.org>
22353
22354 * info.el (Info-find-node-2): Restructure [following "Vadim
22355 S. Solomin" <sovs@uic.nnov.ru>].
22356
22357 * icomplete.el: Fix header for Finder.
22358
22359 2000-05-24 Eric M. Ludlam <zappo@ultranet.com>
22360
22361 * rmailout.el (rmail-output-to-rmail-file): Added optional param
22362 STAY.
22363
22364 * rmail.el (rmail-automatic-folder-directives): New user variable.
22365 (rmail-show-message): Add call to `rmail-auto-file' during
22366 display.
22367 (rmail-auto-file): New function.
22368
22369 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
22370
22371 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
22372 account.
22373 (ediff-test-utility,ediff-diff-mandatory-option)
22374 (ediff-reset-diff-options): Utilities for proper initialization of
22375 ediff-diff-options and ediff-diff3-options on Windows.
22376
22377 * ediff-init.el (ediff-merge-filename-prefix): New customizable
22378 variable.
22379
22380 * ediff-mult.el (ediff-filegroup-action): Use
22381 ediff-merge-filename-prefix.
22382
22383 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
22384
22385 * viper-ex.el (ex-write): Set selective display to nil.
22386
22387 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
22388
22389 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
22390 aliases for hebrew-iso-8bit.
22391
22392 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
22393
22394 * woman.el: New version from Francis J. Wright
22395 <F.J.Wright@Maths.QMW.ac.uk>.
22396 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
22397 names in environment variables regardless of the path separator.
22398 (woman-topic-all-completions-1): Don't call file-name-directory-p
22399 on all files, since woman-file-regexp already filters out any
22400 directories.
22401
22402 2000-05-24 Kenichi Handa <handa@etl.go.jp>
22403
22404 * international/quail.el (quail-start-translation): Don't change
22405 modified-p of the current buffer.
22406 (quail-start-conversion): Likewise.
22407
22408 * international/kkc.el (kkc-region): Don't change modified-p of
22409 the current buffer.
22410
22411 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
22412 conform to RFC1468.
22413 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
22414
22415 2000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
22416
22417 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
22418 (speedbar-insert-button): Invisible text property fix.
22419 (speedbar-directory-plus): Renamed from speedbar-directory-+
22420 (speedbar-directory-minus): Renamed from speedbar-directory--
22421 (speedbar-page-plus): Renamed from speedbar-file-+
22422 (speedbar-page-minus): Renamed from speedbar-file--
22423 (speedbar-page): Renamed from speedbar-file-
22424 (speedbar-tag): Renamed from speedbar-tag-
22425 (speedbar-tag-plus): Renamed from speedbar-tag-+
22426 (speedbar-tag-minus): Renamed from speedbar-tag--
22427 (speedbar-expand-image-button-alist): Use above renames.
22428
22429 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
22430 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
22431 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
22432 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
22433 * sb-pg.xpm: Renamed from sb-file.xpm
22434 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
22435 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
22436
22437 2000-05-24 Kenichi Handa <handa@etl.go.jp>
22438
22439 * international/quail.el (quail-show-guidance-buf): Set
22440 current-input-method of the guidance buffer to the name of the
22441 curren input method.
22442
22443 2000-05-23 Stefan Monnier <monnier@cs.yale.edu>
22444
22445 * progmodes/compile.el (compile-internal): Style typo.
22446
22447 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
22448 quote vars and functions in the docstring.
22449
22450 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
22451
22452 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
22453 Don't quote lambdas.
22454
22455 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
22456
22457 2000-05-23 Gerd Moellmann <gerd@gnu.org>
22458
22459 * startup.el (command-line): Determine source file of compiled
22460 user init file differently. Warn if compiled user init file
22461 is older than its source file.
22462
22463 * ffap.el (ffap-url-regexp): Add `https'.
22464
22465 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
22466
22467 * files.el (make-backup-file-name-1): Replace slashes with `!'
22468 rather than `|' (which is not allowed on Windows). Replace the
22469 drive letters with a string "drive_X".
22470
22471 2000-05-23 Gerd Moellmann <gerd@gnu.org>
22472
22473 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
22474
22475 * files.el (interpreter-mode-alist): Add `bash2'.
22476
22477 2000-05-22 Dave Love <fx@gnu.org>
22478
22479 * loadhist.el (feature-symbols, file-provides, file-requires): Use
22480 mapc.
22481 (feature-file): Avoid calling symbol-name. Doc fix.
22482 (file-set-intersect, file-dependents): Use dolist, not mapcar.
22483 (loadhist-hook-functions): Add mouse-position-function.
22484 (unload-feature): Change uses of mapcar.
22485
22486 * files.el (parse-colon-path): Doc fix.
22487 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
22488 (set-auto-mode): Use mapc.
22489
22490 * complete.el (PC-look-for-include-file): Use :alnum: character
22491 class.
22492 (partial-completion-mode): Add autoload cookie.
22493
22494 2000-05-22 Sam Steingold <sds@gnu.org>
22495
22496 * info.el (Info-fontify-node): Fixed the call to
22497 `add-text-properties' (bug introduced on 2000-05-18).
22498
22499 2000-05-22 Dave Love <fx@gnu.org>
22500
22501 * bindings.el: Remove debug-ignored-errors set in other files.
22502
22503 * progmodes/etags.el: Add to debug-ignored-errors.
22504 (visit-tags-table-buffer): Clear out buffers holding old tables
22505 when making a new list.
22506 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
22507 mapc.
22508
22509 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
22510 quote keywords.
22511 (cmpl-string-case-type): Use character classes.
22512
22513 * comint.el:
22514 * textmodes/ispell.el:
22515 * imenu.el:
22516 * mail/mh-e.el:
22517 * progmodes/compile.el: Add to debug-ignored-errors.
22518
22519 * dabbrev.el: Add to debug-ignored-errors.
22520 (dabbrev-completion): Use mapc.
22521
22522 2000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
22523
22524 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
22525 (woman-mapcan, woman-parse-man.conf)
22526 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
22527 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
22528 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
22529 path syntax better.
22530 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
22531 (woman-manpath): Call woman-parse-man.conf.
22532 (woman-emulation): New defcustom, defaults to nroff.
22533 (woman-font-support): New defconst.
22534 (woman-use-symbol-font): New defcustom.
22535 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
22536 "Emulation".
22537 Many functions: Doc fix.
22538
22539 2000-05-22 Kenichi Handa <handa@etl.go.jp>
22540
22541 * international/quail.el (quail-simple-translation-keymap): Map
22542 128..255 to quail-self-insert-command.
22543 (quail-keyboard-layout-alist): Add definition for "pc102-de".
22544
22545 2000-05-22 Stefan Monnier <monnier@cs.yale.edu>
22546
22547 * help.el (help-manyarg-func-alist): Typo.
22548
22549 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
22550 intervals which makes it heaps simpler.
22551
22552 * newcomment.el (comment-region-internal): Go back to BEG after quoting
22553 the nested comment markers.
22554
22555 * subr.el (remove-hook): Don't turn the hook's value into a list.
22556
22557 2000-05-21 Dave Love <fx@gnu.org>
22558
22559 * edmacro.el (edmacro-parse-keys): Return vector if any elements
22560 are invalid characters.
22561
22562 * international/mule-util.el (detect-coding-with-priority): Use
22563 mapc. Remove redundant lambda.
22564
22565 * international/mule-diag.el (list-non-iso-charset-chars)
22566 (describe-fontset): Remove redundant lambda.
22567
22568 * emulation/crisp.el (brief-mode): New alias.
22569
22570 * emacs-lisp/ring.el (ring-elements): New function.
22571
22572 * emacs-lisp/easymenu.el (easy-menu-create-menu)
22573 (easy-menu-do-add-item): Use keywordp.
22574
22575 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
22576
22577 * replace.el: Doc and error message fixes.
22578 (replace-highlight): Use facep, not internal-find-face.
22579
22580 2000-05-20 Stefan Monnier <monnier@cs.yale.edu>
22581
22582 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
22583
22584 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
22585 (log-edit-insert-changelog): Drop `:' as well.
22586
22587 * log-view.el: Fix file description.
22588 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
22589 available.
22590 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
22591 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
22592
22593 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
22594 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
22595 Print a status message if the toggle is called interactively.
22596 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
22597 for global minor modes and use `defcustom' for them.
22598 Use add-minor-mode.
22599 (easy-mmode-define-derived-mode): Remove.
22600 (define-derived-mode): Fancier default docstring.
22601 (easy-mmode-define-navigation): Signal an error rather than (ding).
22602
22603 * newcomment.el (comment-styles): New `box-multi'.
22604 (comment-normalize-vars): Better default for comment-continue to
22605 avoid whitespace-only continuations.
22606 (comment-search-forward): Always move even in the no-syntax case.
22607 (comment-padright): Only obey N if it's only obeyed for padleft.
22608 (comment-make-extra-lines): Better handling of empty continuations.
22609 Use `=' for the filler if comment-start has only one character.
22610 (uncomment-region): Try handling the special `=' filler.
22611 (comment-region): Allow LINES even if MULTI is nil.
22612 (comment-box): Choose box style based on comment-style.
22613
22614 2000-05-20 Kenichi Handa <handa@etl.go.jp>
22615
22616 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
22617 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
22618
22619 2000-05-20 Kenichi HANDA <handa@etl.go.jp>
22620
22621 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
22622 and insert, not subst-char-in-region.
22623
22624 * international/mule-diag.el (list-character-sets-1): Handle
22625 charsets eight-bit-control and eight-bit-graphic.
22626 (list-iso-charset-chars): Likewise.
22627 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
22628 charactes as is. Use indent-to to align characters.
22629
22630 * international/mule-cmds.el (find-multibyte-characters): Never
22631 exclude charsets eight-bit-control and eight-bit-graphic.
22632
22633 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
22634
22635 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
22636 Don't quote lambdas.
22637
22638 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
22639
22640 2000-05-19 Gerd Moellmann <gerd@gnu.org>
22641
22642 * gud.el (gud-jdb-directories): Doc fix.
22643
22644 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
22645
22646 * newcomment.el: New file.
22647
22648 2000-05-19 Gerd Moellmann <gerd@gnu.org>
22649
22650 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
22651
22652 2000-05-18 Andreas Schwab <schwab@suse.de>
22653
22654 * dired.el (dired-between-files): Also skip lines beginning with
22655 `used'.
22656
22657 2000-05-18 Gerd Moellmann <gerd@gnu.org>
22658
22659 * msb.el (msb-menu-cond): Add choice `user'.
22660
22661 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
22662
22663 * ps-print.el: Compatibility, customization and doc fix.
22664 (ps-printer-name-option): Replace defconst by defvar.
22665 (ps-postscript-code-directory): XEmacs compatibility.
22666 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
22667 fix.
22668 (ps-user-defined-prologue, ps-print-prologue-header)
22669 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
22670 compatibility and code fix.
22671 (ps-print-background-image, ps-print-background-text):
22672 Customization fix.
22673 (ps-line-number-start, ps-n-up-on): New vars.
22674
22675 2000-05-18 Espen Skoglund <esk@ira.uka.de>
22676
22677 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
22678 the indent-comment function to just return the appropriate indent.
22679
22680 2000-05-18 Eric M. Ludlam <zappo@ultranet.com>
22681
22682 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
22683 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
22684 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
22685
22686 2000-05-18 Dave Love <fx@gnu.org>
22687
22688 * info.el (Info-fontify-node): Add intangible property as well as
22689 invisible.
22690
22691 * calendar/appt.el (appt-make-list): Match all lines of entry.
22692 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
22693
22694 2000-05-18 Kenichi Handa <handa@etl.go.jp>
22695
22696 * international/mule-diag.el (describe-char-after): Call
22697 internal-char-font, not char-font. If internal-char-font returns
22698 nil, display "-- none --".
22699
22700 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
22701
22702 * image.el (image-type-available-p): Don't reference image-types
22703 if it isn't bound.
22704
22705 2000-05-17 Stefan Monnier <monnier@cs.yale.edu>
22706
22707 * autoarg.el (autoarg-mode): Typo in the :set argument.
22708
22709 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
22710
22711 * startup.el (command-line-1): Don't signal an error if the
22712 directory for auto-save-list files does not yet exist.
22713
22714 2000-05-17 Kenichi Handa <handa@etl.go.jp>
22715
22716 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
22717
22718 2000-05-16 Stefan Monnier <monnier@cs.yale.edu>
22719
22720 * subr.el (remove-hook): `setq' hook-value, not `set'.
22721
22722 2000-05-16 Sam Steingold <sds@gnu.org>
22723
22724 * info.el (debug-ignored-errors): More errors to ignore.
22725
22726 2000-05-16 Dave Love <fx@gnu.org>
22727
22728 * cus-edit.el: Don't require cl or easymenu.
22729 (custom-variable-prompt): Test standard-value property, not
22730 user-variable-p.
22731
22732 2000-05-16 Sam Steingold <sds@gnu.org>
22733
22734 * subr.el (add-hook): `setq' hook-value, not `set'.
22735
22736 2000-05-16 Gerd Moellmann <gerd@gnu.org>
22737
22738 * startup.el (command-line-1): Mention the FAQ in the startup
22739 message.
22740
22741 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
22742
22743 * progmodes/compile.el (compilation-parse-errors): Collect
22744 `nomessage' regexps last.
22745
22746 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
22747
22748 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
22749 to the function name.
22750
22751 2000-05-15 Dave Love <fx@gnu.org>
22752
22753 * speedbar.el (speedbar-recenter): Typo.
22754 (speedbar-expand-line): Make arg optional.
22755 (speedbar-mode): Avoid a compiler warning.
22756
22757 2000-05-15 Gerd Moellmann <gerd@gnu.org>
22758
22759 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
22760 user-specified option string is empty.
22761
22762 * mouse.el (mouse-yank-at-click): Doc fix.
22763
22764 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
22765
22766 * term/internal.el (IT-character-translations): More updates of
22767 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
22768 documents.
22769
22770 2000-05-15 Gerd Moellmann <gerd@gnu.org>
22771
22772 * env.el (getenv): New function, interactively callable.
22773 (setenv, getenv): Remove autoload cookies.
22774
22775 * loadup.el: Load `env'.
22776
22777 * progmodes/f90.el: Change author's mail address.
22778
22779 2000-05-14 Dave Love <fx@gnu.org>
22780
22781 * mail/rmail.el (rmail-show-message-hook): Customize and offer
22782 goto-addr as an option.
22783
22784 * help.el (help-xref-stack): Doc fix.
22785 (help-xref-following): New variable.
22786 (help-make-xrefs): Use it.
22787 (help-xref-go-back): Use position information from stack element.
22788 (help-follow): Make position in stack element a pair. Use
22789 help-xref-following.
22790
22791 * autoarg.el: New file.
22792
22793 * faces.el: Declare more functions obsolete.
22794
22795 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
22796 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
22797 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
22798 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
22799 Remove all the setup-...-environment functions.
22800
22801 2000-05-13 Eric M. Ludlam <zappo@ultranet.com>
22802
22803 * speedbar.el: Updated the commentary section. xemacs20p now uses
22804 >= when detecting. Require `defimage' safely.
22805 (speedbar-easymenu-definition-base): Add toggle for images.
22806 (speedbar-easymenu-definition-special): Add flush cache & expand.
22807 (speedbar-visiting-tag-hook): Set new defaults. Added options.
22808 (speedbar-reconfigure-keymaps-hook): New variable.
22809 (speedbar-frame-parameters): Updated documentation.
22810 (speedbar-use-imenu-flag): Updated custom tag
22811 (speedbar-dynamic-tags-function-list): New variable.
22812 (speedbar-tag-hierarchy-method): Updated doc & custom.
22813 (speedbar-indentation-width, speedbar-indentation-width) New
22814 variables.
22815 (speedbar-hide-button-brackets-flag): Customizable.
22816 (speedbar-vc-indicator): Doc update.
22817 (speedbar-ignored-path-expressions): Updated default value.
22818 (speedbar-supported-extension-expressions): Updated default value.
22819 (speedbar-syntax-table): Remove {} paren status.
22820 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
22821 as "+". Added overlay aliases.
22822 (speedbar-mode): Use `speedbar-mode-line-update' instead of
22823 `force-mode-line-update'.
22824 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
22825 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
22826 `mouse-set-point'
22827 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
22828 (speedbar-item-info-tag-helper): Revamped to handle a wider range
22829 of arbitrary text, and new helper functions.
22830 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
22831 filename finder.
22832 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
22833 (speedbar-directory-buttons): Update path search/expansion.
22834 (speedbar-make-tag-line): Pay attention to
22835 `speedbar-indentation-width'. Use more care w/ invisible
22836 properties.
22837 (speedbar-change-expand-button-char): Call
22838 `speedbar-insert-image-button-maybe'.
22839 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
22840 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
22841 (speedbar-trim-words-tag-hierarchy)
22842 (speedbar-simple-group-tag-hierarchy): New functions
22843 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
22844 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
22845 functions.
22846 (speedbar-mouse-set-point): New function
22847 (speedbar-power-click): Updated documentation.
22848 (speedbar-line-token, speedbar-goto-this-file): Handle more types
22849 of tag prefix text.
22850 (speedbar-expand-line, speedbar-contract-line): Make more robust
22851 to strange text.
22852 (speedbar-expand-line): Takes universal argument to flush the
22853 cache.
22854 (speedbar-flush-expand-line): New function.
22855 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
22856 Use new generator insertion method.
22857 (speedbar-fetch-dynamic-tags): New function.
22858 (speedbar-fetch-dynamic-imenu): Removed code now handled in
22859 `speedbar-fetch-dynamic-imenu'.
22860 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
22861 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
22862 "Revert Buffer" menu items.
22863 (speedbar-buffer-buttons-engine): Be smarter when creating a
22864 filename tag (for expansion purposes.).
22865 (speedbar-highlight-one-tag-line,
22866 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
22867 (speedbar-recenter): New functions.
22868 (defimage-speedbar): Image loading abstraction.
22869 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
22870 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
22871 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
22872 (speedbar-tag-type, speedbar-tag-mail): New images.
22873 (speedbar-expand-image-button-alist): New variable.
22874 (speedbar-insert-image-button-maybe): Insert an image over some
22875 buttons.
22876
22877 2000-05-13 Kenichi Handa <handa@etl.go.jp>
22878
22879 * international/mule-cmds.el (encode-coding-char): An ASCII
22880 character is always encodable.
22881
22882 * international/mule-conf.el: Add more information in descriptions
22883 of character sets.
22884
22885 * international/mule-diag.el (describe-char-after): New function.
22886 (describe-font-internal): Adjusted for the change of font-info.
22887 (describe-font): Likewise.
22888 (print-fontset): Rewritten for the new fontset implementation.
22889 (describe-fontset): Include fontset alias names in completion.
22890 (list-fontsets): Adjusted for the change of print-fontset.
22891
22892 * simple.el (what-cursor-position): If DETAIL is non-nil, call
22893 describe-char-after instead of displaying the detail in the echo
22894 area.
22895 (syntax-code-table): Format changed.
22896 (string-to-syntax): Adjusted for the above change.
22897
22898 2000-05-12 Stefan Monnier <monnier@cs.yale.edu>
22899
22900 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
22901
22902 2000-05-12 Dave Love <fx@gnu.org>
22903
22904 * calendar/todo-mode.el: Remove some compatibility stuff and CL
22905 dependence. Use line-{beginning,end}-position, not
22906 point-at{b,e}ol. Some doc fixes.
22907 (todo-position): New function. Fix callers of position to use it.
22908 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
22909
22910 2000-05-12 Gerd Moellmann <gerd@gnu.org>
22911
22912 * time.el (display-time-mail-icon): Use `:ascent center'.
22913
22914 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
22915 handling FTP security extensions.
22916
22917 2000-05-11 Dave Love <fx@gnu.org>
22918
22919 * calendar/todo-mode.el: New file.
22920
22921 2000-05-11 Gerd Moellmann <gerd@gnu.org>
22922
22923 * comint.el (comint-read-input-ring): Move reference to
22924 comint-input-ring-size outside of the save-excursion. It was
22925 causing the default value to be the only one ever seen.
22926
22927 * font-lock.el: Update copyright. Remove Simon Marshall's email
22928 address on request from him.
22929
22930 * subr.el (substitute-key-definition): Add comment describing
22931 the meaning of PREFIX.
22932
22933 2000-05-10 Stefan Monnier <monnier@cs.yale.edu>
22934
22935 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
22936
22937 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
22938 (add-minor-mode): Don't make the variable buffer-local and add a
22939 reference to define-minor-mode in the docstring.
22940
22941 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
22942 HEADER/FOOTER and fix bug with trailing empty directory.
22943 (cvs-append-to-ignore): Use vc-editable-p if available.
22944 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
22945 (vc-do-command): Tweak advice to handle the new VC.
22946
22947 * log-view.el (log-view-goto-rev): New function for the new VC.
22948 (log-view-minor-wrap): Use mark-active.
22949
22950 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
22951 (log-edit-changelog-full-paragraphs): New var.
22952 (log-edit-insert-changelog): Remove a lonely leading `* file'.
22953 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
22954 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
22955 (log-edit-changelog-ours-p, log-edit-changelog-entries)
22956 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
22957 Replace the `cvs' prefix with `log-edit'.
22958
22959 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
22960
22961 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
22962 (diff-font-lock-defaults): Explicitly turn off multiline.
22963 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
22964 (diff-ediff-patch): Fix call to ediff-patch-file.
22965 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
22966 Handle comments.
22967
22968 * frame.el (automatic-hscrolling): Typo.
22969
22970 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
22971
22972 2000-05-09 Sam Steingold <sds@goems.com>
22973
22974 * apropos.el (apropos-print): use `describe-face' instead of
22975 `customize-face-other-window'.
22976
22977 2000-05-09 Dave Love <fx@gnu.org>
22978
22979 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
22980
22981 * help.el (describe-variable): Have customize button pop the
22982 help-xref stack when invoked.
22983 (help-xref-symbol-regexp): Add `face'.
22984 (help-make-xrefs): Check for quoted face names and adapt regexp
22985 submatch numbers to cope.
22986 (help-xref-interned): Maybe insert face doc too. Separate
22987 sections with a line of hyphens.
22988
22989 * faces.el: Some doc fixes. Declare some functions obsolete.
22990 (describe-face): Add customize button. Return the help
22991 text. Fix prompt.
22992
22993 2000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
22994
22995 * term/internal.el (IT-character-translations): Fix last change.
22996
22997 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
22998
22999 * woman.el: New file
23000 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
23001
23002 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
23003
23004 * term/internal.el (IT-character-translations): Update ASCII
23005 simulations for greek-iso8859-7, add latin-iso8859-14 and
23006 latin-iso8859-15.
23007
23008 * international/mule-cmds.el (set-language-info-alist): Call
23009 define-prefix-command with 3 arguments, to make the map suitable
23010 for a menu.
23011
23012 2000-05-07 Dave Love <fx@gnu.org>
23013
23014 * time.el: Small doc fixes from Pavel Jan\e,Bm\e(Bk ml.
23015
23016 2000-05-05 Dave Love <fx@gnu.org>
23017
23018 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
23019 list in doc string. Don't quote keyword symbols.
23020 * emacs-lisp/cl.el: Likewise
23021 * emacs-lisp/cl-seq.el: Likewise
23022
23023 2000-05-05 Gerd Moellmann <gerd@gnu.org>
23024
23025 * abbrev.el (abbrev-mode): Make ARG optional.
23026
23027 2000-05-04 Gerd Moellmann <gerd@gnu.org>
23028
23029 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
23030
23031 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
23032
23033 * subr.el (substitute-key-definition): Clarify documentation.
23034
23035 2000-05-04 Milan Zamazal <pdm@freesoft.cz>
23036
23037 * glasses.el (glasses-convert-to-unreadable): Use
23038 `glasses-separator' instead of the hard-wired "_".
23039 (glasses-mode): Call `glasses-make-unreadable' only in a single
23040 place.
23041
23042 2000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
23043
23044 * term/internal.el (cjk-codepages-alist): Add associations for
23045 Chinese and Korean codepages. Remove FIXME comment.
23046
23047 2000-05-03 Dave Love <fx@gnu.org>
23048
23049 * time.el (display-time-mail-face, display-time-use-mail-icon):
23050 New option.
23051 (display-time-mail-icon): New variable.
23052 (display-time-string-forms): Use the above. Fix the local-map.
23053
23054 2000-05-03 Gerd Moellmann <gerd@gnu.org>
23055
23056 * replace.el (query-replace-map): Add binding for `E'.
23057 (query-replace-help): Extend help text.
23058 (perform-replace): Allow editing the replacement string.
23059
23060 * make-mode.el (makefile-mode-abbrev-table): New variable.
23061 (makefile-mode): Set local abbrev table to
23062 makefile-mode-abbrev-table.
23063 (makefile-font-lock-keywords): Fontify includes and conditionals.
23064
23065 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
23066 set TOGGLE's value.
23067
23068 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
23069 mail-interactive-insert-alias.
23070 (mail-abbrev-complete-alias): New command.
23071 (mail-mode-map): Bind it to `M-TAB'.
23072
23073 2000-05-03 Kenichi Handa <handa@etl.go.jp>
23074
23075 * language/lao-util.el (lao-compose-region): New function.
23076
23077 2000-05-02 Gerd Moellmann <gerd@gnu.org>
23078
23079 * files.el (recover-session): Make directories as necessary
23080 if they don't exist yet.
23081
23082 * calendar/cal-french.el
23083 (french-calendar-multibyte-special-days-array)
23084 (french-calendar-special-days-array): Change French text.
23085 (calendar-french-date-string): Change output.
23086 (calendar-goto-french-date): Likewise.
23087
23088 2000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
23089
23090 * wid-edit.el (widget-default-active): Obey `:always-active'.
23091 (widget-documentation-string-value-create): Set `:always-active'.
23092
23093 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
23094
23095 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
23096 default prefix to `~/_emacs.d/auto-save.list/_s'.
23097 (normal-top-level): Create the directory for auto-save files, if
23098 it doesn't already exist (in the ms-dos case only).
23099
23100 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
23101
23102 * international/mule-cmds.el (set-language-environment): Don't
23103 concat an integer (dos-codepage), use format instead.
23104
23105 2000-05-02 Dave Love <fx@gnu.org>
23106
23107 * help.el (help-xref-on-pp): Check for constant symbols.
23108
23109 2000-04-29 Gerd Moellmann <gerd@gnu.org>
23110
23111 * startup.el (normal-top-level): Put a condition-case around
23112 the code loading subdirs.el.
23113
23114 2000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23115
23116 * ps-print.el: Upside-down and face background color printing,
23117 line number step, doc fix.
23118 (ps-print-version): New version number (5.2).
23119 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
23120 (ps-face-attribute-list, ps-plot-with-face): Code fix.
23121 (ps-spool-config): Var fix.
23122 (ps-printer-name-option): Const fix.
23123 (ps-print-upside-down, ps-use-face-background)
23124 (ps-line-number-step): New vars.
23125 (ps-window-system, ps-lp-system): New consts.
23126 (ps-face-background): New fun.
23127
23128 2000-04-28 Richard Stallman <rms@gnu.org>
23129
23130 * files.el (make-auto-save-file-name):
23131 Apply auto-save-file-name-transforms to visited file name
23132 before generating auto save file name.
23133 (auto-save-file-name-transforms): New variable.
23134
23135 * files.el (backup-enable-predicate):
23136 Correctly test for a file under a temporary directory.
23137
23138 2000-04-28 Gerd Moellmann <gerd@gnu.org>
23139
23140 * subr.el (add-minor-mode): Rewritten.
23141
23142 2000-04-28 Kenichi Handa <handa@etl.go.jp>
23143
23144 * mail/sendmail.el (sendmail-send-it): Set
23145 buffer-file-coding-system to the selected coding system for MIME
23146 header.
23147
23148 2000-04-27 Gerd Moellmann <gerd@gnu.org>
23149
23150 * dired.el (dired-move-to-filename-regexp): Allow format where
23151 YYYY is followed by two spaces.
23152
23153 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
23154 in the second character class of the regexp.
23155
23156 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
23157 mh-etc, too.
23158
23159 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
23160 nil.
23161
23162 * subr.el (add-minor-mode): Use `set' instead of `setq'.
23163
23164 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
23165 argument.
23166
23167 2000-04-27 Sen Nagata <sen@eccosys.com>
23168
23169 * emacs-lisp/crm.el (crm-completion-table): New variable.
23170 (crm-collection-fn, crm-test-completion)
23171 (completing-read-multiple): Use it.
23172
23173 2000-04-27 Dave Love <fx@gnu.org>
23174
23175 * help.el (locate-library): Use mapc.
23176 (help-manyarg-func-alist): Add call-process-region.
23177
23178 2000-04-26 Gerd Moellmann <gerd@gnu.org>
23179
23180 * subr.el (add-minor-mode): Make argument MAP optional.
23181
23182 * desktop.el (desktop-save): Save list of minor modes.
23183 (desktop-create-buffer): Restore minor modes.
23184 (desktop-minor-mode-table): New user-option.
23185
23186 * subr.el (add-minor-mode): New function.
23187
23188 * image.el (find-image): New function.
23189 (defimage): Rewritten to find image at load time.
23190
23191 * startup.el (normal-top-level-add-to-load-path): Handle
23192 case that the default directory is not in load-path.
23193
23194 * help.el: Old patch from Stefan Monnier.
23195 (help-xref-on-pp): New function.
23196 (describe-variable): Use it to display xrefs in a symbol's value.
23197
23198 2000-04-26 Stefan Monnier <monnier@cs.yale.edu>
23199
23200 * cus-edit.el (custom-face): Fix parenthesis.
23201
23202 2000-04-26 Kenichi Handa <handa@etl.go.jp>
23203
23204 * mail/rmail.el (rmail-expunge): When there are no deleted
23205 messages, do nothing.
23206
23207 2000-04-26 Dave Love <fx@gnu.org>
23208
23209 * international/mule-cmds.el (locale-translation-file-name):
23210 Defvar to nil.
23211 (set-locale-environment): Set it here (at runtime).
23212
23213 2000-04-25 Gerd Moellmann <gerd@gnu.org>
23214
23215 * replace.el (perform-replace): Add parameters START and END. Use
23216 them instead of the check for a region in Transient Mark mode.
23217 (query-replace-read-args): Return two more list elements for the
23218 start and end of the region in Transient Mark mode.
23219 (query-replace, query-replace-regexp, query-replace-regexp-eval)
23220 (map-query-replace-regexp, replace-string, replace-regexp): Add
23221 optional last arguments START and END and pass them to
23222 perform-replace.
23223
23224 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
23225 form with additional arguments for perform-replace.
23226
23227 * progmodes/etags.el (tags-query-replace): Add parameters START
23228 and END. Construct a form with additional arguments for
23229 perform-replace.
23230
23231 * simple.el (shell-command): Set default directory for "*Shell
23232 Command Output" buffer.
23233
23234 * language/european.el (iso-latin-4): Fix typo.
23235
23236 * emacs-lisp/crm.el: New file.
23237
23238 2000-04-24 Dave Love <fx@gnu.org>
23239
23240 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
23241 (Custom-reset-saved, Custom-reset-standard)
23242 (custom-group-value-create, custom-group-set, custom-group-save)
23243 (custom-group-reset-current, custom-group-reset-saved)
23244 (custom-group-reset-standard): Use mapc.
23245 (custom-buffer-create-internal): Disable undo when creating items.
23246 Use mapc.
23247 (custom-face): Avoid redundant lambda.
23248
23249 2000-04-24 Gerd Moellmann <gerd@gnu.org>
23250
23251 * startup.el (auto-save-list-file-prefix): Set default to
23252 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
23253
23254 2000-04-24 Sam Steingold <sds@gnu.org>
23255
23256 * time-stamp.el (time-stamp-string-preprocess): Always convert
23257 `field-result' to a string.
23258
23259 2000-04-24 Gerd Moellmann <gerd@gnu.org>
23260
23261 * frame.el (scrolling): New group.
23262 (automatic-hscrolling): New user-option.
23263
23264 * startup.el (command-line-x-option-alist): Add `-lsp' and
23265 `--line-spacing'.
23266
23267 2000-04-19 Dave Love <fx@gnu.org>
23268
23269 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
23270 (cl-mapc): Rename from mapc. Fix the funcall.
23271
23272 2000-04-19 Gerd Moellmann <gerd@gnu.org>
23273
23274 * simple.el (clone-indirect-buffer-other-window): New command.
23275 (clone-indirect-buffer): Add optional arg NORECROD.
23276 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
23277
23278 * help.el (resize-temp-buffer-window): Use count-screen-lines.
23279
23280 * window.el (count-screen-lines): New function.
23281 (shrink-window-if-larger-than-buffer): Use count-screen-lines
23282 instead of window-buffer-height.
23283
23284 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
23285 non-existing variable comint-input-sentinel.
23286 (inferior-lisp-args-to-list): Removed.
23287 (inferior-lisp): Use split-string instead of
23288 inferior-lisp-args-to-list.
23289
23290 * hexl.el (hexl-insert-hex-string): New command.
23291
23292 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
23293 instead of concat.
23294
23295 2000-04-18 Gerd Moellmann <gerd@gnu.org>
23296
23297 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
23298 at the start of an existing but empty folder.
23299
23300 2000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23301
23302 * ps-mule.el: Customization fix, doc fix.
23303 (ps-multibyte-buffer): Customization fix.
23304
23305 2000-04-17 Richard M. Stallman <rms@gnu.org>
23306
23307 * subr.el (read-passwd): Use read-char-exclusive.
23308
23309 2000-04-17 Gerd Moellmann <gerd@gnu.org>
23310
23311 * textmodes/texinfo.el (texinfo-insert-@email)
23312 (texinfo-insert-@emph, texinfo-insert-@quotation)
23313 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
23314 (texinfo-mode-map): Add key bindings for them.
23315
23316 * files.el (basic-save-buffer-2): Use a template with `$'
23317 instead of `#' for VMS.
23318
23319 * simple.el (clone-indirect-buffer): New function.
23320
23321 2000-04-16 Stephen Eglen <stephen@gnu.org>
23322
23323 * iswitchb.el (iswitchb-case): New function. If the user input
23324 contains any upper-case characters, the search is made
23325 case-sensitive.
23326
23327 2000-04-17 Stefan Monnier <monnier@cs.yale.edu>
23328
23329 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
23330 comment-end.
23331 (texinfo-font-lock-syntactic-keywords): New var.
23332 (texinfo-font-lock-keywords): Remove comment regexp.
23333 (texinfo-insert-block): New function.
23334 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
23335 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
23336 and font-lock-defaults. Use regexp-opt for outline-regexp.
23337 (texinfo-environments): New var.
23338 (texinfo-environment-regexp): Use regexp-opt and
23339 texinfo-environments.
23340
23341 * textmodes/ispell.el (ispell-menu-map-needed): Check that
23342 ispell-process is bound since this might be eval'd before ispell
23343 is loaded.
23344 (ispell-message): Use a tiny bit less magic and a bit more hard
23345 data to figure out what kind of sc-cite-regexp to use.
23346
23347 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
23348
23349 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
23350 (insert-cyclic-diary-entry): Unquote the lambda.
23351
23352 * gud.el (gud-jdb-build-source-files-list): Fix typo.
23353
23354 * files.el (backup-enable-predicate): Unquote the lambda.
23355
23356 * cus-edit.el (custom-face, face): Unquote the lambda.
23357
23358 2000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23359
23360 * ps-print.el: Check for line-beginning-position definition.
23361
23362 * ps-print.el: Fix counting lines in a region.
23363 (ps-print-version): New version number (5.1.5).
23364 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
23365 (ps-printing-region): Fun code fix.
23366
23367 2000-04-15 Gerd Moellmann <gerd@gnu.org>
23368
23369 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
23370 to file-directory-p.
23371
23372 2000-04-14 Gerd Moellmann <gerd@gnu.org>
23373
23374 * gud.el (gud-jdb-build-source-files-list): Check that directory
23375 exists before calling directory-files.
23376
23377 2000-04-13 Dave Love <fx@gnu.org>
23378
23379 * emacs-lisp/trace.el: Change maintainer. Use new backquote
23380 syntax.
23381
23382 * emacs-lisp/cl-specs.el: Remove when, unless.
23383
23384 * emacs-lisp/cl-extra.el: Don't quote keywords.
23385 (cl-old-mapc): New variable.
23386 (mapc): Use it.
23387 (cl-map-intervals): Use with-current-buffer. Don't check for
23388 next-property-change.
23389 (cl-map-overlays): Use with-current-buffer.
23390 (cl-expt): Remove.
23391 (copy-tree, remprop): Define unconditionally.
23392
23393 * emacs-lisp/cl-compat.el (keywordp): Remove.
23394
23395 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
23396 to use keywordp.
23397 (edebug-spec): Enable keywordp.
23398
23399 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
23400 string-lessp.
23401
23402 * cus-start.el: Use keywordp.
23403
23404 2000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
23405
23406 * diary-lib.el (include-other-diary-files): Fix the fix of
23407 2000-02-18 by doing a save-excursion.
23408
23409 2000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23410
23411 * ps-print.el: Customization fix, doc fix.
23412 (ps-print-version): New version number (5.1.4).
23413 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
23414 (ps-print-preprint): Adjust code.
23415 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
23416 (ps-print-prologue-header, ps-print-control-characters)
23417 (ps-spool-config): Customization fix.
23418
23419 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
23420
23421 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
23422 converted to the new menu-item format, names silightly changed,
23423 help strings added.
23424
23425 Support for spelling without async subprocesses:
23426
23427 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
23428 (ispell-session-buffer): New variables.
23429 (ispell-start-process, ispell-process-status,
23430 ispell-accept-output, ispell-send-string): New functions, for
23431 Ispell invocation when async subprocesses aren't supported.
23432 (ispell-word, ispell-pdict-save, ispell-command-loop,
23433 ispell-process-line, ispell-buffer-local-parsing): Replace calls
23434 to process-send-string with calls to ispell-send-string, and
23435 accept-process-output with ispell-accept-output.
23436 (ispell-init-process): Call ispell-process-status instead of
23437 process-status with.
23438 (ispell-init-process): Call ispell-start-process. Call
23439 ispell-accept-output and ispell-send-string. Don't call
23440 process-kill-without-query and kill-process if they are unbound.
23441 (ispell-async-processp): New function.
23442
23443 2000-04-12 Dave Love <fx@gnu.org>
23444
23445 * info.el: Add debug-ignored-errors.
23446 (Info-mode-menu): Add some items.
23447 (Info-directory): Add autoload cookie.
23448
23449 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
23450 Modify `truncate-lines'. Make `describe-language-environment'
23451 always visible and add help. Modify `describe-key' help. Invoke
23452 Info-directory from `info'. New entry `emacs-manual'.
23453
23454 2000-04-10 Gerd Moellmann <gerd@gnu.org>
23455
23456 * progmodes/ebrowse.el (ebrowse-tree-mode):
23457 Use propertized-buffer-identification.
23458 (ebrowse-update-member-buffer-mode-line): Likewise.
23459 (ebrowse--mode-strings): Removed.
23460 (ebrowse--mode-line-props): Removed.
23461
23462 * files.el (auto-mode-alist): Add `EBROWSE'.
23463
23464 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
23465 space before testing for end of buffer.
23466 (ebrowse-load): Removed.
23467 (ebrowse-revert-tree-buffer-from-file): Rewritten.
23468 (ebrowse-create-tree-buffer): Rewritten.
23469 (ebrowse-tree-mode): Read tree from buffer.
23470
23471 * progmodes/ebrowse-ffh.el: Removed.
23472
23473 2000-04-10 Kenichi Handa <handa@etl.go.jp>
23474
23475 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
23476
23477 2000-04-10 Gerd Moellmann <gerd@gnu.org>
23478
23479 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
23480 at the wrong place.
23481
23482 2000-04-09 Dave Love <fx@gnu.org>
23483
23484 * files.el (backup-enable-predicate):
23485 Use temporary-file-directory, small-temporary-file-directory.
23486 (make-backup-file-name-function, backup-directory-alist): New vars.
23487 (make-backup-file-name-1): New function.
23488 (make-backup-file-name): Use it.
23489 (find-backup-file-name): Likewise. Use format for clarity, not concat.
23490 (file-newest-backup): Use make-backup-file-name.
23491
23492 2000-04-09 Gerd Moellmann <gerd@gnu.org>
23493
23494 * progmodes/ebrowse-ffh.el: New file.
23495
23496 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn):
23497 Moved to ebrowse-ffh.el.
23498 (ebrowse-load): Add autoload.
23499
23500 * finder.el (finder-commentary): Add autoload cookie.
23501
23502 * mail/rfc2368.el: Correct author's email address.
23503
23504 * progmodes/ebrowse.el: New file.
23505
23506 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
23507 item help string.
23508 (easy-menu-do-add-item): Ditto.
23509 (easy-menu-define): Extend doc string.
23510
23511 * jit-lock.el (with-buffer-unmodified): Use restore-buffer-modified-p.
23512 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
23513 (jit-lock-function, jit-lock-stealth-fontify): Don't use
23514 with-buffer-unmodified.
23515
23516 2000-04-08 Dave Love <fx@gnu.org>
23517
23518 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
23519 unless, when.
23520
23521 2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
23522
23523 * viper-util.el (viper-put-on-search-overlay): New subroutine.
23524 (viper-flash-search-pattern): No operation when using Emacs
23525 doesn't support face.
23526 Use `viper-put-on-search-overlay'.
23527
23528 2000-04-04 Gerd Moellmann <gerd@gnu.org>
23529
23530 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
23531 like C-r.
23532
23533 * progmodes/make-mode.el: Some doc fixes.
23534 (makefile-mode-abbrev-table): New variable.
23535 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
23536 (makefile-font-lock-keywords): Fontify includes and conditionals.
23537 (toplevel): Require `dabbrev' and `add-log' when compiling.
23538
23539 * replace.el (perform-replace): Don't move forward one char
23540 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
23541 to do that because it leaves point 1 position after the last
23542 replacement, after everything has been replaced.
23543
23544 * jit-lock.el (with-buffer-unmodified): New macro.
23545 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
23546 modified state.
23547 (jit-lock-function-1): Extracted from jit-lock-function; not
23548 preserving buffer's modified state.
23549 (jit-lock-function, jit-lock-stealth-fontify):
23550 Call jit-lock-function-1.
23551
23552 * mail/rfc2368.el: Remove supernumerary copyright line.
23553
23554 2000-04-04 Milan Zamazal <pdm@freesoft.cz>
23555
23556 * glasses.el: Provide facilities for inserting space before left
23557 parentheses and uncapitalization of identifiers.
23558 (glasses-mode): Try to remove old overlays in all cases.
23559
23560 2000-04-03 Gerd Moellmann <gerd@gnu.org>
23561
23562 * progmodes/compile.el (compile-internal): Display the compilation
23563 buffer in a different frame, if it's already displayed there.
23564
23565 * mail/rfc2368.el: New file.
23566
23567 * simple.el (sendmail-user-agent-compose): Recognize a `body'
23568 header and insert its value as mail body.
23569
23570 * subr.el (member-ignore-case): New function.
23571
23572 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
23573 (dabbrev--find-expansion): Ignore buffers matching a regexp
23574 from dabbrev-ignored-regexps.
23575
23576 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
23577 to extensions handled by gzip.
23578
23579 2000-04-03 Richard M. Stallman <rms@gnu.org>
23580
23581 * files.el (insert-directory): List the total free space
23582 along with the used space.
23583
23584 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
23585 line is followed by one that matches CITATION-REGEXP, end the
23586 paragraph.
23587
23588 2000-04-03 Markus Rost <rost@delysid.gnu.org>
23589
23590 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
23591 (rmail-make-basic-summary-line): Use that option.
23592
23593 2000-04-03 Kenichi Handa <handa@etl.go.jp>
23594
23595 * international/mule-cmds.el (encoded-string-description):
23596 Rewritten. Try pretty description for ISO 2022 escape sequences
23597 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
23598 for hexadecimal format.
23599
23600 2000-04-01 Dave Love <fx@gnu.org>
23601
23602 * cpp.el: Change customization group to `c' from `C'.
23603
23604 * vcursor.el (vcursor-move): Use display-color-p.
23605
23606 * international/mule-util.el: Provide mule-utils.
23607 (string-to-sequence): Simplify and speed up.
23608
23609 * international/mule.el (make-coding-system): Purecopy doc-string.
23610
23611 * international/mule-cmds.el: Various menu changes.
23612 (describe-specified-language-support): Handle `Default'.
23613 (set-language-info): Purecopy `info'.
23614
23615 2000-03-31 Andrew Innes <andrewi@gnu.org>
23616
23617 * vc.el (vc-backend-diff): Return the correct status if we had to
23618 retry the rcsdiff command without the --brief option.
23619
23620 2000-03-31 Dave Love <fx@gnu.org>
23621
23622 * help.el (help-manyarg-func-alist): Correct several omissions.
23623
23624 * add-log.el: Don't require cl, fortran.
23625 (add-log-current-defun-function): Doc fix.
23626 (change-log-version-number-regexp-list): Remove SCCS part. Doc fix.
23627 (change-log-version-rcs): Function deleted.
23628 (change-log-version-number-search): Doc fix.
23629 Use vc-workfile-version. Avoid CL dolist.
23630 (add-change-log-entry): Just call add-log-current-defun to get
23631 defun. Simplify somewhat.
23632 (change-log-get-method-definition-1): Likewise.
23633 (add-log-current-defun): Return nil if calling
23634 add-log-current-defun-function does so. Move Fortran stuff to
23635 fortran.el. Return string without properties.
23636
23637 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
23638 and :alpha: char classes.
23639
23640 * mail/supercite.el: Defvar curline when compiling.
23641 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
23642 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
23643 rather than a-zA-Z0-9 to allow non-ASCII characters.
23644
23645 2000-03-31 Gerd Moellmann <gerd@gnu.org>
23646
23647 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
23648
23649 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
23650 Re-enable new code.
23651
23652 * lpr.el (print-region-1): Use -d to specify printer name for
23653 systems `usg-unix-v*, `dgux', `hpux', `irix'.
23654
23655 2000-03-31 Dave Love <fx@gnu.org>
23656
23657 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
23658 Look for function definition in symbol's function value slot first
23659 instead of first consulting byte-compile-function-environment.
23660
23661 2000-03-31 Kenichi Handa <handa@etl.go.jp>
23662
23663 * language/european.el ("Polish"): New language environment.
23664 (setup-polish-environment): New function.
23665
23666 2000-03-30 Gerd Moellmann <gerd@gnu.org>
23667
23668 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
23669 Disable new code.
23670
23671 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
23672 trying to `load' the symbol of an autoload instead of the file
23673 recorded in the autoload. Fix error messages.
23674
23675 2000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23676
23677 * ps-print.el: PostScript programming fix for ghostview, doc fix.
23678 (ps-print-version): New version number (5.1.3).
23679 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
23680 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
23681 (ps-generate-postscript-with-faces): Code fix.
23682 (ps-color-values): XEmacs compatibility.
23683 (ps-print-background-image, ps-print-background-text, ps-printer-name)
23684 (ps-default-fg, ps-default-bg): Adjust customization.
23685 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
23686 (ps-color-scale): Renaming old ps-color-value fun.
23687 (ps-print-headers): Replace ps-print-header group to avoid conflict
23688 with ps-print-header variable.
23689 (ps-print-miscellany): New group.
23690 (ps-format-color, ps-rgb-color): New funs.
23691 (ps-default-foreground): New var.
23692 (ps-printer-name-option): New const.
23693
23694 2000-03-30 Peter Breton <pbreton@ne.mediaone.net>
23695
23696 * net/net-utils.el:
23697 (network-connection-host, network-connection-service): New variables
23698 (network-connection-mode): New mode, derived from comint-mode
23699 (network-connection-mode-setup): New function, saves host and
23700 service information in local variables.
23701
23702 * lisp/locate.el:
23703 (locate-word-at-point): Added this function
23704 (locate): Default to using locate-word-at-point as input
23705 Run dired-mode-hook
23706
23707 2000-03-29 Dave Love <fx@gnu.org>
23708
23709 * calendar/appt.el: Doc fixes.
23710 (appt-check): Convert min-to-app to a string before passing to
23711 appt-disp-window-function or concat.
23712 (appt-delete-window): Remove test for frame-root-window.
23713 (appt-select-lowest-window, appt-convert-time): Simplify.
23714
23715 * emacs-lisp/bytecomp.el: Doc fixes.
23716 (byte-compile-file-form-autoload):
23717 Update byte-compile-function-environment.
23718
23719 2000-03-29 Andreas Schwab <schwab@suse.de>
23720
23721 * emacs-lisp/autoload.el: Also print defsubst doc string specially.
23722
23723 * dired.el (dired-insert-directory): If dired-free-space-program
23724 failed just delete its output.
23725
23726 2000-03-29 Dave Love <fx@gnu.org>
23727
23728 * international/iso-cvt.el: Move provide to end. Doc fixes.
23729 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
23730 (iso-iso2sgml, iso-sgml2iso): New functions.
23731 (iso-cvt-define-menu): Fix some entries and use backquote for
23732 clarity.
23733
23734 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
23735
23736 2000-03-28 Gerd Moellmann <gerd@gnu.org>
23737
23738 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
23739 ISO-DATE. If non-nil, return date in ISO 8601 format.
23740
23741 2000-03-26 Stefan Monnier <monnier@cs.yale.edu>
23742
23743 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
23744 if it ever becomes used.
23745 (log-edit-mode-hook): Default to vc-log-mode-hook.
23746 (log-edit-mode): Fix the docstring.
23747
23748 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
23749 the code.
23750
23751 2000-03-26 Dave Love <fx@gnu.org>
23752
23753 * net/browse-url.el (browse-url): Re-fix case of
23754 browse-url-browser-function being an alist.
23755 (browse-url): Add :link to defgroup.
23756
23757 * files.el: Doc fixes.
23758 (file-truename): Include `[' in wildcard characters.
23759 (automount-dir-prefix): Customize.
23760 (find-file-wildcards): Add :version.
23761 (find-file-noselect): Simplify a mapcar call.
23762
23763 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
23764 compatible with inf-lisp version.
23765 (eval-defun-1): Fix custom-declare-variable case.
23766
23767 2000-03-25 Stefan Monnier <monnier@cs.yale.edu>
23768
23769 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
23770
23771 2000-03-24 Gerd Moellmann <gerd@gnu.org>
23772
23773 * Makefile (COMPILE_FIRST): New macro.
23774 (compile-files): Compile files from COMPILE_FIRST first.
23775
23776 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new code.
23777
23778 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
23779 matching open parenthesis in column 0 to defun-prompt-regexp
23780 only if open-paren-in-column-0-is-defun-start is set.
23781
23782 * sun-curs.el: Require CL at compile-time only.
23783
23784 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
23785 instead of copy-list which is a function from CL.
23786 (msb--choose-menu, msb--mode-menu-cond)
23787 (msb--create-buffer-menu-2): Use dolist instead of mapc.
23788 (msb--init-file-alist): Use mapcar instead of mapcan.
23789 (msb--aggregate-alist): Use mapcar instead of mapcan.
23790 Fix `(' in column 0 in doc string.
23791 (msb--add-separators): Use mapcar instead of mapcan.
23792
23793 * cus-dep.el: Require CL at compile-time only.
23794
23795 2000-03-24 Stefan Monnier <monnier@cs.yale.edu>
23796
23797 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
23798 (byte-compile-warnings): New warning `noruntime'.
23799 (byte-compile-constants, byte-compile-variables): Fix docstring.
23800 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
23801 execute `eval-whenc-compile's body.
23802 (byte-compile-unresolved-functions): Fix docstring.
23803 (byte-compile-eval): New function.
23804 (byte-compile-callargs-warn): Check if the function will be available
23805 at runtime (via property `byte-compile-noruntime').
23806 (byte-compile-print-syms): New function.
23807 (byte-compile-warn-about-unresolved-functions): Also warn about
23808 `noruntime' functions (and use `byte-compile-print-syms').
23809 (byte-compile-file): Capitalize the message.
23810
23811 2000-03-24 Gerd Moellmann <gerd@gnu.org>
23812
23813 * mail/rmail.el (rmail-confirm-expunge): New user-option.
23814 (rmail-expunge): Ask for confirmation depending on the setting
23815 of rmail-confirm-expunge.
23816
23817 2000-03-23 Gerd Moellmann <gerd@gnu.org>
23818
23819 * Makefile (bootstrap-clean): If $(emacs) exists, build
23820 loaddefs.el first. A loaddefs.el that's not up-to-date might
23821 cause a bootstrap failure because things don't autoload as expected.
23822
23823 2000-03-23 Dave Love <fx@gnu.org>
23824
23825 * net/browse-url.el: Restore previous use of
23826 browse-url-maybe-new-window.
23827
23828 2000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23829
23830 * ps-print.el: Skip banner page fix.
23831 (ps-print-version): New version number (5.1.2).
23832 (ps-begin-file, ps-end-file, ps-generate): Code fix.
23833
23834 2000-03-23 Dave Pearson <davep@davep.org>
23835
23836 * net/quickurl.el Changed the type of parameter passed to the
23837 function defined by `quickurl-format-function'. Before only the
23838 text of the URL was passed. Now the whole URL structure is passed
23839 and the function is responsible for extracting the parts it requires.
23840 Changed the default of `quickurl-format-function' accordingly.
23841 (quickurl-insert): Changed the `funcall' of
23842 `quickurl-format-function' to match the above change.
23843 (quickurl-list-insert): Changed the `url' case so that it makes
23844 use of `quickurl-format-function', previous to this the format was
23845 hard wired.
23846
23847 2000-03-22 Gerd Moellmann <gerd@gnu.org>
23848
23849 * startup.el: Change some spellings for the X Window System.
23850
23851 2000-03-22 Stefan Monnier <monnier@cs.yale.edu>
23852
23853 * progmodes/make-mode.el (makefile-warn-suspicious-lines):
23854 Clean up the code and the regexp and make sure the cursor is
23855 temporarily moved to the suspicious line while querying the user.
23856
23857 2000-03-22 Jason Rumney <jasonr@gnu.org>
23858
23859 * w32-fns.el (w32-charset-info-alist): Initialize.
23860
23861 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23862
23863 * ps-print.el: N-up last page fix.
23864 (ps-print-version): New version number (5.1.1).
23865 (ps-end-file, ps-end-job, ps-generate): Code fix.
23866
23867 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
23868
23869 * files.el (find-file-run-dired): Update docstring.
23870 (find-directory-functions): New hook.
23871 (find-file-noselect): Run find-directory-functions rather than
23872 calling dired directly.
23873
23874 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
23875
23876 * pcvs.el: Add a minimal leading commentary.
23877 (cvs-make-cvs-buffer): Change the header part by removing the startup
23878 message and adding a `Module' entry. Also replace the FOOTER and
23879 HEADER special fileinfos with the new support in ewoc for updating
23880 its own footer and header.
23881 (cvs-update-header): Update to use the header/footer of the ewoc.
23882 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
23883 (cvs-is-within-p): New function.
23884 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
23885 to only examine some subset of the buffers.
23886
23887 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
23888 `format' instead of our own ad-hoc functions.
23889 Remove HEADER and FOOTER cases, now handled in the EWOC.
23890 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
23891
23892 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
23893 output to avoid scaring the user.
23894 (cvs-parse-table): Catch message for non-up-to-date commits.
23895
23896 * pcvs-defs.el (cvs-startup-message): Remove.
23897 (cvs-global-menu): New autoloaded menu.
23898
23899 * pcvs-util.el (cvs-string-fill): Remove.
23900
23901 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
23902 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
23903 PP part of it and also make it work for footers and headers.
23904 (ewoc-create): Drop POS and BUFFER arguments.
23905 Use the DLL's dummy node to store the end-of-footer position.
23906 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
23907 (ewoc-refresh): Remove unused `header' variable.
23908 (ewoc-(get|set)-hf): New functions.
23909
23910 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
23911 log-view-*-(message|file) and use easy-mmode-define-navigation.
23912 (log-view-message-re): Match SCCS format as well.
23913 And match the revision line rather than the dashed separator line.
23914 (log-view-mode): Use the new define-derived-mode.
23915 (log-view-current-tag): Fill in with an actual implementation.
23916
23917 * cvs-status.el (cvs-status-(prev|next)): Rename from
23918 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
23919 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
23920 to let the output "breathe" a little more (more readable).
23921 (cvs-status-mode): Use the new define-derived-mode.
23922
23923 * smerge-mode.el (smerge-auto-leave): New function and variable.
23924 (smerge-basic-map): Rename from smerge-basic-keymap.
23925 Change the bindings for smerge-diff-*.
23926 (smerge-*-map): Use easy-mmode-defmap.
23927 (smerge-(next|prev)): Use easy-mmode-define-navigation.
23928 (smerge-keep-*): Use smerge-auto-leave.
23929
23930 2000-03-21 Jason Rumney <jasonr@gnu.org>
23931
23932 * cus-edit.el (custom-button-face): Use 3D look for w32.
23933 (custom-button-pressed-face): Likewise.
23934
23935 2000-03-21 Gerd Moellmann <gerd@gnu.org>
23936
23937 * progmodes/etags.el (tags-case-fold-search): New user-option.
23938 (tags-loop-eval): New function. Bind case-fold-search around eval
23939 depending on the value of tags-case-fold-search.
23940 (tags-loop-continue): Use tags-loop-eval.
23941 (find-tag-in-order): Bind case-fold-search depending on the value
23942 of tags-case-fold-search.
23943
23944 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
23945
23946 * diff-mode.el (diff-mode-*-map): Use `easy-mmode-defmap'.
23947 (diff-end-of-hunk): Return the end position for use in
23948 `easy-mmode-define-navigation'.
23949 (diff-recenter): Remove.
23950 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
23951 of `easy-mmode-define-navigation'.
23952 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
23953 previous renaming) and fix to use new names.
23954 (diff-merge-strings): Use \n as separator: simpler, faster.
23955 (diff-mode): Use `define-derived-mode'.
23956
23957 * derived.el (define-derived-mode): Don't autoload anymore.
23958 Prefer the macro-only version provided by easy-mmode.el.
23959
23960 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
23961 `easy-mmode-define-derived-mode'. Use `combine-run-hooks'.
23962 (easy-mmode-define-navigation): New macro.
23963
23964 * subr.el (combine-run-hooks): New function.
23965
23966 2000-03-21 Kenichi HANDA <handa@etl.go.jp>
23967
23968 * term/x-win.el: Fontsets related initialization is simplified.
23969
23970 * international/mule-diag.el (describe-font): Don't refer to
23971 global-fontset-alist, instead call font-list.
23972 (describe-fontset, list-fontsets, mule-diag): Likewise.
23973 (print-fontset): Adjusted for the change of fontset implementation.
23974
23975 * international/fontset.el (x-charset-registries): Variable removed,
23976 instead the corresponding data is stored in the default fontset.
23977 (register-alternate-fontnames): Function removed.
23978 (resolved-ascii-font): Variable removed.
23979 (x-compose-font-name): Ignore the second argument REDOCE.
23980 (x-complement-fontset-spec): Complement only an ASCII font and
23981 element for those charsets than can use that ASCII font.
23982 (generate-fontset-menu): Don't refer to global-fontset-alist,
23983 instead call fontset-list.
23984 (uninstantiated-fontset-alist): Variable removed.
23985 (x-style-funcs-alist): Likewise.
23986 (fontset-default-styles): Likewise.
23987 (x-modify-font-name): Function removed.
23988 (create-fontset-from-fontset-spec): Ignore the argument STYLE-VARIANT.
23989 (create-fontset-from-ascii-font): Docsting adjusted for the above
23990 change.
23991 (instantiate-fontset, resolve-fontset-name): Functions removed.
23992 (fontset-list): Now implemented by C code.
23993
23994 * faces.el (read-face-font): Fix TABLE arg to completing-read.
23995 (describe-face): Include `font' attribute in the description.
23996
23997 2000-03-21 Kenichi Handa <handa@etl.go.jp>
23998
23999 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
24000
24001 2000-03-20 Gerd Moellmann <gerd@gnu.org>
24002
24003 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
24004 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
24005 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
24006
24007 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
24008 about behavior of set-buffer-modified-p wrt redisplay.
24009
24010 2000-03-19 Richard M. Stallman <rms@gnu.org>
24011
24012 * view.el (view-mode-disable): Kill local binding of view-read-only.
24013
24014 2000-03-18 Gerd Moellmann <gerd@gnu.org>
24015
24016 * font-lock.el (font-lock-apply-syntactic-highlight): If VALUE
24017 is a string, convert it to a syntax cell using string-to-syntax.
24018
24019 * simple.el (syntax-code-table, syntax-flag-table): New variables.
24020 (string-to-syntax): New function.
24021
24022 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
24023 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
24024 try to use passive ftp mode.
24025
24026 2000-03-17 Gerd Moellmann <gerd@gnu.org>
24027
24028 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
24029
24030 * simple.el (append-to-buffer): Update point of windows after
24031 insertion.
24032
24033 * abbrev.el (inverse-add-abbrev): Identify word by first moving
24034 forward then moving backward. Reindent.
24035
24036 * frame.el (other-frame): Call x-focus-frame only if
24037 focus-follows-mouse is off.
24038
24039 2000-03-17 Dave Love <fx@gnu.org>
24040
24041 * pcvs-util.el (cvs-strings->string): Rename replace-regexps-in-string.
24042
24043 2000-03-17 Stefan Monnier <monnier@cs.yale.edu>
24044
24045 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
24046 regexp for labels cannot span several lines.
24047
24048 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
24049 `(setq :<key> ':<key>)' to the macro expansion.
24050
24051 2000-03-16 Dave Love <fx@gnu.org>
24052
24053 * progmodes/f90.el (f90): Put custom group under `languages', not
24054 `fortran'.
24055 (f90-mode-hook): Customize.
24056 (f90-mode): Set add-log-current-defun-function.
24057 (f90-current-defun): New function.
24058
24059 2000-03-16 Gerd Moellmann <gerd@gnu.org>
24060
24061 * cus-edit.el (custom-variable-tag-face): Handle case that
24062 default face's height is not a number.
24063 (custom-face-tag-face, custom-group-tag-face-1)
24064 (custom-group-tag-face): Ditto.
24065 (custom-group-tag-face-1): Add :group.
24066
24067 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
24068
24069 2000-03-15 Gerd Moellmann <gerd@gnu.org>
24070
24071 * pcvs-defs.el (toplevel): Remove autoload cookie for form
24072 requiring easymenu.
24073
24074 2000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
24075
24076 * ps-print.el: PostScript user-defined prologue, PostScript error
24077 handler, doc fix.
24078 (ps-print-version): New version number (5.1).
24079 (ps-user-defined-prologue, ps-error-handler-message)
24080 (ps-print-prologue-0, ps-error-handler-alist): New vars.
24081 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
24082 (ps-insert-string): New function.
24083
24084 2000-03-15 Kenichi Handa <handa@etl.go.jp>
24085
24086 * international/ccl.el (ccl-compile-expression): Don't generate
24087 invalid self-assignment code.
24088
24089 2000-03-14 Dave Love <fx@gnu.org>
24090
24091 * subr.el (replace-regexp-in-string): Renamed from
24092 replace-regexps-in-string. Doc fix.
24093
24094 2000-03-12 Dave Love <fx@gnu.org>
24095
24096 * cus-edit.el: Doc fixes.
24097 (customize-set-variable, customize-save-variable): Rename args for doc.
24098 (custom-variable-tag-face, custom-face-tag-face)
24099 (custom-group-tag-face-1, custom-group-tag-face): Modify from
24100 style which user identify as hyperlink.
24101 (hook): Don't add undefined functions to the hook.
24102 (debug-ignored-errors): Transfer message from bindings.el.
24103
24104 2000-03-12 Gerd Moellmann <gerd@gnu.org>
24105
24106 * recentf.el (recentf-keep-non-readable-files-p):
24107 Remove double/nested definition.
24108
24109 2000-03-12 Dave Love <fx@gnu.org>
24110
24111 * facemenu.el (facemenu-get-face): Use display-color-p.
24112 * enriched.el (enriched-decode-foreground): Likewise.
24113 (enriched-decode-background): Likewise.
24114 * isearch.el (isearch-highlight): Likewise.
24115 * info-look.el (info-lookup): Likewise.
24116 * simple.el (completion-setup-function): Likewise.
24117
24118 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
24119 :options.
24120
24121 * bindings.el (mode-line-format): Fix line-number and
24122 column-number items. Add help-echo for the background.
24123 (mode-line-mule-info): Modify help-echo.
24124
24125 * avoid.el (mouse-avoidance-mode): Add autoload cookie to defcustom.
24126
24127 * files.el (load-file): Allow completion to .elc.
24128
24129 * man.el: Doc fixes.
24130 (Man-init-defvars): Use display-color-p to set fontification.
24131
24132 * play/hanoi.el (hanoi-internal): Don't use oddp.
24133
24134 2000-03-12 Gerd Moellmann <gerd@gnu.org>
24135
24136 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
24137
24138 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
24139
24140 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
24141
24142 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
24143 Fix comment.
24144
24145 2000-03-10 Stefan Monnier <monnier@cs.yale.edu>
24146
24147 * font-lock.el (font-lock-keywords): Fix the doc now that
24148 regexp-opt-depth is unnecessary.
24149 (save-buffer-state): Set an edebug spec.
24150 (font-lock-fontify-anchored-keywords): Properly handle the case when
24151 the matcher goes past the limit.
24152
24153 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
24154 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
24155
24156 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
24157 dll.el and cookie.el (from Elib) with heavy renaming and other
24158 massaging.
24159
24160 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
24161 Autoload the functions used.
24162 (easy-mmode-define-syntax): Fix CL typo.
24163 (easy-mmode-define-derived-mode): Improve the docstring generation.
24164
24165 2000-03-10 Gerd Moellmann <gerd@gnu.org>
24166
24167 * textmodes/texinfo.el (texinfo-version): Variable and function
24168 removed.
24169
24170 2000-03-09 Stefan Monnier <monnier@cs.yale.edu>
24171
24172 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
24173 allow more flexibility.
24174 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New fns.
24175 (easy-mmode-defmap, easy-mmode-defsyntax)
24176 (easy-mmode-define-derived-mode): New macros.
24177
24178 2000-03-09 Didier Verna <didier@xemacs.org>
24179
24180 * rect.el (replace-rectangle): New function.
24181
24182 2000-03-09 Dave Love <fx@gnu.org>
24183
24184 * progmodes/fortran.el (fortran-comment-line-start): Define as "C".
24185 (fortran-comment-line-start-skip): Don't match cpp stuff.
24186 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
24187 (fortran-mode-map): Remove over-eager custom-menu-create for now.
24188 (fortran-mode): Don't set fortran-comment-line-start-skip,
24189 fortran-comment-line-start here. Set comment-start,
24190 add-log-current-defun.
24191 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
24192 (fortran-current-defun): New function.
24193
24194 2000-03-09 Gerd Moellmann <gerd@gnu.org>
24195
24196 * emacs-lisp/re-builder.el: New file.
24197
24198 * mouse.el (mouse-drag-region): Don't run up-event handler
24199 if hscroll has changed.
24200
24201 * octave-mod.el (octave-font-lock-keywords): To font-lock the
24202 builtin operators, use `font-lock-builtin-face' for Emacs and
24203 `font-lock-preprocessor-face' otherwise.
24204
24205 * font-lock.el (lisp-font-lock-keywords-1): Highlight
24206 `(defun (setf foo)' differently.
24207
24208 2000-03-08 Stefan Monnier <monnier@cs.yale.edu>
24209
24210 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
24211 (regexp-opt): Update comment and adapt the code the new meaning of
24212 the `paren' argument of regex-opt-group for shy-groups.
24213 (regexp-opt-depth): Handle shy groups as well as backslashed
24214 backslashes.
24215 (regexp-opt-group): Turn the leading comment into a docstring.
24216 Allow `paren' to be a string (the string to use to open a group).
24217 Remove open-presuf and close-presuf. Instead of checking for `all
24218 one-char' and then later on check for `several one-char', handle
24219 both cases close together. Also apply a more generic algorithm
24220 for suffixes (the mirror image of the algorithm used for
24221 prefixes). Use shy-groups. Use nreverse rather than reverse.
24222 (regexp-opt-try-suffix): Removed.
24223
24224 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
24225 from comint-mode-map, so we can just inherit from it. Also, move
24226 the initialization into the `defvar' since there's no docstring
24227 anyway and it's fairly short.
24228 (inferior-scheme-mode): Define it as derived-mode: the code is
24229 shorter and this way we inherit from comint-mode-map rather than
24230 copying it.
24231
24232 * subr.el (replace-regexps-in-string): Properly handle the case
24233 where we match an empty string.
24234
24235 * comint.el (comint-exec-1): Add the current-dir to the exec-path
24236 when the command has a directory component (such as "./testml").
24237 Also fix a typo in the comment.
24238
24239 2000-03-08 Gerd Moellmann <gerd@gnu.org>
24240
24241 * Makefile (compile-files): Compile files one by one because
24242 that's the only way to ensure a clean compilation environment for
24243 each individual file.
24244
24245 * frame.el (other-frame): Call x-focus-frame.
24246
24247 2000-03-07 Dave Love <fx@gnu.org>
24248
24249 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
24250 :require to defcustom.
24251
24252 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads lists.
24253
24254 * files.el (auto-mode-alist): Add configure.in.
24255
24256 * progmodes/autoconf.el: New file.
24257
24258 2000-03-07 Gerd Moellmann <gerd@gnu.org>
24259
24260 * mail/mh-e.el: Change maintainer to `none'.
24261
24262 * recentf.el (recentf-keep-non-readable-files-p): Quote args
24263 to remove-hook and add-hook.
24264
24265 2000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
24266
24267 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
24268 it as the default.
24269 (mail-send): Test mail-send-nonascii also for the new `mime' value.
24270 (sendmail-send-it): Conditionally add MIME headers specifying the
24271 used character set.
24272
24273 2000-03-07 Dave Love <fx@gnu.org>
24274
24275 * winner.el: Fix keywords, autoload cookies.
24276 Split eval-when-compile form to avoid compilation failure.
24277
24278 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
24279
24280 * international/mule.el: Modify comment about coding system
24281 property `coding-category'.
24282 (make-coding-system): New argument EOL-TYPE. Pay attention to
24283 coding-category property of PROPERTIES.
24284
24285 * international/mule-conf.el (coding-category-utf-8)
24286 (coding-category-utf-16-be, coding-category-utf-16-le): New coding
24287 categories. Include them in the argument for set-coding-priority.
24288
24289 * international/mule-cmds.el (reset-language-environment):
24290 Include coding-category-utf-8, coding-category-utf-16-be, and
24291 coding-category-utf-16-le in the argument for set-coding-priority.
24292 (reset-language-environment): Initialize coding-category-utf-8,
24293 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
24294
24295 2000-03-06 Karl Fogel <kfogel@red-bean.com>
24296
24297 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
24298 code abstracted out of `bookmark-jump-noselect'. Now tries info
24299 extensions as well as compression extensions.
24300 (bookmark-jump-noselect): Use above new func.
24301
24302 2000-03-03 Gerd Moellmann <gerd@gnu.org>
24303
24304 * strokes.el: Change maintainer's mail address.
24305
24306 2000-03-03 Kenichi Handa <handa@etl.go.jp>
24307
24308 * international/mule-diag.el (list-character-sets): Make help-echo
24309 string by substitute-command-keys.
24310 (list-character-sets): Likewise.
24311 (sort-listed-character-sets): Call help-setup-xref.
24312
24313 2000-03-02 Gerd Moellmann <gerd@gnu.org>
24314
24315 * time.el (display-time-mail-file): Add `none' to the list of choices.
24316
24317 2000-03-01 Dave Love <fx@gnu.org>
24318
24319 * help.el (help-xref-go-back): Don't try to set position.
24320
24321 * international/mule-diag.el (list-character-sets):
24322 Call help-setup-xref. Add help-echo to xrefs.
24323 (list-character-sets-1): Add help-echo to xrefs.
24324
24325 2000-03-02 Gerd Moellmann <gerd@gnu.org>
24326
24327 * frame.el (blink-cursor-mode): Switch cursor on when turning
24328 the mode off.
24329
24330 * add-log.el (add-log-current-defun): Add support for
24331 Autoconf mode.
24332
24333 * mail/rmail.el (rmail-quit-hook): New variable.
24334
24335 2000-03-01 Dave Love <fx@gnu.org>
24336
24337 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
24338
24339 * help.el (help-xref-button): Add help-echo arg.
24340 (describe-function-1, describe-variable, help-make-xrefs): Use it.
24341
24342 * faces.el (list-faces-display): Supply help-echo with help-make-xrefs.
24343
24344 * facemenu.el (list-text-properties-at): Set help-xref-stack to nil.
24345
24346 2000-03-01 Gerd Moellmann <gerd@gnu.org>
24347
24348 * image.el (defimage): Look for image files in load-path.
24349
24350 * frame.el (busy-cursor-delay-seconds): Change type to `number'.
24351
24352 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24353
24354 * recentf.el (recentf): Added version tag to the defgroup of recentf.
24355
24356 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24357
24358 * recentf.el (recentf-cleanup): Changed to remove excluded file too.
24359 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
24360 action to select/unselect a file.
24361 (recentf-edit-list): Code cleanup and improvement.
24362 (recentf-open-more-files-action): `recentf-open-more-files' button
24363 widget action to open a file.
24364 (recentf-open-more-files): No more use standard completion but widgets.
24365 (recentf-more-collection): Deleted.
24366 (recentf-more-history): Deleted.
24367 (recentf-setup-more-completion): Deleted.
24368
24369 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24370
24371 * recentf.el (recentf-mode): No more needs that Emacs is running
24372 under a window-system.
24373
24374 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24375
24376 * recentf.el (recentf-edit-list): New command to edit the recent
24377 list which allow the user to remove files.
24378 (recentf-edit-selected-items): New global variable, used by
24379 `recentf-edit-list' to hold the list of files to be removed from
24380 the recent list.
24381 (recentf-make-menu-items): Updated to display a "Edit list..."
24382 menu item. Minor code cleanup.
24383
24384 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24385
24386 * recentf.el (recentf-open-more-files): New command to open files
24387 that are not displayed in the menu.
24388 (recentf-more-collection): New global variable holding the set of
24389 permissible completions used by `recentf-open-more-files'.
24390 (recentf-more-history): New global variable holding the history list
24391 used by `recentf-open-more-files' completion.
24392 (recentf-setup-more-completion): New function to setup completion for
24393 `recentf-open-more-files'.
24394 (recentf-make-menu-items): Updated to display a "More..." menu item.
24395
24396 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24397
24398 * recentf.el (recentf-menu-action): Doc fixed.
24399
24400 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24401
24402 * recentf.el (recentf-menu-filter): Doc updated.
24403 (recentf-update-menu-hook): Allow menu filters to force menu update.
24404 (recentf-make-menu-items): New menu filter handling.
24405 (recentf-make-menu-item): New helper function.
24406 (recentf-menu-elements): New menu handling function.
24407 (recentf-sort-ascending): Updated to new menu filter handling.
24408 (recentf-sort-descending): Updated to new menu filter handling.
24409 (recentf-sort-basenames-ascending): New menu filter function.
24410 (recentf-sort-basenames-descending): New menu filter function.
24411 (recentf-show-basenames): New menu filter function.
24412 (recentf-show-basenames-ascending): New menu filter function.
24413 (recentf-show-basenames-descending): New menu filter function.
24414
24415 2000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
24416
24417 * diary-lib.el (list-diary-entries): Don't try to go forward at
24418 the end of the buffer.
24419
24420 2000-02-29 Kenichi Handa <handa@etl.go.jp>
24421
24422 * international/mule-diag.el (list-character-sets):
24423 Completely rewritten.
24424 (sort-listed-character-sets): New function.
24425 (list-character-sets-1): Completely rewritten.
24426 (list-character-sets-2): New function.
24427 (non-iso-charset-alist): New variable.
24428 (decode-codepage-char): New function.
24429 (charset-history): New variable.
24430 (read-charset) (list-block-of-chars)
24431 (list-iso-charset-chars)
24432 (list-non-iso-charset-chars)
24433 (list-charset-chars): New functions.
24434 (mule-diag): Call list-character-sets-2, not list-character-sets-2.
24435 (dump-charsets): Likewise.
24436
24437 2000-02-29 Gerd Moellmann <gerd@gnu.org>
24438
24439 * dired-x.el (dired-filename-at-point): Add `@' to valid
24440 file name characters.
24441 (dired-filename-at-point): Handle ange-ftp file names.
24442
24443 * frame.el (frame-notice-user-settings): Use assq-delete-all
24444 instead of assoc-delete-all.
24445 (frame-notice-user-settings): Ditto.
24446
24447 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
24448 Don't copy alist.
24449
24450 2000-02-28 Eli Barzilay <eli@cs.cornell.edu>
24451
24452 * calculator.el (calculator-use-menu): New option.
24453 (calculator-initial-bindings): Changed some bindings to work as macros.
24454 (calculator-forced-input): Removed.
24455 (calculator-restart-other-mode): New variable.
24456 (calculator-mode-map): Set up menu.
24457
24458 2000-02-28 Jari Aalto <jari.aalto@poboxes.com>
24459
24460 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc tags.
24461
24462 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
24463
24464 * viper-cmd.el (viper-envelop-ESC-key): Add the option to
24465 translate all ESC key sequences.
24466 (viper-goto-mark-subr): Restore markers for files for which
24467 they were saved.
24468 * viper-init.el (viper-translate-all-ESC-keysequences): New variable.
24469 * viper-util.el (viper-set-replace-overlay-glyphs)
24470 (viper-set-replace-overlay): Always check if the replacement
24471 overlay is live.
24472 * viper.el (viper-vi-state-mode-list): Add major modes.
24473 * ediff-wind.el: Minor comment changes.
24474 * ediff.el: Copyright notice date fix.
24475
24476 2000-02-27 Jason Rumney <jasonr@gnu.org>
24477
24478 * faces.el (face-font-family-alternatives): Add arial to helv.
24479 (mode-line, header-line, tool-bar): Same default as x for w32.
24480 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
24481 face-font-family-alternatives from working.
24482 * term/w32-win.el (mouse-set-font): Do not build fontset from
24483 chosen font.
24484
24485 2000-02-25 Sam Steingold <sds@goems.com>
24486
24487 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
24488 properly.
24489
24490 2000-02-25 Richard M. Stallman <rms@gnu.org>
24491
24492 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
24493
24494 2000-02-25 Gerd Moellmann <gerd@gnu.org>
24495
24496 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer writable.
24497
24498 * frame.el (busy-cursor-delay-seconds): New option.
24499
24500 2000-02-24 Gerd Moellmann <gerd@gnu.org>
24501
24502 * frame.el (show-cursor-in-non-selected-windows): New option.
24503
24504 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
24505
24506 * diary-lib.el (include-other-diary-files): Undo the selective
24507 display in any included file and don't kill it.
24508
24509 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
24510
24511 * dired.el (dired-mode-map): Don't remove "Edit" from the menu bar.
24512 Menu items converted to (menu-item format, help strings added.
24513 [downcase, upcase]: Don't enable on MS-DOS.
24514 [symlink, symlinks]: Don't show if make-symbolic-link is not bound.
24515 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
24516
24517 2000-02-23 Dave Love <fx@gnu.org>
24518
24519 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
24520 (backward-kill-word): Revert addition of * to interactive spec --
24521 it's a feature.
24522
24523 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
24524 (backward-kill-sentence, kill-sentence): Likewise.
24525
24526 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
24527 scratch buffer name.
24528 (gud-format-command): Use int-to-string in ?l case. Simplify slightly.
24529
24530 * term/w32-win.el (internal-face-interactive): Update prompt for
24531 new read-face-name.
24532
24533 * mail/footnote.el (footnote): Add :version to defgroup.
24534 (footnote-section-tag-regexp): Customize.
24535 (footnote-start-tag, footnote-end-tag): New option.
24536 (footnote-latin-regexp): New variable.
24537 (Footnote-latin): New function.
24538 (footnote-style-alist): Add element for latin style.
24539 (footnote-style): Moved.
24540 (Footnote-goto-footnote): Use eq to test arg.
24541
24542 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
24543
24544 * emacs-lisp/byte-opt.el: Change old backquote syntax.
24545 (byte-compile-trueconstp): Include keywords.
24546 (byte-optimize-quote, byte-optimize-lapcode):
24547 Use byte-compile-const-symbol-p.
24548 (byte-optimize-char-before): New optimization.
24549
24550 * emacs-lisp/bytecomp.el: Change old backquote syntax.
24551 (byte-compile-const-symbol-p): New function.
24552 (byte-compile-constp, byte-compile-out-toplevel)
24553 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
24554 Use it.
24555
24556 * subr.el (define-key-after): Default AFTER to t. Doc fix.
24557
24558 2000-02-23 Kenichi Handa <handa@etl.go.jp>
24559
24560 * international/encoded-kb.el: Be sure to update minor-mode-alist
24561 and minor-mode-map-alist.
24562 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
24563 codes SS2 and SS3 correctly.
24564 (encoded-kbd-self-insert-ccl): New function.
24565 (encoded-kbd-setup-keymap): New function.
24566 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
24567 by calling encoded-kbd-setup-keymap.
24568
24569 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte characters.
24570 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t locally.
24571
24572 2000-02-22 Dave Love <fx@gnu.org>
24573
24574 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
24575 (lisp-mode-map, lisp-interaction-mode-map): Define all inside defvar.
24576 (lisp-mode-syntax-table): Set up for #|...|# comments.
24577 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
24578 classes. Match `defface'.
24579 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
24580 (eval-defun-1): Fix for defcustom.
24581 (lisp-indent-region): Doc fix.
24582
24583 * subr.el (when, unless, split-string): Doc fix.
24584 (read-passwd): Move call of clear-this-command-keys to the right place.
24585 (replace-regexps-in-string): New function.
24586
24587 2000-02-22 Gerd Moellmann <gerd@gnu.org>
24588
24589 * help.el (describe-variable): Set syntax table to
24590 emacs-lisp-mode-syntax-table when moving forward over the
24591 symbol's name.
24592
24593 2000-02-22 Dave Love <fx@gnu.org>
24594
24595 * xt-mouse.el: Doc fixes.
24596 (xterm-mouse-position-function): New function, replacing advice of
24597 mouse-position.
24598 (xterm-mouse-mode): Use it. Don't turn on under a window system.
24599
24600 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
24601
24602 2000-02-21 Gerd Moellmann <gerd@gnu.org>
24603
24604 * format.el (format-annotate-single-property-change):
24605 Handle properties with dotted-list values.
24606 (format-proper-list-p): New function.
24607
24608 * enriched.el (enriched-face-ans): Handle '(foreground-color
24609 . COLOR) and (background-color . COLOR).
24610
24611 2000-02-20 Dave Love <fx@gnu.org>
24612
24613 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
24614 and assignments to it.
24615 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
24616 current local map.
24617 (make-flyspell-overlay): Use it.
24618 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
24619
24620 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
24621 (lm-get-header-re): Defun, not defsubst.
24622 (lm-get-package-name): Defun, not defsubst. Simplify.
24623 (lm-version): Doc fix. Simplify.
24624 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
24625 (lm-crack-address, lm-last-modified-date, lm-commentary)
24626 (lm-verify, lm-synopsis): Simplify.
24627 (lm-report-bug): Require emacsbug. Use compose-mail.
24628
24629 2000-02-20 Gerd Moellmann <gerd@gnu.org>
24630
24631 * dired.el (dired-mode): Call propertized-buffer-identification
24632 to set mode-line-buffer-identification to something having
24633 the right text properties.
24634
24635 * bindings.el (propertized-buffer-identification): New function.
24636
24637 2000-02-20 Dave Love <fx@gnu.org>
24638
24639 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
24640 check for t-mouse too.
24641
24642 * cus-start.el: Make echo-keystrokes `number'.
24643
24644 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
24645
24646 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
24647 Don't call ring-empty-p unless tags-location-ring is bound.
24648 From Noah Friedman <friedman@splode.com>.
24649
24650 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
24651
24652 * progmodes/hideshow.el (hs-flag-region): No longer use
24653 `intangible' overlay property.
24654
24655 (hs-toggle-hiding): New command.
24656 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
24657
24658 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
24659 Fix omission bug: Run `hs-minor-mode-hook' for both activation
24660 and deactivation.
24661
24662 2000-02-18 Gerd Moellmann <gerd@gnu.org>
24663
24664 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
24665
24666 2000-02-17 Gerd Moellmann <gerd@gnu.org>
24667
24668 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
24669
24670 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
24671 of `*' to handle `(* ... *)' comments.
24672
24673 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
24674
24675 * faces.el (list-faces-display): Use display-mouse-p instead of
24676 window-system.
24677
24678 * menu-bar.el (global-map): Menu-bar items converted to the new
24679 format (menu-item..., rearranged for better CUA compliance, and
24680 their names changed for better clarity. Help strings added.
24681
24682 * international/mule-cmds.el (mule-menu-keymap)
24683 (describe-language-environment-map, set-coding-system-map)
24684 (setup-language-environment-map): Convert to new (menu-item...
24685 form, add help strings. Change names of menu items for better clarity.
24686 "Mule" menu-bar item removed (it's now in the "Options" submenu).
24687
24688 2000-02-17 Gerd Moellmann <gerd@gnu.org>
24689
24690 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
24691 within the code.
24692
24693 2000-02-16 Dave Love <fx@gnu.org>
24694
24695 * faces.el: Don't require custom. Add more specific :groups to
24696 various deffaces.
24697 (set-face-attribute): Purecopy args.
24698 (read-face-name): Default to name at point and use it in prompt.
24699 Remove colon from arg in all callers.
24700 (list-faces-display): Hyperlink to face descriptions and customize
24701 buffers.
24702
24703 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
24704
24705 * wid-edit.el (widget-match-inline): An atom never matches a list.
24706
24707 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24708
24709 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
24710 at ':' characters by call to split-string.
24711
24712 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24713
24714 * textmodes/bibtex.el: Added RCS version identification.
24715
24716 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24717
24718 * textmodes/bibtex.el: Some temporary comments removed.
24719 (bibtex-field-name, bibtex-entry-type): Made the relationship explicit.
24720 (bibtex-field-const): Allow capital letters.
24721 (bibtex-start-of-string): Deleted because unused.
24722
24723 * textmodes/bibtex.el: Unified some nomenclature. We no longer
24724 use the term 'reference' to describe a bibtex entry as a whole.
24725 Further, reference keys are no longer called 'labels'.
24726 (bibtex-keys): Renamed to bibtex-reference-keys.
24727 (bibtex-reformat-previous-labels): Renamed to
24728 bibtex-reformat-previous-reference-keys.
24729 (bibtex-reference-type): Renamed to bibtex-entry-type.
24730 (bibtex-reference-head): Renamed to bibtex-entry-head.
24731 (bibtex-reference-maybe-empty-head): Renamed to
24732 bibtex-entry-maybe-empty-head.
24733 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
24734 (bibtex-search-reference): Renamed to bibtex-search-entry.
24735 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
24736 bibtex-enclosing-entry-maybe-empty-head.
24737 (bibtex-entry-field-alist, bibtex-entry-head)
24738 (bibtex-font-lock-keywords, bibtex-skip-to-valid-entry)
24739 (bibtex-map-entries, bibtex-search-entry)
24740 (bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry)
24741 (bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode)
24742 (bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message)
24743 (bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer)
24744 (bibtex-find-entry-location, bibtex-validate, bibtex-find-text)
24745 (bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat)
24746 (bibtex-complete-key, bibtex-String) : Use the new nomenclature.
24747
24748 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24749
24750 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
24751 comment.
24752 (bibtex-format-field-delimiters): New function, functionality
24753 extracted from bibtex-format-entry.
24754 (bibtex-autokey-get-yearfield-digits): New function, functionality
24755 extracted from bibtex-autokey-get-yearfield.
24756
24757 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
24758 entries in order to avoid stack overflow in the regexp matcher if
24759 field contents become large.
24760 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield)
24761 (bibtex-field-string-part-not-braced)
24762 (bibtex-field-string-part-no-inner-braces)
24763 (bibtex-field-string-part-1-inner-brace)
24764 (bibtex-field-string-part-2-inner-braces)
24765 (bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced)
24766 (bibtex-field-string-quoted, bibtex-field-string)
24767 (bibtex-field-string-or-const, bibtex-field-text, bibtex-field)
24768 (bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix)
24769 (bibtex-string, bibtex-key-in-string, bibtex-text-in-string):
24770 Deleted as parsing is now performed by the following functions.
24771 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced)
24772 (bibtex-parse-quoted-string, bibtex-parse-field-string-quoted)
24773 (bibtex-parse-field-string, bibtex-search-forward-field-string)
24774 (bibtex-parse-association, bibtex-field-name-for-parsing)
24775 (bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field)
24776 (bibtex-search-forward-field, bibtex-search-backward-field)
24777 (bibtex-start-of-field, bibtex-end-of-field)
24778 (bibtex-start-of-name-in-field, bibtex-end-of-name-in-field)
24779 (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
24780 (bibtex-parse-string-prefix, bibtex-parse-string-postfix)
24781 (bibtex-parse-string, bibtex-search-forward-string)
24782 (bibtex-search-backward-string, bibtex-start-of-string)
24783 (bibtex-end-of-string, bibtex-start-of-reference-key-in-string)
24784 (bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string)
24785 (bibtex-end-of-text-in-string): New functions for the parsing of bibtex
24786 entries. Instead of reporting the results of the parsing by
24787 match-beginning or match-end, these functions return data structures
24788 that hold the corresponding positions.
24789 (bibtex-enclosing-field): Changed to also report field boundaries by
24790 return values rather than by match-beginning or match-end.
24791 The following functions have been adapted to use the new
24792 parsing functions.
24793 (bibtex-skip-to-valid-entry, bibtex-search-reference)
24794 (bibtex-enclosing-field, bibtex-format-entry)
24795 (bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring)
24796 (bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode)
24797 (bibtex-print-help-message, bibtex-end-of-entry)
24798 (bibtex-ispell-abstract, bibtex-validate, bibtex-next-field)
24799 (bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
24800 (bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry):
24801 Use the new method for parsing.
24802 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry)
24803 (bibtex-map-entries, bibtex-flash-head)
24804 (bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry)
24805 (bibtex-autokey-change, bibtex-autokey-get-namefield)
24806 (bibtex-autokey-get-names, bibtex-autokey-get-titlestring)
24807 (bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode)
24808 (bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer)
24809 (bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
24810 (bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
24811 order to make the new binding of case-fold-search immediately visible.
24812
24813 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24814
24815 * textmodes/bibtex.el: Copyright notice is up to date.
24816 Added constant 'bibtex-maintainer-salutation.
24817
24818 * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
24819 than make-temp-name, use match-string-no-properties and eliminate
24820 a quadratic behavior when building bibtex-strings.
24821
24822 * bibtex.el (bibtex-reference-key): Accept string entries whose
24823 reference key contains upper case letters.
24824
24825 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24826
24827 * bibtex.el (bibtex-reference-head): Allow entries to start with
24828 a new line.
24829
24830 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24831
24832 * bibtex.el: Hiding of entry bodies is not longer provided by
24833 bibtex.el directly. Instead the hideshow package can be used.
24834 Added a special bibtex entry to hs-special-modes-alist.
24835 (bibtex-hs-forward-sexp): Added for hideshow.el.
24836
24837 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24838
24839 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
24840 proceedings entry type (for cross referencing). Thanks to Wagner
24841 Toledo Correa for the suggestion.
24842
24843 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
24844
24845 2000-02-14 Kenichi Handa <handa@etl.go.jp>
24846
24847 * international/characters.el: Setup case table for Vietnamese.
24848
24849 2000-02-12 Gerd Moellmann <gerd@gnu.org>
24850
24851 * uniquify.el (toplevel): Require CL at compile time.
24852 (uniquify-push): Removed.
24853
24854 * shadowfile.el (shadow-when): Removed.
24855
24856 * tempo.el (tempo-dolist, tempo-mapc): Removed.
24857 (tempo-process-and-insert-string): Use dolist instead of tempo-dolist.
24858
24859 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
24860 regexp for paragraph-start.
24861
24862 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
24863 commas as well.
24864
24865 2000-02-10 Dave Love <fx@gnu.org>
24866
24867 * wid-edit.el: (widgets) [defgroup]: Remove url link.
24868 (widget-color-choice-list, widget-color-history, widget-mouse-help):
24869 Deleted.
24870 (widget-specify-field, widget-specify-button): Don't use
24871 widget-mouse-help as help-echo property.
24872 (default): Use #'ignore for :validate and :mouse-down-action.
24873 (checkbox): Add help-echo.
24874 (widget-sexp-validate): Rewritten to clarify error messages.
24875 (character): Use char-valid-p in :match function.
24876 (widget-color-complete): Use facemenu-color-alist.
24877 (widget-color-action): Use facemenu-read-color.
24878
24879 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
24880 set up `caar' &c that we now have.
24881
24882 2000-02-09 Ray Blaak <blaak@gnu.org>
24883
24884 * delphi.el: Make resourcestring a declaration region, like const
24885 and var.
24886
24887 2000-02-09 Dave Love <fx@gnu.org>
24888
24889 * bindings.el (mode-line-input-method-map): New variable.
24890 (mode-line-mule-info): Use it; fix last change.
24891 (mode-line-mode-menu): Move definition.
24892 (mode-line-mouse-sensitive-p): Deleted.
24893 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
24894 (make-mode-line-mouse-sensitive): Deleted. Body moved to top level.
24895
24896 * startup.el (command-line-1): Don't call
24897 make-mode-line-mouse-sensitive.
24898
24899 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
24900
24901 * mail/rmail.el (rmail-retry-failure): Use rmail-beginning-of-message
24902 before rmail-toggle-header, because the former toggles headers.
24903
24904 2000-02-06 Stefan Monnier <monnier@cs.yale.edu>
24905
24906 * diff-mode.el (diff-kill-junk): New interactive function.
24907 (diff-reverse-direction): Use delete-and-extract-region.
24908 (diff-post-command-hook): Restrict the area so that the hook also works
24909 outside of any diff hunk. This is necessary for the minor-mode.
24910 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
24911 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
24912
24913 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
24914 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
24915 so that it can be used more easily in <foo>-mode-hook. Also make sure
24916 to avoid duplicate entries.
24917 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
24918 (font-lock-remove-keywords): Just as was done for `add', allow it to
24919 work even if font-lock-mode is nil. Also make sure we don't modify
24920 any pre-existing list by forcing a copy-sequence. Finally rename
24921 `major-mode' to `mode'.
24922 (font-lock-fontify-syntactic-anchored-keywords)
24923 (font-lock-fontify-anchored-keywords)
24924 (font-lock-fontify-keywords-region): Use line-end-position.
24925 Don't make `font-lock-multiline' local (it's now done in
24926 font-lock-set-defaults).
24927 (font-lock-set-defaults): Make `font-lock-multiline' local.
24928 Move the `font-lock-fontified' creation to inside the `unless'.
24929
24930 2000-02-06 Andrew Innes <andrewi@gnu.org>
24931
24932 * term/w32-win.el (x-handle-args): Comment out call to message,
24933 which occurs before window system is initialized.
24934
24935 * makefile.nt: Add support for recompiling lisp code.
24936
24937 2000-02-04 Dave Love <fx@gnu.org>
24938
24939 * bindings.el (mode-line-mule-info): Fix/extend last change.
24940
24941 * completion.el: Replace completion-dolist with dolist.
24942
24943 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist, dotimes.
24944
24945 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
24946
24947 * textmodes/reftex.el (reftex-compile-variables): Regexp-quote the
24948 environment names before they go into the section regexp.
24949
24950 * textmodes/reftex-global.el (reftex-change-label): Add `A-Z' to
24951 char class in regexp.
24952
24953 * textmodes/reftex-parse.el (reftex-with-special-syntax):
24954 Bind `case-fold-search' to nil.
24955
24956 * progmodes/idlwave.el (idlwave-template):
24957 Respect `idlwave-abbrev-change-case'.
24958 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for)
24959 (idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat)
24960 (idlwave-while): Respect `idlwave-reserved-word-upcase'.
24961 (idlwave-rw-case): New function.
24962 (idlwave-statement-match): Fixed problem with assignment regexp.
24963 (idlwave-font-lock-keywords): Improved regexp for keyword parameters.
24964 (idlwave-surround): New argument LENGTH to support padding of
24965 operators longer than 1 char.
24966
24967 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
24968 idlwave-shell-expression-overlay. Implemented printing of
24969 expressions on higher levels of the calling stack.
24970 (idlwave-shell-display-level-in-calling-stack): Restore stack level.
24971 (idlwave-retrieve-expression-from-level): New function.
24972 (idlwave-shell-last-calling-stack): Variable removed.
24973 (idlwave-shell-reset): Argument action reversed (`visible' to
24974 `hidden'). Also remove stop-line overlay.
24975 (idlwave-shell-calling-stack-routine): New variable.
24976 (idlwave-shell-parse-stack-and-display): Messages now display
24977 negative level numbers.
24978 (idlwave-shell-mode): Set `modeline-format'.
24979 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
24980 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs 21.
24981 (idlwave-shell-print-expression-function): New option.
24982
24983 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere)
24984 (idlwave-toolbar-remove-everywhere): Keybindings prefix is now
24985 `tool-bar' instead of `toolbar'.
24986
24987 2000-02-02 Dave Love <fx@gnu.org>
24988
24989 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
24990 emacs-lisp-mode-hook. Don't check for defalias being defined.
24991
24992 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
24993 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions.
24994 Use the new builtins directly.
24995
24996 * whitespace.el (whitespace): Add :version to defgroup.
24997
24998 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
24999 Doc fix.
25000
25001 * thingatpt.el (sexp-at-point, symbol-at-point)
25002 (number-at-point, list-at-point): Add autoload cookie.
25003
25004 * recentf.el (recentf): Add :version to defgroup.
25005
25006 * quickurl.el (quickurl): Add :version to defgroup.
25007
25008 * elide-head.el (elide-head): Use point-marker more.
25009
25010 * bs.el (bs): Add :version to defgroup.
25011
25012 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
25013
25014 * progmodes/delphi.el (delphi): Add :version to defgroup.
25015
25016 2000-02-02 Gerd Moellmann <gerd@gnu.org>
25017
25018 * ange-ftp.el (ange-ftp-write-region): Handle case that
25019 succeeding process operation sets a different coding system.
25020
25021 * calculator.el: New file.
25022
25023 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
25024
25025 * frame.el (frames-on-display-list, framep-on-display): New functions.
25026 (display-mouse-p, display-popup-menus-p, display-graphic-p)
25027 (display-selections-p, display-screens, display-pixel-width)
25028 (display-pixel-height, display-mm-width, display-mm-height)
25029 (display-backing-store, display-save-under, display-planes)
25030 (display-color-cells, display-visual-class): New functions.
25031
25032 * term/tty-colors.el (tty-color-gray-shades): New function.
25033
25034 * faces.el (display-color-p): Use framep-on-display.
25035 (display-grayscale-p): New function.
25036
25037 2000-01-31 Dave Love <fx@gnu.org>
25038
25039 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
25040 (create-fontset-from-x-resource): Don't concat integers.
25041
25042 2000-01-31 Inge Frick <inge@nada.kth.se>
25043
25044 * view.el: Some changes in documentation. Removed some trailing
25045 whitespace. Changed some parameter names to agree with documentation.
25046 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
25047 window is not deleted. Modifies change 1998-04-26.
25048
25049 2000-01-31 Gerd Moellmann <gerd@gnu.org>
25050
25051 * windmove.el: New file.
25052
25053 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
25054 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
25055 progmodes/ebnf-yac.el: Update copyright and license info.
25056
25057 * jit-lock.el (jit-lock-function): Widen before calculating
25058 end position.
25059 (jit-lock-stealth-chunk-start): Rewritten.
25060
25061 * info.el (Info-title-face-alist): Removed.
25062 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New faces.
25063 (Info-fontify-node): Use these faces.
25064
25065 2000-01-30 Gerd Moellmann <gerd@gnu.org>
25066
25067 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
25068 (cl-macro-list1): Recognize `&allow-other-keys' instead of
25069 `&allow-other-keywords'.
25070
25071 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
25072 the list of directories scanned heuristically.
25073
25074 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to exist.
25075
25076 2000-01-30 Jason Rumney <jasonr@gnu.org>
25077
25078 * w32-fns.el: Define w32-tty-standard-colors.
25079
25080 * startup.el (command-line): Use w32-tty-standard-colors when in
25081 w32 console mode.
25082
25083 2000-01-30 Dave Love <fx@gnu.org>
25084
25085 * jka-compr.el (jka-compr-load): Fix up load-history.
25086
25087 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
25088
25089 * emacs-lisp/cl-macs.el: Revert previous change.
25090
25091 2000-01-29 Dave Love <fx@gnu.org>
25092
25093 * facemenu.el: Purecopy various strings.
25094
25095 * timezone.el (timezone-fix-time): Window against 69 for two-digit
25096 years. Deal with three-digit years.
25097
25098 * help.el (help-xref-symbol-regexp, help-xref-info-regexp):
25099 Use defconst, purecopy.
25100 (help-back-label): Purecopy it.
25101
25102 2000-01-18 Gerd Moellmann <gerd@gnu.org>
25103
25104 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
25105 variable. If non-nil, order the buffer list according to the
25106 currently selected frame.
25107 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
25108 non-nil, pass the selected frame to function buffer-list.
25109
25110 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
25111
25112 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
25113
25114 2000-01-28 Dave Love <fx@gnu.org>
25115
25116 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
25117
25118 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
25119 Don't use lisp-indent-hook property.
25120 (cl-abs): Remove.
25121
25122 * subr.el: Move out indent and edebug specs for when and unless.
25123
25124 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
25125 when, unless.
25126
25127 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
25128 unless, when.
25129
25130 2000-01-28 Gerd Moellmann <gerd@gnu.org>
25131
25132 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
25133 `collecting' as synonym for `collect'.
25134
25135 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
25136 for the case it contains spaces.
25137
25138 * simple.el (what-cursor-position): Change formatting of messages.
25139
25140 * frame.el (delete-other-frames): New function.
25141 (toplevel): Bind it to C-x 5 1.
25142
25143 * sort.el (sort-numeric-base): New option.
25144 (sort-numeric-fields): If number starts with `0' or `0[xX[',
25145 interpret it as octal or hexadecimal. Use sort-numeric-base
25146 as default base.
25147
25148 * progmodes/glasses.el: New file.
25149
25150 2000-01-27 Gerd Moellmann <gerd@gnu.org>
25151
25152 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
25153 userids differently.
25154
25155 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
25156 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
25157 progmodes/ebnf-yac.el: New files.
25158
25159 2000-01-26 Dave Love <fx@gnu.org>
25160
25161 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
25162 on a function with an empty body. [From Eric Ludlam.]
25163
25164 2000-01-25 Andre Spiegel <spiegel@gnu.org>
25165
25166 * vc.el (vc-version-diff): Make sure file name is expanded.
25167
25168 2000-01-25 Gerd Moellmann <gerd@gnu.org>
25169
25170 * scroll-bar.el (scroll-bar-timer): Variable removed.
25171 (scroll-bar-toolkit-scroll): Don't use a timer.
25172
25173 2000-01-25 Kenichi Handa <handa@etl.go.jp>
25174
25175 * language/thai-util.el (thai-composition-function):
25176 Delete superfluous `a'.
25177
25178 2000-01-24 Dave Love <fx@gnu.org>
25179
25180 * fortran.el (fortran-mode): Use beginning-of-defun-function,
25181 end-of-defun-function.
25182
25183 * font-lock.el (turn-on-font-lock): Don't depend on window-system &c.
25184
25185 2000-01-22 Jason Rumney <jasonr@gnu.org>
25186
25187 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
25188 conflicts with new face support.
25189
25190 2000-01-22 Richard M. Stallman <rms@gnu.org>
25191
25192 * replace.el (query-replace): Rename last arg to DELIMITED.
25193 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
25194 (query-replace-regexp): Likewise.
25195
25196 2000-01-20 Richard M. Stallman <rms@gnu.org>
25197
25198 * subr.el (with-syntax-table): Use make-symbol, not gensym.
25199
25200 * emacs-lisp/lisp.el (beginning-of-defun-function):
25201 Variable renamed from beginning-of-defun.
25202 Do not call make-variable-buffer-local.
25203 (beginning-of-defun-raw): Use new variable name; doc fix.
25204 (beginning-of-defun): Doc fix.
25205 (end-of-defun-function): Variable renamed from end-of-defun.
25206 Do not call make-variable-buffer-local.
25207 (end-of-defun): Use new variable name; doc fix.
25208
25209 * subr.el (dolist, dotimes): Copied from cl-macs.el
25210 and made to work.
25211
25212 * mail/undigest.el (rmail-digest-end-regexps):
25213 Variable replaces rmail-digest-end-regexp.
25214 Allows multiple regexps for detecting the end line.
25215 (undigestify-rmail-message): Corresponding changes.
25216
25217 2000-01-19 Dave Love <fx@gnu.org>
25218
25219 * files.el (user-init-file): Don't declare here -- is primitive.
25220
25221 * startup.el (command-line): Check for compiled user-init-file and
25222 set to uncompiled version if necessary.
25223
25224 2000-01-18 Gerd Moellmann <gerd@gnu.org>
25225
25226 * mail/undigest.el (rmail-digest-end-regexp): New user option.
25227 (undigestify-rmail-message): Use it.
25228
25229 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
25230
25231 2000-01-17 Gerd Moellmann <gerd@gnu.org>
25232
25233 * tmm.el (tmm-goto-completions): Adapt to prompt being part
25234 of mini-buffer.
25235
25236 2000-01-14 Gerd Moellmann <gerd@gnu.org>
25237
25238 * emacs-lisp/copyright.el (copyright-update): Removed the
25239 requirement for a trailing space from `copyright-regexp', to
25240 support copyrights with owner specified on a separate line..
25241
25242 * align.el: New file.
25243
25244 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
25245
25246 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
25247
25248 2000-01-13 Dave Love <fx@gnu.org>
25249
25250 * ph.el: Removed. (Obsoleted by EUDC.)
25251
25252 2000-01-13 Gerd Moellmann <gerd@gnu.org>
25253
25254 * net/eudc.el (toplevel): Remove autoloaded code installing
25255 menu with easymenu, because that causes build problems.
25256
25257 * frame.el (frame-notice-user-settings): New variable.
25258 (frame-notice-user-settings): Don't modify frame parameters
25259 if called a second time.
25260
25261 2000-01-13 Richard M. Stallman <rms@gnu.org>
25262
25263 * frame.el (frame-notice-user-settings):
25264 Notice default-frame-parameters even for non-window frames.
25265
25266 2000-01-13 Gerd Moellmann <gerd@gnu.org>
25267
25268 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
25269 for Emacs.
25270 (eudc-bob-can-display-inline-images): Extend for Emacs.
25271 (eudc-bob-toggle-inline-display): Ditto.
25272 (eudc-bob-display-jpeg): Ditto.
25273
25274 2000-01-12 Gerd Moellmann <gerd@gnu.org>
25275
25276 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
25277 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
25278 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
25279
25280 * add-log.el (add-change-log-entry): Fix error trying an
25281 `(insert nil)'.
25282
25283 * subdirs.el: Add `net' directory.
25284
25285 * net: New directory.
25286
25287 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
25288 eval-last-sexp. Don't bind debug-on-error here.
25289 (eval-last-sexp): New function. Bind debug-on-error if
25290 eval-expression-debug-on-error is non-nil.
25291 (eval-defun-2, eval-defun): Likewise.
25292
25293 * simple.el (eval-expression): Don't bind debug-on-error if
25294 eval-expression-debug-on-error is nil. Detect changed
25295 debug-on-error, and propagate new value to global binding, if
25296 eval-expression-debug-on-error is non-nil,
25297 (eval-expression-debug-on-error): Change doc string.
25298
25299 2000-01-11 Richard M. Stallman <rms@gnu.org>
25300
25301 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
25302
25303 * emacs-lisp/lisp-mode.el (with-syntax-table):
25304 Set up lisp-indent-function property.
25305
25306 * subr.el (with-syntax-table): Moved from simple.el.
25307
25308 * simple.el (with-syntax-table): Moved to subr.el.
25309
25310 2000-01-11 Gerd Moellmann <gerd@gnu.org>
25311
25312 * tmm.el (tmm-shortcut): Delete region after prompt instead
25313 of erasing buffer.
25314
25315 * textmodes/fill.el (fill-common-string-prefix): New function.
25316 (fill-context-prefix): Use the longest common prefix of first
25317 and second line fill prefix, if there is one.
25318
25319 2000-01-11 Richard M. Stallman <rms@gnu.org>
25320
25321 * array.el (array-mode): Don't use make-variable-buffer-local.
25322 Use make-local-variable for `truncate-lines'.
25323
25324 2000-01-11 Jari Aalto <jari.aalto@poboxes.com>
25325
25326 * add-log.el (add-log-current-defun): Handle user-defined
25327 add-log-current-function returning nil,
25328
25329 * add-log.el (add-change-log-entry): Insert version number
25330 if having found a current function
25331
25332 * add-log.el (add-log-current-defun):
25333 Call `add-log-current-defun-function'. Try matches at level 0 and
25334 level 1. Strip whitespace from defun found.
25335
25336 2000-01-10 John Wiegley <johnw@gnu.org>
25337
25338 * allout.el (isearch-done/outline-provisions): Added `edit'
25339 argument to correspond with the current definition of `isearch-done'.
25340
25341 2000-01-10 Dave Love <fx@gnu.org>
25342
25343 * elide-head.el (elide-head): Use point-marker, not point.
25344
25345 2000-01-10 Gerd Moellmann <gerd@gnu.org>
25346
25347 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
25348 before and after the year 2000.
25349
25350 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
25351 Add ispell- prefix.
25352
25353 2000-01-10 Ken Stevens <k.stevens@ieee.org>
25354
25355 * ispell.el: Only define dictionaries in menus when they exist.
25356 (version18p): New variable.
25357 (version20p): New variable.
25358 (xemacsp): New variable.
25359 (ispell-choices-win-default-height): Fix for XEmacs visibility.
25360 (ispell-dictionary-alist1): Added Brasileiro dictionary.
25361 (ispell-dictionary-alist6): Russian command lines no longer accept
25362 run-together words.
25363 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
25364 (ispell-dictionary-alist): Add koi8-r to customize definition.
25365 (check-ispell-version): Added documentation string. Return library
25366 path when called non-interactively.
25367 (ispell-menu-map-needed): Uses new variables.
25368 (ispell-library-path): New variable.
25369 (ispell-decode-string): XEmacs fix for bogus variable bindings.
25370 (ispell-word): Improved documentation string. Test for valid
25371 character mappings. Correctly check typed in word changes that can
25372 result in single words split into multiple words.
25373 Return replacement word.
25374 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
25375 replace in recursive query replace mode. Help message for
25376 recursive edit mode.
25377 (ispell-show-choices): Protect against bad framepop bindings.
25378 (ispell-help): Fix to work with XEmacs.
25379 (ispell-highlight-spelling-error): Use new variables.
25380 (ispell-overlay-window): Fix to work with XEmacs.
25381 (ispell-parse-output): Passed and returns location information
25382 tracking spelling corrections. Doesn't recheck same word on
25383 current line.
25384 (ispell-init-process): Protect against bogus XEmacs variable binding.
25385 Fix call to single argument in sleep-for. Use new variables.
25386 (ispell-region): Passed and returns location information tracking
25387 spelling corrections. Doesn't check same word on current line.
25388 Improved documentation string. Doesn't resend a line already
25389 checked to the ispell process - fixes bug in LaTeX parsing.
25390 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
25391 (ispell-skip-region): No longer skips <TT> in SGML.
25392 (ispell-process-line): Tracks location information with spelling
25393 corrections. Added documentation string. Accounts for words
25394 already accepted on this line. Don't allow query-replace on line
25395 starting with math characters. Doesn't resend a line already sent
25396 to ispell process. Fixes alignment error bug.
25397
25398 2000-01-10 Richard M. Stallman <rms@gnu.org>
25399
25400 * dired-x.el (dired-guess-shell-alist-default):
25401 Suggest xloadimage, which is free, not xv, which isn't.
25402
25403 * ange-ftp.el (ange-ftp-file-name-nondirectory):
25404 Don't ever include the host name or user name in the value.
25405
25406 2000-01-09 Gerd Moellmann <gerd@gnu.org>
25407
25408 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
25409 of a real newline.
25410
25411 2000-01-09 Stephen Eglen <stephen@gnu.org>
25412
25413 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
25414 for .png files.
25415
25416 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
25417
25418 * cus-edit.el (custom-hook-convert-widget): Fix comment.
25419
25420 2000-01-09 Gerd Moellmann <gerd@gnu.org>
25421
25422 * progmodes/cperl-mode.el: Replace ^F with ^L.
25423
25424 * sendmail.el (toplevel): Provide `sendmail' when compiling before
25425 `require'ing rmail and mailalias to prevent infinite recursion.
25426
25427 2000-01-08 Dave Love <fx@gnu.org>
25428
25429 * emacs-lisp/backquote.el: Remove inappropriate customization
25430 (allowing custom.el to use backquote).
25431
25432 2000-01-07 Dave Love <fx@gnu.org>
25433
25434 * add-log.el (add-log-debugging): Deleted.
25435 (add-change-log-entry): Treat a backup FILE-NAME as its parent
25436 file. Remove debugging code.
25437 (change-log-get-method-definition, change-log-name): Add doc.
25438 (change-log-sortable-date-at): New function.
25439 (change-log-merge): New command.
25440
25441 * time.el (display-time-string-forms): Make the Mail string active.
25442 (display-time-update): Provide help-echo for load average.
25443
25444 * bindings.el (make-mode-line-mouse2-map): New function.
25445 (mode-line-modified): Use it and simplify.
25446 (mode-line-mule-info): Provide help-echo info.
25447 (minor-mode-alist): Activate the strings.
25448 (make-mode-line-mouse-sensitive): Simplify for
25449 mode-line-buffer-identification.
25450
25451 2000-01-07 Gerd Moellmann <gerd@gnu.org>
25452
25453 * play/pong.el: New file.
25454
25455 2000-01-06 Dave Love <fx@gnu.org>
25456
25457 * array.el: Assorted cleanups for compiler warnings, doc strings,
25458 `array-' prefix for symbols.
25459
25460 2000-01-05 Dave Love <fx@gnu.org>
25461
25462 * textmodes/outline.el (outline-mode-menu-bar-map):
25463 Add outline-headers-as-kill.
25464 (outline-mode): Define imenu-generic-expression.
25465 (outline-headers-as-kill): New command.
25466
25467 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
25468 from paragraph-start.
25469 (paragraph-indent-minor-mode): New command.
25470
25471 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
25472 M-C-e, M-C-h, C-j, C-xnd, TAB.
25473 (fortran-mode): Set beginning-of-defun, end-of-defun.
25474 (fortran-column-ruler): Simplify.
25475 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
25476 (fortran-with-subprogram-narrowing): Likewise.
25477 (fortran-indent-subprogram): Call mark-defun.
25478 (fortran-check-for-matching-do): Change narrowing.
25479
25480 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
25481 (cl-lucid-hash-tag): Delete.
25482 (cl-hash-table-p): Correct test for native table.
25483 (cl-hash-table-count): Use hash-table-count.
25484
25485 * browse-url.el (browse-url): Fix case of
25486 browse-url-browser-function being an alist.
25487
25488 2000-01-05 Carsten Dominik <cd@gnu.org>
25489
25490 * textmodes/reftex-vars.el (reftex-parse-file-extension)
25491 (reftex-index-phrase-file-extension): New options.
25492
25493 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
25494 Use new option `reftex-index-phrase-file-extension'.
25495
25496 * textmodes/reftex.el (reftex-access-parse-file): Use new option
25497 `reftex-parse-file-extension'.
25498
25499 2000-01-05 Dave Love <fx@gnu.org>
25500
25501 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
25502 (beginning-of-defun-raw): Use it.
25503 (end-of-defun): New variable.
25504 (end-of-defun): Use it.
25505 (check-parens): New command.
25506
25507 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
25508
25509 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
25510 (hs-show-block): Don't use `mapcar' when not accumulating.
25511
25512 Fix buglet in local variables initialization.
25513
25514 2000-01-05 Andreas Schwab <schwab@suse.de>
25515
25516 * hscroll.el (hscroll): Doc fix.
25517
25518 2000-01-05 Carsten Dominik <cd@gnu.org>
25519
25520 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar):
25521 Require idlw-toolbar.
25522
25523 * progmodes/idlwave.el (idlwave-load-system-rinfo): Load must read
25524 file idlw-rinfo.el.
25525 (idlwave-customize): Load must read file idlw-shell.el.
25526 (idlwave-create-customize-menu): Load must read file idlw-shell.el.
25527
25528 2000-01-05 Carsten Dominik <dominik@astro.uva.nl>
25529
25530 * progmodes/idlw-shell.el: Also provide idlwave-shell
25531 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
25532 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
25533
25534 * textmodes/reftex-dcr.el: Rename from reftex-vcr.el, provide
25535 both reftex-dcr and reftex-vcr.
25536
25537 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
25538
25539 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
25540
25541 * ps-print.el: PostScript code now is in separate files, doc fix.
25542 (ps-print-version): New version number (5.0.3).
25543 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
25544 local.
25545 (ps-spool-config): Initialization fix.
25546 (ps-print-prologue-1, ps-print-prologue-2)
25547 (ps-print-duplex-feature): PostScript code moved to separated file.
25548 (ps-background-image): Little code reformating.
25549 (ps-begin-file, ps-begin-job): Fix code.
25550 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
25551 (ps-prologue-file): New fun.
25552
25553 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
25554
25555 * ps-vars.el: Eliminated.
25556
25557 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
25558 `;;;###autoload'.
25559
25560 * ps-print.el: ps-vars eliminated, doc fix.
25561 (ps-print-version): New version number (5.0.2).
25562 (ps-spool-config): Initialization fix.
25563 (ps-print-customize): New fun.
25564
25565 2000-01-04 Gerd Moellmann <gerd@gnu.org>
25566
25567 * autorevert.el (auto-revert-mode): Return value of auto-revert-mode.
25568
25569 2000-01-04 Dave Love <fx@gnu.org>
25570
25571 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
25572 menu items.
25573
25574 2000-01-03 Dave Love <fx@gnu.org>
25575
25576 * elide-head.el (elide-head) [defgroup]: Add :version.
25577
25578 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
25579 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count):
25580 Use `cl-hash-table-p', not `hash-table-p'.
25581 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
25582
25583 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
25584
25585 * faces.el (face-read-integer, read-face-attribute)
25586 (color-defined-p, color-values): Unspecified-{f,b}g are now strings.
25587
25588 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
25589
25590 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
25591 at comment end, and re-insert them after filling.
25592
25593 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
25594
25595 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
25596 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
25597 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
25598
25599 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
25600
25601 * term/x-win.el (xw-defined-colors): Call color-supported-p,
25602 the new name of face-color-supported-p.
25603
25604 * term/w32-win.el (xw-defined-colors): Likewise.
25605
25606 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
25607
25608 * simple.el (completion-setup-function): Count completion-size
25609 from minibuffer-prompt-end, not from point-min.
25610
25611 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
25612
25613 * faces.el (read-face-attribute, defined-colors, color-defined-p):
25614 Pass the frame to tty-color-* functions.
25615 (display-color-p, frame-set-background-mode): Pass the frame to
25616 tty-display-color-p.
25617
25618 * term/tty-colors.el (tty-defined-color-alist): Renamed from
25619 tty-color-alist.
25620 (tty-color-alist, tty-modify-color-alist): New functions.
25621 (tty-color-define, tty-color-clear, tty-color-approximate)
25622 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept an
25623 optional parameter FRAME.
25624
25625 2000-01-01 Gerd Moellmann <gerd@gnu.org>
25626
25627 * image.el (create-image, defimage): Don't assume image data is
25628 a string.
25629
25630 * image.el (defimage): Handle specifications containing :data
25631 instead of :file.
25632 (image-type-from-data): New function.
25633 (image-type-from-file-header): Use it.
25634 (create-image): Add parameter DATA-P.
25635
25636 See ChangeLog.8 for earlier changes.
25637
25638 ;; Local Variables:
25639 ;; coding: iso-2022-7bit
25640 ;; End:
25641
25642 Copyright (C) 2000, 2001 Free Software Foundation, Inc.
25643 Copying and distribution of this file, with or without modification,
25644 are permitted provided the copyright notice and this notice are preserved.