*** empty log message ***
[bpt/emacs.git] / lisp / ChangeLog
1 2002-02-25 Juanma Barranquero <lektu@terra.es>
2
3 * ielm.el (ielm-prompt): Allow customization; make it read-only.
4
5 2002-02-25 Kim F. Storm <storm@cua.dk>
6
7 * shell.el (shell-mode-map): Add "Complete" header so completion
8 menu is shown on the menu bar in shell mode.
9
10 2002-02-25 Stefan Monnier <monnier@cs.yale.edu>
11
12 * ielm.el (ielm-match-data): New var.
13 (inferior-emacs-lisp-mode): Make it buffer-local.
14 (ielm-eval-input): Use it to preserve match-data between inputs.
15
16 2002-02-24 Juanma Barranquero <jbarranquero@peoplecall.com>
17
18 * ielm.el (inferior-emacs-lisp-mode): Use hexl for the dummy process.
19
20 2002-02-24 Per Abrahamsen <abraham@dina.kvl.dk>
21
22 * cus-edit.el (custom-unlispify-remove-prefixes): Add to
23 `custom-buffer' customize group.
24
25 2002-02-23 Kim F. Storm <storm@cua.dk>
26
27 * help.el (where-is): Use remap-command.
28
29 * help-fns.el (describe-function-1): Use remap-command.
30
31 * subr.el (global-set-key, local-set-key): Undo 2002-02-06
32 change (no longer accept a symbol for the KEY argument).
33
34 2002-02-23 Colin Walters <walters@debian.org>
35
36 * calc/calcalg3.el (calc-invent-variables): Convert integer to string.
37 * calc/calcalg2.el (math-solve-get-sign): Ditto.
38
39 * ibuffer.el (ibuffer-compile-format): Don't uselessly bind `pt'
40 in generated function.
41
42 * ibuf-ext.el (ibuffer-old-time): Change to hours.
43 (ibuffer-mark-old-buffers): Handle it.
44
45 * shell.el (shell-pcomplete, shell-pcomplete-reverse): New functions.
46 (toplevel): Bind them.
47 (shell-mode): Don't set `comint-dynamic-complete-functions'; it is
48 not necessary now that we use pcomplete.
49
50 * comint.el: Document how use new pcomplete completion facility.
51
52 2002-02-23 Richard M. Stallman <rms@gnu.org>
53
54 * mail/rmailsum.el (rmail-summary-output): Properly advance
55 to next message, by calling rmail-summary-goto-msg.
56
57 * net/browse-url.el (browse-url-galeon): Specify --existing
58 for an existing window. Use --noraise rather than --no-raise.
59 Don't use -x.
60
61 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
62
63 * progmodes/etags.el (find-tag-noselect, find-tag)
64 (find-tag-other-window, find-tag-other-frame, find-tag-regexp):
65 Fix a typo in doc strings.
66
67 2002-02-20 Deepak Goel <deego@glue.umd.edu>
68
69 * play/snake.el (snake-velocity-queue, snake-update-velocity)
70 (snake-final-x-velocity, snake-final-y-velocity):
71 New variable and functions. Store user's keypresses
72 into a queue and pop from the queue each subsequent turn.
73 (snake-update-game, snake-move-left)
74 (snake-move-right, snake-move-up, snake-move-down, snake-active-p)
75 (snake-start-game): Use that queue.
76 (snake-use-glyphs-flag): Renamed from snake-use-glyphs.
77 (snake-use-color-flag): Likewise.
78 (snake-mode): Rename uses of those variables.
79
80 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
81
82 Support for ICCCM Extended Segments in X selections:
83
84 * international/mule-conf.el (ctext-no-compositions): New coding
85 system.
86 (compount-text-no-extensions): Renamed from compound-text.
87 (x-ctext-no-extensions, ctext-no-extensions): Aliases for
88 compound-text-no-extensions.
89 (compound-text): Redefined using post-read and pre-write conversions.
90
91 * international/mule.el (non-standard-icccm-encodings-alist)
92 (non-standard-designations-alist): New variables.
93 (ctext-post-read-conversion, ctext-pre-write-conversion):
94 New functions.
95
96 2002-02-21 Andre Spiegel <spiegel@gnu.org>
97
98 Patch by Jonathan Kamens <jik@kamens.brookline.ma.us>.
99
100 * vc.el (vc-default-init-version): Update documentation to
101 indicate that the backend can override the default init version.
102 (vc-register): Use the backend init-version function, if it
103 exists, to determine the initial version of a file.
104 (vc-diff-switches-list): Don't symbol-quote backend, since it's
105 already a symbol. Don't fail if vc-BACKEND-diff-switches isn't bound.
106
107 * vc-hooks.el (vc-mode-line): Set vc-mode to nil if the file is
108 not version-controlled. This is necessary, e.g., if the file has
109 just been reverted, and thus was previously under version control
110 but isn't any longer.
111 (vc-find-file-hook): Likewise.
112
113 2002-02-21 Andre Spiegel <spiegel@gnu.org>
114
115 Patch by Martin.Lorentzson@telia.com.
116
117 * vc-cvs.el (vc-cvs-sticky-date-format-string): New variable.
118 (vc-cvs-sticky-tag-display): New variable.
119 (vc-cvs-mode-line-string): Add sticky-tag to the mode-line.
120 (vc-cvs-checkin): If the input revision is a valid symbolic tag
121 name, we create it as a branch, commit and switch to it.
122 (vc-cvs-retrieve-snapshot): Set file-property sticky-tag.
123 (vc-cvs-valid-symbolic-tag-name-p): New function.
124 (vc-cvs-parse-sticky-tag): New function.
125 (vc-cvs-parse-entry): Added parsing of sticky tags.
126
127 2002-02-21 Per Abrahamsen <abraham@dina.kvl.dk>
128
129 * toolbar/tool-bar.el (tool-bar-mode): Revert the :init-value to
130 nil, and then explicitly set the standard-value to t.
131
132 2002-02-20 Sam Steingold <sds@gnu.org>
133
134 * textmodes/flyspell.el (flyspell-mode): Autoload the variable
135 since it is used in the menu bar.
136
137 2002-02-20 Richard M. Stallman <rms@gnu.org>
138
139 * simple.el (shell-command-on-region): Display the exit status
140 when a command fails.
141
142 * subr.el (add-hook): Doc fix.
143
144 * frame.el (other-frame): Doc fix.
145
146 * simple.el (yank): Clear `field' property.
147
148 2002-02-20 Tom Tromey <tromey@cachet>
149
150 * progmodes/tcl.el (tcl-do-fill-paragraph): Find and fill on more
151 natural paragraph boundaries. Don't fail at beginning of buffer.
152
153 2002-02-20 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
154
155 * tar-mode.el (tar-next-line, tar-previous-line): Add doc string,
156 call the argument "arg" to match plain next-line and
157 previous-line. From Kevin Ryde <user42@zip.com.au>.
158
159 2002-02-19 Sam Steingold <sds@gnu.org>
160
161 * mwheel.el (mouse-wheel-scroll-amount): Can specify different
162 scroll amounts for different modifiers now.
163 (mwheel-scroll): Handle the new `mouse-wheel-scroll-amount'
164 format properly.
165 (mouse-wheel-mode): Ditto.
166
167 2002-02-19 Eli Zaretskii <eliz@is.elta.co.il>
168
169 * textmodes/bibtex.el (bibtex-parse-keys): Put save-match-data
170 around function body.
171
172 * net/browse-url.el (browse-url-maybe-new-window): Reverse the
173 sense of the comparison, to match the doc strings of functions
174 that use this macro.
175
176 2002-02-19 Per Abrahamsen <abraham@dina.kvl.dk>
177
178 * facemenu.el (describe-text-mode-map): Removed bootstrap kludge.
179
180 * toolbar/tool-bar.el (tool-bar-mode): Made the standard value t.
181 * menu-bar.el (menu-bar-mode): Ditto.
182
183 2002-02-18 Andreas Schwab <schwab@suse.de>
184
185 * replace.el (query-replace-regexp-eval): Doc fix.
186
187 2002-02-18 Colin Walters <walters@verbum.org>
188
189 * calc/calcalg2.el (math-solve-get-int): Convert return value from
190 `math-get-from-counter' to a string before calling `concat' on it.
191
192 * calc/calc-maint.el (calc-split-manual): Look for calc.texi.
193 (calc-public-autoloads): Obsolete; remove.
194 (calc-private-autoloads): Ditto.
195 (calc-add-autoloads): Ditto.
196
197 * calc/calc-macs.el (calc-with-default-simplification): Use &rest
198 for body.
199
200 2002-02-17 Jason Rumney <jasonr@gnu.org>
201
202 * w32-win.el (x-option-alist, x-long-option-alist)
203 (x-switch-definitions): Remove, use command-line-x-option-alist
204 instead to be consistent with X.
205 (x-handle-initial-switch): New function.
206
207 2002-02-17 Eli Zaretskii <eliz@is.elta.co.il>
208
209 * faces.el (mode-line-inactive, header-line): Add the :inherit
210 attribute for the tty case.
211
212 2002-02-17 stanislav shalunov <shalunov@internet2.edu>
213
214 * mail/uce.el (uce-reply-to-uce): Fix incorrect behavior when
215 invoked from Rmail with full headers displayed.
216
217 2002-02-17 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
218
219 * emacs-lisp/lisp.el (mark-defun): Don't leave multiple marks
220 when repeated.
221 * textmodes/paragraphs.el (mark-paragraph): Ditto.
222
223 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
224
225 * menu-bar.el (menu-bar-showhide-menu): Added speedbar.
226 (menu-bar-tools-menu): Removed speedbar.
227
228 * textmodes/ispell.el (ispell-menu-map): Added `customize-ispell'
229 and `flyspell-mode' entries.
230
231 * textmodes/flyspell.el (flyspell): Add to ispell group.
232
233 2002-02-17 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
234
235 * emacs-lisp/lisp.el (mark-sexp): Don't leave multiple marks when
236 repeated.
237 (mark-defun): Mark more if repeated.
238
239 2002-02-17 Colin Walters <walters@verbum.org>
240
241 * ibuf-ext.el (ibuffer-toggle-sorting-mode): Make it work.
242
243 * ibuffer.el (ibuffer-truncate-lines): New option.
244 (ibuffer-mode): Use it.
245
246 2002-02-17 Kim F. Storm <storm@cua.dk>
247
248 * cus-start.el: Add mouse-highlight.
249
250 2002-02-16 Eli Zaretskii <eliz@is.elta.co.il>
251
252 * Makefile.in (DONTCOMPILE): Remove cus-start.el.
253
254 * cus-start.el: Add automatic-hscroll-margin and
255 automatic-hscroll-step.
256
257 2002-02-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
258
259 * cus-start.el (x-autoselect-window): Allow customization.
260
261 * eshell/em-alias.el (eshell-alias-initialize): Do not use
262 make-local-hook.
263
264 * eshell/em-cmpl.el (eshell-cmpl-initialize): Likewise.
265
266 * eshell/em-dirs.el (eshell-dirs-initialize): Likewise.
267
268 * eshell/em-glob.el (eshell-glob-initialize): Likewise.
269
270 * eshell/em-hist.el (eshell-hist-initialize): Likewise.
271
272 * eshell/em-pred.el (eshell-pred-initialize): Likewise.
273
274 * eshell/em-prompt.el (eshell-prompt-initialize): Likewise.
275
276 * eshell/em-rebind.el (eshell-rebind-initialize): Likewise.
277
278 * eshell/em-smart.el (eshell-smart-initialize): Likewise.
279
280 * eshell/em-unix.el (eshell-unix-initialize): Likewise.
281
282 * eshell/esh-cmd.el (eshell-cmd-initialize): Likewise.
283
284 * eshell/esh-ext.el (eshell-ext-initialize): Likewise.
285
286 * eshell/esh-io.el (eshell-io-initialize): Likewise.
287
288 * eshell/esh-mode.el (eshell-mode): Likewise.
289
290 * eshell/esh-test.el (eshell-show-usage-metrics): Likewise.
291
292 * eshell/esh-var.el (eshell-var-initialize): Likewise.
293
294 * progmodes/idlw-shell.el (idlwave-shell-mode): Likewise.
295
296 * progmodes/idlwave.el (idlwave-mode): Likewise.
297
298 * textmodes/reftex-sel.el (reftex-select-label-mode)
299 (reftex-select-bib-mode): Likewise.
300
301 2002-02-16 John Wiegley <johnw@gnu.org>
302
303 * eshell/em-hist.el (eshell-hist-initialize): When in the
304 minibuffer, use the global value of `eshell-history-ring', and
305 never save it to disk, or ask to save it to disk. This allows
306 users of session.el to control whether its global state should be
307 persisted or not.
308 (eshell-add-command-to-history): Don't write Eshell's history out
309 to disk, let the governing mode control that upon exit.
310
311 2002-02-16 Eli Zaretskii <eliz@is.elta.co.il>
312
313 * eshell/eshell.el (eshell-command): Before reading from the
314 minibuffer, add eshell-add-command-to-history to
315 minibuffer-exit-hook, and remove it after read-from-minibuffer
316 returns.
317
318 * eshell/em-hist.el (eshell-add-input-to-history): New function,
319 with most of the code from eshell-add-to-history.
320 (eshell-add-command-to-history): New function, to record in
321 eshell-history the commands run via eshell-command.
322 (eshell-add-to-history): Call eshell-add-command-to-history to do
323 most of the work.
324
325 2002-02-16 John Wiegley <johnw@gnu.org>
326
327 * eshell/esh-ext.el (eshell-external-command): Added a fix for
328 XEmacs' new dired.el, which adds a global entry in the
329 `file-name-handler-alist'.
330
331 2002-02-16 John Wiegley <johnw@gnu.org>
332
333 * align.el (align-region): Added a missing name argument.
334
335 2002-02-16 John Wiegley <johnw@gnu.org>
336
337 * eshell/esh-ext.el (eshell-script-interpreter): Allow whitespace
338 after the #! of a shell interpretor specification.
339
340 2002-02-15 Richard M. Stallman <rms@gnu.org>
341
342 * help.el (describe-key-briefly): Make output in INSERT case
343 look just like what is displayed in the normal case.
344
345 2002-02-15 Andreas Schwab <schwab@suse.de>
346
347 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Require
348 non-letter after specials.
349
350 2002-02-15 Eli Zaretskii <eliz@is.elta.co.il>
351
352 * menu-bar.el (menu-bar-tools-menu): Add an item for Calculator.
353
354 2002-02-15 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
355
356 * simple.el (mark-word): Mark more if repeated.
357 * textmodes/paragraphs.el (mark-paragraph): Ditto.
358 (mark-end-of-sentence): Ditto.
359
360 2002-02-15 Per Abrahamsen <abraham@dina.kvl.dk>
361
362 * wid-edit.el (widgetp): Made it more robust.
363
364 2002-02-14 Per Abrahamsen <abraham@dina.kvl.dk>
365
366 * facemenu.el (describe-text-done): New function.
367 (describe-text-mode-map): New variable.
368 (describe-text-mode-hook): New option.
369 (describe-text-mode): New function.
370 (describe-text-widget): New function.
371 (describe-text-sexp): New function.
372 (describe-text-properties): New function.
373 (describe-text-category): New command.
374 (describe-text-at): New command.
375 (facemenu-menu): Replace `list-text-properties-at' with
376 `describe-text-at' in the menu.
377
378 * wid-edit.el (widgetp): New function.
379 * wid-edit.el (widget-keymap, widget-insert, widget-setup):
380 Autoloaded.
381
382 * emacs-lisp/pp.el (pp-to-string): Autoloaded.
383
384 * wid-browse.el: Removed version and x-url keywords.
385
386 2002-02-13 Kim F. Storm <storm@cua.dk>
387
388 * cus-start.el (mode-line-in-non-selected-windows):
389 Allow customization.
390
391 2002-02-13 Richard M. Stallman <rms@gnu.org>
392
393 * textmodes/bibtex.el (bibtex-parse-buffers-stealthily):
394 Tell bibtex-parse-keys to output no progress messages.
395
396 * international/mule-diag.el (list-input-methods):
397 Use help-input-method, not describe-input-method, for button type.
398
399 * register.el (describe-register-1): Access register contents here.
400
401 * textmodes/text-mode.el (text-mode-hook-identify):
402 Restore previous definition. Add to text-mode-hook again.
403
404 * mail/mailabbrev.el (define-mail-abbrev): Define as system abbrev.
405 (mail-abbrev-in-expansion-header-p): Copy the code of mail-header-end
406 to avoid needing sendmail.el at run time.
407
408 * bindings.el (mode-line-minor-mode-keymap): Definition moved up.
409 Initialization moved up too.
410 (mode-line-modes): Use :propertize.
411 (mode-line-mode-menu-keymap): Var deleted.
412 (mode-line-copied-mode-name): Var deleted.
413 (mode-line-mode-name): Function deleted.
414 (mode-line-mode-menu): Each item now shows its mode line lighter.
415 (minor-mode-alist): Don't call propertize here.
416
417 2002-02-12 Eli Zaretskii <eliz@is.elta.co.il>
418
419 * progmodes/pascal.el (pascal-imenu-generic-expression):
420 Add menu-title and fix parentheses.
421
422 2002-02-12 Per Abrahamsen <abraham@dina.kvl.dk>
423
424 * menu-bar.el (menu-bar-options-save): Removed `truncate-lines'.
425 (menu-bar-options-menu): Don't set default value for `truncate-lines'.
426
427 2002-02-12 Per Abrahamsen <abraham@dina.kvl.dk>
428
429 * menu-bar.el (menu-bar-options-save): Only save
430 `current-language-environment' and `default-input-method' when
431 marked as customized.
432
433 * international/mule-cmds.el
434 (setup-specified-language-environment):
435 Mark `current-language-environment' as customized.
436 (set-input-method): Mark `default-input-method' as customized when
437 called interactively.
438 (toggle-input-method): Ditto.
439
440 2002-02-11 Colin Walters <walters@verbum.org>
441
442 * ibuffer.el (ibuffer-switch-format): Supply required argument for
443 `ibuffer-current-formats'.
444
445 2002-02-11 Miles Bader <miles@gnu.org>
446
447 * faces.el (mode-line-inactive): Add dark-background variant.
448
449 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
450
451 * toolbar/tool-bar.el (tool-bar-mode): Removed standard value.
452 * menu-bar.el (menu-bar-mode): Ditto.
453 * cus-edit.el (customize-mark-to-save): Always save variables
454 without a standard value.
455
456 * menu-bar.el (menu-bar-make-toggle): Made it aware of customize.
457 (menu-bar-options-save): Ditto.
458 (menu-bar-showhide-menu): Ditto.
459 (menu-bar-options-menu): Ditto.
460 (menu-bar-scroll-bar-right, menu-bar-scroll-bar-left)
461 (menu-bar-scroll-bar-none): Remove.
462 (menu-bar-showhide-scroll-bar-menu): Use customize aware lambda
463 expressions instead.
464
465 * cus-edit.el (customize-set-value): Return value.
466 (customize-set-variable): Ditto.
467 (customize-save-variable): Ditto.
468 (customize-set-variable): Load dependencies before setting value.
469 (custom-load-symbol): Autoload it.
470 (customize-mark-as-set): New function.
471
472 2002-02-11 Eli Zaretskii <eliz@is.elta.co.il>
473
474 * cus-start.el: Don't warn about "x-*" symbols when building a
475 non-GUI version.
476
477 2002-02-11 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
478
479 * strokes.el (strokes-do-stroke, strokes-do-complex-stroke):
480 Doc fix.
481 (strokes-help): Do not use doubled with-output-to-temp-buffer.
482 Fix the help string.
483 (strokes-prompt-user-save-strokes): Fix typo.
484 (strokes-list-strokes): Use proper exit-action argument for
485 view-buffer. Update copyright notice.
486
487 * international/mule-diag.el: Various doc and message fixes.
488 (non-iso-charset-alist): Add mac-roman. Don't add entries for
489 codepages already present.
490 (list-block-of-chars): Display space for null entries in
491 translation table. Display tab specially.
492 (list-non-iso-charset-chars): Check for null charsets. Use pop
493 for clarity. Don't break 8-bit sets into sections between ranges.
494 (list-charset-chars): Avoid indent-tabs-mode.
495 (describe-char-after): Maybe use the text property for syntax
496 table information. Maybe report char-code-property-table info.
497 Maybe report character's unicode. Tweak printing of list info.
498 (list-input-methods): Add xref buttons.
499 (dump-charsets, dump-codings): Deleted (obsolete).
500 From Dave Love <fx@gnu.org>.
501
502 2002-02-10 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
503
504 * menu-bar.el (menu-bar-showhide-menu): Rename functions for toggling.
505
506 2002-02-10 Michael Kifer <kifer@cs.stonybrook.edu>
507
508 * viper-util.el (viper-read-key-sequence): Fix so it'll read
509 fast key sequences in emacs native mode
510 (viper-events-to-keys): Delete.
511
512 * viper.el (describe-key, describe-key-briefly): Get rid of
513 viper-events-to-keys.
514
515 * ediff-init.el (ediff-has-gutter-support): Steven Turnbull's patch.
516
517 * ediff-wind.el (ediff-setup-control-frame):
518 Use ediff-has-gutter-support.
519
520 * ediff-util.el (ediff-dispose-of-variant-according-to-user):
521 check if buff is alive.
522
523 * ediff.el: Typo in comment.
524
525 2002-02-09 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
526
527 * menu-bar.el (menu-bar-options-save): Take care of
528 line-number-mode and column-number-mode variables.
529 (menu-bar-showhide-menu): New menu-items "Show Line Number" and
530 "Show Column Number" in "Show/Hide" menu.
531
532 2002-02-09 Richard M. Stallman <rms@gnu.org>
533
534 * mail/mailabbrev.el (mail-mode-map): Use eval-after-load to change it.
535
536 2002-02-09 Kim F. Storm <storm@cua.dk>
537
538 * faces.el (mode-line-inactive): New face for mode-line for
539 non-selected windows.
540 (mode-line): Doc fix: Only used for selected window.
541
542 2002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
543
544 * calendar/cal-menu.el (calendar-mode-map): Change the menu item's
545 name to "Insert Diary Entry".
546
547 2002-02-08 Stefan Monnier <monnier@cs.yale.edu>
548
549 * font-lock.el (save-buffer-state): Use restore-buffer-modified-p.
550 (c-font-lock-syntactic-face-function): Accept doxygen-style comments.
551
552 2002-02-08 Richard M. Stallman <rms@gnu.org>
553
554 * textmodes/text-mode.el (text-mode-hook-identify): Define as no-op.
555
556 2002-02-08 Andreas Schwab <schwab@suse.de>
557
558 * calc/calc.el (calcDigit-key): Use minibuffer-prompt-end instead
559 of point-min.
560
561 2002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
562
563 * net/ange-ftp.el (ange-ftp-process-handle-line)
564 (ange-ftp-set-xfer-size): If the file's size is a float, divide
565 by 1024 instead of using ash.
566
567 * international/mule-cmds.el (select-safe-coding-system):
568 State the buffer's name in the message popped in the *Warning* buffer,
569 and make sure the offending buffer is displayed.
570
571 2002-02-07 Markus Rost <rost@math.ohio-state.edu>
572
573 * ffap.el (ffap-newsgroup-p): Test for non-nil symbol-value of htb.
574
575 2002-02-07 Richard M. Stallman <rms@gnu.org>
576
577 * terminal.el (terminal-map): Define [menu-bar] so global def is seen.
578
579 * register.el (list-registers): New command.
580 (describe-register-1): New subroutine, taken out of view-register.
581
582 * emacs-lisp/copyright.el (copyright-regexp):
583 Delete the unibyte copyright symbol; it's redundant.
584 Fix a spazz in the multibyte encoding here.
585
586 2002-02-07 Dave Love <fx@gnu.org>
587
588 * language/cyril-util.el (cyrillic-encode-koi8-r-char)
589 (cyrillic-encode-alternativnyj-char): Get translation tables from
590 symbol properties, not as variables.
591 (standard-display-cyrillic-translit): Include unicodes.
592
593 2002-02-06 Kim F. Storm <storm@cua.dk>
594
595 * help.el (where-is): Report remapped commands.
596
597 * help-fns.el (describe-function-1): Ditto.
598
599 * subr.el (global-set-key, local-set-key): Accept a symbol for the
600 KEY argument (like define-key).
601
602 2002-02-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
603
604 * textmodes/flyspell.el (flyspell-insert-function): Doc fix.
605
606 2002-02-06 Richard M. Stallman <rms@gnu.org>
607
608 * mail/mailabbrev.el: Require sendmail only at compile time.
609 (mail-mode-header-syntax-table): Var deleted.
610 (mail-abbrev-syntax-table): Init to nil, will compute when needed.
611 (sendmail-pre-abbrev-expand-hook): Only temporarily change
612 local-abbrev-table and the syntax table.
613 Compute mail-abbrev-syntax-table if that has not been done.
614
615 * progmodes/compile.el (grep-compute-defaults): Definition moved up.
616
617 * emacs-lisp/debug.el (debugger-frame-offset): Var deleted.
618 (debugger-frame-number): Figure out the offset directly.
619 (debugger-setup-buffer): Don't use debugger-frame-offset.
620 (debugger-frame, debugger-frame-clear): Likewise.
621 (debugger-jump): Don't alter debugger-frame-offset.
622
623 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
624 Replace foo-p as var name with foo-flag, not foo-p-flag.
625
626 * hilit-chg.el (highlight-changes-active-string): Default to +Chg.
627 (highlight-changes-passive-string): Default to -Chg.
628 (highlight-changes-global-modes): Doc fix.
629
630 * dired.el (dired-get-filename): Add /: when appropriate
631 to avoid taking a local name as remote.
632
633 * files.el (file-name-non-special): Add special handling for
634 file-name-sans-versions, file-name-completion, and
635 file-name-all-completions.
636
637 * isearch.el (isearch-update): Don't update display in kbd macro.
638 (isearch-lazy-highlight-new-loop): Do nothing in kbd macro.
639
640 * subr.el (force-mode-line-update): Doc fix.
641
642 * subr.el (atomic-change-group, prepare-change-group)
643 (activate-change-group, accept-change-group, cancel-change-group):
644 New functions.
645
646 * simple.el (undo-get-state, undo-revert-to-state): Fns deleted.
647 (transpose-subr-1): Use atomic-change-group.
648
649 * subr.el (add-minor-mode): Include the mode's lighter string
650 in the minor mode menu item name.
651
652 * mail/rmail.el (rmail-toggle-header): Avoid possibly slow call to
653 rmail-count-screen-lines starting from (point-min).
654
655 * startup.el (use-fancy-splash-screens-p): Need 19 lines,
656 beyond the image height, to use the fancy splash screen.
657
658 * textmodes/text-mode.el (text-mode-hook-identify): Function deleted.
659 (text-mode): Set text-mode-variant here.
660
661 2002-02-06 Eli Zaretskii <eliz@is.elta.co.il>
662
663 * play/pong.el (pong-height): Don't use height that exceeds the
664 frame height.
665 (pong-border-options): Make the border colors slightly more bright.
666
667 * play/gamegrid.el (gamegrid-display-type): Treat any
668 color-capable display as color-x, if display-color-p is fboundp.
669 (gamegrid-make-color-x-face): Don't call gamegrid-color twice.
670 (gamegrid-make-color-tty-face): Use the value of color, not the
671 symbol itself. Don't call gamegrid-color.
672
673 2002-02-05 Eli Zaretskii <eliz@is.elta.co.il>
674
675 * gud.el (gud-refresh): Call recenter only after we are sure we
676 are in the right window.
677
678 2002-02-05 Per Abrahamsen <abraham@dina.kvl.dk>
679
680 * cus-edit.el (customize-mark-to-save): New function.
681 * menu-bar.el (menu-bar-options-save): Rewrote.
682
683 2002-02-05 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
684
685 * cus-start.el (x-use-underline-position-properties):
686 Allow customization.
687
688 2002-02-04 Simon Josefsson <jas@extundo.com>
689
690 * dired.el (dired-load-hook, dired-mode-hook)
691 (dired-before-readin-hook, dired-after-readin-hook): Defcustom.
692
693 2002-02-03 Colin Walters <walters@verbum.org>
694
695 * ibuf-ext.el (ibuffer-filter-format-alist)
696 (ibuffer-cached-filter-formats, ibuffer-compiled-filter-formats):
697 New variables.
698 * ibuffer.el (ibuffer): Remove link; the "home page" for ibuffer
699 is now the Emacs CVS tree.
700 (ibuffer-formats): Doc fix.
701 (ibuffer-active-formats-name, ibuffer-current-formats): New functions.
702 (ibuffer-current-format): Use them.
703 (ibuffer-recompile-formats, ibuffer-check-formats)
704 (ibuffer-switch-format, ibuffer-update-title):
705 Add support for ibuffer-filter-format-alist.
706 (define-ibuffer-column process): Remove unncessary consing.
707
708 * ibuf-macs.el (define-ibuffer-column): Add beginnings of support
709 for a summary column.
710
711 2002-02-03 Andreas Schwab <schwab@suse.de>
712
713 * window.el (save-selected-window): Move macro before first use.
714 (balance-windows): Fix misplaced parenthesis.
715
716 2002-02-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
717
718 * calculator.el (calculator-displayers): Doc fixes.
719
720 2002-02-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
721
722 * menu-bar.el (menu-bar-help-menu): Use different text for tool-tip.
723 (menu-bar-options-save): Save also the value of `display-time-mode'.
724 (showhide-date-time): New function.
725 (menu-bar-showhide-menu): New menu-item "Date and time".
726
727 2002-02-03 Eli Zaretskii <eliz@is.elta.co.il>
728
729 * mail/rmail.el (rmail): Use find-buffer-visiting instead of
730 get-file-buffer to check for rmail buffer existence.
731
732 * term.el (term-emulate-terminal): Extract proper command string
733 which is supplied to term-command-hook.
734
735 2002-02-03 Richard M. Stallman <rms@gnu.org>
736
737 * international/quail.el (quail-help): Don't call help-setup-xref.
738
739 * international/mule-cmds.el (describe-input-method):
740 Call help-setup-xref here.
741 (describe-current-input-method): Doc fix.
742
743 * novice.el (disabled-command-hook): Clarify output text.
744 Indent the paragraph from the command's doc string.
745
746 * dabbrev.el (dabbrev--goto-start-of-abbrev):
747 Exit loop on beginning of field rather than bobp.
748
749 2002-02-02 Eli Zaretskii <eliz@is.elta.co.il>
750
751 * mail/uce.el (uce-reply-to-uce): Prune the headers before copying
752 the message text into the *mail* buffer, and restore the pruned
753 state after that.
754
755 * mail/rmail.el (rmail-redecode-body): Prune the headers before
756 looking for X-Coding-System header, and restore the pruned state
757 before returning.
758
759 2002-02-02 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
760
761 * cus-edit.el (customize-save-variable): Fix typo in prompt.
762
763 These changes integrate new version of flyspell.el from its
764 maintainer, Manuel Serrano:
765
766 * textmodes/flyspell.el (flyspell-issue-message-flag): New user option.
767 (flyspell-mode-on, flyspell-notify-misspell)
768 (flyspell-small-region, flyspell-external-point-words)
769 (flyspell-large-region): Use it
770 (flyspell-before-incorrect-word-string)
771 (flyspell-after-incorrect-word-string): New user options.
772 (make-flyspell-overlay): Use them.
773 (flyspell-version): New function.
774 (flyspell-incorrect-face, flyspell-duplicate-face): Adapt face
775 definitions to use :weight.
776 (flyspell-insert-function): New user option.
777 (flyspell-auto-correct-word, flyspell-correct-word)
778 (flyspell-xemacs-correct): Use it.
779 (flyspell-define-abbrev): New function.
780 (flyspell-auto-correct-word, flyspell-correct-word)
781 (flyspell-xemacs-correct): Use it.
782 (make-flyspell-overlay): Use `evaporate' property.
783 (flyspell-auto-correct-word, flyspell-correct-word): Remove overlay.
784 (flyspell-emacs-popup): Use `session' instead of `accept'.
785 (flyspell-auto-correct-previous-pos): New variable.
786 (flyspell-auto-correct-previous-hook)
787 (flyspell-auto-correct-previous-word): New functions.
788
789 2002-02-02 Eli Zaretskii <eliz@is.elta.co.il>
790
791 * novice.el (enable-command): If Emacs was invoked as "emacs -q",
792 don't alter the user's ~/.emacs.
793 (disable-command): If user-init-file is nil or does not exist,
794 default to "~/.emacs" (~/_emacs on DOS and, maybe, Windows).
795 But don't alter the init file if Emacs was invoked as "emacs -q"
796
797 2002-02-01 Stefan Monnier <monnier@cs.yale.edu>
798
799 * mail/sendmail.el (mail-mode): Undo half of last change.
800
801 * indent.el (indent-for-tab-command): Remove spurious code.
802
803 * hi-lock.el (hi-lock-find-patterns): Save restriction.
804
805 2002-02-01 Eli Zaretskii <eliz@is.elta.co.il>
806
807 * calendar/time-date.el: Moved from lisp/gnus.
808
809 * calendar/parse-time.el: Ditto.
810
811 2002-01-31 Richard M. Stallman <rms@gnu.org>
812
813 * international/iso-acc.el (iso-languages): Fix ", " in French.
814
815 * cus-start.el (history-length): Specify customization for it.
816
817 * emacs-lisp/debug.el (debugger-setup-buffer):
818 When an eval-buffer frame was reading from a buffer,
819 insert indication of the buffer position.
820 (debugger-frame-number): Ignore ;;;-comment lines in backtrace.
821 (debugger-frame-clear, debugger-frame): Error on non-frame line.
822
823 * simple.el (shell-command-on-region): Err if no mark
824 before reading the command string.
825
826 * hl-line.el (hl-line-highlight, hl-line-unhighlight):
827 Definitions moved down after hl-line-mode var's definition.
828
829 * hilit-chg.el (hilit-chg-fixup): Don't alter overlay if not ours.
830 (hilit-chg-set-face-on-change): Rename arg.
831 (hilit-chg-make-ov): Detect error earlier.
832
833 * ediff-hook.el: Delete autoload cookies.
834
835 * comint.el (comint-scroll-show-maximum-output): Default is t.
836
837 * emacs-lisp/bytecomp.el (batch-byte-compile): New arg noforce.
838 (batch-byte-compile-if-not-done): New function.
839
840 * Makefile.in (compile): New target.
841 (compile-always): Renamed from compile-files.
842 (compile-after-backup): Renamed from compile.
843 (bootstrap): Depend on compile-always, not compile-files.
844
845 * emulation/pc-select.el (pc-select-save-and-set-mode):
846 Properly use MODE-VAR.
847
848 2002-01-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
849
850 * menu-bar.el (menu-bar-help-menu): Change menu-item "Show Emacs
851 Version" to "About Emacs".
852 (menu-bar-options-save): Add `default-frame-alist'
853 to saved variables.
854 (menu-bar-showhide-scroll-bar-menu): Use frame-parameters instead
855 of the variable `scroll-bar-mode'.
856
857 * startup.el (normal-splash-screen, display-splash-screen):
858 New functions (separated from command-line-1).
859 (command-line-1): Use them.
860
861 2002-01-28 Eli Zaretskii <eliz@is.elta.co.il>
862
863 * calendar/calendar.el (generate-calendar-month): Doc fix.
864
865 2002-01-27 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
866
867 * time.el (display-time-mail-directory): New option.
868 (display-time-mail-function): Update doc-string.
869 (display-time-mail-icon): Use XPM image when available.
870 (display-time-string-forms): Use more descriptive text as
871 help-echo property.
872 (display-time-mail-check-directory): New function.
873 (display-time-update): Use it.
874
875 * menu-bar.el (menu-bar-showhide-scroll-bar-menu):
876 Quote `window-system'.
877
878 * tmm.el (tmm-get-keymap): Honour :visible in `menu-item'.
879 Add Keywords header. Update Commentary section.
880 Update copyright notice.
881
882 * menu-bar.el (menu-bar-scroll-bar-right)
883 (menu-bar-scroll-bar-left, menu-bar-scroll-bar-none)
884 (showhide-menu-bar): New functions.
885 (menu-bar-showhide-menu): New submenu "Show/Hide".
886 (menu-bar-showhide-scroll-bar-menu): "Scroll-bar" submenu of
887 "Show/Hide".
888 Update copyright notice.
889
890 2002-01-27 Eli Zaretskii <eliz@is.elta.co.il>
891
892 * lazy-lock.el (lazy-lock-mode): Add a reference to jit-lock.
893
894 2002-01-26 Evgeny Roubinchtein <evgenyr@cs.washington.edu>
895
896 * pc-select.el (pc-selection-mode-hook)
897 (pc-select-saved-settings-alist, pc-select-map)
898 (pc-select-saved-global-map, pc-select-key-bindings-alist)
899 (pc-select-default-key-bindings, pc-select-extra-key-bindings)
900 (pc-select-meta-moves-sexps-key-bindings)
901 (pc-select-tty-key-bindings, pc-select-old-M-delete-binding):
902 New variables.
903 (pc-select-define-keys, pc-select-restore-keys): New functions.
904 (pc-select-add-to-alist, pc-select-save-and-set-var)
905 (pc-select-save-and-set-mode, pc-select-restore-var)
906 (pc-select-restore-mode): New macros.
907 (pc-selection-mode): Completely rewrote the body of the function;
908 the main goal was to make pc-selection-mode "turn-off"-able, like
909 other minor modes. Use define-minore-mode instead of just a
910 defun. Store the key bindings into four alists:
911 pc-select-default-key-bindings, pc-select-extra-key-bindings,
912 pc-select-meta-moves-sexps-key-bindings, and
913 pc-select-tty-key-bindings; then have the pc-select-define-keys
914 function walk those alists instead of calling define-key
915 repeatedly. When the mode is turned on, set the
916 keybindings in global-map and remember the old keybindings; when
917 the mode is turned off, restore the previously-saved keybindings.
918 (pc-selection-mode defcustom): Reflect the fact that the mode is
919 now "turn-off"-able.
920
921 2002-01-26 Eli Zaretskii <eliz@is.elta.co.il>
922
923 * eshell/esh-cmd.el (eshell-eval-command): If eshell-resume-eval
924 returns t, don't treat that as an error.
925
926 2002-01-25 Jason Rumney <jasonr@gnu.org>
927
928 * faces.el (face-font-registry-alternatives) [windows-nt]:
929 Add ms-oemlatin as an alternative for iso8859-1.
930
931 2002-01-25 Stefan Monnier <monnier@cs.yale.edu>
932
933 * pcvs.el (cvs-reread-cvsrc): Distinguish between an empty list of
934 args and the absence of an entry. Don't add -f each time.
935
936 2002-01-25 Eli Zaretskii <eliz@is.elta.co.il>
937
938 * emacs-lisp/cl-seq.el (mismatch): Doc fix.
939
940 Support for more than 8 colors on character terminals:
941
942 * term/rxvt.el: New file.
943
944 * Makefile.in (DONTCOMPILE): Remove term/xterm.el.
945
946 * term/xterm.el (xterm-standard-colors): New variable.
947 (xterm-rgb-convert-to-16bit, xterm-register-default-colors)
948 (xterm-rxvt-set-background-mode): New functions.
949 (toplevel): Call xterm-register-default-colors,
950 xterm-rxvt-set-background-mode, and tty-set-up-initial-frame-faces.
951 Add support for more keys from xterm's terminfo entry.
952
953 * facemenu.el (list-colors-display): If the argument is nil, don't
954 show more colors that the number returned by display-color-cells.
955
956 * term/pc-win.el (msdos-color-values): Reverse the order of the
957 colors, since tty-color-define now preserves the registration order.
958
959 * w32-fns.el (w32-tty-standard-colors): Reverse the order.
960
961 * term/tty-colors.el (tty-standard-colors): Reverse the order.
962 (tty-register-default-colors): New function; code moved from
963 startup.el's command-line.
964 (tty-modify-color-alist): Use nconc instead of cons, to preserve
965 the order the colors where registered.
966
967 * frame.el (display-color-cells): Use tty-display-color-cells.
968
969 * startup.el (command-line): Call tty-register-default-colors.
970
971 2002-01-25 Richard M. Stallman <rms@gnu.org>
972
973 * subr.el (remove): Doc fix.
974
975 2002-01-24 Richard M. Stallman <rms@gnu.org>
976
977 * progmodes/compile.el (compilation-handle-exit):
978 Add a compilation-handle-exit property to the "finished" message.
979 (compilation-parse-errors): Stop parsing when that property is seen.
980
981 * subr.el (substring-no-properties): New function.
982 (copy-without-properties): Function deleted.
983
984 * term/x-win.el (x-handle-geometry): Put sizes on both
985 initial-frame-alist and default-frame-alist.
986
987 * cus-edit.el (custom-save-all): Bind file-precious-flag to t
988 for saving .emacs.
989
990 * files.el (basic-save-buffer-2): Ignore file-error in delete-file.
991
992 * calendar/calendar.el (generate-calendar-month): Doc fix.
993
994 2002-01-23 Richard M. Stallman <rms@gnu.org>
995
996 * play/tetris.el (tetris): New defgroup.
997 (tetris-use-glyphs, tetris-use-color, tetris-draw-border-with-glyphs)
998 (tetris-default-tick-period): Convert to defcustom.
999 Added * in docstring to indicate user variable.
1000 (tetris-update-speed-function, tetris-mode-hook, tetris-tty-colors)
1001 (tetris-x-colors, tetris-buffer-name, tetris-buffer-width)
1002 (tetris-buffer-height, tetris-width, tetris-height)
1003 (tetris-top-left-x, tetris-top-left-y): Convert to defcustom.
1004
1005 2002-01-22 Stefan Monnier <monnier@cs.yale.edu>
1006
1007 * mail/sendmail.el (mail-mode): ">" is not a supercite-style prefix
1008 and is already matched by adaptive-fill-regexp.
1009
1010 2002-01-22 Richard M. Stallman <rms@gnu.org>
1011
1012 * bindings.el (mode-line-copied-mode-name): New variable.
1013 (mode-line-mode-name): Don't modify mode-name itself!
1014 Instead, make a copy and reuse it.
1015
1016 * subr.el (copy-without-properties): New function.
1017
1018 * progmodes/sh-script.el (sh-set-shell): Doc fix.
1019
1020 * net/ange-ftp.el (ange-ftp-canonize-filename): Avoid duplicate
1021 slash if DIR is just slash.
1022
1023 * progmodes/perl-mode.el (perl-mode-abbrev-table): Restore definition.
1024
1025 2002-01-21 Richard M. Stallman <rms@gnu.org>
1026
1027 * emacs-lisp/copyright.el (copyright-regexp): Fix previous change.
1028
1029 * net/ange-ftp.el (ange-ftp-bs2000-posix-hook-installed):
1030 Move defvar up.
1031
1032 * textmodes/ispell.el (ispell-help): Clean up echo area if user quits.
1033
1034 * ibuffer.el: Don't require ibuf-ext at load time.
1035 (ibuffer): Require ibuf-ext here.
1036
1037 2002-01-21 Francesco Potorti` <pot@gnu.org>
1038
1039 * generic-x.el (apache-conf-generic-mode): Highlight the first
1040 word in a line even if preceded by blanks.
1041
1042 2002-01-21 Richard M. Stallman <rms@gnu.org>
1043
1044 * window.el (window-body-height): Handle minibuffer window specially.
1045 Otherwise, don't return less than 1.
1046
1047 2002-01-20 Thomas Dorner <Thomas.Dorner@start.de>
1048
1049 * ange-ftp.el: Added support for BS2000, and for raw ftp
1050 login commands (needed in some circumstances).
1051 (ange-ftp-raw-login): New custom var.
1052 (ange-ftp-normal-login): Perform login with raw ftp commands, if
1053 ange-ftp-raw-login is set and account password is needed.
1054 (ange-ftp-host-type, ange-ftp-guess-host-type): Handle BS2000 hosts.
1055 (ange-ftp-bs2000-filename-pubset-regexp)
1056 (ange-ftp-bs2000-filename-username-regexp)
1057 (ange-ftp-bs2000-filename-prefix-regexp)
1058 (ange-ftp-bs2000-name-template): New consts.
1059 (ange-ftp-bs2000-short-filename-regexp)
1060 (ange-ftp-bs2000-fix-name-regexp-reverse)
1061 (ange-ftp-bs2000-fix-name-regexp): New consts.
1062 (ange-ftp-bs2000-special-prefix): New custom var.
1063 (ange-ftp-fix-name-for-bs2000)
1064 (ange-ftp-fix-dir-name-for-bs2000): New funs.
1065 (ange-ftp-bs2000-host-regexp, ange-ftp-bs2000-posix-host-regexp)
1066 (ange-ftp-bs2000-posix-hook-installed): New vars.
1067 (ange-ftp-parse-bs2000-filename, ange-ftp-parse-bs2000-listing)
1068 (ange-ftp-bs2000-host, ange-ftp-bs2000-posix-host)
1069 (ange-ftp-add-bs2000-host, ange-ftp-add-bs2000-posix-host): New funs.
1070 (ange-ftp-bs2000-filename-regexp): New const.
1071 (ange-ftp-bs2000-additional-pubsets): New custom var.
1072 (ange-ftp-bs2000-cd-to-posix): New fun.
1073
1074 2002-01-20 Colin Walters <walters@verbum.org>
1075
1076 * ibuffer.el: (toplevel) Require `ibuf-ext', which is now compiled
1077 with `byte-compile-dynamic'.
1078 (ibuffer-default-directory, toplevel): Doc files.
1079
1080 2002-01-20 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1081
1082 * tempo.el (tempo-define-template): Doc fix.
1083
1084 * scroll-bar.el (scroll-bar-mode): Make argument optional.
1085
1086 2002-01-20 Jason Rumney <jasonr@gnu.org>
1087
1088 * w32-vars.el: New file.
1089
1090 * loadup.el [windows-nt]: Load it.
1091
1092 * w32-fns.el, term/w32-win.el: Move user variables to w32-vars.el
1093 and make them defcustoms.
1094
1095 * term/w32-win.el (mouse-set-font): Use w32-list-proportional-fonts.
1096
1097 2002-01-19 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1098
1099 * language/tibet-util.el (tibetan-decompose-region)
1100 (tibetan-decompose-string): Fix typo in docstring.
1101
1102 * ruler-mode.el (ruler-mode): New keyword. Fix :version.
1103
1104 2002-01-18 Richard M. Stallman <rms@gnu.org>
1105
1106 * comint.el (comint-redirect-send-command-to-process):
1107 Restore previous current buffer.
1108
1109 * window.el (window-body-height): New function.
1110
1111 2002-01-18 Zoltan Kemenczy <kemenczy@rogers.com>
1112
1113 * gud.el (easy-mmode-defmap): Enable "Up Stack", "Down Stack", and
1114 "Finish Function" menu map entries for jdb mode.
1115 (gud-jdb-use-classpath): New customization variable.
1116 (gud-jdb-command-name): Add customization.
1117 (gud-jdb-classpath, gud-marker-acc-max-length): New variables.
1118 (gud-jdb-classpath-string): New variable.
1119 (gud-jdb-source-files, gud-jdb-class-source-alist): Add doc strings.
1120 (gud-jdb-build-source-files-list): Likewise.
1121 (gud-jdb-massage-args): Record any command argument classpath
1122 string in `gud-jdb-classpath-string'.
1123 (gud-jdb-lowest-stack-level): New function, finds bottom of current
1124 java call stack in jdb output.
1125 (gud-jdb-find-source-using-classpath, gud-jdb-find-source)
1126 (gud-jdb-parse-classpath-string): New functions.
1127 (gud-jdb-marker-filter): Search/detect classpath information in
1128 jdb's output. marker regexp updated to match oldjdb and jdb output
1129 formats. Expand search for source files to include new/old methods
1130 using new functions above. Do not allow `gud-marker-acc' to grow
1131 without bound.
1132 (jdb): Set classpath information (if available) as jdb is started.
1133 Change `gud-break' and `gud-remove'
1134 to use new %c ("class") escape in format strings. Add
1135 `gud-finish', `gud-up', `gud-down' command string functions, and
1136 add them to the local menu map. Update `comint-prompt-regexp' for
1137 jdb and oldjdb. If attaching to an already running java VM and
1138 configured to use classpath, send command to query for classpath,
1139 else use previous method for finding and parsing java
1140 sources. Set `gud-jdb-find-source' function accordingly.
1141 (gud-mode): Doc fix.
1142 (gud-format-command): Add support for new %c ("class") escape.
1143 (gud-find-class): New function in support of %c escape.
1144
1145 2002-01-17 Richard M. Stallman <rms@gnu.org>
1146
1147 * ibuf-ext.el: Enable byte-compile-dynamic.
1148
1149 2002-01-17 Jason Rumney <jasonr@gnu.org>
1150
1151 * term/w32-win.el: Restore conditional require of fontset.
1152
1153 2002-01-16 Richard M. Stallman <rms@gnu.org>
1154
1155 * mouse.el (mouse-drag-region-1): Renamed from mouse-drag-region,
1156 more or less.
1157 (mouse-drag-region): New function. For a click in the echo area,
1158 show *Messages*.
1159
1160 * ibuf-ext.el: Delete the autoloads for functions defined with
1161 ibuffer-specific commands.
1162
1163 * help.el (describe-distribution): Really call view-file.
1164
1165 * net/ange-ftp.el (ange-ftp-passive-mode): New arg PROC.
1166 (ange-ftp-get-process): Pass that arg.
1167
1168 * comint.el (comint-simple-send): Fix previous change.
1169
1170 * net/telnet.el (telnet-simple-send): Fix previous change.
1171
1172 * progmodes/sql.el (sql-escape-newlines-and-send)
1173 (sql-query-placeholders-and-send): Fix previous change.
1174
1175 2002-01-16 Colin Walters <walters@verbum.org>
1176
1177 * ibuf-ext.el, ibuf-macs.el, ibuffer.el (toplevel): Remove X-RCS,
1178 URL, Compatibility headers. Update copyright notice.
1179 * ibuf-macs.el (toplevel): Require `cl' when compiling.
1180
1181 2002-01-16 Andrew Choi <akochoi@cse.cuhk.edu.hk>
1182
1183 * startup.el (command-line): Set EOL mnemonics for the Mac.
1184
1185 2002-01-16 Andreas Schwab <schwab@suse.de>
1186
1187 * mail/feedmail.el (feedmail): Fix :link spec.
1188
1189 2002-01-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1190
1191 * net/ldap.el (ldap-ldapsearch-prog): Default to OpenLDAP version
1192 2 ldapsearch.
1193
1194 * net/eudc.el: New maintainer. Change author's address.
1195 (eudc-pre-select-window-configuration, eudc-insertion-marker):
1196 Variables removed.
1197 (eudc-insert-selected): Function removed.
1198 (eudc-select): Reimplemented.
1199 (eudc-expand-inline): Delete the strings only after its expansion
1200 is chosen not before.
1201
1202 * net/eudcb-ph.el (eudc-ph-open-session): Remove XEmacs case.
1203 Minor coding style fixes.
1204
1205 * net/eudcb-ldap.el: New maintainer. Change author's address.
1206 (eudc-attribute-display-method-alist): Display mail with
1207 eudc-display-mail.
1208
1209 * net/eudcb-bbdb.el, net/eudc-export.el, net/eudc-hotlist.el,
1210 * net/eudc-vars.el: New maintainer. Change author's address.
1211
1212 * net/eudc-bob.el: New maintainer. Change author's address.
1213 (eudc-bob-mail-keymap): New keymap for e-mail addresses.
1214 (eudc-display-mail): New function.
1215 (eudc-bob-play-sound-at-point): Remove XEmacs case.
1216
1217 2002-01-15 Richard M. Stallman <rms@gnu.org>
1218
1219 * emacs-lisp/autoload.el (make-autoload):
1220 Don't handle define-ibuffer-column, define-ibuffer-filter,
1221 define-ibuffer-sorter, and define-ibuffer-op.
1222
1223 2002-01-14 Richard M. Stallman <rms@gnu.org>
1224
1225 * calendar/calendar.el (diary-date-forms): Doc fix.
1226
1227 2002-01-14 Eli Zaretskii <eliz@is.elta.co.il>
1228
1229 * startup.el (command-line): Register the default tty colors even
1230 if the terminal doesn't seem to support colors.
1231 <tty-long-option-alist>: New option --color.
1232 (tty-handle-args): Parse the --color arg.
1233
1234 * term/tty-colors.el (tty-color-mode-alist): New variable.
1235
1236 2002-01-14 Stefan Monnier <monnier@cs.yale.edu>
1237
1238 * net/ange-ftp.el (ange-ftp-root-dir-p): New function.
1239 (ange-ftp-file-name-all-completions, ange-ftp-file-name-completion):
1240 Use it.
1241 (ange-ftp-hook-function): Preserve match-data.
1242 (ange-ftp-insert-directory): Typo.
1243 (ange-ftp-shell-command): Check if regexp matched.
1244
1245 2002-01-13 Richard M. Stallman <rms@gnu.org>
1246
1247 * international/mule-cmds.el: help-map bindings moved to help.el.
1248
1249 * help.el (view-echo-area-messages): New function.
1250 (help-map): Add `e' binding. Delete obsolete `d' binding.
1251 Change old Info bindings C-f, C-k and C-i to F, K, S.
1252 Move view-emacs-FAQ from F to C-f.
1253 Move view-emacs-problems from P to C-e.
1254 Bindings moved here from mule-cmds.el.
1255 C-l binding for describe-language-environment deleted
1256 (help-for-help): Update for all these changes.
1257
1258 * emacs-lisp/copyright.el (copyright-regexp): Make (C) optional.
1259
1260 2002-01-13 Dave Love <fx@gnu.org>
1261
1262 * emacs-lisp/copyright.el: Doc fixes.
1263 (copyright-regexp): Add Latin-9 copyright sign.
1264 Match comment delimiters in year lists.
1265 (copyright-current-year): Initialize to load-time year.
1266
1267 2002-01-13 Andreas Schwab <schwab@suse.de>
1268
1269 * dired-aux.el (dired-do-shell-command): Doc fix.
1270
1271 2002-01-13 Jan Djarv <Jan.Djarv@mbox200.swipnet.se>
1272
1273 * startup.el (command-line-x-option-alist): New options "-fs",
1274 "-fw", "-fh", "--fullscreen", "--fullwidth", and "--fullheight".
1275
1276 * term/x-win.el (x-handle-initial-switch): New function.
1277
1278 2002-01-13 Colin Walters <walters@debian.org>
1279
1280 * emacs-lisp/autoload.el (make-autoload): Handle
1281 define-ibuffer-column, define-ibuffer-filter,
1282 define-ibuffer-sorter, and define-ibuffer-op.
1283
1284 * emacs-lisp/lisp-mode.el (toplevel): Ditto.
1285
1286 * ibuffer.el, ibuf-ext.el, ibuf-macs.el: New files.
1287
1288 2002-01-12 Richard M. Stallman <rms@gnu.org>
1289
1290 * net/browse-url.el (browse-url-grail):
1291 Use browse-url-maybe-new-window.
1292
1293 * net/telnet.el (telnet-simple-send): Handle
1294 comint-input-sender-no-newline like comint-simple-send.
1295
1296 * progmodes/sql.el (sql-query-placeholders-and-send): Handle
1297 comint-input-sender-no-newline like comint-simple-send.
1298 (sql-escape-newlines-and-send): Likewise.
1299
1300 * comint.el (comint-input-sender): Doc fix.
1301 (comint-input-sender-no-newline): New variable.
1302 (comint-simple-send): If comint-input-sender-no-newline,
1303 don't output newline, but maybe send eof.
1304 (comint-send-input): New arg NO-NEWLINE.
1305 (comint-send-eof): Call comint-send-eof with NO-NEWLINE.
1306
1307 2002-01-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1308
1309 * textmodes/flyspell.el (flyspell-check-pre-word-p): Prevent
1310 delaying when executing keyboard macros.
1311
1312 2002-01-12 Richard M. Stallman <rms@gnu.org>
1313
1314 * simple.el (line-move): If we can't move enough lines,
1315 go to beginning or end of line.
1316
1317 * help-mode.el (help-xref-go-back): Restore POSITION in proper buffer
1318 and proper window.
1319
1320 * help.el (describe-mode): Call help-setup-xref in the help buffer.
1321 Switch buffers only after calling `help-buffer'.
1322
1323 * dired-aux.el (dired-shell-stuff-it): Substitute for * or ?
1324 only when they are surrounded by whitespace.
1325 Use dired-mark-separator when adding one file name to a command.
1326 (dired-do-shell-command): Verify that * is surrounded by whitespace.
1327 Ask for confirmation if * or ? is not surrounded by whitespace.
1328 (dired-bunch-files): Re-reverse the partial file list when it is used.
1329
1330 2002-01-12 Richard M. Stallman <rms@gnu.org>
1331
1332 * comint.el (comint-dynamic-list-completions): Repeating the command
1333 after displaying a completion list scrolls the list.
1334
1335 2002-01-12 Eli Zaretskii <eliz@is.elta.co.il>
1336
1337 * files.el (find-file-noselect): Don't consider a buffer as
1338 visiting a file literally if it is in hexl-mode.
1339
1340 * faces.el (minibuffer-prompt): A better face definition for MS-DOS.
1341
1342 2002-01-11 Richard M. Stallman <rms@gnu.org>
1343
1344 * startup.el (initial-scratch-message): Fix custom type, add group.
1345
1346 * mail/rmail.el (rmail-decode-babyl-format): Disable undo
1347 around the decode-coding-region call.
1348
1349 * emacs-lisp/lisp.el (lisp-complete-symbol): Repeating the command
1350 after displaying a completion list scrolls the list.
1351
1352 2002-01-11 Eli Zaretskii <eliz@is.elta.co.il>
1353
1354 * version.el (emacs-version): Bump to 21.2.50.
1355
1356 2002-01-10 Thien-Thi Nguyen <ttn@giblet.glug.org>
1357
1358 * play/zone.el (zone-timeout): New var.
1359 (zone-hiding-modeline): New macro.
1360 (zone-call): New func.
1361
1362 (zone): Init `modeline-hidden-level' symbol property.
1363 Use `zone-call' instead of `funcall'.
1364
1365 (zone-pgm-whack-chars): Use `make-string' (fix bug introduced in 2001-10-26T20:11:25Z!monnier@iro.umontreal.ca).
1366
1367 (zone-pgm-stress): Use `zone-hiding-modeline'.
1368
1369 (zone-pgm-stress-destress): New zone program.
1370
1371 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
1372
1373 * faces.el (minibuffer-prompt): Special face definition for MS-DOS.
1374
1375 2002-01-09 Richard M. Stallman <rms@gnu.org>
1376
1377 * startup.el (fancy-splash-screens): Set tab-width in correct buffer.
1378
1379 2002-01-09 Michael Kifer <kifer@cs.stonybrook.edu>
1380
1381 * viper.el (viper-set-hooks): Zap viper-unfriendly bindings in
1382 flyspell-mouse-map.
1383
1384 2002-01-08 Richard M. Stallman <rms@gnu.org>
1385
1386 * emacs-lisp/regexp-opt.el (regexp-opt): Bind max-specpdl-size.
1387
1388 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Fix custom type.
1389
1390 * textmodes/flyspell.el (flyspell-mode-line-string): Fix custom type.
1391
1392 2002-01-08 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1393
1394 * progmodes/ada-mode.el (ada-initialize-properties, ada-mode):
1395 Do not use make-local-hook.
1396
1397 2002-01-08 Eli Zaretskii <eliz@is.elta.co.il>
1398
1399 * international/quail.el (quail-start-translation)
1400 (quail-start-conversion): Bind last-command-event, last-command,
1401 and this-command in the first let. This fixes the change from
1402 2000-08-30.
1403
1404 2002-01-08 Michael Kifer <kifer@cs.stonybrook.edu>
1405
1406 * ediff-hook.el: Add an autoload cookie.
1407
1408 2002-01-08 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1409
1410 * net/eudcb-ph.el, net/ldap.el: New maintainer. New e-mail
1411 address of the author.
1412
1413 2002-01-08 Richard M. Stallman <rms@gnu.org>
1414
1415 * replace.el (occur-mode-goto-occurrence-other-window): New command.
1416 (occur-mode-map): Bind `o' to that.
1417
1418 2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
1419
1420 * viper-init.el (viper-cond-compile-for-xemacs-or-emacs):
1421 new macro that replaces viper-emacs-p and viper-xemacs-p in many
1422 cases. Used to reduce the number of warnings.
1423
1424 * viper-cmd.el: Use viper-cond-compile-for-xemacs-or-emacs.
1425 (viper-standard-value): Move here from viper.el.
1426 (viper-set-unread-command-events): Move to viper-util.el
1427 (viper-check-minibuffer-overlay): Make sure
1428 viper-minibuffer-overlay is moved to cover the entire input field.
1429
1430 * viper-util.el: use viper-cond-compile-for-xemacs-or-emacs.
1431 (viper-read-key-sequence, viper-set-unread-command-events)
1432 (viper-char-symbol-sequence-p, viper-char-array-p): Moved here.
1433
1434 * viper-ex.el: Use viper-cond-compile-for-xemacs-or-emacs.
1435
1436 * viper-keym.el: Use viper-cond-compile-for-xemacs-or-emacs.
1437
1438 * viper-mous.el: Use viper-cond-compile-for-xemacs-or-emacs.
1439
1440 * viper-macs.el (viper-char-array-p, viper-char-symbol-sequence-p)
1441 (viper-event-vector-p): Move to viper-util.el
1442
1443 * viper.el (viper-standard-value): Move to viper-cmd.el.
1444 Use viper-cond-compile-for-xemacs-or-emacs.
1445
1446 * ediff-help.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1447
1448 * ediff-hook.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1449
1450 * ediff-init.el (ediff-cond-compile-for-xemacs-or-emacs):
1451 New macro designed to be used in many places where ediff-emacs-p or
1452 ediff-xemacs-p was previously used. Reduces the number of warnings.
1453 Use ediff-cond-compile-for-xemacs-or-emacs in many places in lieu
1454 of ediff-xemacs-p.
1455 (ediff-make-current-diff-overlay, ediff-highlight-diff-in-one-buffer)
1456 (ediff-convert-fine-diffs-to-overlays, ediff-empty-diff-region-p)
1457 (ediff-whitespace-diff-region-p, ediff-get-region-contents):
1458 Move to ediff-util.el.
1459 (ediff-event-key): Moved here.
1460
1461 * ediff-merge.el: Got rid of unreferenced variables.
1462
1463 * ediff-mult.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1464
1465 * ediff-util.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1466 (ediff-cleanup-mess): Improve the way windows are set up after
1467 quitting ediff.
1468 (ediff-janitor): Use ediff-dispose-of-variant-according-to-user.
1469 (ediff-dispose-of-variant-according-to-user): New function
1470 designed to be smarter and also understands indirect buffers.
1471 (ediff-highlight-diff-in-one-buffer)
1472 (ediff-unhighlight-diff-in-one-buffer)
1473 (ediff-unhighlight-diffs-totally-in-one-buffer)
1474 (ediff-highlight-diff, ediff-highlight-diff)
1475 (ediff-unhighlight-diff, ediff-unhighlight-diffs-totally)
1476 (ediff-empty-diff-region-p, ediff-whitespace-diff-region-p)
1477 (ediff-get-region-contents, ediff-make-current-diff-overlay):
1478 Moved here.
1479 (ediff-format-bindings-of): New function by Hannu Koivisto
1480 <azure@iki.fi>.
1481 (ediff-setup): Make sure the merge buffer is always widened and
1482 modifiable.
1483 (ediff-write-merge-buffer-and-maybe-kill): Refuse to write the
1484 result of a merge into a file visited by another buffer.
1485 (ediff-arrange-autosave-in-merge-jobs): Check if the merge file
1486 is visited by another buffer and ask to save/delete that buffer.
1487 (ediff-verify-file-merge-buffer): New function to do the above.
1488
1489 * ediff-vers.el: Load ediff-init.el at compile time.
1490
1491 * ediff-wind.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1492
1493 * ediff.el (ediff-windows, ediff-regions-wordwise)
1494 (ediff-regions-linewise): Use indirect buffers to improve
1495 robustness and make it possible to compare regions of the same
1496 buffer (even overlapping regions).
1497 (ediff-clone-buffer-for-region-comparison)
1498 (ediff-clone-buffer-for-window-comparison): New functions.
1499 (ediff-files-internal): Refuse to compare identical files.
1500 (ediff-regions-internal): Get rid of the warning about comparing
1501 regions of the same buffer.
1502
1503 * ediff-diff.el (ediff-convert-fine-diffs-to-overlays): Moved here.
1504 Plus the following fixes courtesy of Dave Love: Doc fixes.
1505 (ediff-word-1): Use word class and move - to the
1506 front per regexp documentation.
1507 (ediff-wordify): Bind forward-word-function outside loop.
1508 (ediff-copy-to-buffer): Use insert-buffer-substring rather than
1509 consing buffer contents.
1510 (ediff-goto-word): Move syntax table setting outside loop.
1511
1512 2002-01-07 Richard M. Stallman <rms@gnu.org>
1513
1514 * dired.el (dired-copy-filename-as-kill): Call kill-append
1515 if following a kill command.
1516
1517 * help-fns.el (describe-variable, describe-function):
1518 Do save-excursion.
1519
1520 2002-01-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1521
1522 * net/ldap.el (ldap-search-internal): Skip error message from
1523 ldapsearch. Allow listing attribute names only. Do not open
1524 non-existent files.
1525
1526 * net/eudcb-ldap.el (eudc-ldap-get-field-list): Do not try to
1527 call non-existent function.
1528
1529 * net/eudc.el (top-level): Revert previous change.
1530
1531 * net/net-utils.el (nslookup-font-lock-keywords): Defvar font-lock
1532 variables to prevent warning from byte-compiler.
1533
1534 * net/eudc.el (top-level): Use eudc-xemacs-p instead of
1535 string-match on emacs-version again.
1536
1537 * enriched.el (enriched-make-annotation): Fix the change from
1538 2002-01-05.
1539 (enriched-handle-display-prop): Return proper values.
1540
1541 * net/eudcb-ldap.el (eudc-attribute-display-method-alist): Use
1542 proper attribute name labeledUri instead of deprecated labeledUrl.
1543
1544 2002-01-05 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1545
1546 * net/eudc-hotlist.el (eudc-edit-hotlist): Avoid error when
1547 editing an empty hotlist.
1548
1549 * net/ldap.el (ldap-search-internal): Make the buffer unibyte.
1550 Use buffer-string instead of buffer-substring for the whole
1551 buffer.
1552
1553 * net/eudc-vars.el (eudc-external-viewers): Do not use xv, it is
1554 not free.
1555
1556 * net/eudc-bob.el (eudc-bob-can-display-inline-images)
1557 (eudc-bob-display-jpeg): Use fboundp instead of boundp.
1558 (eudc-bob-save-object): Make the buffer unibyte.
1559 (eudc-bob-generic-keymap): Add new keybinding `!' to pipe the
1560 object to external program.
1561
1562 2002-01-05 Andre Spiegel <spiegel@gnu.org>
1563
1564 * vc.el (vc-branch-part): Return nil if there's no `.'
1565 (vc-default-previous-version): Renamed from vc-previous-version.
1566 New args BACKEND and FILE. Return nil for revision numbers
1567 without a `.'
1568 (vc-version-diff): Call vc-BACKEND-previous-version.
1569 (vc-steal-lock): Steal lock before composing mail, so that no mail
1570 is sent when the stealing goes wrong. And we'll actually see the
1571 error in that case now.
1572 (vc-finish-steal): Removed.
1573
1574 * vc-rcs.el (vc-rcs-steal-lock): Do a real checkout after stealing
1575 the lock, so that we see expanded headers.
1576 (vc-rcs-trunk-p, vc-rcs-branch-part, vc-rcs-branch-p,
1577 vc-rcs-minor-part, vc-rcs-previous-version): Removed. These are
1578 available from vc.el. Updated all callers.
1579
1580 2002-01-05 Richard M. Stallman <rms@gnu.org>
1581
1582 * enriched.el (enriched-make-annotation): Doc fix.
1583
1584 * format.el (format-replace-strings, format-subtract-regions)
1585 (format-annotate-region, format-annotate-location)
1586 (format-annotate-atomic-property-change)
1587 (format-annotate-single-property-change): Doc fixes.
1588
1589 2002-01-05 Jason Rumney <jasonr@gnu.org>
1590
1591 * term/w32-win.el: Require fontset unconditionally.
1592 (w32-handle-scroll-bar-event): Remove.
1593
1594 2002-01-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
1595
1596 * emacs-lisp/copyright.el (copyright-regexp): Allow multi-line
1597 copyrights to be updated.
1598
1599 2002-01-04 Eli Zaretskii <eliz@is.elta.co.il>
1600
1601 * textmodes/texinfo.el (texinfo-insert-@end): Fix the change from
1602 2001-10-24.
1603
1604 * mail/sendmail.el (mail-recover-1, mail-recover): Doc fix.
1605
1606 2002-01-04 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1607
1608 * net/ldap.el (ldap-host-parameters-alist): Remove duplicated
1609 entry.
1610 (ldap-ignore-attribute-codings): Change the default value to allow
1611 encoding/decoding of attributes.
1612 (ldap-coding-system): Use UTF-8 as the coding-system. Doc fix.
1613
1614 2002-01-03 Richard M. Stallman <rms@gnu.org>
1615
1616 * files.el (basic-save-buffer): Undo previous change.
1617
1618 * calendar/diary-lib.el (diary-block): Doc fix.
1619
1620 * custom.el (defcustom): Fix syntax of previous change.
1621
1622 2002-01-03 Per Abrahamsen <abraham@dina.kvl.dk>
1623
1624 * custom.el (defcustom): Documented :tag, :link and :load.
1625
1626 2002-01-03 Eli Zaretskii <eliz@is.elta.co.il>
1627
1628 * mail/sendmail.el (mail-recover-1): New function.
1629 (mail-recover): Switch to the *mail* buffer right away. Use
1630 buffer-auto-save-file-name instead of calling
1631 make-auto-save-file-name. Call dired-noselect instead of invoking
1632 `ls' directly. Bind coding-system-for-read to emacs-mule-unix
1633 before reading the auto-save file. If the buffer's auto-save file
1634 does not exist, call mail-recover-1 to allow recovery from past
1635 auto-saved drafts.
1636
1637 2002-01-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1638
1639 * time.el (display-time-load-average-threshold): Fix defcustom
1640 (add type and group).
1641
1642 * net/ange-ftp.el (ange-ftp-shell-command): Remove port
1643 specification from the hostname.
1644
1645 2002-01-02 Richard M. Stallman <rms@gnu.org>
1646
1647 * facemenu.el (facemenu-active-faces):
1648 Use face-attributes-as-vector, not face-attributes-vector.
1649
1650 2002-01-02 Chris Hanson <cph@aarau.ai.mit.edu>
1651
1652 * xscheme.el: Eleven years of updates on a private copy.
1653
1654 Extensive changes to support multiple xscheme buffers:
1655 (run-scheme): Break up into new functions to facilitate starting
1656 processes in other buffers.
1657 (xscheme-start, xscheme-read-command-line): New functions.
1658 (start-scheme, select-scheme)
1659 (default-xscheme-runlight)
1660 (global-set-scheme-interaction-buffer)
1661 (local-set-scheme-interaction-buffer)
1662 (local-clear-scheme-interaction-buffer)
1663 (exit-scheme-interaction-mode)
1664 (verify-xscheme-buffer): New functions.
1665 (xscheme-process-name, xscheme-buffer-name)
1666 (xscheme-runlight): New internal vars.
1667 (default-xscheme-runlight): New const.
1668 (xscheme-start-process): Add args for the process/buffer names.
1669 (reset-scheme): Pass process/buffer names.
1670 (scheme-interaction-mode): Initialize new local vars.
1671 (reset-scheme, xscheme-send-string-2, xscheme-process-running-p)
1672 (xscheme-select-process-buffer, xscheme-process-buffer)
1673 (xscheme-send-region, xscheme-send-char, xscheme-send-interrupt)
1674 (xscheme-goto-output-point, xscheme-write-message-1): Use new
1675 var xscheme-process-name.
1676 (xscheme-start-process): Initialize xscheme-process-name and
1677 xscheme-buffer-name in the process buffer. Pass buffer name to
1678 xscheme-modeline-initialize.
1679 (xscheme-modeline-initialize): Add argument to specify buffer name
1680 for mode-line vars.
1681 (xscheme-process-sentinel): Make sure sentinel is run in the
1682 process buffer so it sees its local vars.
1683 (xscheme-process-filter-initialize, xscheme-set-runlight): More
1684 elaborate logic to handle multiple-buffer mode lines.
1685
1686 (xscheme-enter-input-wait): Re-enable control-G handler upon
1687 entering input wait.
1688
1689 (scheme-interaction-mode): Add arg to preserve local vars.
1690 (xscheme-enter-interaction-mode)
1691 (xscheme-enter-debugger-mode): Preserve local vars.
1692 (xscheme-start-process): Clobber local vars.
1693
1694 (scheme-interaction-mode-commands): Allow end user to add commands
1695 to scheme-interaction-mode keymap.
1696 (scheme-interaction-mode-commands-alist): New variable.
1697
1698 (xscheme-send-string): Don't use insert-before-markers.
1699
1700 Implement a per-buffer kill ring:
1701 (xscheme-insert-expression)
1702 (xscheme-rotate-yank-pointer, xscheme-yank)
1703 (xscheme-yank-pop, xscheme-yank-push): New functions.
1704 (xscheme-expressions-ring)
1705 (xscheme-expressions-ring-yank-pointer)
1706 (xscheme-expressions-ring-max): New variables.
1707 (xscheme-send-string-1): Call xscheme-insert-expression to save
1708 expression in ring.
1709 (xscheme-yank-previous-send): Now an alias for xscheme-yank.
1710 (xscheme-previous-send): Deleted variable.
1711
1712 (xscheme-send-string-2, xscheme-send-char, xscheme-send-proceed,
1713 xscheme-send-control-g-interrupt): Use process-send-string rather
1714 than send-string.
1715
1716 (xscheme-send-region): Insert a newline after an expression that
1717 is submitted in the interaction buffer, for consistency with
1718 recent changes to Edwin.
1719
1720 (xscheme-delete-output): New function mimics comint-delete-output.
1721 (xscheme-last-input-end): New internal variable.
1722 (xscheme-process-filter-output): Update xscheme-last-input-end.
1723
1724 (xscheme-send-control-g-interrupt): Make sure that
1725 xscheme-control-g-disabled-p is looked up in the right buffer.
1726
1727 (xscheme-enable-control-g): Clear C-g message if visible.
1728 (xscheme-control-g-message-string): New internal var.
1729 (xscheme-send-control-g-interrupt): Use new var.
1730
1731 (xscheme-send-control-g-interrupt, xscheme-send-interrupt): Delay
1732 after sending interrupt in order to work around race condition.
1733
1734 (xscheme-send-control-g-interrupt, xscheme-send-interrupt)
1735 (xscheme-send-char): Use xscheme-send-char rather than send-string
1736 to send single char.
1737
1738 (xscheme-process-filter, xscheme-process-filter-alist): Add
1739 support for evaluating expressions outside of the call-excursion.
1740 (xscheme-process-filter:string-action-noexcursion): New func.
1741
1742 (xscheme-write-value): Change output string to match that used by
1743 Edwin.
1744
1745 (xscheme-coerce-prompt): Don't write a space after a command
1746 prompt. The PROMPT-FOR-COMMAND- procedures will take care of this
1747 for us.
1748
1749 (reset-scheme): Delete process after killing it.
1750
1751 2002-01-02 Eli Zaretskii <eliz@is.elta.co.il>
1752
1753 * bindings.el (function-key-map): Don't bind shifted keypad
1754 numeric keys.
1755
1756 2002-01-02 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1757
1758 * enriched.el (enriched-handle-display-prop): Remove unused
1759 variables.
1760 (enriched-mode): Doc fix.
1761
1762 2002-01-02 Eli Zaretskii <eliz@is.elta.co.il>
1763
1764 * international/ucs-tables.el (ucs-8859-8-alist): Comment away
1765 Hebrew points.
1766
1767 2002-01-01 Richard M. Stallman <rms@gnu.org>
1768
1769 * jka-compr.el (jka-compr-write-region): If START = nil, use whole buf.
1770
1771 2001-12-31 Richard M. Stallman <rms@gnu.org>
1772
1773 * comint.el, cus-edit.el, diff-mode.el, enriched.el, font-lock.el:
1774 * generic-x.el, info.el, log-view.el, pcvs-info.el, speedbar.el:
1775 * wid-edit.el, woman.el, calendar/calendar.el, textmodes/flyspell.el:
1776 * emulation/viper-init.el, eshell/em-ls.el, progmodes/antlr-mode.el:
1777 * progmodes/cperl-mode.el, progmodes/idlwave.el:
1778 * progmodes/sh-script.el, progmodes/vhdl-mode.el:
1779 Adapt face definitions to use :weight and :slant.
1780
1781 * ps-print.el (ps-font-lock-face-attributes): Use :weight and :slant.
1782
1783 * cus-edit.el (custom-face-edit-fix-value): Delete `assert' call.
1784
1785 * font-lock.el (initializing from font-lock-face-attributes):
1786 Use :weight and :slant, not :bold and :italic.
1787
1788 2001-12-31 Per Abrahamsen <abraham@dina.kvl.dk>
1789
1790 * cus-edit.el (custom-face-edit-fix-value): New function.
1791 (custom-face-edit): Use it, to convert :italic and :bold to new forms.
1792
1793 2001-12-30 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1794
1795 * progmodes/octave-mod.el (octave-abbrev-table):
1796 * progmodes/idlwave.el (idlwave-mode-abbrev-table):
1797 * progmodes/fortran.el (fortran-mode-abbrev-table):
1798 * progmodes/f90.el (f90-mode-abbrev-table):
1799 * progmodes/vhdl-mode.el (vhdl-mode-abbrev-table-init):
1800 * progmodes/sql.el (sql-mode-abbrev-table): Mark all the
1801 predefined abbrevs as "system" abbrevs.
1802
1803 2001-12-30 Richard M. Stallman <rms@gnu.org>
1804
1805 * info.el (Info-fontify-node): For a **** underline line, put the
1806 invisible and intangible props on the following newline, but not
1807 on the previous newline or the last char of the previous line.
1808
1809 * faces.el (face-set-after-frame-default): Don't change `default' face.
1810
1811 * faces.el (minibuffer-prompt): Adopt some default colors.
1812
1813 * replace.el (query-replace-read-args): Immediate error if read-only.
1814
1815 * textmodes/makeinfo.el (makeinfo-compilation-sentinel):
1816 Display the output buffer in a more intelligent way.
1817
1818 2001-12-30 Eli Zaretskii <eliz@is.elta.co.il>
1819
1820 * ls-lisp.el (insert-directory): Modify the "total" line wording,
1821 in accordance with files.el's insert-directory.
1822
1823 2001-12-29 Richard M. Stallman <rms@gnu.org>
1824
1825 * files.el (basic-save-buffer): If a before-write hook displays
1826 an echo area message, pause before calling basic-save-buffer-1.
1827
1828 2001-12-29 Markus Rost <rost@math.ohio-state.edu>
1829
1830 * textmodes/reftex-global.el (reftex-query-replace-document)
1831 (reftex-change-label): Doc fix.
1832
1833 * dired-aux.el (dired-do-query-replace-regexp): Doc fix.
1834
1835 * progmodes/etags.el (tags-query-replace): Doc fix.
1836
1837 2001-12-29 Richard M. Stallman <rms@gnu.org>
1838
1839 * progmodes/compile.el (compile-internal): Fix previous change.
1840
1841 2001-12-28 Richard M. Stallman <rms@gnu.org>
1842
1843 * mouse.el (mouse-drag-mode-line-1): When dragging a mode line upward,
1844 shrink the windows above as necessary to get space.
1845 (mouse-drag-move-window-bottom, mouse-drag-window-above): New fns.
1846
1847 * net/ange-ftp.el (ange-ftp-allow-child-lookup): Always return nil.
1848 This fixes a bug that treated all files as directories.
1849 (ange-ftp-insert-directory): Explicitly follow symlinks.
1850
1851 * international/iso-transl.el (iso-transl-char-map) Eliminate the
1852 alias symbols--put the translated sequences here directly.
1853
1854 * progmodes/cc-mode.el (c-mode-abbrev-table)
1855 (c++-mode-abbrev-table, objc-mode-abbrev-table)
1856 (java-mode-abbrev-table, pike-mode-abbrev-table):
1857 Mark all the predefined abbrevs as "system" abbrevs.
1858
1859 * mail/sendmail.el (mail-envelope-from): Fix custom type.
1860 (sendmail-send-it): Check mail-specify-envelope-from
1861 and mail-envelope-from in the mail buffer at start.
1862
1863 2001-12-28 Simon Josefsson <jas@extundo.com>
1864
1865 * mail/sendmail.el (mail-envelope-from): Fix :type.
1866 (sendmail-send-it): Copy `mail-envelope-from' from calling buffer.
1867
1868 2001-12-28 Richard M. Stallman <rms@gnu.org>
1869
1870 * net/ldap.el (ldap-search-internal): Handle <file://...> in results.
1871
1872 * simple.el (line-move-invisible): New subroutine.
1873 (line-move-to-column): New subroutine--smarter about advancing over
1874 invisible parts of a line, or lines, but only as long as hpos grows.
1875 (line-move-finish): New subroutine: repeatedly processes desired
1876 column, intangibility, and fields.
1877 (line-move): Use those subroutines.
1878 When moving lines downward, skip invisible text first rather than last.
1879
1880 2001-12-27 Richard M. Stallman <rms@gnu.org>
1881
1882 * international/mule-diag.el (describe-char-after):
1883 Describe the text properties of the char after point.
1884
1885 * help.el (describe-key): Doc fix.
1886
1887 2001-12-26 Markus Rost <rost@math.ohio-state.edu>
1888
1889 * find-dired.el (find-dired-sentinel): Precede exit message by
1890 two spaces, to match the regexp in dired-between-files.
1891
1892 2001-12-28 Miles Bader <miles@gnu.org>
1893
1894 * wid-edit.el (widget-toggle-value-create): Don't eval actual
1895 images (which are lists too).
1896
1897 2001-12-27 Eli Zaretskii <eliz@is.elta.co.il>
1898
1899 * language/european.el: Fix the doc string of "Latin-5" language
1900 environment.
1901
1902 2001-12-26 Richard M. Stallman <rms@gnu.org>
1903
1904 * textmodes/flyspell.el (flyspell-mode-map): New keymap,
1905 defined as before 2001-11-09.
1906 (add-minor-mode call): Specify the keymap.
1907
1908 * progmodes/compile.el (compile-internal):
1909 Set TERM variable in process-environment.
1910
1911 2001-12-25 Richard M. Stallman <rms@gnu.org>
1912
1913 * help-mode.el (help-xref-on-pp): Catch and ignore errors in scanning
1914 the buffer.
1915
1916 * startup.el (command-line): Convert command line args
1917 to Emacs internal representation using locale-coding-system.
1918
1919 2001-12-25 Eli Zaretskii <eliz@is.elta.co.il>
1920
1921 * international/fontset.el: Don't require ind-util when compiling.
1922
1923 2001-12-25 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1924
1925 * emulation/tpu-edt.el (tpu-reset-screen-size): Use
1926 set-frame-height and set-frame-width instead of set-screen-height
1927 and set-screen-width.
1928
1929 * vt-control.el (vt-wide, vt-narrow): Use set-frame-width instead
1930 of obsolete set-screen-width.
1931
1932 * locate.el (locate): Remove dot at the end of error argument.
1933
1934 * emerge.el (emerge-show-file-name): Use frame-height instead of
1935 obsolete screen-height.
1936
1937 * mail/mh-utils.el (mh-show-msg): Likewise.
1938 (mh-handle-process-error): Use frame-width instead of obsolete
1939 screen-width.
1940
1941 2001-12-25 Richard M. Stallman <rms@gnu.org>
1942
1943 * window.el (balance-windows): Use new PRESERVE-BEFORE arg
1944 to enlarge-window. Use save-selected-window. Don't try
1945 to resize windows that end at the bottom "level".
1946 Retry changing the sizes until the windows get the desired sizes.
1947 Discount the minibuffer when computing total height available.
1948
1949 * emacs-lisp/debug.el (debugger-mode-map): Bind C-m, not `RET'.
1950 (debugger-make-xrefs): Only make a button for the first symbol
1951 on any line.
1952
1953 2001-12-24 Eli Zaretskii <eliz@is.elta.co.il>
1954
1955 * term/internal.el (dos-cpNNN-setup, dos-codepage-setup):
1956 Call IT-setup-unicode-display here instead of adding it to
1957 dos-codepage-setup-hook, so that Unicode display tables are set
1958 before dos-codepage-setup-hook runs.
1959
1960 2001-12-24 Richard M. Stallman <rms@gnu.org>
1961
1962 * net/net-utils.el (ftp-mode-abbrev-table): Don't define it.
1963 (nslookup-mode-abbrev-table): Don't define it.
1964 (smbclient-mode-abbrev-table): Don't define it.
1965 (ftp-mode): Don't use ftp-mode-abbrev-table; don't enable Abbrev mode.
1966 (nslookup-mode, smbclient-mode): Likewise.
1967 (network-connection-service-abbrev-alist): Variable deleted.
1968 (network-connection-mode-setup): Don't set up abbrev table.
1969
1970 * faces.el (minibuffer-prompt): New face.
1971 (minibuffer-prompt-properties): Add `face' property.
1972
1973 * replace.el (occur-mode-display-occurrence): New function.
1974 (occur-mode-map): Bind C-o to it.
1975
1976 2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
1977
1978 * viper-cmd.el (viper-change-state): Got rid of make-local-hook.
1979 (viper-special-read-and-insert-char): Make C-m work right in the r
1980 comand.
1981 (viper-buffer-search-enable): Fixed format string.
1982
1983 * viper-ex.el (ex-token-alist): Use ex-set-visited-file-name
1984 instead of viper-info-on-file.
1985 (ex-set-visited-file-name): New function.
1986
1987 * viper.el (viper-emacs-state-mode-list): Added mail-mode.
1988
1989 * ediff-mult.el (ediff-meta-mark-equal-files): Added optional
1990 action argument.
1991
1992 * ediff-init.el: Fixed some doc strings.
1993
1994 * ediff-util.el (ediff-after-quit-hook-internal): New variable.
1995 Got rid of make-local-hook.
1996
1997 * ediff-wind.el (ediff-setup-control-frame): Got rid of
1998 make-local-hook.
1999
2000 2001-12-23 Richard M. Stallman <rms@gnu.org>
2001
2002 * term/x-win.el (x-handle-geometry): Put height and width
2003 on default-frame-alist, left and top on initial-frame-alist.
2004 * term/w32-win.el (x-handle-geometry): Likewise.
2005
2006 * sort.el (sort-reorder-buffer): Copy all to a temp buffer first.
2007
2008 * play/yow.el (yow): Use an arg to distinguish interactive calls,
2009 not interactive-p.
2010
2011 2001-12-22 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2012
2013 * emacs-lisp/elint.el (elint-unknown-builtin-args): Remove
2014 mocklisp entries.
2015
2016 * subr.el (insert-string): Moved from mocklisp.c, reimplemented in
2017 Lisp. Obsoleted.
2018
2019 * emulation/mlconvert.el: File removed.
2020
2021 * emulation/mlsupport.el: Moved to obsolete.
2022
2023 * obsolete/mlsupport.el: Moved there from lisp/emulation.
2024
2025 * emacs-lisp/find-gc.el (source-files): Remove mocklisp.c.
2026
2027 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove
2028 mocklisp case.
2029
2030 * help-fns.el (describe-function-1): Remove mocklisp function
2031 case.
2032
2033 2001-12-22 Miles Bader <miles@gnu.org>
2034
2035 * textmodes/refill.el (refill-mode): Don't barf when redundantly
2036 turning refill-mode off.
2037
2038 2001-12-22 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2039
2040 * time.el (display-time-load-average-threshold): New variable.
2041 (display-time-update): Use it.
2042
2043 These changes allow cycling through past 1, 5 and 15 minutes
2044 load-average displayed in the mode-line.
2045
2046 * time.el (display-time-default-load-average): New customizable option.
2047 (display-time-load-average): New variable.
2048 (display-time-cycle-load-average): New function.
2049 (display-time-update): Use them.
2050
2051 2001-12-21 Richard M. Stallman <rms@gnu.org>
2052
2053 * apropos.el (apropos-print): SPACING is now nil or a separator string.
2054 (apropos-documentation, apropos-value): Pass a suitable string.
2055
2056 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
2057
2058 * dired.el (dired-free-space-program, dired-free-space-args):
2059 Aliases for back-compatibility.
2060
2061 * info.el (Info-select-node): If Info-use-header-line is nil, set
2062 header-line-format to nil.
2063 (Info-fontify-node): Don't put a keymap text property on the
2064 heading if we are not going to display the header line. Remove
2065 any such text properties left over from past visits to this node.
2066
2067 * ls-lisp.el (insert-directory): Insert the amount of free disk
2068 space, like files.el's insert-directory does.
2069
2070 * files.el (directory-free-space-program): Mention
2071 file-system-info in the doc string.
2072 (get-free-disk-space): New function; code moved from
2073 insert-directory.
2074 (insert-directory): Call get-free-disk-space to get the amount of
2075 free space.
2076
2077 2001-12-21 Richard M. Stallman <rms@gnu.org>
2078
2079 * help.el (view-order-manuals, view-emacs-news, describe-copying)
2080 (describe-distribution, describe-project): Use view-file.
2081
2082 * emacs-lisp/cl-indent.el (define-modify-macro): Better indent spec.
2083
2084 * net/ange-ftp.el (ange-ftp-file-modtime): Use save-match-data.
2085
2086 * emacs-lisp/easy-mmode.el (define-minor-mode):
2087 Make no arg by default in an interactive call,
2088 so that repeating the command toggles again.
2089
2090 * emacs-lisp/lisp-mode.el (eval-defun-1): Cope with atoms as args.
2091
2092 2001-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
2093
2094 * antlr-mode.el: More sophisticated indentation of cpp directive.
2095 (antlr-indent-at-bol-alist): New user option.
2096 (antlr-indent-line): Use it.
2097 (antlr-indent-style): New user option.
2098 (antlr-mode): Use it.
2099 (antlr-indent-item-regexp): Customize.
2100
2101 * antlr-mode.el: Syntax highlighting changes.
2102 (antlr-font-lock-literal-regexp): New user option.
2103 (antlr-font-lock-syntax-face): New face used for :, |, ....
2104 (antlr-font-lock-default-face): New face.
2105 (antlr-font-lock-additional-keywords): Use them.
2106
2107 * antlr-mode.el: New command to insert options -- variables.
2108 (antlr-mode-map): New binding [C-c C-o].
2109 (antlr-mode-menu): New submenus.
2110 (antlr-options-use-submenus): New user option.
2111 (antlr-tool-version): New user option.
2112 (antlr-options-auto-colon): New user option.
2113 (antlr-options-style): New user option.
2114 (antlr-options-push-mark): New user option.
2115 (antlr-options-assign-string): New user option.
2116 (antlr-options-headings): New variable.
2117
2118 * antlr-mode.el: New command to insert options -- specific.
2119 (antlr-options-alists): New variable.
2120 (antlr-read-value): New function.
2121 (antlr-read-boolean): New function.
2122 (antlr-language-option-extra): New function.
2123 (antlr-language-limit-n-regexp): Change default to higher LIMIT.
2124 (antlr-c++-mode-extra): New function.
2125 (antlr-grammar-tokens): New function.
2126 (antlr-imenu-create-index-function): New optional argument.
2127
2128 * antlr-mode.el: New command to insert options -- functions.
2129 (antlr-insert-option): New command.
2130 (antlr-insert-option-interactive): New function.
2131 (antlr-options-menu-filter): New function.
2132 (antlr-option-kind): New function.
2133 (antlr-scan-lists): New alias.
2134 (antlr-scan-lists-internal): New function.
2135 (antlr-skip-file-prelude): Hack for special SKIP-COMMENT.
2136 (antlr-option-level): New function.
2137 (antlr-syntactic-grammar-depth): New function.
2138 (antlr-option-location): New function.
2139 (antlr-insert-option-do): New function.
2140 (antlr-option-spec): New function.
2141 (antlr-version-string): New function.
2142 (antlr-insert-option-existing): New function.
2143 (antlr-insert-option-space): New function.
2144 (antlr-insert-option-area): New function.
2145
2146 * antlr-mode.el: New electric keys ":;|&(){}", TAB works better
2147 with narrowing. Menu change. Miscellaneous.
2148 (antlr-mode-menu): Include "Indent Region" and "Customize Antlr".
2149 (antlr-mode-map): New bindings for characters in ":;|&(){}".
2150 (antlr-electric-character): New command.
2151 (antlr-class-header-regexp): New variable.
2152 (antlr-font-lock-additional-keywords): Use it.
2153 (antlr-imenu-create-index-function): Use it.
2154 (antlr-file-dependencies): Use it.
2155 (antlr-indent-line): Also works with restrictions.
2156 (antlr-indent-command): Interactive spec - changes the buffer.
2157 (antlr-language-for-option): Deletia.
2158 (antlr-language-option): New function, defined instead.
2159 (antlr-mode): Use it.
2160 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
2161
2162 * jka-compr.el (jka-compr-partial-uncompress): Use null-device
2163 instead of a literal /dev/null.
2164
2165 * Makefile.in (distclean): Remove Makefile in the build
2166 directory, not in the source directory.
2167
2168 2001-12-21 Simon Josefsson <jas@extundo.com>.
2169
2170 * mail/smtpmail.el (smtpmail-send-queued-mail): Use
2171 with-temp-buffer instead of find-file-noselect, and bind
2172 coding-system-for-read to no-conversion when reading the queued
2173 messages. (Simon's code modified slightly by Eli Zaretskii.)
2174
2175 2001-12-20 Werner Lemberg <wl@gnu.org>
2176
2177 * international/mule-diag.el (describe-coding-system,
2178 print-coding-system-briefly): Make printed output have a similar
2179 format as describe-character-set.
2180
2181 2001-12-20 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2182
2183 * play/blackbox.el (bb-member): Remove, use member instead.
2184 (bb-delete): Remove, use delete instead.
2185 Update copyright notice. Defvar for bb-board, bb-x, bb-y,
2186 bb-score, bb-detour-count and bb-balls-placed.
2187 Propertize results of rays.
2188
2189 2001-12-19 Karl Fogel <kfogel@red-bean.com>
2190
2191 * isearch.el (isearch-forward, isearch-edit-string): Make doc
2192 strings mention keybinding for `isearch-yank-word-or-char',
2193 rather than `isearch-yank-word', since the former is bound now
2194 and the latter is not.
2195 (isearch-yank-word-or-char): Fix formatting.
2196
2197 2001-12-19 Werner Lemberg <wl@gnu.org>
2198
2199 * language/czech.el, language/european.el, language/slovak.el: More
2200 fixes for language info doc strings.
2201
2202 2001-12-19 Eli Zaretskii <eliz@is.elta.co.il>
2203
2204 * loadup.el: Add "language" to the load-path.
2205
2206 2001-12-19 Richard M. Stallman <rms@gnu.org>
2207
2208 * international/mule-cmds.el (describe-language-environment):
2209 Fix calls to help-xref-button.
2210
2211 2001-12-19 Miles Bader <miles@gnu.org>
2212
2213 * international/fontset.el: Require `ind-util' when compiling.
2214
2215 2001-12-18 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2216
2217 * language/ethio-util.el (ethio-modify-vowel): Use char-to-string
2218 instead of decompose-composite-char.
2219
2220 2001-12-18 Richard M. Stallman <rms@gnu.org>
2221
2222 * simple.el (eval-expression-print-level)
2223 (eval-expression-print-length): Doc fixes.
2224
2225 * international/mule-diag.el (describe-character-set):
2226 Fix the arg to help-xref-button.
2227
2228 * files.el (directory-free-space-program): New variable.
2229 (directory-free-space-args): New variable.
2230 (insert-directory): Use those two variables for getting free space.
2231 Use file-system-info instead, if that is defined.
2232
2233 * dired.el (dired-free-space-program): Variable deleted.
2234 (dired-free-space-args): Variable deleted.
2235 (dired-insert-directory): Don't try to determine free space.
2236
2237 * files.el (font-lock-defaults): Add risky-local-variables prop.
2238 (hack-one-local-variable): Treat various font-lock variables as risky.
2239
2240 2001-12-18 Werner Lemberg <wl@gnu.org>
2241
2242 * language/chinese.el, language/cyrillic.el:
2243 * language/czech.el, language/european.el, language/greek.el:
2244 * language/hebrew.el, language/indian.el, language/japanese.el:
2245 * language/korean.el, language/lao.el, language/slovak.el:
2246 * language/thai.el, language/tibetan.el, language/vietnamese.el:
2247 Improve documentation strings of coding systems and language infos.
2248
2249 2001-12-18 Werner LEMBERG <wl@gnu.org>
2250
2251 Add support for EUC-TW decoding/encoding.
2252
2253 * language/china-util.el (big5-to-flat-code, flat-code-to-big5,
2254 euc-to-flat-code, flat-code-to-euc, expand-euc-big5-alist):
2255 New auxiliary functions to build `big5-to-cns'.
2256 (big5-to-cns): New translation alist.
2257
2258 * language/chinese.el: Added new coding system `euc-tw' and its
2259 alias `euc-taiwan'.
2260 Updated language `Chinese-CNS' to include euc-tw encoding also.
2261 (ccl-decode-euc-tw, ccl-encode-euc-tw): New functions for handling
2262 euc-tw.
2263
2264 2001-12-18 Dave Love <fx@gnu.org>
2265
2266 * loadup.el: Add language/utf-8-lang, language/georgian.
2267
2268 * image-file.el (image-file-name-extensions): Add pnm. Doc fix.
2269 (image-file-name-regexps): Doc fix.
2270
2271 * server.el (server-unload-hook): New function.
2272
2273 * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): Group the leader.
2274 (lm-crack-copyright): Cope with multi-line copyright `lines'.
2275
2276 * simple.el (newline): Doc fix.
2277 (eval-expression-print-level, eval-expression-print-length): Doc
2278 fix. Amend :type.
2279 (next-line, previous-line): Make arg optional.
2280 (newline): Doc fix.
2281
2282 * Makefile.in (DONTCOMPILE): Add various language files.
2283
2284 * international/quail.el (quail-input-string-to-events): Don't use
2285 string-to-list.
2286
2287 * progmodes/f90.el (f90-break-line): Avoid infinite recursion
2288 calling `newline'.
2289
2290 2001-12-17 Richard M. Stallman <rms@gnu.org>
2291
2292 * comint.el (comint-dynamic-list-input-ring-select): New function.
2293 Switches back to the old window configuration.
2294 (comint-dynamic-list-input-ring): Bind RET to that function.
2295 (comint-dynamic-list-input-ring-window-conf): New variable.
2296
2297 2001-12-17 Werner Lemberg <wl@gnu.org>
2298
2299 * international/mule-conf.el: Improve documentation strings of
2300 character sets.
2301
2302 2001-12-16 Richard M. Stallman <rms@gnu.org>
2303
2304 * dired.el (dired-copy-filename-as-kill): Moved from dired-x.el.
2305 (dired-mode-map): Bind w to dired-copy-filename-as-kill.
2306
2307 * dired-x.el (dired-copy-filename-as-kill): Moved to dired.el.
2308
2309 * autoinsert.el (auto-insert-alist): Redo finding C and C++ headers.
2310 Add a DESCRIPTION for the makefile item.
2311
2312 * find-file.el (ff-other-file-name): New function.
2313
2314 2001-12-16 Eli Zaretskii <eliz@is.elta.co.il>
2315
2316 * international/quail.el (quail-input-string-to-events): Fix last
2317 change.
2318
2319 2001-12-16 Richard M. Stallman <rms@gnu.org>
2320
2321 * isearch.el (isearch-edit-string): When we set isearch-string
2322 to the default, also set isearch-message.
2323
2324 * subr.el (temp-buffer-show-hook, temp-buffer-setup-hook): Add defvars.
2325
2326 * startup.el (command-line-1): Display startup screen
2327 even if there are command line args.
2328 Add a note about how to go to editing your files.
2329 (fancy-splash-head): Add a note about how to go to your files.
2330 (fancy-splash-outer-buffer): New variable.
2331 (fancy-splash-screens): Bind variable fancy-splash-outer-buffer.
2332
2333 * subr.el (with-temp-message): At the end, always discard
2334 the temp message, even by clearing the echo area.
2335
2336 * progmodes/sh-script.el (sh-mode): Run sh-mode-hook.
2337
2338 2001-12-16 Stefan Monnier <monnier@cs.yale.edu>
2339
2340 * log-view.el (log-view-message-re, log-view-current-tag):
2341 Recognize Subversion's log output format.
2342
2343 * international/fontset.el: Build the list L at compile time.
2344
2345 * language/ind-util.el (mapthread): Make a closure.
2346
2347 2001-12-15 Richard M. Stallman <rms@gnu.org>
2348
2349 * isearch.el (isearch-start-hscroll): New variable.
2350 (isearch-mode): Set isearch-start-hscroll.
2351 (isearch-update): Restore original hscrolling if possible.
2352
2353 * isearch.el (isearch-edit-string):
2354 Treat isearch-yank-word-or-char specially, like isearch-yank-word.
2355
2356 * emacs-lisp/debug.el (debugger-previous-backtrace): New variable.
2357 (debugger-make-xrefs): Optimize by (1) using skip-syntax-forward
2358 rather than regexp search and (2) copying text properties
2359 already set up on text unchanged from the previous backtrace.
2360
2361 * case-table.el (set-case-syntax-pair):
2362 Detect invalid calls and signal an error.
2363
2364 2001-12-15 Richard M. Stallman <rms@gnu.org>
2365
2366 * language/ind-util.el (range): Function deleted.
2367 (indian-regexp-of-hashtbl-keys): Renamed from `regexp-of-hashtbl-keys'.
2368 All calls changed.
2369
2370 * language/devan-util.el (devanagari-range): Renamed from `range'.
2371 All calls changed.
2372 (devanagari-regexp-of-hashtbl-keys):
2373 Renamed from `regexp-of-hashtbl-keys'. All calls changed.
2374
2375 2001-12-15 Dave Love <fx@gnu.org>
2376
2377 * language/ind-util.el: Don't require cl.
2378 (indian-glyph-char, indian-glyph-max-char)
2379 (indian-char-glyph): Moved from indian.el
2380 (indian--puthash-char, mapthread): Don't quote lambda.
2381 (indian--map): New function.
2382 (indian--puthash-v, indian--puthash-c, indian--puthash-m)
2383 (indian--puthash-cv): Use it.
2384
2385 * language/indian.el (indian-glyph-char, indian-glyph-max-char)
2386 (indian-char-glyph): Moved to ind-util.el
2387
2388 * language/devan-util.el (devanagari-post-read-conversion):
2389 New function.
2390
2391 * language/georgian.el: New file.
2392
2393 * international/mule-cmds.el (locale-language-names): Add various
2394 entries. Remove utf-8 special case.
2395 (locale-charset-language-names, locale-preferred-coding-systems):
2396 Add utf-8 case.
2397 (set-language-environment): Process required-features earlier.
2398
2399 * international/quail.el (quail-keyboard-layout-alist):
2400 Add pc105-uk.
2401 (quail-keyboard-layout-type): Fix :type.
2402 (quail-choose-completion-string): Simplify.
2403 (quail-update-leim-list-file): Don't get fooled by commented-out code.
2404 (quail-input-string-to-events): Run events through
2405 translation-table-for-input.
2406
2407 * international/mule-conf.el (translation-table-for-input):
2408 New variable.
2409 (latin-iso8859-14): Amend description.
2410 (file-coding-system-alist): Add entry for utf-8.
2411
2412 * language/utf-8-lang.el: New file.
2413
2414 * international/code-pages.el: New file.
2415
2416 * language/hebrew.el ("Windows-1255"): New language.
2417
2418 * language/european.el ("Welsh", "Latin-7", "Lithuanian")
2419 ("Latvian"): New languages.
2420
2421 2001-12-14 Stefan Monnier <monnier@cs.yale.edu>
2422
2423 * xml.el: Use setq rather than (set 'foo bar).
2424 Use push+nreverse rather than append.
2425 (xml-node-name, xml-node-attributes, xml-node-children):
2426 Use defsubst rather than macros.
2427 (xml-parse-region): Handle a nil return value from xml-parse-tag.
2428 (xml-parse-tag): Don't skip white space. Return nil for a comment.
2429 Concat the two strings surrounding a comment into a single string.
2430
2431 * newcomment.el (comment-indent): Jump to the middle of empty comments.
2432
2433 2001-12-14 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2434
2435 * select.el (xselect-convert-to-class, xselect-convert-to-name):
2436 Document.
2437
2438 2001-12-14 Andre Spiegel <spiegel@gnu.org>
2439
2440 * vc-hooks.el (vc-checkout-model, vc-state, vc-workfile-version):
2441 Return nil if FILE is not registered.
2442 (vc-check-master-templates, vc-default-make-version-backups-p):
2443 Doc fix.
2444
2445 2001-12-13 David Ponce <david@dponce.com>
2446
2447 * ruler-mode.el (ruler-mode-extra-left-cols): Remove.
2448 (ruler-mode-left-fringe-cols): New macro.
2449 (ruler-mode-right-fringe-cols): New macro.
2450 (ruler-mode-left-scroll-bar-cols): New macro.
2451 (ruler-mode-right-scroll-bar-cols): New macro.
2452 (ruler-mode-ruler): Use above new macros.
2453
2454 2001-12-13 Richard M. Stallman <rms@gnu.org>
2455
2456 * files.el (set-auto-mode): Fix previous change.
2457
2458 2001-12-13 Stefan Monnier <monnier@cs.yale.edu>
2459
2460 * emacs-lisp/easymenu.el (easy-menu-intern): New fun.
2461 (easy-menu-do-define, easy-menu-convert-item-1)
2462 (easy-menu-define-key-intern, easy-menu-get-map): Use it.
2463 (easy-menu-return-item): Only return nil if there is no binding.
2464
2465 2001-12-13 Rajesh Vaidheeswarran <rv@gnu.org>
2466
2467 * whitespace.el (whitespace-version): 3.2
2468 * whitespace.el (whitespace-force-mode-line-update): Replace with
2469 `whitespace-mode-line-update', which is an alias to the correct
2470 function in various emacsen.
2471 * whitespace.el (whitespace-{un,}highlight-the-space):
2472 Add colorized highlighting of the bogus whitespaces in a buffer/file,
2473 using the `whitespace-highlight-face' if
2474 `whitespace-display-spaces-in-color' is set.
2475
2476 2001-12-13 Eli Zaretskii <eliz@is.elta.co.il>
2477
2478 * international/mule.el (set-auto-coding): Don't search for
2479 "unibyte:" or "coding:" if set-auto-mode-1 returns nil.
2480
2481 2001-12-13 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2482
2483 * mail/mailabbrev.el (mail-abbrevs-setup): Do not use make-local-hook.
2484
2485 * mail/rmail.el (rmail-fontify-buffer-function): Likewise.
2486
2487 * mail/rmailsum.el (rmail-summary-mode): Likewise.
2488
2489 2001-12-13 Richard M. Stallman <rms@gnu.org>
2490
2491 * simple.el (undo): Always set this-command to `undo',
2492 so that the next undo after an error will not begin redoing.
2493
2494 * simple.el (shell-command): Doc fix.
2495 (shell-command-on-region): If there is output an an error,
2496 add "...Shell command failed" to the output.
2497
2498 2001-12-13 David Ponce <david@dponce.com>
2499
2500 * ruler-mode.el (ruler-mode-left-fringe-cols): Variable removed.
2501 (ruler-mode-left-fringe-cols): Function replaced by more efficient
2502 implementation `ruler-mode-extra-left-cols'.
2503 (ruler-mode-ruler): Use above new function. Take into account
2504 that the fringe areas can now be resized.
2505
2506 2001-12-12 Richard M. Stallman <rms@gnu.org>
2507
2508 * international/characters.el (Unicode): Comment out
2509 the specifications for kelvin and angstrom signs.
2510
2511 * international/mule.el (make-translation-table-from-vector):
2512 Allow null elements in VEC.
2513
2514 * international/ucs-tables.el (unify-8859-on-encoding-mode)
2515 (unify-8859-on-decoding-mode): Swap the code in their bodies.
2516 Add :version.
2517
2518 2001-12-11 Richard M. Stallman <rms@gnu.org>
2519
2520 * derived.el (derived-mode-p): Function moved to subr.el.
2521
2522 * subr.el (derived-mode-p): Moved here from derived.el.
2523
2524 * international/mule.el (set-auto-coding): Use set-auto-mode-1.
2525
2526 * files.el (set-auto-mode-1): New subroutine, broken out of
2527 set-auto-mode.
2528 (set-auto-mode, hack-local-variables-prop-line): Use that.
2529
2530 2001-12-11 Dave Love <fx@gnu.org>
2531
2532 * language/thai-util.el, language/thai.el: Add Unicode equivalents.
2533
2534 * language/european.el: Remove autoload cookies. Fix registration
2535 of diacritic composition function.
2536
2537 2001-12-11 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2538
2539 * calendar/todo-mode.el: Require time-stamp.
2540
2541 * net/zone-mode.el (zone-mode): Don't use make-local-hook.
2542
2543 2001-12-11 Richard M. Stallman <rms@gnu.org>
2544
2545 * emacs-lisp/authors.el (authors-aliases): Delete "Richard Stallmao".
2546
2547 * textmodes/ispell.el (ispell-buffer-local-parsing):
2548 Match xml like sgml.
2549
2550 * emacs-lisp/advice.el (ad-compile-function):
2551 Byte compile the function under another (uninterned) name.
2552
2553 * gud.el (gdb): Define and bind gud-jump.
2554
2555 * font-lock.el (font-lock-mode):
2556 Put our function at the end of after-change-functions.
2557
2558 * ediff-diff.el (ediff-cmp-options): Doc fix.
2559
2560 * comint.el (comint-password-prompt-regexp): Match "UNIX Password".
2561
2562 2001-12-10 Richard M. Stallman <rms@gnu.org>
2563
2564 * isearch.el (isearch-yank-word-or-char): New function.
2565 (isearch-mode-map): Bind C-w to that.
2566
2567 * menu-bar.el (menu-bar-mode): Make arg optional.
2568
2569 * simple.el (line-move): Cope if next-single-property-change
2570 or previous-single-property-change returns nil.
2571
2572 * emacs-lisp/lisp-mnt.el (lm-verify): New arg NON-FSF-OK.
2573 Don't use interactive-p; instead, pass the proper args
2574 in (interactive...). Clean up most of the trouble-report strings.
2575
2576 2001-12-10 Eli Zaretskii <eliz@is.elta.co.il>
2577
2578 * mail/smtpmail.el (smtpmail-send-queued-mail): Insert the
2579 enqueued messages literally.
2580
2581 2001-12-10 Noah Friedman <friedman@splode.com>
2582
2583 * battery.el (battery-insert-file-contents): Obsolete function
2584 removed.
2585 (battery-read-function): Obsolete function removed.
2586 (battery-linux-proc-apm): Use insert-file-contents.
2587
2588 2001-12-07 Stephen Eglen <stephen@gnu.org>
2589
2590 * iswitchb.el (iswitchb-visit-buffer):
2591 Use `select-frame-set-input-focus'--needed when window manager
2592 uses "click to focus" policy.
2593
2594 2001-12-09 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2595
2596 * COPYING: Moved back.
2597
2598 2001-12-07 Eli Zaretskii <eliz@is.elta.co.il>
2599
2600 * term/internal.el (IT-character-translations): Add entries for
2601 more points.
2602
2603 * international/characters.el: Resurrect the Hebrew category
2604 settings for all Hebrew characters removed by the last change.
2605 Add code for setting the Hebrew category of the Unicode Hebrew
2606 characters. Set syntax entries for Hebrew punctuation characters.
2607
2608 * international/ucs-tables.el (ucs-8859-8-alist): Add Hebrew
2609 points and directional formatting control characters.
2610
2611 2001-12-07 Dave Love <fx@gnu.org>
2612
2613 * language/lao-util.el: Add Unicode equivalents for rules.
2614 (lao-post-read-conversion): New function.
2615
2616 * language/lao.el: Add Unicode equivalents.
2617 (lao): Add post-read conversion.
2618
2619 * international/latin1-disp.el: Fix some 8-bit-graphic characters.
2620 Use iso2022 encoding.
2621 (latin1-char-displayable-p): Doc fix.
2622 (latin1-display-ucs-per-lynx): New option.
2623 (latin1-display-ucs-per-lynx): New command.
2624 (latin1-display-reset): Special-case arabic.
2625 (ucs-tables): Require.
2626 (latin1-display-sets, latin1-display-setup): Add arabic.
2627 (latin1-display) <variable>: Use function latin1-display.
2628 (latin1-display) <function>: Add mule-unicode stuff.
2629 (latin1-display-check-font): Don't lose if `info' is nil.
2630
2631 * international/iso-transl.el: Insert Latin-1 characters, not
2632 unibyte codes.
2633
2634 * language/european.el (diacritic-composition-pattern): New constant.
2635 (diacritic-compose-region, diacritic-compose-string)
2636 (diacritic-compose-buffer, diacritic-post-read-conversion)
2637 (diacritic-composition-function): New functions.
2638
2639 * international/utf-8.el (ucs-mule-to-mule-unicode):
2640 New translation table.
2641 (ccl-encode-mule-utf-8): Use it.
2642 (utf-8-untranslated-to-ucs, utf-8-help-echo, utf-8-compose)
2643 (utf-8-post-read-conversion, utf-8-pre-write-conversion): New function.
2644 (utf-8-subst-table): New variable.
2645 (utf-8-compose-scripts): New option.
2646 (mule-utf-8): Update safe-charsets, pre-write and post-read conversion.
2647
2648 * international/ucs-tables.el, international/utf-8-subst.el:
2649 New files.
2650
2651 * international/characters.el: Don't set word syntax (the default)
2652 explicitly. Add a diacritic category. Add info for Unicode
2653 equivalents of characters in various Mule charsets and for extra
2654 Unicode characters. Don't define specific categories for
2655 Indian/Devanagari, since they aren't used.
2656
2657 2001-12-06 Richard M. Stallman <rms@gnu.org>
2658
2659 * textmodes/fill.el (set-justification): Rename arg VALUE to STYLE.
2660 (set-justification-left, set-justification-right): Doc fix.
2661
2662 * progmodes/f90.el (f90-break-line): Use (newline 1) to insert newline.
2663 (bug-f90-mode): Variable deleted.
2664
2665 2001-12-06 Stefan Monnier <monnier@cs.yale.edu>
2666
2667 * indent.el (indent-line-function): Default is indent-relative again.
2668
2669 2001-12-07 Miles Bader <miles@gnu.org>
2670
2671 * progmodes/compile.el (compilation-error-regexp-alist):
2672 Added regexps for RXP.
2673
2674 2001-12-05 Eli Zaretskii <eliz@is.elta.co.il>
2675
2676 * progmodes/cwarn.el (cwarn-font-lock-match-assignment-in-expression):
2677 Add shift-assignment operators to those highlighted, and highlight
2678 the whole operator rather than just the "=".
2679
2680 2001-12-04 Juanma Barranquero <lektu@terra.es>
2681
2682 * files.el (save-abbrevs, save-some-buffers): Don't ask the user
2683 before saving abbrevs if `save-abbrevs' has the value `silently'.
2684
2685 2001-12-04 Andreas Schwab <schwab@suse.de>
2686
2687 * xt-mouse.el (turn-off-xterm-mouse-tracking): Doc fix.
2688
2689 2001-12-04 Colin Walters <walters@debian.org>
2690
2691 * emacs-lisp/autoload.el (make-autoload): Also generate autoloads
2692 for `defmacro*' forms.
2693
2694 * emacs-lisp/lisp-mode.el (toplevel): Define docstring offset for
2695 `defmacro*'.
2696
2697 2001-12-03 Stefan Monnier <monnier@cs.yale.edu>
2698
2699 * progmodes/antlr-mode.el (antlr-c-common-init): Undo last change.
2700
2701 2001-12-02 Richard M. Stallman <rms@gnu.org>
2702
2703 * files.el (insert-directory): If the df output does not look right,
2704 don't try to use it. Other cleanups in overall code structure.
2705
2706 2001-12-02 Stefan Monnier <monnier@cs.yale.edu>
2707
2708 * textmodes/outline.el (outline-mode-prefix-map):
2709 Add bindings for outline-promote and outline-demote.
2710 (outline-minor-mode-menu-bar-map): New var.
2711 (outline-minor-mode): Use it.
2712 (outline-heading-alist): New var (renamed from outline-level-heading).
2713 (outline-level): Use it.
2714 (outline-insert-heading, outline-promote, outline-demote):
2715 Update to use outline-heading-alist.
2716
2717 * disp-table.el (standard-display-european):
2718 Simplify since the function is not interactive any more.
2719 Don't set the existing buffers to unibyte.
2720
2721 * pcvs-util.el (cvs-file-to-string): Move condition-case outside.
2722
2723 * pcvs.el (cvs-reread-cvsrc): Don't use cvs-file-to-string.
2724
2725 * reveal.el (reveal-mode): Fix reveal-mode's lighter.
2726
2727 * shell.el (shell): Use shell-file-name.
2728 Pop to buffer before calling comint to set COLUMNS properly.
2729
2730 * emacs-lisp/cl.el (svref): New alias.
2731
2732 * progmodes/antlr-mode.el (antlr-c-common-init):
2733 Don't inhibit adaptive-fill-mode any more.
2734
2735 * progmodes/delphi.el (delphi-mode): Don't use make-local-hook.
2736
2737 * progmodes/etags.el (tags-with-face): Use make-symbol.
2738 (tags-search, tags-query-replace): Use backquotes.
2739
2740 * textmodes/picture.el (picture-mode-map): Don't use defconst
2741 for a variable.
2742
2743 2001-12-02 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2744
2745 * textmodes/reftex-index.el (reftex-index-mode):
2746 Remove make-local-hook.
2747
2748 * textmodes/reftex-toc.el (reftex-toc-mode): Likewise.
2749
2750 2001-12-02 Kim F. Storm <storm@cua.dk>
2751
2752 * isearch.el (isearch-resume-enabled): New variable.
2753 (isearch-done): Use that variable.
2754
2755 2001-12-01 Richard M. Stallman <rms@gnu.org>
2756
2757 * wid-edit.el (widget-button-click): Don't move point permanently:
2758 Avoid mouse-set-point--instead select the window,
2759 then do save-excursion, then move point.
2760 Specify the buffer for get-char-property.
2761 Don't use `@' in interactive.
2762
2763 * indent.el (indent-line-function):
2764 Default is indent-to-left-margin again.
2765
2766 * replace.el (query-replace-read-args): Display message
2767 if FROM contains `\n' or `\t'.
2768
2769 2001-12-01 Stefan Monnier <monnier@cs.yale.edu>
2770
2771 * indent.el (tab-to-tab-stop): Use delete-horizontal-space.
2772
2773 * bindings.el (minibuffer-local-map): Bind TAB to insert-tab.
2774
2775 * emacs-lisp/regexp-opt.el (regexp-opt):
2776 Bind completion-regexp-list to nil.
2777
2778 * progmodes/hideif.el (hif-nexttoken): Move to before first def.
2779
2780 2001-12-01 Eli Zaretskii <eliz@is.elta.co.il>
2781
2782 * progmodes/idlwave.el, progmodes/idlw-rinfo.el:
2783 * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el:
2784 Update maintainer.
2785
2786 2001-11-30 Stefan Monnier <monnier@cs.yale.edu>
2787
2788 * mail/smtpmail.el: Use with-current-buffer.
2789 (message-make-date, message-make-message-id): Autoload when needed.
2790 (smtpmail-send-it): Use them to add `Date:' and `Message-Id:'
2791 headers when missing.
2792
2793 * international/encoded-kb.el (encoded-kbd-mode):
2794 Use define-minor-mode.
2795
2796 * enriched.el (enriched-mode): Use define-minor-mode.
2797 Use dolist and pop and push.
2798
2799 * info.el (Info-find-node-2): Don't call info-insert-file-contents
2800 with the `visit' argument.
2801 (Info-extract-menu-node-name): Use `replace-regexps-in-string'.
2802
2803 * progmodes/hideif.el (hide-ifdef-mode): Only modify
2804 `change-major-mode-hook' locally. Reset invisibility spec.
2805
2806 * man.el (Man-build-section-alist): Remove last Man-match-substring.
2807
2808 2001-11-30 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
2809
2810 * textmodes/paragraphs.el (mark-paragraph): Clarify doc.
2811 Clarify error message.
2812
2813 2001-11-29 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
2814
2815 * textmodes/paragraphs.el (mark-paragraph): Allow prefix arg.
2816
2817 2001-11-30 Andre Spiegel <spiegel@gnu.org>
2818
2819 * vc-cvs.el (vc-cvs-parse-status): Store file state in property,
2820 don't just return it.
2821
2822 2001-11-30 Eli Zaretskii <eliz@is.elta.co.il>
2823
2824 * menu-bar.el (menu-bar-read-lispref, menu-bar-read-lispintro)
2825 (menu-bar-read-emacs-man, search-emacs-glossary)
2826 (emacs-index-search, elisp-index-search): New functions.
2827 (apropso-documentation, apropos, apropos-value, apropos-variable)
2828 (apropos-commands): Modify menu item names and help text.
2829 (elisp-index-search, emacs-index-search, emacs-glossary):
2830 New menu items.
2831 (menu-bar-manuals-menu): Move the Ordering Manuals item to a
2832 submenu.
2833 (info-elisp, info-elintro): New menu items.
2834 (apropos): Modify the menu item name.
2835
2836 2001-11-30 Stefan Monnier <monnier@cs.yale.edu>
2837
2838 * emacs-lisp/lisp-mode.el (read-if): Add lisp-indent-function prop.
2839
2840 * textmodes/outline.el (outline-promote, outline-demote): Typo.
2841
2842 * man.el (man-follow-mouse): New function.
2843 (Man-mode-map): Bind mouse-2 to it.
2844 (Man-match-substring): Remove. Replace with `match-string'.
2845 (man): Use the `default-value' argument to `read-string'.
2846 (Man-fontify-manpage): Add mouse-face to cross references.
2847
2848 * emacs-lisp/cl-macs.el (shiftf): Fix more. Simplify.
2849
2850 2001-11-29 Stefan Monnier <monnier@cs.yale.edu>
2851
2852 * emacs-lisp/crm.el (completing-read-multiple): Better preserve
2853 the value of require-match in minibuffer-completion-confirm.
2854 Use crm-local-completion-map.
2855
2856 * emacs-lisp/cl-macs.el (shiftf): Fix the fast case so
2857 (let ((a 1) (b 2)) (shiftf a b (cons a b)) b) returns (1 . 2).
2858 (cl-make-type-test): Use char-valid-p for `character'.
2859
2860 * info.el (Info-complete-next-re, Info-complete-cache): New vars.
2861 (Info-complete-menu-item): Rewrite. Add the ability to search
2862 several sequential nodes. Add a simple caching mechanism.
2863 (Info-goto-index): New function extracted from Info-index.
2864 (Info-index): Use it. Add completion to the interactive spec.
2865 (Info-menu-update): Simplify call to `Info-complete-menu-item'.
2866
2867 2001-11-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2868
2869 * COPYING: Removed.
2870
2871 2001-11-29 Dave Love <fx@gnu.org>
2872
2873 * progmodes/fortran.el: Fontify rewind, backspace. Doc fixes.
2874 (fortran-window-create, fortran-window-create-momentarily):
2875 Rewrite, moving error condition.
2876 (fortran-beginning-do, fortran-beginning-if): Fix regexps.
2877 (fortran-mode-syntax-table): Revert last change.
2878
2879 * international/mule.el: Doc fixes.
2880 (map-charset-chars): New function.
2881 (register-char-codings): Use it to cope with generic chars in
2882 safe-chars.
2883
2884 2001-11-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2885
2886 * play/blackbox.el (blackbox-mode, blackbox): Doc fix.
2887
2888 * play/cookie1.el (cookie, cookie-insert, shuffle-vector): Doc fixes.
2889
2890 * play/studly.el (studlify-word, studlify-region)
2891 (studlify-buffer): Fix doc-string.
2892 (studlify-buffer): Add autoload cookie.
2893
2894 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
2895
2896 * textmodes/outline.el (outline-up-heading): Add `invisible-ok' arg.
2897 (outline-up-heading-all): Remove.
2898 (hide-sublevels): Move to end-of-heading before calling flag-region.
2899 (outline-copy-overlay, outline-discard-overlays): Remove.
2900 (outline-flag-region): Use `remove-overlays'.
2901 Don't move to end-of-heading.
2902 (outline-next-visible-heading, outline-back-to-heading)
2903 (outline-on-heading-p): Use outline-invisible-p.
2904 (outline-font-lock-level): Use outline-up-heading's new arg.
2905 (outline-minor-mode): Simplify.
2906 (outline-map-tree, outline-reveal-toggle-invisible): New funs.
2907 (outline): Put a `reveal-toggle-invisible' property.
2908 (outline-level-heading): New var.
2909 (outline-insert-heading, outline-promote, outline-demote)
2910 (outline-toggle-children): New commands.
2911
2912 * progmodes/hideif.el (hif-end-of-line): New function.
2913 (hide-ifdef-mode): Set line-move-ignore-invisible.
2914 (hide-ifdef-region-internal): New function.
2915 (hide-ifdef-region): Use it.
2916 (hif-defined): Return an integer.
2917 (hif-infix-to-prefix): Remove.
2918 (hif-tokenize): Parse from the buffer rather than from a string.
2919 Correctly tokenize integers. Use forward-comment.
2920 (hif-expr): Use hif-or.
2921 (hif-term): Use hif-and.
2922 (hif-factor): Use hif-not. Handle numbers properly.
2923 Don't require parenthesis around `defined's argument.
2924 (hif-and, hif-or, hif-not): New funs.
2925 (hif-canonicalize): Pass a region to hif-tokenize. Use hif-not.
2926 (hif-hide-line): Don't hide the \n before the line.
2927 (hif-possibly-hide): Correctly handle numeric evaluation results.
2928
2929 * progmodes/make-mode.el: Use line-(end|beginning)-position.
2930 (makefile-mode): Set indent-line-function.
2931 (makefile-browser-insert-continuation): Use with-current-buffer.
2932 (makefile-beginning-of-line-point, makefile-end-of-line-point): Remove.
2933
2934 2001-11-28 Karl Fogel <kfogel@red-bean.com>
2935
2936 * isearch.el (isearch-yank-internal): New helper function.
2937 (isearch-yank-char): New function.
2938 (isearch-yank-word, isearch-yank-line): Rewrite to use
2939 isearch-yank-internal.
2940
2941 2001-11-28 Eli Zaretskii <eliz@is.elta.co.il>
2942
2943 * mouse.el (mouse-set-font): Make it a no-op if multiple fonts
2944 aren't supported. Print a message to that effect if invoked.
2945
2946 2001-11-27 Stephen Eglen <stephen@gnu.org>
2947
2948 * locate.el (locate): Put point at first matching file rather
2949 than top of buffer.
2950
2951 2001-11-27 Stefan Monnier <monnier@cs.yale.edu>
2952
2953 * reveal.el: New file.
2954
2955 * progmodes/hideif.el: Misc cleanup.
2956 (hide-ifdef-mode-submap): Put the def in the defvar.
2957 Use substitute-key-definition.
2958 (hide-ifdef-mode): Use define-minor-mode.
2959 (hif-outline-flag-region): Remove.
2960 (hif-show-all): Define in terms of hif-show-ifdef-region.
2961 (hif-after-revert-function): Rename from hif-before-revert-function.
2962 (hide-ifdef-region, hif-show-ifdef-region): Use overlays.
2963 (hif-tokenize): Use with-syntax-table.
2964 (hif-make-range): Use `else' also for `else-p'.
2965 (hif-range-else-p): Remove.
2966 (hif-find-range): Simplify.
2967 (hif-hide-line): Don't bother preserving buffer-modified-p.
2968 (hide-ifdefs, show-ifdefs, hide-ifdef-block, show-ifdef-block):
2969 Don't use selective-display and inhibit-read-only.
2970
2971 * subr.el (copy-overlay, remove-overlays): New funs.
2972
2973 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix off-by-two error.
2974
2975 2001-11-27 Sam Steingold <sds@gnu.org>
2976
2977 * ansi-color.el, bookmark.el, dired.el, emerge.el, fast-lock.el
2978 * lazy-lock.el, mouse-sel.el, mail/feedmail.el
2979 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el, emacs-lisp/ewoc.el
2980 * obsolete/c-mode.el, obsolete/cplus-md.el
2981 * progmodes/dcl-mode.el, progmodes/idlw-shell.el, progmodes/idlwave.el
2982 * term/sun-mouse.el, textmodes/artist.el:
2983 Converted backquote to the new style.
2984 * mouse.el, reposition.el: Likewise (in comments).
2985 * expand.el: Likewise (in a string).
2986
2987 2001-11-27 Richard M. Stallman <rms@gnu.org>
2988
2989 * cus-edit.el (custom-load-symbol): Don't always load locate-library.
2990
2991 2001-11-26 Richard M. Stallman <rms@gnu.org>
2992
2993 * wid-edit.el (widget-toggle-value-create): On graphic terminal,
2994 if :on-glyph or :off-glyph is a list, eval it and store it back.
2995 (checkbox): Quote the values for :on-glyph and :off-glyph.
2996
2997 * cus-start.el (recursive-load-depth-limit): Delete item.
2998
2999 2001-11-26 Stefan Monnier <monnier@cs.yale.edu>
3000
3001 * help-fns.el (describe-categories, help-describe-category-set): New.
3002 describe-categories moved here from src/category.c.
3003
3004 2001-11-26 Sam Steingold <sds@gnu.org>
3005
3006 * progmodes/cc-mode.el (c-submit-bug-report): Make sure that the
3007 arguments to `insert' are strings.
3008
3009 2001-11-26 Richard M. Stallman <rms@gnu.org>
3010
3011 * startup.el (command-line-1): Call kill-buffer only in non-fancy case.
3012
3013 2001-11-26 Eli Zaretskii <eliz@is.elta.co.il>
3014
3015 * international/mule-diag.el: Require help-fns instead of
3016 help-funs.
3017
3018 * help-fns.el: Renamed from help-funs.el.
3019
3020 * startup.el (command-line-1): Don't try to call process-list if
3021 it is not fboundp.
3022
3023 2001-11-26 Sam Steingold <sds@gnu.org>
3024
3025 * frame.el (show-trailing-whitespace): Remove :set argument (the
3026 value was essentially identical to the defalt).
3027
3028 2001-11-26 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3029
3030 * hexl.el (hexl-mode, hexl-follow-ascii): Remove make-local-hook.
3031
3032 * icomplete.el (icomplete-minibuffer-setup): Likewise.
3033
3034 * hilit-chg.el (hilit-chg-set): Likewise.
3035
3036 * speedbar.el (speedbar-mode): Likewise.
3037
3038 * calendar/calendar.el (calendar-mode): Likewise.
3039
3040 * play/yow.el (psychoanalyze-pinhead): Use insert instead of
3041 insert-string.
3042
3043 * play/gamegrid.el (gamegrid-init-buffer): Likewise.
3044
3045 * term/bg-mouse.el (bg-insert-moused-sexp): Likewise.
3046
3047 * term/sun-mouse.el (sun-yank-selection): Likewise.
3048
3049 * textmodes/bib-mode.el (return-key-bib): Likewise.
3050
3051 * calendar/appt.el (appt-disp-window): Likewise.
3052
3053 * calendar/diary-lib.el (list-diary-entries): Likewise.
3054
3055 * array.el (array-reconfigure-rows): Likewise.
3056
3057 * filecache.el (file-cache-minibuffer-complete): Likewise.
3058
3059 * obsolete/cplus-md.el (fill-c++-comment): Likewise.
3060
3061 * strokes.el (strokes-prompt-user-save-strokes): Likewise.
3062
3063 * allout.el (outline-version, outline-open-topic)
3064 (outline-rebullet-heading, outline-insert-listified)
3065 (outline-latex-verbatim-quote-curr-line)
3066 (outline-latexify-one-item, outlineify-sticky): Likewise.
3067
3068 * vc.el (vc-next-action-on-file): Likewise.
3069 (vc-dired-mode): Remove make-local-hook.
3070
3071 2001-11-26 Andre Spiegel <spiegel@gnu.org>
3072
3073 * vc.el (vc-find-version): New function.
3074 (vc-version-other-window): Redefined in terms of the above.
3075
3076 * log-view.el (log-view-find-version): New function.
3077 (log-view-mode-map): Bind it to `f'.
3078
3079 2001-11-26 Gerd Moellmann <gerd@gnu.org>
3080
3081 * language/devan-util.el (dev-char-glyph): Escape `"' in
3082 string literals.
3083 (dev-glyph-glyph, dev-glyph-glyph-2)
3084 (devanagari-compose-syllable-region): Likewise.
3085
3086 2001-11-26 Richard M. Stallman <rms@gnu.org>
3087
3088 * window.el (save-selected-window): No error if saved window is dead.
3089
3090 * help-funs.el (describe-syntax): Put (interactive) after doc string.
3091
3092 2001-11-26 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3093
3094 * international/quail.el (quail-help): Require help-mode in
3095 top-level instead.
3096
3097 * iswitchb.el (iswitchb-exhibit): Use insert instead of
3098 insert-string.
3099
3100 * icomplete.el (icomplete-exhibit): Likewise.
3101
3102 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
3103
3104 * diff-mode.el (diff-end-of-hunk): Watch out for ambiguities.
3105 (diff-hunk-kill): Simplify.
3106 (diff-post-command-hook): Only apply to a single hunk.
3107 (diff-hunk-text): Make `char-offset' non-optional.
3108 (diff-find-text): Return a cons cell.
3109 (diff-find-approx-text): New fun.
3110 (diff-find-source-location): Use it.
3111 (diff-apply-hunk, diff-test-hunk, diff-goto-source):
3112 Adapt to new retval of diff-find-text.
3113
3114 * vc-cvs.el (vc-cvs-parse-entry): Rewrite, comparing the string-
3115 rather than integer- representation of dates.
3116
3117 * textmodes/fill.el (fill-indent-according-to-mode): Default to nil.
3118
3119 * emacs-lisp/syntax.el: Don't profile syntax-ppss any more.
3120 (syntax-after): New fun.
3121
3122 * help-funs.el (describe-syntax): New fun.
3123
3124 * font-lock.el (font-lock-cache-state, font-lock-cache-position)
3125 (font-lock-ppss-stats, font-lock-ppss): Remove.
3126 (font-lock-fontify-syntactically-region): Remove tuning code.
3127 (font-lock-compile-keywords): Fix off-by-one bug.
3128 (font-lock-set-defaults): Don't set removed vars.
3129 (c-keywords): Add `inline'.
3130 (c-type-names): Add `_Complex', `_Imaginary' and `_Bool'.
3131
3132 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
3133 Set syntax-begin-function.
3134 (lisp-interaction-mode-abbrev-table): Defvar to its correct value.
3135 (lisp-interaction-mode): Don't set local-abbrev-table any more.
3136 (lisp-mode-auto-fill): Use syntax-ppss and obey
3137 comment-auto-fill-only-comments.
3138 (lisp-fill-paragraph): Use syntax-ppss.
3139
3140 2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
3141
3142 * mail/rmail.el (rmail-enable-mime-composing): New. A lightweight
3143 version of rmail-enable-mime.
3144 (rmail-forward): Use it.
3145
3146 2001-11-25 Richard M. Stallman <rms@gnu.org>
3147
3148 * emacs-lisp/lisp-mode.el (lisp-indent-function): Add doc string.
3149
3150 * international/quail.el (quail-keyboard-layout-button):
3151 Define button type.
3152 (quail-keyboard-customize-button): Likewise.
3153 (quail-help): Use those button types. Require `help-mode'.
3154 Avoid altering the argument `package'.
3155
3156 * help-mode.el (help-function, help-variable, help-face)
3157 (help-coding-system, help-input-method, help-character-set):
3158 Define each button type with its own explicit define-button-type.
3159
3160 * language/devan-util.el: Comment out parts of the file
3161 which apparently are garbled.
3162
3163 2001-11-25 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3164
3165 * mail/smtpmail.el (smtpmail-deduce-address-list): Don't use
3166 insert-string.
3167
3168 2001-11-25 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3169
3170 * play/snake.el (snake-mode): Remove make-local-hook.
3171
3172 * play/tetris.el (tetris-mode): Likewise.
3173
3174 * play/decipher.el (decipher-mode): Likewise.
3175
3176 * tmm.el (tmm-add-prompt): Likewise.
3177
3178 2001-11-25 Sam Steingold <sds@gnu.org>
3179
3180 * menu-bar.el (menu-bar-apropos-menu): New variable.
3181 Moved all `apropos' bindings to this menu.
3182 (menu-bar-help-menu): Added `menu-bar-apropos-menu'.
3183
3184 2001-11-24 KAWABATA, Taichi <batta@beige.ocn.ne.jp>
3185
3186 The following changes are for new indian languages support based
3187 on Unicode charset and CDAC fonts.
3188
3189 * international/mule-conf.el: Change indian-1-column charset to
3190 indian-glyph charset.
3191
3192 * international/characters.el: Adjusted for the change of
3193 indian-1-column -> indian-glyph.
3194
3195 * international/fontset.el: Delete the setting for indian-1-column
3196 and add the setting for indian-glyph in the default fontset.
3197
3198 * language/indian.el: Completely re-written.
3199
3200 * language/devanagari.el: Completely re-written.
3201
3202 * language/devan-util.el: Completely re-written.
3203
3204 * language/ind-util.el: New file.
3205
3206 2001-11-24 Richard M. Stallman <rms@gnu.org>
3207
3208 * startup.el (command-line-1): Don't do startup screen
3209 if a subprocess is running. Call the startup screen buffer
3210 "GNU Emacs". Make a special mode-line-format for it.
3211
3212 * net/browse-url.el (browse-url-galeon-new-window-is-tab): New var.
3213 (browse-url-galeon): Use that variable.
3214
3215 * mail/supercite.el (sc-toggle-var): Don't use set-variable or
3216 eval-expression. Eval and set the variable simply.
3217
3218 * files.el (temporary-file-directory): Use defcustom.
3219 (small-temporary-file-directory): Likewise.
3220 (normal-backup-enable-predicate): Move down in file
3221 after definition of temporary-file-directory.
3222
3223 * bindings.el (last-buffer, unbury-buffer): Doc fixes.
3224
3225 2001-11-24 Colin Walters <walters@debian.org>
3226
3227 * calc/calc-ext.el (calc-init-extensions): Update the rest of the
3228 autoload names to match files renamed on initial calc import.
3229
3230 * calc/calc.el (Commentary): Cleanup, and add logistic curve
3231 fitting suggestion from Robert J. Chassell <bob@rattlesnake.com>.
3232
3233 2001-11-23 Colin Walters <walters@debian.org>
3234
3235 * Makefile.in (finder_setwins, setwins): Include Calc again.
3236
3237 * calc/calc-rules.el: Add header comment.
3238
3239 2001-11-23 Andre Spiegel <spiegel@gnu.org>
3240
3241 * vc.el (with-vc-properties): Don't bind `filename' locally.
3242 (with-vc-file, edit-vc-file): Use `make-symbol' for local bindings
3243 to avoid name clashes. Fix `lisp-indent-function' property for
3244 both.
3245
3246 2001-11-23 Francesco Potorti` <pot@gnu.org>
3247
3248 * generic-x.el (mailrc-generic-mode): Highlight the `source' keyword.
3249
3250 2001-11-22 Colin Walters <walters@debian.org>
3251
3252 * calc/calc-misc.el (report-calc-bug):
3253 Use `reporter-prompt-for-summary-p'.
3254
3255 * calc/INSTALL, calc/Makefile: Remove.
3256
3257 2001-11-22 Miles Bader <miles@gnu.org>
3258
3259 * emacs-lisp/re-builder.el (reb-match-0, reb-match-1)
3260 (reb-match-2, reb-match-3): Add dark-background variants.
3261
3262 2001-11-22 Colin Walters <walters@debian.org>
3263
3264 * calc/calc-misc.el (calc-info): Don't perform voodoo, just
3265 (info "Calc").
3266 (report-calc-bug): Use reporter.el.
3267
3268 * mail/reporter.el (reporter-submit-bug-report): Doc fixes.
3269
3270 2001-11-21 Richard M. Stallman <rms@gnu.org>
3271
3272 * which-func.el (which-function): Call imenu--make-index-alist
3273 if necessary to get a list of functions.
3274 (which-function-imenu-failed): New variable.
3275 (which-func-update): Handle all visible windows.
3276 (which-func-update-1): New subroutine broken out of which-func-update.
3277
3278 * files.el (temporary-file-directory, null-device)
3279 (small-temporary-file-directory): Definitions moved up.
3280
3281 * progmodes/cperl-mode.el (cperl-problems, cperl-tips)
3282 (cperl-non-problems, cperl-praise): Doc fixes.
3283
3284 * progmodes/sh-script.el (sh-mode): Don't use define-derived-mode.
3285 (sh-mode-syntax-table): Function restored.
3286 Variable set up for use by function sh-mode-syntax-table.
3287 (sh-set-shell): Set the syntax table.
3288
3289 * play/gomoku.el (gomoku-mode): Don't use define-derived-mode.
3290
3291 * progmodes/perl-mode.el (perl-mode): Don't use define-derived-mode.
3292
3293 * international/encoded-kb.el: Don't alter minor-map-alist.
3294
3295 2001-11-20 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
3296
3297 * files.el (auto-save-file-name-transforms): Put remote files in
3298 temporary-file-directory rather than /tmp.
3299
3300 2001-11-21 Colin Walters <walters@debian.org>
3301
3302 * calc/calc-macs.el (calc-slow-wrapper): Move (point) call outside
3303 of (function ...) wrapper.
3304
3305 2001-11-20 Stefan Monnier <monnier@cs.yale.edu>
3306
3307 * derived.el (define-derived-mode): Create the abbrev-table
3308 from inside the `defvar'.
3309
3310 * jit-lock.el (jit-lock-defer-time): New var.
3311 (jit-lock-defer-timer, jit-lock-buffers): New vars.
3312 (jit-lock-mode): Initialize them. Cancel the timers more carefully.
3313 (jit-lock-function): Defer fontification if requested.
3314 (jit-lock-stealth-chunk-start): Pay attention to the new non-nil value.
3315 (jit-lock-stealth-fontify): Check the new `jit-lock-defer-multiline'
3316 text property.
3317 (jit-lock-deferred-fontify): New fun.
3318
3319 2001-11-20 Richard M. Stallman <rms@gnu.org>
3320
3321 * emacs-lisp/lisp-mode.el (lisp-interaction-mode):
3322 Set local-abbrev-table to lisp-mode-abbrev-table.
3323
3324 * emacs-lisp/re-builder.el (reb-mode):
3325 Don't use define-derived-mode. Call kill-all-local-variables.
3326
3327 * emacs-lisp/lisp-mode.el (lisp-mode, emacs-lisp-mode):
3328 Don't use define-derived-mode.
3329
3330 * help-mode.el (help-mode): Undo 2001-10-07 change.
3331
3332 * replace.el (occur-mode): Undo 2001-5-20 change.
3333
3334 2001-11-20 Jason Rumney <jasonr@gnu.org>
3335
3336 * w32-fns.el (w32-system-coding-system): Change to an alias for
3337 locale-coding-system.
3338 (set-w32-system-coding-system): Document the above change.
3339 Set locale-coding-system instead.
3340
3341 2001-11-20 Richard M. Stallman <rms@gnu.org>
3342
3343 * ruler-mode.el: Add pagination.
3344 (ruler-mode-toggle-show-tab-stops): No need to
3345 test `ruler-mode' variable.
3346
3347 2001-11-20 Eli Zaretskii <eliz@is.elta.co.il>
3348
3349 * play/landmark.el: Mark lm-mode as special.
3350
3351 * play/gomoku.el: Mark gomoku-mode as special.
3352
3353 2001-11-20 Juanma Barranquero <lektu@terra.es>
3354
3355 * emacs-lisp/re-builder.el (reb-change-target-buffer): New function.
3356 (top-level): Bind it to C-c C-b.
3357 (re-builder): Don't re-enter RE Builder Mode.
3358
3359 * bs.el (bs-delete): Signal an error if the buffer cannot be deleted.
3360
3361 2001-11-20 Stefan Monnier <monnier@cs.yale.edu>
3362
3363 * progmodes/cperl-mode.el (cperl-perldoc): Require man before binding
3364 `manual-program'.
3365
3366 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Don't move back
3367 to a line without a comment.
3368
3369 2001-11-20 Eli Zaretskii <eliz@is.elta.co.il>
3370
3371 * dired.el (dired-listing-switches): Mention in the doc string
3372 that some switches are not supported by ls-lisp.el
3373
3374 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
3375
3376 * imenu.el (imenu--split-menu): Use dolist and copy-sequence.
3377 (imenu--create-keymap-2): Remove.
3378 (imenu--create-keymap-1): Simplify, remove third argument.
3379 (imenu--generic-function): Use dolist.
3380 (imenu-find-default): New function.
3381 (imenu--completion-buffer): Use it.
3382 (imenu--mouse-menu): Use popup-menu.
3383 (imenu--menubar-select): Return t rather than calling imenu.
3384
3385 * textmodes/fill.el (fill-delete-prefix, fill-delete-newlines):
3386 New functions, extracted from fill-region-as-paragraph.
3387 (fill-region-as-paragraph): Use them.
3388 Use an end marker instead of eob.
3389 Ignore whitespace-only fill-prefixes when indenting according to mode.
3390 Simplify the loop that searches for spaces backwards.
3391
3392 * textmodes/picture.el (picture-vertical-step)
3393 (picture-horizontal-step): Don't use defconst for variables.
3394
3395 * mail/mail-extr.el: Use backquote/dolist/mapc/when. Docstring fixes.
3396 (mail-extract-address-components): Downcase domain names.
3397 (mail-extr-delete-char): Remove. Use delete-char instead.
3398
3399 * emulation/pc-select.el: Doc string fixes.
3400 (pc-selection-mode): Don't treat macos as a tty.
3401
3402 * emacs-lisp/lisp.el (mark-sexp): Mark more if repeated.
3403
3404 * progmodes/cc-engine.el (c-parse-state): Typo. From Martin Stjernholm.
3405
3406 * mwheel.el (mouse-wheel-scroll-amount): Allow float values.
3407 (mouse-wheel-progessive-speed): New var.
3408 (mwheel-scroll): Use it and handle float values.
3409
3410 * lazy-lock.el (lazy-lock-install-hooks): Remove make-local-hook.
3411
3412 * iswitchb.el (iswitchb-mode): Use define-minor-mode.
3413 (iswitchb): Fix the case where the result was selected with the mouse.
3414 (iswitchb-completion-help): Use the normal *Completions* now that
3415 mouse selection works.
3416 (iswitchb-minibuffer-setup): Simplify.
3417
3418 * newcomment.el (comment-column, comment-style, comment-multi-line)
3419 (comment-auto-fill-only-comments): Remove :group arg.
3420 (comment-padding): Add :type.
3421 (comment-indent-new-line): Ignore comment-auto-fill-only-comments
3422 if called interactively.
3423
3424 2001-11-19 Colin Walters <walters@verbum.org>
3425
3426 * calc/calc.el (toplevel): Add comment and version header.
3427 (calc-init-base): Bump version to 2.02f, update date.
3428
3429 2001-11-19 Richard M. Stallman <rms@gnu.org>
3430
3431 * net/browse-url.el: Support Mozilla and Galeon.
3432 By default, find the installed browser whichever it is.
3433 (browse-url-mozilla): New function.
3434 (browse-url-mozilla-sentinel): New function.
3435 (browse-url-galeon, browse-url-galeon-sentinel): New functions.
3436 (browse-url-default-browser): New function.
3437 (browse-url-process-environment): Use browse-url-browser-display.
3438 (browse-url-browser-display): Renamed from browse-url-netscape-display.
3439 (browse-url-mozilla-startup-arguments, browse-url-galeon-program)
3440 (browse-url-galeon-arguments, browse-url-galeon-startup-arguments)
3441 (browse-url-mozilla-program, browse-url-mozilla-arguments): New vars.
3442 (browse-url-browser-function): New default, new options.
3443
3444 2001-11-19 Sam Steingold <sds@gnu.org>
3445
3446 * bindings.el (last-buffer, unbury-buffer): New function.
3447 (mode-line-unbury-buffer): Use `unbury-buffer'.
3448
3449 2001-11-18 Stephen Eglen <stephen@gnu.org>
3450
3451 * iswitchb.el (iswitchb-cannot-complete-hook): New variable to
3452 control behaviour when no further completion is possible.
3453
3454 2001-11-19 Colin Walters <walters@verbum.org>
3455
3456 * calc/calc-macs.el (calc-wrapper, calc-slow-wrapper)
3457 (math-showing-full-precision, math-with-extra-prec, math-working)
3458 (calc-with-default-simplification)
3459 (calc-with-trail-buffer): Use backtick.
3460 (Math-zerop, Math-integer-negp, Math-integer-posp, Math-negp)
3461 (Math-looks-negp, Math-posp, Math-integerp, Math-natnump)
3462 (Math-ratp, Math-realp, Math-anglep, Math-numberp, Math-scalarp)
3463 (Math-vectorp, Math-messy-integerp, Math-objectp, Math-objvecp)
3464 (Math-integer-neg, Math-equal, Math-lessp, Math-primp)
3465 (Math-num-integerp, Math-bignum-test, Math-equal-int)
3466 (Math-natnum-lessp, math-format-radix-digit): Change to `defsubst'.
3467 (calc-record-compilation-date-macro): Deleted. Callers updated.
3468 (math-format-radix-digit): Move to calc-bin.el.
3469
3470 * calc/calc.el (calc-record-compilation-date): Remove.
3471 (calc-bug-address): Update.
3472 (calc-settings-file): Use `user-init-file'.
3473
3474 * calc/calc-mode.el (calc-settings-file-name, calc-save-modes):
3475 Handle null `calc-settings-file'.
3476
3477 * calc/calc-frac.el (calc-over-notation): Use `completing-read'.
3478 * calc/calc-keypd.el (calc-keypad-mode): New.
3479 (calc-do-keypad): Use it.
3480 (calc-keypad-map): Move into `calc-keypad-mode'.
3481
3482 * calc-math.el (calcFunc-sqrt, calcFunc-hypot): Add missing quote
3483 to defalias argument.
3484
3485 * calc-misc.el (math-fixnump, math-fixnatnump, calcFunc-trunc)
3486 (calcFunc-floor): Ditto.
3487
3488 * calc-units.el (calcFunc-usimplify): Ditto.
3489
3490 * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
3491 * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
3492 * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
3493 * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
3494 * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
3495 * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
3496 * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
3497 * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
3498 * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
3499 * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
3500 * calcsel2.el: Change all toplevel `setq' forms to `defvar' forms,
3501 and move them before their first use. Use `when', `unless'.
3502 Remove trailing periods from error forms. Add description and
3503 headers suggested by Emacs Lisp coding conventions.
3504
3505 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
3506
3507 * newcomment.el (comment-indent):
3508 Fix misindentation for comment-only lines.
3509 (comment-indent-new-line): Only obey comment-multi-line if the
3510 comment-ender is not the end-of-line.
3511
3512 2001-11-19 Richard M. Stallman <rms@gnu.org>
3513
3514 * net/net-utils.el (network-connection-service-abbrev-alist):
3515 New variable.
3516
3517 * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
3518 Advance to start of 3rd sexp by moving fwd and backing over it.
3519 At first three elements, act like defun.
3520
3521 * delsel.el (delete-selection-pre-hook): Handle and resignal
3522 file-supersession errors to interact properly with userlock.el.
3523
3524 2001-11-18 Richard M. Stallman <rms@gnu.org>
3525
3526 * progmodes/fortran.el (fortran-mode-syntax-table):
3527 Specify punctuation syntax for backslash.
3528
3529 * progmodes/sh-script.el (sh-must-be-shell-mode): Function deleted.
3530 All calls deleted.
3531
3532 * international/mule-util.el (string-to-sequence): Make it obsolete.
3533 (string-to-list, string-to-vector): Implement them directly
3534 using append and vconcat, not with string-to-sequence.
3535
3536 * startup.el (command-line): Set abbrevs-changed to nil after
3537 reading the init file and the abbrevs file.
3538
3539 * isearch.el (isearch): Use magenta2 as bg for (background light)
3540
3541 2001-11-17 Richard M. Stallman <rms@gnu.org>
3542
3543 * menu-bar.el (menu-bar-update-buffers-1): Don't pad the buffer name.
3544
3545 * simple.el (minibuffer-history-sexp-flag): Doc fix.
3546
3547 2001-11-17 Stefan Monnier <monnier@cs.yale.edu>
3548
3549 * font-lock.el (font-lock-compile-keywords): New arg `regexp'.
3550 If set and if applicable, add a regexp to highlight defun-like
3551 text inside comments and strings.
3552 (font-lock-fontify-keywords-region): Pass that new arg.
3553 (font-lock-set-defaults): Move the code to set `font-lock-keywords'
3554 to the end and pass that new arg.
3555 (c-font-lock-keywords-2): Fix regex for labels.
3556 (font-lock-match-c++-style-declaration-item-and-skip-to-next):
3557 Make it work when LIMIT is several lines further.
3558 (c-font-lock-keywords-3, c++-font-lock-keywords-3)
3559 (objc-font-lock-keywords-3, java-font-lock-keywords-3):
3560 Use backquote and make the regexes for `int a, b, c;' work on
3561 multiple lines.
3562
3563 * emacs-lisp/re-builder.el (reb-mode): Use define-derived-mode.
3564 (font-lock-defaults-alist): Don't change it any more.
3565 (reb-subexp-mode-map): Cleanup.
3566
3567 * custom.el (custom-current-group-alist): New var.
3568 (custom-declare-group): Set it.
3569 (custom-current-group): New fun.
3570 (custom-declare-variable, custom-handle-all-keywords):
3571 Use it as a default if no :group argument is specified.
3572
3573 * international/mule-cmds.el (locale-name-match): Use \` and \(?:.
3574 (standard-keyboard-coding-systems): New var.
3575 (set-locale-environment): Use it to decide whether or not to call
3576 set-keyboard-coding-system.
3577 (locale-language-names): Use \"French\" for "fr".
3578
3579 2001-11-17 Richard M. Stallman <rms@gnu.org>
3580
3581 * emacs-lisp/checkdoc.el (princ-list, checkdoc-read-event)
3582 (add-to-list): Delete compatibility code.
3583 (checkdoc-next-message-error): Doc fix.
3584
3585 2001-11-17 Stephen Eglen <stephen@gnu.org>
3586
3587 * locate.el (locate): Show default locate pattern within the
3588 prompt, but don't insert it into the minibuffer contents.
3589 Catch the case when pattern is the empty string.
3590
3591 2001-11-17 Eli Zaretskii <eliz@is.elta.co.il>
3592
3593 * language/european.el ("French"): New language environment.
3594
3595 2001-11-16 Richard M. Stallman <rms@gnu.org>
3596
3597 * calendar/todo-mode.el (todo-save): Fix previous change.
3598
3599 * subr.el (functionp): Do use cdr-safe on object.
3600
3601 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
3602
3603 * bindings.el (mode-line-mode-name): Only put the help-echo property
3604 if the local-map property was put as well.
3605 (global-map): Bind switch-frame, delete-frame, iconify-frame
3606 and make-frame-visible events.
3607
3608 * emacs-lisp/elp.el (elp-not-profilable): New var.
3609 (elp-not-profilable-p): New function.
3610 (elp-instrument-function): Use it. Use backquotes and push.
3611
3612 * emacs-lisp/bytecomp.el (byte-compile-call-tree, byte-code-vector)
3613 (byte-stack+-info, byte-compile-last-warned-form)
3614 (byte-compile-last-logged-file): Don't defconst a variable.
3615 (no-byte-compile): Declare.
3616 (byte-compile-file): Don't boundp-check no-byte-compile any more.
3617 (byte-compile-defvar): Leave defconst as is.
3618
3619 * emacs-lisp/edebug.el (edebug-form-data, edebug-offsets)
3620 (edebug-offsets-stack, edebug-read-dotted-list, edebug-def-name)
3621 (edebug-current-offset, edebug-old-def-name, edebug-error-point)
3622 (edebug-best-error): Don't defconst a variable.
3623 (edebug-read-syntax-table): Use a char-table.
3624 (edebug-lemacs-specific): Remove.
3625 Toplevel: Eliminate check for Lucid Emacs.
3626
3627 * pcvs-util.el (cvs-prefix-define): Don't defconst a variable.
3628
3629 * rect.el (move-to-column-force): Mark obsolete.
3630 (operate-on-rectangle, delete-extract-rectangle-line)
3631 (insert-rectangle, delete-whitespace-rectangle-line)
3632 (open-rectangle-line, clear-rectangle-line): Use move-to-column.
3633 (string-rectangle-history): New var.
3634 (string-rectangle, string-insert-rectangle): Use it.
3635 (delete-rectangle-line): Fix pos/column mixup and simplify.
3636
3637 * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
3638 (normal-top-level, command-line, command-line-1): Simplify.
3639
3640 * tar-mode.el (tar-mode): Use define-derived-mode.
3641
3642 * view.el (view-mode-enable): Don't use make-local-hook.
3643
3644 * emacs-lisp/eldoc.el (eldoc-mode): Use define-minor-mode.
3645
3646 2001-11-16 Richard M. Stallman <rms@gnu.org>
3647
3648 * mail/mail-extr.el (mail-extr-voodoo): Treat a number as a word
3649 if it doesn't make sense as anything else.
3650 Don't recognize a "telephone number" at the beginning of the name.
3651 (mail-extr-leading-garbage): Match non-word characters only.
3652
3653 2001-11-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3654
3655 * startup.el (command-line-processed): Doc fix.
3656
3657 * apropos.el (apropos-next-label-button): Doc fix.
3658
3659 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
3660
3661 * comint.el (comint-mode): Simplify.
3662 (make-comint-in-buffer): Run `comint-mode' only if necessary.
3663
3664 * subr.el (eval-after-load): Make it work with features as well.
3665
3666 * log-view.el (log-view-mode): Don't mark the buffer unmodified.
3667
3668 * international/mule-cmds.el (describe-input-method): Setup xref.
3669 (set-language-environment): Use functionp.
3670 (locale-language-names, locale-charset-language-names)
3671 (locale-preferred-coding-systems): Defconst and purecopy.
3672
3673 * language/european.el (mac-roman): Add mime-charset property.
3674
3675 2001-11-15 Richard M. Stallman <rms@gnu.org>
3676
3677 * emacs-lisp/cl.el (values, values-list, multiple-value-list)
3678 (multiple-value-apply, nth-value): Use defsubst rather than defalias
3679 to get better doc strings.
3680
3681 2001-11-15 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3682
3683 * derived.el: Fix autoload cookie.
3684
3685 2001-11-15 Richard M. Stallman <rms@gnu.org>
3686
3687 * jka-compr.el (jka-compr-partial-uncompress): Fix previous change.
3688
3689 2001-11-15 Stefan Monnier <monnier@cs.yale.edu>
3690
3691 * menu-bar.el (menu-bar-edit-menu) <copy>: Put an explicit key binding.
3692
3693 2001-11-15 Richard M. Stallman <rms@gnu.org>
3694
3695 * dired.el (dired-undo): Display a message to explain
3696 that this does not undo file system changes.
3697
3698 2001-11-15 David Kastrup <David.Kastrup@t-online.de>
3699
3700 * mouse-drag.el (mouse-drag-throw): Push back non-drag events
3701 into `unread-command-events' instead of trying keymap
3702 lookups ourselves. This makes mouse-clicks do the right
3703 thing even when keymaps of overlays are involved.
3704 (mouse-drag-drag): Likewise.
3705
3706 2001-11-15 Andreas Schwab <schwab@suse.de>
3707
3708 * progmodes/ada-mode.el (ada-add-extensions): Quote regexp special
3709 characters and append anchor to pattern added to auto-mode-alist.
3710
3711 2001-11-15 Stefan Monnier <monnier@cs.yale.edu>
3712
3713 * server.el (server-process-filter): Run pore/post-comment-hook
3714 before/after visiting the file.
3715
3716 * info-look.el (makefile-mode): Add info for automake.
3717 (autoconf-mode): Fix the name of the index for automake.
3718
3719 * international/latin-9.el: Give pilcrow punctuation syntax.
3720
3721 2001-11-15 Andre Spiegel <spiegel@gnu.org>
3722
3723 * vc.el: Documentation fixes.
3724
3725 2001-11-14 Stefan Monnier <monnier@cs.yale.edu>
3726
3727 * smerge-mode.el (smerge-match-conflict): Fix typo.
3728 (smerge-diff): Be careful to read match-data early enough.
3729
3730 2001-11-14 Colin Walters <walters@verbum.org>
3731
3732 * calc/calc-alg.el (calcFunc-esimplify, calcFunc-simplify)
3733 (calcFunc-subst): Use `defalias' instead of `fset' and
3734 `symbol-function'.
3735
3736 * calc/calc-arith.el (calcFunc-abs, calcFunc-float)
3737 (calcFunc-ceil, calcFunc-round): Ditto.
3738
3739 * calc/calc-bin.el (calcFunc-clip): Ditto.
3740
3741 * calc/calc-ext.el (calcFunc-evalv): Ditto.
3742
3743 * calc/calc-math.el (calcFunc-sqrt, calcFunc-hypot): Ditto.
3744
3745 * calc/calc-misc.el (math-fixnump, math-fixnatnump)
3746 (calcFunc-trunc, calcFunc-floor, calc-report-bug): Ditto.
3747
3748 * calc/calc-units.el (calcFunc-unsimplify): Ditto.
3749
3750 * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
3751 * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
3752 * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
3753 * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
3754 * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
3755 * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
3756 * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
3757 * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
3758 * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
3759 * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
3760 * calcsel2.el: Style cleanup; don't put closing parens on their
3761 own line, add "foo.el ends here" to each file, and update
3762 copyright date.
3763
3764 * README: Update maintainer.
3765
3766 2001-11-13 Richard M. Stallman <rms@gnu.org>
3767
3768 * progmodes/compile.el (recompile): Use compilation-arguments if
3769 set, so as to be able to M-x recompile the exact command which
3770 created a compilation-mode buffer.
3771
3772 * progmodes/ada-mode.el (ada-fill-comment-prefix): Doc fix.
3773
3774 2001-11-13 Gerd Moellmann <gerd@gnu.org>
3775
3776 * mouse.el (mouse-drag-region): Don't run the up-event
3777 handler if window start changed due to the down-mouse event.
3778
3779 2001-11-13 Richard M. Stallman <rms@gnu.org>
3780
3781 * mouse.el (mouse-show-mark): Either move point to the mark
3782 or use highlighting, never both.
3783 (mouse-buffer-menu): If WINDOW is a frame, select its selected window.
3784
3785 2001-11-13 Simon Josefsson <jas@extundo.com>
3786
3787 * mail/smtpmail.el (top-level): Change maintainer to Simon
3788 Josefsson, cleanup the smtpmail.el header.
3789
3790 * mail/smtpmail.el (top-level): Don't require cl or base64.
3791 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
3792 (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd):
3793 Defsubst instead of defmacro.
3794 (smtpmail-intersection): Return value in reverse order.
3795 (smtpmail-open-stream): Use stringp instead of string-to-list.
3796 (smtpmail-open-stream, smtpmail-try-auth-methods): New functions,
3797 separated from smtpmail-via-smtp.
3798
3799 * mail/smtpmail.el (top-level): Autoload starttls, mail-utils and
3800 rfc2104. Require base64 and cl.
3801 (smtpmail-smtp-service): Doc fix. :type fix.
3802 (smtpmail-debug-info): Doc fix.
3803 (smtpmail-debug-verb, smtpmail-auth-credentials)
3804 (smtpmail-starttls-credentials, smtpmail-auth-supported):
3805 New variables.
3806 (smtpmail-deduce-address-list, smtpmail-send-it): Don't require
3807 mail-utils (it is autoloaded).
3808 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
3809 (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd)
3810 (smtpmail-find-credentials, smtpmail-intersection): New utility funs.
3811 (smtpmail-via-smtp): Support STARTTLS, if binary is installed.
3812 (smtpmail-via-smtp): Support AUTH.
3813 (smtpmail-via-smtp): Use `smtpmail-debug-verb' to control VERB.
3814
3815 2001-11-13 Richard M. Stallman <rms@gnu.org>
3816
3817 * ebuff-menu.el (electric-buffer-update-highlight): New function.
3818 (electric-buffer-overlay): New variable.
3819 (electric-buffer-menu-looper): Call electric-buffer-update-highlight.
3820 (electric-buffer-list): Likewise.
3821
3822 * isearch.el (isearch-whitespace-chars): Doc fix.
3823 (isearch-mode): Handle negative search-slow-window-lines correctly.
3824
3825 2001-11-13 Stefan Monnier <monnier@cs.yale.edu>
3826
3827 * newcomment.el (comment-normalize-vars): Handle a nil comment-padding.
3828
3829 * progmodes/ada-mode.el (ada-fill-comment-prefix): GNAT wants 2 spaces.
3830 From Emmanuel Briot <briot@act-europe.fr>.
3831
3832 2001-11-13 Colin Walters <walters@debian.org>
3833
3834 * calc/calc.el (calc-unread-command): Use `unread-command-events'.
3835
3836 * calc/calc-mode.el (calc-settings-file-name): Don't hardcode
3837 "~/.emacs"; use `read-file-name'.
3838
3839 * calc/calc-graph.el, calc/calc-embed.el, calc/calc-graph.el
3840 * calc/calc-misc.el, calc/calc-mode.el, calc/calc-prog.el
3841 * calc/calc-sel.el, calc/calc-store.el, calc/calc-yank.el
3842 * calc/calc.el: Use `frame-width' instead of `screen-width',
3843 `frame-height' instead of `screen-height', and,
3844 `executing-kbd-macro' instead of `executing-macro'.
3845
3846 * calc/calc-embed.el (calc-do-embedded): Call `y-or-n-p' with
3847 correct number of arguments.
3848
3849 * calc/calc-aent.el (calc-do-alg-entry):
3850 Use `blink-paren-function' instead of `blink-paren-hook'.
3851
3852 2001-11-12 Richard M. Stallman <rms@gnu.org>
3853
3854 * calendar/todo-mode.el (todo-save): Add save-excursion
3855 and save-restriction.
3856
3857 * server.el (server-edit, server-done): Doc fix.
3858
3859 * simple.el (clone-indirect-buffer): Error if major mode symbol
3860 has a no-clone-indirect property.
3861 (clone-buffer): Check for obvious errors before reading clone name.
3862
3863 * info.el (Info-mode): Add a no-clone-indirect property.
3864
3865 2001-11-12 Sam Steingold <sds@gnu.org>
3866
3867 * vc.el (vc-print-log): Bind `inhibit-read-only' to t before and
3868 set-buffer-modified-p to nil after `vc-exec-after'.
3869 * log-view.el (log-view-mode-map): Bind "q", "z", "m" and "d".
3870 (log-view-mode): Make read-only.
3871 (log-view-current-file): Do final `expand-file-name' in the
3872 current `default-directory'.
3873 (log-view-current-tag): Take an optional `where' arg.
3874 (log-view-diff): New user command.
3875
3876 2001-11-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3877
3878 * progmodes/cpp.el (cpp-choose-face): Fix typo.
3879
3880 2001-11-12 Sam Steingold <sds@gnu.org>
3881
3882 * emacs-lisp/cl-indent.el (toplevel): Indent properly
3883 `generic-flet', `generic-labels', `with-accessors',
3884 `with-condition-restarts'.
3885
3886 2001-11-12 Richard M. Stallman <rms@gnu.org>
3887
3888 * dired.el: Many trivial doc fixes.
3889 (dired-get-file-for-visit): New function.
3890 (dired-find-alternate-file, dired-mouse-find-file-other-window):
3891 (dired-view-file, dired-find-file-other-window, dired-display-file):
3892 (dired-find-file): Use dired-get-file-for-visit.
3893
3894 2001-11-12 Alex Schroeder <kensanata@yahoo.com>
3895
3896 * sql.el (sql-mode): Doc change.
3897
3898 * sql.el (sql-mode-syntax-table): The backslash is no longer an
3899 escape character.
3900
3901 2001-11-12 Colin Walters <walters@debian.org>
3902
3903 * calc/calc-keypd.el (toplevel): Bind mouse buttons.
3904 (calc-do-keypad): Don't attempt to use nonexistent global
3905 mouse-map, use calc-keypad-map.
3906 (calc-keypad-x-left-click): Renamed to calc-keypad-left-click.
3907 (calc-keypad-left-click): Don't use mouse-map; update to new event
3908 interface.
3909 (calc-keypad-x-middle-click, calc-keypad-x-right-click): Ditto.
3910 (calc-keypad-press): Use `unread-command-events' instead of
3911 `unread-command-char'.
3912
3913 * calc/calc-ext.el (calc-init-extensions): Update autoload names
3914 to match files renamed on initial calc import.
3915
3916 2001-11-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3917
3918 * textmodes/flyspell.el (flyspell-default-dictionary):
3919 Fix previous change.
3920
3921 2001-11-12 Richard M. Stallman <rms@gnu.org>
3922
3923 * textmodes/flyspell.el (flyspell-default-dictionary):
3924 Fix custom type.
3925
3926 2001-11-11 Richard M. Stallman <rms@gnu.org>
3927
3928 * calendar/solar.el (solar-sunrise-and-sunset):
3929 Exchange the two extreme values of day-length.
3930
3931 * progmodes/sh-script.el (sh-must-be-shell-mode):
3932 Allow modes derived from sh-mode.
3933
3934 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
3935 Turn off error in some re-search-forward calls.
3936
3937 * replace.el (query-replace-skip-read-only): New variable.
3938 (perform-replace): If that variable is non-nil, ignore matches
3939 that have a read-only property.
3940
3941 * derived.el (define-derived-mode): Doc fix.
3942
3943 * server.el (server-buffer-done): Test of server-existing-buffer
3944 was backwards.
3945 (server-existing-buffer): Doc fix.
3946
3947 * textmodes/flyspell.el (flyspell-default-dictionary):
3948 Allow nil as value, and make nil the default.
3949
3950 2001-11-11 Eli Zaretskii <eliz@is.elta.co.il>
3951
3952 * menu-bar.el (menu-bar-edit-menu): Don't use x-selection-exists-p if
3953 it is not fboundp.
3954 (clipboard-yank): Ditto.
3955
3956 2001-11-11 Colin Walters <walters@verbum.org>
3957
3958 The following changes are based on patches from
3959 Eli Zaretskii <eliz@is.elta.co.il>, Kai Gro\e,A_\e(Bjohann
3960 <Kai.Grossjohann@CS.Uni-Dortmund.DE>, and others.
3961
3962 * calc/calc.el (toplevel): Require calc-macs.
3963 (calc-minibuffer-size): New.
3964 (calcDigit-nondigit): Use it instead of `buffer-size'.
3965 (calcDigit-backspace): Likewise.
3966 (calcDigit-nondigit): Use `minibuffer-contents' instead of
3967 `buffer-string'.
3968 (calc-minibuffer-contains): Use `minibuffer-prompt-end' instead of
3969 `point-min'.
3970 (calcDigit-key): Use `calc-minibuffer-contains' instead of a
3971 `save-excursion'.
3972
3973 * calc/calc-macs.el (calc-record-compilation-date-macro): Return a
3974 simple `setq' form.
3975
3976 * calc/calc-ext.el: (toplevel): Require calc.
3977 (calc-fancy-prefix-map): New.
3978 (calc-fancy-prefix): Use it.
3979 (calc-fancy-prefix-other-key): New.
3980
3981 * calc/calc-aent.el (toplevel): Require calc-macs during compilation.
3982 (calc-do-quick-calc): Use `frame-width' instead of `screen-width'.
3983 (calcAlg-edit): Use `minibuffer-contents' instead of `buffer-string'.
3984 (calcAlg-enter): Likewise.
3985 (calcAlg-enter): Use `minibuffer-prompt-end' instead of `point-min'.
3986
3987 2001-11-10 Richard M. Stallman <rms@gnu.org>
3988
3989 * abbrev.el (read-abbrev-file): Don't set save-abbrevs.
3990 (quietly-read-abbrev-file): Doc fix.
3991
3992 * startup.el (command-line): Read standard abbrev
3993 file (abbrev-file-name), if it exists.
3994
3995 * files.el (save-abbrevs): Default value is t.
3996
3997 * progmodes/compile.el (compile-goto-error): Fix previous change
3998 in the case where subsequent errors have not been parsed yet
3999 because they are in a different source file.
4000
4001 2001-11-10 Peter Kleiweg <kleiweg@let.rug.nl>
4002
4003 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
4004 Merge two regular expressions into one.
4005 (ps-mode): Make local bindings for `comment-start' and
4006 `comment-start-skip'.
4007 (ps-mode-looking-at-nested): Simplify an if-else construct;
4008 use `set-match-data' to set the result.
4009
4010 2001-11-10 Richard M. Stallman <rms@gnu.org>
4011
4012 * textmodes/flyspell.el (flyspell-correct-word/local-keymap):
4013 Function deleted.
4014 (flyspell-correct-word): Old definition deleted.
4015 (flyspell-correct-word/mouse-keymap): Renamed to flyspell-correct-word.
4016 All references renamed too.
4017
4018 2001-11-10 Gerd Moellmann <gerd@gnu.org>
4019
4020 * Makefile.in (finder_setwins, setwins): Exclude Calc.
4021
4022 2001-11-09 Per Abrahamsen <abraham@dina.kvl.dk>
4023
4024 * wid-edit.el (checklist): Removed `:menu-tag'.
4025 (radio-button-choice): Ditto.
4026 (editable-list): Ditto.
4027
4028 2001-11-09 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4029
4030 * play/gomoku.el: Move definitions of constants to the beginning
4031 of file, before their use.
4032
4033 2001-11-09 Richard M. Stallman <rms@gnu.org>
4034
4035 * textmodes/flyspell.el: Use the keymap property
4036 instead of local-map, and don't use a minor-mode map.
4037 (flyspell-mode-map): Variable deleted.
4038 Don't mess with minor-mode-map-alist.
4039 (calling add-minor-mode): Specify nil for keymap.
4040 And always use add-minor-mode, now that it exists.
4041 (flyspell-overlay-keymap-property-name): Set it to `keymap'.
4042 (flyspell-mode-on): Don't locally bind flyspell-mouse-map
4043 or flyspell-local-mouse-map.
4044 (make-flyspell-overlay): Use flyspell-mouse-map directly.
4045 (flyspell-mode): Doc fix.
4046 (flyspell-mode-on): Don't call make-local-hook.
4047
4048 2001-11-09 Sam Steingold <sds@gnu.org>
4049
4050 * emacs-lisp/debug.el (debugger-make-xrefs):
4051 Add buttons to all symbols.
4052
4053 2001-11-09 Andre Spiegel <spiegel@gnu.org>
4054
4055 * vc.el: Add John David Smith to credits.
4056
4057 Suggested by Kalle Olavi Niemitalo <kon@iki.fi>:
4058
4059 * vc-hooks.el (vc-error-occured): Backquotified.
4060 (vc-file-prop-obarray): Use prime length for better efficiency.
4061
4062 * vc.el (vc-clear-context): Fill obarray with 0, not nil.
4063
4064 2001-11-09 Eli Zaretskii <eliz@is.elta.co.il>
4065
4066 * info.el (Info-file-list-for-emacs): Add entries for Calc.
4067
4068 2001-11-09 Miles Bader <miles@gnu.org>
4069
4070 * subr.el (functionp): Don't consider macros as functions.
4071
4072 2001-11-08 Miles Bader <miles@gnu.org>
4073
4074 * subr.el (functionp): Make work correctly for macros and unbound
4075 symbols.
4076
4077 * comint.el (comint-send-input): Fix description of
4078 `comint-process-echoes' in the doc-string.
4079
4080 2001-11-08 Eli Zaretskii <eliz@is.elta.co.il>
4081
4082 * international/mule.el (make-translation-table): Doc fix.
4083 Suggested by Alex Schroeder <alex@gnu.org>.
4084
4085 2001-11-07 Richard M. Stallman <rms@gnu.org>
4086
4087 * info.el (Info-fontify-node): Highlight every third menu item.
4088
4089 2001-11-07 Per Abrahamsen <abraham@dina.kvl.dk>
4090
4091 * cus-edit.el (custom-face-value-create): Don't ignore the
4092 `customized-face' attribute when finding the current face spec.
4093
4094 2001-11-07 Stefan Monnier <monnier@cs.yale.edu>
4095
4096 * subr.el (with-local-quit): New macro.
4097 (make-syntax-table): Always inherit.
4098 (functionp): Be more careful when `object' is a symbol.
4099
4100 * dabbrev.el (dabbrev-completion): Use "*Completions*".
4101
4102 2001-11-07 Paul Eggert <eggert@twinsun.com>
4103
4104 * dired.el (dired-move-to-filename-regexp):
4105 Do not distinguish between ASCII letters and non-ASCII characters.
4106 Don't allow comma except in the form "month day, year".
4107 Don't allow space between month name and comma.
4108 Clean up the code that checks for trailing period, comma, and space.
4109 Remove now-obsolete comments, and add more commentary about
4110 Japanese dates.
4111 Always gobble up trailing spaces, instead of doing it only sometimes.
4112
4113 2001-11-07 Miles Bader <miles@gnu.org>
4114
4115 * paren.el (show-paren-match-face): Add dark-background variant.
4116
4117 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
4118
4119 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Paren typo.
4120 (lisp-mode-variables): Don't set paragraph-{start,separate}.
4121 Don't disable adaptive-fill-mode.
4122 (lisp-fill-paragraph): Use tab-width rather than 8.
4123 Prevent filling the first line of docstrings.
4124
4125 2001-11-06 Richard M. Stallman <rms@gnu.org>
4126
4127 * play/gomoku.el (gomoku): Doc fix.
4128
4129 * jka-compr.el (jka-compr-partial-uncompress):
4130 Support an alternative of not using dd.
4131 (jka-compr-dd-program): Use defcustom to define this.
4132 (jka-compr-load-suffixes): Use defcustom.
4133 (jka-compr-mode-alist-additions): Use defcustom.
4134
4135 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
4136
4137 * font-lock.el (font-lock-match-c-style-declaration-item-and-skip-to-next):
4138 Also work when LIMIT is further than the end of line.
4139
4140 2001-11-06 Eli Zaretskii <eliz@is.elta.co.il>
4141
4142 * international/quail.el (quail-update-leim-list-file): Print the
4143 offending file name if some of its quail-define-package forms is broken.
4144
4145 2001-11-05 Richard M. Stallman <rms@gnu.org>
4146
4147 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Return the value
4148 of the evaluated form.
4149
4150 2001-11-05 Paul Eggert <eggert@twinsun.com>
4151
4152 * ls-lisp.el (ls-lisp-time-to-seconds): New function.
4153 (ls-lisp-format-time): Emulate GNU fileutils 4.1.1 ls, whose time
4154 stamps always line up by default. Also, it uses a slightly
4155 different window to determine whether files are "recent".
4156
4157 2001-11-05 Andrew Innes <andrewi@gnu.org>
4158
4159 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
4160 Don't attempt to remake autoloads before nuking .elc files.
4161
4162 2001-11-04 Richard M. Stallman <rms@gnu.org>
4163
4164 * emacs-lisp/lisp-mode.el (last-sexp-toggle-display): Cope if
4165 previous-single-property-change or next-single-char-property-change
4166 returns nil.
4167
4168 * international/mule-cmds.el (set-locale-environment):
4169 Make it interactive; make arg optional.
4170
4171 * international/mule-diag.el (help-funs): Require help-funs.
4172
4173 2001-11-04 Eli Zaretskii <eliz@is.elta.co.il>
4174
4175 * term/internal.el (term-setup-hook): Add IT-setup-unicode-display.
4176
4177 2001-11-04 Miles Bader <miles@gnu.org>
4178
4179 * startup.el (fancy-splash-head): Reapply Gerd's hack to make the
4180 shadow of the splash image grey on a dark background instead of black.
4181
4182 2001-11-03 Stefan Monnier <monnier@cs.yale.edu>
4183
4184 * term.el (all faces): Don't (copy-face 'default <foo>).
4185
4186 * term/xterm.el (function-key-map):
4187 Add entry for `ESC [ 3 ~' -> <delete>
4188 Add entries `ESC O 5 [ABCD]' -> C-{up,down,right,left}.
4189 Use inheritance so that .emacs and terminfo take precedence.
4190
4191 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
4192
4193 * tooltip.el (tooltip-delay): Decrease to 0.7.
4194 (tooltip-hide-delay): Enlarge to 10.
4195
4196 2001-11-03 Richard M. Stallman <rms@gnu.org>
4197
4198 * startup.el (fancy-splash-tail): Explain how to recover
4199 from a crash, if there was a crash.
4200 (command-line-1): Reorganize display of startup screen,
4201 to simplify the logic. Use a temp buffer for it.
4202
4203 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
4204
4205 * frame.el (set-background-color, set-foreground-color):
4206 Call face-set-after-frame-default, to propagate the new colors to
4207 the frame's parameters alist.
4208
4209 * calendar/timeclock.el (timeclock-out): Signal an error if
4210 timeclock-last-event is nil.
4211
4212 2001-11-02 Stefan Monnier <monnier@cs.yale.edu>
4213
4214 * textmodes/fill.el (fill-context-prefix): Fix braino.
4215
4216 * international/quail.el (quail-help):
4217 Use `help-buffer' and move `help-setup-xref' to beginning.
4218
4219 * international/mule-cmds.el (describe-language-environment):
4220 Use `help-buffer' and move `help-setup-xref' to beginning.
4221
4222 * international/mule-diag.el (list-character-sets)
4223 (sort-listed-character-sets, describe-character-set)
4224 (describe-coding-system, describe-fontset, list-fontsets):
4225 Use `help-buffer' and move `help-setup-xref' to beginning.
4226 (describe-char-after): Use `internal-describe-syntax-value'.
4227
4228 2001-11-02 Richard M. Stallman <rms@gnu.org>
4229
4230 * mouse.el (popup-menu): If the user refuses to select
4231 from a menu, don't try to invoke the menu.
4232
4233 2001-11-02 Miles Bader <miles@gnu.org>
4234
4235 * help-mode.el (help-xref): New button type.
4236 (help-function, help-variable, help-face, help-coding-system)
4237 (help-input-method, help-character-set, help-type, help-symbol)
4238 (help-back, help-info, help-customize-variable, help-customize-face)
4239 (help-function-def, help-variable-def): Use it as a supertype.
4240 Remove `action' property.
4241
4242 * international/mule-diag.el (describe-character-set)
4243 (describe-coding-system): Pass correct args to `help-xref-button'.
4244 (sort-listed-character-sets): New button type.
4245 (list-character-sets): Use it.
4246 (list-charset-chars): New button type.
4247 (list-character-sets-1): Use it.
4248
4249 2001-11-01 Stefan Monnier <monnier@rum.cs.yale.edu>
4250
4251 * indent.el (tab-always-indent, indent-for-tab-command):
4252 Remove redundant `never' setting.
4253
4254 * fill.el (fill-region-as-paragraph): Don't forget to skip
4255 over current whitespace before looking for a preceding space.
4256
4257 2001-11-01 Richard M. Stallman <rms@gnu.org>
4258
4259 * files.el (file-newest-backup): Don't pass backup file name
4260 thru file-name-sans-versions, because it never has version numbers.
4261
4262 * textmodes/sgml-mode.el (sgml-xml-guess): Fix regexp
4263 to avoid ambiguous nested loops.
4264
4265 * files.el (find-file-noselect): Offer to change buffer-read-only
4266 only when the file's read-only status has changed from before
4267 as well as disagreeing with the buffer's current status.
4268 (buffer-file-read-only): New var, local in all buffers.
4269
4270 * buff-menu.el (buffer-menu): Doc fix.
4271 (buffer-menu-other-window): Doc fix.
4272 (list-buffers, list-buffers-noselect): Doc fix.
4273
4274 2001-11-01 Gerd Moellmann <gerd@gnu.org>
4275
4276 * startup.el (command-line): If the terminal Emacs is running on
4277 has erase char set to ^H, use the Backspace key for deleting
4278 backward, and the Delete key for deleting forward.
4279
4280 2001-11-01 Miles Bader <miles@gnu.org>
4281
4282 * button.el (define-button-type): Make sure every user-defined
4283 button type has a supertype.
4284
4285 2001-10-31 Jason Rumney <jasonr@gnu.org>
4286
4287 * international/mule-cmds.el (locale-language-names): Add chs and
4288 cht as aliases for Chinese-GB and Chinese-BIG5.
4289
4290 2001-10-31 Richard M. Stallman <rms@gnu.org>
4291
4292 * bindings.el (mode-line-frame-identification): Add doc string.
4293 (mode-line-position, mode-line-modes): New variables.
4294 (mode-line-format): Use mode-line-position for the part
4295 that displays the position-in-buffer info.
4296 Use mode-line-modes for the part that displays major and minor modes.
4297
4298 2001-10-31 Sam Steingold <sds@gnu.org>
4299
4300 * emacs-lisp/debug.el (debugger-make-xrefs): New function.
4301 (debugger-setup-buffer): Call it.
4302 (debugger-mode-map): Bind RET and mouse-2.
4303
4304 2001-10-31 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4305
4306 * startup.el: Document command line option --no-window-system
4307 instead of --no-windows.
4308
4309 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
4310
4311 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip.
4312
4313 * font-lock.el (java-font-lock-syntactic-face-function): New fun.
4314 (font-lock-defaults-alist): Use it.
4315 From David Ponce <david.ponce@wanadoo.fr>
4316
4317 * progmodes/perl-mode.el (perl-indent-line): Use `eq' to compare
4318 output of `char-after'.
4319
4320 * bindings.el (ctl-x-map): Add binding for C-x (, C-x ) and C-x e.
4321
4322 * simple.el (reindent-then-newline-and-indent): Insert the newline
4323 before indenting the first line.
4324 (undo-get-state, undo-revert-to-state): New funs.
4325 (shell-command): Don't kill the buffer even if empty.
4326 (transpose-subr-start1, transpose-subr-start2, transpose-subr-end1)
4327 (transpose-subr-end2): Remove.
4328 (transpose-subr): Add `special' arg and simplify.
4329 (transpose-subr-1): Rewrite.
4330 (do-auto-fill): Use fill-indent-according-to-mode and fill-nobreak-p.
4331 (rfc822-goto-eoh): Simplify.
4332
4333 2001-10-30 Richard M. Stallman <rms@gnu.org>
4334
4335 * enriched.el (enriched-face-ans): Fix previous change.
4336
4337 2001-10-30 Gerd Moellmann <gerd@gnu.org>
4338
4339 * international/iso-acc.el (iso-accents-compose): Remove a
4340 superfluous setq.
4341
4342 2001-10-30 Eli Zaretskii <eliz@is.elta.co.il>
4343
4344 * buff-menu.el (list-buffers-noselect): If the buffer's name
4345 starts with a blank, but it visits a file, do show it (for files
4346 whose names start with a blank).
4347
4348 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
4349
4350 * textmodes/fill.el (sentence-end-double-space)
4351 (sentence-end-without-period): Move to paragraphs.el.
4352 (fill-indent-according-to-mode): Change default to t.
4353 (fill-context-prefix): Simplify control-flow and use a more
4354 sophisticated merge that unifies both previous checks.
4355 (fill-single-word-nobreak-p, fill-french-nobreak-p): New funs.
4356 (fill-nobreak-predicate): Make it into a defcustom'd hook.
4357 (fill-nobreak-p): New fun.
4358 (fill-region-as-paragraph): Use it.
4359 Handle `fill-indent-according-to-mode' slightly differently.
4360 (fill-individual-paragraphs-prefix): Simplify the control-flow.
4361 (fill-individual-paragraphs-citation): Fix.
4362
4363 * textmodes/paragraphs.el (use-hard-newlines): Use define-minor-mode.
4364 (paragraph-start): Change default to the `text-mode' value.
4365 (sentence-end-double-space, sentence-end-without-period):
4366 Move from fill.el.
4367 (forward-paragraph): Use `parstart' and `parsep' for temp variables
4368 rather than rebinding `paragraph-start' and `paragraph-separate'.
4369
4370 * indent.el (indent-line-function): Change default to indent-relative.
4371 (tab-always-indent): Add an `never' setting.
4372 (indent-according-to-mode): Handle `indent-relative' and
4373 `indent-relative-maybe' specially.
4374 (indent-for-tab-command): Rename `prefix-arg' to `arg'.
4375 Handle the `never' case for `tab-always-indent'.
4376 Don't call indent-according-to-mode for indent-relative' and
4377 `indent-relative-maybe'.
4378 (insert-tab): Rename `prefix-arg' to `arg'.
4379 (indent-region): Indent the first line as well.
4380 (indent-relative): Don't mark the buffer modified if the indentation
4381 is unchanged.
4382
4383 * textmodes/text-mode.el (paragraph-indent-minor-mode):
4384 Don't set paragraph-separate. Set paragraph-start more carefully.
4385 Set indent-line-function.
4386 (paragraph-indent-text-mode): Use it and define-derived-mode.
4387 (text-mode-map): Remove the \t binding.
4388 (text-mode): Simplify now that the default is more favorable.
4389
4390 2001-10-29 Stefan Monnier <monnier@cs.yale.edu>
4391
4392 * emacs-lisp/find-func.el (find-function-search-for-symbol):
4393 If the regexp doesn't match, use a looser one.
4394 (find-variable-noselect): Add `file' argument.
4395
4396 * pcvs.el (cvs-mode-commit-hook): New hook.
4397 (cvs-mode-commit): Run it.
4398
4399 * log-edit.el (log-edit): Run hook after `log-edit-files'.
4400
4401 * emacs-lisp/edebug.el (delay-mode-hooks): Add edebug-spec.
4402 (edebug-instrument-function): Use `find-function-noselect'.
4403
4404 2001-10-29 Richard M. Stallman <rms@gnu.org>
4405
4406 * term.el (term-if-emacs19): Macro deleted.
4407 Callers changed to use progn instead.
4408
4409 * frame.el (blink-cursor-mode): Doc fix.
4410
4411 * files.el (find-backup-file-name): Use make-backup-file-name.
4412
4413 * emacs-lisp/edebug.el (edebug-window-live-p): Always alias to
4414 window-live-p.
4415 (edebug-set-conditional-breakpoint): Unconditionally use
4416 the former Emacs >=19 definition.
4417 (edebug-mark): Define unconditionally.
4418 (edebug-eval-expression): Always call read-from-minibuffer
4419 and specify history list.
4420 (edebug-lemacs-specific): Override emacs-mark, edebug-window-live-p,
4421 edebug-set-conditional-breakpoint.
4422 (edebug-emacs-version-specific): Function deleted;
4423 do the job at top level.
4424 (edebug-emacs-19-specific): Function deleted, this is the default.
4425
4426 2001-10-29 Sam Steingold <sds@gnu.org>
4427
4428 * w32-fns.el (convert-standard-filename): Handle cygwin-specific
4429 "/cygdrive/LETTER/" pathnames.
4430
4431 2001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
4432
4433 * faces.el (invert-face): Check for 'unspecified, not for nil,
4434 when testing whether face colors are not specified.
4435 From David.Kastrup@t-online.de (David Kastrup).
4436 (read-face-name): Doc fix.
4437 (make-face-bold, make-face-unbold, make-face-italic)
4438 (make-face-unitalic, make-face-bold-italic, invert-face):
4439 Remove trailing blank from the prompt passed to read-face-name.
4440
4441 2001-10-29 Sam Steingold <sds@gnu.org>
4442
4443 * emacs-lisp/bytecomp.el (byte-recompile-directory):
4444 Report numbers of files skipped and failed too.
4445 (byte-compile-file): Return 'no-byte-compile for skipped files.
4446
4447 2001-10-29 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4448
4449 * log-view.el (log-view-mode-map): Bind `M-n' and `M-p', not `M n'
4450 and `M p'.
4451
4452 2001-10-29 Gerd Moellmann <gerd@gnu.org>
4453
4454 * international/iso-acc.el (iso-accents-compose): Push SECOND-CHAR
4455 as is on unread-command-events instead of `(SECOND-CHAR)'.
4456
4457 2001-10-29 Andre Spiegel <spiegel@gnu.org>
4458
4459 * vc.el: Mention vc-*-switches in backend API documentation.
4460 (vc-annotate): Adapt doc string to recent change.
4461
4462 2001-10-29 Gerd Moellmann <gerd@gnu.org>
4463
4464 * enriched.el (enriched-face-ans): Handle face attributes
4465 of the form `(FACE1 FACE2 ...)'.
4466
4467 * dired-x.el (dired-omit-startup): Show ``Omit'' only in Dired buffers.
4468
4469 2001-10-29 Alex Schroeder <kensanata@yahoo.com>
4470
4471 * progmodes/sql.el (sql-mysql): Doc change by RMS.
4472
4473 * progmodes/sql.el (sql-db2): Doc change.
4474 (sql-help): Doc change by Christian Egli <christian.egli@stest.ch>.
4475 (sql-mysql): Doc change by Christian Egli <christian.egli@stest.ch>.
4476
4477 2001-10-29 Gerd Moellmann <gerd@gnu.org>
4478
4479 * env.el (substitute-env-vars): Don't quote argument to `rx';
4480 it's a macro.
4481
4482 2001-10-28 Per Abrahamsen <abraham@dina.kvl.dk>
4483
4484 * cus-start.el (recursive-load-depth-limit): Added.
4485
4486 2001-10-28 Richard M. Stallman <rms@gnu.org>
4487
4488 * textmodes/ispell.el (version18p, version20p): Vars deleted.
4489 All uses removed--assume Emacs version is >= 20.
4490
4491 * mail/supercite.el (sc-emacs-features): Test for "Emacs 19"
4492 by really checking that it is not version 18.
4493
4494 * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
4495
4496 2001-10-28 Miles Bader <miles@gnu.org>
4497
4498 * faces.el (face-attribute): Add INHERIT argument, consider face
4499 inheritance if it's non-nil.
4500 (face-attribute-merged-with): New function.
4501 (face-attribute-specified-or): New macro.
4502 (face-foreground, face-background, face-stipple): Add INHERIT
4503 argument. Use `face-attribute-specified-or'.
4504
4505 2001-10-28 Stefan Monnier <monnier@cs.yale.edu>
4506
4507 * font-lock.el: Require `syntax'.
4508 (font-lock-defaults-alist): Don't define keywords for lisp languages.
4509 Use `c-font-lock-syntactic-face-function' for c languages.
4510 (font-lock-mode): Don't unset vars when turning the mode off.
4511 (font-lock-default-fontify-buffer): Don't unset vars at the end.
4512 (font-lock-extra-managed-props): New var.
4513 (font-lock-default-unfontify-region): Use it.
4514 (font-lock-apply-syntactic-highlight): Flush the syntax cache.
4515 Don't eval the value when there's no match.
4516 (font-lock-ppss-stats): New var.
4517 (font-lock-ppss): New fun.
4518 (font-lock-fontify-syntactically-region): Use it and syntax.ppss.
4519 (font-lock-apply-highlight): Allow `highlight' to set several props.
4520 (font-lock-set-defaults): Use dolist.
4521 (font-lock-unset-defaults): Remove.
4522 (font-lock-match-c-style-declaration-item-and-skip-to-next):
4523 Try to recognize prototypes using `foo P_ ((args))'.
4524 ({c,c++,java,objc}-font-lock-keywords-{1,2,3}): Don't setq a defconst.
4525 (c-font-lock-keywords-2): Fix last change to still use Anders' trick.
4526 (c-font-lock-syntactic-face-function): New function.
4527 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
4528 (c++-keywords): Use a more sophisticated regexp to handle
4529 shallowly nested templates.
4530
4531 2001-10-27 Stefan Monnier <monnier@cs.yale.edu>
4532
4533 * textmodes/sgml-mode.el (sgml-empty-tags): New var.
4534 (sgml-tag): Use it. Cleanup with `cond'.
4535 (sgml-tags-invisible): Make sgml-tags-invisible buffer-local.
4536 Mark the overlays and only delete those that are marked.
4537 (sgml-skip-close-p): Remove.
4538 (sgml-value): Replace sgml-skip-close-p with its definition.
4539 (html-tag-alist): Use sgml-xml a bit more.
4540 (html-mode): Set sgml-empty-tags.
4541
4542 * textmodes/texnfo-upd.el: Use `when', `dolist', `push', ...
4543 (texinfo-update-node, texinfo-sequential-node-update):
4544 Don't bind the obsolete `auto-fill-hook'.
4545 (texinfo-multi-file-included-list,texinfo-multi-file-master-menu-list):
4546 Use `set-buffer' rather than `switch-to-buffer'.
4547 (texinfo-multi-file-update): Use "Top" rather than `up-node-name'.
4548 Use `set-buffer' rather than `switch-to-buffer'.
4549
4550 * mail/sendmail.el (mail-mode-syntax-table): Let it inherit from
4551 text-mode-syntax-table.
4552 (mail-mode): Use define-derived-mode.
4553 Fix ordering of alternatives in adaptive-fill-regexp.
4554 (mail-mode-map): Don't rely on keymap's internal representation.
4555
4556 2001-10-27 Sam Steingold <sds@gnu.org>
4557
4558 * textmodes/sgml-mode.el (sgml-xml): Renamed from `html-xhtml'.
4559 (sgml-xml-guess): Extracted from `html-mode' and generalized.
4560 (sgml-mode-common): Call it.
4561 (sgml-mode, html-mode): Set `mode-name' based on `sgml-xml'.
4562 (sgml-tag, sgml-skip-close-p, html-tag-alist, html-line)
4563 (html-horizontal-rule, html-image, html-ordered-list):
4564 (html-unordered-list, html-list-item, html-paragraph):
4565 (html-checkboxes, html-radio-buttons): Use `sgml-xml' instead of
4566 `html-xhtml'.
4567
4568 2001-10-26 Masayuki Ataka <ataka@milk.freemail.ne.jp>
4569
4570 * textmodes/texinfmt.el (texinfo-format-ifnotinfo): New function.
4571 (ifnothtml): New alias.
4572
4573 2001-10-27 Stefan Monnier <monnier@cs.yale.edu>
4574
4575 * textmodes/text-mode.el (text-mode): Use define-derived-mode.
4576 (toggle-text-mode-auto-fill): Use derived-mode-p.
4577
4578 2001-10-27 Gerd Moellmann <gerd.moellmann@t-online.de>
4579
4580 * net/ange-ftp.el (ange-ftp-send-cmd): Call fix-name-func for
4581 `mdtm'. From "Forrest Cahoon" <forrest.cahoon@merrillcorp.com>.
4582
4583 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
4584
4585 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
4586 Add make-obsolete cookies, to follow faces.el.
4587
4588 These changes avoid warnings from the byte compiler in faces.el:
4589
4590 * faces.el (internal-get-face): Use facep instead of the obsolete
4591 internal-find-face.
4592 (internal-frob-font-weight, internal-frob-font-slant):
4593 New defaliases for obsolete functions.
4594 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
4595 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
4596 (x-make-font-bold-italic): Use internal-frob-font-weight and
4597 internal-frob-font-slant aliases instead of the obsolete
4598 x-frob-... functions.
4599
4600 2001-10-26 Sam Steingold <sds@gnu.org>
4601
4602 * textmodes/sgml-mode.el (html-mode): Set `html-xhtml' from the
4603 DOCTYPE; set `mode-name' based on it.
4604 (html-tag-alist): Use `html-xhtml' for "li", "dt" and "dd".
4605 (sgml-tag): Close empty tags in XHTML.
4606
4607 2001-10-26 Jason Rumney <jasonr@gnu.org>
4608
4609 * w32-fns.el: (w32-charset-info-alist): Use ANSI for iso10646-1
4610 when UNICODE is not defined.
4611
4612 2001-10-26 Sam Steingold <sds@gnu.org>
4613
4614 * font-lock.el (c-font-lock-keywords-2): Do not require labels to
4615 be alone on the line.
4616
4617 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
4618
4619 * button.el (button): Special face definition for MS-DOS terminals.
4620
4621 2001-10-26 Sam Steingold <sds@gnu.org>
4622
4623 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
4624 Protect the /= test by checking that the args are non-nil.
4625 (sh-font-lock-close-heredoc): Check eof for being non-nil.
4626
4627 2001-10-26 Tomas Abrahamsson <tab@lysator.liu.se>
4628
4629 * textmodes/artist.el (artist-version): 1.2.4.
4630 (artist-butlast-fn): New variable.
4631 (artist-butlast): New function.
4632 (artist-ellipse-mirror-quadrant): Use it.
4633 (artist-mouse-draw-poly): Use nil for `point-list'.
4634 (artist-mouse-draw-poly): Check for point-list being nil.
4635
4636 2001-10-26 Peter Kleiweg <kleiweg@let.rug.nl>
4637
4638 * progmodes/ps-mode.el (ps-mode-print-function): Remove quote for
4639 lambda expression.
4640 (ps-mode-menu-main): Submenu with options on/off was replaced with
4641 a toggle button.
4642 (ps-mode, ps-run-mode): Define with `define-derived-mode'
4643 (ps-mode): Autoload cookie added on same line as comment
4644 (ps-mode-tabkey, ps-mode-backward-delete-char):
4645 (ps-mode-r-balance): Replace `delete-horizontal-space' and
4646 `indent-to' with `indent-line-to'
4647 (ps-mode-print-buffer, ps-mode-print-region): Use `funcall'
4648 instead of `eval'.
4649 (ps-mode-print-region): Use `with-temp-buffer'.
4650 (ps-run-start): Use of `mapconcat'. Use `apply' instead of `eval'.
4651 (numerous places): Add back-tick and tick around names in
4652 docstrings, fix punctuation in docstrings, remove trailing spaces.
4653
4654 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
4655
4656 * textmodes/sgml-mode.el (sgml-font-lock-keywords-1): Ignore comments.
4657 (sgml-font-lock-keywords-2): Use `eval'. Moved from sgml-mode-common.
4658 (sgml-font-lock-syntactic-keywords): New var.
4659 (sgml-mode-common): Drop the two args.
4660 Don't make buffer-local variables that aren't used.
4661 Don't set sgml-font-lock-keywords-2 now that it uses `eval instead.
4662 Don't set `before-string' props from sgml-display-text.
4663 (sgml-mode): Use define-derived-mode.
4664 (sgml-tags-invisible): Use sgml-display-text.
4665 (sgml-quote): New command.
4666 (html-tag-alist): Add args for `span'.
4667 (html-mode): Use define-derived-mode.
4668 Set sgml-display-text and sgml-tag-face-alist.
4669
4670 2001-10-25 Sam Steingold <sds@gnu.org>
4671
4672 * add-log.el (add-log-always-start-new-record): New user option.
4673 (add-change-log-entry): Use it.
4674
4675 2001-10-25 Richard M. Stallman <rms@gnu.org>
4676
4677 * progmodes/etags.el (tags-query-replace): Make tags-loop-scan
4678 bind case-fold-search if FROM is not all lower case.
4679
4680 2001-10-25 Gerd Moellmann <gerd@gnu.org>
4681
4682 * startup.el (normal-top-level): Check for frame-initial-frame
4683 only if it's really used.
4684
4685 * mail/mh-utils.el (mh-recenter): Call recenter with arg `(4)'.
4686
4687 * progmodes/compile.el (compilation-parse-errors-filename-function):
4688 New variable.
4689 (compilation-parse-errors): Use it.
4690
4691 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
4692
4693 * emacs-lisp/checkdoc.el (checkdoc-eval-defun): Call eval-defun
4694 interactively so that C-u M-C-x still does edebug.
4695 (checkdoc-sentencespace-region-engine): Don't force a double-space
4696 after `.' if it doesn't look like an end-of-sentence.
4697 (debug-ignored-errors): Add `disambiguate ...'.
4698
4699 2001-10-24 Stefan Monnier <monnier@cs.yale.edu>
4700
4701 * textmodes/texinfo.el (texinfo-environments)
4702 (texinfo-environment-regexp): Hoist.
4703 (texinfo-font-lock-keywords): Use `italic' and `bold' faces.
4704 Only highlight the menu name in menu items.
4705 Setup `@foo ... @end foo' as text clones.
4706 (texinfo-clone-environment): New function.
4707 (texinfo-mode): Simplify auto-fill-inhibit-regexp.
4708 (texinfo-insert-block): Simplify.
4709 (texinfo-insert-quote): Insert a plain " if preceded by \ or if
4710 the command is repeated.
4711 (texinfo-last-unended-begin, texinfo-next-unmatched-end): New funs.
4712 (texinfo-insert-@end): Simplify.
4713
4714 * textmodes/texnfo-upd.el (texinfo-section-types-regexp)
4715 (texinfo-section-level-regexp, texinfo-subsection-level-regexp)
4716 (texinfo-subsubsection-level-regexp)
4717 (texinfo-update-menu-same-level-regexps)
4718 (texinfo-update-menu-higher-regexps)
4719 (texinfo-update-menu-lower-regexps): Hoist to eliminate warnings.
4720
4721 * derived.el (define-derived-mode): Use {delay,run}-mode-hooks.
4722 (derived-mode-p): Autoload.
4723
4724 * subr.el (delay-mode-hooks, delayed-mode-hooks, run-mode-hooks):
4725 New vars and functions.
4726 (text-clone-maintain, text-clone-create): New functions.
4727
4728 2001-10-25 Miles Bader <miles@gnu.org>
4729
4730 * facemenu.el (facemenu-add-new-face): Fix variable names.
4731
4732 2001-10-24 Richard M. Stallman <rms@gnu.org>
4733
4734 * facemenu.el (facemenu-unlisted-faces): Improve doc strings
4735 of t and nil values.
4736 (facemenu-set-face): Handle START and END interactively.
4737 (facemenu-set-foreground): Don't use a face; specify color directly.
4738 (facemenu-set-background): Likewise.
4739 (facemenu-set-face-from-menu): Doc fix.
4740 (facemenu-active-faces): Use face-attribute-vector
4741 to handle bare attributes not in faces.
4742 (facemenu-get-face): Don't handle face names fg:... and bg:...
4743 specially.
4744 (facemenu-add-new-face): New argument MENU.
4745 New way to handle adding colors to the color menus.
4746
4747 * env.el (substitute-env-vars): Quote the arg to rx.
4748
4749 2001-10-24 Sam Steingold <sds@gnu.org>
4750
4751 * mouse.el (mouse-buffer-menu-mode-groups): Added "Version
4752 Control" and "SGML" groups.
4753
4754 2001-10-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4755
4756 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
4757 Better handling of C++ template args to avoid confusion with `<'
4758 and `>' used as operators in member init expressions.
4759
4760 2001-10-24 Gerd Moellmann <gerd@gnu.org>
4761
4762 * replace.el (perform-replace): Move START and END parameters
4763 to the end of the argument list and make them optional.
4764
4765 * progmodes/ebrowse.el, progmodes/etags.el: Adapt to change in
4766 perform-replace.
4767
4768 * international/fontset.el (x-must-resolve-font-name): New function.
4769 (x-complement-fontset-spec): Use it.
4770
4771 2001-10-23 Stefan Monnier <monnier@cs.yale.edu>
4772
4773 * uniquify.el (uniquify-get-proposed-name): Fix (.. "usr" "/usr" 0).
4774
4775 * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
4776 Turn caadr into caar of cdr.
4777
4778 2001-10-23 Gerd Moellmann <gerd@gnu.org>
4779
4780 * info.el (Info-fontify-node): Bind down-mouse-{1,2} instead
4781 of mouse-{1,2} since dragging is on the down event.
4782
4783 * play/doctor.el (make-doctor-variables): Remove a '($ please)'.
4784
4785 * mail/mh-utils.el (mh-recenter): Call `recenter' with arg t
4786 if ARG is nil.
4787
4788 * desktop.el (desktop-last-buffer): New variable.
4789 (desktop-create-buffer): Set it.
4790 (desktop-read): Bind it and switch to that buffer.
4791
4792 2001-10-22 Gerd Moellmann <gerd@gnu.org>
4793
4794 * progmodes/compile.el (compilation-set-window-height):
4795 Select old window only if it's still live.
4796
4797 2001-10-22 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4798
4799 * help-mode.el (help-buffer): Remove debugging code.
4800 From Stefan Monnier <monnier@cs.yale.edu>.
4801
4802 2001-10-22 Eli Zaretskii <eliz@is.elta.co.il>
4803
4804 * files.el (file-name-sans-extension, file-name-extension):
4805 Don't count the leading dots in file names as signaling an extension.
4806
4807 2001-10-22 Andre Spiegel <spiegel@gnu.org>
4808
4809 * vc.el (vc-diff-switches): Doc rewritten.
4810
4811 2001-10-22 Eli Zaretskii <eliz@is.elta.co.il>
4812
4813 * tooltip.el (tooltip-set-param): Doc fix.
4814
4815 * textmodes/sgml-mode.el (sgml-mode-map): Bind 8-bit codes above
4816 127 to sgml-maybe-name-self.
4817 (sgml-name-8bit-mode): Doc fix.
4818 (sgml-char-names-table): New variable.
4819 (sgml-name-char): Support non-ASCII and mule-unicode-*
4820 characters. Doc fix.
4821 (sgml-maybe-name-self): Convert unibyte characters to multibyte.
4822
4823 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Mention in the
4824 doc string the effect of `left' and `top' parameters in
4825 tooltip-frame-parameters, the default values, and the units.
4826 (tooltip-frame-parameters): Mention `top' and `left' in the doc string.
4827 (tooltip-show): Mention in the doc string the `top' and `left'
4828 parameters in tooltip-frame-parameters, and x-max-tooltip-size.
4829
4830 2001-10-22 Andre Spiegel <spiegel@gnu.org>
4831
4832 Add autoscaling support for vc-annotate.
4833 From J.D. Smith <jdsmith@alum.mit.edu>.
4834
4835 * vc.el (vc-annotate-display-default): Accept colormap scaling
4836 ratio (now deprecated).
4837 (vc-annotate-display-autoscale): Added.
4838 (vc-annotate-add-menu): New autoscaling menu options "Span to
4839 Oldest" and "Span Oldest->Newest". Easymenu support added for
4840 toggle menus driven by customize variable `vc-annotate-display-mode'.
4841 (vc-annotate-display-select): Added.
4842 (vc-annotate): Changed temp-buffer-show-function to
4843 `vc-annotate-display-select'.
4844 (vc-annotate-display): Removed arguments BUFFER and BACKEND.
4845 Added argument OFFSET. Instead of backend function, calls now
4846 generic `vc-annotate-difference'.
4847 (vc-annotate-difference): Added as generic function instead of
4848 backend-specific function. No longer takes argument POINT, but
4849 instead accepts a time OFFSET.
4850 (vc-default-annotate-current-time): Added.
4851
4852 * vc-cvs.el (vc-cvs-annotate-difference): Removed to generic
4853 version in vc.el, with
4854 (vc-cvs-annotate-current-time): Added, as override of default.
4855 (vc-cvs-annotate-time): Added. Taken mostly from the (now removed)
4856 `vc-cvs-annotate-difference'.
4857
4858 2001-10-22 Gerd Moellmann <gerd@gnu.org>
4859
4860 * saveplace.el (save-place): Require `saveplace'.
4861
4862 * progmodes/cwarn.el (cwarn-font-lock-feature-keywords-alist):
4863 Use `sexp' for :value-type instead of `face'.
4864
4865 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
4866
4867 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Fix the
4868 regexps due to 5-digit message IDs.
4869
4870 2001-10-21 Jason Rumney <jasonr@gnu.org>
4871
4872 * term/w32-win.el (redisplay-dont-pause): Don't set.
4873
4874 2001-10-21 Miles Bader <miles@gnu.org>
4875
4876 * help-funs.el (help-manyarg-func-alist): Variable removed.
4877
4878 2001-10-21 Miles Bader <miles@gnu.org>
4879
4880 * help-funs.el (help-manyarg-func-alist): Remove entries for
4881 `insert', `insert-and-inherit', `insert-before-markers',
4882 `insert-before-markers-and-inherit', `message', `message-box',
4883 `message-or-box', `propertize', `format', `encode-time', `append',
4884 `concat', `vconcat', `nconc', `widget-apply', `make-hash-table',
4885 `insert-string', `ml-if', `ml-provide-prefix-argument', and
4886 `ml-prefix-argument-loop'.
4887
4888 2001-10-21 Andre Spiegel <spiegel@gnu.org>
4889
4890 * vc.el (vc-diff-internal, vc-coding-system-for-diff)
4891 (vc-default-diff-tree): New functions.
4892 (vc-version-diff): Use them. As a result, coding systems are now
4893 set up properly for all sorts of diffs, and tree diffs can now
4894 also be done locally.
4895 (vc-diff): With a prefix argument, don't require that it's called
4896 from a buffer under version control.
4897 (diff-switches): Remove duplicate definition.
4898
4899 * vc-cvs.el (vc-cvs-diff-tree): New function.
4900
4901 2001-10-21 Miles Bader <miles@gnu.org>
4902
4903 * help-funs.el (help-manyarg-func-alist): Remove entries for
4904 `list', `vector', `make-byte-code', `call-process',
4905 `call-process-region', `string', `+', `-', `*', `/', `max', `min',
4906 `logand', `logior', and `logxor'.
4907
4908 * wid-edit.el (checkbox): Swap bg/fg colors in image, and invert
4909 image bits to compensate. Use `make-string' instead of
4910 `make-bool-vector' (XBM apparently wants byte-aligned rows).
4911
4912 2001-10-20 Kim F. Storm <storm@cua.dk>
4913
4914 * simple.el (kill-ring-save): Don't show extent of copied region
4915 if using transient-mark-mode and region is fully visible.
4916
4917 2001-10-20 Gerd Moellmann <gerd@gnu.org>
4918
4919 * (Version 21.1 released.)
4920
4921 2001-10-19 Eli Zaretskii <eliz@is.elta.co.il>
4922
4923 * files.el (auto-mode-alist): Associate .indent.pro with
4924 Fundamental mode. Suggested by Samuel Padgett <spadgett1@nc.rr.com>.
4925
4926 2001-10-18 Sam Steingold <sds@gnu.org>
4927
4928 Put the *Compile-Log* buffer in `compilation-mode'.
4929 * emacs-lisp/bytecomp.el (byte-goto-log-buffer): New function.
4930 (byte-compile-log-1, byte-compile-log-file)
4931 (displaying-byte-compile-warnings): Use it
4932
4933 2001-10-18 Stefan Monnier <monnier@cs.yale.edu>
4934
4935 * mail/smtpmail.el (smtpmail-via-smtp): Use mail-envelope-from if set.
4936
4937 * xml.el (xml-parse-tag): Use eq on char-after's return value.
4938
4939 2001-10-18 Gerd Moellmann <gerd@gnu.org>
4940
4941 * isearch.el (isearch-mode-map): Bind `mouse-movement' to nil.
4942
4943 * obsolete/hilit19.el (hilit-lookup-face-create):
4944 Call set-face-font only if display-graphic-p.
4945 (toplevel): Remove references to window-system.
4946
4947 2001-10-18 Miles Bader <miles@gnu.org>
4948
4949 * simple.el (what-line): Avoid problems with field properties.
4950
4951 2001-10-17 Eli Zaretskii <eliz@is.elta.co.il>
4952
4953 * wid-edit.el (widget-field-face, widget-single-line-field-face):
4954 Define special colors for a tty.
4955
4956 2001-10-17 Francesco Potorti` <pot@gnu.org>
4957
4958 * comint.el (comint-password-prompt-regexp): Make it less
4959 restrictive, letting comint recognise OpenSSH2 passphrase prompts.
4960
4961 2001-10-17 John Wiegley <johnw@gnu.org>
4962
4963 * eshell/em-unix.el (eshell/cat): Do a quick test if something is
4964 a regular file, before checking if it is a directory or symlink.
4965 This avoids a call to eshell-file-attributes, which can be
4966 expensive in some situations.
4967
4968 * eshell/em-ls.el (eshell-ls-dired-initial-args): Added an extra
4969 customization variable, to differentiate ls-in-dired from regular
4970 uses of ls.
4971
4972 2001-10-17 Miles Bader <miles@gnu.org>
4973
4974 * custom.el (defface): Mention `:inherit' in doc-string.
4975
4976 2001-10-16 Eli Zaretskii <eliz@is.elta.co.il>
4977
4978 * paren.el: Update the Commentary with installation instructions.
4979
4980 2001-10-15 Dave Love <fx@gnu.org>
4981
4982 * international/mule.el (set-auto-coding): Fix regexps for local
4983 variables section not to eat newlines.
4984
4985 2001-10-15 Miles Bader <miles@gnu.org>
4986
4987 * simple.el (display-message-or-buffer): Pass the correct buffer
4988 to `display-buffer'.
4989
4990 2001-10-14 Stefan Monnier <monnier@cs.yale.edu>
4991
4992 * progmodes/executable.el (executable-binary-suffixes): Make varalias.
4993 (executable-find): Use exec-suffixes.
4994 (executable-set-magic): Don't use make-local-hook.
4995
4996 * bindings.el (exec-suffixes): Initialize to a system-dependent value.
4997
4998 2001-10-14 Eli Zaretskii <eliz@is.elta.co.il>
4999
5000 * bindings.el (completion-ignored-extensions) [ms-dos, windows-nt]:
5001 Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386.
5002 Add .so to the Unix and GNU branch.
5003
5004 * international/latin-1.el:
5005 * international/latin-2.el:
5006 * international/latin-3.el:
5007 * international/latin-4.el:
5008 * international/latin-5.el:
5009 * international/latin-8.el:
5010 * international/latin-9.el: Add no-byte-compile: t, since
5011 Makefile.in instructs make-docfile to look at .el files.
5012
5013 2001-10-14 Miles Bader <miles@gnu.org>
5014
5015 * button.el (define-button-type): Allow supertype property to be
5016 specified with a keyword `:supertype' too.
5017 (button-put, make-text-button): Allow button type property to be
5018 specified using the keyword `:type' too.
5019 (button-type): New function.
5020 (button): Add `button-category-symbol' property.
5021
5022 2001-10-13 Stefan Monnier <monnier@cs.yale.edu>
5023
5024 * bindings.el (esc-map): Revert `j' and `C-j' bindings to
5025 indent-new-comment-line from comment-indent-new-line.
5026
5027 * textmodes/refill.el (refill-mode):
5028 Bind DEL to backward-delete-char-untabify.
5029 Set backward-delete-char-untabify-method to `hungry'.
5030
5031 * textmodes/bib-mode.el (bib-mode):
5032 * play/gomoku.el (gomoku-mode):
5033 * textmodes/page-ext.el (pages-directory-mode):
5034 * textmodes/scribe.el (scribe-mode): Use define-derived-mode.
5035
5036 * textmodes/two-column.el (2C-mode): Don't use make-local-hook.
5037
5038 * emacs-lisp/syntax.el (syntax-ppss): Autoload.
5039
5040 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
5041 Handle here-docs differently.
5042 (sh-font-lock-heredoc): Remove.
5043 (sh-here-doc-open-re, sh-here-doc-markers, sh-here-doc-re): New vars.
5044 (sh-font-lock-here-doc, sh-font-lock-close-heredoc)
5045 (sh-font-lock-open-heredoc): New functions.
5046 (sh-mode): Don't copy sh-font-lock-syntactic-keywords any more.
5047 (sh-font-lock-keywords-1): Use regexp-opt.
5048 (sh-in-comment-or-string): Use syntax-ppss.
5049 (sh-case, sh-for, sh-indexed-loop, sh-function, sh-if, sh-repeat)
5050 (sh-select, sh-tmp-file): Add explicit terminating \n.
5051
5052 * net/ange-ftp.el (ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
5053 Use with-current-buffer.
5054 (ange-ftp-cd): New arg `noerror' to prevent signalling an error.
5055 (ange-ftp-send-cmd): If a `cd' is used (because of a space in the
5056 filename), catch any error that occurs in `ange-ftp-cd'.
5057 If an error happened, don't bother sending `cmd' at all.
5058 Fix a parenthesis typo.
5059 (ange-ftp-write-region): Don't blindly use binary if the remote host
5060 is unix-like.
5061
5062 * play/pong.el (pong-init): Don't use make-local-hook.
5063
5064 2001-10-13 Michael Kifer <kifer@cs.sunysb.edu>
5065
5066 * viper-ex.el (ex-edit): Make checks for modified buffer/file.
5067 (viper-get-ex-address-subr): More precise addr for the $ marker
5068
5069 2001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
5070
5071 * version.el (emacs-version): Bump to 21.1.50.
5072
5073 2001-10-13 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
5074
5075 * mail/mailalias.el (mail-directory-stream): Do not double
5076 variables in the lambda-list.
5077
5078 * play/gomoku.el (gomoku-init-display): Ditto.
5079
5080 * play/landmark.el (lm-init-display): Ditto.
5081
5082 * delim-col.el (delimit-columns-rectangle-max): Ditto.
5083 (delimit-columns-rectangle-line): Ditto.
5084
5085 2001-10-12 Stefan Monnier <monnier@cs.yale.edu>
5086
5087 * newcomment.el (comment-region-internal): Don't rebind
5088 invisibility_spec now that the C routines handle it correctly.
5089
5090 * help-funs.el (locate-library): Use load-suffixes and abbrev filename.
5091
5092 * frame.el (special-display-popup-frame): Obey new specs `same-window'
5093 and `same-frame'.
5094
5095 * menu-bar.el (minibuffer-local-*map): Take inheritance into account.
5096
5097 * simple.el (minibuffer-local*-map): Remove redundant bindings.
5098
5099 * bindings.el (minibuffer-local-map): Also bind next, C-n, C-s, prior,
5100 C-p and C-r. Remove redundant bindings from inheriting maps.
5101
5102 * progmodes/cperl-mode.el: Merged in changes from v4.32.
5103 After 4.23 and: After 4.24:
5104 (cperl-contract-levels): Restore position.
5105 (cperl-beautify-level): Likewise.
5106 (cperl-beautify-regexp): Likewise.
5107 (cperl-commentify): Rudimental support for length=1 runs
5108 (cperl-find-pods-heres): Process 1-char long REx comments too /a#/x
5109 After 4.25:
5110 (cperl-commentify): Was recognizing length=2 "strings" as length=1.
5111 (imenu-example--create-perl-index): Was not enforcing
5112 syntaxification-to-the-end.
5113 (cperl-invert-if-unless): Allow `for', `foreach'.
5114 (cperl-find-pods-heres): Quote `cperl-nonoverridable-face'.
5115 Mark qw(), m()x as indentable.
5116 (cperl-init-faces): Highlight `sysopen' too.
5117 Highlight $var in `for my $var' too.
5118 (cperl-invert-if-unless): Was leaving whitespace at end.
5119 (cperl-linefeed): Was splitting $var{$foo} if point after `{'.
5120 (cperl-calculate-indent): Remove old commented out code.
5121 Support (primitive) indentation of qw(), m()x.
5122 After 4.26:
5123 (cperl-problems): Mention `fill-paragraph' on comment. \"" and
5124 q [] with intervening newlines.
5125 (cperl-autoindent-on-semi): New customization variable.
5126 (cperl-electric-semi): Use `cperl-autoindent-on-semi'.
5127 (cperl-tips): Mention how to make CPerl the default mode.
5128 (cperl-mode): Support `outline-minor-mode'. From Mark A. Hershberger.
5129 (cperl-outline-level): New function.
5130 (cperl-highlight-variables-indiscriminately): New customization var.
5131 (cperl-init-faces): Use `cperl-highlight-variables-indiscriminately'.
5132 From Sean Kamath <kamath@pogo.wv.tek.com>.
5133 (cperl-after-block-p): Support CHECK and INIT.
5134 (cperl-init-faces, cperl-short-docs): Likewise and "our".
5135 From Doug MacEachern <dougm@covalent.net>.
5136 After 4.27:
5137 (cperl-find-pods-heres): Recognize \"" as a string.
5138 Mark whitespace between q and [] as `syntax-type' => `prestring'.
5139 Allow whitespace between << and "FOO".
5140 (cperl-problems): Remove \"" and q [] with intervening newlines.
5141 Mention multiple <<EOF as unsupported.
5142 (cperl-highlight-variables-indiscriminately): Doc misprint fixed.
5143 (cperl-indent-parens-as-block): New configuration variable.
5144 (cperl-calculate-indent): Merge cases of indenting non-BLOCK groups.
5145 Use `cperl-indent-parens-as-block'.
5146 (cperl-find-pods-heres): Test for =cut without empty line instead of
5147 complaining about no =cut.
5148 (cperl-electric-pod): Change the REx for POD from "\n\n=" to "^\n=".
5149 (cperl-find-pods-heres): Likewise.
5150 (cperl-electric-pod): Change `forward-sexp' to `forward-word':
5151 POD could've been marked as comment already.
5152 (cperl-unwind-to-safe): Unwind before start of POD too.
5153 After 4.28:
5154 (cperl-forward-re): Throw an error at proper moment REx unfinished.
5155 After 4.29:
5156 (x-color-defined-p): Make an extra case to peacify the warning.
5157 Toplevel: `defvar' to peacify the warnings.
5158 (cperl-find-pods-heres): Could access `font-lock-comment-face' in -nw.
5159 No -nw-compile time warnings now.
5160 (cperl-find-tags): TAGS file had too short substring-to-search.
5161 Be less verbose in non-interactive mode
5162 (imenu-example--create-perl-index): Set index-marker after name
5163 (cperl-outline-regexp): New variable.
5164 (cperl-outline-level): Made compatible with `cperl-outline-regexp'.
5165 (cperl-mode): Made use `cperl-outline-regexp'.
5166 After 4.30:
5167 (cperl-find-pods-heres): =cut the last thing, no blank line, was error.
5168 (cperl-outline-level): Make start-of-file same level as `package'.
5169 After 4.31:
5170 (cperl-electric-pod): `head1' and `over' electric only if empty.
5171 (cperl-unreadable-ok): New variable.
5172 (cperl-find-tags): Use `cperl-unreadable-ok', do not fail
5173 on an unreadable file.
5174 (cperl-write-tags): Use `cperl-unreadable-ok', do not fail
5175 on an unreadable directory.
5176
5177 * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
5178 Consider the text between two errors as belonging to the first error.
5179 (compilation-goto-locus): Use pop-to-buffer rather than
5180 switch-to-buffer-other-frame.
5181
5182 * progmodes/awk-mode.el (awk-mode-syntax-table): / has string syntax.
5183 (awk-font-lock-syntactic-keywords): New var.
5184 (awk-mode): Use it.
5185
5186 * expand.el (expand-c-for-skeleton): Add explicit terminating \n.
5187
5188 * faces.el (describe-face): Call help-setup-xref earlier.
5189
5190 * jka-compr.el (jka-compr-load-suffixes): New var.
5191 (jka-compr-install): Add its content to load-suffixes.
5192 (jka-compr-uninstall): Remove its content from load-suffixes.
5193
5194 2001-10-12 Sam Steingold <sds@gnu.org>
5195
5196 * bindings.el (completion-ignored-extensions): CL-related
5197 extensions are platform-independent.
5198
5199 * net/ange-ftp.el (ange-ftp-copy-files-async): New function for
5200 asynchronous multiple file copying.
5201
5202 2001-10-12 Gerd Moellmann <gerd@gnu.org>
5203
5204 * emacs-lisp/bytecomp.el (byte-compile-check-lambda-list):
5205 Turn error for repeated variables into warning.
5206
5207 * emacs-lisp/bytecomp.el (byte-compile-check-lambda-list):
5208 New function checking that lambda-list consists of non-constant
5209 symbols, that &rest and &optional are followed by variable names,
5210 that &rest VAR is the last element, and that variables aren't doubled.
5211 (byte-compile-lambda): Use it.
5212
5213 2001-10-12 Eli Barzilay <eli@barzilay.org>
5214
5215 * calculator.el (calculator-eng-display): Don't call concat
5216 with an integer argument.
5217
5218 2001-10-12 Miles Bader <miles@gnu.org>
5219
5220 * help-mode.el (help-customize-face): New button-type.
5221
5222 * faces.el (list-faces-display): Fix args to `help-xref-button'.
5223 (describe-face): Fix args to `help-xref-button'.
5224 Don't switch to help-buffer around call to `help-setup-xref'.
5225 Use `help-buffer' instead of hard-wired "*Help*".
5226 Require `help-mode'.
5227
5228 2001-10-11 Stefan Monnier <monnier@cs.yale.edu>
5229
5230 * net/goto-addr.el (goto-address-mail-regexp): Allow + in username.
5231
5232 * help-mode.el (help-buffer): New function.
5233 Returns the buffer-name to use for help output.
5234 Change all the code to use it instead of hard-coding *Help*.
5235 (help-mode-map): Put back the mouse-2 binding.
5236 (help-xref-stack): Change the format and make buffer-local.
5237 (help-xref-stack-item): Make buffer-local.
5238 (help-setup-xref): Do the `push' here rather than in help-do-xref.
5239 (help-xref-interned): Display the face doc as well.
5240 (help-follow-mouse): Re-introduce.
5241 (help-xref-go-back): Adapt to the new use of help-xref-stack.
5242 (help-do-xref): Don't `push' any more.
5243 (help-follow): Also follow face names.
5244
5245 * help-funs.el (describe-function-1): Remove unused `parens' arg.
5246 Don't call help-setup-xref anymore and remove its `interactive-p' arg.
5247 Autoload and cleanup.
5248 (describe-function): Call help-setup-xref.
5249 (describe-variable): Call help-setup-xref earlier.
5250
5251 * help.el (describe-bindings-internal): New fun moved from keymap.c.
5252 (view-lossage): Call help-setup-xref correctly and earlier.
5253 (describe-bindings): Call help-setup-xref earlier.
5254 (describe-key): Call help-setup-xref. Fix call to describe-function-1.
5255 (describe-mode): Don't autoload. Call help-setup-xref earlier.
5256
5257 2001-10-11 Gerd Moellmann <gerd@gnu.org>
5258
5259 * master.el (master-mode): Use define-minor-mode instead of
5260 easy-mmode-define-minor-mode. Add autload cookie.
5261 (Commentary): Remove the line showing how to autoload master-mode,
5262 since it's always autoloaded.
5263
5264 * master.el: New file.
5265
5266 2001-10-11 Dave Love <fx@gnu.org>
5267
5268 * emacs-lisp/byte-opt.el (byte-optimize-lapcode)
5269 <byte-constref-ops>: Consider byte-constant2 and clarify the code.
5270 <const-C varset-X const-C>: Fix car/cdr typo.
5271
5272 2001-10-11 Gerd Moellmann <gerd@gnu.org>
5273
5274 * emacs-lisp/bytecomp.el (byte-compile-display-log-head-p):
5275 New function extracted from byte-compile-log-1.
5276 (byte-compile-log-1): Change output to be more in line with
5277 the output of other GNU tools.
5278 (byte-compile-warn): Emit `warning' instead of `**' for warnings.
5279 (byte-compile-report-error): Downcase error message.
5280 Use `error' instead of `!!' for error messages.
5281 (byte-compile-print-syms): Treat non-interactive case specially.
5282 (displaying-byte-compile-warnings): Use backquote.
5283 (byte-compile-from-buffer): Bind byte-compile-last-line.
5284 (batch-byte-compile): Remove `Done' message.
5285
5286 2001-10-11 Stefan Monnier <monnier@cs.yale.edu>
5287
5288 * emacs-lisp/copyright.el (copyright): Add final \n.
5289
5290 2001-10-11 Miles Bader <miles@gnu.org>
5291
5292 * diff.el (diff): Display default values in prompts as
5293 `(default ...)', not `(...)'.
5294
5295 * info.el (Info-follow-reference): Likewise.
5296
5297 2001-10-10 Stefan Monnier <monnier@cs.yale.edu>
5298
5299 * emacs-lisp/autoload.el (doc-string-elt): Remove.
5300
5301 * newcomment.el (comment-indent): Be a little more robust in case
5302 comment-indent-function does funny things.
5303 (comment-normalize-vars): Autoload.
5304 (comment-region-internal): Fiddle with the visibility spec.
5305 (comment-valid-prefix): New function.
5306 (comment-indent-new-line): Use it. Ignore adaptive-fill-prefixes
5307 that would turn comment-text into non-comment-text.
5308
5309 * emacs-lisp/syntax.el: New file.
5310
5311 * progmodes/tcl.el: Change maintainer to FSF and remove loads of
5312 compatibility cruft.
5313 (tcl-using-emacs-19, tcl-using-emacs-19-23, tcl-using-xemacs-19)
5314 (tcl-version, tcl-maintainer, tcl-use-hairy-comment-detector): Remove.
5315 (tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
5316 tcl-end-of-defun, tcl-mark-defun, tcl-indent-for-comment,
5317 tcl-submit-bug-report.
5318 (tcl-mode-syntax-table): Leave \f alone.
5319 (inferior-tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
5320 tcl-end-of-defun, tcl-submit-bug-report.
5321 (tcl-xemacs-menu): Fix up and pass it directly to easymenu.
5322 (tcl-add-emacs-menu): Remove.
5323 (tcl-fill-mode-map, tcl-fill-inferior-map): Moved into the defvar.
5324 (tcl-keyword-list): Add `chain'.
5325 (tcl-font-lock-syntactic-keywords): New variable.
5326 (tcl-pps-has-arg-6): Remove.
5327 (tcl-internal-beginning-of-defun, tcl-internal-end-of-defun)
5328 (tcl-internal-mark-defun): Remove.
5329 (tcl-set-proc-regexp, tcl-set-font-lock-keywords): Use regexp-opt.
5330 (tcl-mode): Use define-derived-mode. Simplify.
5331 Set comment-indent-function.
5332 (tcl-indent-command): Use line-beginning-position and comment-indent.
5333 (tcl-calculate-indent): Renamed from calculate-tcl-indent.
5334 (tcl-indent-line): Use tcl-calculate-indent.
5335 (tcl-indent-exp): Renamed from indent-tcl-exp. Use new names.
5336 (tcl-add-log-defun): Renamed from add-log-tcl-defun. Use match-string.
5337 (tcl-filter): Use with-current-buffer, simplify.
5338 (inferior-tcl-mode): Use define-derived-mode.
5339 (tcl-hairy-in-comment): Renamed tcl-in-comment.
5340 (tcl-simple-in-comment, tcl-in-comment): Removed.
5341 (tcl-files-alist): New function.
5342 (tcl-help-snarf-commands): Use it and return the result directly
5343 rather than through a global variable.
5344 (tcl-reread-help-files): Fix up the call to tcl-help-snarf-commands.
5345 (tcl-help-on-word): Provide the default value to completing-read.
5346 (tcl-hilit): Remove.
5347 (tcl-hashify-buffer, tcl-popup-menu): Simplify.
5348 (tcl-comment-indent): New function.
5349 (tcl-submit-bug-report): Remove.
5350 (tcl-uncomment-region, tcl-indent-for-comment, add-log-tcl-defun)
5351 (indent-tcl-exp, calculate-tcl-indent, tcl-beginning-of-defun)
5352 (tcl-end-of-defun, tcl-mark-defun, tcl-mark): Redefine as aliases.
5353
5354 2001-10-10 Miles Bader <miles@gnu.org>
5355
5356 * info.el (Info-insert-dir): Don't call `Info-fontify-menu-headers'.
5357 (Info-fontify-node): Don't fontify the node if it's already been done.
5358
5359 2001-10-10 Gerd Moellmann <gerd@gnu.org>
5360
5361 * international/iso-transl.el (iso-transl-e-caret)
5362 (iso-transl-i-caret, iso-transl-o-caret, iso-transl-u-caret):
5363 Fix duplicates. From Dave Love <d.love@dl.ac.uk>.
5364
5365 * simple.el (end-of-buffer): Fix code scrolling specially
5366 for the buffer end.
5367
5368 * startup.el (command-line-1): Bind tab-width to 8.
5369
5370 2001-10-10 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
5371
5372 * emulation/tpu-edt.el: Use defalias instead of fset for
5373 user-visible commands. From Rob Riepel
5374 <riepel@Networking.Stanford.EDU>.
5375
5376 2001-10-09 Gerd Moellmann <gerd@gnu.org>
5377
5378 * ruler-mode.el: New file.
5379
5380 2001-10-09 Miles Bader <miles@gnu.org>
5381
5382 * apropos.el (button): New require.
5383
5384 * help-funs.el: New file, contents mostly from `help.el'.
5385 (describe-variable): Use `condition-case' instead of `ignore-errors'.
5386
5387 * help-mode.el: New file, contents mostly from `help.el'.
5388
5389 * help.el: Don't require `view' when compiling.
5390 (help-with-tutorial, describe-function, describe-function-1)
5391 (variable-at-point, describe-variable, locate-library):
5392 Functions moved into `help-funs.el'.
5393 (help-manyarg-func-alist): Variable moved into `help-funs.el'.
5394 (help-mode, help-mode-setup, help-mode-finish, help-button-action)
5395 (help-setup-xref, help-xref-following, help-make-xrefs)
5396 (help-xref-button, help-insert-xref-button, help-xref-interned)
5397 (help-xref-go-back, help-go-back, help-do-xref, help-follow)
5398 (help-xref-on-pp): Functions moved into `help-mode.el'
5399 (help-mode-map, help-xref-stack, help-xref-stack-item)
5400 (help-highlight-p, help-highlight-face, help-back-label)
5401 (help-xref-symbol-regexp, help-xref-mule-regexp)
5402 (help-xref-info-regexp): Variables moved into `help-mode.el'.
5403 (help-symbol, help-back, help-info, help-customize-variable)
5404 (help-function-def, help-variable-def):
5405 Button-types moved into `help-mode.el'.
5406 (load-symbol-file-load-history, symbol-file):
5407 Functions moved into `subr.el'.
5408 (symbol-file-load-history-loaded): Variable moved into `subr.el'.
5409 (view-lossage): Call `help-setup-xref' instead of doing it manually.
5410
5411 * subr.el (symbol-file-load-history-loaded)
5412 (load-symbol-file-load-history, symbol-file): Moved from `help.el'.
5413
5414 * loadup.el ("button"): Load removed.
5415
5416 * button.el (define-button-type): Respect any `supertype' property.
5417 (button-type-subtype-p, button-has-type-p): New functions.
5418
5419 * rfn-eshadow.el (rfn-eshadow-regexp): Deal correctly with escaped
5420 dollar-signs.
5421
5422 * comint.el (comint-insert-previous-argument): New function.
5423 (comint-mode-map): Bind `C-c .' to `comint-input-previous-argument'.
5424 (comint-insert-previous-argument-last-start-pos)
5425 (comint-insert-previous-argument-last-index): New variables.
5426
5427 * apropos.el (apropos-next-label-button): Use the presence of a
5428 `apropos-label' property to detect label buttons.
5429
5430 2001-10-08 Miles Bader <miles@gnu.org>
5431
5432 * button.el (next-button, previous-button): Remove N and WRAP
5433 parameters. Don't pay attention to `skip' properties.
5434 (forward-button): Implement wrapping, iterating, and skipping here
5435 instead.
5436 (button-activate): USE-MOUSE-ACTION is optional.
5437 (button-nop): Function removed.
5438 (default-button): Use `ignore' as default button action.
5439
5440 * apropos.el (apropos-next-label-button): Update arguments to
5441 `next-button'.
5442 (apropos-symbol): Add `skip' property.
5443 (apropos-function, apropos-macro, apropos-command)
5444 (apropos-variable, apropos-face, apropos-group, apropos-widget)
5445 (apropos-plist): New button types.
5446 (apropos-label-properties): Variable removed.
5447 (apropos-print): Pass button-type to apropos-print-doc, rather
5448 than help function and label text.
5449 (apropos-print-doc): Remove ACTION and STR args, add TYPE arg.
5450 Get button label from TYPE.
5451
5452 2001-10-07 Stefan Monnier <monnier@cs.yale.edu>
5453
5454 * help.el (help-mode): Use define-derived-mode.
5455 (describe-mode): Add optional `buffer' arg.
5456 Use it instead of going through help-xref-mode.
5457 Avoid doubling the word `minor' when prettifying.
5458 (describe-function-1): List the corresponding key bindings.
5459 (describe-variable): Say if the var is automatically buffer-local.
5460 If the source is `loaddefs.el', look for the real source.
5461 (help-xref-mode): Remove.
5462
5463 * emacs-lisp/bytecomp.el (byte-compile-file): Return success when
5464 the file says no-byte-compile.
5465
5466 2001-10-08 Miles Bader <miles@gnu.org>
5467
5468 * button.el (next-button, previous-button): Respect `skip' property.
5469
5470 2001-10-07 Miles Bader <miles@gnu.org>
5471
5472 * woman.el (woman-mode-map): Copy button-buffer-map instead of
5473 making a new keymap. Don't bind mouse-2. Bind M-mouse-2 to
5474 `woman-follow-word' instead of `woman-mouse-2'.
5475 (woman-follow-word): Renamed from `woman-mouse-2'.
5476 Follow current unconditionally, since this function is now only
5477 bound to M-mouse-2. Use accessor functions.
5478 (WoMan-highlight-references): Use `make-text-button'.
5479 (woman-xref): New button type.
5480
5481 * loadup.el ("faces"): Move load before loading "loaddefs.el".
5482 ("button"): New load, just before "help" (which uses it).
5483
5484 * help.el (help-mode-map): Make button-buffer-map our parent.
5485 Don't bind mouse events or tab/backtab.
5486 (help-function, help-variable, help-face, help-coding-system)
5487 (help-input-method, help-character-set, help-back, help-info)
5488 (help-customize-variable, help-function-def, help-variable-def):
5489 New button types.
5490 (help-button-action): New function.
5491 (describe-function-1): Pass help button-types to
5492 `help-xref-button' rather than help function and help-echo string.
5493 Don't put multiple help-function args in a list to pass them to
5494 help-xref-button, just pass them as multiple arguments.
5495 Use `help-insert-xref-button' to make [back]-button, rather than
5496 `help-xref-button'.
5497 (help-xref-button): Take a button-type TYPE as a parameter rather
5498 than a function. Remove HELP-ECHO parameter. Remove DATA parameter
5499 and add a &rest parameter ARGS to serve the same purpose.
5500 Use `make-text-button' to add the button.
5501 (help-insert-xref-button): Use `insert-text-button' to add the button.
5502 (help-follow-mouse, help-next-ref, help-previous-ref):
5503 Functions removed.
5504 (help-do-xref): New function.
5505 (help-follow): Use `push-button' and `help-do-xref' to do most of
5506 the work.
5507
5508 * apropos.el (apropos-symbol, apropos-label): New button types.
5509 (apropos-symbol-button-display-help)
5510 (apropos-label-button-display-help, apropos-next-label-button):
5511 New functions.
5512 (apropos-mode-map): Make button-buffer-map our parent.
5513 Don't bind mouse events.
5514 (apropos-print, apropos-print-doc): Create buttons instead of text
5515 properties.
5516 (apropos-mouse-follow): Function removed.
5517 (apropos-follow): Use buttons.
5518
5519 * button.el: New file.
5520
5521 2001-10-07 Gerd Moellmann <gerd@gnu.org>
5522
5523 * emacs-lisp/cl.el (most-positive-fixnum, most-negative-fixnum):
5524 Remove.
5525
5526 2001-10-05 Richard M. Stallman <rms@gnu.org>
5527
5528 * add-log.el (add-change-log-entry): Skip copyright notice
5529 and copying permission notice at start of file, if any.
5530 Make use of terms "entry" and "item" accord with Emacs manual.
5531 Simplify the logic for moving point while entering or creating
5532 an entry and then an item.
5533 (add-change-log-entry-other-window): Doc fix.
5534
5535 2001-10-06 Miles Bader <miles@gnu.org>
5536
5537 * rfn-eshadow.el (read-file-name-electric-shadow): Autoload cookie
5538 removed; they apparently don't work with faces.
5539
5540 2001-10-05 Sam Steingold <sds@gnu.org>
5541
5542 * textmodes/sgml-mode.el (html-xhtml): New user option.
5543 (html-tag-alist, html-horizontal-rule, html-image, html-line)
5544 (html-ordered-list, html-unordered-list, html-list-item)
5545 (html-paragraph, html-checkboxes, html-radio-buttons): Use it.
5546 (sgml-skip-close-p): New function.
5547 (sgml-value): Use it.
5548
5549 2001-10-05 Sam Steingold <sds@gnu.org>
5550
5551 * calendar/diary-lib.el (diary-entry-compare): When times are
5552 identical, compare the entries lexicographically.
5553
5554 2001-10-06 Miles Bader <miles@gnu.org>
5555
5556 * rfn-eshadow.el (rfn-eshadow-update-overlay):
5557 Use `minibuffer-prompt-end'.
5558
5559 * simple.el (previous-matching-history-element): Fix misplaced
5560 parentheses.
5561
5562 2001-10-05 Miles Bader <miles@gnu.org>
5563
5564 * rfn-eshadow.el: New file.
5565
5566 2001-10-05 Miles Bader <miles@gnu.org>
5567
5568 * cus-face.el (custom-face-attributes): Make sure each attribute
5569 has a valid default value. Remove hacks that mapped `nil' to
5570 `off' and used nil to mean `unspecified'. Remove `unspecified'
5571 choices from all attributes (unspecified is handled by the parent
5572 checklist).
5573 * cus-edit.el (custom-face-edit-convert-widget)
5574 (custom-face-edit-deactivate, custom-face-edit-activate)
5575 (custom-face-edit-delete, custom-face-edit-attribute-tag):
5576 New functions.
5577 (custom-face-edit): Specify a custom :convert-widget.
5578 (custom-pre-filter-face-spec, custom-post-filter-face-spec):
5579 Don't pass in default filters that map between `nil' and `off' and
5580 `unspecified' and `nil'.
5581
5582 2001-10-05 Gerd Moellmann <gerd@gnu.org>
5583
5584 * progmodes/compile.el (compilation-buffer-name): New function.
5585 (compile-internal): Use it to determine the name of the
5586 compilation buffer.
5587
5588 2001-10-05 Miles Bader <miles@gnu.org>
5589
5590 * progmodes/compile.el (grep-use-null-device): New variable.
5591 (grep-command): Mention `grep-use-null-device'.
5592 (grep-compute-defaults): Compute `grep-use-null-device' if necessary.
5593 Make computation of `grep-command' respect `grep-use-null-device'.
5594 (grep): Respect `grep-use-null-device'.
5595 Call `grep-compute-defaults' even if grep-command is set, if
5596 grep-use-null-device is still tentative.
5597
5598 * subr.el (call-process-shell-command): New function.
5599
5600 2001-10-05 Miles Bader <miles@gnu.org>
5601
5602 * simple.el (previous-matching-history-element)
5603 (next-history-element, next-complete-history-element): Use
5604 `minibuffer-' functions instead of calling `field-' functions directly.
5605 (minibuffer-prompt-end, minibuffer-contents):
5606 (minibuffer-contents-no-properties, delete-minibuffer-contents):
5607 Functions removed (now subrs).
5608 (minibuffer-prompt-width): Use `minibuffer-prompt-end'.
5609
5610 * minibuf-eldef.el (minibuf-eldef-setup-minibuffer)
5611 (minibuf-eldef-update-minibuffer): Use `minibuffer-' functions
5612 instead of calling `field-' functions directly.
5613 (minibuf-eldef-setup-minibuffer): Remove unused variable `prompt'.
5614
5615 2001-10-05 Gerd Moellmann <gerd@gnu.org>
5616
5617 * files.el (find-file-noselect): If file's read-only status has
5618 changed on disk, ask if buffer's read-only status should be
5619 changed, unless NOWARN is set.
5620
5621 * emacs-lisp/cl-macs.el (define-setf-expander): Make it an
5622 alias for define-setf-method.
5623
5624 * bindings.el: Remove no-byte-compile from file local variables
5625 to enable bootstrapping.
5626
5627 2001-10-04 Andrew Innes <andrewi@gnu.org>
5628
5629 * faces.el (face-font-registry-alternatives) [windows-nt]:
5630 Make gb2312 an alias for gb2312.1980.
5631
5632 2001-10-04 Stefan Monnier <monnier@cs.yale.edu>
5633
5634 * uniquify.el (uniquify-get-proposed-name): Don't assume dirsep is /.
5635 (uniquify-reverse-components): Remove.
5636
5637 * emacs-lisp/bytecomp.el (byte-recompile-directory):
5638 Make sure the file is readable.
5639 (byte-compile-file): Don't compile if `no-byte-compile' is set.
5640 (byte-compile-defvar): Update to reflect the change in Fdefvar.
5641 (batch-byte-recompile-directory): Pass arg=0.
5642
5643 * progmodes/perl-mode.el (perl-indent-continued-arguments): New var.
5644 (perl-calculate-indent): Use it.
5645 (perl-backward-to-noncomment): Use forward-comment.
5646
5647 * derived.el (define-derived-mode, derived-mode-make-docstring):
5648 Allow `parent' to be nil.
5649
5650 * textmodes/nroff-mode.el (nroff-mode-abbrev-table, nroff-mode):
5651 Use define-derived-mode.
5652 (nroff-mode-map, nroff-mode-syntax-table): Massage.
5653
5654 * mail/mailabbrev.el (mail-abbrev-in-expansion-header-p): Simplify.
5655
5656 * emacs-lisp/lselect.el: Use facep iso find-face.
5657
5658 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
5659 Use regexp-opt.
5660 (doc-string-elt): Set symbols' prop. Copied from autoload.el.
5661 (lisp-font-lock-syntactic-face-function): New function.
5662 (lisp-mode-variables): Use it. Make arg optional.
5663 (emacs-lisp-mode): Don't pass an arg to lisp-mode-variables.
5664 (lisp-mode): Don't pass an arg to lisp-mode-variables.
5665 Set comment-start-skip.
5666
5667 * emacs-lisp/lisp-mnt.el (lm-history-header): Accept `ChangeLog'.
5668
5669 * emacs-lisp/cl-macs.el (frame-parameter): Add a setf method.
5670 (ignore-errors): Don't bother using a `err' symbol.
5671
5672 * emacs-lisp/autoload.el (autoload-ensure-default-file)
5673 (autoload-insert-section-header, autoload-before-p)
5674 (autoload-remove-section): New functions.
5675 (generate-file-autoloads): Use them.
5676 (update-file-autoloads): Use them. Return FILE if there's no cookie.
5677 Make sure the autoload file is properly formatted when creating it.
5678 (update-autoloads-from-directories): Use them as well.
5679 Only update autoloads for files whose timestamp has changed.
5680 Add a dummy entry to remember the files which had no autoload cookies.
5681
5682 * timer.el (timer-relative-time): Fix computation for negative `micro'.
5683
5684 * subr.el (define-key-after): Allow `key' to be longer than 1.
5685 (make-local-hook): Make obsolete.
5686 (add-hook, remove-hook): Don't use make-local-hook any more.
5687 (make-syntax-table): Inherit all chars from s-s-t.
5688
5689 2001-10-04 Gerd Moellmann <gerd@gnu.org>
5690
5691 This is a fix for a report saying that resuming a search with C-s
5692 C-s doesn't use the case-fold-search setting of the previous
5693 search (C-s ... M-c ... then C-s C-s).
5694
5695 * isearch.el (isearch-last-case-fold-search): New variable.
5696 (isearch-mode): Remember value of isearch-case-fold-search
5697 in isearch-last-case-fold-search.
5698 (isearch-done): Quote value of isearch-case-fold-search.
5699 (isearch-repeat): When resuming a search, restore
5700 isearch-case-fold-search from isearch-last-case-fold-search.
5701
5702 Added to NEWS.
5703
5704 * startup.el (inhibit-startup-buffer-menu): New user-option.
5705 (command-line-1): If inhibit-startup-buffer-menu is set, don't
5706 display the buffer menu. From Simon Josefsson <jas@extundo.com>.
5707
5708 This allows upto 99999 messages in the summary without screwing up
5709 the summary sorting. Previously 9999 was the maximum. Added to NEWS.
5710
5711 * mail/rmailsum.el (rmail-make-summary-line)
5712 (rmail-make-summary-line-1, rmail-summary-next-same-subject)
5713 (rmail-summary-goto-msg, rmail-summary-goto-msg):
5714 Allow 5-digit message ids instead of 4.
5715
5716 This adds expansion of environment variables in the value
5717 specified with M-x setenv. Added to NEWS.
5718
5719 * env.el (substitute-env-vars): New function.
5720 (setenv): Add parameter SUBSTITUTE-ENV-VARS. If set, substitute
5721 environment variables in VALUE. Return VALUE.
5722
5723 2001-10-04 Gerd Moellmann <gerd@gnu.org>
5724
5725 * Branch for 21.1.
5726
5727 2001-10-03 Stefan Monnier <monnier@cs.yale.edu>
5728
5729 * pcvs-util.el (cvs-prefix-define): Typo cons->concat.
5730
5731 2001-10-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
5732
5733 * emulation/tpu-edt.el: Make messages match original TPU/edt
5734 editor. From riepel@Stanford.EDU (Rob Riepel).
5735
5736 2001-10-03 Eli Zaretskii <eliz@is.elta.co.il>
5737
5738 * rect.el: Update maintainer's email address.
5739
5740 2001-10-02 Andreas Schwab <schwab@suse.de>
5741
5742 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 227 and 228 for Long
5743 and Extended Passive Mode, resp.
5744
5745 2001-10-01 Eli Zaretskii <eliz@is.elta.co.il>
5746
5747 These changes add support for Calendar-related items in the
5748 menu bar on tty's as well:
5749
5750 * calendar/calendar.el (calendar-mode-map): Require cal-menu
5751 unconditionally.
5752 (calendar-mode): Set up activate-menubar-hook unconditionally.
5753
5754 * calendar/cal-menu.el (cal-menu-x-popup-menu): New function,
5755 calls x-popup-menu only if popup menus are supported.
5756 (calendar-mouse-insert-hebrew-diary-entry)
5757 (calendar-mouse-insert-islamic-diary-entry)
5758 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
5759 (calendar-mouse-view-other-diary-entries)
5760 (calendar-mouse-print-dates, calendar-mouse-2-date-menu)
5761 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
5762 Call cal-menu-x-popup-menu instead of x-popup-menu.
5763
5764 2001-10-01 Gerd Moellmann <gerd@gnu.org>
5765
5766 * gs.el (gs-set-ghostview-window-prop): Fix args of `elt'.
5767
5768 * emacs-lisp/edebug.el (rx): Add def-edebug-spec.
5769
5770 * emacs-lisp/rx.el: New file.
5771
5772 2001-10-01 Eli Zaretskii <eliz@is.elta.co.il>
5773
5774 * help.el (help-for-help): Doc fix. From Pavel@Janik.cz (Pavel Janik).
5775
5776 2001-09-30 Eli Zaretskii <eliz@is.elta.co.il>
5777
5778 * frame.el (select-frame-by-name, other-frame): Doc fix.
5779
5780 2001-09-29 Eli Zaretskii <eliz@is.elta.co.il>
5781
5782 * play/snake.el (snake-score-file): Use temporary-file-directory
5783 instead of a literal "/tmp". Suggested by Robert
5784 <robert@chezmarshall.freeserve.co.uk>.
5785
5786 * play/tetris.el (tetris-score-file): Ditto.
5787
5788 2001-09-28 Eli Zaretskii <eliz@is.elta.co.il>
5789
5790 * apropos.el (apropos-print): Make the directions inserted at the
5791 beginning of the *Apropos* buffer more clear.
5792
5793 2001-09-27 Michael Kifer <kifer@cs.sunysb.edu>
5794
5795 * ediff-mult.el (ediff-get-meta-info): Installed Gerd's changes.
5796 Added comments.
5797
5798 2001-09-27 Stefan Monnier <monnier@cs.yale.edu>
5799
5800 * newcomment.el (comment-normalize-vars): Use " \t" rather than
5801 "\\s-" when defining comment-end-skip.
5802
5803 2001-09-27 Gerd Moellmann <gerd@gnu.org>
5804
5805 * mail/feedmail.el (feedmail-queue-send-edit-prompt-help):
5806 Call get-buffer-window first second arg `visible'.
5807
5808 * international/mule-diag.el (list-input-methods-1):
5809 Output something that's independent of Emacs' version.
5810
5811 * tar-mode.el (tar-mode-write-file): Don't signal an error by
5812 calling byte-to-position with a nil tar-header-offset.
5813
5814 2001-09-27 Simon Josefsson <jas@extundo.com>
5815
5816 * mail/sendmail.el (send-mail-function): Doc fix.
5817 (mail-do-fcc): Error if header-end is not a marker.
5818 (mail-do-fcc): Add a comment.
5819 (mail-reply-to): Doc fix.
5820 (mail-signature): Make ATPOINT optional.
5821 (mail-yank-original): Use cond instead of nestled if.
5822
5823 2001-09-26 Stefan Monnier <monnier@cs.yale.edu>
5824
5825 * info.el (Info-on-current-buffer): Default arg to "Top".
5826
5827 2001-09-25 Eli Barzilay <eli@barzilay.org>
5828
5829 * calculator.el (calculator-copy-displayer): New user-option.
5830 (calculator-displayer-prev, calculator-displayer-next):
5831 Renamed from calculator-displayed-{left,right}.
5832 (calculator, calculator-standard-displayer)
5833 (calculator-num-to-string, calculator-update-display)
5834 (calculator-copy, calculator-put-value): Bug and display fixes.
5835
5836 2001-09-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5837
5838 * ebnf2ps.el: Eliminate make-local-hook calls. Doc fix.
5839 (ebnf-version): New version (3.6.1).
5840
5841 * ebnf-bnf.el: Fix character range regexp. Doc fix.
5842 (ebnf-bnf-non-terminal-chars): New internal const.
5843 (ebnf-bnf-lex): Fix code.
5844
5845 * ebnf-iso.el: Fix character range regexp. Doc fix.
5846 (ebnf-iso-non-terminal-chars): New internal const.
5847 (ebnf-iso-lex): Fix code.
5848
5849 * ebnf-yac.el: Fix character range regexp. Doc fix.
5850 (ebnf-yac-skip-chars): New internal const.
5851 (ebnf-yac-skip-code): Fix code.
5852
5853 2001-09-24 Stefan Monnier <monnier@cs.yale.edu>
5854
5855 * vc.el (vc-checkin): Use vc-delete-automatic-version-backups.
5856
5857 * pcvs-parse.el (cvs-parse-commit): Expand the file name before
5858 passing it to VC.
5859
5860 * vc-hooks.el (vc-delete-automatic-version-backups): Handle the
5861 case where the file is relative.
5862
5863 2001-09-24 Gerd Moellmann <gerd@gnu.org>
5864
5865 * xml.el (xml-parse-attlist): Quotes around attributes must be the
5866 same on each side. Make sure we properly handle simple quotes.
5867 From Daiki Ueno <ueno@unixuser.org>.
5868
5869 2001-09-23 Eli Zaretskii <eliz@is.elta.co.il>
5870
5871 * mail/sendmail.el (mail-mode): Doc fix. From Simon Josefsson
5872 <jas@extundo.com>.
5873
5874 * menu-bar.el (top-level): Minor fixes for text of help-echo in
5875 some items of the Options menu.
5876
5877 2001-09-22 Stefan Monnier <monnier@cs.yale.edu>
5878
5879 * pcvs-parse.el (cvs-parse-commit): Remove the temp files used by VC.
5880
5881 * vc-hooks.el (vc-delete-automatic-version-backups):
5882 Don't fail if the directory doesn't exist.
5883
5884 * diff-mode.el (diff-default-read-only): New var.
5885 (diff-mode): Use it.
5886
5887 2001-09-22 Eli Zaretskii <eliz@is.elta.co.il>
5888
5889 * hexl.el (hexl-mode-map): Fix the change of 2001-08-23:
5890 Use make-keymap instead of copy-keymap, since copying the global
5891 keymap messes up the menu bar.
5892
5893 * info.el (Info-goto-node, Info-menu): Doc fix. Suggested by
5894 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
5895
5896 2001-09-21 Eli Zaretskii <eliz@is.elta.co.il>
5897
5898 * dired.el (dired-build-subdir-alist): Accept optional arg SWITCHES.
5899
5900 * dired-aux.el (dired-insert-subdir): Pass switches to
5901 dired-build-subdir-alist.
5902
5903 2001-09-21 Stephen Gildea <gildea@stop.mail-abuse.org>
5904
5905 * time-stamp.el (time-stamp-string-preprocess): Fix bug that
5906 caused %#a and %#b to be mis-formatted.
5907
5908 2001-09-20 Eli Zaretskii <eliz@is.elta.co.il>
5909
5910 * info.el (Info-file-list-for-emacs): Add elements for ada-mode,
5911 ccmode, emacs-mime, and eudc manuals.
5912
5913 2001-09-19 Sam Steingold <sds@gnu.org>
5914
5915 w32 find cannot be used with `grep-find'.
5916 * progmodes/compile.el (find-program): New variable.
5917 (grep-compute-defaults): Use it to set `grep-find-command'.
5918
5919 2001-09-19 Gerd Moellmann <gerd@gnu.org>
5920
5921 * ps-bdf.el (bdf-read-bitmap): Initialize returned values to defaults.
5922
5923 2001-09-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5924
5925 * ebnf2ps.el: Replace "Prologue" by "Prolog" in PostScript
5926 programming. Doc fix.
5927 (ebnf-version): New version (3.6).
5928 (ebnf-eps-begin): Data fix.
5929 (ebnf-begin-file): Code fix.
5930
5931 * ebnf-bnf.el: Doc fix.
5932 (ebnf-bnf-lex): Fix regexp for non-terminal and terminal tokens.
5933
5934 * ebnf-iso.el, ebnf-otz.el, ebnf-yac.el: Doc fix.
5935
5936 2001-09-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5937
5938 * ps-print.el: Better face mapping for black/white PostScript printers.
5939 Check if mark is active when printing a region. Doc fix.
5940 (ps-print-version): New version number (6.5.5).
5941 (ps-print-color-p): Customization fix.
5942 (ps-black-white-faces): New option.
5943 (ps-black-white-faces-alist): New internal var.
5944 (ps-count-lines-preprint, ps-print-preprint-region): New funs.
5945 (ps-print-region, ps-print-region-with-faces, ps-nb-pages-buffer)
5946 (ps-nb-pages-region): Interactive fix.
5947 (ps-extend-face-list, ps-extend-face, ps-setup, ps-begin-job)
5948 (ps-face-attributes, ps-generate-postscript-with-faces): Code fix.
5949
5950 2001-09-18 Eli Zaretskii <eliz@is.elta.co.il>
5951
5952 * dired.el (dired-move-to-filename-regexp): Allow one digit in the
5953 numeric month value, and allow the Kanji character after the it to
5954 be missing (happens with ls-lisp's output on Japanese versions of
5955 MS-Windows).
5956
5957 2001-09-18 Miles Bader <miles@gnu.org>
5958
5959 * diff-mode.el (diff-mode): Don't make the buffer read-only if
5960 it's empty (and thus probably a new patch file about to be edited).
5961
5962 2001-09-17 Gerd Moellmann <gerd@gnu.org>
5963
5964 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
5965 Check for '(' in column 0 of doc string.
5966
5967 * gs.el (gs-set-ghostview-window-prop): Use `elt' instead
5968 of `nth' so that using a vector as bounding-box works.
5969 From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
5970
5971 2001-09-17 Andre Spiegel <spiegel@gnu.org>
5972
5973 * vc.el (vc-annotate): Use current workfile version explicitly as
5974 a default, suggested by Gustav H\e,Ae\e(Bllberg <gustav@virtutech.se>.
5975
5976 2001-09-16 Eli Zaretskii <eliz@is.elta.co.il>
5977
5978 * ps-bdf.el (bdf-cache-file) <ms-dos>: Use _bdfcache.el, since
5979 convert-standard-filename doesn't guarantee that the .el extension
5980 is preserved.
5981
5982 * dos-fns.el (convert-standard-filename): Replace invalid
5983 characters only after converting dash/underscore to a period.
5984 (original-make-auto-save-file-name): New.
5985 (make-auto-save-file-name): New function, overrides the definition
5986 on files.el and calls the original function via
5987 original-make-auto-save-file-name.
5988
5989 * mail/rmail.el (top-level): Require mule-utils when compiling.
5990 (rmail-decode-babyl-format): Use detect-coding-with-priority
5991 instead of detect-coding-region, to favor detection of emacs-mule
5992 encoded Babyl files written by rmailout.el etc. Suggested by
5993 Kenichi Handa <handa@etl.go.jp>.
5994
5995 2001-09-14 Eli Zaretskii <eliz@is.elta.co.il>
5996
5997 * eshell/em-unix.el (eshell-shuffle-files, eshell-shuffle-files):
5998 Use `equal', not `=', since the device number can be a cons cell.
5999
6000 2001-09-14 Gerd Moellmann <gerd@gnu.org>
6001
6002 * simple.el: Comment out change of 2001-09-13.
6003
6004 2001-09-13 Milan Zamazal <pdm@zamazal.org>
6005
6006 * progmodes/compile.el (grep-compute-defaults): Don't set
6007 grep-command/grep-find-command when it is already non-nil.
6008 (grep-command): Make it a user option.
6009 (grep-find-command): Likewise.
6010
6011 2001-09-13 Michael Kifer <kifer@cs.sunysb.edu>
6012
6013 * viper-cmd.el (viper-replace-char-subr, viper-envelop-ESC-key):
6014 inhibit quit.
6015
6016 2001-09-13 Eli Zaretskii <eliz@is.elta.co.il>
6017
6018 * files.el (make-auto-save-file-name): If long file names are not
6019 supported on MS-DOS, truncate the file name to DOS 8+3 limits before
6020 generating an auto-save file name from it.
6021
6022 2001-09-13 Gerd Moellmann <gerd@gnu.org>
6023
6024 * ps-print.el (ps-print-region, ps-print-region-with-faces)
6025 (ps-nb-pages-region): Signal an error if called interactively
6026 and the mark is not active.
6027
6028 * simple.el (minibuffer-prompt-modification)
6029 (minibuffer-prompt-insertion): New functions.
6030 (minibuffer-prompt-properties): Use `modification-hooks' and
6031 `insert-in-front-hooks'.
6032
6033 2001-09-12 Richard M. Stallman <rms@gnu.org>
6034
6035 * textmodes/outline.el (outline-regexp): Doc fix.
6036 Initialize it in the defcustom, the usual way.
6037
6038 2001-09-12 Gerd Moellmann <gerd@gnu.org>
6039
6040 * ediff-mult.el (ediff-get-meta-info): Take into account that data
6041 from `ediff-meta-info' properties need not be an overlay.
6042 From David Ponce <dponce@voila.fr>.
6043
6044 * isearch.el (isearch-intersects-p): Fix end checks.
6045
6046 2001-09-11 Eli Zaretskii <a34785@is.elta.co.il>
6047
6048 * gud.el (dbx) <gud-dbx-use-stopformat-p>: Move this case into the
6049 `t' branch of `cond', since Irix 6.1 and up is a special case of
6050 the standard dbx interface.
6051
6052 2001-09-11 Miles Bader <miles@gnu.org>
6053
6054 * comint.el (comint-send-input): When waiting for echoed input,
6055 don't save the expected end position in `echo-end', so that things
6056 work properly even if the buffer is modified elsewhere at the same
6057 time [this happens if `comint-truncate-buffer' is used].
6058
6059 2001-09-11 Gerd Moellmann <gerd@gnu.org>
6060
6061 * textmodes/outline.el (outline-mode): Use `^' and a shy group
6062 when constructing imenu-generic-expression from outline-regexp.
6063
6064 2001-09-10 Eli Zaretskii <eliz@is.elta.co.il>
6065
6066 * eshell/em-unix.el (eshell-shuffle-files): Compare inodes with
6067 `equal' instead of `=', since they can be cons cells. From Nils
6068 Goesche <cartan@cartan.de>.
6069
6070 2001-09-10 Andre Spiegel <spiegel@gnu.org>
6071
6072 * vc.el (vc-annotate): Rewrote doc string.
6073
6074 2001-09-10 Eli Zaretskii <eliz@is.elta.co.il>
6075
6076 * time-stamp.el: Update Stephen Gildea's email address.
6077
6078 2001-09-10 Gerd Moellmann <gerd@gnu.org>
6079
6080 * mail/sendmail.el (mail-send): Obey mail-send-nonascii when
6081 enable-multibyte-characters = nil. From Hallvard B Furuseth
6082 <h.b.furuseth@usit.uio.no>.
6083
6084 2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
6085
6086 * ediff-init.el (ediff-highest-priority): Bug fix.
6087
6088 * viper-cmd.el (viper-special-read-and-insert-char): New function
6089 that reads a character and uses the current input method or
6090 iso-accents when appropriate.
6091
6092 * viper.el and all others: Corrections to the comment blocks at
6093 the top.
6094
6095 2001-09-09 Eli Zaretskii <eliz@is.elta.co.il>
6096
6097 * info.el (Info-goto-node): Doc fix.
6098
6099 2001-09-07 Gerd Moellmann <gerd@gnu.org>
6100
6101 * isearch.el (isearch-intersects-p): New function.
6102 (isearch-close-unnecessary-overlays): Renamed from *unecessary*,
6103 use isearch-intersects-p, and clean up.
6104
6105 2001-09-07 Eli Zaretskii <eliz@is.elta.co.il>
6106
6107 * textmodes/ispell.el (ispell-dictionary-alist-4): Add "german"
6108 and "german8", for the new German orthography dictionaries,
6109 (ispell-dictionary-alist-5, ispell-dictionary-alist-6): Rearrange
6110 the entries, to keep the line length balanced for loaddefs.el.
6111
6112 2001-09-07 Dr Francis J. Wright <F.J.Wright@qmw.ac.uk>
6113
6114 * comint.el (comint-send-input): Handle comint-process-echoes
6115 differently.
6116
6117 2001-09-07 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6118
6119 * locate.el (locate-insert-header): Remove unnecessary whitespace.
6120
6121 2001-09-07 Eli Zaretskii <eliz@is.elta.co.il>
6122
6123 * arc-mode.el (archive-dostime): Fix a typo in minutes' computation.
6124
6125 2001-09-07 Gerd Moellmann <gerd@gnu.org>
6126
6127 * server.el (server-switch-buffer):
6128 * textmodes/refer.el (refer-find-entry-internal):
6129 * term/sup-mouse.el (sup-pos-to-window):
6130 * term/bg-mouse.el (bg-window-from-x-y):
6131 * emacs-lisp/edebug.el (edebug-window-live-p):
6132 Use get-window-with-predicate.
6133
6134 * window.el (get-window-with-predicate): Renamed from some-window.
6135 (some-window): Make it an alias.
6136
6137 2001-09-06 Gerd Moellmann <gerd@gnu.org>
6138
6139 * simple.el (undo): Remove positions from buffer-undo-list up to
6140 the next undo boundary only.
6141
6142 2001-09-06 Eli Zaretskii <eliz@is.elta.co.il>
6143
6144 * makefile.nt (install): Don't copy sc.el. Reported by Richard
6145 Kim <ryk@dspwiz.com>
6146
6147 * cus-edit.el (custom-buffer-create-internal): Remove "100%" from
6148 the message "Creating customization items...done".
6149
6150 2001-09-05 Gerd Moellmann <gerd@gnu.org>
6151
6152 * font-lock.el (toplevel): Require `jit-lock' only if
6153 font-lock-support-mode is set to jit-lock-mode.
6154
6155 2001-09-05 Eli Zaretskii <eliz@is.elta.co.il>
6156
6157 * international/quail.el (quail-use-package, quail-inactivate)
6158 (quail-activate): Mention the hooks these functions run in their
6159 doc strings.
6160
6161 2001-09-05 Edward M. Reingold <reingold@iit.edu>
6162
6163 * cal-menu.el (calendar-mouse-view-other-diary-entries): Fix name
6164 of file in header of menu.
6165
6166 2001-09-04 Gerd Moellmann <gerd@gnu.org>
6167
6168 * env.el (setenv): Interactively, if VARIABLE has a current value,
6169 add that to the front of the history, as the doc string says.
6170
6171 * comint.el (comint-send-input): Change help-echo.
6172 From "Dr Francis J. Wright" <F.J.Wright@qmw.ac.uk>.
6173
6174 * bookmark.el (bookmark-write-file): Bind print-length and
6175 print-level to nil. From Tom Capey <tomc@edina.co.uk>.
6176
6177 * obsolete/uncompress.el: Moved there from lisp/.
6178
6179 * comint.el (comint-insert-clicked-input): Goto point-max before
6180 deleting previous input. From "Dr Francis J. Wright"
6181 <F.J.Wright@qmw.ac.uk>.
6182
6183 * simple.el (backward-word): Doc fix.
6184
6185 2001-09-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6186
6187 * emacs-lisp/levents.el, emacs-lisp/lucid.el, emacs-lisp/pp.el
6188 * uncompress.el, uniquify.el, vc.el, view.el, window.el
6189 * w32-fns.el: Add Keywords header.
6190
6191 2001-09-04 Eli Zaretskii <eliz@is.elta.co.il>
6192
6193 * menu-bar.el: Fix separators in the Edit menu. Bring "Fill" near
6194 "Text Properties". Suggested by Simon Marshall
6195 <Simon.Marshall@midas-kapiti.com>.
6196
6197 2001-09-04 Andrew Choi <akochoi@cse.cuhk.edu.hk>
6198
6199 * term/mac-win.el (mac-drag-n-drop): Decode file name by
6200 consulting the value of file-name-coding-system.
6201
6202 2001-09-03 Stefan Monnier <monnier@cs.yale.edu>
6203
6204 * help.el (describe-function-1): Save precomputed `file-name' rather
6205 than recomputing it (incorrectly) with `symbol-file'.
6206
6207 2001-09-03 Gerd Moellmann <gerd@gnu.org>
6208
6209 * international/isearch-x.el (isearch-exit-recursive-edit):
6210 Take three parameters, since it's used as an after-change-function.
6211
6212 * emacs-lisp/backquote.el (backquote-backquote-symbol)
6213 (backquote-unquote-symbol, backquote-splice-symbol): Remove `*'
6214 from doc strings.
6215
6216 2001-09-02 Milan Zamazal <pdm@zamazal.org>
6217
6218 * progmodes/glasses.el (glasses-convert-to-unreadable):
6219 Consider underscores as in `glasses-make-readable'.
6220
6221 2001-09-02 Eli Zaretskii <eliz@is.elta.co.il>
6222
6223 * progmodes/cmacexp.el (c-macro-preprocessor): Use "gcc -E" for
6224 MS-DOS, since cpp might not be available.
6225
6226 * menu-bar.el (menu-bar-edit-menu) <yank-menu, yank>:
6227 Mention "yank" in the help-echo text.
6228 Suggested by Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6229
6230 2001-09-01 Stefan Monnier <monnier@cs.yale.edu>
6231
6232 * newcomment.el (comment-indent): Insert spaces more carefully.
6233
6234 2001-08-31 Eli Zaretskii <eliz@is.elta.co.il>
6235
6236 * mail/emacsbug.el (report-emacs-bug): Make sure *Messages*
6237 exists. From Andy Petrusenco <andy@int.spb.ru>.
6238
6239 * hi-lock.el (hi-lock-unface-buffer): Don't call x-popup-menu if
6240 display-popup-menus-p returns nil. Suggested by Andy Petrusenco
6241 <andy@int.spb.ru>.
6242
6243 2001-08-31 Gerd Moellmann <gerd@gnu.org>
6244
6245 * isearch.el (isearch-mouse-2): Renamed from isearch-mouse-yank.
6246 Instead of running mouse-yank-at-click, see what the event is
6247 bound to outside Isearch and run that.
6248
6249 2001-08-31 Eli Zaretskii <eliz@is.elta.co.il>
6250
6251 * menu-bar.el (menu-bar-options-menu) <transient-mark-mode>:
6252 Fix the menu entry to mention transient-mark-mode.
6253
6254 2001-08-30 Gerd Moellmann <gerd@gnu.org>
6255
6256 * simple.el (eval-expression-print-level): Fix last change.
6257
6258 * bindings.el (mode-line-coding-system-map): New variable.
6259 (mode-line-mule-info): Give the "%Z" a local-map keymap.
6260
6261 * simple.el (eval-expression-print-level): Change the type
6262 of the defcustom to allow nil.
6263
6264 * emacs-lisp/find-gc.el: Moved here from lisp/.
6265
6266 * international/quail.el (quail-completion-1):
6267 Reverse the ((CHAR . DEFN) ...) list before processing it.
6268 From Kenichi Handa <handa@etl.go.jp>.
6269
6270 * obsolete/rsz-mini.el, obsolete/sun-curs.el, obsolete/sun-fns.el
6271 * obsolete/x-apollo.el, obsolete/x-menu.el: Moved here from lisp/.
6272
6273 2001-08-30 Eli Zaretskii <eliz@is.elta.co.il>
6274
6275 * toolbar/tool-bar.el (tool-bar-mode): Make it a no-op if images
6276 aren't supported. This avoids the annoying gray strip drawn by
6277 the Windows version instead of the missing tool bar.
6278
6279 2001-08-29 Gerd Moellmann <gerd@gnu.org>
6280
6281 * menu-bar.el (menu-bar-options-menu): Make option text, messages
6282 and tooltips more consistent. From "Marshall, Simon"
6283 <Simon.Marshall@midas-kapiti.com>.
6284
6285 * startup.el (fancy-splash-screens): Temporarily set
6286 minor-mode-map-alist to nil while displaying splash screens.
6287
6288 2001-08-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6289
6290 * buff-menu.el: Add Keywords header.
6291 Doc fix (C-x C-b is bound to list-buffers).
6292
6293 * dired-x.el: Add keyword files to get listed in finder.
6294 Remove confusing notes about GNU Emacs 19.
6295
6296 * dired.el, dired-aux.el: Add Keywords header.
6297
6298 2001-08-28 Andre Spiegel <spiegel@gnu.org>
6299
6300 * vc.el (vc-revert-file): Call the backend even if the FILE's
6301 contents can be reverted locally; pass new arg CONTENTS-DONE
6302 down to the backend.
6303
6304 * vc-cvs.el, vc-rcs.el, vc-sccs.el (vc-*-revert-file): Handle new
6305 optional arg CONTENTS-DONE.
6306
6307 2001-08-28 Andrew Innes <andrewi@gnu.org>
6308
6309 * makefile.nt (DONTCOMPILE): Sync list from makefile.w32-in.
6310
6311 2001-08-28 Eli Zaretskii <eliz@is.elta.co.il>
6312
6313 * makefile.nt (install): Copy more *.el files.
6314
6315 2001-08-28 Gerd Moellmann <gerd@gnu.org>
6316
6317 * dired.el (dired-mode-map): Bind `y' to dired-show-file-type
6318 instead of `w' which is already in use.
6319
6320 * gs.el (gs-load-image): Use sleep-for.
6321 From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
6322
6323 2001-08-28 Miles Bader <miles@gnu.org>
6324
6325 * replace.el (query-replace-regexp-eval): Return args from
6326 `interactive' form in correct order.
6327
6328 2001-08-28 Eli Zaretskii <eliz@is.elta.co.il>
6329
6330 * mouse.el (mouse-buffer-menu): If the buffer menu is split by
6331 major modes, don't create panes for modes for which
6332 mouse-buffer-menu-alist returns an empty alist.
6333
6334 2001-08-28 Thien-Thi Nguyen <ttn@gnu.org>
6335
6336 * progmodes/hideshow.el: Update first-line description.
6337 Sync comments w/ maintainer version 5.31.
6338
6339 (hs-isearch-open): Default value now `code'.
6340 Fix docstring to use "code blocks" vs "comment blocks",
6341 as opposed to "block" vs "comment".
6342 (hs-flag-region): Accept `hs-isearch-open' value
6343 of `block' as synonymous w/ `code'.
6344 (hs-hide-block-at-point): For code blocks, pass `code'
6345 to `hs-flag-region' instead of `block'.
6346
6347 2001-08-28 Miles Bader <miles@gnu.org>
6348
6349 * comint.el (comint-next-prompt): Don't loop infinitely if
6350 {next,previous}-single-char-property-change returns its input
6351 position when the search fails.
6352
6353 2001-08-27 Miles Bader <miles@gnu.org>
6354
6355 * comint.el (comint-get-old-input-default): Don't signal an error
6356 if point is not on an input field; instead, return the current
6357 line (using `comint-bol' to skip any prompt, in case we're not
6358 using fields at all).
6359
6360 * man.el (Man-mode-line-format): Variable removed.
6361 (Man-mode): Change `mode-line-buffer-identification' instead of
6362 `mode-line-format'.
6363
6364 2001-08-27 Gerd Moellmann <gerd@gnu.org>
6365
6366 * mail/sendmail.el (mail-send-hook): Remove a duplicate defcustom.
6367 From Simon Josefsson <jas@extundo.com>.
6368
6369 2001-08-26 Eli Zaretskii <eliz@is.elta.co.il>
6370
6371 * textmodes/texnfo-upd.el: Remove dots and exclams at end of error
6372 messages. From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6373
6374 * emacs-lisp/levents.el: Specify FSF as Maintainer. From Pavel
6375 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6376
6377 * emacs-lisp/lselect.el: Ditto.
6378
6379 * hexl.el (hexl-insert-multibyte-char, hexl-insert-char):
6380 Remove periods from the end of error message strings.
6381 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6382
6383 * progmodes/antlr-mode.el: Add Keywords header. From Pavel
6384 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6385
6386 * net/telnet.el: Ditto.
6387
6388 2001-08-26 Gerd Moellmann <gerd@gnu.org>
6389
6390 * hl-line.el (hl-line-mode): Add args INIT-VALUE, LIGHTER, and
6391 KEYMAP to the call to define-minor-mode.
6392
6393 2001-08-24 Eli Zaretskii <eliz@is.elta.co.il>
6394
6395 * term/internal.el (IT-character-translations) <hebrew-iso8859-8>:
6396 Replace some of the undefined characters with emulations of bidi
6397 formatting characters and Niqud as per SI 1311-1.
6398 (IT-unicode-translations): Ditto.
6399 (IT-display-table-setup, IT-setup-unicode-display):
6400 Fill characters without translations with dos-unsupported-char-glyph.
6401
6402 2001-08-24 Simon Josefsson <jas@extundo.com>
6403
6404 * hl-line.el (hl-line-mode): Don't be a global mode.
6405 (global-hl-line-mode): New function.
6406
6407 2001-08-24 Gerd Moellmann <gerd@gnu.org>
6408
6409 * gs.el (gs-load-image): Wait for GHOSTVIEW window property
6410 being reset by Ghostscript. Don't kill the gs process.
6411 From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
6412
6413 2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
6414
6415 * term/mac-win.el: Require scroll-bar.
6416
6417 2001-08-23 Stefan Monnier <monnier@cs.yale.edu>
6418
6419 * ebuff-menu.el (electric-buffer-list): Use list-buffers-noselect.
6420
6421 2001-08-23 Eli Zaretskii <eliz@is.elta.co.il>
6422
6423 * hexl.el (hexl-insert-multibyte-char) New function.
6424 (hexl-quoted-insert, hexl-self-insert-command)
6425 (hexl-insert-hex-char, hexl-insert-decimal-char)
6426 (hexl-insert-octal-char): Call it instead of hexl-insert-char.
6427 Fix the doc strings accordingly.
6428 (hexl-insert-char): Reject characters whose code is above 255.
6429 Doc fix.
6430 (hexl-mode-map): Copy the global keymap instead of creating a
6431 sparse keymap, and bind all self-inserting characters to
6432 hexl-self-insert-command.
6433
6434 2001-08-22 Stefan Monnier <monnier@cs.yale.edu>
6435
6436 * wid-edit.el (text): Re-order docstring correctly.
6437
6438 * mail/sendmail.el (mail-mode): Use adaptive-fill-regexp.
6439
6440 * textmodes/fill.el (adaptive-fill-regexp): Admit tabs as well.
6441
6442 2001-08-22 Eli Zaretskii <eliz@is.elta.co.il>
6443
6444 * simple.el (line-number-mode): Mention the variable
6445 line-number-display-limit-width in the doc string.
6446
6447 2001-08-22 Gerd Moellmann <gerd@gnu.org>
6448
6449 * bindings.el (mode-line-unbury-buffer): Add EVENT parameter.
6450 Temporarily select EVENT's window for switching buffers.
6451 (mode-line-bury-buffer): New function.
6452 (mode-line-buffer-identification-keymap): Use it instead of
6453 bury-buffer. Bind down-mouse events to prevent global down-mouse
6454 events from shining through.
6455
6456 2001-08-21 Stefan Monnier <monnier@cs.yale.edu>
6457
6458 * newcomment.el (comment-beginning): Make sure the comment-start
6459 we found isn't a comment-end (in cases where confusion is possible).
6460
6461 2001-08-22 Miles Bader <miles@gnu.org>
6462
6463 * emacs-lisp/bytecomp.el (byte-compile-file): Remove TARGET-FILE
6464 before writing it, so that hard-links don't see new version.
6465
6466 2001-08-21 Gerd Moellmann <gerd@gnu.org>
6467
6468 * gs.el (gs-set-ghostview-colors-window-prop):
6469 Call x-change-window-property with 3rd arg FRAME.
6470 (gs-load-image): Wait for a previous Ghostscript process
6471 to complete before starting a new one.
6472
6473 * image.el (image-type-regexps): Make sure that the TIFF
6474 pattern is only matched at the beginning of a string.
6475 From Markus Rost <rost@math.ohio-state.edu>.
6476
6477 * international/swedish.el: Pre-Mule file removed. From Jonas
6478 Oberg <jonas@gnu.org>.
6479
6480 2001-08-20 Rajesh Vaidheeswarran <rv@gnu.org>
6481
6482 * whitespace.el (whitespace-abort-on-error): Add custom variable
6483 to whitespace to abort a write-file if whitespace is detected in file.
6484
6485 * whitespace.el (whitespace-write-file-hook): Hook to be called
6486 when writing a file. If `whitespace-abort-on-error' is set, the
6487 write will abort on detecting whitespaces.
6488 If `whitespace-auto-cleanup' is set, the file will be cleaned
6489 automatically prior to writing.
6490
6491 * whitespace.el (whitespace-buffer-search): Let's not insert bogus
6492 whitespaces in the error output!
6493
6494 * whitespace.el (whitespace-check-indent-whitespace): Defaults to
6495 `indent-tabs-mode', since the latter notes user preferences on
6496 TABs anyway.
6497
6498 * whitespace.el (whitespace-version): 3.1. All of the above issues
6499 were raised by Fran\e,Ag\e(Bois Pinard, which led to the fixes described.
6500
6501 2001-08-20 Gerd Moellmann <gerd@gnu.org>
6502
6503 * textmodes/texnfo-upd.el (texinfo-every-node-update): Remove
6504 some spaces from a message. From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6505
6506 * whitespace.el (whitespace-global-mode): Add autoload cookie.
6507
6508 2001-08-20 Alex Schroeder <alex@gnu.org>
6509
6510 * sql.el (sql-db2): Doc change.
6511
6512 2001-08-20 Alex Schroeder <alex@gnu.org>
6513
6514 * sql.el (sql-postgres): Add the database at the end of the
6515 parameters instead of at the beginning.
6516 (sql-postgres-options): Doc change.
6517
6518 2001-08-17 Gerd Moellmann <gerd@gnu.org>
6519
6520 * custom.el (defcustom): Doc fix.
6521
6522 2001-08-16 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6523
6524 * ps-mule.el (find-composition): Check if (char-after POS)
6525 returns a valid character.
6526
6527 2001-08-16 Eli Zaretskii <eliz@is.elta.co.il>
6528
6529 * hexl.el (hexl-mode, hexl-mode-exit): Adjust hexl-max-address and
6530 original-point for extra CR characters that are added/removed when
6531 the buffer is written/read whose EOL type is -dos.
6532
6533 2001-08-16 Miles Bader <miles@gnu.org>
6534
6535 * simple.el (line-move): Undo previous change.
6536
6537 * comint.el (comint-send-input): Add `inhibit-line-move-field-capture'
6538 property to input-terminating `boundary' overlays to avoid
6539 line-move wierdness.
6540
6541 2001-08-16 Gerd Moellmann <gerd@gnu.org>
6542
6543 * lazy-lock.el (lazy-lock-fontify-region): Widen the current
6544 buffer in a save-restriction. Under one test case with Ediff,
6545 window-scroll-functions are run with a window start that's
6546 temporarily outside of the restriction.
6547
6548 2001-08-16 Robert J. Chassell <bug-texinfo@gnu.org>
6549
6550 * textmodes/texnfo-upd.el: Update copyright notice, fix minor typos.
6551 (texinfo-find-lower-level-node, texinfo-find-higher-level-node)
6552 (texinfo-menu-locate-entry-p, texinfo-start-menu-description)
6553 (texinfo-update-menu-region-beginning)
6554 (texinfo-update-menu-region-end, texinfo-find-pointer): Add new
6555 command, @ifnottex, to regexps, so it is found.
6556
6557 2001-08-16 Andrew Innes <andrewi@gnu.org>
6558
6559 * makefile.nt (DONTCOMPILE): Omit bindings.el.
6560 (DONTCOMPILE): Omit sc.el.
6561
6562 * makefile.w32-in (DONTCOMPILE): Omit bindings.el.
6563 (DONTCOMPILE): Omit sc.el.
6564
6565 2001-08-16 Gerd Moellmann <gerd@gnu.org>
6566
6567 * replace.el (occur): Bind inhibit-read-only to t.
6568
6569 2001-08-16 Miles Bader <miles@gnu.org>
6570
6571 * simple.el (line-move): Pass an ESCAPE-FROM-EDGE argument of t when
6572 calling `constrain-to-field', to avoid problems with comint prompts.
6573
6574 2001-08-15 Gerd Moellmann <gerd@gnu.org>
6575
6576 * emacs-lisp/cl-indent.el (lisp-indent-defmethod): New function.
6577 (toplevel): Set it as `common-lisp-indent-function' for `defmethod'.
6578
6579 * ediff-mult.el (ediff-get-meta-info): Fix the condition
6580 of a while-loop.
6581
6582 * Makefile.in (DONTCOMPILE): Remove sc.el.
6583
6584 * Makefile.in (finder_setwins): Renamed from nonobsolete_setwins.
6585 Don't include term/.
6586
6587 * mail/sc.el: Moved to obsolete/.
6588
6589 2001-08-14 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6590
6591 * ps-print.el: Change error function arguments to follow Emacs
6592 message convention. Doc fix.
6593 (ps-print-version): New version number (6.5.4).
6594 (coding-system-for-write): Change declaration position to avoid
6595 XEmacs compilation gripes.
6596 (coding-system-for-read, buffer-file-coding-system):
6597 Declarations to avoid XEmacs compilation gripes.
6598
6599 * ps-mule.el: Doc fix.
6600 (ps-mule-encode-header-string): If STRING is not a string, replace
6601 STRING by empty string.
6602
6603 2001-08-14 Eli Zaretskii <eliz@is.elta.co.il>
6604
6605 * frame.el (show-trailing-whitespace): Doc fix.
6606
6607 2001-08-13 Eli Zaretskii <eliz@is.elta.co.il>
6608
6609 * desktop.el (desktop-save): Insert the coding: tag before
6610 desktop-header.
6611
6612 2001-08-13 Gerd Moellmann <gerd@gnu.org>
6613
6614 * Makefile.in (TAGS, TAGS-LISP): Remove "loaddefs.el" including
6615 its path from $els.
6616
6617 * image.el (image-jpeg-p): Fix call of substring.
6618
6619 2001-08-10 Gerd Moellmann <gerd@gnu.org>
6620
6621 * play/animate.el (animate-string): Doc fix. Use a buffer
6622 name with stars in it.
6623 (animate-sequence): New function.
6624 From Richard Stallman <rms@gnu.org>.
6625
6626 * frame.el (select-frame-set-input-focus): New function
6627 extracted from other-frame.
6628 (other-frame): Use it.
6629 (next-multiframe-window, previous-multiframe-window): Use it.
6630
6631 * isearch.el (isearch-other-meta-char): Don't switch to the
6632 buffer of a window clicked on, when the current buffer is
6633 in Isearch mode.
6634
6635 * image.el (image-jpeg-p): Test for APPn markers in the range
6636 #xe0..#xef.
6637
6638 2001-08-09 Gerd Moellmann <gerd@gnu.org>
6639
6640 * desktop.el (desktop-save): Don't use concat to form a file
6641 name, use expand-file-name.
6642
6643 * mouse.el (mouse-delete-window): Do nothing if frame has just
6644 one window.
6645
6646 * bindings.el (minor-mode-alist): Use mode-line-minor-mode-keymap
6647 for the minor mode name.
6648
6649 * view.el (toplevel): Use mode-line-minor-mode-keymap for the
6650 minor mode name.
6651
6652 * time.el (display-time-string-forms): Use make-mode-line-mouse-map
6653 instead of make-mode-line-mouse2-map.
6654
6655 * subr.el (add-minor-mode): Use mode-line-minor-mode-keymap for
6656 the minor mode name.
6657
6658 * emacs-lisp/easy-mmode.el (define-minor-mode):
6659 Use mode-line-minor-mode-keymap for the minor mode name.
6660
6661 * calendar/calendar.el (calendar-mode-line-format):
6662 Use make-mode-line-mouse-map instead of make-mode-line-mouse2-map.
6663
6664 * bindings.el (make-mode-line-mouse-map): Renamed from
6665 make-mode-line-mouse2-map. Take additional arg MOUSE.
6666 (mode-line-modified): Use mouse-3 instead of mouse-2.
6667 (mode-line-buffer-identification-keymap): Bind keys differently.
6668 (propertized-buffer-identification): Adapt help-echo to new bindings.
6669
6670 * bindings.el (mode-line-format): Specify help-echo for line
6671 number, column number and buffer-percent part of the mode-line.
6672
6673 * image.el (image-type-regexps): Allow whitespace at the start
6674 of the image data for XPM, XBM and Postscript, which are
6675 text files.
6676 (image-jpeg-p): Correct calculation of next field offset.
6677
6678 2001-08-08 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6679
6680 * battery.el: Fix typo.
6681
6682 2001-08-08 Gerd Moellmann <gerd@gnu.org>
6683
6684 * image.el (image-type-regexps): Allow predicates. Change the way
6685 JPEG images are recognized.
6686 (image-jpeg-p): New function.
6687 (image-type-from-data): Handle predicates in image-type-regexps.
6688
6689 * emacs-lisp/edebug.el (edebug-read-function): Fix handling of
6690 #:, #x, #o, and similar constructs.
6691
6692 2001-08-07 Gerd Moellmann <gerd@gnu.org>
6693
6694 * vc.el (vc-transfer-file): Fix malformed autoload cookie.
6695
6696 * emulation/viper-util.el (viper-file-checked-in-p): Use `and'
6697 instead of `progn'.
6698
6699 * tar-mode.el (tar-extract): Avoid generating a new buffer
6700 for each file visited. From Markus Rost <rost@math.ohio-state.edu>.
6701
6702 * textmodes/paragraphs.el (forward-sentence): Avoid building
6703 a regexp from sentence-end. From Kenichi Handa <handa@etl.go.jp>.
6704
6705 * progmodes/executable.el (executable-set-magic):
6706 If executable-find returns a quoted file name, unquote it before
6707 inserting it.
6708
6709 * image.el (image-type-regexps): For JPEG files, use a regexp
6710 derived from the JFIF spec.
6711
6712 * image.el (image-type-regexps): Use `\`' instead of `^' in
6713 most regular expressions.
6714
6715 2001-08-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6716
6717 * play/animate.el: Re-insert a reference to re-inserted function.
6718
6719 2001-08-06 Gerd Moellmann <gerd@gnu.org>
6720
6721 * help.el (describe-function-1): Use find-function-search-for-symbol
6722 instead of find-function-noselect because the latter follows aliases.
6723
6724 * play/animate.el (animate-birthday-present): Re-insert.
6725
6726 * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
6727 Handle old-style menu definitions.
6728
6729 2001-08-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6730
6731 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/page.el,
6732 * textmodes/text-mode.el, textmodes/two-column.el: Keywords added.
6733
6734 * play/studly.el, mail/unrmail.el, emacs-lisp/lucid.el,
6735 * emulation/pc-mode.el, diff.el, textmodes/fill.el, abbrev.el,
6736 * add-log.el, faces.el, mail/sc.el: Specify FSF as Maintainer.
6737
6738 2001-08-05 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6739
6740 * textmodes/tildify.el: Milan Zamazal has new address.
6741
6742 2001-08-03 Gerd Moellmann <gerd@gnu.org>
6743
6744 * custom.el (custom-set-variables): Don't test `custom-requests'
6745 properties, check the third element of the options passed to
6746 custom-set-variables instead.
6747
6748 * info.el (info-insert-file-contents): Use info-file-exists-p
6749 instead of file-exists-p.
6750
6751 * play/zone.el (zone-pgm-stress): Use unwind-protect to make sure
6752 the mode-line face is restored. Fix several bugs.
6753
6754 * replace.el (perform-replace): Doc fix.
6755
6756 2001-08-02 Francesco Potorti` <pot@gnu.org>
6757
6758 * uniquify.el (uniquify-ref-base, uniquify-ref-filename)
6759 (uniquify-ref-buffer, uniquify-ref-proposed): New functions.
6760 (uniquify-fix-item-base, uniquify-fix-item-filename)
6761 (uniquify-fix-item-buffer, uniquify-fix-item-proposed): Deleted.
6762 Callers changed.
6763 (uniquify-set-proposed): Changed to work with a vector item.
6764 (uniquify-rationalize-file-buffer-names): Use a list of arrays for
6765 the fix list, and a list of strings for the non-file buffer
6766 names. Both changes reduce consing.
6767 (uniquify-rationalize-a-list): Local variable renaming.
6768 (uniquify-rationalize-conflicting-sublist): Use member instead of
6769 assoc.
6770 (uniquify-rename-buffer): Use unless instead of if not.
6771
6772 2001-08-02 Gerd Moellmann <gerd@gnu.org>
6773
6774 * recentf.el (recentf-dump-variable): Handle a value of nil correctly.
6775
6776 * custom.el (custom-set-variables): Set options with :require
6777 clauses last.
6778
6779 * custom.el (defcustom): Doc fix.
6780
6781 * Makefile.in (TAGS, TAGS-LISP): Exclude loaddefs.el.
6782
6783 2001-08-01 Eli Zaretskii <eliz@is.elta.co.il>
6784
6785 * man.el (man): Mention Man-switches in the doc string.
6786 (Man-switches): Mention -a in the doc string.
6787
6788 * textmodes/ispell.el (ispell-alternate-dictionary):
6789 Add /usr/share/lib/dict/words, for Irix.
6790
6791 * bindings.el: Bind shifted and control-shifted kp-* keys to the
6792 corresponding non-kp keys. Suggested by Stephen Gildea
6793 <gildea@stop.mail-abuse.org>.
6794
6795 2001-08-01 Francesco Potorti` <pot@gnu.org>
6796
6797 * uniquify.el: These changes correct a corner case that the old
6798 code managed correctly.
6799 (uniquify-fix-item-proposed): Renamed from
6800 uniquify-fix-item-min-proposed.
6801 (uniquify-set-proposed): New function.
6802 (uniquify-rationalize-file-buffer-names): Code reshuffled for
6803 clarity and speed.
6804 (uniquify-item-greaterp): Substitutes uniquify-item-lessp.
6805 This is equivalent to what the old code did.
6806 (uniquify-rationalize-a-list): Never recompute the proposed
6807 name. Sort the conflicting sublist before rationalising it: this
6808 is equivalent to what the old code did, but one directory element
6809 at a time, and only when necessary.
6810 (uniquify-rationalize-conflicting-sublist): Recompute here the
6811 proposed name.
6812
6813 2001-08-01 Gerd Moellmann <gerd@gnu.org>
6814
6815 * play/animate.el: Add Keywords and Maintainer. Remove a
6816 reference to a removed function.
6817
6818 * play/animate.el (animate-string): Handle case that the string is
6819 longer than the window is wide.
6820
6821 2001-07-31 Gerd Moellmann <gerd@gnu.org>
6822
6823 * desktop.el (desktop-save): Bind coding-system-for-write to
6824 `emacs-mule' for write-region.
6825
6826 * delsel.el (delete-selection-pre-hook): Don't set this-command
6827 to `ignore' if the region is empty.
6828
6829 * international/mule.el (set-keyboard-coding-system):
6830 Set keyboard-coding-system.
6831
6832 * smerge-mode.el (smerge-mode): Check if `font-lock-mode' is bound
6833 before accessing it.
6834
6835 2001-07-30 Andreas Schwab <schwab@suse.de>
6836
6837 * menu-bar.el (toggle-highlight-paren-mode):
6838 Use `(show-paren-mode)' as body.
6839
6840 2001-07-30 Andre Spiegel <spiegel@gnu.org>
6841
6842 * vc.el (vc-checkout-hook): New hook.
6843 (vc-checkout): Run it.
6844
6845 2001-07-30 Eli Zaretskii <eliz@is.elta.co.il>
6846
6847 * progmodes/make-mode.el (makefile-macroassign-regex):
6848 Recognize the ?= operator. From Jonathan Kamens <jik@curl.com>.
6849
6850 2001-07-30 Gerd Moellmann <gerd@gnu.org>
6851
6852 * vc.el (vc-switch-backend): Fix autoload cookie.
6853
6854 * desktop.el (desktop-save): Add `-*- coding: emacs-mule -*-' to
6855 the desktop file.
6856
6857 2001-07-30 Simon Josefsson <jas@extundo.com>
6858
6859 * mail/mail-utils.el (mail-strip-quoted-names): Replace text
6860 literally. Reported by Sean Rima <sean@**Delete**.tcob1.net>.
6861
6862 2001-07-27 Gerd Moellmann <gerd@gnu.org>
6863
6864 * emacs-lisp/lisp-mode.el (last-sexp-setup-props): New function.
6865 (last-sexp-toggle-display): Renamed from last-sexp-print.
6866 (last-sexp-toggle-display, eval-last-sexp-1):
6867 Use last-sexp-setup-props.
6868
6869 * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button):
6870 New user-options.
6871 (mouse-wheel-change-button): New function.
6872 (mouse-wheel-mode): Use mouse-wheel-{up,down}-button.
6873 (mwheel-scroll): Ditto.
6874
6875 2001-07-26 Gerd Moellmann <gerd@gnu.org>
6876
6877 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Don't search for
6878 `...', compare with unabbreviated printed representation instead.
6879 (last-sexp-print): Bind print-length and print-level to nil.
6880
6881 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Look for a `...'
6882 before assigning text properties. Make properties rear-nonsticky.
6883
6884 * emacs-lisp/lisp-mode.el (last-sexp-print): New function.
6885 (eval-last-sexp-1): Give printed text a `keymap' property and bind
6886 <mouse-2> and <RET> in that map to a function printing the
6887 unabbreviated value.
6888
6889 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): If standard-output
6890 is a buffer, put a text property `printed-value' on the printed
6891 representation, with the Lisp object printed as value.
6892
6893 2001-07-25 Eli Zaretskii <eliz@is.elta.co.il>
6894
6895 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-defun):
6896 Mention the effect of eval-expression-print-length and
6897 eval-expression-print-level in the doc strings. Suggested by
6898 Kevin Gallagher <kevingal@onramp.net>.
6899
6900 2001-07-25 Gerd Moellmann <gerd@gnu.org>
6901
6902 * xt-mouse.el (xterm-mouse-event): Recognize control sequences
6903 for buttons > 3.
6904 (xterm-mouse-translate): Handle the case that we don't get a
6905 down-event.
6906
6907 * emacs-lisp/find-func.el (find-function-regexp):
6908 Add easy-mmode-define-global-mode to the regexp. Allow newlines
6909 in front of the function name.
6910
6911 * isearch.el (isearch-other-meta-char): Fix last change.
6912
6913 * isearch.el (isearch-other-meta-char): Don't modify mode-line and
6914 similar events for which fake prefix keys are generated. It's no
6915 longer necessary since read_key_sequence doesn't modify these
6916 events for internal purposes anymore.
6917
6918 * files.el (auto-mode-alist): Use nroff-mode for files ending
6919 in `.9'. From Assar Westerlund <assar@stacken.kth.se>.
6920
6921 2001-07-24 Eli Zaretskii <eliz@is.elta.co.il>
6922
6923 * avoid.el (mouse-avoidance-too-close-p): If the frame lacks a
6924 tool-bar-lines parameter, behave as if its value were zero.
6925 (mouse-avoidance-set-pointer-shape): Don't do anything if
6926 x-pointer-shape is not boundp.
6927
6928 2001-07-23 Francesco Potorti` <pot@gnu.org>
6929
6930 * uniquify.el: Overall speedup changes when using many buffers.
6931 (uniquify-fix-item-base, uniquify-fix-item-filename)
6932 (uniquify-fix-item-buffer): Changed defmacro to defalias (cosmetic).
6933 (uniquify-fix-item-unrationalized-buffer): Deleted: was the fourth
6934 place in the item, but was never used.
6935 (uniquify-fix-item-min-proposed): New defalias: the fourth place
6936 in the item is now used as cache for the proposed name.
6937 (uniquify-rationalize-file-buffer-names): Move computation made on
6938 newbuffile out of the loop, in the newbuffile-nd local var.
6939 Use dolist (cosmetic change). Compute the proposed name for the most
6940 common case and cache it in the fourth place in the item.
6941 (uniquify-rationalize-file-buffer-names): Used to return a a list
6942 of buffer whose name was changed, but that return value was never used.
6943 (uniquify-item-lessp): Replaces uniquify-filename-lessp, works on
6944 the cached proposed name, does much less consing and is quicker.
6945 (uniquify-filename-lessp): Deleted.
6946 (uniquify-rationalize-a-list): Use dolist (cosmetic change).
6947 Do not bind locally the uniquify-possibly-resolvable flag. Use the
6948 cached proposed name is possible.
6949 (uniquify-get-proposed-name): Arguments changed, callers changed.
6950 (uniquify-rationalize-conflicting-sublist): Explicitely reset the
6951 uniquify-possibly-resolvable flag, which is no more bound locally.
6952 (uniquify-rename-buffer): Do not set the old unrationalised-buffer
6953 flag, which does not exist any more.
6954
6955 2001-07-23 Eli Zaretskii <eliz@is.elta.co.il>
6956
6957 * term/internal.el (IT-unicode-translations): Fix the appearance of
6958 "6`".
6959
6960 * progmodes/compile.el (compile-internal): If EMACS is already
6961 defined in the environment, don't override its value.
6962
6963 2001-07-23 Gerd Moellmann <gerd@gnu.org>
6964
6965 * play/fortune.el: Undo change of 2001-07-13.
6966 Fix autoload cookies. Add types to defcustoms.
6967 (fortune) <defgroup>: Add :link.
6968 (fortune-from-region): Use eq, not eql.
6969 From Dave Love <fx@gnu.org>.
6970
6971 * play/animate.el (animate-birthday-present): Function removed.
6972
6973 * play/animate.el: New file.
6974
6975 2001-07-22 Eli Zaretskii <eliz@is.elta.co.il>
6976
6977 * startup.el (normal-top-level-add-subdirs-to-load-path):
6978 On Windows, put into normal-top-level-add-subdirs-inode-list the
6979 canonicalized names of the directories instead of inode numbers.
6980
6981 2001-07-21 Michael Kifer <kifer@cs.sunysb.edu>
6982
6983 * ediff-util.el: Copyright years.
6984 (ediff-choose-syntax-table): New function.
6985 (ediff-setup): Use ediff-choose-syntax-table.
6986 (ediff-file-checked-out-p,ediff-file-checked-in-p): Check if
6987 vc-state is available.
6988 (ediff-make-temp-file): Use ediff-coding-system-for-write.
6989
6990 * ediff-init.el (ediff-with-syntax-table): New macro, uses
6991 with-syntax-table.
6992 (ediff-coding-system-for-read): From ediff-diff.el
6993 (ediff-coding-system-for-write): New variable.
6994 (ediff-highest-priority): Fixed the bug having to do with disappearing
6995 overlays.
6996 (ediff-file-remote-p): Use file-remote-p, if available.
6997 (ediff-listable-file): New function.
6998 (ediff-file-attributes): Use ediff-listable-file.
6999
7000 * ediff-mult.el (ediff-meta-insert-file-info1):
7001 Use ediff-listable-file.
7002
7003 * ediff-ptch.el (ediff-prompt-for-patch-file):
7004 Use ediff-coding-system-for-read.
7005 (ediff-patch-file-internal): Use ediff-coding-system-for-write.
7006
7007 * ediff-diff.el (ediff-coding-system-for-read): Moved to ediff-init.el.
7008 (ediff-match-diff3-line,ediff-get-diff3-group): Improved pattern.
7009
7010 * ediff.el: Date of last update, copyright years.
7011
7012 * ediff-wind (ediff-setup-control-frame): Nill->nil.
7013
7014 * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
7015 of Scott Bronson.
7016 (ex-cmd-assoc,ex-compile,ex-cmd-one-letr): New functions.
7017 (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
7018 Deleted functions.
7019 (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
7020 ex-token-list.
7021 (viper-get-ex-address-subr): Convert registers to char data type.
7022
7023 * viper-util.el (viper-int-to-char,viper-char-equal): New functions.
7024 (viper-memq-char): Use viper-int-to-char.
7025 (viper-file-checked-in-p): Use vc-locking-user, if vc doesn't have
7026 vc-locking-state.
7027 (viper-read-key): Use viper-read-key-sequence.
7028
7029 * viper.el (viper-major-mode-modifier-list):
7030 Added inferior-emacs-lisp-mode.
7031 (this-major-mode-requires-vi-state): New function that uses simple
7032 heuristics to decide if vi state is appropriate.
7033 (set-viper-state-in-major-mode): Use this-major-mode-requires-vi-state.
7034 (viper-non-hook-settings): Don't advise read-key-sequence.
7035 (viper-read-key-sequence): New function that replaces the
7036 previously used advice to read-key-sequence.
7037
7038 * viper-cmd.el (viper-test-com-defun,viper-exec-change)
7039 (viper-exec-Change,viper-execute-com,viper-insert,viper-append)
7040 (viper-Append,viper-Insert,viper-open-line,viper-Open-line)
7041 (viper-open-line-at-point,viper-substitute,viper-overwrite)
7042 (viper-replace-char-subr,viper-forward-word,viper-forward-Word):
7043 Got rid of the negative character hack.
7044 (viper-escape-to-state,viper-replace-state-exit-cmd):
7045 Use viper-read-key-sequence.
7046 (viper-envelop-ESC-key): No need for ad-get-orig-definition.
7047 (viper-minibuffer-standard-hook,viper-read-string-with-history):
7048 Don't override existing minibuffer-setup-hook.
7049 (viper-mark-point,viper-goto-mark-subr,viper-brac-function):
7050 Convert registers to char data type.
7051 (viper-autoindent): Use viper-indent-line.
7052
7053 * viper-keym.el: Use viper-exec-key-in-emacs.
7054
7055 2001-07-20 Stefan Monnier <monnier@cs.yale.edu>
7056
7057 * server.el (server-visit-files): Fix variable name typo.
7058
7059 2001-07-20 Gerd Moellmann <gerd@gnu.org>
7060
7061 * simple.el (delete-trailing-whitespace): Save match data
7062 around looking-at. From Markus Rost <rost@math.ohio-state.edu>.
7063
7064 2001-07-19 Stefan Monnier <monnier@cs.yale.edu>
7065
7066 * progmodes/compile.el (compilation-parse-errors): `linenum' might
7067 return a this-error using the alternative format (a pair of markers).
7068
7069 2001-07-19 Gerd Moellmann <gerd@gnu.org>
7070
7071 * font-lock.el (c++-keywords): Add Standard C++ operator names.
7072
7073 * mail/mh-utils.el (mh-find-progs): Also search in `lib'.
7074 From Mats Bengtsson <mats.bengtsson@s3.kth.se>,
7075
7076 2001-07-17 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7077
7078 * international/iso-transl.el: Fix typo in the header of the file.
7079
7080 * textmodes/picture.el (picture): Doc fix.
7081
7082 * international/ja-dic-cnv.el (skkdic-convert): Some fixes to
7083 follow coding conventions in generated files.
7084
7085 2001-07-17 Eli Zaretskii <eliz@is.elta.co.il>
7086
7087 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
7088 (tool-bar-add-item): Don't call image-related primitives if the
7089 display doesn't support images.
7090
7091 * frame.el (display-images-p): New function.
7092
7093 2001-07-17 Gerd Moellmann <gerd@gnu.org>
7094
7095 * server.el (server-visit-files): Handle the case the specified
7096 column number is <= 0.
7097
7098 2001-07-17 Jan Nieuwenhuizen <jan@netland.nl>
7099
7100 * startup.el (command-line-1): Add support for +LINE:COLUMN
7101 command line argument.
7102
7103 2000-07-17 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7104
7105 * server.el (server-process-filter, server-visit-files):
7106 Add support for +LINE:COLUMN style emacsclient calls.
7107
7108 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7109
7110 * emacs-lisp/easy-mmode.el: Add Keywords header.
7111
7112 * play/pong.el: Author has new address.
7113
7114 * play/landmark.el: Author is no more reachable.
7115
7116 * play/handwrite.el: Author is no more reachable.
7117
7118 2001-07-17 Stefan Monnier <monnier@cs.yale.edu>
7119
7120 * term/sun.el (ignore-key, sun-esc-bracket, meta-flag): Remove.
7121 (sun-raw-prefix): Replace t3, t4, t6, and t7 with f3, f4, f6 and f7.
7122 Complete bindings for F<1..12> keys.
7123 (global-map): Remove `undo' binding (already in the default).
7124 Replace `t<n>' bindings with `f<n>' bindings.
7125
7126 2001-07-16 Stefan Monnier <monnier@cs.yale.edu>
7127
7128 * progmodes/tcl.el (tcl-fill-mode-map): Use tcl-indent-exp.
7129 (tcl-mode): Use tcl-add-log-defun.
7130 (tcl-indent-line): Use tcl-calculate-indent.
7131 (tcl-calculate-indent): Renamed from calculate-tcl-indent.
7132 (tcl-indent-exp): Renamed from indent-tcl-exp.
7133 (tcl-add-log-defun): Renamed from add-log-tcl-defun.
7134 (tcl-indent-for-comment): Call comment-indent-function properly
7135 and handle the case where it returns nil.
7136
7137 2001-07-16 Gerd Moellmann <gerd@gnu.org>
7138
7139 * calendar/cal-islam.el (calendar-goto-islamic-date):
7140 Remove autoload cookie.
7141
7142 * calendar/calendar.el (calendar-goto-islamic-date):
7143 Add call to autoload.
7144
7145 2001-07-16 Stefan Monnier <monnier@cs.yale.edu>
7146
7147 * progmodes/ada-mode.el (ada-mode): Avoid unneeded version checks.
7148 Don't change compile-auto-highlight globally.
7149 Don't bother with `font-lock-defaults' property since XEmacs
7150 also understands the `font-lock-defaults' variable.
7151 Use make-local-variable rather than make-variable-buffer-local.
7152 Don't `defconst' comment-indent-function: keep the default.
7153 Call easy-menu-add unconditionally.
7154 (ada-create-keymap): Use [(shift tab)] so it works on both Emacsen.
7155 (ada-create-menu): Use :included for Emacs as well.
7156
7157 * vc.el (vc-do-command): Autoload.
7158
7159 * progmodes/ada-xref.el (ada-xref-initialize): Fix call to add-hook.
7160
7161 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7162
7163 * ps-print.el: Fix Author: header.
7164
7165 2001-07-16 Gerd Moellmann <gerd@gnu.org>
7166
7167 * mouse-sel.el (mouse-sel-bindings): Instead of unbinding
7168 mouse-1 etc., bind them to `ignore'.
7169
7170 * eshell/esh-mode.el (eshell-send-invisible): Renamed from
7171 send-invisible, which is already defined in Comint.
7172 (eshell-watch-for-password-prompt): Use it.
7173
7174 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7175
7176 * which-func.el (which-func-mode): Doc fix.
7177
7178 * align.el, apropos.el, autorevert.el, battery.el, bookmark.el,
7179 * calculator.el, calendar/todo-mode.el, complete.el, cus-dep.el,
7180 * cus-edit.el, cus-face.el, delim-col.el, dos-fns.el, double.el,
7181 * edmacro.el, elide-head.el, emacs-lisp/autoload.el,
7182 * emacs-lisp/checkdoc.el, emacs-lisp/cl-compat.el,
7183 * emacs-lisp/cl-specs.el, emacs-lisp/copyright.el,
7184 * emacs-lisp/cust-print.el, emacs-lisp/easy-mmode.el,
7185 * emacs-lisp/elint.el, emacs-lisp/ewoc.el, emacs-lisp/find-func.el,
7186 * emacs-lisp/pp.el, emacs-lisp/re-builder.el, emacs-lisp/shadow.el,
7187 * emacs-lisp/sregex.el, emerge.el, emulation/edt-lk201.el,
7188 * emulation/edt-mapper.el, emulation/edt-pc.el,
7189 * emulation/edt-vt100.el, emulation/edt.el, emulation/pc-select.el,
7190 * emulation/tpu-edt.el, emulation/tpu-extras.el,
7191 * emulation/tpu-mapper.el, emulation/vip.el, expand.el, finder.el,
7192 * foldout.el, follow.el, format.el, forms-d2.el, forms.el,
7193 * generic.el, hi-lock.el, hilit-chg.el, hippie-exp.el, info-look.el,
7194 * international/isearch-x.el, international/iso-cvt.el,
7195 * international/ogonek.el, international/quail.el,
7196 * international/utf-8.el, jit-lock.el, language/devan-util.el,
7197 * language/devanagari.el, language/ethio-util.el,
7198 * language/ethiopic.el, language/european.el, language/indian.el,
7199 * language/romanian.el, language/tibet-util.el, language/tibetan.el,
7200 * mail/feedmail.el, mail/footnote.el, mail/mail-hist.el,
7201 * mail/mailheader.el, mail/mspools.el, mail/supercite.el,
7202 * mouse-sel.el, net/browse-url.el, net/net-utils.el,
7203 * net/quickurl.el, net/snmp-mode.el, net/webjump.el,
7204 * net/zone-mode.el, pcomplete.el, progmodes/antlr-mode.el,
7205 * progmodes/autoconf.el, progmodes/cmacexp.el,
7206 * progmodes/cperl-mode.el, progmodes/cpp.el, progmodes/cwarn.el,
7207 * progmodes/delphi.el, progmodes/ebnf-bnf.el, progmodes/ebnf-iso.el,
7208 * progmodes/ebnf-otz.el, progmodes/ebnf-yac.el,
7209 * progmodes/ebnf2ps.el, progmodes/executable.el,
7210 * progmodes/fortran.el, progmodes/idlw-shell.el,
7211 * progmodes/idlw-toolbar.el, progmodes/idlwave.el,
7212 * progmodes/m4-mode.el, progmodes/mantemp.el,
7213 * progmodes/meta-mode.el, progmodes/octave-inf.el,
7214 * progmodes/ps-mode.el, progmodes/scheme.el, progmodes/simula.el,
7215 * progmodes/tcl.el, ps-bdf.el, ps-mule.el, ps-print.el, recentf.el,
7216 * rect.el, regi.el, rsz-mini.el, s-region.el, scroll-all.el,
7217 * shadowfile.el, speedbar.el, term/AT386.el, term/internal.el,
7218 * term/iris-ansi.el, term/mac-win.el, term/tvi970.el,
7219 * textmodes/artist.el, textmodes/flyspell.el, textmodes/ispell.el,
7220 * textmodes/page-ext.el, textmodes/refer.el, textmodes/texinfmt.el,
7221 * textmodes/texinfo.el, textmodes/texnfo-upd.el,
7222 * textmodes/two-column.el, time-stamp.el, timezone.el,
7223 * toolbar/tool-bar.el, vc-rcs.el, vc-sccs.el, view.el, w32-fns.el,
7224 * which-func.el, whitespace.el, wid-browse.el, widget.el,
7225 * windmove.el, woman.el, xt-mouse.el: Some fixes to follow coding
7226 conventions.
7227
7228 2001-07-16 Gerd Moellmann <gerd@gnu.org>
7229
7230 * simple.el (set-variable): Require 'cus-edit' instead of
7231 `wid-edit', so that the Custom widgets get defined.
7232
7233 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7234
7235 * allout.el: A fix to follow coding conventions.
7236
7237 * find-lisp.el: A fix to follow coding conventions.
7238
7239 * term/w32-win.el: A fix to follow coding conventions.
7240
7241 * textmodes/sgml-mode.el: A fix to follow coding conventions.
7242
7243 * term/xterm.el: A fix to follow coding conventions.
7244
7245 * term/news.el: A fix to follow coding conventions.
7246
7247 * emulation/vi.el: A fix to follow coding conventions, Maintainer:
7248 header line fixed.
7249
7250 * sun-curs.el: Fix Maintainer: header line.
7251
7252 * emacs-lisp/easymenu.el: Address of the author added.
7253
7254 2001-07-16 Gerd Moellmann <gerd@gnu.org>
7255
7256 * dired.el (dired-insert-set-properties): Fix invalid mouse-face
7257 property.
7258
7259 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7260
7261 * play/5x5.el, play/decipher.el, play/dunnet.el, play/fortune.el,
7262 * play/gamegrid.el, play/handwrite.el, play/landmark.el,
7263 * play/morse.el, play/pong.el, play/snake.el, play/tetris.el:
7264 Some fixes to follow coding conventions.
7265
7266 2001-07-16 Gerd Moellmann <gerd@gnu.org>
7267
7268 * which-func.el (which-func-mode): Doc fix.
7269
7270 2001-07-15 Stefan Monnier <monnier@cs.yale.edu>
7271
7272 * net/rcompile.el (remote-compile): Use make-local-variable.
7273
7274 * progmodes/hideshow.el (hs-minor-mode): Use make-local-variable.
7275
7276 * progmodes/make-mode.el (makefile-browse): Use make-local-variable.
7277
7278 * mail/reporter.el (reporter-submit-bug-report):
7279 Don't abuse make-variable-buffer-local. Fix call to add-hook.
7280
7281 2001-07-15 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7282
7283 * calendar/cal-china.el, calendar/cal-coptic.el,
7284 * calendar/cal-dst.el, calendar/cal-french.el,
7285 * calendar/cal-hebrew.el, calendar/cal-islam.el,
7286 * calendar/cal-iso.el, calendar/cal-julian.el,
7287 * calendar/cal-mayan.el, calendar/cal-persia.el,
7288 * calendar/cal-tex.el, calendar/calendar.el, calendar/diary-lib.el,
7289 * calendar/lunar.el, calendar/solar.el, ediff-diff.el,
7290 * ediff-help.el, ediff-hook.el, ediff-init.el, ediff-merg.el,
7291 * ediff-ptch.el, ediff-util.el, ediff-vers.el, ediff-wind.el,
7292 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
7293 * net/eudc-vars.el, net/ldap.el, pcvs-defs.el, pcvs-info.el,
7294 * pcvs-parse.el, pcvs-util.el, pcvs.el, progmodes/ada-mode.el,
7295 * progmodes/ada-prj.el, progmodes/ada-stmt.el,
7296 * progmodes/ada-xref.el, progmodes/cc-align.el,
7297 * progmodes/cc-bytecomp.el, progmodes/cc-cmds.el,
7298 * progmodes/cc-defs.el, progmodes/cc-engine.el,
7299 * progmodes/cc-langs.el, progmodes/cc-menus.el,
7300 * progmodes/cc-styles.el, progmodes/cc-vars.el,
7301 * textmodes/reftex-auc.el, textmodes/reftex-cite.el,
7302 * textmodes/reftex-dcr.el, textmodes/reftex-global.el,
7303 * textmodes/reftex-index.el, textmodes/reftex-parse.el,
7304 * textmodes/reftex-ref.el, textmodes/reftex-sel.el,
7305 * textmodes/reftex-toc.el, textmodes/reftex-vars.el,
7306 * textmodes/reftex.el: Some fixes to follow coding
7307 conventions in Elisp files with known maintainers.
7308
7309 * emulation/viper.el: A fix to follow coding conventions.
7310
7311 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el,
7312 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el,
7313 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el,
7314 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el,
7315 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el,
7316 * eshell/em-xtra.el, eshell/esh-arg.el, eshell/esh-cmd.el,
7317 * eshell/esh-ext.el, eshell/esh-io.el, eshell/esh-maint.el,
7318 * eshell/esh-mode.el, eshell/esh-module.el, eshell/esh-opt.el,
7319 * eshell/esh-proc.el, eshell/esh-test.el, eshell/esh-util.el,
7320 * eshell/esh-var.el, eshell/eshell.el: Some fixes to follow coding
7321 conventions in Elisp files.
7322
7323 * composite.el, diff.el, emacs-lisp/levents.el,
7324 * emacs-lisp/lmenu.el, emacs-lisp/lselect.el, emacs-lisp/lucid.el,
7325 * emulation/pc-mode.el, emulation/viper-cmd.el,
7326 * emulation/viper-ex.el, emulation/viper-init.el,
7327 * emulation/viper-keym.el, emulation/viper-macs.el,
7328 * emulation/viper-mous.el, emulation/viper-util.el,
7329 * emulation/viper.el, forms-pass.el, international/ccl.el,
7330 * international/characters.el, international/encoded-kb.el,
7331 * international/fontset.el, international/ja-dic-cnv.el,
7332 * international/ja-dic-utl.el, international/kinsoku.el,
7333 * international/kkc.el, international/mule-cmds.el,
7334 * international/mule-diag.el, international/mule-util.el,
7335 * international/mule.el, international/titdic-cnv.el,
7336 * language/china-util.el, language/chinese.el,
7337 * language/cyril-util.el, language/cyrillic.el, language/english.el,
7338 * language/greek.el, language/hebrew.el, language/japan-util.el,
7339 * language/japanese.el, language/korea-util.el, language/korean.el,
7340 * language/lao-util.el, language/lao.el, language/misc-lang.el,
7341 * language/slovak.el, language/thai-util.el, language/thai.el,
7342 * language/viet-util.el, language/vietnamese.el, mail/mh-comp.el,
7343 * mail/mh-e.el, mail/mh-funcs.el, mail/mh-mime.el, mail/mh-pick.el,
7344 * mail/mh-seq.el, mail/mh-utils.el, mail/sc.el, mail/unrmail.el,
7345 * midnight.el, patcomp.el, pcmpl-cvs.el, pcmpl-gnu.el,
7346 * pcmpl-linux.el, pcmpl-rpm.el, pcmpl-unix.el, play/studly.el,
7347 * play/zone.el, replace.el, select.el, subr.el, talk.el, term.el,
7348 * term/apollo.el, term/bobcat.el, term/linux.el, term/lk201.el,
7349 * term/vt102.el, term/vt125.el, term/vt200.el, term/vt201.el,
7350 * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el,
7351 * term/vt400.el, term/vt420.el, x-apollo.el, x-menu.el: Some fixes
7352 to follow coding conventions in files without maintainer or in files
7353 with clear maintainer (but without Maintainer header stating so).
7354
7355 * emacs-lisp/elp.el: A fix to follow coding conventions.
7356
7357 * gnus/binhex.el, gnus/binhex.el, gnus/earcon.el,
7358 * gnus/gnus-agent.el, gnus/gnus-art.el, gnus/gnus-audio.el,
7359 * gnus/gnus-logic.el, gnus/gnus-ml.el, gnus/gnus-mlspl.el,
7360 * gnus/gnus-setup.el, gnus/gnus-srvr.el, gnus/gnus-sum.el,
7361 * gnus/gnus-uu.el, gnus/gnus-vm.el, gnus/ietf-drums.el,
7362 * gnus/mail-parse.el, gnus/mail-prsvr.el, gnus/mail-source.el,
7363 * gnus/mm-bodies.el, gnus/mm-decode.el, gnus/mm-encode.el,
7364 * gnus/mm-partial.el, gnus/mm-util.el, gnus/mm-uu.el,
7365 * gnus/mm-view.el, gnus/mml.el, gnus/nnimap.el, gnus/nnoo.el,
7366 * gnus/parse-time.el, gnus/rfc1843.el, gnus/rfc2045.el,
7367 * gnus/rfc2047.el, gnus/rfc2104.el, gnus/rfc2231.el,
7368 * gnus/time-date.el, gnus/uudecode.el: Some fixes to follow coding
7369 conventions in files from Gnus.
7370
7371 * abbrevlist.el, array.el, buff-menu.el, calendar/appt.el,
7372 * case-table.el, cdl.el, cmuscheme.el, compare-w.el, completion.el,
7373 * custom.el, derived.el, dired-aux.el, disp-table.el, dos-vars.el,
7374 * echistory.el, electric.el, emacs-lisp/authors.el,
7375 * emacs-lisp/backquote.el, emacs-lisp/byte-opt.el,
7376 * emacs-lisp/bytecomp.el, emacs-lisp/float.el, emacs-lisp/gulp.el,
7377 * emacs-lisp/helper.el, emacs-lisp/lisp-mode.el,
7378 * emacs-lisp/regexp-opt.el, emulation/mlconvert.el,
7379 * emulation/mlsupport.el, env.el, fast-lock.el, find-dired.el,
7380 * float-sup.el, frame.el, gnus/gnus-mule.el, gnus/pop3.el, gs.el,
7381 * gud.el, help-macro.el, hexl.el, imenu.el, info.el, informat.el,
7382 * international/codepage.el, international/iso-ascii.el,
7383 * international/iso-insert.el, international/iso-transl.el,
7384 * international/swedish.el, isearch.el, jka-compr.el, kermit.el,
7385 * lazy-lock.el, ledit.el, loadup.el, lpr.el, ls-lisp.el, macros.el,
7386 * mail/blessmail.el, mail/emacsbug.el, mail/mail-extr.el,
7387 * mail/mailabbrev.el, mail/mailpost.el, mail/rmail.el,
7388 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmsc.el,
7389 * mail/rmailout.el, mail/rmailsort.el, mail/rmailsum.el,
7390 * mail/vms-pmail.el, man.el, map-ynp.el, menu-bar.el, misc.el,
7391 * msb.el, net/ange-ftp.el, net/goto-addr.el, novice.el,
7392 * obsolete/auto-show.el, obsolete/hilit19.el, obsolete/ooutline.el,
7393 * obsolete/rnews.el, obsolete/rnewspost.el, options.el, paren.el,
7394 * paths.el, play/dissociate.el, play/doctor.el, play/hanoi.el,
7395 * play/meese.el, progmodes/compile.el, progmodes/ebrowse.el,
7396 * progmodes/hideif.el, progmodes/modula2.el, register.el, rot13.el,
7397 * saveplace.el, scroll-bar.el, server.el, sort.el, soundex.el,
7398 * term/bg-mouse.el, term/pc-win.el, term/sup-mouse.el,
7399 * term/tty-colors.el, terminal.el, textmodes/bib-mode.el,
7400 * textmodes/makeinfo.el, textmodes/page.el, textmodes/paragraphs.el,
7401 * textmodes/picture.el, textmodes/scribe.el, textmodes/spell.el,
7402 * textmodes/tex-mode.el, textmodes/text-mode.el,
7403 * textmodes/underline.el, thingatpt.el, time.el, timer.el,
7404 * unused.el, vcursor.el, version.el, vms-patch.el, vmsproc.el,
7405 * vt100-led.el, window.el: Some fixes to follow coding conventions in
7406 files maintained by FSF.
7407
7408 2001-07-13 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7409
7410 * arc-mode.el: A fix to follow coding conventions.
7411
7412 * bindings.el: Ditto.
7413
7414 * cdl.el: Ditto.
7415
7416 * comint.el: Ditto.
7417
7418 * cus-start.el: Ditto.
7419
7420 * shell.el: Ditto.
7421
7422 * skeleton.el: Ditto.
7423
7424 2001-07-13 Stefan Monnier <monnier@cs.yale.edu>
7425
7426 * info.el (Info-build-node-completions):
7427 Make Info-current-file-completions buffer local.
7428
7429 2001-07-13 Gerd Moellmann <gerd@gnu.org>
7430
7431 * which-func.el (which-func-mode, which-func-ff-hook)
7432 (which-function-mode): Remove references to which-func-mode-global.
7433
7434 * calendar/cal-islam.el (calendar-goto-islamic-date):
7435 Add autoload cookie.
7436
7437 * play/fortune.el: Add types to defcustoms.
7438
7439 2001-07-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7440
7441 * language/czech.el: A fix to follow coding conventions.
7442
7443 2001-07-11 Eli Zaretskii <eliz@is.elta.co.il>
7444
7445 * speedbar.el (speedbar-supported-extension-expressions): Add .g
7446 to the extension list, for antlr-mode. From Christoph Wedler
7447 <Christoph.Wedler@sap.com>.
7448
7449 2001-07-11 Stefan Monnier <monnier@cs.yale.edu>
7450
7451 * vc.el (vc-prefix-map): Moved back to vc-hooks.el.
7452 (vc-dired-mode-map): Fix the madness.
7453
7454 * vc-hooks.el (vc-mode): Dummy function for doc purposes.
7455 (vc-prefix-map): Moved back from vc.el.
7456
7457 2001-07-11 Gerd Moellmann <gerd@gnu.org>
7458
7459 * mail/mail-extr.el (mail-extr-all-top-level-domains):
7460 Increase the size of the obarray.
7461 (mail-extr-all-top-level-domains): Add more toplevel domains,
7462 add more long names.
7463 From: Per Starback <starback@ling.uu.se>.
7464
7465 2001-07-11 Eli Zaretskii <eliz@is.elta.co.il>
7466
7467 * progmodes/ada-prj.el: Say that the file _is_ part of Emacs.
7468 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7469
7470 * progmodes/ada-mode.el: Ditto.
7471
7472 * progmodes/ada-xref.el: Ditto.
7473
7474 2001-07-11 Miles Bader <miles@gnu.org>
7475
7476 * finder.el (finder-insert-at-column): Also move to the next line
7477 if exactly at COLUMN.
7478
7479 2001-07-10 Gerd Moellmann <gerd@gnu.org>
7480
7481 * help.el (describe-function-1): When printing FUNCTION's
7482 documentation, don't assume FUNCTION is a symbol.
7483
7484 * startup.el (normal-top-level): Don't operate on the initial
7485 frame if we failed to create one.
7486
7487 2001-07-10 Martin Stjernholm <bug-cc-mode@gnu.org>
7488
7489 * cc-cmds.el (c-indent-exp): Keep the indentation of the block
7490 itself, i.e. only indent the contents in it.
7491
7492 2001-07-10 Markus Rost <rost@math.ohio-state.edu>
7493
7494 * mail/rmail.el (rmail-show-message): Show beginning of message in
7495 all windows containing it.
7496
7497 2001-07-10 Eli Zaretskii <eliz@is.elta.co.il>
7498
7499 * term/tty-colors.el: Fix the header line and copyright years.
7500
7501 2001-07-09 Gerd Moellmann <gerd@gnu.org>
7502
7503 * emacs-lisp/advice.el (ad-make-advised-definition): If the
7504 original definition has an interactive form, but is Elp
7505 instrumented, use the interactive form of the function called by
7506 elp-wrapper.
7507
7508 * winner.el (winner-equal): Make it a defun. Don't compare Winner
7509 configurations with compare-window-configuration; they aren't
7510 window configurations.
7511
7512 * net/ange-ftp.el (ange-ftp-file-modtime): Check a 213 response
7513 from the server for the format we expect. Don't use it if it
7514 doesn't look like what the Internet draft for FTP extensions specifies.
7515
7516 * toolbar/*.pbm: Cleaned up.
7517 From Luis Fernandes <elf@ee.ryerson.ca>.
7518
7519 2001-07-09 Martin Stjernholm <bug-cc-mode@gnu.org>
7520
7521 * cc-cmds.el: Extended the kludge to interoperate with the
7522 delsel and pending-del packages wrt to the new function
7523 `c-electric-delete-forward'.
7524
7525 2001-07-08 Stefan Monnier <monnier@cs.yale.edu>
7526
7527 * emacs-lisp/easy-mmode.el (define-minor-mode): Use eval-after-load
7528 to delay the call to <mode> for global minor modes.
7529 (easy-mmode-define-navigation): Only recenter if interactive.
7530
7531 2001-07-06 Gerd Moellmann <gerd@gnu.org>
7532
7533 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind TAB
7534 to lisp-indent-line.
7535
7536 * net/ange-ftp.el (ange-ftp-file-modtime): Ignore 226 responses
7537 from the server. Call encode-time only when we are sure that we
7538 got a 213 response.
7539
7540 2001-07-06 Simon Josefsson <jas@extundo.com>
7541
7542 * mail/sendmail.el (mail-specify-envelope-from): Doc fix.
7543 (mail-envelope-from): New user option.
7544 (sendmail-send-it): Use it.
7545
7546 2001-07-06 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7547
7548 * ps-print.el: Use locale dependant date to print date in header.
7549 Doc fix.
7550 (ps-print-version): New version number (6.5.3).
7551 (ps-right-header, ps-right-footer): Initialization and doc fix.
7552 (ps-time-stamp-locale-default): New fun.
7553
7554 2001-07-06 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
7555
7556 * mail/rmailout.el (rmail-output): Fix duplicate MIME-Version:
7557 field problem with MIME-mode.
7558
7559 * mail/rmailout.el (rmail-output): Fix bug in MIME-mode.
7560
7561 2001-07-06 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
7562
7563 * mail/rmail.el (rmail-reply): Don't forget to narrow header in
7564 MIME-mode.
7565
7566 2001-07-06 Eli Zaretskii <eliz@is.elta.co.il>
7567
7568 * bindings.el (mode-line-mule-info): Don't show the tip with
7569 buffer-file-coding-system if that is nil.
7570
7571 2001-07-05 Gerd Moellmann <gerd@gnu.org>
7572
7573 * calendar/todo-mode.el (todo-top-priorities): Use delete-region
7574 instead of kill-line.
7575
7576 * play/pong.el: Fix first line. From Pavel Jan\e,Bm\e(Bk
7577 <Pavel@Janik.cz>.
7578
7579 * battery.el (battery-update): Add help-echo. From Pavel Jan\e,Bm\e(Bk
7580 <Pavel@Janik.cz>.
7581
7582 2001-07-04 Gerd Moellmann <gerd@gnu.org>
7583
7584 * font-lock.el (c-font-lock-keywords-3): When matching something
7585 like `struct X Y', finish with point after Y.
7586
7587 2001-07-04 Simon Josefsson <jas@extundo.com>
7588
7589 * mail/sendmail.el (sendmail-send-it): Look at `sendmail-program'
7590 in caller buffer.
7591
7592 2001-07-03 Eli Zaretskii <eliz@is.elta.co.il>
7593
7594 * find-file.el (ff-find-the-other-file): Use file-name-nondirectory
7595 instead of string-match to find the basename of the file.
7596 From Pascal Obry <p.obry@wanadoo.fr>.
7597
7598 * net/browse-url.el (browse-url-default-windows-browser):
7599 Support the MS-DOS port when it runs on Windows.
7600 (browse-url-browser-function) [ms-dos]: Default to
7601 browse-url-default-windows-browser.
7602
7603 * help.el (locate-library): Enable code that looks for compressed
7604 libraries if auto-compression-mode is on.
7605
7606 2001-07-02 Stefan Monnier <monnier@cs.yale.edu>
7607
7608 * info.el (Info-clone-buffer-hook): Really unconditionally copy marker.
7609
7610 2001-07-02 Gerd Moellmann <gerd@gnu.org>
7611
7612 * emacs-lisp/cl-macs.el (cl-do-arglist): Revert change of 2000-10-15.
7613
7614 2001-07-02 Eli Zaretskii <eliz@is.elta.co.il>
7615
7616 * allout.el: Fix the header line, so that finder.el recognizes it.
7617 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
7618
7619 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Doc fix.
7620 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
7621
7622 2001-06-29 Eli Zaretskii <eliz@is.elta.co.il>
7623
7624 * term/w32-win.el (x-colors): Add colors from the recent rgb.txt file.
7625
7626 * ps-bdf.el (bdf-directory-list): Use the value relative to
7627 installation-directory for MS-Windows as well.
7628
7629 2001-06-29 Richard M. Stallman <rms@gnu.org>
7630
7631 * wid-edit.el (widget-color-sample-face-get):
7632 Return ((foreground-color . COLOR)) instead of constructing a face.
7633
7634 2001-06-29 Eli Zaretskii <eliz@is.elta.co.il>
7635
7636 * faces.el (region): Change the background color for the
7637 light-background color display to lightgoldenrod2, to make it
7638 visible on some laptops.
7639
7640 2001-06-28 Richard M. Stallman <rms@gnu.org>
7641
7642 * mail/rmail.el (rmail-reformat-message): Bind inhibit-read-only to t.
7643 (rmail-msg-restore-non-pruned-header): Likewise.
7644 If point was in the old pruned header, put it at the top.
7645 (rmail-msg-prune-header): If point was at the top, keep it there.
7646
7647 * mail/rmail.el (rmail-narrow-to-non-pruned-header): New function.
7648 (rmail-retry-failure): Use rmail-narrow-to-non-pruned-header.
7649
7650 2001-06-28 Stefan Monnier <monnier@cs.yale.edu>
7651
7652 * info.el (Info-clone-buffer-hook): Unconditionally copy marker.
7653
7654 2001-06-28 Karl Fogel <kfogel@red-bean.com>
7655
7656 * saveplace.el: Update maintainer email address.
7657
7658 2001-06-27 Francesco Potorti` <pot@gnu.org>
7659
7660 * uniquify.el: (uniquify-rationalize-file-buffer-names):
7661 Undo previous change.
7662
7663 2001-06-27 Francesco Potorti` <pot@gnu.org>
7664
7665 * uniquify.el (uniquify-rationalize-file-buffer-names): Do a
7666 preliminary quick reordering. Can speed things up dramatically.
7667
7668 2001-06-26 Richard M. Stallman <rms@gnu.org>
7669
7670 * dired.el (dired-get-filename): A file name starting with ~
7671 is not absolute in this context.
7672
7673 * which-func.el (which-func-maxout): Increase default to 500000.
7674 (which-function-mode): This is now the "real" name of the function.
7675 (which-func-mode): Now an alias.
7676 (which-func-mode-global): Name deleted.
7677
7678 * progmodes/hideshow.el (hs-minor-mode-map): Use mouse-2, not
7679 button-2, when binding hs-mouse-toggle-hiding.
7680
7681 2001-06-26 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
7682
7683 * mail/rmail.el (rmail-msg-restore-non-pruned-header): New function.
7684 (rmail-msg-prune-header): Likewise.
7685 (rmail-toggle-header): Use `rmail-msg-restore-non-pruned-header'
7686 and `rmail-msg-prune-header'.
7687
7688 2001-06-25 Stefan Monnier <monnier@cs.yale.edu>
7689
7690 * textmodes/fill.el (fill-region-as-paragraph): Don't look further
7691 back than LINEBEG.
7692
7693 2001-06-25 Eli Zaretskii <eliz@is.elta.co.il>
7694
7695 * xt-mouse.el (xterm-mouse-event): If the buffer displayed in the
7696 window where they clicked the mouse has a header line, adjust
7697 vertical movement by one.
7698
7699 2001-06-25 Milan Zamazal <pdm@zamazal.org>
7700
7701 * progmodes/glasses.el (glasses-make-readable): Consider underscores
7702 too when separating a parenthesis.
7703
7704 2001-06-24 Eli Zaretskii <eliz@is.elta.co.il>
7705
7706 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
7707 (bookmark-bmenu-hide-filenames): Add help-echo to
7708 mouse-highlighted text.
7709 (bookmark-bmenu-show-filenames): Remove help-echo property from
7710 the whitespace.
7711
7712 2001-06-23 Eli Zaretskii <eliz@is.elta.co.il>
7713
7714 * files.el (auto-mode-alist): Add configure.ac (autoconf).
7715 From Karl Eichwalder <ke@suse.de>.
7716
7717 2001-06-23 Richard M. Stallman <rms@gnu.org>
7718
7719 * emacs-lisp/lisp-mode.el (eval-last-sexp): Doc fix.
7720
7721 * progmodes/cc-styles.el (c-set-style): Don't specify initial
7722 contents for completing-read.
7723
7724 2001-06-22 Richard M. Stallman <rms@gnu.org>
7725
7726 * menu-bar.el (menu-bar-make-toggle): Construct the
7727 function's doc string from HELP, not DOC, and make it accurate by
7728 adding "Toggle whether to " at the front and downcasing the initial.
7729 Change the HELP arg in some calls to make it fit this usage.
7730
7731 * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error):
7732 Undo previous change.
7733
7734 2001-06-22 Eli Zaretskii <eliz@is.elta.co.il>
7735
7736 * indent.el (indent-relative-maybe, indent-relative): Doc fix.
7737
7738 * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error): Doc fix.
7739
7740 2001-06-21 Eli Zaretskii <eliz@is.elta.co.il>
7741
7742 * toolbar/tool-bar.el (tool-bar-setup): Remove the EXIT button.
7743
7744 * dabbrev.el (dabbrev--select-buffers): Fix last change.
7745
7746 2001-06-20 Richard M. Stallman <rms@gnu.org>
7747
7748 * dabbrev.el (dabbrev--make-friend-buffer-list): New function,
7749 broken out from dabbrev--find-expansion. Handle minibuffer
7750 specially here.
7751 (dabbrev--find-expansion): Simplify code in various ways.
7752 Don't treat minibuffers specially.
7753 Call dabbrev--make-friend-buffer-list.
7754 (dabbrev--select-buffers): Don't treat minibuffers specially. Simplify.
7755 (dabbrev--scanning-message): Do nothing when minibuffer is current.
7756
7757 2001-06-19 John Wiegley <johnw@gnu.org>
7758
7759 * eshell/eshell.el: Don't load in esh-util if it's already loaded.
7760 Also, added a comment describing how to greatly speedup Eshell
7761 loadup time, by concatenating together all of Eshell's .elc files.
7762
7763 2001-06-19 John Wiegley <johnw@gnu.org>
7764
7765 * eshell/esh-mode.el: Disabled a test that often yields false failures.
7766
7767 2001-06-19 Eli Zaretskii <eliz@is.elta.co.il>
7768
7769 * woman.el (WoMan-highlight-references): Add help-echo to
7770 mouse-highlighted text.
7771
7772 2001-06-18 Stefan Monnier <monnier@cs.yale.edu>
7773
7774 * textmodes/sgml-mode.el (sgml-mode-map): Fix thinko.
7775
7776 2001-06-18 Gerd Moellmann <gerd@gnu.org>
7777
7778 * international/quail.el (quail-start-conversion):
7779 Reset quail-translating to nil.
7780
7781 * antlr-mode.el (antlr-mode): Check that `c-Java-access-key' is
7782 bound. Suggested by David B. Malkovsky <David.Malkovsky@sas.com>.
7783
7784 2001-06-18 Eli Zaretskii <eliz@is.elta.co.il>
7785
7786 * bs.el (bs--get-name, bs--get-file-name): Add help-echo to
7787 mouse-highlighted text.
7788
7789 * dired.el (dired-mark-pop-up): Fix last change.
7790
7791 2001-06-17 Eli Zaretskii <eliz@is.elta.co.il>
7792
7793 * calendar/calendar.el (generate-calendar-month): Add help-echo to
7794 mouse-highlighted text.
7795
7796 * net/quickurl.el (quickurl-url-file): Run through
7797 convert-standard-filename.
7798 (quickurl-list-populate-buffer): Add help-echo to
7799 mouse-highlighted text.
7800 (top-level): Update Dave's URL.
7801
7802 * textmodes/tex-mode.el (tex-validate-buffer): Add help-echo to
7803 mouse-highlighted text.
7804
7805 * textmodes/page-ext.el (pages-copy-header-and-position):
7806 Add help-echo to mouse-highlighted text.
7807
7808 * tar-mode.el (tar-header-block-summarize): Add help-echo to
7809 mouse-highlighted text.
7810
7811 * replace.el (occur): Add help-echo to mouse-highlighted text.
7812
7813 * progmodes/sh-script.el (sh-mark-line): Add help-echo to
7814 mouse-highlighted text.
7815
7816 * progmodes/cpp.el (cpp-make-button): Add help-echo to
7817 mouse-highlighted text.
7818
7819 * progmodes/compile.el (compile-reinitialize-errors):
7820 Add help-echo to mouse-highlighted messages.
7821 (compilation-forget-errors): Remove help-echo property as well.
7822
7823 * play/landmark.el (lm-plot-square, lm-init-display):
7824 Add help-echo to mouse-highlighted text.
7825
7826 * play/gomoku.el (gomoku-plot-square, gomoku-init-display):
7827 Add help-echo to mouse-highlighted text.
7828
7829 * dired.el (dired-insert-set-properties): Add help-echo to
7830 mouse-highlighted text.
7831 (dired-mark-pop-up): Remove help-echo property from the file name.
7832
7833 * comint.el (comint-send-input): Add help-echo to
7834 mouse-highlighted text.
7835
7836 * buff-menu.el (list-buffers-noselect): Add help-echo to
7837 mouse-highlighted text.
7838
7839 * arc-mode.el (archive-summarize-files): Add help-echo to
7840 mouse-highlighted text.
7841
7842 * ffap.el (ffap-machine-p): Always return nil if
7843 open-network-stream is not fboundp.
7844
7845 2001-06-17 Stefan Monnier <monnier@cs.yale.edu>
7846
7847 * textmodes/sgml-mode.el: Move `provide' to the end. Update copyright.
7848 (sgml-mode-map): Use `make-keymap' rather than make the keymap by hand.
7849 Bind the latin-1 charset-char to sgml-maybe-name-self rather than
7850 incorrectly binding chars between 128 and 256 to it.
7851 (sgml-maybe-name-self): Handle latin-1 chars properly.
7852 (sgml-tags-invisible): Bind buffer-file-name to nil.
7853 Use unwind-protect and restore-buffer-modified-p.
7854 (sgml-point-entered): Use buffer-substring-no-properties.
7855 (html-tag-alist): Add `div' and `span' and fix backquote/unquote typos.
7856 (html-mode): Don't force `imenu-sort-function'.
7857
7858 2001-06-15 Eli Zaretskii <eliz@is.elta.co.il>
7859
7860 * tar-mode.el: Fix the copyright notice.
7861
7862 * font-lock.el (font-lock-comment-face): For tty's with dark
7863 background, use "red1", since "lightred" is not one of the colors
7864 recognized by tty-colors.el.
7865
7866 * tar-mode.el (tar-extract): Call generate-new-buffer-name to
7867 create a buffer for extracted file, in case there's more than one
7868 file by that name in an archive, possibly in different
7869 directories. From Kevin Rodgers <kevinr@ihs.com>.
7870
7871 * format.el (format-alist): Doc fix. Suggested by Alex Schroeder
7872 <alex@gnu.org>.
7873
7874 2001-06-15 Miles Bader <miles@gnu.org>
7875
7876 * textmodes/texinfmt.el (texinfo-format-syntax-table):
7877 Revert previous change.
7878
7879 2001-06-14 Richard M. Stallman <rms@gnu.org>
7880
7881 * replace.el (keep-lines-read-args): Return just a regexp.
7882 Provide nil for the region args.
7883 (keep-lines, flush-lines, how-many):
7884 Calculate the defaults for the region here, when args are nil.
7885
7886 2001-06-14 Eli Zaretskii <eliz@is.elta.co.il>
7887
7888 * rot13.el (rot13-other-window): Some more doc fix.
7889
7890 2001-06-14 Per Starback <starback@ling.uu.se>
7891
7892 * replace.el (case-replace, query-replace-from-history-variable)
7893 (query-replace-to-history-variable, keep-lines-read-args)
7894 (occur-revert-function, query-replace-help): Dox fix.
7895
7896 2001-06-14 Eli Zaretskii <eliz@is.elta.co.il>
7897
7898 * rot13.el (rot13-other-window): Doc fix.
7899
7900 2001-06-14 Miles Bader <miles@gnu.org>
7901
7902 * textmodes/texinfo.el (texinfo-mode-syntax-table): Change syntax
7903 of " and \ to "." (punctuation).
7904 * textmodes/texinfmt.el (texinfo-format-syntax-table): Likewise.
7905
7906 2001-06-13 Richard M. Stallman <rms@gnu.org>
7907
7908 * emacs-lisp/backquote.el (backquote-process): Handle `[,@SYMBOL].
7909
7910 * simple.el (shell-command-on-region): Never kill the
7911 *Shell Command Output* buffer.
7912
7913 2001-06-13 Stefan Monnier <monnier@cs.yale.edu>
7914
7915 * diff-mode.el (diff-font-lock-keywords): Fix unanchored regexp.
7916
7917 2001-06-10 Stefan Monnier <monnier@cs.yale.edu>
7918
7919 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
7920 New var, to recognize ${ $' and PODs.
7921 (perl-font-lock-syntactic-face-function): New function.
7922 (perl-mode): Use them.
7923 (perl-continuation-line-p): New function, from perl-calculate-indent.
7924 (perl-calculate-indent): Use it, to properly handle continuation
7925 lines of continuation lines.
7926
7927 2001-06-10 Eli Zaretskii <eliz@is.elta.co.il>
7928
7929 * server.el (server-process, server-buffer-clients): Doc fix.
7930 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
7931
7932 2001-06-09 John Wiegley <johnw@gnu.org>
7933
7934 * eshell/esh-cmd.el (eshell-exit-success-p): Use a string-match to
7935 test if the last command was Lisp or not.
7936 (eshell-rewrite-if-command): "if" syntax is "if A B C", not "if A
7937 B x C".
7938
7939 2001-06-08 Eli Zaretskii <eliz@is.elta.co.il>
7940
7941 * dos-w32.el (grep-regexp-alist): Remove definition, since the
7942 general one on compile.el supports drive letters.
7943
7944 2001-06-08 Carsten Dominik <dominik@strw.leidenuniv.nl>
7945
7946 * textmodes/reftex-ref.el (reftex-select-label-help): Add "z"
7947 key description.
7948
7949 * textmodes/reftex-sel.el (reftex-select-jump): New command.
7950
7951 * textmodes/reftex-toc.el (reftex-toc-help): Add "z" key description.
7952 (reftex-toc-jump): New command.
7953
7954 * textmodes/reftex-cite.el (reftex-parse-bibitem): Regexp changed
7955 to parse international characters as well.
7956
7957 * textmodes/reftex.el: Add autoloads for `reftex-varioref-vref',
7958 `reftex-fancyref-fref', `reftex-fancyref-Fref'.
7959
7960 * textmodes/reftex-vars.el: Protect single backslash in docstrings.
7961
7962 * textmodes/reftex-dcr.el (reftex-view-crossref): Add SPACE and
7963 TAB to the key separators.
7964
7965 2001-06-07 Eli Zaretskii <eliz@is.elta.co.il>
7966
7967 * international/mule.el (auto-coding-alist): Remove redundant
7968 up-cased versions of the extensions (auto-coding-alist-lookup is
7969 case-insensitive where needed). Recognize .gz, .Z, .bz, .bz2, and
7970 .gpg files as binary. Suggested by Karl Berry <karl@gnu.org>.
7971
7972 2001-06-05 Eli Zaretskii <eliz@is.elta.co.il>
7973
7974 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Add a doc string.
7975
7976 2001-06-01 Richard M. Stallman <rms@gnu.org>
7977
7978 * help.el (describe-variable): Put value on same line
7979 with preceding text, if it is short enough to look good that way.
7980
7981 2001-06-01 Eli Zaretskii <eliz@is.elta.co.il>
7982
7983 * term/internal.el (IT-unicode-translations): New variable.
7984 (IT-setup-unicode-display): New function.
7985
7986 2001-06-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7987
7988 * ps-print.el: Handle before-string and after-string overlay properties
7989 in ps-print-*-with-faces commands. Doc fix.
7990 (ps-print-version): New version number (6.5.2).
7991 (ps-e-overlay-end): Alias for overlay-end to avoid compilation gripes
7992 for XEmacs.
7993 (ps-prefix-quote): Doc fix.
7994 (ps-setup, ps-print-quote, ps-generate-postscript-with-faces): Code fix.
7995 (ps-basic-plot-str, ps-plot-string): New funs.
7996
7997 2001-05-31 Stefan Monnier <monnier@cs.yale.edu>
7998
7999 * progmodes/etags.el (tags-compression-info-list): Fix docstring
8000 and :type spec.
8001
8002 2001-05-31 Gerd Moellmann <gerd@gnu.org>
8003
8004 * international/mule-cmds.el (inactivate-input-method):
8005 Set input-method-function to nil.
8006
8007 * xml.el (xml-parse-tag): The document may contain invalid characters.
8008 From ShengHuo ZHU <zsh@cs.rochester.edu>
8009
8010 2001-05-31 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
8011
8012 * mail/rmailsum.el (rmail-message-subject-p): Don't call
8013 `rmail-summary-line-decoder' if the message does not have
8014 a Subject: field.
8015
8016 * mail/rmail.el (rmail-revert): Modify to work in rmail-view-buffer.
8017
8018 * mail/rmail.el (rmail-insert-mime-resent-message-function):
8019 New variable.
8020 (rmail-resend): Modify to work in `rmail-view-buffer'; call
8021 `rmail-insert-mime-resent-message-function' if `rmail-enable-mime'
8022 is non-nil.
8023
8024 2001-05-30 Stefan Monnier <monnier@rum.cs.yale.edu>
8025
8026 * textmodes/tex-mode.el (latex-find-indent): Handle the BOBP case.
8027
8028 2001-05-29 Sam Steingold <sds@gnu.org>
8029
8030 * faces.el (face-valid-attribute-values): Bind `valid' directly
8031 instead of using `setq'.
8032
8033 * textmodes/tex-mode.el (tex-feed-input, tex-display-shell):
8034 Use `tex-shell-buf'.
8035 (tex-shell-proc): Use `tex-shell-running'.
8036 (tex-shell-buf-no-error): New function.
8037 (tex-send-tex-command): Use it.
8038 (tex-shell-running): Kill tex-shell when the buffer is dead for w32.
8039 (tex-kill-job): Check the process before calling `quit-process'.
8040
8041 2001-05-29 Gerd Moellmann <gerd@gnu.org>
8042
8043 * international/utf-8.el (ccl-decode-mule-utf-8): Handle invalid
8044 UTF-8 sequences.
8045
8046 2001-05-28 Miles Bader <miles@gnu.org>
8047
8048 * comint.el (comint-carriage-motion): Renamed from
8049 `comint-cr-magic'. Operate on the buffer instead of the string
8050 (for use as a comint post-output filter, instead of as a
8051 pre-output filter). Handle backspaces too. Add to the
8052 `comint-output-filter-functions' hook instead of
8053 `comint-preoutput-filter-functions'.
8054
8055 2001-05-28 Gerd Moellmann <gerd@gnu.org>
8056
8057 * language/japan-util.el (japanese-hankaku): Prefer the charset
8058 `jisx0201' when the optional argument `ascii-only' is not specified.
8059 (japanese-hankaku-region): Ditto.
8060 From Katsumi Yamaoka <yamaoka@jpl.org>
8061
8062 2001-05-28 Stefan Monnier <monnier@cs.yale.edu>
8063
8064 * textmodes/outline.el (outline-mode): Fix font-lock-defaults.
8065 (outline-invisible-p): New function.
8066 (hide-leaves): Save excursion.
8067 (hide-other): Stop looping when reaching bobp.
8068
8069 2001-05-28 Eli Zaretskii <eliz@is.elta.co.il>
8070
8071 * cus-edit.el (custom-file): Fix last change.
8072
8073 2001-05-27 Stefan Monnier <monnier@cs.yale.edu>
8074
8075 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload): Use the
8076 same definition in byte-compile-function-environment as `autoload'
8077 would put in `symbol-function'.
8078
8079 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Complete Dave's
8080 patch to correct the error message as well.
8081
8082 2001-05-27 Eli Zaretskii <eliz@is.elta.co.il>
8083
8084 * cus-edit.el (custom-file): Don't assume we were invoked with -q
8085 unless ~/.emacs exists.
8086
8087 * novice.el (enable-command): If user-init-file is nil or does not
8088 exist, default to "~/.emacs" (~/_emacs on DOS and, maybe, Windows).
8089
8090 2001-05-25 Stefan Monnier <monnier@cs.yale.edu>
8091
8092 * textmodes/tex-mode.el (tex-mode-syntax-table): Add ^.
8093 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
8094 Allow spaces around macro arguments.
8095 (tex-mode-map): Inherit from text-mode-map, but rebind \t to
8096 indent-for-tab-command.
8097 (latex-mode-map, plain-tex-mode-map): New keymaps.
8098 Inherit from tex-mode-map.
8099 (tex-common-initialization): Don't setup the keymap any more
8100 since it's now done right by define-derived-mode.
8101 (latex-mode): Set skeleton-end-hook to nil.
8102 (latex-skeleton-end-hook): Remove.
8103 (tex-latex-block, latex-insert-item): Simplify.
8104 (latex-syntax-after): Use following-char rather than char-after.
8105 (tex-discount-args-cmds, tex-count-words): New functions.
8106
8107 * textmodes/tildify.el (tildify-ignored-environments-alist):
8108 Recognize \verb* as well.
8109
8110 * progmodes/perl-mode.el (perl-mode): Use define-derived-mode.
8111 (perl-comment-indent): Simplify to let newcomment.el do its job.
8112 (perl-electric-terminator, perl-calculate-indent, perl-indent-exp)
8113 (perl-mark-function): Cleanup the namespace.
8114 (perl-calculate-indent): Don't be fooled by nested functions.
8115
8116 * speedbar.el (speedbar-find-selected-file): RE-quote the filename.
8117
8118 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
8119 Fix the arg of `load'. From Dave Love <fx@gnu.org>.
8120
8121 2001-05-25 Andrew Choi <akochoi@i-cable.com>
8122
8123 * international/titdic-cnv.el (ctlau-gb-converter): `\' should
8124 actually be `\\'.
8125 (ctlau-b5-converter): Likewise.
8126
8127 2001-05-24 Andrew Choi <akochoi@i-cable.com>
8128
8129 * international/titdic-cnv.el (quail-misc-package-ext-info):
8130 Change CTLauB.el to CTLau-b5.el.
8131
8132 2001-05-23 Stefan Monnier <monnier@cs.yale.edu>
8133
8134 * gud.el (gud-gdb-run-command-fetch-lines): Use forward-line
8135 rather than beginning-of-line to avoid problems with fields.
8136 (gud-perldb-massage-args): Use unless and push.
8137 (gud-chdir-before-run): New var.
8138 (gud-common-init): Use it.
8139
8140 2001-05-24 Andrew Choi <akochoi@i-cable.com>
8141
8142 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
8143 delete entries for chinese-ctlau and chinese-ctlaub.
8144 (quail-misc-package-ext-info): Add entries for chinese-ctlau and
8145 chinese-ctlaub.
8146 (ctlau-converter, ctlau-gb-converter, ctlau-b5-converter):
8147 New functions.
8148
8149 2001-05-22 Gerd Moellmann <gerd@gnu.org>
8150
8151 * cus-edit.el (custom-comment-show): Remove debug code.
8152
8153 * language/japan-util.el (japanese-symbol-table): Fix handling of
8154 Japanese long tone sign. From Kenichi Handa <handa@etl.go.jp>.
8155
8156 2001-05-21 Stefan Monnier <monnier@cs.yale.edu>
8157
8158 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly):
8159 Renamed by removing the silly `-flag' suffix.
8160 (diff-mode, diff-minor-mode, diff-find-source-location): Update.
8161
8162 2001-05-20 Stefan Monnier <monnier@cs.yale.edu>
8163
8164 * replace.el (keep-lines-read-args): Use `copy-marker'.
8165 (how-many): Save excursion properly.
8166 (occur-mode): Use define-derived-mode.
8167 (perform-replace): Use with-current-buffer.
8168
8169 2001-05-20 Richard M. Stallman <rms@gnu.org>
8170
8171 * play/landmark.el (lm): Use "p" not "P" for interactive spec.
8172
8173 * mail/rmail.el (rmail-retry-failure): Do save-window-excursion.
8174
8175 * info.el (Info-read-subfile): Widen before finding the
8176 desired node in the subfile.
8177
8178 * startup.el (command-line-1): When >2 files visited,
8179 leave the last one visible, and make that the selected window.
8180
8181 2001-05-20 Gerd Moellmann <gerd@gnu.org>
8182
8183 * font-lock.el (lisp-font-lock-keywords-1): Add `defvaralias'.
8184
8185 2001-05-20 Eli Zaretskii <eliz@is.elta.co.il>
8186
8187 * international/ccl.el (define-ccl-program): Fix a typo.
8188 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8189
8190 * international/mule.el (decode-char): Fix a typo. From Pavel
8191 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8192
8193 * textmodes/artist.el (artist-mode): Fix a typo. From Pavel
8194 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8195
8196 * frame.el (automatic-hscrolling): Fix a typo. From Pavel
8197 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8198
8199 2001-05-18 Sam Steingold <sds@gnu.org>
8200
8201 * pcvs-defs.el (cvs-mode-map): Bind "z" to `kill-this-buffer'
8202 and [RET] to `cvs-mode-find-file'.
8203
8204 2001-05-18 John Wiegley <johnw@gnu.org>
8205
8206 * eshell/esh-ext.el (eshell-explicit-command-char): A new
8207 configuration variable, which determines the initial character
8208 that forces use of an external version of a command. The default
8209 is *, but may be set to \, for example.
8210
8211 * eshell/esh-ext.el (eshell-explicit-command):
8212 Use `eshell-explicit-command-char' instead of ?*.
8213
8214 * eshell/esh-cmd.el (eshell/which):
8215 Use `eshell-explicit-command-char' instead of ?*.
8216
8217 * eshell/em-cmpl.el (eshell-completion-command-name)
8218 (eshell-complete-commands-list): Use `eshell-explicit-command-char'
8219 instead of ?*.
8220
8221 2001-05-18 Gerd Moellmann <gerd@gnu.org>
8222
8223 * net/ange-ftp.el (ange-ftp-fix-name-for-vms): Reverse args of
8224 subst-char-in-string.
8225 (ange-ftp-after-parse-ls-hook): New variable.
8226 (ange-ftp-ls): Run that hook.
8227 From Peter Milliken <Peter.Milliken@GTECH.COM>.
8228
8229 * tmm.el (tmm-get-keymap): Fix handling of :filter.
8230 (tmm-add-prompt): Bind buffer-read-only to nil when inserting
8231 text into *Completions*.
8232
8233 * net/goto-addr.el (goto-address-at-point): Deal with URLs
8234 part of which look like email addresses.
8235
8236 2001-05-18 Andrew Innes <andrewi@gnu.org>
8237
8238 * makefile.w32-in (compile-files-CMD, bootstrap-clean-CMD):
8239 Use . instead of absolute path for lisp dir, to avoid bug in W2K
8240 cmd.exe's handling of FOR loops.
8241 (autoloads): Set find-file-suppress-same-file-warnings to t to
8242 avoid slew of spurious messages.
8243
8244 2001-05-18 Simon Josefsson <simon@josefsson.org>
8245
8246 * mail/smtpmail.el (maybe-append-domain): Renamed to
8247 `smtpmail-maybe-append-domain'.
8248 (smtpmail-via-smtp): Use the new name.
8249
8250 * net/browse-url.el (browse-url-browser-function): Add kde.
8251 (browse-url-kde-program, browse-url-kde-args): New variables.
8252 (browse-url-kde): New function.
8253
8254 2001-05-18 Miles Bader <miles@gnu.org>
8255
8256 * simple.el (delete-horizontal-space, just-one-space):
8257 Use `constrain-to-field' instead of `field-end'/`field-beginning',
8258 because it's more efficient for large files.
8259
8260 2001-05-17 Gerd Moellmann <gerd@gnu.org>
8261
8262 * mail/rmail.el (rmail-require-mime-maybe): New function.
8263 (rmail): Use it.
8264 (rmail-mode): Handle the case of finding Rmail files.
8265
8266 * emacs-lisp/elp.el (elp-instrument-function): Handle advised
8267 functions.
8268
8269 2001-05-17 Stefan Monnier <monnier@cs.yale.edu>
8270
8271 * jit-lock.el (jit-lock-after-change): Check the font-lock-multiline
8272 text-property after moving to the beginning of line and regardless
8273 of the value of font-lock-multiline.
8274
8275 2001-05-17 Gerd Moellmann <gerd@gnu.org>
8276
8277 * startup.el (fancy-splash-screens): Ignore events on the mode-line.
8278
8279 * net/ange-ftp.el (ange-ftp-write-region): Make sure to record the
8280 last coding system used before calling set-buffer-modified-p
8281 because that function changes last-coding-system.
8282
8283 2001-05-17 Eli Zaretskii <eliz@is.elta.co.il>
8284
8285 * files.el (switch-to-buffer-other-window)
8286 (switch-to-buffer-other-frame): Add an xref to display-buffer in
8287 the doc string.
8288
8289 2001-05-17 Gerd Moellmann <gerd@gnu.org>
8290
8291 * language/slovak.el, language/czech.el: New maintainer.
8292
8293 2001-05-16 Sam Steingold <sds@gnu.org>
8294
8295 * emacs-lisp/cl-indent.el (toplevel): Indent the :method
8296 sub-form of `defgeneric' correctly.
8297
8298 2001-05-16 Gerd Moellmann <gerd@gnu.org>
8299
8300 * tooltip.el (tooltip) <defgroup>: Put it in `gud' group instead
8301 of `c'.
8302
8303 * textmodes/outline.el (outline-font-lock-level): Remove the
8304 condition-case, test what outline-level returns instead, to
8305 ease debugging.
8306
8307 * international/mule.el (auto-coding-regexp-alist): New user-option.
8308 (auto-coding-from-file-contents): New function.
8309 (set-auto-coding): Use it to determine a coding system.
8310
8311 2001-05-15 Gerd Moellmann <gerd@gnu.org>
8312
8313 * mouse.el (mouse-delete-other-windows): Doc fix.
8314
8315 * emacs-lisp/lisp-mode.el (lisp-mode):
8316 Make font-lock-keywords-case-fold-search a buffer-local variable with
8317 make-local-variable before setting it.
8318
8319 2001-05-14 Eli Zaretskii <eliz@is.elta.co.il>
8320
8321 * emacs-lisp/elp.el (elp-instrument-package): Don't allow empty
8322 prefixes.
8323
8324 2001-05-14 Gerd Moellmann <gerd@gnu.org>
8325
8326 * hexl.el (hexl-current-address): Print a message when called
8327 interactively.
8328
8329 2001-05-11 Stefan Monnier <monnier@cs.yale.edu>
8330
8331 * gud.el (gud-jdb-build-source-files-list): Fix paren typo.
8332
8333 * pcvs-defs.el (cvs-mode-map): Don't rebind `undo'.
8334
8335 * files.el (auto-mode-alist): Add *.perl and fix the *.<rev> case.
8336
8337 2001-05-11 Gerd Moellmann <gerd@gnu.org>
8338
8339 * startup.el (command-line): If parameters have been changed in
8340 the init files which influence font selection, clear the face
8341 cache so that faces get realized with the new parameters.
8342
8343 * Makefile.in (compile-files): Redirect output of chmod to /dev/null.
8344
8345 2001-05-10 Stefan Monnier <monnier@cs.yale.edu>
8346
8347 * smerge-mode.el (smerge-mode): Force font-lock-multiline to t.
8348
8349 2001-05-10 Eli Zaretskii <eliz@is.elta.co.il>
8350
8351 * mail/emacsbug.el (report-emacs-bug): Don't switch the buffer to
8352 unibyte. Suggested by Kenichi Handa <handa@etl.go.jp>.
8353
8354 2001-05-10 Gerd Moellmann <gerd@gnu.org>
8355
8356 * net/browse-url.el (browse-url-filename-alist): Allow UNC file
8357 names for MS-Windows and MS-DOS. From Dan Holmsand <dan@eyebee.com>.
8358
8359 2001-05-09 John Wiegley <johnw@gnu.org>
8360
8361 * eshell/esh-util.el (eshell-convert-numeric-arguments):
8362 Annotated the documentation string to tell users about
8363 `eshell-no-numeric-conversions'.
8364
8365 * eshell/esh-cmd.el (eshell-lisp-command): Don't perform numeric
8366 conversions if a Lisp function has the property
8367 `eshell-no-numeric-conversions' set to a non-nil value.
8368
8369 * eshell/em-dirs.el, eshell/em-ls.el, eshell/em-script.el,
8370 eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-cmd.el: Set the
8371 property `eshell-no-numeric-conversions' on the following
8372 functions (which all deal with filesystem entities, and never Lisp
8373 numerical values): eshell/cd, eshell/pushd, eshell/popd,
8374 eshell/ls, eshell/source, eshell/., eshell/man, eshell/rm,
8375 eshell/mkdir, eshell/rmdir, eshell/mv, eshell/cp, eshell/ln,
8376 eshell/cat, eshell/make, eshell/diff, eshell/locate, eshell/occur,
8377 eshell/which, eshell/addpath.
8378
8379 2001-05-09 John Wiegley <johnw@gnu.org>
8380
8381 * eshell/esh-arg.el (eshell-parse-argument-hook): If a number is
8382 encountered as an argument, don't convert it right away, but tag
8383 the first character of the string with the text properties
8384 `number', which signifies to `eshell-lisp-command' that the
8385 argument should be passed through `string-to-number' if it is
8386 actually used in the call to a Lisp function.
8387
8388 * eshell/esh-cmd.el (eshell-lisp-command): Before calling a Lisp
8389 function, convert any string arguments that have been tagged as
8390 "numbers", by calling string-to-number.
8391
8392 * eshell/esh-util.el (eshell-number-regexp): Now that number
8393 conversions only happen for Lisp function calls, the number regexp
8394 should now match all integer and floating point forms.
8395
8396 * eshell/esh-proc.el: Disable `eshell-stop-process' and
8397 `eshell-continue-process', since they are both nonfunctional at
8398 the moment.
8399 (eshell-proc-initialize): Don't bind keys for
8400 `eshell-stop-process' or `eshell-continue-process'.
8401
8402 * eshell/em-unix.el (eshell-shuffle-files):
8403 Apply `directory-file-name' before calling `file-name-directory'.
8404
8405 * eshell/em-hist.el (eshell-add-to-history): Reference to
8406 `eshell-history-ring' needed to be `eshell-history-index'.
8407
8408 * calendar/timeclock.el (timeclock-find-discrep):
8409 Initialize `elapsed' to 0.
8410 (timeclock-find-discrep): Set `timeclock-last-event-workday' if
8411 it's still nil.
8412
8413 2001-05-09 Stefan Monnier <monnier@cs.yale.edu>
8414
8415 * arc-mode.el (archive-int-to-mode): Construct the string directly.
8416 (archive-mode): Use capitalize.
8417 (archive-unique-fname): Use make-temp-file.
8418
8419 2001-05-09 Gerd Moellmann <gerd@gnu.org>
8420
8421 * emacs-lisp/lisp-mode.el (lisp-interaction-mode): Doc fix.
8422
8423 2001-05-09 Eli Zaretskii <eliz@is.elta.co.il>
8424
8425 * tar-mode.el (tar-extract): Pay attention to the value of
8426 coding-system-for-read, if it is non-nil.
8427
8428 * calendar/holidays.el (holidays): Add an autoload cookie.
8429 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8430
8431 2001-05-08 John Wiegley <johnw@gnu.org>
8432
8433 * calendar/timeclock.el (timeclock-workday-remaining):
8434 Changed logic for determining how much time is remaining.
8435 (timeclock-workday-elapsed): Don't accept a "relative" argument
8436 for the current day's elapsed time. What could that have meant?
8437 (timeclock-workday-elapsed-string): No "relative" argument anymore.
8438 (timeclock-when-to-leave): Changed logic, similarly to what was
8439 done for `timeclock-workday-remaining'.
8440 (timeclock-find-discrep): Removed "today-only" argument, which had
8441 no meaning. Fixed some more math problems. The function now
8442 returns a three member list: (TOTAL-TIME-DISCREPANCY
8443 TODAYS-TIME-DISCREPANCY TODAYS-ELAPSED-TIME).
8444
8445 2001-05-08 Eli Zaretskii <eliz@is.elta.co.il>
8446
8447 * w32-fns.el (convert-standard-filename): Start replacing slashes
8448 from the beginning of the file name, not from where the last
8449 invalid character was. From "Andrew Maguire (SWW)"
8450 <Andrew.Maguire@Smallworld.co.uk>
8451
8452 2001-05-07 MORIOKA Tomohiko <tomo@m17n.org>
8453
8454 The following changes are to provide infrastructure for handling
8455 MIME messages to rmail. They don't affect the original behaviour
8456 if rmail-enable-mime is nil.
8457
8458 * mail/rmail.el (rmail-insert-mime-forwarded-message-function)
8459 (rmail-search-mime-message-function)
8460 (rmail-search-mime-header-function): New variables.
8461 (rmail-expunge-and-save): Be sure to set-buffer to the Rmail buffer.
8462 (rmail-quit, rmail-get-new-mail): Bury `rmail-buffer' after
8463 `rmail-view-buffer' is hidden.
8464 (rmail-toggle-header): Likewise. If rmail-enable-mime is non-nil,
8465 call rmai-show-mime-function.
8466 (rmail-display-labels): If rmail-enable-mime is non-nil, update
8467 mode-line-process of rmail-view-buffer.
8468 (rmail-set-attribute): Be sure to set-buffer to the Rmail buffer.
8469 (rmail-show-message): Be sure to call rmail-auto-file in the Rmail
8470 buffer.
8471 (rmail-next-message, rmail-next-undeleted-message): Be sure to
8472 set-buffer to the Rmail buffer.
8473 (rmail-message-regexp-p): If rmail-enable-mime is non-nil, call
8474 rmail-search-mime-header-function.
8475 (rmail-search-message): New function.
8476 (rmail-search): Call rmail-search-message to check if a message
8477 matches REGEXP, lastly update point after calling
8478 rmail-show-message.
8479 (rmail-undelete-previous-message, rmail-expunge-confirmed)
8480 (rmail-only-expunge): Be sure to set-buffer to the Rmail buffer.
8481 (rmail-reply): If rmail-enable-mime is non-nil, don't narrow to
8482 header region, refer to rmail-msgref-vector while setting the
8483 current buffer to rmail-buffer temporarily.
8484 (rmail-forward): Be sure to bind forward-buffer to the Rmail buffer.
8485 If rmail-enable-mime is non-nil, call
8486 rmail-insert-mime-forwarded-message-function instead of inserting
8487 forwarded message by itself.
8488
8489 * mail/rmailkwd.el (rmail-read-label): Be sure to work in the
8490 Rmail buffer.
8491 (rmail-set-label, rmail-next-labeled-message): Likewise.
8492
8493 * mail/rmailout.el (rmail-output-read-rmail-file-name): Be sure to
8494 set-buffer to the Rmail buffer.
8495 (rmail-output-to-rmail-file): Likewise.
8496 (rmail-output): Likewise.
8497
8498 * mail/rmailsum.el (rmail-message-subject-p): Process the result
8499 of mail-fetch-field by rmail-summary-line-decoder.
8500 (rmail-new-summary): Be sure to go to the Rmail buffer.
8501 If rmail-enable-mime is non-nil, set rmail-summary-buffer of
8502 rmail-view-buffer to nil.
8503 (rmail-summary-undelete): If rmail-enable-mime is non-nil, pop to
8504 rmail-view-buffer.
8505 (rmail-summary-scroll-msg-up): Handle rmail-view-buffer, not
8506 rmail-buffer.
8507 (rmail-summary-scroll-msg-down): Likewise.
8508 (rmail-summary-beginning-of-message): Likewise.
8509 (rmail-summary-wipe): Likewise.
8510 (rmail-summary-toggle-header): Use save-window-excursion, not
8511 save-excursion. Update point in rmail-view-buffer, not in
8512 rmail-buffer.
8513 (rmail-summary-reply): Before calling rmail-reply, set buffer to
8514 rmail-view-buffer, not rmail-buffer.
8515
8516 2001-05-07 Gerd Moellmann <gerd@gnu.org>
8517
8518 * cus-edit.el (custom-file): Signal an error if user-init-file is
8519 nil (running -q).
8520
8521 * mail/rmailedit.el (rmail-edit-mode-hook): Add :version.
8522
8523 * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
8524 Add :version.
8525
8526 * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
8527 New option.
8528 (smtpmail-via-smtp): Print warnings about unknown SMTP extensions
8529 only if smtpmail-warn-about-unknown-extensions is set.
8530
8531 * mail/rmail.el (rmail-mode-map): Use rmail-sort-by-labels
8532 instead of rmail-sort-by-keywords.
8533
8534 * mail/rmailsort.el (rmail-sort-by-labels): Renamed from
8535 rmail-sort-by-keywords.
8536
8537 * mail/rmailsum.el (rmail-summary-sort-by-labels): Renamed from
8538 rmail-summary-sort-by-keywords. Doc fix.
8539 (rmail-summary-mode): Doc fix.
8540
8541 * mail/rmail.el (rmail-edit): New Custom group.
8542
8543 * mail/rmailedit.el (rmail-edit-mode): Doc fix.
8544 (rmail-edit-mode-hook): New user-option.
8545
8546 2001-05-05 Richard M. Stallman <rms@gnu.org>
8547
8548 * help.el (help-xref-symbol-regexp): Recognize "source of"
8549 and friends, meaning make a link to the source file.
8550 (help-make-xrefs): Handle "source of" and friends
8551 by constructing a link that visits the source file.
8552
8553 * dabbrev.el (dabbrev-select-buffers-function): Doc fix.
8554
8555 2001-05-04 Stefan Monnier <monnier@cs.yale.edu>
8556
8557 * progmodes/cperl-mode.el (cperl-font-lock-keywords)
8558 (cperl-font-lock-keywords-1, cperl-font-lock-keywords-2):
8559 Renamed from perl-font-lock-keywords to avoid clashes.
8560 (cperl-mode, cperl-load-font-lock-keywords, cperl-init-faces)
8561 (cperl-load-font-lock-keywords-1, cperl-load-font-lock-keywords-2):
8562 Updated correspondingly.
8563
8564 * diff-mode.el (diff-nonexistent-face, diff-font-lock-keywords):
8565 Typo `nonexistant' -> `nonexistent'.
8566
8567 2001-05-04 Martin Stjernholm <bug-cc-mode@gnu.org>
8568
8569 * cc-cmds.el (c-electric-delete, c-electric-delete-forward):
8570 Split `c-electric-delete' into two functions where
8571 `c-electric-delete-forward' always deletes forward and
8572 `c-electric-delete' only contains the code necessary for XEmacs to
8573 choose between backward and forward deletion.
8574
8575 * cc-mode.el: `c-electric-delete-forward' is now bound to C-d to
8576 get the electric behavior on that key too.
8577 (c-fill-paragraph): Fixed bogus direct use of
8578 c-comment-prefix-regexp, which caused an error when it's a list.
8579
8580 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
8581
8582 * dired-aux.el (dired-diff): Doc fix.
8583
8584 * dired.el (dired-diff): Likewise.
8585
8586 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
8587
8588 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
8589
8590 2001-05-02 Stefan Monnier <monnier@cs.yale.edu>
8591
8592 * vc.el (vc-next-action-on-file): Only force buffer+file to writable
8593 if both the buffer and the file are read-only.
8594
8595 * progmodes/sh-script.el (sh-prev-line): Look for sh-heredoc-face
8596 rather than font-lock-string-face.
8597 (sh-get-indent-info): Treat heredocs like strings.
8598
8599 2001-05-02 Gerd Moellmann <gerd@gnu.org>
8600
8601 * textmodes/texinfmt.el (texinfo-format-parse-args): Don't consume
8602 a newline following `}'.
8603 (texinfo-format-email): New function.
8604 (toplevel): Use texinfo-format-email for @email.
8605 (texinfo-format-kbd-regexp, texinfo-format-kbd-end-regexp):
8606 Add `display'.
8607 (texinfo-sort-region): Goto point-min before sorting.
8608 (texinfo-set): Remove leading white space from value.
8609 From yagi@is.titech.ac.jp.
8610
8611 * replace.el (query-replace-regexp-eval): Doc fix.
8612
8613 2001-05-01 Stefan Monnier <monnier@cs.yale.edu>
8614
8615 * diff-mode.el (diff-nonexistant-face): New face.
8616 (diff-font-lock-keywords): Use it.
8617
8618 2001-04-30 Eli Zaretskii <eliz@is.elta.co.il>
8619
8620 * font-lock.el (font-lock-mode): Doc fix.
8621
8622 * dired-aux.el (dired-do-rename-regexp, dired-do-copy-regexp)
8623 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
8624
8625 2001-04-30 Gerd Moellmann <gerd@gnu.org>
8626
8627 * progmodes/sh-script.el (sh-font-lock-heredoc): Allow optional
8628 backslash at the start of the here-document delimiter.
8629 (sh-font-lock-syntactic-keywords): Likewise.
8630
8631 * mail/rmail.el (rmail-message-regexp-p): Yet another fix.
8632
8633 2001-04-29 Eli Zaretskii <eliz@is.elta.co.il>
8634
8635 * term/tty-colors.el (tty-color-define, tty-color-off-gray-diag)
8636 (tty-color-translate, tty-color-by-index, tty-color-values)
8637 (tty-color-desc): Doc fix.
8638
8639 2001-04-27 Eli Zaretskii <eliz@is.elta.co.il>
8640
8641 * dired-aux.el (dired-do-create-files, dired-do-copy)
8642 (dired-do-symlink, dired-do-hardlink, dired-do-rename):
8643 Mention dired-dwim-target in the doc string.
8644
8645 2001-04-28 Miles Bader <miles@gnu.org>
8646
8647 * dabbrev.el (dabbrev--ignore-buffer-p): New function.
8648 (dabbrev--find-expansion): Use it.
8649 (dabbrev--select-buffers): Don't select ignored buffers.
8650
8651 2001-04-27 Gerd Moellmann <gerd@gnu.org>
8652
8653 * mail/rmail.el (rmail-message-regexp-p): Don't match before headers.
8654
8655 2001-04-26 Richard M. Stallman <rms@gnu.org>
8656
8657 * dabbrev.el: Add doc strings for some functions.
8658 (dabbrev--eliminate-newlines): New variable.
8659 (dabbrev--substitute-expansion): Convert newlines to spaces
8660 if dabbrev--eliminate-newlines is set.
8661 If abbrev and expansion are both all-lower-case,
8662 leave dabbrev--last-case-pattern nil.
8663
8664 2001-04-26 Gerd Moellmann <gerd@gnu.org>
8665
8666 * mail/rmail.el (rmail-message-regexp-p): Use rfc822-goto-eoh
8667 if necessary, like in rmail-show-message.
8668
8669 2001-04-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8670
8671 * ps-print.el: Color specified by number is forced to be float number.
8672 (ps-print-version): New version number (6.5.1.1).
8673 (ps-header-frame-alist, ps-footer-frame-alist): Adjust color
8674 initialization.
8675 (ps-prefix-quote): New internal var.
8676 (ps-print-quote): New fun.
8677 (ps-setup, ps-output-frame-properties, ps-float-format)
8678 (ps-format-color): Code fix.
8679 (ps-plot-region): Eliminate redundant foreground color text setting.
8680
8681 2001-04-26 Eli Zaretskii <eliz@is.elta.co.il>
8682
8683 * dabbrev.el (dabbrev--select-buffers): Add a doc string.
8684
8685 2001-04-25 Gerd Moellmann <gerd@gnu.org>
8686
8687 * faces.el (tty-handle-reverse-video): Don't set inverse-video.
8688
8689 2001-04-25 Eli Zaretskii <eliz@is.elta.co.il>
8690
8691 * info.el (Info-additional-directory-list): Doc fix.
8692
8693 * find-lisp.el (find-lisp-find-dired-filter)
8694 (find-lisp-find-dired-subdirectories, find-lisp-find-dired):
8695 Add autoload cookies. From Richard Y. Kim <ryk@dspwiz.com>.
8696
8697 2001-04-25 Stefan Monnier <monnier@cs.yale.edu>
8698
8699 * progmodes/make-mode.el (makefile-font-lock-keywords):
8700 Rationalize the rules for includes and conditionals and use the
8701 keyword face for them.
8702
8703 * faces.el (modify-face): Add compatibility for non-interactive use.
8704
8705 2001-04-24 John Wiegley <johnw@gnu.org>
8706
8707 * eshell/esh-cmd.el (eshell-find-alias-function): Corrected the
8708 fix from last night, since it wasn't finding eshell/cd.
8709
8710 2001-04-24 Gerd Moellmann <gerd@gnu.org>
8711
8712 * rect.el (string-rectangle): Revert to 20.x behaviour.
8713 (replace-rectangle): Make it an alias for string-rectangle.
8714 (string-insert-rectangle): New function.
8715
8716 2001-04-23 John Wiegley <johnw@gnu.org>
8717
8718 * eshell/em-unix.el (eshell/diff): Fixed problems that were
8719 occurring with Emacs 21's diff.el/compile.el interaction layer.
8720
8721 2001-04-23 Colin Walters <walters@cis.ohio-state.edu>
8722
8723 * eshell/esh-cmd.el (eshell-find-alias-function): Return t in the
8724 case where the function was defined in a file, but not part of an
8725 eshell module.
8726
8727 2001-04-23 John Wiegley <johnw@gnu.org>
8728
8729 * eshell/em-smart.el (eshell-smart-redisplay): Added some safety
8730 code to work around a redisplay problem I've been having.
8731
8732 2001-04-23 John Wiegley <johnw@gnu.org>
8733
8734 * calendar/timeclock.el (timeclock-day-required): If the time
8735 required for a particular day is not set, use `timeclock-workday'.
8736 (timeclock-find-discrep): Added some sample code in a comment.
8737
8738 * eshell/eshell.el (eshell-command): Made a few changes so that
8739 `eshell-command' could be called programmatically.
8740
8741 * eshell/esh-mode.el (eshell-non-interactive-p): Moved to eshell.el.
8742
8743 * eshell/eshell.el (eshell-non-interactive-p): Moved from esh-mode.el.
8744
8745 2001-04-23 John Wiegley <johnw@gnu.org>
8746
8747 * calendar/timeclock.el: Updated copyright.
8748 (timeclock-generate-report): Don't report the daily or two-week
8749 total, if no time has been worked in that period.
8750 (timeclock-find-discrep): Moved call to `file-readable-p'; removed
8751 final computational form, which was unnecessary; corrected a
8752 parsing problem when timeclock-relative was nil.
8753
8754 2001-04-23 Kahlil Hodgson <kahlil@discus.anu.edu.au>
8755
8756 * calendar/timeclock.el (timeclock-modeline-display): Check if
8757 `list-entry' is null.
8758 (timeclock-use-display-time): The first argument to `set-variable'
8759 must be a symbol.
8760
8761 2001-04-23 Eli Zaretskii <eliz@is.elta.co.il>
8762
8763 * calendar/calendar.el (diary-entry-marker)
8764 (calendar-today-marker, calendar-holiday-marker):
8765 Use display-color-p instead of window-system.
8766 (calendar-mode-map, calendar-mode): Use display-popup-menus-p
8767 instead of window-system.
8768 (calendar-hide-window): Use display-multi-frame-p instead of
8769 window-system.
8770
8771 * calendar/cal-x.el (calendar-two-frame-setup)
8772 (calendar-only-one-frame-setup, calendar-one-frame-setup):
8773 Use display-multi-frame-p instead of window-system.
8774
8775 2001-04-23 Gerd Moellmann <gerd@gnu.org>
8776
8777 * play/fortune.el (fortune-from-region): Use `eq' instead of `eql'.
8778
8779 * textmodes/ispell.el, emacs-lisp/checkdoc.el,
8780 * progmodes/ebrowse.el, play/fortune.el: Fix autoload cookies.
8781
8782 2001-04-23 Alex Schroeder <alex@gnu.org>
8783
8784 * goto-addr.el: Instead of defining line-beginning-position and
8785 line-end-position a defalias is used for point-at-bol and point-at-eol.
8786
8787 2001-04-23 Alex Schroeder <alex@gnu.org>
8788
8789 * goto-addr.el: Added XEmacs compatibility code.
8790 (goto-address-highlight-keymap): Made keybindings XEmacs compatible.
8791
8792 2001-04-22 Eli Zaretskii <eliz@is.elta.co.il>
8793
8794 * textmodes/paragraphs.el (sentence-end): Doc fix.
8795
8796 2001-04-20 Alex Schroeder <alex@gnu.org>
8797
8798 * sql.el (sql-escape-newlines-and-send): New function.
8799 (sql-db2): Set comint-input-sender to sql-escape-newlines-and-send.
8800
8801 2001-04-20 Alex Schroeder <alex@gnu.org>
8802
8803 * sql.el (sql-db2-program): New option.
8804 (sql-db2-options): New option.
8805 (sql-db2): New function.
8806
8807 2001-04-20 Alex Schroeder <alex@gnu.org>
8808
8809 * sql.el (sql-mode-menu): Added highlighting entries.
8810 (sql-highlight-oracle-keywords): New function.
8811 (sql-highlight-postgres-keywords): New function.
8812 (sql-highlight-ansi-keywords): New function.
8813
8814 2001-04-20 Alex Schroeder <alex@gnu.org>
8815
8816 * sql.el (sql-help): Doc change.
8817
8818 2001-04-19 Karl Fogel <kfogel@collab.net>
8819
8820 * saveplace.el (save-place-alist-to-file): Removed no-effect code
8821 that inserted file content only to delete it immediately.
8822 Probably a cut-and-paste bug. Thanks to Juanma Barranquero
8823 <lektu@uol.com.br> for the patch.
8824
8825 2001-04-19 Stefan Monnier <monnier@cs.yale.edu>
8826
8827 * emacs-lisp/easy-mmode.el (easy-mmode-defsyntax): Unquote `doc'.
8828
8829 2001-04-18 Gerd Moellmann <gerd@gnu.org>
8830
8831 * emacs-lisp/cl-indent.el (toplevel): Comment out the spec
8832 for defmethod.
8833
8834 * comint.el (comint-cr-magic): New function.
8835 (toplevel): Add it to comint-preoutput-filter-functions.
8836
8837 2001-04-18 Andrew Innes <andrewi@gnu.org>
8838
8839 * makefile.w32-in (EMACSLOADPATH): Define.
8840 (custom-deps, autoloads, .el.elc, compile-files-CMD, compile-files-SH)
8841 (recompile): Remove stuff to set EMACSLOADPATH.
8842
8843 2001-04-18 Gerd Moellmann <gerd@gnu.org>
8844
8845 * language/slovak.el ("Slovak"): Add tutorial entry.
8846
8847 * net/browse-url.el (browse-url-new-window-flag): Renamed from
8848 browse-url-new-window-p.
8849
8850 2001-04-17 Eli Zaretskii <eliz@is.elta.co.il>
8851
8852 * info.el (Info-menu-update): When there are no menus and/or no
8853 cross references in the node, make the respective items of the
8854 Info menu-bar menu inactive.
8855
8856 2001-04-17 Gerd Moellmann <gerd@gnu.org>
8857
8858 * indent.el (indent-for-tab-command): Call indent-line-function
8859 with no argument if PREFIX-ARG is non-nil.
8860
8861 * frame.el (delete-other-frames): Handle minibuffer-only frames.
8862
8863 2001-04-17 Eli Zaretskii <eliz@is.elta.co.il>
8864
8865 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Don't invoke CVS as
8866 an async subprocess if start-process is unavailable. Suggested by
8867 Tim Van Holder <tim.van.holder@pandora.be>.
8868
8869 2001-04-15 Eli Zaretskii <eliz@is.elta.co.il>
8870
8871 * info.el (Info-additional-directory-list): Doc fix. Suggested by
8872 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>.
8873
8874 2001-04-14 Eli Zaretskii <eliz@is.elta.co.il>
8875
8876 * info.el (Info-file-list-for-emacs): Add an entry for the "info"
8877 manual.
8878
8879 2001-04-13 Stefan Monnier <monnier@cs.yale.edu>
8880
8881 * pcvs-defs.el (cvs-mode-map): Bind C-o like in dired.
8882 (cvs-menu): Add a few entries.
8883
8884 * pcvs.el (cvs-addto-collection): Don't merge MESSAGE fileinfos.
8885 (cvs-update-filter): Only advertise `cvs-mode-delete-lock' if the
8886 lock file appears to be reachable from Emacs.
8887 (cvs-mode-mark-on-state, cvs-mode-display-file): New functions.
8888 (cvs-mode-find-file): Look for cvs-header-face rather than
8889 cvs-dirname-face (which doesn't exist).
8890 (cvs-mode-find-file): Allow `other' to be set to `dont-select'.
8891
8892 * pcvs-parse.el (cvs-parse-run-table): Remove misleading text.
8893
8894 2001-04-13 Eli Zaretskii <eliz@is.elta.co.il>
8895
8896 * emulation/pc-select.el (pc-selection-mode): Don't turn on
8897 normal-erase-is-backspace on a tty. Instead, bind some keys such
8898 as [delete] directly, like pc-select.el did before
8899 normal-erase-is-backspace was invented.
8900
8901 2001-04-12 Eli Zaretskii <eliz@is.elta.co.il>
8902
8903 * ls-lisp.el (ls-lisp-format): Leave a blank before "root".
8904
8905 2001-04-11 John Wiegley <johnw@gnu.org>
8906
8907 * eshell/em-ls.el (eshell-ls-insert-directory):
8908 Set font-lock-defaults to nil, to prevent fontification in dired
8909 buffers, if Eshell's ls is being used.
8910
8911 2001-04-11 John Wiegley <johnw@gnu.org>
8912
8913 * calendar/timeclock.el (timeclock-completing-read): New function.
8914 (timeclock-ask-for-project, timeclock-ask-for-reason):
8915 Call `timeclock-completing-read'.
8916
8917 * eshell/em-alias.el (eshell-command-aliased-p): `assoc' was
8918 required where `member' was being used.
8919
8920 2001-04-11 Colin Walters <walters@cis.ohio-state.edu>
8921
8922 * eshell/em-hist.el (eshell-previous-matching-input):
8923 Don't display "History item" if the minibuffer is active.
8924
8925 2001-04-11 Gerd Moellmann <gerd@gnu.org>
8926
8927 * startup.el (command-line): Output a newline after printing
8928 an error from loading the window system's init file.
8929
8930 2001-04-11 Eli Zaretskii <eliz@is.elta.co.il>
8931
8932 * textmodes/texinfo.el (texinfo-font-lock-keywords):
8933 Add fontification for @value, @dfn, @dmn, @acronym, @anchor, and
8934 @inforef. Add an OVERRIDE of `keep' to highlight specs of
8935 keywords whose arguments routinely include @@.
8936
8937 2001-04-10 Gerd Moellmann <gerd@gnu.org>
8938
8939 * emacs-lisp/advice.el (ad-make-advised-definition):
8940 Construct advice for subrs differently.
8941
8942 * textmodes/paragraphs.el (forward-sentence): Put the sentence-end
8943 regexp in parentheses when building the regexp for searching backwards.
8944
8945 * simple.el (completion-list-mode-finish): New function.
8946 (toplevel): Add completion-list-mode-finish to temp-buffer-show-hook.
8947
8948 * language/european.el ("Polish"): Change sample text.
8949 From jsbien@mimuw.edu.pl (Janusz S. Bie\e,Bq\e(B).
8950
8951 * progmodes/sh-script.el (sh-indent-line): Add optional PREFIX-ARG
8952 parameter.
8953
8954 * faces.el (menu): Doc fix.
8955
8956 2001-04-10 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8957
8958 * ps-print.el: Footer implementation. Doc fix.
8959 (ps-print-version): New version number (6.5.1).
8960 (ps-header-frame-alist): New customization var for header frame
8961 properties.
8962 (ps-line-number-color): New customization var for line number color.
8963 (ps-footer-offset, ps-footer-line-pad, ps-print-footer)
8964 (ps-print-footer-frame, ps-footer-frame-alist, ps-footer-lines)
8965 (ps-footer-font-family, ps-footer-font-size, ps-left-footer)
8966 (ps-right-footer): New customization vars for footers.
8967 (ps-footer-pad, ps-footer-font-size-internal): New internal vars for
8968 footers.
8969 (ps-setup, ps-get-page-dimensions, ps-generate-header-line)
8970 (ps-generate-header, ps-begin-file, ps-begin-job, ps-begin-page):
8971 Code fix.
8972 (ps-prologue-file): Indentation fix.
8973 (ps-print-quote): Fun eliminated.
8974 (ps-value, ps-get, ps-put, ps-del): New funs for alist handling.
8975 (ps-output-frame-properties): New fun.
8976 (ps-fonts, ps-font-number, ps-rgb-color, ps-end-page, ps-next-page)
8977 (ps-skip-newline): Replace defun by defsubst.
8978
8979 2001-04-10 Colin Walters <walters@cis.ohio-state.edu>
8980
8981 * eshell/eshell.el (eshell-command): Needed a "%s" format
8982 specifier, in case the buffer contains percent characters.
8983
8984 2001-04-10 John Wiegley <johnw@gnu.org>
8985
8986 * calendar/timeclock.el (timeclock-generate-report): Added a
8987 missing insert of the project name.
8988
8989 2001-04-09 Gerd Moellmann <gerd@gnu.org>
8990
8991 * obsolete/profile.el: Moved from emacs-lisp/.
8992
8993 * Makefile.in (nonobsolete_setwins): New macro.
8994 (finder-data): Use it instead of `setwins'.
8995 From: Dave Love <fx@gnu.org>.
8996
8997 * server.el (server-visit-files): Set server-existing-buffer correctly.
8998 (server-visit-files): Run server-visit-hook after going to
8999 line 1 so that the hook can set point as it sees fit.
9000
9001 * bindings.el (mode-line-modified): Unify help messages.
9002
9003 2001-04-07 Eli Zaretskii <eliz@is.elta.co.il>
9004
9005 * dos-fns.el (dos-8+3-filename): Rename from dos-truncate-to-8+3.
9006 All callers changed.
9007
9008 2001-04-06 Eli Zaretskii <eliz@is.elta.co.il>
9009
9010 * international/titdic-cnv.el (miscdic-convert): For MS-DOS, if
9011 long file names aren't supported, truncate the file names in
9012 quail-misc-package-ext-info to 8+3 before matching them against
9013 FILENAME.
9014
9015 * dos-fns.el (dos-truncate-to-8+3): New function.
9016
9017 * progmodes/compile.el (grep-compute-defaults): Use null-device
9018 instead of literal /dev/null. Reported by Jens Schmidt
9019 <schmidt@mathematik.uni-kl.de>.
9020
9021 * simple.el (normal-erase-is-backspace-mode): Doc fix.
9022
9023 2001-04-06 Stefan Monnier <monnier@cs.yale.edu>
9024
9025 * textmodes/sgml-mode.el: Add unknown maintainer.
9026 (sgml-tag): Pass `str' explicitly through skeleton-transformation.
9027 (html-mode-map): Use set-keymap-parent.
9028
9029 2001-04-06 Dave Love <fx@gnu.org>
9030
9031 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
9032 Remove redundant string-to-list.
9033
9034 2001-04-05 Stefan Monnier <monnier@cs.yale.edu>
9035
9036 * composite.el (reference-point-alist): Doc fix.
9037
9038 2001-04-05 Sam Steingold <sds@gnu.org>
9039
9040 * font-lock.el (font-lock-keywords-case-fold-search):
9041 Make buffer-local. This fixes a very annoying bug when loading a Lisp
9042 file made font-lock case-insensitive.
9043
9044 2001-04-05 Gerd Moellmann <gerd@gnu.org>
9045
9046 * faces.el (defface menu): Doc fix.
9047
9048 * wid-edit.el (widget-color-sample-face-get): Don't make
9049 faces for undefined colors.
9050
9051 * version.el (emacs-version): Include LessTif/Motif version info.
9052
9053 2001-04-04 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9054
9055 * ps-mule.el: Eliminate cl package dependence.
9056 (char-valid-p, multibyte-string-p, string-make-multibyte): Define funs
9057 if they aren't defined yet.
9058 (ps-mule-encode-header-string, ps-mule-header-string-charsets):
9059 Eliminate cl package dependence.
9060
9061 2001-04-04 Stefan Monnier <monnier@cs.yale.edu>
9062
9063 * progmodes/cc-cmds.el (c-outline-level):
9064 Bind buffer-invisibility-spec. Originally from Dave Love, but
9065 got lost when incorporating version 5.26.
9066
9067 2001-04-04 Eli Zaretskii <eliz@is.elta.co.il>
9068
9069 * emulation/pc-select.el (pc-selection-mode):
9070 Call normal-erase-is-backspace-mode instead of binding
9071 keys individually.
9072
9073 * cus-load.el (normal-erase-is-backspace): Use it instead of
9074 delete-key-deletes-forward.
9075
9076 * startup.el (command-line): Use normal-erase-is-backspace and
9077 normal-erase-is-backspace-mode.
9078
9079 * simple.el (normal-erase-is-backspace): Rename from
9080 delete-key-deletes-forward. Doc fix.
9081 (normal-erase-is-backspace-mode): Rename from
9082 delete-key-deletes-forward-mode. Doc fix.
9083 Run normal-erase-is-backspace-hook.
9084
9085 * dired.el (dired-move-to-filename-regexp): Support file sizes in
9086 ``human-readable'' format produced by GNU `ls'.
9087 (dired-move-to-filename-regexp): Recognize ISO format dates.
9088 From Paul Eggert <eggert@twinsun.com>.
9089
9090 2001-04-04 Gerd Moellmann <gerd@gnu.org>
9091
9092 * emacs-lisp/lisp-mnt.el (lm-keywords-list, lm-keywords-finder-p):
9093 New functions.
9094 (lm-verify): Check keywords.
9095 From Eric M. Ludlam <eric@siege-engine.com>.
9096
9097 2001-04-03 Eric M. Ludlam <eric@siege-engine.com>
9098
9099 * speedbar.el (speedbar-insert-image-button-maybe): Check for
9100 `xemacs' feature instead of for the function `set-extent-property'.
9101
9102 2001-04-03 Stefan Monnier <monnier@cs.yale.edu>
9103
9104 * mail/mh-utils.el (mh-folder-hist): New var.
9105 (mh-prompt-for-folder): Use it and pass `default' to completing-read.
9106
9107 2001-04-03 Eli Zaretskii <eliz@is.elta.co.il>
9108
9109 * hexl.el (hexl-scroll-up): If scrolling gets outside the hexl
9110 region, position point on the first or last 16-byte group.
9111 (hexl-mode-map): Bind C-Home and C-End to hexl-beginning-of-buffer
9112 and hexl-end-of-buffer. Bind End and Home to hexl-end-of-line and
9113 hexl-beginning-of-line.
9114
9115 2001-04-03 Gerd Moellmann <gerd@gnu.org>
9116
9117 * icomplete.el (icomplete-mode): Treat an argument like other
9118 modes do.
9119
9120 * startup.el (fancy-splash-head): Use splash8.xpm for color
9121 depth 8.
9122
9123 * emacs-lisp/checkdoc.el (checkdoc-common-verbs-wrong-voice):
9124 Add an antry for ``converts''.
9125
9126 * language/slovak.el ("Slovak"): Add documentation string.
9127 From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk).
9128
9129 * language/czech.el ("Czech"): Add documentation string.
9130 From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk).
9131
9132 * ps-mule.el (ps-mule-font-info-database-bdf): Change `isci24-etl.bdf'
9133 to `isci24-mule.bdf'. From: Kenichi Handa <handa@etl.go.jp>.
9134
9135 2001-04-02 Stefan Monnier <monnier@cs.yale.edu>
9136
9137 * mail/mail-extr.el (mail-extr-delete-char, mail-extr-safe-move-sexp)
9138 (mail-extr-skip-whitespace-forward, mail-extr-nuke-char-at)
9139 (mail-extr-skip-whitespace-backward, mail-extr-undo-backslash-quoting):
9140 Use `defsubst' rather than a macro to ease debugging.
9141 (mail-extr-last): Remove (use `last' instead).
9142 (mail-extract-address-components): Properly reset the syntax-table
9143 after parsing an address. Use `last' rather than mail-extr-last.
9144 Make sure the end marker stays at the very end.
9145
9146 2001-04-02 Eli Zaretskii <eliz@is.elta.co.il>
9147
9148 * international/titdic-cnv.el (miscdic-convert): Fix a typo in the
9149 last change.
9150
9151 2001-04-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9152
9153 * ps-print.el: Line and paragraph spacing feature. Region to cut
9154 out when printing. Doc fix.
9155 (ps-print-version): New version number (6.5).
9156 (ps-line-spacing, ps-paragraph-spacing, ps-paragraph-regexp):
9157 New vars. Line and paragraph spacing feature.
9158 (ps-begin-cut-regexp, ps-end-cut-regexp): New vars. Region to cut
9159 out when printing.
9160 (ps-setup, ps-nb-pages, ps-get-page-dimensions, ps-begin-file)
9161 (ps-get-font-size, ps-begin-job, ps-continue-line)
9162 (ps-plot-region): Code fix.
9163 (ps-print-prologue-2): Var eliminated.
9164 (ps-line-spacing-internal, ps-paragraph-spacing-internal):
9165 New internal vars.
9166 (ps-get-size): New fun.
9167 (ps-output-string-prim, ps-init-output-queue, ps-print-page-p)
9168 (ps-next-line): Replace defun by defsubst.
9169 (ps-mule-plot-string): Autoload doc fix.
9170
9171 * ps-bdf.el: XEmacs compatibility. Doc fix.
9172 (installation-directory, coding-system-for-read): Declare vars if
9173 it's not declared yet.
9174 (bdf-read-font-info, bdf-read-bitmap, bdf-get-bitmaps): Code fix.
9175
9176 * ps-mule.el: XEmacs compatibility. Doc fix.
9177 (leading-code-private-22): Declare var if it's not declared yet.
9178 (charset-bytes, charset-dimension, charset-id, charset-width)
9179 (find-charset-region, split-char, char-width, chars-in-region)
9180 (forward-point, decompose-composite-char, encode-coding-string)
9181 (coding-system-p, ccl-execute-on-string, define-ccl-program):
9182 Define funs if not defined yet.
9183 (encode-composition-rule, find-composition): Define funs if not
9184 loaded yet.
9185 (ps-mule-prologue): PostScript code fix.
9186
9187 2001-04-02 Kenichi Handa <handa@etl.go.jp>
9188
9189 * ps-mule.el (ps-mule-generate-font): New arg HEADER-P. If it is
9190 non-nil, generate font for the header strings.
9191 (ps-mule-prepare-font): Likewise.
9192 (ps-mule-generate-glyphs): Likewise.
9193 (ps-mule-string-encoding): Likewise.
9194 (ps-mule-header-charsets): New variable.
9195 (ps-mule-encode-header-string): New function.
9196 (ps-mule-header-string-charsets): New function.
9197 (ps-mule-begin-job): Check charsets in the header strings. If there
9198 are non-ASCII and non-Latin1 charsets, prepare fonts for them.
9199
9200 * ps-print.el (ps-generate-header-line): Encode the header string by
9201 ps-mule-encode-header-string.
9202 (ps-mule-encode-header-string): Declare autoload.
9203
9204 2001-04-02 Gerd Moellmann <gerd@gnu.org>
9205
9206 * frame.el (cursor-in-non-selected-windows):
9207 Replaces show-cursor-in-non-selected-windows.
9208
9209 2001-03-31 Kenichi Handa <handa@etl.go.jp>
9210
9211 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
9212 Delete entries for "chinese-py" and "chinese-ziranma".
9213 (quail-misc-package-ext-info): New variable.
9214 (tsang-quick-converter): New function.
9215 (tsang-b5-converter, quick-b5-converter, tsang-cns-converter)
9216 (quick-cns-converter, py-converter, ziranma-converter)
9217 (miscdic-convert, batch-miscdic-convert): New functions.
9218
9219 2001-03-30 Kenichi Handa <handa@etl.go.jp>
9220
9221 * international/utf-8.el (ccl-encode-mule-utf-8): Fix handling of
9222 eight-bit-control chars.
9223
9224 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
9225 Reduce making temporary vector (suggested by Dave Love).
9226
9227 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
9228
9229 * simple.el (transient-mark-mode): Mention ESC ESC ESC in the doc
9230 string as well.
9231
9232 2001-03-30 Andreas Schwab <schwab@suse.de>
9233
9234 * files.el (backup-directory-alist): Fix typo.
9235
9236 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
9237
9238 * time-stamp.el (time-stamp-format): Doc fix. From Paul Eggert
9239 <eggert@twinsun.com>.
9240
9241 2001-03-30 Dave Love <fx@gnu.org>
9242
9243 * progmodes/fortran.el (fortran-comment-region): Fix typo.
9244
9245 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
9246
9247 * simple.el (transient-mark-mode): Mention C-g in the doc string.
9248
9249 2001-03-30 Miles Bader <miles@gnu.org>
9250
9251 * subr.el (interactive-form): Fix paren typo.
9252
9253 2001-03-29 Eli Zaretskii <eliz@is.elta.co.il>
9254
9255 * emacs-lisp/profile.el: Say that it's obsolete in the header
9256 line, so that finder.el puts that into its data-base.
9257 Suggested by Alex Schroeder <alex@gnu.org>.
9258
9259 2001-03-29 Paul Eggert <eggert@twinsun.com>
9260
9261 * mail/emacsbug.el (report-emacs-bug): Report LC_COLLATE,
9262 LC_MESSAGES, LC_MONETARY, LC_NUMERIC, and LC_TIME as well.
9263
9264 2001-03-29 Stefan Monnier <monnier@cs.yale.edu>
9265
9266 * generic.el (generic-mode-set-comments): Use "" rather than nil
9267 for comment-end.
9268
9269 2001-03-29 Gerd Moellmann <gerd@gnu.org>
9270
9271 * emacs-lisp/advice.el (ad-make-advised-definition):
9272 Call interactive-form to obtain the interactive spec of subrs.
9273
9274 * subr.el (interactive-form): New function.
9275
9276 2001-03-29 Andre Spiegel <spiegel@gnu.org>
9277
9278 * vc-sccs.el (vc-sccs-register): Use relative file names.
9279
9280 2001-03-28 Gerd Moellmann <gerd@gnu.org>
9281
9282 * bookmark.el (bookmark-get-bookmark): Handle case that
9283 BOOKMARK is not a string.
9284
9285 * image.el (image-type-regexps): Change type for PS files
9286 to `postscript'.
9287
9288 * subr.el (read-passwd): Clear command history after each
9289 character entered. From: Stephen Gildea
9290 <gildea@stop.mail-abuse.org>.
9291
9292 2001-03-27 Kenichi Handa <handa@etl.go.jp>
9293
9294 * international/kkc.el (kkc-save-init-file): Locally bind
9295 print-length to nil.
9296
9297 2001-03-26 Gerd Moellmann <gerd@gnu.org>
9298
9299 * textmodes/flyspell.el: Some doc fixes.
9300 (flyspell-maybe-correct-transposition)
9301 (flyspell-maybe-correct-doubling): Use a temporary buffer
9302
9303 * textmodes/ispell.el (ispell-parse-output): Doc fix.
9304
9305 * emacs-lisp/byte-opt.el (byte-optimize-while)
9306 (byte-optimize-form-code-walker): Diagnose too few arguments
9307 for `if' and `while'.
9308
9309 2001-03-26 Kenichi Handa <handa@etl.go.jp>
9310
9311 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
9312 Prepend `\' to "\<quail-translation-docstring>".
9313
9314 2001-03-26 Gerd Moellmann <gerd@gnu.org>
9315
9316 * autorevert.el (global-auto-revert-non-file-buffers):
9317 Remove duplicate defcustom.
9318
9319 2001-03-26 Miles Bader <miles@gnu.org>
9320
9321 * international/latin1-disp.el (latin1-char-displayable-p):
9322 Add leading "-" for X font pattern.
9323
9324 2001-03-26 Kenichi Handa <handa@etl.go.jp>
9325
9326 * international/mule-diag.el (describe-coding-system):
9327 For raw-text and emacs-mule, don't add anymore text about what
9328 charsets they can encode.
9329
9330 2001-03-25 Eli Zaretskii <eliz@is.elta.co.il>
9331
9332 * help.el (view-lossage): Mention open-dribble-file in the doc
9333 string. Suggested by Riku Saikkonen <rjs@lloke.dna.fi>.
9334
9335 2001-03-23 Stefan Monnier <monnier@cs.yale.edu>
9336
9337 * skeleton.el (skeleton-internal-list): Fix bogus logic.
9338 (skeleton-pair-insert-maybe): Don't pair after a backslash.
9339
9340 2001-03-23 Kenichi Handa <handa@etl.go.jp>
9341
9342 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
9343 Call ccl-execute-on-string directly so that CCL program handling
9344 multibyte sequence can work correctly.
9345 (encoded-kbd-setup-keymap): Fix the default value of `valid-codes'
9346 property of the coding system.
9347
9348 2001-03-23 Stefan Monnier <monnier@cs.yale.edu>
9349
9350 * textmodes/fill.el (fill-individual-paragraphs-prefix):
9351 Fix transcription typo.
9352
9353 2001-03-22 Rajesh Vaidheeswarran <rv@gnu.org>
9354
9355 * whitespace.el: Add buffer local variables to toggle testing of
9356 whitespaces in buffers without affecting the default values.
9357 Bump version to 3.0 to account for a few other changes.
9358 (whitespace-toggle-ateol-check, whitespace-toggle-leading-check)
9359 (whitespace-toggle-trailing-check, whitespace-toggle-indent-check)
9360 (whitespace-toggle-spacetab-check): New functions.
9361
9362 2001-03-21 Stefan Monnier <monnier@cs.yale.edu>
9363
9364 * obsolete/cplus-md.el: Moved from progmodes/cplus-md.el.
9365
9366 2001-03-21 Gerd Moellmann <gerd@gnu.org>
9367
9368 * bs.el (bs-cycle-next, bs-cycle-previous): Fix handling of
9369 bs-cycle-configuration-name. From Juanma Barranquero
9370 <lektu@uol.com.br>.
9371
9372 * Makefile.in, makefile.w32-in (COMPILE_FIRST): Add cc-mode.el
9373 and cc-vars.el.
9374
9375 * mail/sendmail.el (sendmail-send-it): Don't parse Resent-*
9376 headers. Always invoke sendmail with option -t.
9377
9378 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9379
9380 * Release of cc-mode 5.28.
9381
9382 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9383
9384 * cc-mode.el, cc-vars.el (c-common-init, c-default-style):
9385 Removed the hardcoded switch to "java" style in Java mode.
9386 It's instead taken care of by the default value for c-default-style.
9387
9388 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9389
9390 * cc-align.el (c-lineup-math): Fix bug where lineup was
9391 triggered by equal signs in string literals.
9392
9393 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9394
9395 * cc-cmds.el (c-fill-paragraph): Fixed bug in the paragraph
9396 limit detection when at the ends of the buffer.
9397
9398 * cc-engine.el (c-guess-basic-syntax): Removed bogus check for
9399 "for" statement clause in case 7F; a better one is done
9400 earlier in case 7D anyway.
9401
9402 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9403
9404 * cc-cmds.el (c-guess-fill-prefix): Improved the heuristics
9405 somewhat more and did a small optimization.
9406
9407 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9408
9409 * cc-cmds.el (c-beginning-of-statement, c-end-of-statement):
9410 Use the limit argument only to limit the syntactic context
9411 search, not to limit the actual movement.
9412
9413 * cc-cmds.el (c-beginning-of-statement): Move by sentence
9414 inside multiline strings, just like in comments. Also various
9415 fixes to the paragraph and comment prefix recognition, block
9416 comment ender handling etc.
9417
9418 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9419
9420 * cc-cmds.el (c-fill-paragraph): Take more care to preserve
9421 the relative position of the point.
9422
9423 * cc-cmds.el (c-electric-continued-statement): New function to
9424 use as abbrev hook to reindent for keywords such as "else"
9425 that continues an earlier statement.
9426
9427 * cc-menus.el (cc-imenu-c++-generic-expression): Treat structs
9428 like classes.
9429
9430 * cc-mode.el (c-mode, c++-mode, java-mode, objc-mode)
9431 (pike-mode): Populate the default abbrev tables to reindent for
9432 keywords such as "else" that can continue earlier statements.
9433 Abbrev mode is therefore turned on by default now. (Note that
9434 this doesn't apply to idl-mode, since IDL afaik doesn't have
9435 statements at all.)
9436
9437 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9438
9439 * cc-engine.el (c-inside-bracelist-p): Fix for handling
9440 bracelists where the declaration contains template arguments.
9441
9442 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9443
9444 * cc-cmds.el (c-comment-indent):
9445 Use `c-get-syntactic-indentation' to correctly calculate the
9446 syntactic indentation. Fixes bug with lineup functions that
9447 return vectors.
9448
9449 * cc-engine.el (c-get-syntactic-indentation): Split the
9450 indentation sum calculation from `c-indent-line' to a separate
9451 function.
9452
9453 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9454
9455 * cc-cmds.el (c-beginning-of-statement, c-comment-indent):
9456 Fixed places where it was assumed that preprocessor directives
9457 have to start in column zero.
9458
9459 * cc-engine.el (c-beginning-of-member-init-list): Handle C++
9460 template arguments after a class identifier properly.
9461
9462 * cc-engine.el (c-guess-basic-syntax): Treat initializer brace
9463 lists for `new Foo[]' constructs in Java as expressions and
9464 not top level definition brace lists on the top level, so that
9465 they'll get indented consistently with the same type of
9466 expression in a normal block.
9467
9468 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9469
9470 * cc-cmds.el (c-fill-paragraph): The kludge that checks
9471 whether the adaptive filling package fails to keep the comment
9472 prefix is now kludged further to check for filladapt-mode
9473 which doesn't have that problem. This is really icky, but it's
9474 the only way that works with the current misfeatures/bugs in
9475 both adaptive-fill-mode and filladapt-mode.
9476
9477 * cc-cmds.el (c-fill-paragraph): Made the way the paragraph
9478 around point is recognized more robust.
9479
9480 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9481
9482 * cc-cmds.el, cc-engine.el, cc-lobotomy.el (c-state-cache)
9483 (c-in-literal-cache, c-auto-fill-prefix, c-lit-limits)
9484 (c-lit-type): Fixed all internal variables used dynamically so
9485 that they are always bound.
9486
9487 * cc-cmds.el, cc-engine.el: Improved recovery of syntactic
9488 errors:
9489
9490 (c-indent-region): Fixed reporting of syntactic errors so that
9491 the region is fully reindented even when an error occurs.
9492 The last syntactic error is printed afterwards. Also cleanup up a
9493 whole lot of code that tried to optimize indentation of whole
9494 sexps but in reality accomplishes nothing.
9495
9496 (c-indent-sexp): Use c-indent-region.
9497
9498 (c-parsing-error): Changed this variable to hold the message
9499 for any syntactic error that is discovered.
9500
9501 (c-parse-state): Search backward from point instead of the bod
9502 position when the latter is invalid. This makes CC Mode
9503 recover faster when there are unbalanced close braces.
9504
9505 (c-backward-to-start-of-if): Use c-parsing-error to report
9506 dangling "else" clauses instead of throwing an error, and fall
9507 back to a reasonable position.
9508
9509 (c-indent-line): Added argument to avoid reporting syntactic errors.
9510
9511 (c-show-syntactic-information): Don't report any syntactic errors.
9512
9513 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9514
9515 * cc-cmds.el (c-beginning-of-statement): Fixed bugs with
9516 paragraph recognition when moving by sentence in literals.
9517
9518 * cc-langs.el (c-Java-javadoc-paragraph-start): Modified paragraph
9519 start regexp for javadoc to recognize javadoc markup in general instead
9520 of a specific set of keywords, to be more future-safe.
9521
9522 (c-Pike-pikedoc-paragraph-start)
9523 (c-Pike-pikedoc-paragraph-separate): New regexps to recognize
9524 pikedoc markup.
9525
9526 * cc-mode.el: Fixed initialization and use of c-current-comment-prefix.
9527
9528 (pike-mode): Initialize paragraph settings pikedoc recognition.
9529
9530 * cc-vars.el (c-default-style): Made a nicer Customize widget.
9531
9532 (c-comment-prefix-regexp): Made it possible to use an
9533 association list on this to specify mode specific regexps.
9534 The default value now use a special regexp in Pike mode to
9535 recognize pikedoc markup.
9536
9537 (c-current-comment-prefix): New variable containing the actual
9538 regexp from c-comment-prefix-regexp for the current buffer.
9539
9540 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9541
9542 * cc-cmds.el (c-electric-brace): Fixed check for special brace
9543 lists: We can't look at the syntax, since a brace list can get
9544 recognized as a plain statement-cont.
9545
9546 * cc-engine.el (c-guess-basic-syntax): Fixed bug where a
9547 special brace list opener broken over two lines got recognized
9548 as a statement on the second line. Case 9A changed.
9549
9550 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9551
9552 * cc-cmds.el (c-electric-brace): Fixed bug in c-state-cache
9553 adjustment after line is reindented.
9554
9555 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9556
9557 * cc-defs.el (c-point): Added optional argument for position
9558 to use instead of the current point.
9559
9560 * cc-defs.el, cc-engine.el (c-add-class-syntax): Do not add
9561 the in-expression block symbols when the construct starts at
9562 boi, to avoid the extra level of indentation in that case.
9563 Cases 4, 16A and 17E affected.
9564
9565 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9566
9567 * cc-cmds.el: Use `indent-according-to-mode' instead of direct
9568 calls to `c-indent-line', to adhere better to Emacs conventions.
9569
9570 * cc-engine.el (c-indent-line): Use the syntax already bound
9571 to `c-syntactic-context', if there is any.
9572
9573 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9574
9575 * cc-engine.el (c-get-offset): Fixed bug where the indentation
9576 wasn't added up correctly when a lineup function returned nil.
9577
9578 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9579
9580 * cc-engine.el (c-collect-line-comments): Fixed bug where
9581 empty lines were ignored when collecting line comments backwards.
9582
9583 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9584
9585 * cc-align.el (c-lineup-dont-change): Return an absolute
9586 indentation column to work correctly in the case when several
9587 syntactic elements are processed for the same line.
9588
9589 * cc-engine.el, cc-styles.el, cc-vars.el (c-evaluate-offset)
9590 (c-get-offset, c-indent-line, c-valid-offset, c-read-offset)
9591 (c-set-offset): Added absolute indentation column settings by
9592 using the vector type.
9593
9594 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9595
9596 * cc-cmds.el, cc-vars.el (c-electric-paren, c-cleanup-list):
9597 Implemented two new cleanups `space-before-funcall' and
9598 `compact-empty-funcall'.
9599
9600 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9601
9602 * cc-defs.el (c-paren-re, c-identifier-re): Two new macros for
9603 helping building regexps.
9604
9605 * cc-engine.el (c-on-identifier): New function for detecting
9606 identifiers. It takes keywords into account.
9607
9608 * cc-langs.el, cc-mode.el: Added regexps for complete keyword
9609 lists. `c-keywords' is set to a regexp matching all keywords
9610 in the current language.
9611
9612 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9613
9614 * cc-engine.el (c-beginning-of-statement-1): Added '#' to the
9615 list of characters to skip backwards over at the beginning of
9616 a statement, since it can precede string literals in Pike.
9617
9618 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9619
9620 * cc-cmds.el (c-guess-fill-prefix): Fixed bug with prefix
9621 recognition when standing on the last line in a C++ comment
9622 with nothing but whitespace after the prefix.
9623
9624 * cc-engine.el (c-backward-to-start-of-if): Fixed bug when
9625 given no limit argument.
9626
9627 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9628
9629 * cc-engine.el (c-inside-bracelist-p): Fixed brace list
9630 recognition for the `[]= operator symbol in Pike.
9631
9632 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9633
9634 * cc-bytecomp.el (cc-eval-when-compile): New macro that works
9635 around a bug in `eval-when-compile' in the byte compiler.
9636
9637 * cc-engine.el (c-forward-token-1): Fixed bug with return
9638 value when count is zero and there's no token start within the limit.
9639
9640 (c-guess-basic-syntax): Don't add 'comment-intro to lines with
9641 "prefix comments", i.e. comments which are followed by code on
9642 the same line.
9643
9644 * cc-mode-19.el: Fixes so that checks that must be done at
9645 compile time also are done then.
9646
9647 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9648
9649 * cc-defs.el: Make sure cc-mode-19 is loaded both at compile
9650 time and at runtime, and only when it's needed.
9651
9652 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9653
9654 Major cleanup for less error prone and more warning free
9655 compilation, including some fixes for bugs due to different
9656 compilation orders. Thanks to Martin Buchholz for providing
9657 the basis for all this.
9658
9659 * cc-bytecomp.el: New file that provides some byte compilation
9660 features: It ensures that files always are loaded from the
9661 current source directory during compilation, and it provides a
9662 set of macros to turn off specific compiler warnings for
9663 specific symbols. (It's not CC Mode specific in any way.)
9664
9665 Fixed a nearly acyclic dependency tree (both runtime and
9666 compile-time) between all files.
9667
9668 * cc-defs.el: Separated all macros before the inline functions,
9669 to ensure correct compilation.
9670
9671 * cc-defs.el, cc-engine.el: Moved c-beginning-of-macro to from
9672 cc-defs.el to cc-engine.el and made it a function instead.
9673
9674 * cc-mode-19.el: Patch the byte compiler in Emacs 19 not to warn
9675 about char-after.
9676
9677 * cc-vars.el: Cope even when there isn't a custom package
9678 containing defcustom available.
9679
9680 * cc-make.el: Removed since it's no longer necessary.
9681
9682 README: Updated installation instructions.
9683
9684 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9685
9686 * cc-cmds.el, cc-langs.el, cc-mode.el: Moved around things to
9687 improve the modularity: Moved all mode init stuff from
9688 cc-langs.el to cc-mode.el, including the keymap
9689 initialization; cc-langs now only contains the various
9690 variables for configuring the language syntax.
9691
9692 * cc-engine.el, cc-styles.el (c-evaluate-offset)
9693 (c-get-offset): Moved from cc-styles to cc-engine since file
9694 dependency analysis suggests they belong there (which also
9695 makes more sense). Thanks to Martin Buchholz for doing the analysis.
9696
9697 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9698
9699 * cc-cmds.el (c-fn-region-is-active-p): New function that
9700 wraps the corresponding macro, for use in places that aren't
9701 compiled. Thanks to Martin Buchholz for pointing out this.
9702
9703 * cc-langs.el (c-mode-menu): Use c-fn-region-is-active-p.
9704
9705 * cc-mode.el (c-prepare-bug-report-hooks): Hook variable to
9706 add things to the bug report.
9707
9708 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9709
9710 * cc-cmds.el (c-guess-fill-prefix): Fixed bug where the
9711 returned prefix could contain a newline when the search for a
9712 good prefix line failed.
9713
9714 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9715
9716 * cc-cmds.el (c-toggle-auto-state, c-toggle-hungry-state)
9717 (c-toggle-auto-hungry-state): Made the argument optional, as
9718 the documentation says it is.
9719
9720 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9721
9722 * cc-engine.el (c-guess-basic-syntax): Don't treat the Pike
9723 multiline string syntax, #"...", as a cpp macro.
9724
9725 2001-03-21 Paul Eggert <eggert@twinsun.com>
9726
9727 * international/mule-cmds.el (set-locale-environment):
9728 Set system-messages-locale and system-time-locale, but only if the
9729 caller specifies a non-nil locale name.
9730
9731 2001-03-20 Gerd Moellmann <gerd@gnu.org>
9732
9733 * pcvs-util.el (cvs-bury-buffer): Bodiless `if' statements cause
9734 problems for the interpreter. From: John Wiegley <johnw@gnu.org>
9735
9736 2001-03-20 Gerd Moellmann <gerd@gnu.org>
9737
9738 * follow.el (follow-avoid-tail-recenter): Doc fix.
9739
9740 * custom.el (custom-set-variables): Avoid reversing the list
9741 of args needlessly.
9742
9743 * startup.el (fancy-splash-head): Don't change the colors of the
9744 XPM image on a dark background.
9745
9746 * comint.el (comint-exec-1): Set columns of the terminal to
9747 window-width instead of frame-width.
9748
9749 * info.el (Info-scroll-down): Add missing WINDOW arg for
9750 pos-visible-in-window-p.
9751
9752 * ehelp.el (electric-help-mode-hook): Add defcustom.
9753
9754 * mail/sendmail.el (mail-mode): Activate case-folding in
9755 font-lock-defaults.
9756
9757 2001-03-19 Stefan Monnier <monnier@cs.yale.edu>
9758
9759 * bindings.el (mode-line-mode-menu): `glasses-mode' might be unbound.
9760 (completion-ignored-extensions): Remove duplicate ".class".
9761
9762 2001-03-19 Andreas Schwab <schwab@suse.de>
9763
9764 * textmodes/reftex-dcr.el (reftex-view-crossref): Doc fix.
9765 From Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
9766
9767 2001-03-19 Gerd Moellmann <gerd@gnu.org>
9768
9769 * language/european.el ("Latin-5", "Latin-4"): Use postfix input
9770 methods since there are not prefix input methods.
9771
9772 2001-03-19 Kenichi Handa <handa@etl.go.jp>
9773
9774 * international/mule-cmds.el (read-input-method-name):
9775 Locally bind enable-recursive-minibuffers to t.
9776
9777 2001-03-18 Stefan Monnier <monnier@cs.yale.edu>
9778
9779 * emacs-lisp/lmenu.el (add-menu): Re-added (was erroneously removed).
9780
9781 2001-03-17 Michael Kifer <kifer@cs.sunysb.edu>
9782
9783 * ediff-util.el: Copyright years.
9784 (ediff-choose-syntax-table): New function.
9785 (ediff-setup): Use ediff-choose-syntax-table.
9786
9787 * ediff-init.el (ediff-with-syntax-table): New macro, uses
9788 with-syntax-table.
9789
9790 * ediff.el: Date of last update, copyright years.
9791
9792 * ediff-wind (ediff-setup-control-frame): Nill->nil.
9793
9794 * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
9795 of Scott Bronson.
9796 (ex-cmd-assoc,ex-cmd-one-letr): New functions.
9797 (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
9798 Deleted functions.
9799 (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
9800 ex-token-list.
9801
9802 * viper-util.el: Spaces, indentation.
9803
9804 * viper.el: Changed version, modification time.
9805
9806 2001-03-16 John Wiegley <johnw@gnu.org>
9807
9808 * calendar/timeclock.el (timeclock-workday-remaining):
9809 Check whether `discrep' is non-null before using it.
9810
9811 2001-03-16 John Wiegley <johnw@gnu.org>
9812
9813 * calendar/timeclock.el (timeclock-reread-log): Fixed problem with
9814 first-time checkins.
9815 (timeclock-log-data): Fixed problem with reading timelog log file.
9816 Resulting data in the "day list" was incorrect.
9817 (timeclock-find-discrep): Check if `timeclock-file' is readable
9818 before opening it.
9819 (timeclock-time-less-p): New function.
9820 (timeclock-day-base): New function.
9821 (timeclock-geometric-mean): New function.
9822 (timeclock-generate-report): Generate a summary report based on
9823 the contents of the log file. This uses `timeclock-log-data', and
9824 is an example of writing a timelog manipulation function.
9825 (timeclock-visit-timelog): A quick command for opening the timelog
9826 file.
9827 (timeclock-log-data): Bound the variable event.
9828
9829 2001-03-16 Kenichi Handa <handa@etl.go.jp>
9830
9831 * international/mule-cmds.el (select-safe-coding-system):
9832 Fix typo: symbol-name -> symbol-value.
9833
9834 * mail/rmail.el (rmail-insert-inbox-text): Call expand-file-name
9835 before substitute-in-file-name to handle double slashes in FILE
9836 correctly.
9837
9838 2001-03-15 Gerd Moellmann <gerd@gnu.org>
9839
9840 * textmodes/ispell.el (ispell-dictionary-alist-6): Add support
9841 for Slovak. From Pavel.Janik@suse.cz (Pavel Jan\e,Bm\e(Bk ml.).
9842
9843 2001-03-14 Gerd Moellmann <gerd@gnu.org>
9844
9845 * bindings.el (features): Add `md5' and `overlay' to the list.
9846
9847 * scroll-bar.el (toplevel): Test if `x-toolkit-scroll-bars' is
9848 bound before using it. It's not bound when configured without X,
9849 for instance.
9850
9851 2001-03-13 Thien-Thi Nguyen <ttn@gnu.org>
9852
9853 * progmodes/hideshow.el: Update copyright.
9854 (hs-minor-mode-map): Change bindings to use `C-c @' prefix.
9855 (hs-minor-mode-hook): Include `:version' in defcustom form.
9856
9857 2001-03-13 Gerd Moellmann <gerd@gnu.org>
9858
9859 * help.el (string-key-binding): Don't call event-start on
9860 a non-list.
9861
9862 2001-03-13 Eli Zaretskii <eliz@is.elta.co.il>
9863
9864 * startup.el (fancy-splash-tail, command-line-1): Fix the
9865 copyright year.
9866
9867 2001-03-13 Kenichi Handa <handa@etl.go.jp>
9868
9869 * term.el: These changes are based on a patch sent from Yong Lu
9870 <lyongu@yahoo.com>.
9871 (term-set-escape-char): Bind M-x to execute-extended-command in
9872 term-raw-escape-map.
9873 (term-move-columns): Don't try to move to negagive column.
9874 (term-emulate-terminal): Insert a string before deleting a text to
9875 overwrite.
9876
9877 2001-03-12 Gerd Moellmann <gerd@gnu.org>
9878
9879 * play/life.el (life): Rearrange code so that all calls to
9880 life-display-generation are in a catch-form.
9881
9882 * progmodes/etags.el (tags-loop-continue): Don't change point in a
9883 file that isn't interesting. In an interesting file, push the old
9884 value of point on the mark ring.
9885
9886 * mail/rmailsum.el (rmail-summary-override-mail-send-and-exit):
9887 New function.
9888 (rmail-summary-mail, rmail-summary-reply, rmail-summary-forward):
9889 Use it.
9890
9891 * emacs-lisp/autoload.el (generate-file-autoloads):
9892 Remove warning about line lengths.
9893
9894 2001-03-12 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be>
9895
9896 * progmodes/etags.el (tags-compression-info-list): New variable.
9897 (find-tag-in-order): Use it to deal with compressed source files.
9898 (tag-file-name-match-p): New function.
9899 (etags-recognize-tags-table): Use it for better match of file names.
9900
9901 2001-03-12 Kenichi Handa <handa@etl.go.jp>
9902
9903 * international/mule-cmds.el (register-input-method): Doc fix.
9904
9905 * international/quail.el (quail-translate-key): Fix condition to
9906 check if there's another breaking point in the current key.
9907
9908 2001-03-11 Eli Zaretskii <eliz@is.elta.co.il>
9909
9910 * mail/rmailout.el (rmail-output-to-rmail-file): When writing the
9911 Babyl header to the newly-created output file, bind
9912 coding-system-for-write to either rmail-file-coding-system or
9913 emacs-mule-unix.
9914
9915 2001-03-11 Stefan Monnier <monnier@cs.yale.edu>
9916
9917 * textmodes/texnfo-upd.el (texinfo-update-menu-lower-regexps):
9918 Fix the name and regexp used for subsubsections.
9919
9920 2001-03-10 Dave Love <fx@gnu.org>
9921
9922 * toolbar/tool-bar.el (tool-bar-setup): Don't suppress write-file
9923 and save-buffer if buffer-file-name non-nil. From rms.
9924
9925 2001-03-10 Andre Spiegel <spiegel@gnu.org>
9926
9927 * vc.el (vc-do-command): If the destination buffer is already
9928 current, don't set it up and don't erase it. Updated doc string
9929 to reflect that.
9930 (vc-version-diff): When doing a single file diff, don't switch to the
9931 *vc-diff* buffer before the command. This is to preserve local
9932 variable bindings that might affect the diff command.
9933 (vc-print-log): Don't switch to the *vc* buffer before the
9934 command, so that local variable bindings are preserved.
9935
9936 * vc-{cvs,rcs,sccs}.el (vc-*-print-log): Output to buffer *vc*,
9937 not the current buffer.
9938 (vc-*-diff): Output to buffer *vc-diff*, not the current buffer.
9939
9940 * vc-cvs.el (vc-cvs-checkin): When removing the sticky tag,
9941 make output go to buffer *vc*, not the current buffer.
9942
9943 2001-03-09 Stefan Monnier <monnier@cs.yale.edu>
9944
9945 * hi-lock.el (hi-lock-line-face-buffer): Wrap the regexp in a group
9946 so ^, $, *, ? and + are interpreted correctly.
9947
9948 2001-03-09 Gerd Moellmann <gerd@gnu.org>
9949
9950 * help.el (string-key-binding): Renamed from
9951 mode-line-key-binding. Handle any event on a string.
9952 Check for `keymap' properties as well as `local-map' properties.
9953
9954 * comint.el (comint-insert-clicked-input): Use the last key
9955 from this-command-keys to lookup the global key definition.
9956
9957 2001-03-09 Kenichi Handa <handa@etl.go.jp>
9958
9959 * international/characters.el: Add category `j' for
9960 katakana-jisx0201. Fix syntaxes of katakana-jisx0201.
9961
9962 * international/mule-conf.el (no-conversion): Fix docstring.
9963 (raw-text): Fix docstring.
9964
9965 2001-03-08 Gerd Moellmann <gerd@gnu.org>
9966
9967 * simple.el (choose-completion-string): When not leaving the
9968 minibuffer, raise the minibuffer frame when minibuffer-auto-raise
9969 is set.
9970
9971 * window.el (shrink-window-if-larger-than-buffer): Handle frame
9972 parameter `(minibuffer . t)'.
9973
9974 2001-03-07 Stefan Monnier <monnier@cs.yale.edu>
9975
9976 * progmodes/sh-script.el (sh-st-symbol): New symbol.
9977 (sh-font-lock-syntactic-keywords): Use it and fix bogus comment regexp.
9978 (sh-mode): Remove `make-local-variable' for unused var
9979 `font-lock-unfontify-region-function'.
9980
9981 2001-03-07 Richard M. Stallman <rms@gnu.org>
9982
9983 * info.el (Info-scroll-down): Fix previous change.
9984
9985 * mail/rmail.el (rmail-toggle-header): Use a window which
9986 is showing the Rmail buffer, rather than the selected window.
9987
9988 2001-03-07 Dave Love <fx@gnu.org>
9989
9990 * imenu.el (imenu--create-keymap-2): Revert use of menu-item for
9991 now, to avoid problems with binding imenu directly to a mouse event.
9992
9993 2001-03-07 Gerd Moellmann <gerd@gnu.org>
9994
9995 * info.el (Info-scroll-down): Call pos-visible-in-window-p with
9996 second arg t.
9997
9998 2001-03-07 Stefan Monnier <monnier@cs.yale.edu>
9999
10000 * log-edit.el (log-edit-common-indent): New var.
10001 (log-edit-set-common-indentation): Renamed from
10002 log-edit-delete-common-indentation. Use the new var.
10003 (log-edit-insert-changelog, log-edit-done-hook): Use the new name.
10004
10005 * pcvs.el (cvs-ignore-marks-modif): Use `rassoc' rather than `member*'.
10006 (cvs-mode-add-change-log-entry-other-window):
10007 Don't presume change-log-default-name is defined.
10008
10009 * pcvs-util.el (cvs-bury-buffer): In doubt, don't delete window.
10010
10011 * pcvs-defs.el (cvs-buffer-name-alist): Use *cvs-info* for
10012 the "tree" operation as well.
10013
10014 * pcvs-parse.el (cvs-parse-table): Add another ignored message.
10015
10016 * textmodes/fill.el (fill-context-prefix): Allow first-line-prefix
10017 to match paragraph-start.
10018
10019 * textmodes/sgml-mode.el (sgml-mode-common): Correct value of
10020 comment-start-skip and set comment-end-skip as well.
10021 (sgml-comment-indent): Fix for new value of comment-start-skip.
10022 (html-autoview-mode): Don't bother using make-local-hook.
10023
10024 2001-03-07 Gerd Moellmann <gerd@gnu.org>
10025
10026 * cus-edit.el (custom-save-delete): Move in front of local
10027 variables, otherwise long Custom entries would make them ineffective.
10028
10029 * uniquify.el: Set maintainer to FSF.
10030
10031 2001-03-07 Eli Zaretskii <eliz@is.elta.co.il>
10032
10033 * dired-aux.el (dired-do-shell-command): Doc fix.
10034
10035 2001-03-06 Stefan Monnier <monnier@cs.yale.edu>
10036
10037 * emulation/viper.el (viper-vi-state-mode-list): Add cperl-mode.
10038
10039 * which-func.el (which-func-modes): Add cperl-mode.
10040 (which-func-mode-global): Use define-minor-mode.
10041
10042 * info-look.el: Docstring fixes and dead code eliminated.
10043 (cperl-mode): Add support.
10044 (emacs-lisp-mode): List all entries from elisp manual, whether
10045 or not they are currently (f)bound or not. Update regexp.
10046
10047 * add-log.el (add-log-current-defun): Accept `cperl-mode' as well.
10048
10049 * progmodes/cperl-mode.el (cperl-mode): Set major-mode to cperl-mode
10050 so that C-h m shows the correct information.
10051 Use make-local-variable rather than make-variable-buffer-local.
10052 (cperl-info-buffer, cperl-setup-tmp-buf):
10053 Use make-local-variable rather than make-variable-buffer-local.
10054 (cperl-msb-fix, cperl-get-help-defer):
10055 Check major-mode for `cperl-mode' as well.
10056
10057 * progmodes/cperl-mode.el: Updated to author version 4.23.
10058 (cperl-electric-pod): SYNOPSIS was misspelled.
10059 (cperl-find-pods-heres): @if ? a : b was considered a REx.
10060 (cperl-after-expr-p): Make true after __END__.
10061
10062 2001-03-06 Gerd Moellmann <gerd@gnu.org>
10063
10064 * bookmark.el (bookmark-get-bookmark): Use assoc-ignore-case if
10065 bookmark-completion-ignore-case is t.
10066
10067 * term/x-win.el (x-handle-xrm-switch): Accept more than one -xrm
10068 switch, like xterm, and concat resource strings, with a newline
10069 between them.
10070
10071 2001-03-06 Eli Zaretskii <eliz@is.elta.co.il>
10072
10073 * international/codepage.el (cp770-decode-table)
10074 (cp773-decode-table, cp774-decode-table): New variables.
10075
10076 * man.el (Man-hyphenated-reference-regexp): New variable.
10077 (Man-build-references-alist): Use it to search for referenced
10078 manpages. If hyphenated is non-nil, record a concatenated word in
10079 Man-refpages-alist only if it matches Man-reference-regexp.
10080 Update word's length when it is concatenated. Reverse the list,
10081 to get the first manpage at the head.
10082 (Man-possibly-hyphenated-word): New function.
10083 (Man-follow-manual-reference): Use it instead of current-word to
10084 find a manpage at point, in a way that accounts for hyphenated
10085 references.
10086
10087 2001-03-06 Alex Schroeder <alex@gnu.org>
10088
10089 * sql.el (sql-interbase): New function.
10090 (sql-interbase-program): New option.
10091 (sql-interbase-options): New option.
10092 And some typos fixed: "customise" to "customize".
10093
10094 2001-03-06 Dave Love <fx@gnu.org>
10095
10096 * textmodes/flyspell.el (flyspell-region):
10097 Set up flyspell-local-mouse-map.
10098
10099 2001-03-05 Richard M. Stallman <rms@gnu.org>
10100
10101 * mail/rmail.el (rmail-retry-failure):
10102 Don't call rmail-beginning-of-message.
10103 Don't discard From: field. Do discard Received: field.
10104 Use unwind-protect to re-prune.
10105 (rmail-retry-ignored-headers): Discard X-Authentication-Warning field.
10106
10107 2001-03-06 Kenichi Handa <handa@etl.go.jp>
10108
10109 * international/quail.el (quail-title): Add autoload cookie.
10110
10111 2001-03-05 Dave Love <fx@gnu.org>
10112
10113 * emacs-lisp/cl.el (dotimes, dolist): Undef prior to autoloading
10114 new defs.
10115
10116 2001-03-05 Kenichi Handa <handa@etl.go.jp>
10117
10118 * language/ethio-util.el (ethio-toggle-space):
10119 Update current-input-method-title if necessary.
10120 (ethio-toggle-punctuation): Likewise.
10121
10122 * international/quail.el (quail-title): Fix for the case that a
10123 title of an input method is specified by a list of the same form
10124 as used in mode-line-format.
10125
10126 * international/mule-cmds.el (activate-input-method):
10127 If current-input-method-title is set by activating INPUT-METHOD,
10128 respect that value.
10129
10130 2001-03-05 Gerd Moellmann <gerd@gnu.org>
10131
10132 * play/dunnet.el (dun-mode): Set major-mode to `dun-mode'.
10133
10134 2001-03-05 Alex Schroeder <alex@gnu.org>
10135
10136 * sql.el (sql-sybase): Fix typo (was: query user about server two
10137 times instead of server and database).
10138
10139 * sql.el (sql-sybase): Doc change.
10140 (sql-mysql): Doc change.
10141 (sql-postgres): Doc change.
10142
10143 2001-03-05 Kenichi Handa <handa@etl.go.jp>
10144
10145 * international/mule-conf.el (emacs-mule, raw-text):
10146 Docstring modified.
10147
10148 2001-03-04 Eli Zaretskii <eliz@is.elta.co.il>
10149
10150 * term/internal.el: Update copyright notice.
10151
10152 * term/pc-win.el: Update copyright notice.
10153
10154 2001-03-02 Dave Love <fx@gnu.org>
10155
10156 * files.el (insert-file-contents-literally):
10157 Bind inhibit-file-name-handlers and inhibit-file-name-operation,
10158 not jka-compr-compression-info-list.
10159
10160 2001-03-02 Stefan Monnier <monnier@cs.yale.edu>
10161
10162 * newcomment.el (comment-normalize-vars): Use [ \t] for the trailing
10163 spaces in default comment-start-skip settings rather than \s-.
10164
10165 2001-03-02 Eli Zaretskii <eliz@is.elta.co.il>
10166
10167 * term/pc-win.el (msdos-handle-reverse-video): Look for reverse in
10168 default-frame-alist as well.
10169
10170 2001-03-01 Dave Love <fx@gnu.org>
10171
10172 * textmodes/reftex.el (defvar): Wrap some defvars in
10173 eval-when-compile. From Markus Rost <rost@math.ohio-state.edu>.
10174
10175 * subr.el (event-basic-type): Doc fix.
10176
10177 * international/quail.el: Doc fixes.
10178
10179 * international/utf-8.el: Doc fixes.
10180
10181 * international/mule-cmds.el: Doc fixes.
10182 (leim-list-header): Fix header text.
10183
10184 * international/mule.el (coding-system-category): Doc fix.
10185
10186 * international/ccl.el (ccl-compile): Doc fix.
10187
10188 2001-03-01 Stefan Monnier <monnier@cs.yale.edu>
10189
10190 * font-lock.el (save-buffer-state): Use inhibit-modification-hooks
10191 rather than (before|after)-change-functions.
10192
10193 2001-03-01 Gerd Moellmann <gerd@gnu.org>
10194
10195 * ediff-util.el (ediff-scroll-horizontally): Arrange for
10196 scroll-left and scroll-right being called interactively so that
10197 they set the window's min_hscroll.
10198
10199 2001-03-01 Eli Zaretskii <eliz@is.elta.co.il>
10200
10201 * info.el (info-insert-file-contents-1): Accept an additional
10202 argument `lfn': if it is non-nil, concatenate `filename' and
10203 `suffix'; otherwise use the complicated MS-DOS code.
10204 All callers changed.
10205 (info-insert-file-contents, Info-find-node): If the MS-DOS port
10206 can access long file names, try the long file-name version of
10207 `info-insert-file-contents-1', then the short file-name version.
10208
10209 2001-02-28 TAKAHASHI Naoto <ntakahas@m17n.org>
10210
10211 * language/ethio-util.el (setup-ethiopic-environment-internal):
10212 Change bindings of functions keys to conform to "Emacs Lisp Coding
10213 Convention".
10214
10215 * language/ethiopic.el ("Ethiopic"): Add documentation.
10216
10217 2001-02-28 Kenichi Handa <handa@etl.go.jp>
10218
10219 * international/utf-8.el (mule-utf-8): Set coding-category
10220 property to coding-category-utf-8.
10221
10222 2001-02-27 Richard M. Stallman <rms@gnu.org>
10223
10224 * lpr.el (lpr-page-header-switches, print-region-1):
10225 Undo 2000-07-06 change.
10226 (lpr-add-switches): Default to t on gnu/linux.
10227
10228 2001-02-27 Gerd Moellmann <gerd@gnu.org>
10229
10230 * bs.el (bs-attributes-list): Doc fix.
10231
10232 2001-02-26 Gerd Moellmann <gerd@gnu.org>
10233
10234 * help.el (describe-project): Display the file THE-GNU-PROJECT.
10235
10236 * help.el (view-order-manuals): Use goto-address.
10237
10238 * startup.el (command-line-1): Add info about ordering manuals
10239 to the not so fancy splash screens.
10240
10241 2001-02-26 Andre Spiegel <spiegel@gnu.org>
10242
10243 * vc.el (vc-default-workfile-unchanged-p)
10244 (vc-default-latest-on-branch-p): Add missing BACKEND argument.
10245
10246 2001-02-26 Gerd Moellmann <gerd@gnu.org>
10247
10248 * lazy-lock.el (lazy-lock-fontify-after-idle): Make sure to
10249 fontify in the right buffer.
10250
10251 * allout.el (outline-flag-region): Move macro in front of first
10252 use to avoid a run-time error.
10253
10254 2001-02-24 Andrew Innes <andrewi@gnu.org>
10255
10256 * makefile.w32-in: Fix copyright notice.
10257
10258 2001-02-24 Kenichi Handa <handa@etl.go.jp>
10259
10260 * international/utf-8.el (mule-utf-8): Set correct value for
10261 valid-codes property.
10262
10263 * international/fontset.el (x-complement-fontset-spec): In the
10264 case that we use ASCII font for the other charsets, use only
10265 family and registry part of it.
10266
10267 2001-02-23 Eli Zaretskii <eliz@is.elta.co.il>
10268
10269 * window.el (fit-window-to-buffer, window-safely-shrinkable-p)
10270 (shrink-window-if-larger-than-buffer): Doc fix.
10271
10272 2001-02-23 Stefan Monnier <monnier@cs.yale.edu>
10273
10274 * hi-lock.el (hi-lock-unface-buffer): Use nil rather than t for
10275 predicate passed to completing-read.
10276
10277 2001-02-23 Eli Zaretskii <eliz@is.elta.co.il>
10278
10279 * startup.el (command-line): Fix last change.
10280
10281 2001-02-23 Jason Rumney <jasonr@gnu.org>
10282
10283 * startup.el (tool-bar-originally-present): New variable.
10284 (command-line): Set it if the tool-bar is switched on at startup.
10285
10286 * frame.el (frame-notice-user-settings): Only adjust frame height
10287 for no tool-bar case if tool-bar was originally switched on.
10288 From E. Jay Berkenbilt.
10289
10290 2001-02-22 Stefan Monnier <monnier@cs.yale.edu>
10291
10292 * server.el (server-switch-buffer): Only switch window if the
10293 current one is dedicated.
10294
10295 * textmodes/fill.el (fill-region-as-paragraph): Skip spaces backward
10296 rather than using (match-beginning 0) when searching for break point.
10297
10298 2001-02-22 Eli Zaretskii <eliz@is.elta.co.il>
10299
10300 * textmodes/texinfmt.el (texinfo-format-scan): Signal an error if
10301 @ follows an accent command such as @'. Support optional braces
10302 in commands that insert accents, like makeinfo does.
10303
10304 2001-02-22 Gerd Moellmann <gerd@gnu.org>
10305
10306 * startup.el (fancy-splash-text): Add a line for ordering
10307 manuals. Reverse order of splash screens shown.
10308 (use-fancy-splash-screens-p): Adapt to the text line added.
10309
10310 * menu-bar.el (menu-bar-help-menu): Add an item for ordering
10311 manuals from the FSF.
10312
10313 * help.el (view-order-manuals): New function.
10314 (toplevel): Bind C-h C-m to this function.
10315
10316 2001-02-21 Stefan Monnier <monnier@cs.yale.edu>
10317
10318 * newcomment.el (comment-forward): Skip the comment-start before
10319 searching for the comment-end.
10320
10321 2001-02-21 Dave Love <fx@gnu.org>
10322
10323 * custom.el (custom-initialize-changed, defcustom): Doc fix.
10324
10325 * international/mule-cmds.el, international/mule.el: Doc fixes.
10326
10327 2001-02-21 Gerd Moellmann <gerd@gnu.org>
10328
10329 * startup.el (fancy-splash-screens): Use display-hourglass
10330 instead of display-busy-cursor.
10331
10332 * frame.el (display-hourglass): Renamed from busy-cursor.
10333 (hourglass-delay): Renamed from busy-cursor-delay-seconds.
10334 (show-cursor-in-non-selected-windows): Doc fix.
10335
10336 2001-02-20 Dave Love <fx@gnu.org>
10337
10338 * international/utf-8.el: Doc and commentary fixes.
10339
10340 2001-02-20 Eli Zaretskii <eliz@is.elta.co.il>
10341
10342 * ehelp.el (with-electric-help): Doc fix.
10343
10344 2001-02-20 Gerd Moellmann <gerd@gnu.org>
10345
10346 * msb.el (msb-mode): Call the update-buffers function explicitly
10347 with a FORCE argument.
10348
10349 * menu-bar.el (menu-bar-update-buffers): Add optional parameter
10350 FORCE. If set, update the menu even if frame-or-buffer-changed-p
10351 returns nil.
10352
10353 2001-02-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10354
10355 * ps-print.el: Timestamp package replacement. Some enhancements.
10356 Some XEmacs compatibility. Doc fix.
10357 (ps-print-version): New version number (6.4).
10358 (ps-printer-name): Initialization fix.
10359 (ps-zebra-stripe-follow): Funcionality enhancement.
10360 (ps-prologue-file): Code enhancement.
10361 (ps-right-header): Timestamp package replacement.
10362 (ps-setup, ps-face-bold-p, ps-face-italic-p)
10363 (ps-get-page-dimensions)
10364 (ps-generate-header, ps-begin-file, ps-begin-job)
10365 (ps-generate-postscript-with-faces, ps-do-despool): Code fix.
10366 (ps-time-stamp-mon-dd-yyyy, ps-time-stamp-hh:mm:ss): New funs.
10367 (ps-zebra-stripe-full-p, ps-zebra-stripe-alist): New vars.
10368 (coding-system-for-write): Var declaration (XEmacs compatibility).
10369
10370 2001-02-20 Miles Bader <miles@gnu.org>
10371
10372 * image-file.el (image-file-name-extensions): Add "tif".
10373
10374 2001-02-19 Gerd Moellmann <gerd@gnu.org>
10375
10376 * wid-edit.el (widget-button-click): Save the selected window
10377 around the code handling clicks on buttons.
10378
10379 2001-02-18 Dave Love <fx@gnu.org>
10380
10381 * imenu.el (imenu--generic-function): Use mapc to iterate over
10382 syntax characters.
10383
10384 2001-02-17 Richard M. Stallman <rms@gnu.org>
10385
10386 * progmodes/fortran.el (fortran-strip-sqeuence-nos): Doc fix.
10387
10388 * uniquify.el (uniquify-buffer-name-style): Doc fix.
10389
10390 2001-02-16 Gerd Moellmann <gerd@gnu.org>
10391
10392 * mouse.el (mouse-save-then-kill): If the distance from the new
10393 point to the mark is equal to the distance of point from the new
10394 point, move point instead of the mark.
10395
10396 2001-02-16 Dave Love <fx@gnu.org>
10397
10398 * textmodes/flyspell.el (flyspell-get-word): Return string without
10399 properties.
10400
10401 2001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
10402
10403 * generic.el (generic-find-file-regexp): Doc fix.
10404 (generic-ignore-files-regexp): New defcustom.
10405 (generic-mode-find-file-hook): If the file's name matches the
10406 regexp in `generic-ignore-files-regexp', don't enter
10407 default-generic-mode. Doc fix.
10408
10409 2001-02-16 Gerd Moellmann <gerd@gnu.org>
10410
10411 * textmodes/flyspell.el (flyspell-region, flyspell-buffer):
10412 Add autoload cookies.
10413
10414 * calendar/cal-tex.el (cal-tex-weekly4-box): Respect setting
10415 of cal-tex-24.
10416
10417 2001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
10418
10419 * simple.el (kill-region, kill-line, kill-ring-save): Doc fix.
10420
10421 * progmodes/compile.el (grep-regexp-alist): Remove the blank from
10422 the character class after the (optional) drive, to support file
10423 names with embedded blanks.
10424
10425 2001-02-15 Sam Steingold <sds@gnu.org>
10426
10427 * textmodes/tex-mode.el (tex-shell-running):
10428 Check the process buffer too.
10429
10430 2001-02-15 Dave Love <fx@gnu.org>
10431
10432 * battery.el (battery-status-function): Fix doc, :type.
10433
10434 * calendar/timeclock.el (timeclock-get-workday-function): Fix :type.
10435
10436 2001-02-15 Gerd Moellmann <gerd@gnu.org>
10437
10438 * subr.el (read-passwd): Clear Lisp memory holding password.
10439
10440 2001-02-15 Miles Bader <miles@gnu.org>
10441
10442 * info.el (Info-copy-current-node-name): New function.
10443 (Info-mode-menu): Add it to the menu.
10444
10445 2001-02-14 Richard M. Stallman <rms@theobromine.ai.mit.edu>
10446
10447 * international/mule-cmds.el (toggle-input-method): Doc fix.
10448
10449 2001-02-13 Stefan Monnier <monnier@cs.yale.edu>
10450
10451 * replace.el (occur): Stop at end of buffer.
10452
10453 2001-02-13 Eli Zaretskii <eliz@is.elta.co.il>
10454
10455 * international/mule-cmds.el (set-input-method): Another doc fix.
10456
10457 2001-02-13 David M. Koppelman <koppel@ee.lsu.edu>
10458
10459 * hi-lock.el (hi-lock-find-patterns): Don't activate font-lock-mode.
10460
10461 2001-02-13 Miles Bader <miles@gnu.org>
10462
10463 * faces.el (set-face-background, set-face-foreground)
10464 (set-face-stipple): Treat a value of nil as being `unspecified'.
10465
10466 2001-02-12 Dave Love <d.love@dl.ac.uk>
10467
10468 * international/latin1-disp.el: Doc fixes.
10469 (latin1-display) <defgroup>: Add :link.
10470 (latin1-display) <function>: Set variable latin1-display.
10471
10472 2001-02-12 Eli Zaretskii <eliz@is.elta.co.il>
10473
10474 * international/mule-cmds.el (set-input-method): Doc fix.
10475
10476 2001-02-12 Eric M. Ludlam <zappo@choochoo.ultranet.com>
10477
10478 * speedbar.el (speedbar-frame-parameters): No toolbar lines.
10479 (speedbar-line-file): Return nil if not a file.
10480 (speedbar-buffers-line-path): Return file for tags, and dir for files.
10481
10482 2001-02-12 Michael Kifer <kifer@cs.sunysb.edu>
10483
10484 * ediff-diff.el (ediff-make-diff2-buffer): Removed bogus checks
10485 for remote files.
10486 (ediff-coding-system-for-read): Replaced the no-conversion default
10487 with raw-text.
10488
10489 * ediff-init.el: Removed :version from defcustom vars.
10490
10491 * ediff-util.el (ediff-compute-custom-diffs-maybe):
10492 Better handling of the diff mode.
10493
10494 * ediff.texi: Added ediff-coding-system-for-read.
10495
10496 * viper.texi: Fix typos.
10497
10498 2001-02-11 Dave Love <fx@gnu.org>
10499
10500 * shadowfile.el: Doc fixes.
10501 (shadow) <defgroup>: Add :link.
10502 (shadowfile-unload-hook): New function.
10503 (shadow-initialize): Use defalias, not fset.
10504 (shadow-define-cluster, shadow-define-literal-group)
10505 (shadow-define-regexp-group, shadow-initialize): Add autoload cookie.
10506
10507 * international/mule.el: Doc and message fixes.
10508
10509 * international/ccl.el (define-ccl-program): Doc fix.
10510
10511 2001-02-11 Kenichi Handa <handa@etl.go.jp>
10512
10513 * faces.el (mode-line): Set :line-width property to -1.
10514
10515 2001-02-10 Richard M. Stallman <rms@gnu.org>
10516
10517 * complete.el (partial-completion-mode): Doc fix.
10518
10519 * simple.el (delete-key-deletes-forward-mode):
10520 Change `let' to `let*' to fix gross bug in last change.
10521
10522 * repeat.el (repeat): Don't let execute-kbd-macro alter
10523 real-last-command.
10524
10525 2001-02-10 Eli Zaretskii <eliz@is.elta.co.il>
10526
10527 * simple.el (eval-expression): Doc fix.
10528
10529 2001-02-09 Dave Love <fx@gnu.org>
10530
10531 * imenu.el (imenu-generic-expression): Doc fix.
10532
10533 * emacs-lisp/re-builder.el (reb-mode): Quote the hook name.
10534 From Juanma Barranquero.
10535
10536 * emacs-lisp/authors.el (authors): Expand `root' before running find.
10537
10538 2001-02-09 Kenichi Handa <handa@etl.go.jp>
10539
10540 * faces.el (set-face-attribute): Describe the case of a negative
10541 value specified for :line-width.
10542
10543 2001-02-08 Stefan Monnier <monnier@cs.yale.edu>
10544
10545 * which-func.el (which-func-mode): Invert which-func-mode-global.
10546 From Juanma Barranquero <lektu@uol.com.br>.
10547
10548 2001-02-08 Dave Love <fx@gnu.org>
10549
10550 * wid-edit.el (widget-plist-convert-widget): Replace binding of
10551 widget-plist-value-type.
10552 (widget-alist-convert-widget): Replace binding of
10553 widget-alist-value-type.
10554
10555 * textmodes/paragraphs.el (sentence-end): Doc fix.
10556
10557 * eshell/em-rebind.el (eshell-cannot-leave-input-list):
10558 Remove `backward-line'.
10559
10560 * play/pong.el (pong-blank-color, pong-bat-color)
10561 (pong-ball-color, pong-border-color, pong-left-key)
10562 (pong-right-key, pong-up-key, pong-down-key, pong-quit-key)
10563 (pong-pause-key, pong-resume-key, pong-timer-delay):
10564 * mail/mh-comp.el (mh-compose-letter-function):
10565 * eshell/esh-mode.el (eshell-skip-prompt-function):
10566 * emulation/viper-ex.el (ex-unix-type-shell-options):
10567 * recentf.el (recentf-menu-filter):
10568 * ps-print.el (ps-print-region-function):
10569 * lpr.el (print-region-function):
10570 * forms.el (forms-mode-hooks):
10571 * dirtrack.el (dirtrack-directory-change-hook):
10572 * cus-start.el (temp-buffer-show-function, display-buffer-function):
10573 * textmodes/spell.el (spell-filter):
10574 * textmodes/fill.el (adaptive-fill-function):
10575 * textmodes/bibtex.el (bibtex-autokey-before-presentation-function):
10576 * progmodes/etags.el (find-tag-default-function):
10577 * progmodes/dcl-mode.el (dcl-calc-command-indent-function):
10578 * progmodes/ada-mode.el (ada-popup-key): Fix :type.
10579
10580 2001-02-07 Eli Zaretskii <eliz@is.elta.co.il>
10581
10582 * emulation/viper-init.el (viper-fast-keyseq-timeout)
10583 (viper-translate-all-ESC-keysequences): Doc fix. From Jim
10584 Meyering <jim@meyering.net>.
10585
10586 * loadup.el: Revert last change.
10587
10588 2001-02-07 Kenichi Handa <handa@etl.go.jp>
10589
10590 * international/mule.el (transform-make-coding-system-args):
10591 Make it work also for coding systems not using CCL.
10592
10593 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
10594
10595 * simple.el (previous-matching-history-element)
10596 (next-matching-history-element): Doc fix.
10597
10598 * loadup.el: Load ccl before utf-8; don't load ccl in the ms-dos
10599 specific part.
10600
10601 2001-02-06 Dave Love <fx@gnu.org>
10602
10603 * add-log.el (add-log-current-defun-function)
10604 (add-log-buffer-file-name-function, add-log-file-name-function):
10605 Fix :type.
10606 (change-log-mode) <font-lock-defaults>: Set SYNTAX-BEGIN.
10607
10608 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
10609
10610 * info.el (info-initialize): Remove the test for system-type when
10611 invocation-directory is non-nil.
10612
10613 * progmodes/make-mode.el (makefile-mode): Set SYNTAX-BEGIN member
10614 of `font-lock-defaults' to `backward-paragraph' rather than nil.
10615
10616 2001-02-06 Andrew Innes <andrewi@gnu.org>
10617
10618 * makefile.w32-in (EMACS): Use $(THISDIR) to make emacs.exe path
10619 absolute.
10620
10621 2001-02-06 David M. Koppelman <koppel@ee.lsu.edu>
10622
10623 * hi-lock.el (hi-lock-mode): Toggling hi-lock-mode now affects all
10624 buffers. When hi-lock turned on rather than only checking current
10625 buffer for regexps, all buffers are checked. Moved activation of
10626 font-lock to hi-lock-refontify. When font-lock turned off rather
10627 than removing added highlighting just in current buffer, remove it
10628 in all buffers. Changed edit menu text from "Automatic
10629 Highlighting" to "Regexp Highlighting" Documentation for
10630 highlighting phrases, minor documentation changes.
10631 (hi-lock-set-file-patterns): Execute only if there are new or
10632 existing file patterns.
10633 (hi-lock-refontify): Assume font-lock-fontify-buffer will first
10634 unfontify and, if a support mode is active, will not refontify the
10635 whole buffer. If necessary, turn on font lock. (Removed
10636 font-lock-unfontify and font-lock support-mode-specific calls,
10637 such as lazy-lock-fontify-window.)
10638 (hi-lock-find-patterns): Do not turn on hi-lock-mode even if
10639 patterns are found. Not useful now since find-file-hook is removed
10640 if hi-lock is off, but may be needed for per-buffer hi-lock activation.
10641 (hi-lock-face-phrase-buffer): New function. Also added related
10642 menu item and keybinding.
10643 (highlight-phrase): New alias, to hi-lock-face-phrase-buffer.
10644 (hi-lock-process-phrase): New function.
10645 (hi-lock-line-face-buffer): Doc fixes.
10646 (hi-lock-face-buffer): Doc fixes.
10647 (hi-lock-unface-buffer): Doc fixes.
10648
10649 2001-02-06 Gerd Moellmann <gerd@gnu.org>
10650
10651 * dabbrev.el (dabbrev-ignored-buffer-regexps): Renamed from
10652 dabbrev-ignored-regexps.
10653
10654 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
10655
10656 * simple.el (kill-line): Doc fix.
10657
10658 2001-02-05 Dave Love <fx@gnu.org>
10659
10660 * loadup.el: Revert last two changes -- bootstrapping works with
10661 regenerated loaddefs.
10662
10663 2001-02-05 Eli Zaretskii <eliz@is.elta.co.il>
10664
10665 * isearch.el (isearch-forward): Doc fix.
10666
10667 * textmodes/nroff-mode.el (nroff-mode): Set the SYNTAX-BEGIN part
10668 of font-lock-defaults to backward-paragraph.
10669
10670 2001-02-05 Gerd Moellmann <gerd@gnu.org>
10671
10672 * mail/rmail.el (rmail-ignored-headers): Add X-Trace,
10673 X-Complaints-To, NNTP-Posting-Date, and User-Agent.
10674
10675 2001-02-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10676
10677 * ebnf2ps.el: Eliminate time-stamp functions.
10678 (ebnf-version): New version (3.5).
10679 (ebnf-eps-finish-and-write): Replace time-stamp functions by
10680 format-time-string.
10681
10682 2001-02-05 Gerd Moellmann <gerd@gnu.org>
10683
10684 * simple.el (next-line): Goto end-of-line before inserting a newline.
10685
10686 2001-02-05 Miles Bader <miles@gnu.org>
10687
10688 * image-file.el (insert-image-file): When visiting an image, also
10689 set `truncate-lines' to t so that any fringe arrow looks correct.
10690
10691 2001-02-05 Kenichi Handa <handa@etl.go.jp>
10692
10693 * isearch.el (isearch-forward): Add description about input method
10694 in the docsting.
10695
10696 2001-02-04 Stefan Monnier <monnier@cs.yale.edu>
10697
10698 * skeleton.el (skeleton-internal-1): Always push the mark for @.
10699
10700 2001-02-02 Eli Zaretskii <eliz@is.elta.co.il>
10701
10702 * info.el (info-initialize): If installation-directory is nil, for
10703 DOS/Windows systems try looking in a sibling of invocation-directory.
10704
10705 2001-02-02 Gerd Moellmann <gerd@gnu.org>
10706
10707 * wid-edit.el (widget-button-click): Fix last change.
10708
10709 * frame.el (frame-notice-user-settings): When resizing the initial
10710 frame because the tool bar is off, also change the frame's top
10711 position if a negative top position was specified.
10712
10713 2001-02-02 Miles Bader <miles@gnu.org>
10714
10715 * image-file.el (insert-image-file): When visiting an image,
10716 suppress the cursor in the image buffer.
10717
10718 2001-02-01 Dave Love <fx@gnu.org>
10719
10720 * progmodes/f90.el (f90-mode): Remove startup message.
10721
10722 * vc-cvs.el: Remove autoloads. Require vc when compiling.
10723
10724 2001-02-01 Gerd Moellmann <gerd@gnu.org>
10725
10726 * startup.el (command-line): Fix code determining whether or not
10727 to use delete-key-deletes-forward-mode.
10728
10729 2001-02-01 Andre Spiegel <spiegel@gnu.org>
10730
10731 * vc.el (vc-diff-switches): New user option.
10732 (vc-version-diff): Use it.
10733 (vc-diff-switches-list): New macro.
10734
10735 * vc-{rcs,cvs,sccs}.el: (vc-BACKEND-diff-switches):
10736 New customization options.
10737 (vc-BACKEND-diff): Use new options via vc-diff-switches-list.
10738
10739 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Return correct status.
10740
10741 2001-02-01 Gerd Moellmann <gerd@gnu.org>
10742
10743 * msb.el (toplevel): Quote hook symbols.
10744
10745 2001-02-01 Kenichi Handa <handa@etl.go.jp>
10746
10747 * international/mule.el (make-coding-system): Add description
10748 about recognized properties in the docstring.
10749
10750 * international/mule-conf.el: Remove unused charsets
10751 mac-roman-lower and mac-roman-upper.
10752
10753 2001-01-31 Gerd Moellmann <gerd@gnu.org>
10754
10755 * textmodes/fill.el (set-fill-prefix): Cancel fill prefix if point
10756 is in front of the left-margin, if any.
10757
10758 * simple.el (delete-key-deletes-forward-mode): Treat `kp-delete'
10759 like `delete'.
10760
10761 * bindings.el: Define `kp-delete' like `delete' in function-key-map.
10762
10763 * term/w32-win.el (mouse-set-font): Doc fix.
10764
10765 2001-01-31 Stefan Monnier <monnier@cs.yale.edu>
10766
10767 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer): Doc fix.
10768 (hi-lock-find-patterns): Turn on font-lock-mode, if it is not
10769 on already.
10770
10771 2001-01-31 Markus Rost <rost@math.ohio-state.edu>
10772
10773 * files.el (save-buffer): Don't give message if (buffer-file-name)
10774 returns nil.
10775
10776 2001-01-31 Eli Zaretskii <eliz@is.elta.co.il>
10777
10778 * toolbar/tool-bar.el (tool-bar-add-item): Doc fix.
10779
10780 * emacs-lisp/re-builder.el (reb-update-modestring): Don't use
10781 concat for integers. From Juanma Barranquero <lektu@uol.com.br>.
10782
10783 * term/w32-win.el (redisplay-dont-pause): Set to t to alleviate
10784 display problems.
10785
10786 2001-01-31 Kenichi Handa <handa@etl.go.jp>
10787
10788 * international/mule.el (charset-info): Fix docstring.
10789
10790 * international/mule-diag.el (describe-character-set): Check final
10791 char valid before printing it.
10792
10793 2001-01-30 Gerd Moellmann <gerd@gnu.org>
10794
10795 * lpr.el (lpr-windows-system, lpr-lp-system): Add autoload cookies.
10796
10797 * frame.el (frame-notice-user-settings): Do the tool-bar
10798 stuff only for graphical displays. Fix a braino.
10799
10800 * frame.el (frame-initialize): Create initial frame visible.
10801 (frame-notice-user-settings): When tool-bar has been switched off,
10802 correct the frame size and sync tool-bar-mode.
10803
10804 * startup.el (command-line): Remove manipulation of frame
10805 height for tool bars.
10806
10807 2001-01-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10808
10809 * lpr.el: Compatibility with XEmacs and doc fixes.
10810 (lpr-windows-system, lpr-lp-system): New vars.
10811 (lpr-printer-switch): New defcustom.
10812 (printer-name, lpr-command): Customization fix.
10813 (print-region-1): Code fix.
10814 (print-region-new-buffer, printify-region): Indentation fix.
10815 (lpr-eval-switch, lpr-flatten-list, lpr-flatten-list-1):
10816 New functions.
10817
10818 2001-01-29 Gerd Moellmann <gerd@gnu.org>
10819
10820 * msb.el (toplevel): Fix the eval-after-load.
10821
10822 2001-01-29 Dave Love <fx@gnu.org>
10823
10824 * eshell/esh-ext.el (eshell-windows-shell-file): Fix :type.
10825
10826 * eshell/em-ls.el (eshell-ls-exclude-regexp): Fix :type.
10827
10828 * progmodes/tcl.el (outline, dabbrev, add-log): Require when compiling.
10829 (tcl-using-emacs-19-23): Consider Emacs 21+.
10830 (tcl-help-directory-list, tcl-command-switches): Fix :type.
10831 (tcl-add-emacs-menu): Supply menu name.
10832 (tcl-beginning-of-defun, tcl-end-of-defun): Defalias, don't fset.
10833
10834 2001-01-29 Gerd Moellmann <gerd@gnu.org>
10835
10836 * simple.el (delete-trailing-whitespace): Don't delete formfeeds.
10837
10838 2001-01-29 Stefan Monnier <monnier@cs.yale.edu>
10839
10840 * pcvs.el (cvs-mark-fis-dead): New function.
10841 (cvs-mode-add): Use it.
10842 (cvs-mode-add-change-log-entry-other-window):
10843 Rebind change-log-default-name to itself rather than to nil.
10844
10845 2001-01-29 Sam Steingold <sds@gnu.org>
10846
10847 * vc-cvs.el: Replaced (require 'vc) with a bunch of
10848 `autoload' statements.
10849
10850 2001-01-29 Eli Zaretskii <eliz@is.elta.co.il>
10851
10852 * files.el (confirm-kill-emacs): Doc fix.
10853
10854 * frame.el (frame-initialize): Doc fix.
10855
10856 * time-stamp.el (time-stamp-string): Doc fix.
10857
10858 * woman.el (WoMan-log-1): Make the log buffer writable.
10859 From Markus Rost <rost@math.ohio-state.edu>.
10860
10861 2001-01-29 Gerd Moellmann <gerd@gnu.org>
10862
10863 * imenu.el (imenu-syntax-alist): Add autoload cookie for
10864 the `make-variable-buffer-local'.
10865
10866 2001-01-29 Dave Love <fx@gnu.org>
10867
10868 * ansi-color.el (ansi-color-for-comint-mode): Add :version.
10869 (ansi-color-for-comint-mode-on, ansi-color-process-output):
10870 Add autoload cookie.
10871 (ansi-color-apply-sequence): Fix typo.
10872
10873 2001-01-29 Gerd Moellmann <gerd@gnu.org>
10874
10875 * menu-bar.el (menu-bar-files-menu): Add menu items for
10876 Postscript printing in black and white.
10877
10878 * mail/rmail.el (rmail-ignored-headers): Add X-Sign, X-BeenThere,
10879 X-Mailman-Version, Precedence, List-Help, List-Post,
10880 List-Subscribe, List-Id, List-Unsubscribe, List-Archive,
10881 Content-Type, Content-Length.
10882
10883 2001-01-29 Dave Love <fx@gnu.org>
10884
10885 * elide-head.el (elide-head): Make overlay evaporate.
10886
10887 * international/mule-conf.el (chinese-big5-1, chinese-big5-2): Doc fix.
10888
10889 2001-01-28 Eli Zaretskii <eliz@is.elta.co.il>
10890
10891 * isearch.el (isearch-highlight): Don't punt if the display
10892 doesn't support colors, since isearch faces are defined for
10893 monochrome displays as well.
10894
10895 2001-01-27 Sam Steingold <sds@gnu.org>
10896
10897 * shell.el (shell-write-history-on-exit): Make sure that we are in
10898 the shell buffer (M-x tex-file RET inserted the error message into
10899 the TeX buffer).
10900
10901 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
10902
10903 * simple.el (transient-mark-mode): Doc fix.
10904
10905 2001-01-27 Gerd Moellmann <gerd@gnu.org>
10906
10907 * progmodes/etags.el (find-tag-noselect): Don't bind tags-file-name.
10908
10909 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
10910
10911 * shell.el (shell-unquote-argument): If the shell is one of the
10912 mentioned in shell-dumb-shell-regexp, don't treat a backslash as a
10913 quote character.
10914 (shell-dumb-shell-regexp): Document that the shells which match
10915 this regexp are supposed to not treat a backslash as a quote character.
10916
10917 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Undo the change
10918 from 2001-01-12. It is not needed, since backspace is mapped into DEL.
10919
10920 2001-01-27 Richard M. Stallman <rms@gnu.org>
10921
10922 * dabbrev.el (dabbrev--substitute-expansion):
10923 Treat a one-capital-letter abbrev as "not all upper case",
10924 so as to force preservation of the expansion's pattern
10925 if the expansion starts with a capital letter.
10926
10927 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
10928
10929 * facemenu.el (facemenu-set-face, facemenu-set-face-from-menu):
10930 Doc fix.
10931
10932 * simple.el (transient-mark-mode): Document the fact that many
10933 commands act on the region when mark is active.
10934
10935 2001-01-27 Kenichi Handa <handa@etl.go.jp>
10936
10937 * international/quail.el (quail-setup-completion-buf): Make the
10938 multibyteness of current buffer inherited to Quail completion buffer.
10939 (quail-show-guidance-buf): Make the multibyteness of current
10940 buffer inherited to Quail guidance buffer.
10941 (quail-help): Make the multibyteness of current buffer inherited
10942 to Quail help buffer.
10943
10944 2001-01-26 Dave Love <fx@gnu.org>
10945
10946 * time-stamp.el: Doc fixes.
10947
10948 * progmodes/delphi.el (delphi-comment-face, delphi-string-face)
10949 (delphi-keyword-face, delphi-other-face): Fix :type.
10950
10951 * textmodes/flyspell.el: Doc fixes. Add :version to new options.
10952
10953 * mail/feedmail.el (feedmail): Add :link.
10954 (feedmail-send-it): Doc fix.
10955
10956 * mail/sendmail.el: Doc fixes.
10957 (sendmail-send-it): Fix the non-ASCII regexp and use
10958 rfc2047-encode-string.
10959
10960 * dired.el, dired-aux.el: Revert last change.
10961
10962 2001-01-26 Gerd Moellmann <gerd@gnu.org>
10963
10964 * makefile.w32-in (DONTCOMPILE): Add various term files.
10965
10966 2001-01-26 Dave Love <fx@gnu.org>
10967
10968 * Makefile.in (DONTCOMPILE): Add various term files.
10969
10970 2001-01-26 Gerd Moellmann <gerd@gnu.org>
10971
10972 * man.el (Man-default-man-entry, Man-mode): Doc fix.
10973
10974 * startup.el (display-startup-echo-area-message): Make sure
10975 the echo area is resized to fit the size of the startup message.
10976
10977 * gud.el (gud-perldb-massage-args): Avoid nreverse'ing a list
10978 part of which is a constant.
10979
10980 2001-01-26 Eli Zaretskii <eliz@is.elta.co.il>
10981
10982 * loadup.el (Top-level) [ms-dos]: Don't load international/ccl twice.
10983
10984 2001-01-26 Richard M. Stallman <rms@gnu.org>
10985
10986 * simple.el (next-line): Don't let `newline' expand abbrevs.
10987 Simplify slightly.
10988 (open-line): Don't let `newline' expand abbrevs.
10989
10990 2001-01-25 John Wiegley <johnw@gnu.org>
10991
10992 * eshell/esh-util.el (eshell-ange-ls-uids): Changed use of `alist'
10993 to `repeat' in the :type field.
10994
10995 * pcomplete.el (pcomplete-file-ignore): Changed a :type field to
10996 allow a choice of regexp or nil.
10997 (pcomplete-dir-ignore): Same.
10998
10999 * eshell/em-unix.el (eshell/occur): Fixed bug causing `occur' (as
11000 a command) to always fail.
11001
11002 2001-01-25 Gerd Moellmann <gerd@gnu.org>
11003
11004 * iswitchb.el (iswitchb-make-buflist): When nconc'ing lists, don't
11005 discard the result.
11006 (iswitchb-to-end): Likewise.
11007
11008 2001-01-25 Sam Steingold <sds@gnu.org>
11009
11010 * vc-cvs.el (vc-cvs-mode-line-string): Doc & comment fix.
11011 Require vc.
11012
11013 2001-01-25 Stefan Monnier <monnier@cs.yale.edu>
11014
11015 * smerge-mode.el (smerge-font-lock-keywords): Relax submatch 1.
11016
11017 * emacs-lisp/easy-mmode.el (define-minor-mode): Docstring fix.
11018
11019 2001-01-25 Dave Love <fx@gnu.org>
11020
11021 * lisp/international/mule-diag.el (describe-char-after): Doc fix.
11022 (describe-coding-system): Tweak the English text.
11023
11024 * loadup.el: Preload international/ccl for utf-8.
11025
11026 2001-01-25 Eli Zaretskii <eliz@is.elta.co.il>
11027
11028 * mail/rmail.el (rmail-redecode-body): Doc fix.
11029
11030 2001-01-25 Kenichi Handa <handa@etl.go.jp>
11031
11032 * international/mule-cmds.el (reset-language-environment):
11033 Reset coding-category-utf-8 to mule-utf-8.
11034
11035 * international/mule-conf.el (coding-category-utf-8):
11036 Initialize to mule-utf-8.
11037
11038 * loadup.el: Preload international/utf-8.
11039
11040 * international/utf-8.el: New file.
11041
11042 2001-01-24 Stefan Monnier <monnier@cs.yale.edu>
11043
11044 * diff-mode.el (diff-mode): Disable preliminary support for `compile'.
11045
11046 2001-01-24 Sam Steingold <sds@gnu.org>
11047
11048 * dired.el (dired-replace-in-string): Removed.
11049 (dired-sort-toggle): Use `replace-regexps-in-string'
11050 instead of `dired-replace-in-string'.
11051
11052 * dired-aux.el (dired-shell-stuff-it, dired-rename-subdir)
11053 (dired-rename-subdir-2, dired-insert-subdir-doinsert): Ditto.
11054
11055 * gs.el (gs-replace-in-string): Removed.
11056 (gs-options): Use `replace-regexps-in-string'
11057 instead of `gs-replace-in-string'.
11058
11059 2001-01-24 Eli Zaretskii <eliz@is.elta.co.il>
11060
11061 * mail/emacsbug.el (report-emacs-bug): Mention the fact that the
11062 bug report is mailed to an email list and posted to a news group.
11063
11064 2001-01-24 Gerd Moellmann <gerd@gnu.org>
11065
11066 * comint.el (comint-replace-by-expanded-history-before-point):
11067 Fix change of 2000-08-03 to move point to the start of the line again.
11068
11069 * startup.el (tool-bar-images-pixel-height): New variable.
11070 (command-line): After loading the user's init file, when
11071 tool-bar-mode is on, increase the frame's size by some lines for
11072 the tool-bar.
11073
11074 * frame.el (frame-initialize): Create the initial frame invisible.
11075
11076 2001-01-24 ShengHuo ZHU <zsh@cs.rochester.edu>
11077
11078 * language/chinese.el (chinese-iso-8bit): MIME:GB2312.
11079 (chinese-big5): MIME:Big5.
11080
11081 2001-01-24 Gerd Moellmann <gerd@gnu.org>
11082
11083 * international/mule-cmds.el (universal-coding-system-argument):
11084 Handle commands with prefix args.
11085
11086 2001-01-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
11087
11088 * calendar/diary-lib.el (diary-float): Fix case of MONTH
11089 being a list of numbers.
11090 (diary-mail-entries): Rewritten.
11091
11092 2001-01-23 Dave Love <fx@gnu.org>
11093
11094 * international/mule.el (make-coding-system): Fix typo.
11095
11096 * textmodes/outline.el (outline-mode) <font-lock-defaults>:
11097 Add backward-paragraph as font-lock-beginning-of-syntax-function.
11098
11099 2001-01-23 Eli Zaretskii <eliz@is.elta.co.il>
11100
11101 * font-lock.el (font-lock-mode): Doc fix.
11102
11103 2001-01-23 Kenichi Handa <handa@etl.go.jp>
11104
11105 * international/mule.el (make-translation-table): Fix docstring.
11106
11107 2001-01-22 Eli Zaretskii <eliz@is.elta.co.il>
11108
11109 * mail/rmail.el (rmail-redecode-body): New function.
11110
11111 * icomplete.el (icomplete-minibuffer-setup-hook): Doc fix.
11112
11113 2001-01-22 Gerd Moellmann <gerd@gnu.org>
11114
11115 * isearch.el (isearch-lazy-highlight-case-fold-search)
11116 (isearch-lazy-highlight-regexp): New variables.
11117 (isearch-lazy-highlight-cleanup): Update lazy highlight if
11118 case-fold search or regexp search has been toggled.
11119
11120 * wid-edit.el (widget-button-click): Avoid a save-excursion
11121 around running a global binding.
11122
11123 * isearch.el (isearch-lazy-highlight-initial-delay): Set default
11124 to 0.25.
11125
11126 2001-01-20 Miles Bader <miles@gnu.org>
11127
11128 * cus-edit.el (custom-face-save): Do post-processing on the face's
11129 new value like `custom-face-set' does.
11130
11131 2001-01-19 Eli Zaretskii <eliz@is.elta.co.il>
11132
11133 * mail/emacsbug.el (report-emacs-bug): Report the value of
11134 LC_CTYPE, not LC_TYPE.
11135
11136 * isearch.el (isearch-forward): Add isearch-toggle-case-fold,
11137 isearch-toggle-regexp and isearch-edit-string to doc string.
11138
11139 2001-01-19 Gerd Moellmann <gerd@gnu.org>
11140
11141 * textmodes/texinfo.el (texinfo-mode): Use backward-paragraph
11142 as font-lock-beginning-of-syntax-function in font-lock-defaults.
11143
11144 * jit-lock.el (jit-lock-fontify-now): Don't bind
11145 font-lock-beginning-of-syntax-function to nil.
11146
11147 2001-01-19 Eli Zaretskii <eliz@is.elta.co.il>
11148
11149 * mail/emacsbug.el (report-emacs-bug): Report values of
11150 locale-coding-system, default-enable-multibyte-characters, and the
11151 environment variables LC_ALL, LC_TYPE, and LANG.
11152
11153 2001-01-19 Gerd Moellmann <gerd@gnu.org>
11154
11155 * font-lock.el (font-lock-default-fontify-region): Fix last change.
11156
11157 * font-lock.el (font-lock-multiline): Default to nil.
11158 (font-lock-default-fontify-region): If font-lock-multiline is
11159 nil, don't check the property `font-lock-multiline'.
11160
11161 * jit-lock.el (jit-lock-after-change): If font-lock-multiline
11162 is nil, don't check the `font-lock-multiline' text property.
11163
11164 2001-01-19 Michael Kifer <kifer@cs.sunysb.edu>
11165
11166 * viper.el: Call initial-major-mode on startup.
11167
11168 * ediff.el (ediff-patch-file): Use better defaults.
11169
11170 * ediff-vers.el: Fix for 8+3 DOS file systems.
11171
11172 2001-01-19 Colin Walters <walters@cis.ohio-state.edu>
11173
11174 * ediff-util.el (ediff-compare-custom-diffs-maybe): Put diff in
11175 diff mode, if available.
11176
11177 2001-01-19 Michael Kifer <kifer@cs.sunysb.edu>
11178
11179 * ediff-hook.el (ediff-xemacs-init-menus): Fixed add-menu-button.
11180
11181 * ediff-init.el (subst-char-in-string): Define and use it, unless
11182 it's already defined.
11183
11184 2001-01-18 Gerd Moellmann <gerd@gnu.org>
11185
11186 * tooltip.el (tooltip-hide-delay): New user-option.
11187 (tooltip-show): Use tooltip-hide-delay instead of the default.
11188
11189 2001-01-18 Kenichi Handa <handa@etl.go.jp>
11190
11191 * mail/sendmail.el (mail-setup): Call set-buffer-multibyte because
11192 kill-local-variable doesn't work for enable-multibyte-characters.
11193
11194 2001-01-17 Dave Love <fx@gnu.org>
11195
11196 * ediff-init.el (ediff-before-setup-hook)
11197 (ediff-merge-filename-prefix): Add :version.
11198
11199 * international/latin1-disp.el: Require disp-table.
11200 (latin1-display): Fix :set.
11201
11202 * net/eudc-vars.el (eudc-server, eudc-protocol): Fix :type.
11203
11204 2001-01-17 Gerd Moellmann <gerd@gnu.org>
11205
11206 * isearch.el (isearch-lazy-highlight-initial-delay)
11207 (isearch-lazy-highlight-interval): Default to 0.
11208
11209 2001-01-17 Bob Glickstein <bobg@zanshin.com>
11210
11211 * isearch.el (isearch-highlight): Set isearch-overlay priority to
11212 1 here rather than each time through
11213 isearch-lazy-highlight-new-loop.
11214 (isearch-lazy-highlight-max): Variable deleted.
11215 (isearch-lazy-highlight-max-at-a-time): New user variable, like
11216 isearch-lazy-highlight-max but controls a single invocation of
11217 isearch-lazy-highlight-update.
11218 (isearch-lazy-highlight-wrapped): Variable recreated.
11219 (isearch-lazy-highlight-window-start): New variable.
11220 (isearch-lazy-highlight-cleanup): Restored to behavior of
11221 before 2-Jan.
11222 (isearch-lazy-highlight-remove-overlays): Function deleted;
11223 behavior folded into isearch-lazy-highlight-cleanup. "Keep"
11224 behavior removed.
11225 (isearch-lazy-highlight-new-loop): Restore old behavior of calling
11226 isearch-lazy-highlight-update in a loop rather than just once.
11227 Test isearch-invalid-regexp here and decide not to start a new
11228 loop, rather than testing it each time through
11229 isearch-lazy-highlight-update.
11230 (isearch-lazy-highlight-search): Function restored.
11231 (isearch-lazy-highlight-update): Get called in a timer loop again,
11232 but this time highlight more than one match each time through.
11233 Only highlight matches in the visible part of the window.
11234 Start at point, move in the direction of the search, and wrap around at
11235 the edge of the window. Use sit-for to force redisplay and ensure
11236 window-start is credible. "Face suppressing" behavior removed;
11237 overlay priorities should make it unnecessary, right?
11238 (isearch-highlight): Face suppressing behavior removed.
11239 (isearch-dehighlight): Face suppressing behavior removed.
11240 (isearch-set-lazy-highlight-faces-at): Removed.
11241
11242 2001-01-17 Kenichi Handa <handa@etl.go.jp>
11243
11244 * language/european.el ("Latin-1"): Make the format of description
11245 about additional language environments same as that of Latin-2.
11246
11247 2001-01-16 Dave Love <fx@gnu.org>
11248
11249 * isearch.el (isearch-lazy-highlight): Add :version.
11250
11251 * simple.el (backward-delete-char-untabify-method)
11252 (next-line-add-newlines): Add :version.
11253
11254 2001-01-16 Gerd Moellmann <gerd@gnu.org>
11255
11256 * bindings.el: Bind <backspace> and <delete> via function-key-map.
11257 Don't bind <delete> otherwise.
11258
11259 * simple.el (delete-key-deletes-forward-mode): Bind <backspace>
11260 and <delete> via function-key-map.
11261
11262 * textmodes/flyspell.el (mail-mode-flyspell-verify): Check in
11263 Subject line only if point is after the `Subject:'.
11264
11265 2001-01-16 Kenichi Handa <handa@etl.go.jp>
11266
11267 * language/japanese.el ("Japanese"): Add japanese-jisx0213-1 and
11268 japanese-jisx0213-2 in `charset' property of this lang. env.
11269
11270 * language/european.el ("Latin-1"): Add description for Dutch and
11271 Spanish lang. env.
11272
11273 * international/mule.el (decode-char): Fix conditions.
11274 (encode-char): Handle eight-bit-control too.
11275 (transform-make-coding-system-args): New function.
11276 (make-coding-system): Accept XEmacs style arguments for CCL base
11277 coding system.
11278
11279 2001-01-15 Gerd Moellmann <gerd@gnu.org>
11280
11281 * progmodes/etags.el (find-tag-noselect): Save the value of
11282 tags-file-name before switching buffers, for the case it has a
11283 buffer-local value.
11284
11285 2001-01-15 Alex Schroeder <alex@gnu.org>
11286
11287 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
11288 From Dave Love <fx@gnu.org>.
11289 (ansi-color-for-comint-mode): Fix :version.
11290
11291 2001-01-15 Alex Schroeder <alex@gnu.org>
11292
11293 * ansi-color.el (ansi-color-unfontify-region): Doc change.
11294
11295 2001-01-14 Eli Zaretskii <eliz@is.elta.co.il>
11296
11297 * dired.el (dired-insert-directory): If file-system-info fails,
11298 remove the " free " part, but don't signal an error.
11299
11300 2001-01-12 Sam Steingold <sds@gnu.org>
11301
11302 * bookmark.el (bookmark-maybe-historicize-string):
11303 Use new backquote syntax.
11304
11305 2001-01-12 Richard M. Stallman <rms@gnu.org>
11306
11307 * subr.el (last): Handle a list that doesn't end in nil.
11308
11309 2001-01-12 Sam Steingold <sds@gnu.org>
11310
11311 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind `backspace'
11312 to `backward-delete-char-untabify'.
11313
11314 2001-01-12 Dave Love <fx@gnu.org>
11315
11316 * cus-edit.el (customize-menu-create): Fix the :filter following
11317 easymenu change.
11318
11319 * wid-edit.el (function): Add :match-alternatives.
11320 (widget-color-action): Doc fix.
11321
11322 2001-01-12 Gerd Moellmann <gerd@gnu.org>
11323
11324 * calendar/calendar.el (calendar-basic-setup): Doc fix.
11325
11326 2001-01-12 Kenichi Handa <handa@etl.go.jp>
11327
11328 * international/mule-cmds.el (prefer-coding-system): Fix docstring.
11329
11330 * international/ccl.el (define-ccl-program): Fix docstring.
11331
11332 2001-01-11 Dave Love <fx@gnu.org>
11333
11334 * international/mule-cmds.el (standard-display-european-internal):
11335 Set display table for 2208 as for 160.
11336
11337 * progmodes/ada-mode.el (ada-popup-key): Fix last change.
11338
11339 * progmodes/fortran.el (fortran-mode-map): Modify Customization
11340 entry for custom-menu-create change.
11341 (fortran-strip-sqeuence-nos): Make arg optional. Fix regexp and
11342 don't cons it in the search loop.
11343
11344 * imenu.el (imenu--truncate-items): Revert last change.
11345
11346 2001-01-11 Eli Zaretskii <eliz@is.elta.co.il>
11347
11348 * info.el (Info-setup-header-line): If the node header includes
11349 either Next: or Prev: links, don't show the File: and Node: parts
11350 in the header line.
11351
11352 2001-01-11 Gerd Moellmann <gerd@gnu.org>
11353
11354 * comint.el (comint-goto-process-mark): Don't print a message
11355 when running in batch mode.
11356
11357 * isearch.el (isearch-search): In the condition-case handler for
11358 `error', set isearch-invalid-regexp to the whole error message.
11359
11360 * subr.el (eval-after-load): Call load-symbol-file-load-history to
11361 ensure that eval-after-load works for files dumped with Emacs.
11362
11363 * help.el (load-symbol-file-load-history): New function extracted
11364 from function symbol-file.
11365 (symbol-file): Use it.
11366
11367 * toolbar/save.xpm, toolbar/undo.xpm: Use the same colors as exit.xpm.
11368
11369 2001-01-11 Eli Zaretskii <eliz@is.elta.co.il>
11370
11371 * progmodes/etags.el (find-tag-interactive): If last-tag is nil,
11372 behave as if there were no prefix argument.
11373 (find-tag-noselect): If last-tag is nil, behave as if the NEXT-P
11374 argument were nil.
11375
11376 2001-01-11 Richard M. Stallman <rms@gnu.org>
11377
11378 * isearch.el (isearch-lazy-highlight-update):
11379 Don't look for more potential matches once maximum is exceeded.
11380 Use overlays-in to check correctly for overlap with current match.
11381 Ignore empty matches.
11382
11383 2001-01-11 Miles Bader <miles@gnu.org>
11384
11385 * textmodes/ispell.el (ispell-adjusted-window-height): New function.
11386 (ispell-overlay-window, ispell-help, ispell-show-choices)
11387 (ispell-command-loop): Use it instead of `window-height'.
11388
11389 2001-01-10 Gerd Moellmann <gerd@gnu.org>
11390
11391 * files.el (confirm-kill-emacs): New user-option.
11392 (save-buffers-kill-emacs): Ask for final confirmation before
11393 killing Emacs.
11394
11395 * isearch.el (isearch-done): Set isearch-lazy-highlight-start
11396 to nil.
11397
11398 2001-01-10 Dave Love <fx@gnu.org>
11399
11400 * progmodes/etags.el (tags-apropos-additional-actions): Fix :type.
11401
11402 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix doc, :type.
11403
11404 * hi-lock.el (hi-lock-exclude-modes): Fix :type.
11405
11406 * calculator.el (calculator-number-digits): Fix :type.
11407
11408 * vc-cvs.el (vc-cvs-header): Fix :type.
11409 * vc-rcs.el (vc-rcs-header): Fix :type.
11410 * vc-sccs.el (vc-sccs-header): Fix :type.
11411
11412 * progmodes/ada-mode.el (ada-popup-key): Fix :type.
11413
11414 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
11415
11416 * eshell/esh-util.el (eshell-ange-ls-uids): Fix :type.
11417
11418 2001-01-10 Gerd Moellmann <gerd@gnu.org>
11419
11420 * simple.el (set-variable): Force a thorough redisplay for the
11421 case that the variable has an effect on the display, like
11422 `tab-width' has.
11423
11424 2001-01-10 Andre Spiegel <spiegel@gnu.org>
11425
11426 * vc.el: Add documentation for backend interface.
11427
11428 2001-01-10 Kenichi Handa <handa@etl.go.jp>
11429
11430 * font-lock.el (c-font-lock-extra-types): Add "Lisp_Object".
11431
11432 * international/mule-conf.el (latin-extra-code-table): Set to t
11433 for \223 and \224.
11434
11435 2001-01-09 Kenichi Handa <handa@etl.go.jp>
11436
11437 * international/mule-cmds.el (locale-language-names): Map "es" to
11438 "Spanish" and "nl" to "Dutch".
11439
11440 2001-01-09 Gerd Moellmann <gerd@gnu.org>
11441
11442 * bindings.el (global-map): Bind <home> to beginning-of-line,
11443 <end> to end-of-line, C-<home> to beginning-of-buffer, and
11444 C-<end> to end-of-buffer.
11445
11446 * language/european.el: Add Dutch and Spanish language info
11447 to be able to use the appropriate tutorials.
11448
11449 2001-01-09 Alex Schroeder <alex@gnu.org>
11450
11451 * ansi-color.el (ansi-color-process-output): Use markers instead
11452 of positions for start and end of region.
11453 (ansi-color-apply-on-region): Rewrote code to make it more robust.
11454 Previously, occasional mistakes happend when fontifying many
11455 chunks of output (eg. ls --color=yes /dev). This happened
11456 whenever an overlay was created up to the end of the region, which
11457 coincided with the process-mark. New text would then be added
11458 within that overlay instead of after it.
11459 (ansi-color-make-extent): Overlays are created with the property
11460 `modification-hooks' set to '(ansi-color-freeze-overlay).
11461 (ansi-color-freeze-overlay): New function. When inserting text at
11462 the end of the overlay, the overlay will resize.
11463
11464 2000-01-09 Alex Schroeder <alex@gnu.org>
11465
11466 * ansi-color.el (ansi-color-process-output): Doc change.
11467 (ansi-color-unfontify-region): Doc change. No longer installed
11468 automatically in font-lock-unfontify-region-function.
11469 (ansi-color-apply): Doc change.
11470 (ansi-color-apply-on-region): Use extents or overlays instead of
11471 text-properties.
11472 (ansi-color-make-extent): New function.
11473 (ansi-color-set-extent-face): New function.
11474
11475 2000-01-09 Alex Schroeder <alex@gnu.org>
11476
11477 * ansi-color.el (ansi-color-process): Removed, Emacs and XEmacs
11478 both use ansi-color-process-output, now.
11479 (ansi-color-process-output): Doesn't return string anymore. It is
11480 installed in comint-output-filter-functions for both Emacs and
11481 XEmacs, now.
11482 (ansi-color-unfontify-region): Simplified code removing variables
11483 pos and start-ansi.
11484 (ansi-color-apply): Put text-property ansi-color before putting
11485 text-property face because ansi-color-unfontify-region is called
11486 immediately after the call to put-text-property.
11487 (ansi-color-context-region): Doc change.
11488 (ansi-color-filter-region): Simplified code.
11489 (ansi-color-apply-on-region): Changed start to start-marker, using
11490 a marker explicitly. Put text-property ansi-color before putting
11491 text-property face because ansi-color-unfontify-region is called
11492 immediately after the call to put-text-property.
11493
11494 2000-01-09 Alex Schroeder <alex@gnu.org>
11495
11496 * ansi-color.el (ansi-color-faces-vector): Doc change.
11497 (ansi-color-for-comint-mode): Changed :type property to choice.
11498 (ansi-color-last-context): Removed.
11499 (ansi-color-process-output): Don't use ansi-color-last-context, as
11500 the main functions will store their context now.
11501 (ansi-color-context): Doc change.
11502 (ansi-color-filter-apply): Rewrote it based on ansi-color-apply.
11503 Uses ansi-color-context such that repeated calls will strip
11504 partial escape sequences, too.
11505 (ansi-color-apply): Simplified code. Colorize end of string if
11506 face is not null. Store context in new (FACE STRING) format, such
11507 that repeated calls will strip partial escape sequences, too.
11508 Append faces to face property using ansi-color-apply-sequence such
11509 that cumulative mode actually works.
11510 (ansi-color-context-region): New variable.
11511 (ansi-color-filter-region): Rewrote it based on
11512 ansi-color-apply-on-region. Uses ansi-color-context-region such
11513 that repeated calls will strip partial escape sequences, too.
11514 (ansi-color-apply-on-region): Simplified code. Colorize end of
11515 region if face is not null. Store context in new (FACE POS)
11516 format, such that repeated calls will strip partial escape
11517 sequences, too. Append faces to face property using
11518 ansi-color-apply-sequence such that cumulative mode actually works.
11519 (ansi-color-apply-sequence): New function.
11520 (ansi-color-get-face): When the default face is added to the list
11521 of faces, all previous settings are discarded and the list of
11522 faces is set to '(default).
11523
11524 2000-01-09 Alex Schroeder <alex@gnu.org>
11525
11526 * ansi-color.el (ansi-color-faces-vector): Use nil for the default
11527 face, such that ansi-color-apply and ansi-color-apply-on-region
11528 will do the right thing.
11529 (ansi-color-apply): Do the right thing, ie. if ansi-color-get-face
11530 returns nil, set the list of faces back to nil instead of
11531 appending the result of ansi-color-get-face to the front of the list.
11532
11533 2000-01-09 Alex Schroeder <alex@gnu.org>
11534
11535 * ansi-color.el (ansi-color-for-comint-mode): Doc change.
11536 (ansi-color-process): Doc change.
11537 (ansi-color-last-context): New buffer-local variable.
11538 (ansi-color-process-output): New function. It is automatically
11539 added to comint-output-filter-functions if this is XEmacs.
11540 (ansi-color-unfontify-region): New optional parameter for XEmacs
11541 compatibility. Check wether font-lock-syntactic-keywords is
11542 boundp before removing the syntax table text property, as XEmacs
11543 doesn't have it.
11544 (ansi-color-filter-region): Doc change.
11545 (ansi-color-apply-on-region): Doc change.
11546 (ansi-color-make-face): New function. Compatibility layer for
11547 XEmacs. Return temporary faces instead of cons cells for XEmacs.
11548 (ansi-color-make-color-map): Use ansi-color-make-face.
11549 (ansi-color-get-face): Avoid face text property '(nil) as results
11550 in an errow for XEmacs.
11551
11552 2000-01-09 Alex Schroeder <alex@gnu.org>
11553
11554 * ansi-color.el (ansi-color-unfontify-region): New function.
11555 Uses text-property ansi-color in order to preserve fontification by
11556 ansi-color. When the package is loaded, a lambda expression is
11557 put onto font-lock-mode-hook. This lambda expression will check
11558 font-lock-unfontify-region-function and replace
11559 font-lock-default-unfontify-region with ansi-color-unfontify-region.
11560 (ansi-color-apply): Add text-property ansi-color in addition to
11561 text-property face.
11562 (ansi-color-apply-on-region): Add text-property ansi-color in
11563 addition to text-property face.
11564 (save-buffer-state): Copy of the macro that is also used by
11565 lazy-lock and font-lock.
11566
11567 (ansi-color-for-comint-mode): New option.
11568 (ansi-color-for-comint-mode-on): Set ansi-color-for-comint-mode.
11569 (ansi-color-for-comint-mode-off): Ditto.
11570 (ansi-color-for-comint-mode-filter): Ditto.
11571 (ansi-color-process): New function. Uses ansi-color-for-comint-mode to
11572 decide what to do. This function is added to
11573 comint-preoutput-filter-functions when the package is loaded.
11574
11575 (ansi-color-for-shell-mode-set): Removed.
11576 (ansi-color-for-shell-mode): Removed.
11577
11578 2000-01-09 Alex Schroeder <alex@gnu.org>
11579
11580 * ansi-color.el (ansi-color-for-shell-mode-set): New function with
11581 the lambda expression from the ansi-color-for-shell-mode :set
11582 property. Additionally, modify shell-mode-hook to enable or
11583 disable font-lock-mode for future shell buffers.
11584 (ansi-color-for-shell-mode): The :set property calls
11585 ansi-color-for-shell-mode-set instead of a lambda expression.
11586
11587 2000-01-09 Alex Schroeder <alex@gnu.org>
11588
11589 * ansi-color.el (ansi-color-for-shell-mode): Doc change.
11590 (ansi-color-context): New variable.
11591 (ansi-color-apply): Save context between calls.
11592
11593 2001-01-09 Eli Zaretskii <eliz@is.elta.co.il>
11594
11595 * isearch.el (isearch, isearch-lazy-highlight-face):
11596 New definitions for face colors and attributes.
11597
11598 * wid-edit.el (widget-choose): Call display-popup-menus-p instead
11599 of display-mouse-p.
11600
11601 2001-01-09 Kenichi Handa <handa@etl.go.jp>
11602
11603 * international/mule.el (make-coding-system): If the coding system
11604 accepts extra latin codes, register such codes as safe for the
11605 coding system.
11606
11607 2001-01-08 Richard M. Stallman <rms@gnu.org>
11608
11609 * emacs-lisp/bytecomp.el (byte-compile-log-1): In non-batch case,
11610 don't mention the file name or the date here, because they are
11611 logged at the start of the file.
11612
11613 2001-01-08 Richard M. Stallman <rms@gnu.org>
11614
11615 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
11616 Change screen-width to frame-width.
11617
11618 2001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
11619
11620 * info.el (Info-search): Print the default as part of the prompt.
11621
11622 2001-01-08 Andre Spiegel <spiegel@gnu.org>
11623
11624 * vc.el (vc-default-latest-on-branch-p): New function, replaces
11625 constant implementations in backends.
11626
11627 * vc-cvs.el (vc-cvs-latest-on-branch-p): Removed.
11628 (vc-cvs-checkout): Renamed arg WRITABLE to EDITABLE.
11629
11630 * vc-rcs.el (vc-rcs-checkout, vc-rcs-cancel-version): Renamed arg
11631 WRITABLE to EDITABLE.
11632
11633 * vc-sccs.el (vc-sccs-latest-on-branch-p): Removed.
11634 (vc-sccs-checkout, vc-sccs-cancel-version): Renamed arg WRITABLE
11635 to EDITABLE.
11636
11637 2001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
11638
11639 * emacs-lisp/copyright.el (copyright-current-year): Now a defvar.
11640 (copyright, copyright-update): Compute the current year at run time.
11641
11642 2001-01-08 Gerd Moellmann <gerd@gnu.org>
11643
11644 * isearch.el (isearch-old-signal-hook): Removed.
11645 (isearch-mode): Add isearch-done to kbd-macro-termination-hook
11646 instead of setting signal-hook-function.
11647 (isearch-done): Remove isearch-done from kbd-macro-termination-hook.
11648
11649 2001-01-08 Kevin Gallagher <kevingal@onramp.net>
11650
11651 * emulation/edt.el: Update to version 4.0. Provide support for
11652 EDT scroll margins at top and bottom of the window. Provide an
11653 emulation of the EDT SUBS command (bound to GOLD-Enter, by
11654 default). Enhance edt-quit, bound to GOLD-q by default, to warn
11655 user when file-related buffer modifications exist.
11656 Provide support for running EDT Emulation in XEmacs.
11657 Provide customize access to some user updatable variables.
11658 Add Commentary section to file header.
11659 Fixed a few minor bugs and cleaned up some code.
11660
11661 * emulation/edt-mapper.el: Update to version 4.0. Provide support
11662 for detecting a keypress that generates an ASCII key sequence.
11663 (Previously, only a keypress that generates a vector was
11664 recognized.) Embed Window Manager name into name of the generated
11665 EDT Emulation initialization file since the initialization file is
11666 Window Manager specific. Add Commentary section to file header.
11667
11668 2001-01-07 Eli Zaretskii <eliz@is.elta.co.il>
11669
11670 * mail/sendmail.el (mail-mode): Doc fix.
11671
11672 * info.el (Info-goto-emacs-command-node): Doc fix.
11673 (Info-goto-emacs-key-command-node): Doc fix.
11674
11675 2001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
11676
11677 * ediff-vers.el (noninteractive): Don't load generic-sc on MS-DOS
11678 systems without long file-name support.
11679
11680 2001-01-06 Andrew Innes <andrewi@gnu.org>
11681
11682 * makefile.w32-in (custom-deps): Set EMACSLOADPATH explicitly.
11683
11684 2001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
11685
11686 * isearch.el (isearch-lazy-highlight-remove-overlays): Doc fix.
11687 (isearch-lazy-highlight-update): Doc fix.
11688
11689 * ffap.el (ffap-bindings): Doc fix.
11690
11691 * dired-x.el (dired-virtual-guess-dir): Doc fix.
11692
11693 2001-01-05 Dave Love <fx@gnu.org>
11694
11695 * emacs-lisp/cl-seq.el (remove, remq): Remove.
11696
11697 2001-01-05 Gerd Moellmann <gerd@gnu.org>
11698
11699 * mouse-drag.el (mouse-drag-safe-scroll):
11700 Bind scroll-preserve-screen-position to nil.
11701
11702 * isearch.el (isearch-old-signal-hook): New variable.
11703 (isearch-mode): Set signal-hook-function to isearch-done.
11704 (isearch-done): Restore old signal-hook-function.
11705
11706 * info.el (Info-fontify-node): Mark one more char as intangible.
11707
11708 2000-01-05 Kenichi Handa <handa@etl.go.jp>
11709
11710 * composite.el (compose-last-chars): New argument COMPONENTS.
11711 If it is non-nil, compose preceding characters by compose-region with
11712 COMPONENTS.
11713
11714 * international/quail.el (quail-input-string-to-events): New function.
11715 (quail-input-method): Convert input string to events here.
11716 (quail-start-translation): Return input string, not event list.
11717 (quail-start-conversion): Likewise.
11718
11719 2001-01-04 Gerd Moellmann <gerd@gnu.org>
11720
11721 * tooltip.el (tooltip-cancel-delayed-tip)
11722 (tooltip-start-delayed-tip): Renamed from tooltip-disable-timeout
11723 and tooltip-add-timeout.
11724 (tooltip-show): Set border color from faces's foreground.
11725 (tooltip-show-help-function): If called with the same help string
11726 as last time, do nothing.
11727 (tooltip-help-tips): Don't set tooltip-help-message to nil.
11728
11729 * startup.el (fancy-splash-screens): Don't bind show-help-function
11730 to nil.
11731
11732 * tooltip.el (tooltip-frame-parameters): Remove colors.
11733 (tooltip): New face
11734 (tooltip-set-param): New function.
11735 (tooltip-show): Set up color frame parameters from face `tooltip'.
11736 Display the tooltip text in face `tooltip'.
11737
11738 2001-01-04 Dave Love <fx@gnu.org>
11739
11740 * whitespace.el (whitespace-global-mode): Fix typo.
11741
11742 * hilit19.el, mail/rnewspost.el, mail/rnews.el: Moved to obsolete.
11743
11744 2001-01-04 Eli Zaretskii <eliz@is.elta.co.il>
11745
11746 * help.el (help-for-help): Fix a typo in a doc string.
11747 From kwzh@gnu.org (Karl Heuer).
11748
11749 2001-01-03 Dave Love <fx@gnu.org>
11750
11751 * dired-x.el: Doc fixes. Maintainer change.
11752 (dired-guess-shell-gnutar, dired-guess-shell-znew-switches): Fix :type.
11753 (dired-guess-shell-alist-default): Don't use xloadimage for PNG.
11754 (dired-guess-shell-alist-user): Customize.
11755 (dired-x-help-address): Set to bug-gnu-emacs.
11756 (dired-x-maintainer, dired-x-file, dired-x-version): Deleted.
11757 (dired-default-directory): Renamed from default-directory.
11758
11759 * hl-line.el (hl-line): Doc fix.
11760
11761 2001-01-03 Karl Fogel <kfogel@red-bean.com>
11762
11763 * mail/mail-hist.el (mail-hist-text-too-long-p): Doc fix.
11764
11765 2001-01-02 Richard M. Stallman <rms@gnu.org>
11766
11767 * isearch.el (isearch-lazy-highlight-cleanup): Arg now says
11768 to remove all the current alternative-match highlighting.
11769 If nil, remove only what's outside the current window.
11770 (isearch-lazy-highlight-remove-overlays): Take optional
11771 region within which NOT to remove them.
11772 (isearch-lazy-highlight-new-loop): Greatly simplified.
11773 (isearch-lazy-highlight-update): Find all the other occurrences
11774 visible in the window, in just one call.
11775 (isearch-lazy-highlight-start): Now holds start of region to scan.
11776 (isearch-lazy-highlight-end): Now holds end of region to scan.
11777 (isearch-lazy-highlight-wrapped): Variable deleted.
11778 (isearch-lazy-highlight-search): Function deleted.
11779
11780 2000-01-02 Andrew Innes <andrewi@gnu.org>
11781
11782 * w32-fns.el (convert-standard-filename): Do length check on name
11783 before aref.
11784
11785 2001-01-02 Dave Love <fx@gnu.org>
11786
11787 * progmodes/cperl-mode.el (cperl-invalid-face): Don't double-quote
11788 value.
11789 (cperl-init-faces): Allow cperl-invalid-face to be a normal face.
11790
11791 * ls-lisp.el (ls-lisp) <defgroup>: Add :version.
11792
11793 * net/browse-url.el (browse-url-filename-alist): Avoid backquote
11794 read syntax.
11795
11796 * calendar/todo-mode.el (todo): Add :link, :version.
11797 (todo-save-top-priorities): Remove autoload cookie.
11798 (todo-add-category, todo-add-item-non-interactively)
11799 (todo-insert-item, todo-mode, todo-cp, todo-show): Fix autoload cookie.
11800
11801 2001-01-02 Gerd Moellmann <gerd@gnu.org>
11802
11803 * comint.el (comint-input-history-ignore): New variable.
11804 (comint-read-input-ring): Ignore entries matching
11805 comint-input-history-ignore.
11806
11807 2001-01-02 Eric M. Ludlam <zappo@gnu.org>
11808
11809 * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): New Variable.
11810 (lm-copyright-mark): New function.
11811 (lm-crack-copyright): New function.
11812 (lm-verify): Check that the file has a copyright.
11813 Check that the file is copyright Free Software Foundation.
11814
11815 2000-12-30 Kenichi Handa <handa@etl.go.jp>
11816
11817 * international/mule-diag.el (print-fontset): Indent font name by
11818 24 columns, not 25.
11819
11820 2000-12-29 Gerd Moellmann <gerd@gnu.org>
11821
11822 * textmodes/flyspell.el (mail-mode-flyspell-verify): Spell-check
11823 in Subject line.
11824
11825 * mail/mailabbrev.el (mail-abbrevs-enable, mail-abbrevs-disable):
11826 Use mail-mode-hook instead of mail-setup-hook.
11827 Otherwise continuing an interrupted message with C-u C-x m for
11828 instance, winds up in Mail mode without abbrevs.
11829
11830 2000-12-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11831
11832 * ps-print.el: Handle form feed better when ps-zebra-stripe-follow is
11833 non-nil. Adding almost all customization variables on ps-setup.
11834 Doc fix.
11835 (ps-print-version): New version number (6.3.3).
11836 (ps-end-with-control-d): Initialization fix.
11837 (ps-lines-printed): New var.
11838 (ps-skip-newline): New fun.
11839 (ps-setup, ps-prologue-file, ps-begin-job, ps-begin-page)
11840 (ps-next-line, ps-continue-line, ps-plot-region)
11841 (ps-generate-postscript-with-faces, ps-end-job): Code fix.
11842
11843 2000-12-29 Kenichi Handa <handa@etl.go.jp>
11844
11845 * international/fontset.el (x-complement-fontset-spec):
11846 Resolve ASCII font name so that the same family name is used for fonts
11847 registered in x-font-name-charset-alist.
11848 (create-fontset-from-fontset-spec): Adjusted for the above change.
11849 The name of fontset alias should be a unresolved ASCII font name.
11850
11851 2000-12-28 Gerd Moellmann <gerd@gnu.org>
11852
11853 * simple.el (delete-key-deletes-forward-mode): Bind backspace
11854 and delete in isearch-mode-map.
11855
11856 2000-12-28 Richard M. Stallman <rms@gnu.org>
11857
11858 * dired-x.el (dired-guess-shell-alist-default):
11859 Use xpdf instead of acroread.
11860
11861 2000-12-28 Kenichi Handa <handa@etl.go.jp>
11862
11863 * textmodes/artist.el (artist-butlast): Deleted.
11864 (artist-ellipse-mirror-quadrant): Use butlast instead of
11865 artist-butlast.
11866
11867 * subr.el (butlast, nbutlast): Moved from cl.el to here.
11868
11869 * emacs-lisp/cl.el (butlast, nbutlast): Moved to subr.el.
11870
11871 2000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
11872
11873 From Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>:
11874
11875 * ls-lisp.el: Better support for the Mac and MS-Windows.
11876 (ls-lisp): New defgroup.
11877 (ls-lisp-emulation, ls-lisp-ignore-case, ls-lisp-dirs-first)
11878 (ls-lisp-verbosity, ls-lisp-use-insert-directory-program)
11879 (ls-lisp-support-shell-wildcards): New defcustoms.
11880 (ls-lisp-parse-symlink): New function.
11881 (insert-directory): Code to convert switches to a list and set up
11882 the wildcard argument copied from ls-lisp-insert-directory.
11883 (ls-lisp-insert-directory): New argument TIME-INDEX. Add support
11884 for -C and -R switches.
11885 (ls-lisp-column-format): New function.
11886 (ls-lisp-delete-matching, ls-lisp-handle-switches)
11887 (ls-lisp-format-time): Add doc strings.
11888 (ls-lisp-handle-switches): Handle -U, -S, -X, and -F switches.
11889 Support ls-lisp-dirs-first.
11890 (ls-lisp-classify, ls-lisp-extension): New functions.
11891 (ls-lisp-format): Optionally support emulation of symlinks.
11892 Support -i, -s, and -G switches.
11893
11894 2000-12-27 Gerd Moellmann <gerd@gnu.org>
11895
11896 * textmodes/texinfo.el (texinfo-mode): Set fill-column to 70.
11897
11898 * version.el (emacs-version): Print X scroll bar information.
11899
11900 * scroll-bar.el (toplevel): Check for x-toolkit-scroll-bars
11901 instead of x-toolkit-scroll-bars-p.
11902
11903 * loadup.el (toplevel): Check for x-toolkit-scroll-bars instead
11904 of x-toolkit-scroll-bars-p.
11905
11906 2000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
11907
11908 * ffap.el (ffap-bindings): Make interactive and add an autoload cookie.
11909 (ffap-bindings): Doc fix, to reflect the above change.
11910
11911 2000-12-27 Kenichi Handa <handa@etl.go.jp>
11912
11913 * term.el (term-char-mode): Define all non-ascii self-inserting
11914 characters to 'term-send-raw in term-raw-map.
11915
11916 2000-12-25 Michael Kifer <kifer@cs.sunysb.edu>
11917
11918 * viper-init (viper-restore-cursor-type): Added condition-case guard.
11919
11920 * ediff-init.el (ediff-quit-hook,ediff-suspend-hook):
11921 Changed initialization; use add-hook.
11922 (ediff-file-remote-p): Use file-local-copy.
11923
11924 * ediff-ptch.el (ediff-prompt-for-patch-buffer): Improved defaults.
11925
11926 * ediff.el (ediff-patch-buffer): Bug fix.
11927 (ediff-revision): Allow selection of the file at the prompt.
11928
11929 2000-12-23 Stefan Monnier <monnier@cs.yale.edu>
11930
11931 * subr.el (combine-run-hooks): Remove.
11932
11933 * emacs-lisp/edebug.el (define-minor-mode): Improve the spec
11934 and remove the rogue second spec.
11935
11936 2000-12-23 Gerd Moellmann <gerd@gnu.org>
11937
11938 * progmodes/compile.el (compilation-forget-errors): Fix indentation.
11939
11940 2000-12-22 Stefan Monnier <monnier@cs.yale.edu>
11941
11942 * smerge-mode.el (smerge-basic-map): Use `=' rather than `d'.
11943 Use minibuffer menu prompt for the `=' prefix.
11944 (smerge-command-prefix): Change default to C-^.
11945 (smerge-mode): Don't assume font-lock doesn't move point.
11946
11947 * skeleton.el (skeleton-internal-1): Make sure the first line of
11948 the region is also re-indented.
11949 (skeleton-end-newline): New var.
11950 (skeleton-end-hook): Use it.
11951
11952 2000-12-22 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
11953
11954 * comint.el (comint-password-prompt-regexp): Support CVS.
11955
11956 2000-12-22 Gerd Moellmann <gerd@gnu.org>
11957
11958 * simple.el (delete-key-deletes-forward-mode): Simplify.
11959 Also backspace key combinations, depending on
11960 delete-key-deletes-forward.
11961
11962 * bindings.el ([C-backspace]): Bind C-backspace to kill-word.
11963
11964 * simple.el (delete-key-deletes-forward): Doc fix.
11965
11966 2000-08-22 Emmanuel Briot <briot@gnat.com>
11967
11968 * xml.el (top level comment): Updated to reflect the fact that
11969 white spaces are relevant in the XML file.
11970 (xml-parse-file): Do not kill an existing Emacs buffer if the file
11971 to parse was already edited. This allows for on-the-fly analysis
11972 of XML files.
11973 (xml-parse-tag): Check that the casing is the same in the start
11974 tag and end tag, since XML is case-sensitive. Allows for spaces
11975 in the end tag, after the name of the tag.
11976 (xml-parse-attlist): Allow for the character '-' in the name of
11977 attributes, as in the standard http-equiv attribute Do not save
11978 the properties in the XML tree, since they are not relevant.
11979
11980 2000-12-21 Stefan Monnier <monnier@cs.yale.edu>
11981
11982 * generic.el (generic-read-type): Undo last change, inline into
11983 `generic-mode' and then remove.
11984 (generic-mode): Inline generic-read-type.
11985 (define-generic-mode): Push the symbol name rather than the symbol
11986 onto generic-mode-list.
11987
11988 2000-12-21 Gerd Moellmann <gerd@gnu.org>
11989
11990 * generic.el (generic-read-type): Build an alist for
11991 completing-read as in 20.7.
11992
11993 * play/landmark.el (lm): Use interactive spec `P'.
11994 (toplevel): Don't set debug-on-error.
11995
11996 * server.el (server-switch-buffer): Choose a window on a visible frame.
11997
11998 2000-12-21 Dave Pearson <davep@davep.org>
11999
12000 * quickurl.el: Commentry change, I've moved my web site.
12001
12002 2000-12-21 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12003
12004 * ebnf2ps.el: Fix a problem with skip-chars-forward: it doesn't accept
12005 ranges like \177-\237, but accepts the character sequence from \177 to
12006 \237. Doc fix.
12007 (ebnf-version): New version (3.4).
12008 (ebnf-setup): Code fix.
12009 (ebnf-range-regexp): New fun.
12010 (ebnf-8-bit-chars): Const fix.
12011
12012 * ebnf-bnf.el: Fix the same problem as described on ebnf2ps.el log
12013 entry. Doc fix.
12014 (ebnf-bnf-lex): Code fix.
12015 (ebnf-bnf-comment-chars): Const fix.
12016
12017 * ebnf-iso.el: Fix the same problem as described on ebnf2ps.el log
12018 entry. Doc fix.
12019 (ebnf-iso-comment-chars): Const fix.
12020
12021 * ebnf-otz.el: Doc fix.
12022
12023 * ebnf-yac.el: Fix the same problem as described on ebnf2ps.el log
12024 entry. Doc fix.
12025 (ebnf-yac-skip-code): Code fix.
12026 (ebnf-yac-comment-chars): Const fix.
12027
12028 2000-12-21 Eli Zaretskii <eliz@is.elta.co.il>
12029
12030 * files.el (insert-directory-safely): New function.
12031 (recover-file): Use it instead of insert-directory.
12032 From Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12033
12034 2000-12-21 Kenichi Handa <handa@etl.go.jp>
12035
12036 * international/mule-cmds.el (select-safe-coding-system):
12037 Check coding-category-list more rigidly. Improve help message.
12038
12039 * dired.el (dired-move-to-filename-regexp): Fix previous change.
12040
12041 2000-12-21 Miles Bader <miles@gnu.org>
12042
12043 * mail/sendmail.el (mail-mode): Set `comment-start' to the yank prefix.
12044
12045 2000-12-21 Kenichi Handa <handa@etl.go.jp>
12046
12047 * international/mule-diag.el (describe-char-after): Make *Help*
12048 buffer inherit multibyteness of the current buffer.
12049
12050 * international/mule.el (make-char): Docstring adjusted for the
12051 change of make-char-internal.
12052
12053 2000-12-20 Stefan Monnier <monnier@cs.yale.edu>
12054
12055 * international/iso-cvt.el: Docstrings fix.
12056
12057 2000-12-20 Dave Love <fx@gnu.org>
12058
12059 * subr.el (eval-after-load): Doc fix.
12060
12061 2000-12-20 Kenichi Handa <handa@etl.go.jp>
12062
12063 * jka-compr.el (jka-compr-partial-uncompress): Don't use `concat'
12064 for numbers.
12065
12066 2000-12-20 Miles Bader <miles@gnu.org>
12067
12068 * international/quail.el (quail-help): Resize the help window
12069 again after it has all its contents. Remove unneeded progn.
12070
12071 2000-12-19 Gerd Moellmann <gerd@gnu.org>
12072
12073 * pcmpl-linux.el: Fix copy/paste error.
12074
12075 2000-12-19 Andrew Innes <andrewi@gnu.org>
12076
12077 * simple.el (delete-key-deletes-forward-mode): Fix typo in docstring.
12078
12079 2000-12-19 Carsten Dominik <dominik@strw.leidenuniv.nl>
12080
12081 * progmodes/idlw-rinfo.el: Fixed copyright notice.
12082
12083 * progmodes/idlw-toolbar.el: Fixed copyright notice.
12084
12085 * progmodes/idlw-shell.el: Fixed copyright notice.
12086
12087 * progmodes/idlwave.el: Fixed copyright notice.
12088
12089 * textmodes/reftex-dcr.el (reftex-view-crossref): Added SPACE and
12090 TAB as key separators.
12091
12092 2000-12-19 Alex Schroeder <alex@gnu.org>
12093
12094 * sql.el (sql-sybase-options): New option.
12095 (sql-sybase): Use it. Add sql-database to the list of parameters
12096 provided for login. The options -w 2048 -n are not used any more.
12097 (sql-postgres-options): Changed default from "--pset" to "-P".
12098 (sql-mysql-options): Doc change.
12099 (sql-stop): Doc change.
12100
12101 2000-12-19 Kenichi Handa <handa@etl.go.jp>
12102
12103 * international/quail.el (quail-input-method): Always hide
12104 the guidance buffer on exiting.
12105
12106 2000-12-18 Gerd Moellmann <gerd@gnu.org>
12107
12108 * tooltip.el (tooltip-mode): Signal an error if x-show-tip
12109 isn't fboundp.
12110
12111 * server.el (server-buffer-done): Bury the buffer before
12112 killing it.
12113
12114 * faces.el (face-spec-set): Interpret a nil in specs for
12115 foreground and background colors as `unspecified', for
12116 compatibility with 20.x.
12117
12118 2000-12-18 Dave Love <fx@gnu.org>
12119
12120 * simple.el (mail-user-agent): Doc fix.
12121 (input-mode-8-bit): Removed.
12122
12123 * international/mule.el (set-keyboard-coding-system): Doc fix.
12124 (keyboard-coding-system): New option.
12125
12126 * mail/sendmail.el (send-mail-function): Customize.
12127
12128 2000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
12129
12130 * international/codepage.el (cp866-decode-table): New table.
12131
12132 2000-12-18 Gerd Moellmann <gerd@gnu.org>
12133
12134 * version.el (emacs-version): Remove `%a' from the time format
12135 because the weekday doesn't fit well into each locale.
12136
12137 2000-12-18 Miles Bader <miles@gnu.org>
12138
12139 * image-file.el (image-file-name-extensions): Add "pgm" and "ppm".
12140
12141 * textmodes/artist.el (artist-replace-chars, artist-replace-char):
12142 Check that emacs-major-version is `=' to 20, not `>='.
12143 (artist-replace-chars): Use `make-string' instead of a loop.
12144
12145 2000-12-17 Stefan Monnier <monnier@cs.yale.edu>
12146
12147 * pcvs.el (cvs-diff-backup-extractor): Return full-path for file.
12148 (cvs-execute-single-file): Don't change directory.
12149 Patch from Per Cederqvist.
12150
12151 2000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
12152
12153 * textmodes/ispell.el (check-ispell-version):
12154 If `ispell-program-name' is "aspell", pass it the -v switch instead
12155 of -vv.
12156
12157 2000-12-16 Kenichi Handa <handa@etl.go.jp>
12158
12159 * international/mule-diag.el (mule-diag): Insert information about
12160 configure options, multibyte awareness, language env.
12161
12162 * international/ja-dic-cnv.el (skkdic-get-candidate-list): Fix the
12163 regexp to search for candidates.
12164
12165 2000-12-15 Eli Zaretskii <eliz@is.elta.co.il>
12166
12167 * info.el (Info-forward-node): If the node has an
12168 Info-header-line, widen the buffer before searching for "next:"
12169 and "up:" pointers, and set the search limit to stay in the
12170 current node.
12171
12172 2000-12-16 Miles Bader <miles@gnu.org>
12173
12174 * simple.el (delete-trailing-whitespace): Remove extraneous let.
12175
12176 2000-12-15 Miles Bader <miles@gnu.org>
12177
12178 * comint.el (comint-send-string, comint-send-region): Also accept
12179 a buffer, buffer-name, or nil for PROCESS, for compatibility with
12180 process-send-string/region.
12181
12182 2000-12-15 Gerd Moellmann <gerd@gnu.org>
12183
12184 * isearch.el (isearch-lazy-highlight-max): New user-option.
12185 (isearch-lazy-highlight-update): Don't highlight more than
12186 isearch-lazy-highlight-max matches.
12187
12188 * mail/mh-utils.el (mh-find-path): Set read-mail-command.
12189
12190 2000-12-15 Richard M. Stallman <rms@gnu.org>
12191
12192 * sort.el (sort-columns): Fix error message.
12193
12194 * dabbrev.el (dabbrev--last-case-pattern): Value is now
12195 `upcase' or `downcase' or nil.
12196 (dabbrev-expand): Don't do anything with dabbrev--last-case-pattern.
12197 Pass new record-case-pattern arg to dabbrev--substitute-expansion.
12198 (dabbrev--substitute-expansion): New arg record-case-pattern.
12199 If it is non-nil, set dabbrev--last-case-pattern.
12200 If ABBREV is " ", use dabbrev--last-case-pattern to change EXPANSION.
12201
12202 * dabbrev.el (dabbrev--find-expansion): Remove extra nreverse.
12203
12204 2000-12-15 Miles Bader <miles@gnu.org>
12205
12206 * paths.el (Info-default-directory-list): Don't delete
12207 configure-info-directory from the list of standard info
12208 directories when appending it to the end -- their order is important.
12209
12210 * faces.el (read-face-attribute): If there's no entry for the
12211 user's input in VALID, just use it as-is (this will often result
12212 in an error, but it may be OK for e.g. colors using hexadecimal
12213 notation, and at least will yield a better error message).
12214
12215 * window.el (mode-line-window-height-fudge): Function removed.
12216 (height-affecting-face-attributes, mode-line-window-height-fudge):
12217 Variables removed.
12218 * textmodes/ispell.el (ispell-overlay-window): Ensure that the new
12219 window is really the right size. Use vertical-motion
12220 rather than forward-line.
12221 (ispell-help): Don't use ispell-mode-line-window-height-fudge.
12222 (ispell-command-loop, ispell-show-choices): Use the variable
12223 ispell-choices-win-default-height, rather than the function.
12224 (ispell-choices-win-default-height): Function removed.
12225 (ispell-mode-line-window-height-fudge): Function removed.
12226
12227 2000-12-14 Stefan Monnier <monnier@cs.yale.edu>
12228
12229 * add-log.el (add-change-log-entry): Only expand-file-name if non-nil.
12230
12231 2000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
12232
12233 * paths.el (Info-default-directory-list):
12234 If configure-info-directory is not one of the standard directories,
12235 put it first in the list; otherwise put it last. Doc string
12236 changed accordingly.
12237
12238 * info.el (Info-directory-list): Change doc string to reflect the
12239 change in Info-default-directory-list.
12240
12241 * simple.el (delete-key-deletes-forward-mode): Treat ms-dos and
12242 windows-nt as windowed environments, even under -nw.
12243
12244 * startup.el (command-line): Don't call x-backspace-delete-keys-p
12245 if not fboundp. Switch delete-forward mode for the <delete> key
12246 on all PC platforms, even under -nw.
12247
12248 * term/internal.el ([M-delete]): Remap to M-d.
12249
12250 2000-12-14 Gerd Moellmann <gerd@gnu.org>
12251
12252 * emacs-lisp/lisp-mnt.el: Change maintainer to FSF.
12253
12254 2000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
12255
12256 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
12257
12258 2000-12-14 Gerd Moellmann <gerd@gnu.org>
12259
12260 * startup.el (command-line): Call delete-key-deletes-forward-mode,
12261 if appropriate.
12262
12263 * simple.el (delete-key-deletes-forward): New user-option.
12264 (delete-key-deletes-forward-mode): New function.
12265
12266 * bindings.el: Bind `delete' to backward-delete-char.
12267
12268 * emacs-lisp/easymenu.el (easy-menu-current-active-maps):
12269 Test if symbol is bound before getting its value.
12270
12271 * tooltip.el (tooltip-show): If an error is signaled in
12272 x-show-tip, display that error, and display the help in the
12273 echo area.
12274
12275 2000-12-14 Kenichi Handa <handa@etl.go.jp>
12276
12277 * international/ja-dic-cnv.el (skkdic-set-okuri-nasi):
12278 Show "... entries" messages for every 10000 entries, not 10.
12279
12280 2000-12-13 Karl Fogel <kfogel@red-bean.com>
12281
12282 * bookmark.el: Provide a generic exit hook, as suggested by
12283 Ovidiu Predescu <ovidiu@cup.hp.com>:
12284 (bookmark-exit-hook): New var.
12285 (bookmark-exit-hook-internal): New func, replaces
12286 old raw lambda form in `kill-emacs-hook', and runs new
12287 `bookmark-exit-hooks'. No longer tests for the bookmark feature,
12288 as logically that feature must have been provided if this function
12289 is running.
12290 Removed ;;;###autoload before the `add-hook' call.
12291
12292 2000-12-13 Stefan Monnier <monnier@cs.yale.edu>
12293
12294 * emacs-lisp/easymenu.el (easy-menu-define): Setup indentation.
12295 (easy-menu-current-active-maps): New function.
12296 (easy-menu-get-map): Use it.
12297 Make a proper menu entry when creating a new keymap.
12298
12299 2000-12-13 Kenichi Handa <handa@etl.go.jp>
12300
12301 * international/characters.el: Fix cases and syntaxes for
12302 mule-unicode-0100-24ff.
12303
12304 * dired.el (dired-move-to-filename-regexp): Fixed for the case
12305 that a Japanese character is not appended after day and year.
12306
12307 * info.el (Info-suffix-list): Change format for a command that
12308 requires arguments.
12309 (info-insert-file-contents): Adjusted for the above change.
12310
12311 2000-12-12 Andreas Schwab <schwab@suse.de>
12312
12313 * tar-mode.el (tar-extract): Base the name of the subfile buffer
12314 on the name of the tar buffer. Verify that the existing buffer is
12315 visiting the same subfile.
12316
12317 2000-12-12 Dave Love <fx@gnu.org>
12318
12319 * subdirs.el: Add obsolete.
12320
12321 2000-12-12 Gerd Moellmann <gerd@gnu.org>
12322
12323 * mail/rmailsum.el (rmail-summary-expunge)
12324 (rmail-summary-expunge-and-save): Use rmail-expunge-confirmed
12325 instead of rmail-confirm-expunge.
12326
12327 * replace.el (perform-replace): Don't use an empty match adjacent
12328 to a non-empty match when computing the next match before the
12329 replacement is performed.
12330
12331 2000-12-12 Milan Zamazal <pdm@freesoft.cz>
12332
12333 * progmodes/glasses.el: Use `define-minor-mode' for the minor mode
12334 definition (patch by Stefan Monnier).
12335 (glasses-mode): Use jit-lock instead of `after-change-functions'
12336 (patch by Stefan Monnier).
12337
12338 2000-12-12 Miles Bader <miles@gnu.org>
12339
12340 * info.el (Info-last-preorder): Don't barf on nodes without a prev.
12341 (Info-scroll-down): Respect `Info-scroll-prefer-subnodes'.
12342
12343 2000-12-12 Andrew Choi <akochoi@i-cable.com>
12344
12345 * term/mac-win.el: Remove load for ls-lisp.
12346
12347 * loadup.el: Load ls-lisp for system-type `macos'.
12348
12349 2000-12-12 Miles Bader <miles@gnu.org>
12350
12351 * simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter.
12352 Respect field end too.
12353 (just-one-space): Respect fields as `delete-horizontal-space'.
12354 (newline-and-indent, reindent-then-newline-and-indent):
12355 Use `delete-horizontal-space'.
12356
12357 2000-12-11 Stefan Monnier <monnier@cs.yale.edu>
12358
12359 * newcomment.el (comment-indent-new-line): Use delete-horizontal-space
12360 (so as to obey the field property in the minibuffer).
12361
12362 * obsolete/c-mode.el: Moved from lisp/progmodes.
12363 * obsolete/auto-show.el: Moved from lisp.
12364 * obsolete/ooutline.el: Moved from lisp/textmodes.
12365
12366 2000-12-11 Carsten Dominik <dominik@strw.leidenuniv.nl>
12367
12368 * progmodes/idlwave.el: Updated to IDLWAVE version 4.7. Too many
12369 changes to list them here.
12370
12371 * progmodes/idlw-shell.el: Updated to IDLWAVE version 4.7.
12372 Too many changes to list them here.
12373
12374 * progmodes/idlw-rinfo.el: Updated to IDLWAVE version 4.7.
12375 Too many changes to list them here.
12376
12377 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version 4.7.
12378
12379 2000-12-11 Gerd Moellmann <gerd@gnu.org>
12380
12381 * simple.el (kill-new): Don't try to setcar kill-ring if it is nil.
12382
12383 * cus-edit.el (custom-save-variables, custom-save-faces):
12384 Comment fix.
12385
12386 * hscroll.el: Moved to `obsolete' subdir.
12387
12388 2000-12-11 Miles Bader <miles@gnu.org>
12389
12390 * window.el (window-text-height): Function removed (now in C).
12391
12392 2000-12-10 Stefan Monnier <monnier@cs.yale.edu>
12393
12394 * log-edit.el (log-edit-parent-buffer): New var.
12395 (log-edit): Set it. Add BUFFER argument.
12396 (log-edit-done): Use char-before.
12397 Don't bother checking validity of vc-comment-ring.
12398 Only bury the buffer if log-edit popped it up.
12399
12400 * pcvs.el: Update references to CVS-Edit (now Log-Edit).
12401 (cvs-mode-diff-help): Remove.
12402 (cvs-mode-commit): Use the new `log-edit' BUFFER argument.
12403 (cvs-mode-marked): Set up the default for CMD manually.
12404
12405 * pcvs-defs.el (cvs-mode-diff-map): Use minibuffer menu prompt.
12406 Remove binding for ? now made unnecessary.
12407
12408 2000-12-10 Carsten Dominik <dominik@strw.leidenuniv.nl>
12409
12410 * textmodes/reftex.el (reftex-scanning-info-available-p): New function.
12411 (reftex-TeX-master-file): Check for `tex-main-file' early enough.
12412
12413 * textmodes/reftex-global.el (reftex-create-tags-file): Fixed bug
12414 when master file is not open.
12415
12416 2000-12-09 Stefan Monnier <monnier@cs.yale.edu>
12417
12418 * progmodes/ada-stmt.el: Update `maintainer'.
12419
12420 2000-12-09 Stephen Gildea <gildea@stop.mail-abuse.org>
12421
12422 * time-stamp.el (time-stamp-old-format-warn): Reorder custom
12423 choices to match documentation string.
12424
12425 2000-12-09 Miles Bader <miles@gnu.org>
12426
12427 * minibuf-eldef.el: New file.
12428
12429 * window.el (fit-window-to-buffer): Don't pass last argument to
12430 pos-visible-in-window-p, now that its meaning is inverted.
12431
12432 2000-12-08 Eli Zaretskii <eliz@is.elta.co.il>
12433
12434 * image.el (create-image): Doc fix; spotted by Per Cederqvist
12435 <ceder@lysator.liu.se>.
12436
12437 2000-12-08 Stefan Monnier <monnier@cs.yale.edu>
12438
12439 * autoinsert.el (auto-insert-alist): Add missing final \n.
12440
12441 * pcvs-defs.el (cvs-menu): Move. Make submenu for diff commands.
12442 (cvs-menu-map): Remove.
12443 * pcvs.el (cvs-menu): Use `cvs-menu' rather than `cvs-menu-map'.
12444 (cvs-mode-quit): Turn it back into a plain function.
12445
12446 * textmodes/texnfo-upd.el (texinfo-chapter-level-regexp)
12447 (texinfo-filter): Remove (move to texinfo.el).
12448
12449 * textmodes/texinfo.el: Move the (require 'cl) to the front of the
12450 file where it's more visible.
12451 (texinfo-filter, texinfo-chapter-level-regexp): New variables
12452 moved from texnfo-upd.el (for AUCTeX's compatibility, originally).
12453 (texinfo-mode): Use texinfo-chapter-level-regexp for page-delimiter.
12454 (texinfo-inside-macro-p): Only catch `scan-error's.
12455 (texinfo-inside-env-p): Make better use of the match info.
12456 (texinfo-insert-quote): Collapse calls to `texinfo-inside-macro-p'.
12457 (texinfo-insert-@end): Slight re-organization.
12458 Also remove useless `looking-at' call.
12459
12460 2000-12-08 Andrew Innes <andrewi@gnu.org>
12461
12462 * w32-fns.el: Add clipboard support from term/w32-win.el, so it is
12463 accessible in -nw mode.
12464
12465 * term/w32-win.el: Remove stuff about selection timeout, which is
12466 irrelevant on Windows. Move clipboard support to w32-fns.el, so
12467 it is accessible in -nw mode.
12468
12469 2000-12-08 Dave Love <fx@gnu.org>
12470
12471 * emacs-lisp/lisp-mode.el (lisp-mode):
12472 Set font-lock-keywords-case-fold-search.
12473
12474 2000-12-08 Gerd Moellmann <gerd@gnu.org>
12475
12476 * textmodes/ispell.el (ispell): Doc fix.
12477
12478 2000-12-08 Kenichi Handa <handa@etl.go.jp>
12479
12480 * international/quail.el (quail-insert-decode-map): Check the
12481 frame width of a window displaying the current buffer, not that of
12482 the selected frame.
12483 (quail-help): Make sure that the help buffer has window before
12484 inserting text in it.
12485
12486 2000-12-07 Sam Steingold <sds@gnu.org>
12487
12488 * loadup.el: Load emacs-lisp/backquote instead of autoloading.
12489 Backquote is used in isearch.el, so autoloading saves nothing.
12490
12491 2000-12-07 Eli Zaretskii <eliz@is.elta.co.il>
12492
12493 * startup.el (normal-top-level-add-subdirs-to-load-path):
12494 Ignore the CVS and RCS subdirectories case-insensitively.
12495
12496 * dired.el (dired-insert-directory): If file-system-info is
12497 fboundp, call it instead of invoking dired-free-space-program.
12498
12499 2000-12-07 Gerd Moellmann <gerd@gnu.org>
12500
12501 * server.el (server-visit-files): Push files on file-name-history.
12502
12503 * progmodes/cc-langs.el: Update copyright.
12504
12505 * progmodes/idlw-shell.el, progmodes/idlwave.el: Update copyright.
12506
12507 * bindings.el (mode-line-mode-menu): Add glasses-mode.
12508
12509 * bindings.el (mode-line-mode-menu): Reverse the order
12510 of define-keys so that the menu appears in alphabetical order.
12511
12512 2000-12-07 Milan Zamazal <pdm@freesoft.cz>
12513
12514 * progmodes/glasses.el (glasses-mode): Update mode line at the end
12515 of the function.
12516
12517 2000-12-07 Dave Love <fx@gnu.org>
12518
12519 * jka-compr.el (jka-compr-compression-info-list): Fix :type.
12520
12521 * facemenu.el (facemenu-unlisted-faces): Fix value.
12522
12523 2000-12-07 Stefan Monnier <monnier@cs.yale.edu>
12524
12525 * font-lock.el (font-lock-default-fontify-region):
12526 Include the terminating \n (off-by-one error).
12527 (font-lock-set-defaults): Use dolist.
12528
12529 * derived.el (define-derived-mode): Don't use combine-run-hooks.
12530
12531 2000-12-07 Kenichi Handa <handa@etl.go.jp>
12532
12533 * international/mule-cmds.el (describe-language-environment):
12534 Fix for the case that an input method title is not string but a list.
12535
12536 * ps-bdf.el (bdf-read-font-info): Modify the kludgy code for fonts
12537 of wrong SIZE record.
12538
12539 2000-12-06 Dave Love <fx@gnu.org>
12540
12541 * newcomment.el (comment-region, comment-dwim): Doc fix.
12542
12543 * textmodes/texinfo.el: Require tex-mode when compiling.
12544 (texinfo-update-node): Doc fix.
12545 (texinfo-imenu-generic-expression): Add @anchor.
12546 (texinfo-font-lock-keywords): Add @uref.
12547 (texinfo-inside-macro-p): Don't use ignore-errors.
12548 (texinfo-insert-quote): Match more contexts.
12549
12550 * international/mule.el (decode-char, encode-char): Doc fix.
12551 (auto-coding-alist): Customize.
12552
12553 * files.el (load-file): Fix change of 2000-03-12.
12554
12555 * wid-edit.el (widget-text-keymap): Doc fix.
12556
12557 2000-12-06 Andrew Innes <andrewi@gnu.org>
12558
12559 * makefile.w32-in (lisp): Set to an absolute directory, namely
12560 $(CURDIR).
12561
12562 2000-12-06 Eli Zaretskii <eliz@is.elta.co.il>
12563
12564 * emacs-lisp/autoload.el (update-file-autoloads): Use raw-text to
12565 read generated-autoload-file, and set buffer-file-coding-system to
12566 raw-text-unix after reading the file.
12567
12568 * international/mule-conf.el (file-coding-system-alist):
12569 Use raw-text for reading loaddefs.el and raw-text-unix for writing it.
12570
12571 2000-12-06 Gerd Moellmann <gerd@gnu.org>
12572
12573 * replace.el (occur): Make line-number-width 1 smaller for the
12574 colon following the line number.
12575
12576 * startup.el (fancy-splash-text, command-line-1):
12577 Use `File' for the menu name instead of `Files'.
12578
12579 * tmm.el: Update copyright.
12580
12581 * cus-start.el: Add entry for even-window-heights.
12582
12583 2000-12-06 Miles Bader <miles@gnu.org>
12584
12585 * faces.el (frame-set-background-mode): Avoid stomping on
12586 locally modified faces.
12587
12588 2000-12-06 Kenichi Handa <handa@etl.go.jp>
12589
12590 * international/fontset.el: Correct the font registries for
12591 japanese-jisx0213-1 and japanese-jisx0213-2.
12592
12593 2000-12-05 Gerd Moellmann <gerd@gnu.org>
12594
12595 * textmodes/reftex-toc.el (reftex-toc-menu): Fix typo.
12596
12597 * iswitchb.el: Update customization commentary.
12598
12599 2000-12-05 Rob Riepel <riepel@Stanford.EDU>
12600
12601 * emulation/tpu-edt.el (tpu-help): Fixed previous screen logic.
12602 (tpu-search-highlight): Fixed comparison of overlay end positions.
12603 (tpu-trim-line-ends): Implemented trimming logic locally.
12604
12605 * emulation/tpu-extras.el (tpu-write-file-hook)
12606 (tpu-set-cursor-bound): Replaced picture-clean with tpu-trim-line-ends.
12607
12608 2000-12-05 Kenichi Handa <handa@etl.go.jp>
12609
12610 * language/chinese.el (chinese-iso-8bit): Change mime-charset name
12611 to cn-gb.
12612 (cn-gb, gb2312): New aliases for chinese-iso-8bit.
12613
12614 2000-12-04 Dave Love <fx@gnu.org>
12615
12616 * emacs-lisp/cl-indent.el: Remove erroneous spec for condition-case.
12617
12618 2000-12-04 Gerd Moellmann <gerd@gnu.org>
12619
12620 * mail/rmailsum.el (rmail-summary-expunge)
12621 (rmail-summary-expunge-and-save): Ask for confirmation with
12622 rmail-expunge-confirmed.
12623
12624 * mail/rmail.el (rmail-expunge-confirmed): New function.
12625 (rmail-expunge): Use it.
12626
12627 2000-12-04 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be>
12628
12629 * progmodes/etags.el (tag-partial-file-name-match-p): New function.
12630 (etags-recognize-tags-table, find-tag-in-order):
12631 New functionality: interpret file names as tags.
12632
12633 2000-12-04 Eli Zaretskii <eliz@is.elta.co.il>
12634
12635 * info.el (Info-scroll-prefer-subnodes): New defcustom.
12636 (Info-scroll-up): If Info-scroll-prefer-subnodes is nil, don't visit
12637 the first subnode until the bottom of the current node is visible.
12638
12639 2000-12-04 Gerd Moellmann <gerd@gnu.org>
12640
12641 * format.el (format-decode): Don't change buffer's undo list.
12642
12643 2000-12-04 Kenichi Handa <handa@etl.go.jp>
12644
12645 * faces.el (face-font-registry-alternatives): Add entries for CJK
12646 fonts. Doc-string adjusted for the actual usage of this data.
12647
12648 * international/fontset.el: Change the font registries for CJK
12649 fonts in the default fontset. Don't append '*' to registries.
12650
12651 2000-12-03 Stefan Monnier <monnier@cs.yale.edu>
12652
12653 * emacs-lisp/easy-mmode.el (define-derived-mode)
12654 (easy-mmode-derived-mode-p): Remove (moved to derived.el).
12655
12656 * derived.el (define-derived-mode): Revived, moved from easy-mmode.el.
12657 (derived-mode-p): New function.
12658 (derived-mode-make-docstring): Add `docstring' argument.
12659 Use it if available and complete it if necessary.
12660
12661 2000-12-03 Andreas Schwab <schwab@suse.de>
12662
12663 * type-break.el (type-break): Don't make parent of itself.
12664
12665 2000-12-03 Miles Bader <miles@gnu.org>
12666
12667 * simple.el (delete-trailing-whitespace): Don't delete newlines too.
12668
12669 2000-12-02 Stefan Monnier <monnier@cs.yale.edu>
12670
12671 * textmodes/tex-mode.el (tex-start-shell): Obey shell-file-name.
12672 (tex-main-file, tex-file): Simplify.
12673 (tex-generate-zap-file-name): Use subst-char-in-string.
12674 (tex-strip-dots): Remove.
12675
12676 * tmm.el (tmm-get-keymap): Eval the menu name in `menu-item'.
12677
12678 * textmodes/ispell.el (check-ispell-version): Don't use match-beginning
12679 to check if the match succeeded.
12680
12681 2000-12-02 Gerd Moellmann <gerd@gnu.org>
12682
12683 * startup.el (use-fancy-splash-screens-p): New function.
12684 (command-line-1): Use it to determine whether or not to use
12685 a fancy splash screen.
12686
12687 2000-12-02 Andreas Schwab <schwab@suse.de>
12688
12689 * emacs-lisp/eldoc.el (eldoc): Don't make parent of itself.
12690
12691 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
12692
12693 * international/mule.el (make-char): Fix last change.
12694
12695 * textmode/texinfo.el (texinfo-open-quote, texinfo-close-quote):
12696 New defcustoms.
12697 (texinfo-insert-quote): Don't call tex-insert-quote, to avoid
12698 autoloading tex-mode; instead, do the same manually.
12699 Use texinfo-open-quote and texinfo-close-quote. Insert literal quote
12700 with numeric argument. Docstring fix.
12701 (toplevel): Require cl when compiling.
12702
12703 * international/mule.el (make-char): Doc fix.
12704
12705 2000-12-02 Jason Rumney <jasonr@gnu.org>
12706
12707 * term/w32-win.el (x-select-enable-clipboard): Customize (as per
12708 the Emacs Lisp manual)
12709
12710 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
12711
12712 * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
12713
12714 * term/pc-win.el (x-select-enable-clipboard): Customize (as per
12715 the Emacs Lisp manual).
12716
12717 2000-12-02 Gerd Moellmann <gerd@gnu.org>
12718
12719 * simple.el (next-line-add-newlines): Change default to nil.
12720
12721 2000-12-01 Eli Zaretskii <eliz@is.elta.co.il>
12722
12723 * files.el (revert-buffer, recover-file):
12724 Bind coding-system-for-read to emacs-mule-unix, not to no-conversion.
12725
12726 2000-12-01 Gerd Moellmann <gerd@gnu.org>
12727
12728 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
12729
12730 2000-12-01 Miles Bader <miles@gnu.org>
12731
12732 * window.el (fit-window-to-buffer): Handle non-nil `truncate-lines'.
12733
12734 2000-12-01 Kenichi Handa <handa@etl.go.jp>
12735
12736 * international/mule-diag.el (describe-char-after): Fix typo.
12737 (describe-character-set, non-iso-charset-alist): Fix typo.
12738
12739 2000-12-01 Miles Bader <miles@gnu.org>
12740
12741 * image-file.el (image-file-name-regexp): Automatically add
12742 upper-case variants of each filename extension in
12743 `image-file-name-extensions', since they seem to be common.
12744
12745 * simple.el (minibuffer-contents)
12746 (minibuffer-contents-no-properties, delete-minibuffer-contents):
12747 New functions.
12748 * filecache.el (file-cache-directory-name)
12749 (file-cache-minibuffer-complete): Ignore the minibuffer prompt.
12750
12751 2000-12-01 Milan Zamazal <Milan.Zamazal@qbizm.com>
12752
12753 * filecache.el (file-cache-minibuffer-complete): Don't try to
12754 delete the minibuffer prompt.
12755
12756 2000-11-30 Dave Love <fx@gnu.org>
12757
12758 * cus-start.el: Fix read-buffer-function type.
12759
12760 2000-11-30 Gerd Moellmann <gerd@gnu.org>
12761
12762 * md5.el: Removed. There's a built-in function, now.
12763
12764 2000-11-30 Markus Rost <rost@math.ohio-state.edu>
12765
12766 * mail/rmail.el (rmail-set-message-counters): Don't use "D"
12767 as dummy 0-th char of rmail-deleted-vector.
12768
12769 2000-11-30 Eli Zaretskii <eliz@is.elta.co.il>
12770
12771 * ps-print.el (ps-end-job): Bind case-fold-search only after
12772 switching to ps-spool-buffer.
12773
12774 2000-11-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12775
12776 * ps-print.el: Line number font customization. PostScript: Lines and
12777 PageCount are initialized on each page. Doc Fix.
12778 (ps-print-version): New version number (6.3.2).
12779 (ps-lpr-switches, ps-font-info-database, ps-font-size)
12780 (ps-header-font-size, ps-header-title-font-size, ps-left-header)
12781 (ps-right-header): Customization fix.
12782 (ps-setup, ps-select-font, ps-begin-file, ps-header-sheet, ps-end-job):
12783 Fix code.
12784 (ps-end-with-control-d, ps-line-number-font, ps-line-number-font-size):
12785 New vars.
12786
12787 2000-11-30 Gerd Moellmann <gerd@gnu.org>
12788
12789 * bs.el: Fix typos and spelling errors.
12790 (bs-appearance) <defgroup>: Renamed from bs-appearence.
12791 (bs-configuration): Doc fix.
12792
12793 * bs.el: Undo mistaken change of 2000-11-28. Update copyright.
12794
12795 2000-11-30 Rob Riepel <riepel@Stanford.EDU>
12796
12797 * emulation/tpu-edt.el (tpu-version): New version.
12798 (tpu-search-overlay, tpu-replace-overlay): New initial range.
12799 (tpu-original-mode-line): Variable deleted.
12800 (tpu-mark-flag): New initial value.
12801 (tpu-set-mode-line): Don't redefine mode-line-format.
12802 Add tpu-mark-flag to minor-mode-alist.
12803 (tpu-update-mode-line): New mark flag logic.
12804 (tpu-get): Use find-file-wildcards.
12805 (tpu-search-highlight): Move overlay less, reset overlay properly.
12806 (tpu-unselect): Deactivate mark.
12807 (tpu-lm-replace): Reset overlay properly.
12808 (tpu-forward-line): Use forward-visible-line.
12809 (tpu-edt-on): Set transient mark mode. ispell autoloads deleted.
12810
12811 * emulation/tpu-extras.el (tpu-forward-line): Use forward-visible-line.
12812
12813 2000-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
12814
12815 * cus-edit.el (custom-face-value-create): Always emphasize tag.
12816
12817 2000-11-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
12818
12819 * calendar/diary-lib.el (diary-entry-time): Anchor pattern correctly
12820 and skip whitespace and newlines.
12821
12822 2000-11-30 Stefan Monnier <monnier@cs.yale.edu>
12823
12824 * emacs-lisp/cl.el (third...tenth): Really undo change of 2000-08-05.
12825
12826 2000-11-29 Gerd Moellmann <gerd@gnu.org>
12827
12828 * help.el (describe-function-1): Regexp-quote function name
12829 when used as part of a regexp.
12830
12831 * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
12832 Use face-attribute instead of face-foreground and face-background.
12833 (tool-bar-add-item): Likewise, and handle unspecified colors.
12834
12835 * enriched.el (enriched-face-ans): Use face-attribute instead
12836 of face-foreground and face-background.
12837
12838 * faces.el (face-foreground, face-background, face-stipple):
12839 Return nil if attribute is unspecified, for backward compatibility.
12840
12841 * files.el (auto-mode-alist): Add an entry for antlr-mode.
12842
12843 * play/5x5.el: Remove version info.
12844
12845 * toolbar/tool-bar.el (tool-bar-mode): Doc fix.
12846
12847 * frame.el (blink-cursor-mode): Doc fix.
12848
12849 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
12850
12851 * antlr-mode.el: New commands to run ANTLR from within Emacs and
12852 to create Makefile rules.
12853 (antlr-tool-command): New user option.
12854 (antlr-ask-about-save): New user option.
12855 (antlr-makefile-specification): New user option.
12856 (antlr-file-formats-alist): New variable.
12857 (antlr-special-file-formats): New variable.
12858 (antlr-unknown-file-formats): New user option.
12859 (antlr-help-unknown-file-text): New variable.
12860 (antlr-help-rules-intro): New variable.
12861 (antlr-mode-map): Add [C-c C-r] for `antlr-run-tool'.
12862 (antlr-mode-menu): Add entries.
12863 (antlr-file-dependencies): New function.
12864 (antlr-directory-dependencies): New function.
12865 (antlr-superclasses-glibs): New function.
12866 (antlr-run-tool): New command.
12867 (antlr-makefile-insert-variable): New function.
12868 (antlr-insert-makefile-rules): New function.
12869 (antlr-show-makefile-rules): New command.
12870
12871 * antlr-mode.el: More Emacs/XEmacs stuff.
12872 (antlr-no-action-keywords): New constant with value nil.
12873 (antlr-font-lock-keywords-alist): Use it. Old value would break
12874 syntax highlighting in Emacs-21.0.
12875 (antlr-default-directory): Emacs/XEmacs dependend function.
12876 (antlr-read-shell-command): Ditto.
12877 (antlr-with-displaying-help-buffer): Ditto.
12878
12879 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
12880
12881 * antlr-mode.el: imenu, parsing and highlighting changes.
12882 (antlr-imenu-create-index-function): Don't create extra submenus
12883 for definitions in different grammar classes. It is not necessary
12884 for the menu and would make command `imenu' awkward to use.
12885 (antlr-skip-file-prelude): With ANTLR-2.7+, you can specify named
12886 header actions and more than one.
12887 (antlr-font-lock-tokendef-face): Changed color.
12888 (antlr-font-lock-tokenref-face): Changed color.
12889 (antlr-font-lock-additional-keywords): Also highlight lowercase.
12890 (antlr-mode-syntax-table): New variable.
12891 (antlr-mode): Populate and use it instead `java-mode-syntax-table'.
12892 (antlr-with-syntax-table): Don't copy syntax table.
12893
12894 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
12895
12896 * antlr-mode.el: Minor changes: language setting.
12897 (antlr-language-alist): The value for file option "language" can
12898 be both an identifier and a string.
12899 Reported by Rajesh Radhakrishnan <radhakrs@email.uc.edu>.
12900 (antlr-language-limit-n-regexp): Change accordingly.
12901
12902 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
12903
12904 * antlr-mode.el: Minor changes: tabs, hiding.
12905 (antlr-tab-offset-alist): Set `indent-tabs-mode' to nil instead t.
12906 (antlr-action-visibility): Also allow value nil to also hide the
12907 braces. Renamed from `antlr-tiny-action-length'.
12908 Suggested by Jay@aol.com.
12909 (antlr-hide-actions): Change accordingly. Hide line if completely
12910 hidden action is on a line of its own.
12911
12912 2000-11-29 Stefan Monnier <monnier@cs.yale.edu>
12913
12914 * subr.el (combine-run-hooks): Only run-hooks if there's a hook to run.
12915
12916 * sort.el (sort-columns): Don't concat strings with numbers.
12917
12918 2000-11-29 Dave Love <fx@gnu.org>
12919
12920 * cus-edit.el (face): Fix :format.
12921
12922 * mail/feedmail.el: Require smtpmail when compiling.
12923 (mail-do-fcc): Autoload.
12924 (feedmail) <defgroup>: Fix :link.
12925 (feedmail-nuke-body-in-fcc): Fix :type.
12926 (feedmail-send-it): Add autoload cookie.
12927
12928 2000-11-29 Stefan Monnier <monnier@cs.yale.edu>
12929
12930 * newcomment.el (comment-indent): Save excursion around call to
12931 comment-indent-function.
12932
12933 2000-11-29 Miles Bader <miles@gnu.org>
12934
12935 * subr.el (member-ignore-case): Return the tail of the list who's
12936 car matches, like `member', not the matching element itself.
12937
12938 2000-11-29 Kenichi Handa <handa@etl.go.jp>
12939
12940 * xml.el (xml-parse-tag): Fix finding opening tag. A tag name
12941 should not contain `\n'.
12942
12943 2000-11-28 Gerd Moellmann <gerd@gnu.org>
12944
12945 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
12946
12947 * hscroll.el: Add hints to `automatic-hscrolling' to doc strings.
12948
12949 * dired-aux.el (dired-do-create-files): Construct default file
12950 name for dired-mark-read-file-name so that when the user enters
12951 just RET, the target file will end up in the target directory.
12952
12953 * abbrev.el (prepare-abbrev-list-buffer): Get the value of
12954 local-abbrev-table before changing buffers because it might
12955 have a buffer-local binding.
12956
12957 2000-11-28 Miles Bader <miles@gnu.org>
12958
12959 * simple.el (delete-horizontal-space): Handle fields more generally.
12960
12961 2000-11-28 Gerd Moellmann <gerd@gnu.org>
12962
12963 * simple.el (delete-horizontal-space): Handle minibuffer prompt.
12964
12965 2000-11-28 Dave Love <fx@gnu.org>
12966
12967 * progmodes/ps-mode.el (ps-mode): Set comment-start and
12968 comment-start-skip locally.
12969
12970 * progmodes/fortran.el (fortran-mode): Don't set
12971 fortran-comment-line-start-skip. Set comment-start to
12972 fortran-comment-line-start.
12973 (fortran-fill-paragraph) <non-empty-comment>: Remove regexp group.
12974 (fortran-comment-line-start-skip): Simplify slightly.
12975
12976 2000-11-28 Gerd Moellmann <gerd@gnu.org>
12977
12978 * play/5x5.el: Remove RCS keyword.
12979
12980 * bs.el: Mistaken commit, undone 2000-11-30.
12981
12982 2000-11-28 Milan Zamazal <pdm@freesoft.cz>
12983
12984 * textmodes/tildify.el (tildify-string-alist):
12985 Add `plain-tex-mode' here.
12986
12987 2000-11-28 Colin Walters <walters@cis.ohio-state.edu>
12988
12989 * chistory.el (Command-history-setup): Remove extraneous `keymap'
12990 reference.
12991
12992 2000-11-28 Miles Bader <miles@gnu.org>
12993
12994 * cus-face.el (custom-face-attributes): Add post-filter function
12995 for :box. Make pre-filter function for :box handle all cases.
12996
12997 * wid-edit.el (widget-choose): Make sure pop-up window is large
12998 enough to display all the choices, as there's no way to scroll it.
12999
13000 2000-11-28 Kenichi Handa <handa@etl.go.jp>
13001
13002 * international/mule-conf.el: Make the coding system no-conversion
13003 safe for all characters.
13004
13005 2000-11-27 Dave Love <fx@gnu.org>
13006
13007 * net/ldap.el (ldap) <defgroup>: Add :version.
13008
13009 * tooltip.el (tooltip-use-echo-area): Doc fix.
13010
13011 * cus-start.el <minibuffer-prompt-properties>: Add version.
13012 <read-buffer-function>: Add.
13013
13014 * apropos.el (apropos-print): Add help-echo to active text.
13015
13016 * term/x-win.el (x-select-enable-clipboard): Customize (per lispref).
13017
13018 2000-11-27 Gerd Moellmann <gerd@gnu.org>
13019
13020 * mail/rmail.el (rmail-automatic-folder-directives): Add a custom
13021 type, group and version.
13022
13023 2000-11-27 Eli Zaretskii <eliz@is.elta.co.il>
13024
13025 * select.el (x-get-selection): Docstring fix.
13026
13027 2000-11-27 Dave Pearson <davep@hagbard.demon.co.uk>
13028
13029 * play/5x5.el (5x5-play-solution): Bind hinhibit-quit to t.
13030
13031 2000-11-27 Andrew Innes <andrewi@gnu.org>
13032
13033 * makefile.nt (.SUFFIXES): Add .SUFFIXES.
13034
13035 * makefile.w32-in (.SUFFIXES): Add .SUFFIXES.
13036
13037 2000-11-27 Miles Bader <miles@gnu.org>
13038
13039 * dired.el (dired-get-filename): Return filename verbatim if
13040 LOCALP is `verbatim'.
13041 * dired-aux.el (dired-add-entry): Call `dired-get-filename' with
13042 `verbatim' so that we don't inadvertently delete a non-existant
13043 directory name.
13044
13045 2000-11-27 Kenichi Handa <handa@etl.go.jp>
13046
13047 * international/characters.el: Specify cases and syntaxes for
13048 mule-unicode-0100-24ff.
13049
13050 2000-11-27 Gerd Moellmann <gerd@gnu.org>
13051
13052 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Handle case
13053 that foreground and/or background colors of the face `tool-bar'
13054 are unspecified.
13055
13056 2000-11-27 Miles Bader <miles@gnu.org>
13057
13058 * wid-edit.el (widget-field-buffer, widget-field-start)
13059 (widget-field-end): Handle widget field `pseudo-overlays'.
13060 (widget-field-value-delete): Delete WIDGET from `widget-field-new'
13061 if it's there instead of in `widget-field-list'.
13062
13063 * help.el (help-manyarg-func-alist): Correct entry for `vconcat'.
13064 (help-make-xrefs): Delete extraneous newlines at the end of the
13065 docstring.
13066
13067 2000-11-25 Jason Rumney <jasonr@gnu.org>
13068
13069 * startup.el (command-line): Call set-locale-environment after
13070 Window System init file is read, as it can result in a call to
13071 redraw-frame.
13072
13073 2000-11-25 Eli Zaretskii <eliz@is.elta.co.il>
13074
13075 * simple.el (shell-command): Mention the effect of the prefix
13076 argument in the doc string.
13077
13078 2000-11-25 Miles Bader <miles@gnu.org>
13079
13080 * cus-face.el (custom-face-attributes): Add "None" choice to :stipple.
13081
13082 * wid-edit.el (widget-field-value-delete): Don't try to delete
13083 overlay when it's the `pseudo-overlay' that exists at some points.
13084
13085 2000-11-24 Jason Rumney <jasonr@gnu.org>
13086
13087 * international/mule-cmds.el (locale-language-names): Add "jp" as
13088 a non-standard alternative for Japanese.
13089
13090 2000-11-24 Andre Spiegel <spiegel@gnu.org>
13091
13092 * vc-hooks.el: Require 'cl during compilation.
13093
13094 2000-11-24 Gerd Moellmann <gerd@gnu.org>
13095
13096 * faces.el (face-set-after-frame-default): Let face attributes
13097 specified for new frames override frame parameters.
13098
13099 * startup.el (command-line): Fix computation of the source file
13100 for user-init-file when user-init-file is a compiled file.
13101
13102 2000-11-24 Miles Bader <miles@gnu.org>
13103
13104 * cus-edit.el (custom-filter-face-spec, custom-pre-filter-face-spec)
13105 (custom-post-filter-face-spec): New functions.
13106 (custom-face-set, custom-face-value-create): Filter the face spec
13107 before and after customization.
13108 (custom-face-set): If VALUE specifies a null face, pass a
13109 non-null-but-otherwise-ignored face-spec instead to `face-spec-set'.
13110 * cus-face.el (custom-face-attributes): Remove SET and GET
13111 functions. Add some IN-FILTER and OUT-FILTER functions in the few
13112 cases they're needed.
13113
13114 * wid-edit.el (checkbox): Add a small `X' to the :on-glyph, so
13115 that it's distinguishable from the :off-glyph on dark-background
13116 displays. Set its background color too.
13117
13118 * cus-start.el (all): Restore entry for `mode-line-inverse-video',
13119 so that people can easily turn it off.
13120
13121 2000-11-24 Michael Kifer <kifer@cs.sunysb.edu>
13122
13123 * ediff-diff.el: Moved variables around to have it compile under NT.
13124
13125 * ediff-help.el (ediff-use-long-help-message): Made it customizable.
13126
13127 * ediff-init.el (ediff-abbrev-jobname): Use capitalize.
13128
13129 * ediff-wind.el (ediff-skip-unsuitable-frames): Deleted the
13130 redundant skip-small-frames test.
13131
13132 * viper-cmd.el (viper-change-state-to-vi): Disable overwrite mode.
13133 (viper-downgrade-to-insert): Protect against errors in hooks.
13134
13135 * viper-init.el (viper-vi-state-hook,viper-insert-state-hook)
13136 (viper-replace-state-hook,viper-emacs-state-hook): Do cursor handling.
13137 (viper-restore-cursor-type,viper-set-insert-cursor-type):
13138 New functions.
13139
13140 * viper-util.el (viper-memq-char): Bug fixes.
13141
13142 * viper.el (viper-mode): Fix cursor handling.
13143
13144 2000-11-24 Kenichi Handa <handa@etl.go.jp>
13145
13146 * international/mule-diag.el (list-iso-charset-chars):
13147 For two-byte charset, fix the `while' condition.
13148 (list-non-iso-charset-chars): Fix the `while' condition.
13149
13150 2000-11-23 Stefan Monnier <monnier@cs.yale.edu>
13151
13152 * subr.el (add-hook, remove-hook): Don't call make-local-hook
13153 if the variable is make-variable-buffer-local.
13154
13155 * progmodes/ada-stmt.el (ada-template-map):
13156 Initialize and bind it to C-c t in ada-mode-map.
13157 (ada-stmt-mode-hook): New function extracted from old code.
13158 Only change the buffer-local side of skeleton-*.
13159 (ada-mode-hook): Use it.
13160
13161 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
13162
13163 * iswitchb.el (iswitchb-minibuf-depth): New variable.
13164 (iswitchb-read-buffer): Record in iswitchb-minibuf-depth the value
13165 we expect to be returned by minibuffer-depth once we prompt the
13166 user in the minibuffer.
13167 (iswitchb-entryfn-p): If minibuffer-depth returns the same value
13168 as recorded in iswitchb-minibuf-depth, return non-nil.
13169
13170 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
13171
13172 * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode)
13173 (hscroll-window-maybe): Docstring fix.
13174
13175 2000-11-23 Dave Love <fx@gnu.org>
13176
13177 * rect.el (string-rectangle): Don't test delete-selection-mode.
13178
13179 2000-11-23 Gerd Moellmann <gerd@gnu.org>
13180
13181 * avoid.el (mouse-avoidance-too-close-p): Return nil if mouse
13182 is in the tool bar.
13183
13184 * dired-aux.el (dired-add-entry): Don't call dired-get-filename
13185 with `no-dir'; we want the directory part to be able to remove it.
13186
13187 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
13188
13189 * textmodes/outline.el (outline-flag-region):
13190 Don't bind inhibit-read-only since we don't modify the buffer.
13191 (outline-isearch-open-invisible): Don't jump to overlay-start
13192 since we're trying to unhide text around point.
13193 (outline-discard-overlays): Use dolist.
13194
13195 * autoinsert.el (auto-insert-alist): Add `provide' to elisp skeleton.
13196
13197 2000-11-22 Gerd Moellmann <gerd@gnu.org>
13198
13199 * mail/rmail.el (rmail-confirm-expunge): Default to y-or-n-p.
13200
13201 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
13202
13203 * textmodes/tex-mode.el (tex-font-lock-keywords-1):
13204 Fix ARG regexp to skip quoted braces.
13205 (tex-font-lock-keywords-2): Fix ARG regexp to skip quoted braces.
13206 Remove `bf' and `it' from `bold' and `italic' (they were wrong and
13207 are (correctly) handled separately).
13208 Remove `caption' and `footnote' from `citations': they contain text.
13209 Don't highlight `textmd', `texttt' and `textrm' with bold-italic.
13210 (latex-skeleton-end-hook): New function.
13211 (latex-mode): Use it.
13212 (tex-start-tex-marker): Remove.
13213 (tex-send-tex-command): Don't set tex-start-tex-marker.
13214 (tex-error-parse-syntax-table): New var.
13215 (tex-compilation-parse-errors): Use it.
13216 Ignore tex-start-tex-marker. Don't bother with marker-position.
13217 (tex-validate-buffer): Don't bother with marker-position.
13218
13219 * textmodes/flyspell.el (flyspell-prog-text-faces): New var.
13220 (flyspell-generic-progmode-verify): Use it.
13221
13222 2000-11-22 Sam Steingold <sds@gnu.org>
13223
13224 * simple.el (delete-trailing-whitespace): New interactive function.
13225
13226 * progmodes/ada-mode.el (ada-mode): Use it instead of
13227 `ada-remove-trailing-spaces'.
13228 (ada-remove-trailing-spaces): Removed.
13229
13230 * textmodes/two-column.el (2C-merge): Recommend it in the doc.
13231
13232 * textmodes/picture.el (picture-clean): Removed.
13233 (picture-mode-exit): Call it instead of `picture-clean'.
13234
13235 2000-11-22 Gerd Moellmann <gerd@gnu.org>
13236
13237 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
13238
13239 * hi-lock.el (hi-lock-refontify): Don't call non-existent
13240 jit-lock-fontify-buffer; it should anyway be unneccessary to
13241 do anything special when jit-lock is active.
13242 (hi-yellow, hi-pink, hi-green, hi-blue): Fix defface specs.
13243
13244 2000-11-22 Dave Love <fx@gnu.org>
13245
13246 * calendar/todo-mode.el (todo-top-priorities): Use
13247 todo-tmp-buffer-name. From Milan Zamazal <Milan.Zamazal@qbizm.com>.
13248
13249 * language/chinese.el, language/cyrillic.el:
13250 * language/devanagari.el, language/ethiopic.el, language/greek.el:
13251 * language/hebrew.el, language/indian.el, language/japanese.el:
13252 * language/korean.el, language/lao.el, language/misc-lang.el:
13253 * language/thai.el, language/tibetan.el, language/vietnamese.el:
13254 Use provide.
13255
13256 * cus-edit.el (custom-buffer-create-internal): Save some consing.
13257 (custom-variable-set): Improve validation error mesage.
13258
13259 * rect.el (string-rectangle): Revert last change.
13260 (string-rectangle-line): New arg DELETE.
13261 (string-rectangle): Check delete-selection-mode.
13262
13263 * emacs-lisp/edebug.el (edebug-version)
13264 (edebug-maintainer-address): Deleted.
13265 (edebug-submit-bug-report): Just alias to report-emacs-bug.
13266 (edebug-read-function): Account for other `'#' read forms.
13267 (edebug-mode-menus): Make some items toggles.
13268 (edebug-outside-unread-command-event, unread-command-event):
13269 Remove these to avoid warnings.
13270
13271 2000-11-22 David Ponce <david@dponce.com>
13272
13273 * recentf.el (recentf-menu-items-for-commands)
13274 (recentf-make-menu-items, recentf-make-menu-item)
13275 (recentf-filter-changer): Added :help and :active menu-item properties.
13276
13277 (recentf-build-dir-rules, recentf-dump-variable)
13278 (recentf-edit-list, recentf-open-files-item)
13279 (recentf-open-files): Replaced unnecessary `mapcar' with new
13280 built-in `mapc'.
13281
13282 2000-11-23 Miles Bader <miles@gnu.org>
13283
13284 * faces.el (menu): Make inverse-video on ttys too.
13285
13286 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
13287
13288 * simple.el (comment-line-break-function): Use the new name
13289 indent-new-comment-line -> comment-indent-new-line.
13290 (clone-indirect-buffer): Don't ignore NORECORD.
13291 (next-completion): Properly handle the case where items are adjacent.
13292
13293 * mouse.el (popup-menu): Stupid typo.
13294
13295 2000-11-22 Gerd Moellmann <gerd@gnu.org>
13296
13297 * emacs-lisp/authors.el: Remove autoload cookies, add author,
13298 maintainer, keywords tags.
13299
13300 * rect.el (replace-rectangle): Don't call string-rectangle-line
13301 with too many arguments.
13302
13303 2000-11-22 Andre Spiegel <spiegel@gnu.org>
13304
13305 * ediff-util.el (ediff-file-checked-out-p)
13306 (ediff-file-checked-in-p): Call vc-state instead of
13307 vc-locking-user, which no longer exists.
13308
13309 * emulation/viper-util.el (viper-file-checked-in-p): Same as above.
13310
13311 2000-11-22 Dave Love <fx@gnu.org>
13312
13313 * md5.el (md5): Provide.
13314 (md5): Fix error call.
13315
13316 2000-11-22 Miles Bader <miles@gnu.org>
13317
13318 * textmodes/refill.el (refill-adjust-ignorable-overlay)
13319 (refill-fill-paragraph-at): Remove debugging code.
13320
13321 * calendar/calendar.el (generate-calendar-window): When we don't
13322 call `fit-window-to-buffer', make sure the top line is fully visible.
13323
13324 * image-file.el (insert-image-file): Don't make `read-only'
13325 property rear-nonsticky.
13326
13327 * isearch.el (isearch-original-minibuffer-message-timeout): New var.
13328 (isearch-mode): Set `minibuffer-message-timeout' to nil, after
13329 stashing away its original value.
13330 (isearch-edit-string): Temporarily restore `minibuffer-message-timeout'
13331 in the recursive edit.
13332 Bind `isearch-original-minibuffer-message-timeout' to protect it.
13333 (isearch-done): Restore `minibuffer-message-timeout'.
13334
13335 * cus-start.el: Remove entry for `mode-line-inverse-video'.
13336
13337 2000-11-21 Stefan Monnier <monnier@cs.yale.edu>
13338
13339 * progmodes/ada-mode.el (ada-mode): `set '' -> `setq'.
13340
13341 * find-lisp.el (find-lisp-find-files-internal):
13342 Use dolist, when and file-name-as-directory.
13343
13344 * emacs-lisp/edebug.el (edebug-form-spec prop): Use dolist.
13345 (define-derived-mode, define-minor-mode): Add specs.
13346
13347 * window.el: General comment and spacing fixes.
13348 (save-selected-window): Use backquotes.
13349 (window-safely-shrinkable-p): New function.
13350 (shrink-window-if-larger-than-buffer): Use it.
13351
13352 * subr.el (make-local-hook): Docstring fix.
13353
13354 * shell.el (shell-mode): Use define-derived-mode.
13355
13356 * newcomment.el (comment-indent): Insert comment before calling
13357 comment-indent-function. Don't insert in column 0.
13358 (comment-dwim): Indent before inserting comment.
13359
13360 * isearch.el (isearch-mode-map): Fix docstring. Init in defvar.
13361 (minibuffer-local-isearch-map): Init in defvar. Use inheritance.
13362 (isearch-clean-overlays, isearch-range-invisible, isearch-unread):
13363 Use mapc rather than map.
13364
13365 * files.el (find-buffer-visiting): Compare all attributes before
13366 declaring two files identical (rather than just their inode-no).
13367 (auto-mode-alist): Use \' rather than $.
13368
13369 * which-func.el: Update maintainer line.
13370
13371 * pcvs.el (uniquify-buffer-file-name): Remove advice.
13372 * uniquify.el (uniquify-list-buffers-directory-modes): New var.
13373 (uniquify-buffer-file-name): Use it.
13374
13375 2000-11-22 Miles Bader <miles@gnu.org>
13376
13377 * cus-start.el: Add entry for `minibuffer-prompt-properties'.
13378 * simple.el (minibuffer-avoid-prompt): New function.
13379
13380 2000-11-21 Gerd Moellmann <gerd@gnu.org>
13381
13382 * Makefile.in (.SUFFIXES): Add .SUFFIXES.
13383
13384 2000-11-21 Miles Bader <miles@gnu.org>
13385
13386 * emacs-lisp/advice.el (ad-special-forms): Correct the conditional
13387 inclusion of `track-mouse'.
13388
13389 * textmodes/refill.el (refill-ignorable-overlay): New variable.
13390 (refill-adjust-ignorable-overlay): New function.
13391 (refill-fill-paragraph-at): Use `refill-ignorable-overlay' to fill
13392 only the paragraph's tail if possible.
13393 Update `refill-ignorable-overlay'.
13394 (refill-mode): Initialize/cleanup `refill-ignorable-overlay'.
13395
13396 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
13397 point inside the fill-prefix.
13398
13399 * textmodes/refill.el (refill-post-command-function): Don't reset
13400 refill-doit in the case where a self-insertion command doesn't
13401 case a refill. Use `refill-fill-paragraph-at', getting position
13402 from `refill-doit'.
13403 (refill-after-change-function): Set `refill-doit' to END.
13404 (refill-fill-paragraph-at): New function, mostly from old
13405 refill-fill-paragraph.
13406 (refill-fill-paragraph): Use `refill-fill-paragraph-at'.
13407 (refill-pre-command-function): New function.
13408 (refill-mode): Add it to `pre-command-hook'.
13409
13410 2000-11-20 Gerd Moellmann <gerd@gnu.org>
13411
13412 * textmodes/artist.el (artist-mode): Fix autoload cookie.
13413
13414 * font-lock.el (java-keywords): Add MATCH-HIGHLIGHT part for
13415 javadoc tags.
13416
13417 2000-11-20 Andre Spiegel <spiegel@gnu.org>
13418
13419 * vc.el, vc-hooks.el: Undo prev change (moved functions back to
13420 vc.el).
13421
13422 * vc-rcs.el (vc-rcs-state): Before calling vc-workfile-unchanged-p,
13423 require vc.
13424
13425 * vc-cvs.el (vc-cvs-checkout): Fix bug that broke C-x v ~-style
13426 checkouts.
13427
13428 2000-11-20 Dave Love <fx@gnu.org>
13429
13430 * Makefile.in (DONTCOMPILE): Omit bindings.el.
13431
13432 2000-11-20 Eli Barzilay <eli@www.barzilay.org>
13433
13434 * calculator.el (calculator-paste): Use `if' instead of `and'
13435 and `or'.
13436 (calculator-help): Don't use electric-describe-mode for XEmacs.
13437
13438 2000-11-19 Gerd Moellmann <gerd@gnu.org>
13439
13440 * info.el (info-menu-5): Doc fix.
13441
13442 * textmodes/artist.el: New file.
13443
13444 2000-11-19 Andre Spiegel <spiegel@gnu.org>
13445
13446 * vc-rcs.el (vc-rcs-state): Call vc-workfile-unchanged-p only here,
13447 and differentiate according to checkout model.
13448 (vc-rcs-fetch-master-state): Don't call vc-workfile-unchanged-p,
13449 since this function is only concerned with master state.
13450
13451 * vc-hooks.el (vc-workfile-unchanged-p)
13452 (vc-default-workfile-unchanged-p): Moved here from vc.el.
13453
13454 * vc.el (vc-workfile-unchanged-p)
13455 (vc-default-workfile-unchanged-p): See above.
13456
13457 2000-11-19 Miles Bader <miles@gnu.org>
13458
13459 * image-file.el (insert-image-file): Make `intangible' and
13460 `read-only' properties rear-nonsticky too.
13461
13462 2000-11-18 Gerd Moellmann <gerd@gnu.org>
13463
13464 * ps-print.el: Update copyright notice.
13465
13466 * tooltip.el (tooltip-x-offset, tooltip-y-offset): New user-options.
13467 (tooltip-show): Use the offsets.
13468
13469 * bindings.el (mode-line-modified): Fix a typo.
13470 (mode-line-toggle-modified, mode-line-widen)
13471 (mode-line-abbrev-mode, mode-line-auto-fill-mode): Fix typos.
13472
13473 2000-11-17 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13474
13475 * ps-print.el (toplevel): Test for find-coding-system being
13476 fboundp before calling ps-x-find-coding-system.
13477
13478 2000-11-16 Stefan Monnier <monnier@cs.yale.edu>
13479
13480 * vc.el (vc-version-diff): Bind inhibit-read-only when inserting text.
13481 (vc-version-backup-file): Docstring fix.
13482
13483 2000-11-16 Gerd Moellmann <gerd@gnu.org>
13484
13485 * files.el (basic-save-buffer): Don't add a newline if
13486 find-file-literally is non-nil.
13487 (find-file-literally): Extend doc string.
13488
13489 * sort.el (sort-columns): If sort-fold-case it non-nil, invoke
13490 sort(1) with the `-f' argument.
13491
13492 2000-11-16 Andre Spiegel <spiegel@gnu.org>
13493
13494 * vc.el: Updated backend documentation.
13495 (vc-default-check-headers): New function.
13496
13497 * vc-{cvs,rcs,sccs}.el: Functions reordered.
13498
13499 * vc.el (vc-revert-buffer): Ask for confirmation if file seems
13500 up-to-date.
13501 (vc-do-command): In the asynchronous case, output messages only if
13502 the minibuffer is not active.
13503
13504 * vc-cvs.el (vc-cvs-revert): Use `cvs unedit' only if
13505 `vc-cvs-use-edit' is on.
13506 (vc-cvs-checkout): When this is used for reverting the workfile,
13507 make a backup of the original contents and revert to that in case
13508 of error.
13509 (vc-cvs-print-log, vc-cvs-diff): Use asynchronous mode only for
13510 remote repositories.
13511
13512 * vc.el (vc-annotate): Changed handling of prefix arg; now asks
13513 for both version and ratio in the minibuffer.
13514
13515 * vc-cvs.el (vc-cvs-annotate-command): New optional arg VERSION.
13516 Use vc-do-command to perform the annotation, not call-process.
13517
13518 2000-11-16 Kenichi Handa <handa@etl.go.jp>
13519
13520 * international/quail.el (quail-start-translation): Don't call
13521 `message' before reading key sequence.
13522
13523 2000-11-16 Miles Bader <miles@lsi.nec.co.jp>
13524
13525 * net/ange-ftp.el (ange-ftp-file-modtime): Don't use `caddr'.
13526
13527 2000-11-16 Kenichi Handa <handa@etl.go.jp>
13528
13529 * window.el (fit-window-to-buffer): Be sure to acquire at least
13530 one text line even if the buffer is empty.
13531
13532 2000-11-16 Gerd Moellmann <gerd@gnu.org>
13533
13534 * net/ange-ftp.el (ange-ftp-file-writable-p)
13535 (ange-ftp-file-readable-p, ange-ftp-file-executable-p):
13536 Bind ange-ftp-process-verbose to nil.
13537
13538 2000-11-15 Dave Love <fx@gnu.org>
13539
13540 * wid-edit.el (widget-specify-field, widget-specify-button):
13541 If :help-echo is a function, set help-echo of overlay to
13542 widget-mouse-help.
13543 (widget-mouse-help): New function.
13544 (widget-echo-help): Rewritten for :help-echo functions only taking
13545 a widget arg.
13546
13547 * net/eudc-bob.el (eudc-bob-can-display-inline-images):
13548 Use display-graphic-p.
13549 (eudc-bob-display-jpeg) <!eudc-xemacs-p>: Test create-image bound
13550 and that JPEG is available.
13551 (eudc-bob-toggle-inline-display): Avoid non-existent `imagep'.
13552
13553 * international/mule-cmds.el (locale-charset-language-names):
13554 Match @euro.
13555
13556 2000-11-15 Gerd Moellmann <gerd@gnu.org>
13557
13558 * faces.el (face-set-after-frame-default):
13559 If `inhibit-default-face-x-resources' is bound, don't intialize the
13560 default face from X resources.
13561
13562 2000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
13563
13564 * Makefile.in (custom-deps, finder-data, autoloads, recompile):
13565 Don't set EMACSLOADPATH.
13566
13567 2000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
13568
13569 * textmodes/texinfo.el (texinfo-insert-@uref): Renamed from
13570 texinfo-insert-@url.
13571 (texinfo-insert-@url): A defalias for texinfo-insert-@uref.
13572 (texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref.
13573
13574 2000-11-14 Stefan Monnier <monnier@cs.yale.edu>
13575
13576 * emacs-lisp/checkdoc.el (checkdoc-minor-mode) <defvar>: Remove.
13577 (checkdoc-minor-mode-map): New map, replaces checkdoc-minor-keymap.
13578 (checkdoc-minor-keymap): Backward compatibility.
13579 (checkdoc-minor-menu): Don't bother checking checkdoc-minor-keymap.
13580 (checkdoc-minor-mode) <defun>: Use easy-mmode-define-minor-mode.
13581 (checkdoc-this-string-valid-engine): Be a bit more strict
13582 to avoid matching substrings of `...' quoted vars/funs.
13583 (checkdoc-defun-info): Only look for `interactive' if alone.
13584 (debug-ignored-errors): Add "arg doesn't appear in docstring".
13585
13586 * progmodes/compile.el (grep): `tag-default' can be nil.
13587
13588 * newcomment.el (comment-indent): Paren typo.
13589
13590 2000-11-14 Dave Love <fx@gnu.org>
13591
13592 * calculator.el: New maintainer version.
13593
13594 * diff-mode.el (diff-imenu-generic-expression): Modify unidiff pattern.
13595
13596 * cmuscheme.el: Doc fixes.
13597 (cmuscheme) <defgroup>: Use `scheme' as parent.
13598 (cmuscheme-program-name): Remove. Change uses to scheme-program-name.
13599
13600 * xscheme.el (scheme-program-name): Don't define here.
13601
13602 * progmodes/scheme.el (scheme-program-name): New variable
13603 (originally in cmuscheme).
13604
13605 2000-11-14 Miles Bader <miles@gnu.org>
13606
13607 * window.el (fit-window-to-buffer): Handle windows without mode-lines.
13608 Handle header-lines. Don't loop forever if we can't enlarge the
13609 window anymore. Simplify a bit.
13610
13611 2000-11-14 Kenichi Handa <handa@etl.go.jp>
13612
13613 * window.el (fit-window-to-buffer): Don't check
13614 window-text-height. Assure that the last line is fully visible.
13615
13616 * international/quail.el (quail-show-guidance-buf):
13617 Call fit-window-to-buffer to assure the enough height of the guidance
13618 buffer.
13619 (quail-update-guidance): Avoid making the guidance buffer shorter.
13620
13621 2000-11-14 Stefan Monnier <monnier@cs.yale.edu>
13622
13623 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Use `keep'
13624 rather than `prepend' and add an interesting comment.
13625 (tex-math-face, tex-font-lock-syntactic-face-function):
13626 New face and function to use it.
13627 (tex-define-common-keys, tex-mode-map): Use menu-item rather
13628 than `menu-enable' symbol property.
13629 (tex-mode-map): Bind {, (, [ and $ to skeleton-pair-insert-maybe.
13630 (tex-mode): Add some latex-mode commands for auto-selection.
13631 Use tex-font-lock-syntactic-face-function.
13632 (tex-insert-quote): Simplify.
13633 (tex-shell): New mode.
13634 (tex-start-shell): Use it.
13635 (tex-shell-proc, tex-shell-buf): New functions.
13636 (tex-send-command): Use it.
13637 (tex-main-file): Fix the meaning of the new arg REALFILE.
13638 (tex-send-tex-command): New function split from `tex-start-tex'.
13639 Set compilation-last-buffer and compilation-parsing-end.
13640
13641 * newcomment.el (comment-indent-default): Stick \s<\s< to the left
13642 when it follows non-comment text on the line.
13643
13644 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13645 Set font-lock-defaults.
13646 (lisp-mode-shared-map): Init inside the defvar.
13647 (emacs-lisp-mode, lisp-mode, lisp-interaction-mode):
13648 Use define-derived-mode.
13649
13650 2000-11-14 Miles Bader <miles@lsi.nec.co.jp>
13651
13652 * faces.el (header-line): Use `:box nil' for color/gs displays too.
13653
13654 2000-11-14 Gerd Moellmann <gerd@gnu.org>
13655
13656 * emacs-lisp/byte-opt.el (byte-compile-unfold-lambda):
13657 Don't recursively optimize body because that can lead to infinite
13658 recursion; see comment there.
13659
13660 2000-11-13 Eli Zaretskii <eliz@is.elta.co.il>
13661
13662 * faces.el (face-spec-set-match-display): Revert the change from
13663 2000-10-24. Add a FIXME for after v21.1.
13664
13665 2000-11-13 Miles Bader <miles@gnu.org>
13666
13667 * textmodes/fill.el (skip-line-prefix): New function.
13668 (fill-region-as-paragraph, fill-region): Return the fill-prefix.
13669 (fill-paragraph): Don't leave point inside the fill-prefix.
13670 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
13671 point inside the fill-prefix.
13672
13673 2000-11-13 Miles Bader <miles@lsi.nec.co.jp>
13674
13675 * calendar/calendar.el (generate-calendar-window):
13676 Use `fit-window-to-buffer'.
13677
13678 2000-11-12 Stefan Monnier <monnier@cs.yale.edu>
13679
13680 * gud.el (gud-minor-mode): New var.
13681 (gud-symbol, gud-val): New functions.
13682 (gud-find-file): Copy gud-minor-mode to the new buffer.
13683 (gud-menu-map): Include entries for commands that are not always
13684 available, using :enable to (de)activate them.
13685 (gud-minor-mode-map): New map. Add it to minor-mode-map-alist.
13686 (gud-mode-map): New map.
13687 (gud-gdb-find-file, gud-sdb-find-file, gud-dbx-find-file)
13688 (gud-xdb-find-file, gud-perldb-find-file, gud-pdb-find-file):
13689 Don't set up gud's menu (it's done by the minor-mode).
13690 (gud-minibuffer-local-map): New.
13691 Replace gdb-minibuffer-local-map and pdb-minibuffer-local-map.
13692 (gud-query-cmdline): New function.
13693 (gdb, sdb, dbx, xdb, perldb, pdb, jdb): Use it. Set gud-minor-mode.
13694 (gud-mode): Use define-derived-mode.
13695 Don't set up gud's menu (it's done by the minor-mode).
13696 (gud-chop-words): Remove.
13697 (gud-common-init): Use split-string instead.
13698 (gud-new-keymap, gud-make-debug-menu): Eradicate.
13699
13700 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
13701 Add keyword arg :name.
13702
13703 * diff-mode.el (diff-mode-menu): Add entry for applying hunk.
13704 (diff-count-matches, diff-split-hunk): New functions.
13705 (diff-mode-map): Bind C-c C-s to diff-split-hunk.
13706
13707 * pcvs-info.el (cvs-fi-conflict-face): New var.
13708
13709 * progmodes/sh-script.el (sh-mode-syntax-table) <defvar>:
13710 Make it into a simple syntax-table, shared among all submodes.
13711 (sh-heredoc-face): Re-introduce.
13712 (sh-font-lock-syntactic-face-function): New function.
13713 (sh-mode): Use it. Also use define-derived-mode.
13714 Remove old bogus setting of indent-region-function.
13715 (sh-set-shell): Don't set the syntax-table any more.
13716 (sh-mode-syntax-table) <defun>: Remove.
13717
13718 2000-11-12 Miles Bader <miles@gnu.org>
13719
13720 * textmodes/flyspell.el (flyspell-mode-on): Only output welcome
13721 message if interactive.
13722
13723 2000-11-12 Dave Love <fx@gnu.org>
13724
13725 * mail/feedmail.el: Fix header,
13726 (feedmail) <defgroup>: Add :link.
13727
13728 * view.el: Use local-map property, not keymap on mode-line string.
13729
13730 * scroll-all.el (scroll-all-mode): Customize variable.
13731 Add autoload cookie to function.
13732
13733 * lazy-lock.el: Remove compatibility code.
13734
13735 * finder.el (finder-known-keywords): Add `files', remove `vms'.
13736 (finder-help-echo): New variable.
13737 (finder-mouse-face-on-line): Add help-echo stuff.
13738 (finder-list-keywords, finder-list-matches): Use mapc.
13739
13740 * faces.el (face-font-registry-alternatives): Add :version.
13741
13742 * progmodes/etags.el (visit-tags-table-buffer): Beware of `t' in
13743 tags-table-list.
13744
13745 * net/browse-url.el (browse-url-browser-function): Update :version.
13746
13747 * mail/sendmail.el (mail-font-lock-keywords): Use [:alpha:], not a-z.
13748 (mail-mode): Use [:alnum:] in some regexps.
13749
13750 2000-11-10 Dave Love <fx@gnu.org>
13751
13752 * ediff.el (ediff-regions-internal, ediff-documentation):
13753 * ediff-vers.el (rcs-ediff-view-revision): Put temp buffer into
13754 fundamental mode.
13755
13756 * ediff-util.el (ediff-status-info, ediff-debug-info): Put temp
13757 buffer into fundamental mode.
13758 (ediff-set-difference): Use copy-sequence if available.
13759
13760 * ediff-ptch.el (ediff-dispatch-file-patching-job):
13761 Check ediff-patch-map non-nil.
13762 (ediff-fixup-patch-map, ediff-fixup-patch-map)
13763 (ediff-fixup-patch-map, ediff-patch-file-internal): Put temp
13764 buffer into fundamental mode.
13765
13766 * ediff-merg.el (state-or-merge): Defvar when compiling.
13767
13768 2000-11-10 Jason Rumney <jasonr@gnu.org>
13769
13770 * w32-fns.el (w32-add-charset-info): New function.
13771 (w32-charset-info-alist): Use it.
13772
13773 2000-11-10 Gerd Moellmann <gerd@gnu.org>
13774
13775 * faces.el (face-font-registry-alternatives): New user-option.
13776
13777 2000-11-10 Stefan Monnier <monnier@cs.yale.edu>
13778
13779 * textmodes/texinfo.el (texinfo-block-default): New var.
13780 (texinfo-insert-block): Use it. Insert a newline if needed.
13781
13782 * textmodes/fill.el (fill-indent-according-to-mode): New var.
13783 (fill-region-as-paragraph): Use it.
13784
13785 * textmodes/tex-mode.el (standard-latex-block-names): Add "math".
13786 (latex-mode): Tweak tex-*-(head|trail)er regexps.
13787 Tweak paragraph regexps to allow a leading [ \t]*.
13788 (tex-latex-block): Insert a newline if necessary.
13789 (latex-insert-item): Only insert a newline if necessary.
13790 (tex-guess-main-file): New function.
13791 (tex-main-file): Use it. Add arg `realfile'. Trim `.tex'.
13792 Set tex-main-file if TeX-master is provided.
13793 (tex-latex-indent-syntax-table): Map ( and ) to punctuation.
13794
13795 2000-11-10 Gerd Moellmann <gerd@gnu.org>
13796
13797 * startup.el (command-line): Set the default tooltip-mode
13798 to t for graphical displays which implement x-show-tip.
13799
13800 * tooltip.el (tooltip-mode): Add a comment about startup.el
13801 setting the default value of this user-option.
13802
13803 2000-11-09 Stefan Monnier <monnier@cs.yale.edu>
13804
13805 * font-lock.el (font-lock-*-face) <defvar>: Move.
13806 (font-lock-defaults-alist): Mark obsolete.
13807 (font-lock-mode, font-lock-mode-hook) <defvar>: Remove.
13808 (font-lock-mode): Use define-minor-mode.
13809 (font-lock-support-mode): Tweak type to default to jit-lock-mode.
13810 (font-lock-turn-off-thing-lock): Be more explicit.
13811 (font-lock-apply-syntactic-highlight): Use string-to-syntax after eval.
13812 (font-lock-syntactic-face-function): New var.
13813 (font-lock-fontify-syntactically-region): Use it.
13814 (font-lock-doc-face): New.
13815
13816 * pcvs.el (cvs-enabledp): Ignore errors.
13817 (cvs-commit-filelist): Never query.
13818 (cvs-mode-insert): Always add a terminating / in the initial prompt.
13819 (cvs-mode-diff-backup): Use cvs-partition rather than delete-if-not.
13820 (cvs-do-removal): Use cvs-partition rather than delete-if.
13821 Use cvs-insert-strings, cvs-pop-to-buffer-same-frame and
13822 cvs-bury-buffer.
13823
13824 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
13825 Allow `next' to jump to after the end of the last match.
13826
13827 2000-11-09 Gerd Moellmann <gerd@gnu.org>
13828
13829 * simple.el (byte-compiling-files-p): New function.
13830
13831 * textmodes/ispell.el (toplevel): Use byte-compiling-files-p
13832 if it is there.
13833
13834 * emacs-lisp/bytecomp.el (byte-compile-current-file): Bind it to
13835 nil again.
13836
13837 * textmodes/ispell.el (ispell-library-path): Don't call
13838 check-ispell-version when byte-compiling because that starts
13839 an ispell process, and ispell might not be installed.
13840 (toplevel): Don't set up a menu when byte-compiling.
13841
13842 * emacs-lisp/bytecomp.el (byte-compile-current-file): Don't bind
13843 it, so that a boundp test can be used to determine if we're
13844 currently byte-compiling.
13845
13846 2000-11-09 Dave Love <fx@gnu.org>
13847
13848 * pcvs.el (uniquify-buffer-file-name): Wrap advice in eval-after-load.
13849
13850 2000-11-09 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13851
13852 * ps-print.el: Patch for variable initialization when spooling.
13853 Doc fix.
13854 (ps-output-list): Fun eliminated.
13855 (ps-begin-file, ps-begin-job): Code fix.
13856
13857 2000-11-08 Dave Love <fx@gnu.org>
13858
13859 * ediff-wind.el (ediff-control-frame-parameters): Zero tool-bar-lines.
13860
13861 2000-11-08 Gerd Moellmann <gerd@gnu.org>
13862
13863 * simple.el (shell-command, display-message-or-buffer)
13864 (shell-command-on-region): Mention resize-mini-windows in the doc
13865 string.
13866 (display-message-or-buffer): Take the value of resize-mini-windows
13867 into account.
13868
13869 2000-11-07 Gerd Moellmann <gerd@gnu.org>
13870
13871 * macros.el (insert-kbd-macro): Print semi-colons as `?\;'.
13872
13873 * dired.el (dired-between-files): Add `^. find' as an alternative
13874 to the regular expression, for find-dired.
13875
13876 2000-11-06 Stefan Monnier <monnier@cs.yale.edu>
13877
13878 * textmodes/texnfo-upd.el: Require texinfo.
13879 (defmacro, defgroup): Remove.
13880 (texinfo-section-to-generic-alist): Remove.
13881 Use texinfo-section-list instead (i.e. level is changed string->int).
13882 (texinfo-filter): New function.
13883 (texinfo-chapter-level-regexp, texinfo-subsubsection-level-regexp)
13884 (texinfo-subsection-level-regexp, texinfo-section-level-regexp):
13885 Use it. And use regexp-opt.
13886 (texinfo-find-higher-level-node, texinfo-hierarchic-level)
13887 (texinfo-update-menu-region-beginning)
13888 (texinfo-update-menu-higher-regexps, texinfo-update-menu-lower-regexps)
13889 (texinfo-update-the-node, texinfo-sequentially-update-the-node)
13890 (texinfo-update-menu-same-level-regexps): Update.
13891 (texinfo-update-node, texinfo-every-node-update)
13892 (texinfo-sequential-node-update): Remove autoload cookie.
13893
13894 * textmodes/texinfo.el (texinfo-section-list): Change majorheading.
13895 (texinfo-font-lock-syntactic-keywords): Use syntax-strings.
13896 (texinfo-chapter-level-regexp): Remove.
13897 (texinfo-mode): Hard code texinfo-chapter-level-regexp.
13898
13899 2000-11-06 Dave Love <fx@gnu.org>
13900
13901 * autoinsert.el (auto-insert-alist) <latex-mode>: Use \documentclass.
13902
13903 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
13904 Match defun*.
13905
13906 2000-11-06 Kenichi Handa <handa@etl.go.jp>
13907
13908 * composite.el (composition-function-table): Variable declaration
13909 moved to src/composite.c.
13910 (compose-chars-after): New optional arg object.
13911
13912 2000-11-06 Gerd Moellmann <gerd@gnu.org>
13913
13914 * bindings.el (mode-line-toggle-read-only)
13915 (mode-line-toggle-modified, mode-line-widen)
13916 (mode-line-abbrev-mode, mode-line-auto-fill-mode): New functions.
13917 (make-mode-line-mouse2-map): Rewritten.
13918 (mode-line-modified, mode-line-format, minor-mode-alist): Use new
13919 functions so that C-h k can show something with a doc string.
13920
13921 * startup.el (fancy-splash-delay): Set to 10 seconds.
13922 (fancy-splash-max-time): New user-option.
13923 (fancy-splash-stop-time): New variable.
13924 (fancy-splash-screens): Set it. Catch `stop-splashing'.
13925 (fancy-splash-screens-1): Throw `stop-splashing' when current
13926 time is greater than fancy-splash-stop-time.
13927
13928 2000-11-06 Stefan Monnier <monnier@cs.yale.edu>
13929
13930 * vc-hooks.el (vc-insert-file): Don't assume byte==char.
13931
13932 * pcvs.el (cvs-mode-marked): New arg `noquery'.
13933 Prompt user for a file rather than raising an error.
13934 (cvs-enabledp): Fix call to cvs-mode-marked.
13935 (cvs-insert-file): New function (extracted from cvs-mode-insert).
13936 (cvs-mode-insert): Use it. Change the init prompt' value.
13937 (cvs-mode-tree): Use cvs-status-cvstrees instead of cvs-status-trees.
13938
13939 * emacs-lisp/ewoc.el (ewoc-goto-prev, ewoc-goto-next):
13940 Don't pass default arg to ewoc-locate.
13941 (ewoc-collect): Return result in the right order.
13942
13943 * log-edit.el (log-edit-show-files): Use cvs-insert-strings.
13944
13945 * cvs-status.el (cvs-tree-merge): Use cvs-butlast (avoid CL).
13946 (cvs-status-get-tags): Fix regexp.
13947 (cvs-status-trees, cvs-status-cvstrees):
13948 Combine after change hooks and don't sit-for.
13949 (cvs-tree-use-jisx0208): Rename from cvs-tree-dstr-2byte-ready.
13950 (cvs-tree-char-*): Rename from cvs-tree-dstr-char-*.
13951 Use make-char rather than hard-coded cryptic data.
13952 (cvs-status-cvstrees): Convert the buffer to multibyte if necessary.
13953
13954 * pcvs-defs.el (cvs-menu): Add entries for tree and insert.
13955
13956 * pcvs-util.el (cvs-butlast, cvs-nbutlast): New (copied from CL).
13957 (cvs-insert-strings): New function.
13958
13959 2000-11-06 Miles Bader <miles@lsi.nec.co.jp>
13960
13961 * mwheel.el (mouse-wheel-scroll-amount): Renamed from
13962 `mwheel-scroll-amount'.
13963 (mouse-wheel-follow-mouse): Renamed from `mwheel-follow-mouse'.
13964 (mouse-wheel-mode): Use (featurep 'xemacs) instead of
13965 string-matching against the version string.
13966
13967 2000-11-06 Kenichi Handa <handa@etl.go.jp>
13968
13969 * language/thai.el ("Thai"): Set a lisp form that produces
13970 composed string in `sample-text' language info.
13971
13972 * language/tibetan.el ("Tibetan"): Set a lisp form that produces
13973 composed string in `sample-text' language info.
13974
13975 * international/mule-cmds.el (describe-language-environment):
13976 Eval `sample-text' data and insert the result.
13977
13978 * international/mule-conf.el (compound-text): Define this coding
13979 system here. Make x-ctext and ctext aliases of it.
13980
13981 * language/european.el (compound-text, ctext): Moved to
13982 international/mule-conf.el.
13983
13984 2000-11-05 Andrew Innes <andrewi@gnu.org>
13985
13986 * w32-fns.el (w32-version): New function.
13987
13988 2000-11-05 Stefan Monnier <monnier@cs.yale.edu>
13989
13990 * progmodes/awk-mode.el: Update copyright.
13991 (awk-mode-abbrev-table): Remove.
13992 (awk-font-lock-keywords): Use regexp-opt.
13993 (awk-mode): Use define-derived-mode.
13994
13995 * emacs-lisp/regexp-opt.el (regexp-opt-group): Sort the strings
13996 when extracting a suffix.
13997
13998 2000-11-04 Andre Spiegel <spiegel@gnu.org>
13999
14000 * vc-hooks.el (vc-insert-file): Rewritten. Don't bother about
14001 auto-save-mode.
14002
14003 2000-11-04 Jason Rumney <jasonr@gnu.org>
14004
14005 * language/european.el (decode-mac-roman): Test against r1 not r0.
14006
14007 2000-11-03 Stefan Monnier <monnier@cs.yale.edu>
14008
14009 * progmodes/icon.el (icon-mode-map): Don't rebind \t.
14010 (icon-mode): Define indent-line-function.
14011 (icon-comment-indent): Simplify.
14012 (icon-font-lock-keywords-2): Use the `words' arg to regexp-opt.
14013
14014 * emacs-lisp/find-func.el (find-function-do-it): Quote the hook.
14015
14016 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
14017 Bind change-log-default-mode to defeat the caching done on it.
14018 Don't bother saving excursion any more.
14019
14020 * menu-bar.el (minibuffer maps): Use dolist rather than mapcar.
14021
14022 * frame.el (after-setting-font-hook): Rename hooks -> hook.
14023 (set-frame-font): Use the new name (and the old for compatibility).
14024
14025 * toolbar/tool-bar.el (tool-bar-mode):
14026 * time.el (display-time-mode):
14027 * recentf.el (recentf-mode):
14028 * paren.el (show-paren-mode):
14029 * mwheel.el (mouse-wheel-mode):
14030 * msb.el (msb-mode):
14031 * jka-compr.el (auto-compression-mode):
14032 * image-file.el (auto-image-file-mode):
14033 * hl-line.el (hl-line-mode):
14034 * delsel.el (delete-selection-mode):
14035 * autoinsert.el (auto-insert-mode):
14036 * complete.el (partial-completion-mode): Drop unneeded positional args.
14037
14038 * info.el (Info-mode):
14039 * comint.el (comint-mode): Don't bother with make-local-hook.
14040
14041 * log-edit.el (log-edit-menu): New menu.
14042
14043 2000-11-03 Miles Bader <miles@gnu.org>
14044
14045 * wid-edit.el (widget-end-of-line): Reinstate, with a new
14046 definition, so that trailing spaces are handled properly.
14047 (widget-field-keymap, widget-text-keymap): Likewise C-e binding.
14048
14049 2000-11-03 Gerd Moellmann <gerd@gnu.org>
14050
14051 * startup.el (fancy-splash-text, fancy-splash-text): Use a single
14052 tab character.
14053 (fancy-splash-screens): Set tab-width to 20.
14054
14055 2000-11-03 Dave Love <fx@gnu.org>
14056
14057 * comint.el (comint-completion-addsuffix): Fix custom type.
14058
14059 2000-11-02 Stefan Monnier <monnier@cs.yale.edu>
14060
14061 * font-lock.el (font-lock-buffers): Remove.
14062 (font-lock-global-modes): Define with easy-mmode-define-global-mode.
14063 (font-lock-change-major-mode): Remove.
14064 (turn-on-font-lock-if-enabled): Only apply to the current buffer.
14065 (font-lock-default-fontify-region): Extend the multiline
14066 fontification to whole lines.
14067 (font-lock-fontify-anchored-keywords)
14068 (font-lock-fontify-keywords-region): If matching just one
14069 line (with \n) only mark the \n as multiline.
14070
14071 * emacs-lisp/easy-mmode.el (define-minor-mode): Remove :toggle arg.
14072 Correctly handle the case where several :group args are supplied.
14073 Allow :extra-args.
14074 (easy-mmode-define-global-mode): Allow :extra-args.
14075 Correctly handle the case where several :group args are supplied.
14076
14077 2000-11-02 Miles Bader <miles@gnu.org>
14078
14079 * calendar/calendar.el (diary-face, calendar-today-face)
14080 (holiday-face): Remove dependency on `window-system'.
14081
14082 2000-11-02 Ken Raeburn <raeburn@gnu.org>
14083
14084 * Makefile.in (emacs): Set EMACSLOADPATH always.
14085 (update-authors, .el.elc, compile-files): Don't do it explicitly here.
14086 (compile-files): Bomb out if compilation of a file fails.
14087
14088 2000-11-02 Dave Love <fx@gnu.org>
14089
14090 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup.
14091
14092 2000-11-02 Eli Zaretskii <eliz@is.elta.co.il>
14093
14094 * mail/emacsbug.el (report-emacs-bug): Fix whitespace and
14095 punctuation in the warning inserted into the *mail* buffer.
14096
14097 2000-11-02 Gerd Moellmann <gerd@gnu.org>
14098
14099 * emacs-lisp/authors.el (authors-public-domain-files): New variable.
14100 (authors-public-domain-p): New function.
14101 (authors-print): Use it.
14102
14103 * help.el (view-emacs-news): Use ONEWS.* instead of NEWS.* files.
14104
14105 * mail/mh-e.el, mail/mh-comp.el: Change maintainer.
14106
14107 2000-11-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14108
14109 * ps-print.el: Extension for even/odd printing. Doc fix.
14110 (ps-print-version): New version number (6.3.1).
14111 (ps-even-or-odd-pages): Customization fix.
14112 (ps-print-page-p, ps-begin-file, ps-begin-job, ps-page-number)
14113 (ps-header-sheet, ps-header-page, ps-end-job): Code fix.
14114 (ps-page-count): Var replaced by `ps-page-column'.
14115 (ps-page-column, ps-page-sheet, ps-page-printed): New vars.
14116 (ps-print-sheet-p): New fun.
14117
14118 2000-11-02 Miles Bader <miles@lsi.nec.co.jp>
14119
14120 * tooltip.el (tooltip-gud-tips-setup): New function.
14121 (tooltip-gud-tips-p): Add :set to call tooltip-gud-tips-setup.
14122 (tooltip-mode): Call tooltip-gud-tips-setup.
14123 (tooltip-gud-tips): Use `gud-basic-call' instead of
14124 process-send-string, so the prompt gets frobbed appropriately.
14125 Handle nil return value from `tooltip-gud-print-command'.
14126
14127 2000-11-01 Eric M. Ludlam <zappo@ultranet.com>
14128
14129 * comint.el (comint-add-to-input-history): New function.
14130 (comint-send-input): Use `comint-add-to-input-history'.
14131
14132 2000-11-02 Miles Bader <miles@lsi.nec.co.jp>
14133
14134 * info.el (info-menu-header): New face.
14135 (Info-fontify-menu-headers): New function.
14136 (Info-fontify-node, Info-insert-dir): Call `Info-fontify-menu-headers'.
14137
14138 * info.el (Info-insert-dir): Don't include blank lines at
14139 beginning of additional dir files (one is added automatically).
14140
14141 2000-11-01 Stefan Monnier <monnier@cs.yale.edu>
14142
14143 * emacs-lisp/easy-mmode.el (define-minor-mode):
14144 Revert the latest changes.
14145 Allow the three positional arguments to be skipped and replaced
14146 by keyword arguments.
14147 Add a :toggle argument to determine whether a nil arg means toggle
14148 or means turn-on. The default is unchanged.
14149 Add a call to force-mode-line-update.
14150
14151 2000-11-01 Dave Love <fx@gnu.org>
14152
14153 * emacs-lisp/elp.el (elp-restore-function): Remove autoload cookie.
14154
14155 2000-11-01 Miles Bader <miles@lsi.nec.co.jp>
14156
14157 * calendar/calendar.el (diary-face, holiday-face):
14158 Add dark-background variants.
14159
14160 2000-10-31 Sam Steingold <sds@gnu.org>
14161
14162 * textmodes/tex-mode.el (tex-file): Use `default-directory' when
14163 `tex-main-file' does not have directory in it.
14164
14165 2000-10-31 Stefan Monnier <monnier@cs.yale.edu>
14166
14167 * cus-edit.el (custom-mode-map): Switch back to a sparse keymap.
14168
14169 2000-10-31 Thien-Thi Nguyen <ttn@gnu.org>
14170
14171 * ediff-init.el (ediff-prepare-buffer-hook): Expand docstring, no
14172 functional change.
14173
14174 2000-10-31 Gerd Moellmann <gerd@gnu.org>
14175
14176 * files.el (find-file-noselect): When we expand a wildcard, return
14177 a list of buffers, as we should do according to the doc string.
14178
14179 2000-10-31 Ken Raeburn <raeburn@gnu.org>
14180
14181 * loadup.el (top level): Adjust load path if program name is
14182 "../src/bootstrap-emacs", in case it's not dumped and thus the
14183 load path adjustment hasn't already been done.
14184
14185 2000-10-31 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14186
14187 * ps-print.el: Fix bug on selected pages for printing.
14188 Use `color-values' for Emacs 21. Ensure fontification when jit-lock
14189 is on. Try to avoid warning messages when compiling. Doc Fix.
14190 (ps-print-version): New version number (6.3).
14191 (ps-color-device): Use `color-values' to determine if device
14192 supports color.
14193 (ps-color-values): Try to use `x-color-values' when using XEmacs.
14194 (ps-print-page-p): Changed from defsubst to defun.
14195 (ps-page-number): Changed from defmacro to defun.
14196 (ps-header-sheet, ps-header-page): Fix bug on selected pages for
14197 printing.
14198 (ps-print-ensure-fontified): Ensure fontification when jit-lock is on.
14199 (ps-end-file, ps-dummy-page): Funs eliminated.
14200 (ps-print-color-scale): Changed default value.
14201 (ps-page-n-up, ps-print-page-p): New internal vars.
14202 (ps-print-preprint, ps-output, ps-begin-file, ps-begin-page)
14203 (ps-plot-region, ps-generate, ps-end-job): Code fix.
14204
14205 * delim-col.el: Little programming improvement.
14206 (delimit-columns-str): New macro.
14207 (delimit-columns-region, delimit-columns-rectangle): Code fix.
14208
14209 2000-10-31 Kenichi Handa <handa@etl.go.jp>
14210
14211 * term/mac-win.el (decode-mac-roman, encode-mac-roman, mac-roman):
14212 Moved to european.el.
14213 (ccl-encode-mac-roman-font, fontset-mac): Modified for
14214 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
14215 (mac-roman-kbd-insert, mac-roman-kbd-mode): These functions deleted.
14216 (mac-roman-kbd-mode, mac-roman-kbd-mode-map): These variables deleted.
14217
14218 2000-10-30 Dave Love <fx@gnu.org>
14219
14220 * progmodes/cc-menus.el (imenu-generic-expression)
14221 (imenu-progress-message): Only defvar when compiling.
14222
14223 * emacs-lisp/elp.el (elp-unload-hook): New function.
14224
14225 * loadhist.el (unload-feature): Call elp-restore-function,
14226 checking for symbols; don't use elp-restore-all.
14227 (loadhist-hook-functions): Doc fix.
14228
14229 2000-10-30 Stefan Monnier <monnier@cs.yale.edu>
14230
14231 * log-edit.el (log-edit-confirm): Fix the default.
14232
14233 2000-10-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14234
14235 * delim-col.el: Little fix: replace delimit-columns-align-columns by
14236 delimit-columns-format.
14237 (delimit-columns-region, delimit-columns-rectangle): Code fix.
14238
14239 2000-10-30 Miles Bader <miles@lsi.nec.co.jp>
14240
14241 * comint.el (comint-replace-by-expanded-history): Don't use
14242 comint-get-old-input (we're not looking at *old* input).
14243 (comint-get-old-input-default): If using fields, signal an error
14244 when the point is not in an input field.
14245
14246 2000-10-30 Kenichi Handa <handa@etl.go.jp>
14247
14248 * international/mule-conf.el: New charsets mule-unicode-2500-33ff
14249 and mule-unicode-e000-ffff.
14250
14251 * international/mule.el (decode-char, encode-char): New functions.
14252 (make-coding-system): Accept a symbol of translation table as a
14253 value of property `safe-chars'.
14254
14255 * international/mule-cmds.el (encode-coding-char): Check property
14256 safe-chars instead of safe-charsets.
14257
14258 * international/fontset.el (fontset-default): Modified for
14259 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
14260 (x-font-name-charset-alist): Likewise.
14261 (ccl-encode-unicode-font): New CCL program. Record it in
14262 font-ccl-encoder-alist to be used for fonts "ISO10646-1".
14263
14264 * language/european.el (mac-roman-decoder, mac-roman-encoder):
14265 New translation tables.
14266 (decode-mac-roman, encode-mac-roman): Definition of these CCL
14267 programs are modified and moved from mac-win.el.
14268 (mac-roman): Definition of this coding system is modified and
14269 moved from mac-win.el.
14270
14271 2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
14272
14273 * ediff-wind.el (ediff-setup-control-frame): Enclose
14274 face-attribute in condition-case to avoid errors in older emacsen.
14275
14276 2000-10-29 Miles Bader <miles@gnu.org>
14277
14278 * custom.el (custom-add-to-group): Allow multiple entries for a
14279 given value OPTION, as long as their widget types are different.
14280 * cus-edit.el (custom-face-value-create): If face name doesn't end
14281 with "face", add such here (similar to custom group widgets).
14282
14283 * comint.el (comint-highlight-prompt): Add :type.
14284
14285 2000-10-28 John Wiegley <johnw@gnu.org>
14286
14287 * calendar/timeclock.el (timeclock-log): Doc fix.
14288 (timeclock-last-event): Doc fix.
14289 (timeclock-log): Kill the timelog buffer after appending a new event.
14290 (timeclock-find-discrep): Use a temp buffer to read in the
14291 timelog, instead of visiting the file.
14292 (timeclock-log-data): A new function, along with a host of helper
14293 functions, for the purpose of making timelog data accessible to
14294 programmers.
14295
14296 * eshell/esh-mode.el (window-height test): Make certain that
14297 `eshell-stringify-t' is non-nil.
14298 (eshell-password-prompt-regexp): Changed to a much simpler
14299 password regexp.
14300 (eshell-send-input): If `eshell-invoke-directly' returns t,
14301 directly invoke the parsed command using `eval'. This improves
14302 turn-around time on simple commands by a factor of three or
14303 greater, such as cd, ls, pwd, etc. -- which get used very often.
14304 It also conserves thousands of cons cells per call (since
14305 `eshell-do-eval' consumes memory like a Cookie Monster set loose
14306 in the Pacific Cookie Company).
14307
14308 * eshell/esh-test.el (eshell-test): Whitespace fix.
14309
14310 * eshell/em-ls.el (eshell-ls-insert-directory):
14311 Make `eshell-ls-initial-args' nil when inserting directory contents.
14312
14313 * eshell/em-script.el (eshell-script-initialize): Add names to
14314 `eshell-complex-commands, since `source' and `.' are complex.
14315
14316 * eshell/esh-cmd.el (eshell-rewrite-for-command)
14317 (eshell-rewrite-while-command): Use `eshell-protect' instead of
14318 `eshell-copy-handles'.
14319 (eshell-rewrite-if-command): Use `eshell-protect' to wrap the call
14320 bodies.
14321 (eshell-separate-commands): Whitespace fix.
14322 (eshell-complex-commands): Added a new list of names, for
14323 determining whether a given command is as simple as it looks.
14324 (eshell-invoke-directly): New function. Returns t if a command
14325 should be invoked directly (using `eval'), rather than indirectly
14326 using `eshell-do-eval'.
14327 (eshell-do-eval): Whitespace fix.
14328
14329 * eshell/em-unix.el (eshell-default-target-is-dot): New variable,
14330 which provides an emulation of the DOS shell behavior of assuming
14331 that cp/mv/ln should copy/move/link to the current directory.
14332 (eshell-remove-entries): Added a doc string.
14333 (eshell-shuffle-files): Removed the check for `target' being null.
14334 (eshell-mvcp-template, eshell-mvcpln-template): Renamed
14335 `eshell-mvcp-template' to `eshell-mvcpln-template', and extended
14336 it to do a smarter check of whether a destination was provided.
14337 (eshell/mv, eshell/cp): Enable `:preserve-args'.
14338 (eshell/ln): Enable `:preserve-args', and use
14339 `eshell-mvcpln-template' to implement the body of the function.
14340 (eshell/cat, eshell/make, eshell-poor-mans-grep, eshell-grep)
14341 (eshell/du, eshell/diff, eshell/locate): Stringify the argument
14342 list after flattening it. This makes it possible to cat files
14343 with numerical names.
14344 (eshell-unix-initialize): Added several names to
14345 `eshell-complex-commands.
14346 (eshell-unix-command-complex-p): Return t if a given command name
14347 may result in external processes being invoked.
14348
14349 * eshell/em-glob.el (eshell-glob-show-progress): Make this
14350 variable nil by default, since it slows down glob processing by a
14351 factor of two or more, and increases memory consumption.
14352
14353 * eshell/em-smart.el: Added a note about how memory consumptive
14354 smart display mode can be (at least this is true in Emacs 21).
14355 (eshell-smart-initialize): Whitespace fix.
14356 (eshell-refresh-windows): Use `if' instead of `when'.
14357 (eshell-smart-scroll-window): Calling `save-current-buffer' was
14358 not necessary.
14359 (eshell-currently-handling-window): Added a missing global variable.
14360
14361 * eshell/em-ls.el (eshell-do-ls): Code simplification.
14362 (eshell-ls-sort-entries, eshell-ls-entries, eshell-ls-dir):
14363 Whitespace fix.
14364 (eshell-ls-exclude-hidden): Added this variable in addition to
14365 `eshell-ls-exclude-regexp'. This one prevents files beginning
14366 with . from even being read, which can improve memory consumption
14367 quite a bit.
14368 (eshell-ls-dir): If `eshell-ls-exclude-hidden' is non-nil, do not
14369 read file entries beginning with a dot. In home directories with
14370 lots of hidden files, fully two-thirds of the time spent in ls is
14371 used to read directory entries that are immediately thrown away.
14372 (eshell-ls-initial-args): Added back this configuration variable,
14373 for specifying default initial arguments to every call to ls.
14374 Much faster than using an alias to do the same thing.
14375 (eshell-do-ls): Use `eshell-ls-initial-args', if set.
14376 (eshell-ls-dir): Whitespace change.
14377
14378 * eshell/em-dirs.el (eshell/pwd): Small code simplification.
14379
14380 * eshell/esh-util.el: Don't require `ange-ftp' if it's not available.
14381 (eshell-stringify-t): Added a customization variable, to indicate
14382 whether `t' should be rendered as a string at all. If not, one
14383 can still determine if the result of an expression is true using
14384 "file-exists-p FILE && echo true".
14385 (eshell-stringify): If `eshell-stringify-t' is nil, don't
14386 stringify t!
14387
14388 * eshell/esh-module.el: Whitespace fix.
14389
14390 * eshell/em-alias.el (eshell-alias-initialize):
14391 Added `eshell-command-aliased-p' to `eshell-complex-commands'.
14392 (eshell-command-aliased-p): New function that returns t if a
14393 command name names an aliased.
14394
14395 2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
14396
14397 * viper-cmd.el (viper-preserve-cursor-color): New test that avoids
14398 redrawing the screen when changing cursor color.
14399 (viper-insert-state-pre-command-sentinel)
14400 (viper-replace-state-pre-command-sentinel)
14401 (viper-replace-state-post-command-sentinel):
14402 Use viper-preserve-cursor-color.
14403 Many functions changed to use viper= instead of = when comparing
14404 characters.
14405 * viper-util.el (viper-memq-char,viper=): New functions for
14406 working with characters.
14407 (viper-change-cursor-color): Fixed buglet.
14408 Many functions changed to use viper= instead of = when comparing
14409 characters.
14410 * viper.el (viper-insert-state-mode-list): Added eshell.
14411
14412 * ediff-init.el (ediff-before-setup-hook): New hook.
14413 Several typos fixed in various docstrings.
14414 * ediff-merg.el (ediff-show-clashes-only): Docstring typo fixed.
14415 * ediff-nult.el (ediff-before-session-group-setup-hooks): New hook.
14416 (ediff-show-meta-buffer): Run ediff-before-session-group-setup-hooks.
14417 * ediff-util.el (ediff-setup): Run ediff-before-setup-hook.
14418 (ediff-other-buffer): Use selected buffers if in Buffer-menu buffer.
14419 (ediff-get-selected-buffers): New function.
14420 * ediff-vers.el (ediff-vc-internal,ediff-rcs-internal)
14421 (ediff-vc-merge-internal,ediff-rcs-merge-internal):
14422 Use save-window-excursion.
14423 * ediff-wind.el (ediff-skip-unsuitable-frames): More robust
14424 termination check in while loop.
14425 * ediff.el (ediff-get-default-file-name): Better defaults when in
14426 dired buffer.
14427 (ediff-files,ediff-merge-files,ediff-files3)
14428 (ediff-merge-files-with-ancestor): Use ediff-get-default-file-name.
14429
14430 2000-10-28 Dave Love <fx@gnu.org>
14431
14432 * info.el (Info-fontify-node): Add help-echo for menu items.
14433
14434 2000-10-28 Eli Zaretskii <eliz@is.elta.co.il>
14435
14436 * startup.el (normal-top-level): If the value of $TERM indicates
14437 we are running from xterm or one of its work-alikes, default to a
14438 light background mode.
14439
14440 Support for -fg, -bg, and -rv command-line arguments for TTYs:
14441 * faces.el (tty-handle-reverse-video): New function.
14442 (tty-create-frame-with-faces): Call it.
14443
14444 * frame.el (frame-notice-user-settings): Don't apply
14445 default-frame-alist and initial-frame-alist to MS-DOS frames.
14446 Call tty-handle-reverse-video, frame-set-background-mode, and
14447 face-set-after-frame-default for non-MS-DOS frames.
14448
14449 * startup.el (tty-long-option-alist): New variable.
14450 (tty-handle-args): New function.
14451 (command-line): Call tty-handle-args.
14452
14453 * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove;
14454 startup.el now does that for all character-terminal frames.
14455
14456 2000-10-28 Miles Bader <miles@gnu.org>
14457
14458 * emacs-lisp/easy-mmode.el (define-minor-mode):
14459 Generate `turn-on-MODE' and `turn-off-MODE' functions unless the mode
14460 is global. If :global is followed by a non-nil but non-t value,
14461 make the mode buffer-local, but also generate a `global-MODE'
14462 version using `easy-mmode-define-global-mode'.
14463 Add :conditional-turn-on keyword argument.
14464
14465 2000-10-28 Dave Love <fx@gnu.org>
14466
14467 * international/latin1-disp.el (latin1-char-displayable-p):
14468 Don't use window-system.
14469
14470 2000-10-27 Eli Zaretskii <eliz@is.elta.co.il>
14471
14472 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
14473 Don't call find-buffer-file-type-coding-system. Instead, just
14474 set eol-type to -unix if inhibit-eol-conversion is in effect, or
14475 if the file is on an untranslated filesystem.
14476 (add-untranslated-filesystem): Use "D" instead of "f" inside
14477 interactive.
14478
14479 2000-10-27 Dave Love <fx@gnu.org>
14480
14481 * textmodes/refill.el (refill-late-fill-paragraph-function): New var.
14482 (refill-mode): Use it.
14483
14484 2000-10-27 Stefan Monnier <monnier@cs.yale.edu>
14485
14486 * international/quail.el (quail-activate): Don't make-local-hook.
14487
14488 2000-10-27 Andre Spiegel <spiegel@gnu.org>
14489
14490 * vc-hooks.el (vc-version-backup-file-name): Use file.~<rev>~ for
14491 manual backups and file.~<rev>.~ for automatic ones.
14492 (vc-make-version-backup): Don't do it on MS-DOS without long file
14493 names.
14494
14495 * vc.el (vc-version-other-window): If an automatic backup of the
14496 desired version exists, rename it instead of copying it.
14497
14498 * vc-cvs.el (vc-cvs-checkin): Check both status and error message
14499 after command. If there's an unexpected error, signal it instead
14500 of being silent.
14501 (vc-cvs-merge-news): Be prepared for no news at all.
14502
14503 2000-10-27 Miles Bader <miles@lsi.nec.co.jp>
14504
14505 * shell.el (shell): Add BUFFER argument.
14506 * comint.el (make-comint-in-buffer): New function.
14507 (make-comint): Use it.
14508
14509 * faces.el (face-spec-choose): Change syntax so that the list of
14510 attribute-value pairs is now the cdr of each clause, not the cadr.
14511 Detect old-style entries, and handle them. Use pop.
14512
14513 2000-10-26 Stefan Monnier <monnier@cs.yale.edu>
14514
14515 * cus-edit.el (custom-mode-map): Use a sparse map.
14516 (custom-mode): Don't bother with make-local-hook.
14517
14518 * wid-edit.el (widget-add-change): Don't bother with make-local-hook.
14519
14520 * vc.el (vc-start-entry): Only erase the buffer if comment is set.
14521
14522 2000-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14523
14524 * ps-print.el: Avoid compilation gripes.
14525 (ps-print-version): New version number (6.2.1).
14526
14527 2000-10-26 Dave Love <fx@gnu.org>
14528
14529 * menu-bar.el: Modify some menu item help strings.
14530 (menu-bar-help-menu): Add link to MORE.STUFF.
14531
14532 * cus-edit.el (custom-mode): Add `special' mode-class property.
14533
14534 * wid-browse.el (widget-browse-mode): Likewise.
14535
14536 * wid-edit.el (widget-specify-field): Revert to using local-map
14537 property, not keymap.
14538
14539 2000-10-26 Miles Bader <miles@lsi.nec.co.jp>
14540
14541 * wid-edit.el (widget-field-end): When checking for a `boundary'
14542 field, do so in the correct buffer.
14543
14544 * simple.el (undo): Correctly distinguish between numeric and
14545 non-numeric prefix args in non-transient-mark-mode, as per the doc
14546 string. When in transient-mark-mode, treat all prefix-args as
14547 numeric.
14548
14549 * simple.el (previous-matching-history-element): Miscellaneous cleanup.
14550 Position point on match. Handle N == 0 correctly.
14551
14552 * comint.el (comint-mode): Locally set `next-line-add-newlines' to nil.
14553 (comint-mode-map): Reverse order of `comint-write-output' and
14554 `comint-append-output-to-file'.
14555 (comint-append-output-to-file): Reinstate this function, for the
14556 benefit of the menu.
14557
14558 2000-10-25 Stefan Monnier <monnier@cs.yale.edu>
14559
14560 * vc.el (vc-version-other-window): Bind `file'.
14561
14562 2000-10-25 Gerd Moellmann <gerd@gnu.org>
14563
14564 * Makefile.in (update-authors): New target for maintenance purposes.
14565
14566 * emacs-lisp/authors.el (batch-update-authors): New function.
14567 (authors-fixed-entries): New defconst.
14568 (authors-add-fixed-entries): New function.
14569 (authors): Call it.: Don't process lispref/.
14570
14571 2000-10-25 Jason Rumney <jasonr@gnu.org>
14572
14573 * cus-edit.el (custom-button-face, custom-button-pressed-face):
14574 Merge x w32 and mac definitions.
14575
14576 2000-10-25 Gerd Moellmann <gerd@gnu.org>
14577
14578 * menu-bar.el (menu-bar-options-menu): Add a help string for
14579 `uniquify'.
14580
14581 2000-10-25 Stephen Gildea <gildea@stop.mail-abuse.org>
14582
14583 * time-stamp.el (time-stamp-string-preprocess):
14584 Fix a wrong type argument error.
14585
14586 2000-10-25 Miles Bader <miles@gnu.org>
14587
14588 * recentf.el (recentf-mode): Variable removed.
14589 (recentf-mode): Use `define-minor-mode'.
14590
14591 * mwheel.el (mouse-wheel-mode): New global minor mode.
14592 (mwheel-install): Use `mouse-wheel-mode'.
14593
14594 2000-10-25 Dave Love <fx@gnu.org>
14595
14596 * progmodes/cperl-mode.el (cperl-mode):
14597 Set normal-auto-fill-function correctly.
14598
14599 * wid-edit.el (widget-field-keymap, widget-text-keymap):
14600 Don't inherit from global-map and don't nullify menu-bar and tool-bar
14601 bindings.
14602
14603 2000-10-25 Miles Bader <miles@lsi.nec.co.jp>
14604
14605 * wid-edit.el (widget-field-at): New function.
14606 (widget-at, widget-field-activate): Use it.
14607 (widget-tabable-at): Use `widget-at'.
14608 (widget-specify-field): If the terminating character of the widget
14609 field (which is read-only) is a newline, put it into a special
14610 `boundary' field so that C-n/C-p act more naturally.
14611 (widget-field-end): Also don't subtract one if a special
14612 `boundary' field has been added after the widget field.
14613
14614 * comint.el (comint-output-filter, comint-send-input):
14615 Don't bother adding stickiness fields to overlays to fool the field
14616 code, since it should notice the overlay insertion-types now.
14617
14618 * wid-edit.el (widget-beginning-of-line, widget-end-of-line):
14619 Replace with aliases of the normal emacs b-o-l/e-o-l functions.
14620 (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e.
14621
14622 2000-10-24 Gerd Moellmann <gerd@gnu.org>
14623
14624 * emacs-lisp/authors.el (authors-aliases): Add some more aliases.
14625 (authors): Set file coding system to iso-2022-7bit.
14626 Add file-local variables to output buffer.
14627
14628 * files.el (after-find-file): Don't print any warnings if
14629 WARN is nil.
14630
14631 2000-10-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14632
14633 * ps-print.el (ps-generate): Fix odd/even pages printing bug.
14634
14635 * delim-col.el: Now there is a column formatting mechanism.
14636 Modified to customization mechanisms convention. Doc fix.
14637 (columns): New group for delim-col.
14638 (delimit-columns-before, delimit-columns-after)
14639 (delimit-columns-format, delimit-columns-extra, delimit-columns-start)
14640 (delimit-columns-end): New vars.
14641 (delimit-columns-customize, delimit-columns-format): New funs.
14642 (delimit-columns-region, delimit-columns-rectangle)
14643 (delimit-columns-rectangle-line): Modified to support column
14644 formatting.
14645
14646 2000-10-24 Dave Love <fx@gnu.org>
14647
14648 * log-edit.el (log-edit): Add :version and a :group for vc.
14649
14650 2000-10-24 Gerd Moellmann <gerd@gnu.org>
14651
14652 * files.el (after-find-file): Don't print a message ``New file''
14653 if WARN is nil.
14654
14655 * wid-edit.el (widget-field-keymap, widget-text-keymap):
14656 Define the tool-bar map as nil, as for the menu-bar. Otherwise, we'll
14657 get duplicate tool-bar entries because we'll see the global ones
14658 on more than one path through keymaps.
14659
14660 * emacs-lisp/lisp.el (defun-prompt-regexp): Doc fix.
14661
14662 * progmodes/cmacexp.el: Change Francesco's email address.
14663
14664 2000-10-24 Kenichi Handa <handa@etl.go.jp>
14665
14666 * window.el (fit-window-to-buffer): Adjust point of the window
14667 buffer, not that of the current buffer.
14668
14669 2000-10-24 Eli Zaretskii <eliz@is.elta.co.il>
14670
14671 * progmodes/cmacexp.el: Update the euthor's email address.
14672
14673 2000-10-24 Miles Bader <miles@lsi.nec.co.jp>
14674
14675 * faces.el (face-spec-set-match-display): Add `graphic' display
14676 type (the inverse of `tty'). Use `display-graphic-p' instead of
14677 the window-system variable.
14678
14679 2000-10-24 Kenichi Handa <handa@etl.go.jp>
14680
14681 * international/isearch-x.el (isearch-with-input-method):
14682 Call input-method-function with the first event in
14683 unread-command-events.
14684
14685 2000-10-24 Miles Bader <miles@lsi.nec.co.jp>
14686
14687 * faces.el (face-default-spec, face-user-default-spec): Make defsubsts.
14688
14689 2000-10-24 Andrew Choi <akochoi@i-cable.com>
14690
14691 * international/mule-conf.el (mac-roman-lower, mac-roman-upper):
14692 New charsets.
14693
14694 * term/mac-win.el: Remove definitions of mac-roman-lower and
14695 mac-roman-upper, require dired, and define instead of set
14696 mac-ready-for-drag-n-drop to avoid compilation error.
14697
14698 2000-10-23 Andrew Innes <andrewi@gnu.org>
14699
14700 * files.el (make-backup-file-name-1) [windowsnt, ms-dos]:
14701 Remove superfluous calls to subst-char-in-string; instead apply
14702 expand-file-name after convert-standard-filename to ensure
14703 expected directory separators are used.
14704
14705 2000-10-23 Eli Zaretskii <eliz@is.elta.co.il>
14706
14707 * info.el (Info-file-list-for-emacs): Add an entry for Eshell.
14708
14709 2000-10-23 Dave Love <fx@gnu.org>
14710
14711 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
14712 (tool-bar-add-item): Set foreground and background for XBM icons.
14713
14714 * international/latin1-disp.el (latin1-char-displayable-p):
14715 New function (from Handa).
14716 (latin1-display-check-font): Use it.
14717
14718 * imenu.el (imenu--create-keymap-2): Build menu with menu-item
14719 using :key-sequence, making it much more usable.
14720 Use nconc, not append.
14721 (imenu--create-keymap-1): Avoid append.
14722
14723 * textmodes/refill.el: Remove bits redundant with define-minor-mode.
14724
14725 2000-10-23 Miles Bader <miles@lsi.nec.co.jp>
14726
14727 [the following changes fix a bug where `define-minor-mode' didn't
14728 correctly generate :require clauses for defcustoms in compiled files]
14729 * emacs-lisp/bytecomp.el (byte-compile-last-logged-file): New variable.
14730 (byte-compile-log-file, byte-compile-log-1): Don't set
14731 `byte-compile-current-file' to nil. Instead set
14732 `byte-compile-last-logged-file' to it. Test whether
14733 byte-compile-current-file equals byte-compile-last-logged-file
14734 instead of whether its nil.
14735 (byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
14736
14737 2000-10-23 Stefan Monnier <monnier@cs.yale.edu>
14738
14739 * textmodes/refill.el: Fix var names in doc.
14740 (refill-mode): Don't bother with make-local-hook anymore.
14741
14742 2000-10-23 Miles Bader <miles@lsi.nec.co.jp>
14743
14744 * faces.el (face-user-default-spec, face-default-spec): New functions.
14745 (face-spec-choose, face-spec-set): Document nil-SPEC behavior.
14746 (frame-set-background-mode, face-set-after-frame-default):
14747 Use `face-user-default-spec'. Simplify code slightly.
14748
14749 * woman.el (woman-italic-face, woman-bold-face)
14750 (woman-unknown-face): Add dark-background variants.
14751 (woman-default-faces): Renamed from `woman-colour-faces'.
14752 Set using the stored defaults, rather than using hard-wired colors.
14753 (woman-monochrome-faces): Renamed from `woman-black-faces'.
14754 Just make the foreground `unspecified' rather than "black".
14755 (woman-menu): Rename menu entries accordingly.
14756
14757 * faces.el (header-line): Make more reasonable on mono/grayscale
14758 displays.
14759
14760 2000-10-23 Andrew Choi <akochoi@i-cable.com>
14761
14762 * cus-edit.el (custom-button-face): Use 3D look for mac.
14763 (custom-button-pressed-face): Likewise.
14764
14765 * faces.el (set-face-attributes-from-resources): Handle mac frames
14766 in the same way as x and w32 frames.
14767 (face-valid-attribute-values): Likewise.
14768 (read-face-attribute): Likewise.
14769 (defined-colors): Likewise.
14770 (color-defined-p): Likewise.
14771 (color-values): Likewise.
14772 (display-grayscale-p): Likewise.
14773 (face-set-after-frame-default): Likewise.
14774 (mode-line): Same default face as for x and w32.
14775 (tool-bar): Likewise.
14776
14777 * frame.el: Remove call to frame-notice-user-settings at end of
14778 the file.
14779
14780 * info.el (Info-fontify-node): Make underlines invisible for mac
14781 as for x, pc, and w32 frame types.
14782
14783 * term/mac-win.el: New file.
14784
14785 2000-10-22 Dave Love <fx@gnu.org>
14786
14787 * textmodes/refill.el: New file.
14788
14789 2000-10-22 Andre Spiegel <spiegel@gnu.org>
14790
14791 * vc-hooks.el (vc-version-backup-file-name): New optional args
14792 MANUAL and REGEXP.
14793 (vc-delete-automatic-version-backups, vc-make-version-backup):
14794 New functions.
14795 (vc-before-save): Use the latter.
14796 (vc-default-make-version-backups-p): Added `-p' suffix to avoid
14797 confusion.
14798
14799 * vc-cvs.el (vc-cvs-make-version-backups-p): Added `-p' suffix as
14800 expected by vc[-hooks].el.
14801
14802 * vc.el (vc-checkout): Added `-p' suffix in call to
14803 vc-make-version-backups-p; use vc-make-version-backup to actually
14804 make the backup.
14805 (vc-version-other-window, vc-version-backup-file): Handle both
14806 automatic and manual backups.
14807 (vc-revert-file): Use vc-delete-automatic-version-backups to get rid
14808 of all of them.
14809
14810 2000-10-22 Miles Bader <miles@gnu.org>
14811
14812 * comint.el (comint-highlight-input, comint-highlight-prompt):
14813 Renamed, `-face' at end removed.
14814 (comint-send-input, comint-output-filter): Use renamed faces.
14815
14816 * window.el (fit-window-to-buffer): Change defaulting of
14817 MAX-HEIGHT slightly.
14818
14819 * faces.el (color-values, color-defined-p): Use `member', not
14820 `memq', because it works correctly for strings.
14821 (frame-set-background-mode): Actually, "unspecified-fg" and
14822 "unspecified-bg" *are* strings. Use `member', not `memq', and
14823 `equal', not `eq', when a string value is possible.
14824
14825 2000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
14826
14827 * info.el (Info-file-list-for-emacs): Add an entry for Speedbar.
14828
14829 2000-10-21 Stefan Monnier <monnier@cs.yale.edu>
14830
14831 * progmodes/sh-script.el (sh-mode-map): Remove bindings for
14832 sh-electric-rparen, sh-electric-less and sh-electric-hash.
14833 (sh-st-punc, sh-here-doc-syntax): Use string-to-syntax.
14834 (sh-font-lock-heredoc, sh-font-lock-paren): New funs.
14835 (sh-font-lock-syntactic-keywords): Use them.
14836 (sh-heredoc-face, sh-st-face, sh-special-syntax): Remove.
14837 (sh-mkword-regexp, sh-electric-rparen-needed-here): Remove.
14838 (sh-mode): Don't override font-lock-unfontify-region-function.
14839 Use a copy of sh-font-lock-syntactic-keywords.
14840 (sh-set-shell): Don't set sh-electric-rparen-needed-here.
14841 Don't call sh-scan-buffer since font-lock does it on the fly.
14842 (sh-get-indent-info): Use `face' rather than `syntax-table'
14843 text-property to detect here-documents.
14844 Replace sh-special-syntax with sh-st-punc.
14845 (sh-prev-line): Use `face' rather than `syntax-table'
14846 text-property to skip over here-documents.
14847 (sh-font-lock-unfontify-region-function, sh-check-paren-in-case)
14848 (sh-set-char-syntax, sh-electric-rparen, sh-electric-hash)
14849 (sh-electric-less, sh-set-here-doc-region)
14850 (sh-remove-our-text-properties, sh-search-word, sh-scan-case)
14851 (sh-scan-buffer, sh-rescan-buffer): Remove.
14852
14853 2000-10-21 Andrew Innes <andrewi@gnu.org>
14854
14855 * w32-fns.el (make-auto-save-file-name): Don't apply conversion to
14856 remote (ange-ftp) file names.
14857
14858 2000-10-21 Miles Bader <miles@gnu.org>
14859
14860 * window.el (fit-window-to-buffer): New function.
14861 (shrink-window-if-larger-than-buffer): Use it.
14862 (window-text-height): Don't expect minibuffers to have mode-lines.
14863
14864 * help.el (resize-temp-buffer-window): Use `fit-window-to-buffer'.
14865 * international/quail.el (quail-update-guidance):
14866 Use `fit-window-to-buffer' instead of `set-window-text-height'.
14867
14868 * international/quail.el (quail-show-guidance-buf): Make sure
14869 guidance window really has enough room.
14870 (quail-update-guidance): If quail-guidance-win is already shown,
14871 make sure its height is OK.
14872
14873 * window.el (window-text-height, set-window-text-height):
14874 New functions.
14875 (shrink-window-if-larger-than-buffer): Use `window-text-height'
14876 instead of `window-height' & `mode-line-window-height-fudge'.
14877 (mode-line-window-height-fudge): Add FACE parameter.
14878 * help.el (resize-temp-buffer-window): Use `set-window-text-height'
14879 instead of `enlarge-window' & `mode-line-window-height-fudge'.
14880
14881 2000-10-20 Miles Bader <miles@gnu.org>
14882
14883 * window.el (height-affecting-face-attributes): Use `defconst'.
14884
14885 * textmodes/ispell.el (ispell-mode-line-window-height-fudge):
14886 New function, conditionally aliased to `mode-line-window-height-fudge'.
14887 (ispell-help): Use it.
14888 (ispell-choices-win-default-height): Don't include mode-line fudge.
14889 (ispell-choices-win-default-height): New function.
14890 (ispell-show-choices, ispell-command-loop): Use function
14891 `ispell-choices-win-default-height' instead of variable.
14892
14893 2000-10-20 Miles Bader <miles@lsi.nec.co.jp>
14894
14895 * window.el (mode-line-window-height-fudge): New variable.
14896 (height-affecting-face-attributes): New variable.
14897 (mode-line-window-height-fudge): New function.
14898 (shrink-window-if-larger-than-buffer): Use it.
14899 * help.el (resize-temp-buffer-window): Likewise.
14900
14901 * info.el (Info-fontify-node): Add support for @subsubsection
14902 titles, which use `Info-title-4-face'.
14903 (Info-title-4-face): New face.
14904 (Info-title-3-face): Inherit from Info-title-4-face instead of
14905 variable-pitch.
14906
14907 2000-10-19 Jason Rumney <jasonr@gnu.org>
14908
14909 * dired.el (dired-insert-directory): Do not let errors signalled by
14910 attempt to run dired-free-space-program prevent dired from working.
14911
14912 2000-10-19 Stefan Monnier <monnier@cs.yale.edu>
14913
14914 * diff-mode.el (diff-find-file-name): Fix regex subgroup number.
14915
14916 2000-10-19 Gerd Moellmann <gerd@gnu.org>
14917
14918 * dirtrack.el (dirtrack): Fix call to run-hooks.
14919
14920 * cmuscheme.el (cmuscheme-program-name): Renamed from
14921 scheme-program-name because xscheme.el contains a defcustom with
14922 the same name. As a consequence, customizing group `cmuscheme'
14923 loaded `xscheme' which redefined run-scheme.
14924 (run-scheme): Use cmuscheme-program-name.
14925
14926 * ps-print.el (ps-print-emacs-type): Move into the eval-and-compile.
14927
14928 * play/doctor.el (doctor-death): Update the Samaritans'
14929 anonymous address, and add a website for Befrienders International.
14930
14931 2000-10-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14932
14933 * ps-print.el: Even/odd pages fix. Fix little bug on XEmacs.
14934 Avoid compilation gripes. Doc fix.
14935 (ps-print-version): New version number (6.2).
14936 (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
14937 (ps-x-color-name, ps-x-color-specifier-p, ps-x-copy-coding-system)
14938 (ps-x-device-class, ps-x-extent-end-position, ps-x-extent-face)
14939 (ps-x-extent-priority, ps-x-extent-start-position)
14940 (ps-x-face-font-instance, ps-x-find-coding-system)
14941 (ps-x-font-instance-properties, ps-x-make-color-instance)
14942 (ps-x-map-extents): Alias for functions without the prefix `ps-x-', to
14943 avoid compilation gripes without defining functions.
14944 (ps-e-find-composition): Alias for function find-composition, to have a
14945 suitable function depending on Emacs version.
14946 (ps-color-device, ps-color-values, ps-face-foreground-name)
14947 (ps-face-background-name, ps-face-bold-p, ps-face-italic-p, ps-mapper)
14948 (ps-extent-sorter, ps-xemacs-face-kind-p, ps-xemacs-color-name)
14949 (ps-print-ensure-fontified): Function definitions surrounded by
14950 `eval-and-compile' to avoid compilation gripes.
14951 (ps-font-lock-face-attributes): `font-lock-face-attributes' evaluated
14952 by symbol-value to avoid compilation gripes.
14953 (ps-end-file, ps-header-sheet, ps-plot-region): Even/odd pages fix.
14954 (ps-generate-postscript-with-faces): Fix little bug on XEmacs.
14955
14956 2000-10-19 Miles Bader <miles@lsi.nec.co.jp>
14957
14958 * startup.el (normal-top-level): Call `frame-set-background-mode'
14959 after `frame-notice-user-settings' because the latter doesn't call
14960 the former on a tty.
14961
14962 * faces.el (frame-set-background-mode): `unspecified' &c are
14963 symbols, not strings.
14964
14965 2000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
14966
14967 * term/tty-colors.el (color-name-rgb-alist): Add a comment explaining
14968 why some "light*" colors are deliberately absent from the alist.
14969
14970 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face):
14971 Change colors for tty's, as suggested by Miles Bader.
14972
14973 2000-10-19 Kenichi Handa <handa@etl.go.jp>
14974
14975 * international/fontset.el: Use registry "MuleTibetan-2" for Tibetan.
14976 (ccl-encode-mule-unicode-0100-24ff): New CCL program. Register it
14977 for ISO10646-1 fonts.
14978 (x-font-name-charset-alist): Add an entry for "iso10646-1".
14979
14980 2000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
14981
14982 * faces.el (frame-set-background-mode): If a tty frame defines a
14983 background color, use that to compute the background mode, instead
14984 of always defaulting to "dark".
14985
14986 2000-10-19 Miles Bader <miles@lsi.nec.co.jp>
14987
14988 * comint.el (comint-write-output): New function.
14989 (comint-mode-map): Add it to the menu.
14990 Bind `C-c C-s' to comint-write-output.
14991
14992 2000-10-18 Gerd Moellmann <gerd@gnu.org>
14993
14994 * startup.el (fancy-splash-screens): Set buffer-undo-list to t.
14995 Use fancy-splash-delay.
14996
14997 2000-10-18 Alex Schroeder <alex@gnu.org>
14998
14999 * progmodes/sql.el (sql-sybase-options): New option.
15000 (sql-sybase): Use it. Add sql-database to the list of parameters
15001 provided for login. The options -w 2048 -n are not used any more.
15002
15003 * comint.el (comint-read-input-ring): Bugfix such that the first
15004 and the last entry of the input ring file are not lost.
15005
15006 2000-10-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
15007
15008 * ps-print.el: Internal variable changes to defcustom,
15009 make-local-hook changes to defvar. Doc fix.
15010 (ps-print-version): New version number (6.1).
15011 (ps-setup, ps-do-despool): Code fix.
15012 (ps-printer-name): Customization fix.
15013 (ps-printer-name-option): Now is a defcustom instead of an
15014 internal variable.
15015 (ps-print-hook, ps-print-begin-sheet-hook, ps-print-begin-page-hook)
15016 (ps-print-begin-column-hook): Now are defvar instead of
15017 make-local-hook.
15018
15019 2000-10-18 Miles Bader <miles@gnu.org>
15020
15021 * comint.el (comint-delete-output): Renamed from `comint-kill-output'.
15022 (comint-kill-output): Changed into an alias for `comint-delete-output',
15023 and made obsolete.
15024 (comint-mode-map): Rename references to comint-kill-output.
15025
15026 2000-10-18 Eli Zaretskii <eliz@is.elta.co.il>
15027
15028 * diff-mode.el (diff-header-face, diff-file-header-face)
15029 (diff-changed-face): Add bold and italic attributes to tty faces.
15030 (diff-function-face): New face.
15031 (diff-font-lock-keywords): Use it.
15032
15033 2000-10-18 Miles Bader <miles@lsi.nec.co.jp>
15034
15035 * comint.el (comint-output-filter): Fixup comint-last-input-end too.
15036 Remove commented-out call to force-mode-line-update.
15037 (comint-kill-output): Use `forward-line 0' instead of
15038 beginning-of-line to make sure we get past the prompt.
15039
15040 2000-10-17 Stefan Monnier <monnier@cs.yale.edu>
15041
15042 * diff-mode.el (diff-header-face, diff-file-header-face):
15043 Add specific setting for dark background.
15044 (diff-context-face): Renamed from diff-comment-face.
15045 Set explicitly rather than inheriting from font-lock-comment-face.
15046
15047 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
15048
15049 * startup.el (command-line): Move the code which sets the default
15050 TTY colors to before before-init-hook.
15051
15052 2000-10-17 Gerd Moellmann <gerd@gnu.org>
15053
15054 * jit-lock.el (jit-lock-stealth-time): Doc fix.
15055
15056 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
15057
15058 * files.el (auto-mode-alist): Add .dif and .pat as diff-mode
15059 extensions, for MS-DOS.
15060
15061 * diff-mode.el (diff-header-face, diff-file-header-face)
15062 (diff-changed-face): Define tty-specific colors.
15063
15064 2000-10-17 Gerd Moellmann <gerd@gnu.org>
15065
15066 * startup.el (fancy-splash-text): Realign the text.
15067
15068 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
15069
15070 * font-lock.el (font-lock-comment-face): Define a separate default
15071 for dark-background tty's.
15072
15073 2000-10-17 Miles Bader <miles@gnu.org>
15074
15075 * help.el (resize-temp-buffer-window): Add hack to avoid last line
15076 being obscured by whizzy mode-lines on graphics displays.
15077
15078 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
15079
15080 * info.el (Info-title-1-face, Info-title-2-face)
15081 (Info-title-3-face): Define colors for tty's.
15082 (info-header-node): Remove unneeded tty-specific definition.
15083
15084 2000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
15085
15086 * term/pc-win.el (msdos-handle-reverse-video): Don't remove
15087 reverse from the frame parameters, and don't invert foreground and
15088 background colors.
15089
15090 2000-10-16 Miles Bader <miles@gnu.org>
15091
15092 * info.el (Info-set-mode-line): Use `%b' instead of hardwired
15093 string "*Info*". Call propertized-buffer-identification to spruce
15094 up the result.
15095
15096 2000-10-16 Gerd Moellmann <gerd@gnu.org>
15097
15098 * help.el: Provide `help' for the sake of define-minor-mode
15099 which generates defcustoms with requires.
15100
15101 * jit-lock.el (jit-lock-after-change): If we're in text that
15102 matches a multi-line font-lock pattern, make sure the whole text
15103 will be redisplayed.
15104
15105 * emacs-lisp/authors.el (authors-add): Don't add an entry if
15106 author's name is unknown.
15107
15108 * eshell/esh-var.el, eshell/esh-util.el, eshell/esh-test.el,
15109 * eshell/esh-proc.el, eshell/esh-opt.el, eshell/esh-mode.el,
15110 * eshell/esh-maint.el, eshell/esh-io.el, eshell/esh-ext.el,
15111 * eshell/esh-cmd.el, eshell/esh-arg.el, eshell/em-xtra.el,
15112 * eshell/em-unix.el, eshell/em-term.el, eshell/em-smart.el,
15113 * eshell/em-script.el, eshell/em-rebind.el, eshell/em-prompt.el,
15114 * eshell/em-pred.el, eshell/em-ls.el, eshell/em-hist.el,
15115 * eshell/em-glob.el, shell/em-dirs.el, eshell/em-cmpl.el,
15116 * eshell/em-basic.el, eshell/em-banner.el, eshell/em-alias.el:
15117 Add author information.
15118
15119 2000-10-16 Miles Bader <miles@lsi.nec.co.jp>
15120
15121 * toolbar/up_arrow.xpm, toolbar/right_arrow.xpm:
15122 * toolbar/left_arrow.xpm, toolbar/home.xpm: Re-convert from
15123 full-color version (using the Gimp) to eliminate dithering artifacts.
15124
15125 2000-10-15 Stefan Monnier <monnier@cs.yale.edu>
15126
15127 * font-lock.el (font-lock-syntactic-keywords): Fix docstring.
15128
15129 * simple.el (syntax-flag-table, string-to-syntax): Remove.
15130
15131 2000-10-15 Dave Love <fx@gnu.org>
15132
15133 * progmodes/sh-script.el: Require skeleton and comint when compiling.
15134
15135 * pcomplete.el (pcomplete) <defgroup>: Add :version.
15136
15137 * whitespace.el: Doc fixes.
15138 (top-level): Don't add hooks here.
15139 (whitespace-running-emacs): Deleted.
15140 (timer): Don't require.
15141 (whitespace): Add back :version conditional on xemacs test.
15142 (whitespace-spacetab-regexp, whitespace-indent-regexp)
15143 (whitespace-ateol-regexp, whitespace-modes): Fix custom type.
15144 (whitespace-force-mode-line-update, whitespace-refresh-rescan-list)
15145 (whitespace-tickle-timer, whitespace-rescan-files-in-buffers):
15146 Avoid specific xemacs test.
15147 (whitespace-global-mode): New option.
15148 (whitespace-global-mode): New command.
15149 (whitespace-unload-hook): New function.
15150
15151 * info.el (Info-mouse-follow-nearest-node): Use mouse-set-point.
15152 (Info-fontify-node, Info-goto-node, Info-mode-menu)
15153 (Info-fontify-node): `Goto' goes to `Go to'.
15154 (Info-fontify-node): Add help-echo to xref links.
15155
15156 2000-10-15 Eli Zaretskii <eliz@is.elta.co.il>
15157
15158 * eshell/em-unix.el (eshell-du-prefer-over-ange): Doc fix.
15159
15160 2000-10-15 Stefan Monnier <monnier@cs.yale.edu>
15161
15162 * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
15163 Use plist-get and allow :inherit.
15164
15165 * emacs-lisp/cl-macs.el (cl-do-arglist):
15166 Use plist-get and plist-member instead of memq.
15167
15168 * emacs-lisp/ewoc.el (ewoc-location): New function.
15169 (ewoc-enter-after, ewoc-enter-before): Document return value.
15170 * pcvs.el (cvs-make-cvs-buffer, cvs-run-process):
15171 Don't need make-local-hook any more.
15172 (cvs-addto-collection): Return the new tin.
15173 (cvs-mode-insert): Jump to the new line.
15174
15175 * jit-lock.el (jit-lock-fontify-buffer): Remove.
15176
15177 * arc-mode.el (archive-zoo-summarize): Fix from gnu.emacs.bug.
15178
15179 * font-lock.el (font-lock-syntactically-fontified): New var.
15180 (font-lock-fontify-syntactic-keywords-region): Use it.
15181 (font-lock-mode): Fix docstring. Don't need make-local-hook anymore.
15182
15183 * diff-mode.el (diff-find-file-name): Fix regexp.
15184
15185 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
15186 (cl-builtin-clrhash, cl-builtin-maphash): Add for byte-compatibility.
15187
15188 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix.
15189 (sh-mode-syntax-table): Add punctuation syntax for < and >.
15190 (sh-mode): Don't make all vars local here.
15191 (sh-kw): Reformat.
15192 (sh-set-shell): Use dolist. Don't set indent-region-function.
15193 (sh-mode-syntax-table): Use pop.
15194 (sh-remember-variable): Use push.
15195 (sh-help-string-for-variable): Use memq.
15196 (sh-safe-backward-sexp): Remove.
15197 (sh-safe-forward-sexp): Add ARG.
15198 (sh-get-indent-info, sh-prev-stmt): Use it.
15199 (sh-prev-line): Simplify by using forward-comment.
15200 (sh-this-is-a-continuation): Simplify.
15201 (sh-learn-buffer-indent): Use dolist.
15202 (sh-do-nothing): Remove.
15203 (sh-set-char-syntax, sh-set-here-doc-region):
15204 Use inhibit-modification-hooks.
15205 (sh-name-style): Use mapcar and push.
15206 (sh-load-style): Use dolist.
15207 (sh-save-styles-to-buffer): Use with-current-buffer and pp.
15208 (sh-case, sh-while-getopts): Use propertize directly rather
15209 than sh-electric-rparen.
15210
15211 2000-10-14 Stefan Monnier <monnier@cs.yale.edu>
15212
15213 * textmodes/tex-mode.el: Require CL when compiling.
15214 (tex-mode-syntax-table): Init immediately.
15215 (tex-mode-map): Bind M-RET to latex-insert-item.
15216 (latex-mode): Set indent-line-function to latex-indent.
15217 (tex-common-initialization): Don't setup the syntax-table any more.
15218 (latex-insert-item): New skeleton.
15219 (tex-next-unmatched-end): Fix copy/paste braino.
15220 (latex-syntax-after, latex-skip-close-parens, latex-down-list)
15221 (latex-indent, latex-find-indent): New functions.
15222 (tex-indent-allhanging, tex-indent-arg, tex-latex-indent-syntax-table)
15223 (tex-indent-item, tex-indent-item-re, tex-indent-basic): New vars.
15224 (tex-compilation-parse-errors): Use with-syntax-table.
15225
15226 2000-10-15 Miles Bader <miles@gnu.org>
15227
15228 * font-lock.el (font-lock-comment-face): Change dark-background,
15229 color, non-tty, default to `chocolate1'.
15230
15231 2000-10-13 John Wiegley <johnw@gnu.org>
15232
15233 * eshell/esh-util.el (require): Added a missing `require' form,
15234 needed when compiling (for an ange-ftp macro definition).
15235
15236 2000-10-13 Dave Love <fx@gnu.org>
15237
15238 * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch.
15239
15240 2000-10-13 Gerd Moellmann <gerd@gnu.org>
15241
15242 * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc fix.
15243
15244 * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace
15245 transparent -colors 8).
15246
15247 2000-10-13 Stephen Gildea <gildea@stop.mail-abuse.org>
15248
15249 * time-stamp.el (time-stamp): Fixed bug in new multi-line code
15250 that breaks with old list format timestamps.
15251 (time-stamp-warn-inactive, time-stamp-old-format-warn)
15252 (time-stamp-count, time-stamp-conversion-warn): Improved doc strings.
15253
15254 2000-10-13 John Wiegley <johnw@gnu.org>
15255
15256 * align.el, pcomplete.el, calendar/timeclock.el,
15257 eshell/esh-module.el, eshell/eshell.el: Removed URL reference.
15258
15259 * calendar/timeclock.el (timeclock-find-discrep): A fix to some
15260 faulty math, where holiday hours were being computing as seconds.
15261
15262 2000-10-13 John Wiegley <johnw@gnu.org>
15263
15264 * desktop.el (desktop-buffer-modes-to-save): Added a global for
15265 specifying what "other" kinds of buffers should be saved.
15266 This used to be hard-coded.
15267 (desktop-buffer-misc-functions): A global for specifying how
15268 auxiliary data should be determined for special buffer types.
15269 (desktop-save-buffer-p): Use `desktop-buffer-modes-to-save',
15270 instead of hard-coding the special buffer types.
15271 (desktop-save): Run `desktop-buffer-misc-functions' to gather
15272 auxiliary data, instead of hard-coding for Info buffers and dired.
15273 (desktop-buffer-info-misc-data): Aux function for determining Info
15274 buffer auxiliary info.
15275 (desktop-buffer-dired-misc-data): Likewise, but for dired buffers.
15276 (desktop-buffer-info): Changed this function to use the info
15277 gathered above.
15278 (desktop-create-buffer): Be a little more careful about what
15279 `minor-mode' means before calling it. This is important for some
15280 buffer types.
15281
15282 2000-10-13 John Wiegley <johnw@gnu.org>
15283
15284 * eshell/esh-util.el: Added a global form which declares an
15285 autoload for `parse-time-string', if that function is not already
15286 defined, and if parse-time.el is available on the user's system.
15287
15288 * eshell/em-ls.el (eshell-ls-applicable): Extended this function
15289 to be aware of ange-ftp user info.
15290 (eshell-do-ls): Bind `ange-cache'. Also, use `eshell-file-attributes'.
15291 (eshell-ls-annotate): Use `eshell-file-attributes'.
15292 (eshell-ls-file): Made the user-id printing code a bit smarter.
15293
15294 * eshell/esh-util.el (eshell-ange-ls-uids): Added variable, to
15295 allow identification of alias user ids in remote directories.
15296 It's manual, but there's no other way to know when the current user
15297 on the local machine, is also the owning user on the remote machine.
15298 (fboundp): Bind `ange-cache'.
15299 (eshell-directory-files-and-attributes): Re-organized the logic a
15300 bit to use `eshell-file-attributes' instead of `file-attributes'.
15301 The former is more sensitive to directories that are read via FTP,
15302 and knows how to use ange-ftp to determine full attribute
15303 information, instead of just the name and last modtime.
15304 (eshell-current-ange-uids): Return the current user id when in a
15305 remote directory.
15306 (eshell-parse-ange-ls): Parse a full directory listing that has
15307 been returned by ange-ftp.
15308 (eshell-file-attributes): This beefed up version of
15309 `file-attributes' is only special if the user is currently in a
15310 remote directory, in which case it does a lot of work to find out
15311 what the real attributes of a file are, as they appear on the
15312 remote machine. This makes usage of remote directories (i.e.,
15313 ange-ftp pathnames) much more useful. You can now use Eshell as a
15314 full-fledged FTP client, with much more manipulation ability than
15315 most other clients.
15316
15317 * eshell/em-unix.el (eshell-du-prefer-over-ange): Added a new
15318 variable, which means that Eshell's du should always be preferred
15319 in remote directories.
15320 (eshell-shuffle-files): Use `eshell-file-attributes', rather than
15321 just `file-attributes'.
15322 (eshell-mvcp-template): Bind `ange-cache', to improve performance
15323 when reading remote directories. This is an Eshell-specific
15324 variable (not part of ange-ftp).
15325 (eshell/ln): Bind `ange-cache'.
15326 (eshell/du): Added some extra logic for determining when to use
15327 Eshell's du (which is slow), and when to use the external version
15328 (which may or may not exist).
15329
15330 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
15331 Call `eshell-interactive-process', rather than using
15332 `get-buffer-process', since backgrounded processes don't count in
15333 the context of this function's logic.
15334
15335 * eshell/esh-arg.el (eshell-parse-double-quote): Moved a call to
15336 `forward-char', so that null strings are parsed correctly.
15337
15338 2000-09-13 John Wiegley <johnw@gnu.org>
15339
15340 * eshell/em-pred.el (eshell-pred-file-type)
15341 (eshell-pred-file-links, eshell-pred-file-size):
15342 Use `eshell-file-attributes'. This is more correct over ange-ftp.
15343
15344 * eshell/em-glob.el (eshell-extended-glob): Bind `ange-cache', so
15345 that remote file globbing is more efficient.
15346
15347 * eshell/em-ls.el (eshell-ls-dir): Use `expand-file-name' when
15348 gathering the files and attributes within a directory.
15349
15350 * eshell/em-unix.el (eshell/cat): If any of the files passed on
15351 the command line is a special file (not a regular file, directory
15352 or symlink), always attempt to call the external version of cat.
15353
15354 2000-09-13 John Wiegley <johnw@gnu.org>
15355
15356 * eshell/esh-mode.el (eshell-find-tag): Corrections to the
15357 Eshell-friendly version of find-tag.
15358
15359 2000-10-13 Miles Bader <miles@lsi.nec.co.jp>
15360
15361 * image-file.el (image-file-name-extensions)
15362 (image-file-name-regexps): Add autoload cookies.
15363
15364 2000-10-13 Kenichi Handa <handa@etl.go.jp>
15365
15366 * international/mule-cmds.el (select-safe-coding-system): If FROM
15367 is string, show it in *Warning* buffer.
15368
15369 2000-10-13 Eli Zaretskii <eliz@is.elta.co.il>
15370
15371 * startup.el (normal-top-level): Use display-popup-menus-p instead
15372 of window-system.
15373 (command-line): Use display-graphic-p instead of window-system.
15374 (command-line-1): Use display-popup-menus-p and display-mouse-p
15375 instead of window-system.
15376
15377 2000-10-12 Sam Steingold <sds@gnu.org>
15378
15379 * tooltip.el (tooltip-use-echo-area): New user variable.
15380 (tooltip-show): Use it to choose between `x-show-tip' and `message'.
15381
15382 2000-10-12 Dave Love <fx@gnu.org>
15383
15384 * recentf.el: Maintainer's checkdoc fixes.
15385
15386 * startup.el (normal-top-level-add-subdirs-to-load-path):
15387 Use character class, not ASCII when matching file names.
15388 (fancy-splash-head): Add trailing slash to URL.
15389 (command-line): Don't require XPM support for toolbar.
15390
15391 * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix.
15392 (cperl-invalid-face): Revert last change.
15393 (cperl-init-faces): Quote cperl-invalid-face.
15394
15395 2000-10-12 Kenichi Handa <handa@etl.go.jp>
15396
15397 * startup.el (fancy-splash-text): Remove superfluous quote.
15398
15399 2000-10-12 Gerd Moellmann <gerd@gnu.org>
15400
15401 * startup.el (fancy-splash-screens): Don't add a pre-command hook.
15402 (fancy-splash-pre-command, fancy-splash-pending-command): Removed.
15403 (command-line-1): Don't use fancy-splash-pending-command.
15404 (fancy-splash-screens-1): Goto point-min after inserting text.
15405
15406 * calendar/diary-lib.el (diary-cyclic): Doc fix from Ed Reingold.
15407
15408 * progmodes/scheme.el (scheme-mode-map): Use lisp-mode-shared-map
15409 instead of shared-lisp-mode-map.
15410
15411 2000-10-12 Miles Bader <miles@lsi.nec.co.jp>
15412
15413 * faces.el (header-line): Change tty-variant to use underlining.
15414
15415 * isearch.el (isearch-set-lazy-highlight-faces-at): New function.
15416 (isearch-highlight): Restore lazy-isearch face properties at old
15417 position, and suppress them at new position.
15418 (isearch-dehighlight): Restore lazy-isearch face properties.
15419 (isearch-lazy-highlight-update): Add lazy-isearch overlays even
15420 over the real isearch overlay, but in that case, don't give it a
15421 face property. Use `push'.
15422
15423 2000-10-12 Kenichi Handa <handa@etl.go.jp>
15424
15425 * man.el (Man-getpage-in-background): Fix previous change.
15426 Decode the process output only when we are in multibyte mode.
15427
15428 2000-10-11 Dave Love <fx@gnu.org>
15429
15430 * info.el (Info-mode-menu): Fix some help.
15431 (info-tool-bar-map): Add entry for Info-last.
15432
15433 * toolbar/cancel.xpm, toolbar/jump_to.xpm, toolbar/right_arrow.xpm:
15434 * toolbar/close.xpm, toolbar/left_arrow.xpm, toolbar/save.xpm:
15435 * toolbar/copy.xpm, toolbar/mail.xpm, toolbar/saveas.xpm:
15436 * toolbar/cut.xpm, toolbar/mail_compose.xpm:
15437 * toolbar/search-replace.xpm, toolbar/exit.xpm:
15438 * toolbar/mail_send.xpm, toolbar/search.xpm, toolbar/fld_open.xpm:
15439 * toolbar/new.xpm, toolbar/spell.xpm, toolbar/help.xpm:
15440 * toolbar/open.xpm, toolbar/undo.xpm, toolbar/home.xpm:
15441 * toolbar/paste.xpm, toolbar/up_arrow.xpm, toolbar/index.xpm:
15442 * toolbar/preferences.xpm, toolbar/info.xpm, toolbar/print.xpm:
15443 Reduce colour requirements to 25 overall. (Probably wants
15444 revisiting from the originals to reduce further.)
15445
15446 2000-10-11 Eli Zaretskii <eliz@is.elta.co.il>
15447
15448 * hexl.el (hexlify-buffer): Bind coding-system-for-write to
15449 buffer-file-coding-system, instead of raw-text.
15450 (dehexlify-buffer): Bind coding-system-for-read to
15451 buffer-file-coding-system, instead of raw-text.
15452
15453 2000-10-11 Sam Steingold <sds@gnu.org>
15454
15455 * progmodes/cperl-mode.el (cperl-invalid-face): Double-quote
15456 `underline' - fixes the bug introduced on 2000-09-21.
15457
15458 2000-10-11 Dave Love <fx@gnu.org>
15459
15460 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
15461 Avoid compiler warnings.
15462 (scheme-mode): Doc fix.
15463 (scheme-font-lock-keywords-1): Match `define-syntax'.
15464
15465 2000-10-11 Miles Bader <miles@lsi.nec.co.jp>
15466
15467 * faces.el (frame-set-background-mode): Pay attention to saved
15468 face specs as well as default ones. Only do anything if the
15469 bg-mode or display-type has actually changed. Use `dolist'.
15470 (region): Make dark-background `region' face less in-your-face.
15471
15472 2000-10-10 Sam Steingold <sds@gnu.org>
15473
15474 * chistory.el, ielm.el, ledit.el:
15475 * progmodes/inf-lisp.el, progmodes/scheme.el:
15476 Use `lisp-mode-shared-map' instead of `shared-lisp-mode-map'.
15477
15478 2000-10-10 Stefan Monnier <monnier@cs.yale.edu>
15479
15480 * textmodes/texinfo.el: Update copyright and fix typo.
15481
15482 * desktop.el (desktop-modes-not-to-save): New var.
15483 (desktop-save-buffer-p): Use it.
15484 Also, obey desktop-buffers-not-to-save even for non-file buffers.
15485 (desktop-buffer-file): Use pop-to-buffer if switch-to-buffer fails.
15486
15487 2000-10-10 Dave Love <fx@gnu.org>
15488
15489 * toolbar/tool-bar.el (tool-bar-add-item)
15490 (tool-bar-add-item-from-menu): Don't favour XPM icons on mono display.
15491
15492 * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm:
15493 * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm:
15494 * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm:
15495 * toolbar/index.pbm, toolbar/info.pbm, toolbar/jump_to.pbm:
15496 * toolbar/left_arrow.pbm, toolbar/mail.pbm, toolbar/mail_compose.pbm:
15497 * toolbar/mail_send.pbm, toolbar/new.pbm, toolbar/open.pbm:
15498 * toolbar/paste.pbm, toolbar/preferences.pbm, toolbar/print.pbm:
15499 * toolbar/right_arrow.pbm, toolbar/save.pbm, toolbar/saveas.pbm:
15500 * toolbar/search-replace.pbm, toolbar/search.pbm, toolbar/spell.pbm:
15501 * toolbar/undo.pbm, toolbar/up_arrow.pbm: New files straight from
15502 the .xpms; probably need retouching.
15503
15504 2000-10-10 Miles Bader <miles@lsi.nec.co.jp>
15505
15506 * subr.el (add-to-list): Add optional argument APPEND.
15507 * battery.el (display-battery): Use `add-to-list'.
15508
15509 2000-10-09 Thien-Thi Nguyen <ttn@gnu.org>
15510
15511 * play/zone.el (zone-timer, zone-wc-tbl): Rework these vars as symbol
15512 properties.
15513 (zone, zone-when-idle, zone-leave-me-alone)
15514 (zone-pgm-whack-chars): Use new symbol properties.
15515
15516 * battery.el (display-battery): Doc spelling fix.
15517
15518 * vc.el (with-vc-file, edit-vc-file): Specify `indent-function'
15519 property.
15520
15521 2000-10-09 Dave Love <fx@gnu.org>
15522
15523 * toolbar/tool-bar.el (tool-bar-mode): Check whether tool-bar-map
15524 has been initialized before calling tool-bar-setup.
15525 (tool-bar-add-item-from-menu): Add autoload cookie.
15526
15527 2000-10-09 Eli Zaretskii <eliz@is.elta.co.il>
15528
15529 * menu-bar.el (send-mail-item-name): New function.
15530 (menu-bar-tools-menu) <compose-mail>: Use it to display the value
15531 of mail-user-agent in the menu. Don't display the "Send Mail"
15532 item if mail-user-agent is nil or its value is ignore.
15533 (menu-bar-tools-menu) <rmail>: Don't display the "Read Mail" item
15534 if read-mail-command is nil or its value is ignore.
15535
15536 * mouse.el ([header-line mouse-1]): Bind to mouse-select-window.
15537
15538 2000-10-09 Miles Bader <miles@gnu.org>
15539
15540 * toolbar/up_arrow.xpm: Flip to put highlight in correct place.
15541 Correct image size.
15542 * toolbar/left_arrow.xpm: Correct image size.
15543
15544 * jka-compr.el: Don't call `jka-compr-install' when loading (it
15545 will be done by the definition of `auto-compression-mode' if
15546 necessary. Move code to uninstall existing file-name handler
15547 before definition of `auto-compression-mode'.
15548
15549 * image-file.el (auto-image-file-mode): Move to the end of the
15550 file, because `define-minor-mode' actually calls the mode-function
15551 if the associated variable is non-nil, which requires that all
15552 needed functions be already defined.
15553
15554 * mouse.el (popup-menu): Balance parens.
15555
15556 2000-10-08 Stefan Monnier <monnier@cs.yale.edu>
15557
15558 * mouse.el (popup-menu): Move the command call outside the loop
15559 so that popup-menu returns whatever the command returns.
15560
15561 * progmodes/etags.el: Docstring fixes. Maintainer line updated.
15562 (initialize-new-tags-table): Use run-hook-with-args-until-success.
15563 (find-tag): Use pop-to-buffer if switch-to-buffer failed.
15564 (tags-table-format-functions): Renamed from tags-table-format-hooks.
15565
15566 * vc.el (vc-version-diff): diff-switches can be a list.
15567 Use relative filenames for prettier output.
15568
15569 * pcvs.el (cvs-append-to-ignore, cvs-vc-command-advice)
15570 (vc-post-command-functions): Remove old-VC compatibility code.
15571
15572 * newcomment.el (comment-indent-default): Autoload.
15573
15574 * font-lock.el (font-lock-defaults): Make buffer-local.
15575 (font-lock-turn-on-thing-lock): Use jit-lock-refontify.
15576 (font-lock-choose-keywords):
15577 Ignore LEVEL unless KEYWORDS is a list of syms.
15578 (c-keywords, c++-keywords, objc-keywords, java-keywords):
15579 Don't wrap regexp-opt things in \(...\) unnecessarily.
15580
15581 * jit-lock.el: Don't require font-lock any more.
15582 (jit-lock-functions): Make buffer-local.
15583 (jit-lock-saved-fontify-buffer-function): Remove.
15584 (jit-lock-mode): Remove autoload cookie.
15585 Remove font-lock specific code.
15586 (jit-lock-unregister): Don't bother handling complex hooks any more.
15587 (jit-lock-refontify): New function.
15588 (jit-lock-fontify-buffer): Use it.
15589 (jit-lock-function-1): Replaced by jit-lock-fontify-now.
15590 (jit-lock-fontify-now): Renamed from jit-lock-function-1.
15591 Add optional args START and END.
15592 Never call font-lock-fontify-region directly.
15593 (jit-lock-function, jit-lock-stealth-fontify): Use it.
15594
15595 * emacs-lisp/regexp-opt.el (regexp-opt): Add \<...\> if PAREN=`words'.
15596
15597 2000-10-08 Dave Love <fx@gnu.org>
15598
15599 * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
15600
15601 * progmodes/icon.el (icon-mode-map): Add name to menu-bar keymap.
15602
15603 * play/studly.el (studlify-region, studlify-word): Add autoload
15604 cookie.
15605
15606 * play/morse.el (morse-region, unmorse-region): Add autoload
15607 cookie.
15608
15609 * play/spook.el (spook-phrases-file): Use expand-file-name, not
15610 concat.
15611
15612 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Don't
15613 insist on symbols starting with word syntax.
15614 (lisp-mode-shared-map): Renamed from shared-lisp-mode-map.
15615 (eval-defun-1): Doc fix.
15616 (indent-sexp): Use nconc to build up indent-stack.
15617
15618 * mail/sendmail.el: Byte-compile-dynamic since it gets loaded by
15619 Gnus with little use.
15620 (mail-setup-hook): Add mail-abbrevs-setup to options.
15621
15622 * recentf.el: Doc fixes.
15623
15624 * vcursor.el (vcursor-cs-binding): Remove compatibility code.
15625 Clean up remainder.
15626
15627 * timezone.el (timezone-parse-date): Doc fix. Fix regexps for (5)
15628 without timezone and (8) with timezone to enforce some whitespace.
15629 Simplify code somewhat.
15630
15631 * options.el (list-options): Doc that you should use customize.
15632
15633 * iswitchb.el (iswitchb-mode): Add :require.
15634
15635 * info.el (Info-goto-node, Info-menu): Doc fix.
15636 (Info-mode-menu): Bind beginning-of-buffer, Info-edit
15637 (info-tool-bar-map): New variable.
15638 (Info-mode): Use it.
15639 (Info-edit-map): Define all in defvar.
15640 (speedbar-attached-frame): Avoid compiler warning.
15641
15642 * toolbar/tool-bar.el (tool-bar-map): Define it empty.
15643 (global-map): Bind [tool-bar] to a filtered map.
15644 (tool-bar-add-item): Remove MAP arg. Allow PBM icons.
15645 (tool-bar-add-item-from-menu): Use tool-bar-map, not tb-map.
15646 Allow PBM icons.
15647 (tool-bar-setup): Adjust calls of tool-bar-add-item.
15648
15649 * toolbar/index.xpm, toolbar/jump_to.xpm, toolbar/attach.xpm:
15650 * toolbar/up_arrow.xpm, toolbar/left_arrow.xpm, toolbar/home.xpm:
15651 * toolbar/right_arrow.xpm: New files. Renamed from tigert's
15652 icons, except up_arrow, which is left-arrow rotated.
15653
15654 * imenu.el (imenu-add-to-menubar): Fix last change.
15655
15656 2000-10-08 Peter Breton <pbreton@ne.mediaone.net>
15657
15658 * generic-x.el (rul-generic-mode): Remove eval-when-compile
15659 statements. Suggested by Stefan Monnier <monnier@cs.yale.edu>.
15660
15661 2000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
15662
15663 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Fix
15664 typos in doc strings.
15665
15666 * font-lock.el (font-lock-mode, global-font-lock-mode): Mention in
15667 the doc strings how to customize Font Lock faces.
15668
15669 * mouse.el (mouse-drag-mode-line-1): Fix an off-by-one error in
15670 computing growth when dragging the header line.
15671
15672 2000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
15673
15674 * simple.el (kill-line): Doc fix.
15675
15676 2000-10-08 Miles Bader <miles@gnu.org>
15677
15678 * faces.el (secondary-selection): Make foreground visible on tty.
15679
15680 * jka-compr.el (auto-compression-mode): Move to the end of the
15681 file, because `define-minor-mode' actually calls the mode-function
15682 if the associated variable is non-nil, which requires that all
15683 needed functions be already defined.
15684 (with-auto-compression-mode): Add autoload cookie.
15685
15686 2000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
15687
15688 * files.el (find-backup-file-name) [ms-dos]: If support for long
15689 file names is not available, behave as if version-control were set
15690 to never.
15691
15692 2000-10-07 Dave Love <fx@gnu.org>
15693
15694 * net/browse-url.el (browse-url-gnome-moz-arguments): New option.
15695 (browse-url-gnome-moz): New function.
15696 (browse-url-browser-function): Use it.
15697 Suggested by Colin Walters <walters@cis.ohio-state.edu>.
15698
15699 2000-10-07 Stefan Monnier <monnier@cs.yale.edu>
15700
15701 * indent.el (tab-always-indent): New var.
15702 (indent-for-tab-command): Use it.
15703
15704 * files.el (set-auto-mode): Ignore unknown -*- mode -*- rather than
15705 raise an error. This way it can still default to a sane value.
15706
15707 2000-10-06 Stefan Monnier <monnier@cs.yale.edu>
15708
15709 * startup.el (fancy-splash-screens): Use local rather than global map.
15710 Don't use `update-menu-bindings' any more.
15711 Get rid of assumptions about keymap representation.
15712
15713 2000-10-06 Dave Love <fx@gnu.org>
15714
15715 * textmodes/fill.el (sentence-end-double-space)
15716 (sentence-end-without-period): Doc fix.
15717 (adaptive-fill-regexp): Purecopy.
15718 (unjustify-current-line): Use line-end-position.
15719 (fill-individual-paragraphs-prefix): Use line-beginning-position.
15720
15721 * net/eudc-vars.el (eudc): Add :version, :link.
15722
15723 * international/mule-conf.el (file-coding-system-alist): Use \', not $.
15724
15725 * emacs-lisp/find-func.el (find-function-regexp): Remove spurion.
15726 Fix for define-minor-mode.
15727 (function-at-point): Alias to function-called-at-point.
15728
15729 * custom.el (custom-declare-variable, custom-set-variables): Use mapc.
15730
15731 * simple.el (backward-word): Doc fix.
15732
15733 * image-file.el (image-file-name-regexp): image-file-regexps ->
15734 image-file-name-regexps.
15735 (image-file-name-extensions): Add pbm.
15736
15737 2000-10-06 Stefan Monnier <monnier@cs.yale.edu>
15738
15739 * smerge-mode.el (smerge-diff): Setup the buffer's default-directory
15740 and add filename to the names so that diff-mode can jump to source.
15741
15742 * font-lock.el (font-lock-defaults-alist): Remove the TeX entries.
15743 (tex-font-lock-keywords, tex-font-lock-keywords-2)
15744 (tex-font-lock-keywords-1): Remove.
15745 (font-lock-turn-on-thing-lock): Use jit-lock-register.
15746 (font-lock-turn-off-thing-lock): Use jit-lock-unregister.
15747 (font-lock-default-fontify-region):
15748 Expand beg..end correctly when just following a multiline region.
15749 (font-lock-fontify-anchored-keywords):
15750 Include the anchor text as part of the multiline.
15751
15752 2000-10-06 Gerd Moellmann <gerd@gnu.org>
15753
15754 * loadup.el (toplevel): Load `loaddefs' before `help' because the
15755 latter needs the autoloaded define-minor-mode macro during the
15756 bootstrap.
15757
15758 * startup.el (command-line): For now, activate tool-bar-mode only
15759 if XPM images are supported.
15760
15761 * mouse.el (mouse-drag-header-line): Don't allow resizing a
15762 window by dragging a header-line at the top of the frame; that's
15763 confusing because the header-line doesn't move.
15764 (mouse-drag-mode-line-1): Use event-* and posn-* functions instead
15765 of treating the event as a list. Some cleanup.
15766
15767 2000-10-06 Miles Bader <miles@gnu.org>
15768
15769 * simple.el (display-message-or-buffer): New function.
15770 (shell-command-on-region): Use `display-message-or-buffer'.
15771
15772 * emacs-lisp/easy-mmode.el (define-derived-mode): Tweak generated
15773 docstring parts.
15774
15775 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
15776 (smbclient-prompt-regexp): Add usage note to doc string.
15777 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Removed.
15778 (ftp-mode, smbclient-mode): Don't set `font-lock-defaults'.
15779 Use add-hook for adding the comint filter function, and only do so
15780 if it's not already in the global hook list.
15781 (ftp-mode, smbclient-mode, nslookup-mode): Remove redundant calls
15782 to `make-local-variable'.
15783 (nslookup-font-lock-keywords): Remove prompt entry.
15784 (nslookup): Don't set the process-filter.
15785 (finger): Exit the loop correctly when the regexps list runs out.
15786 (ftp, smbclient, smbclient-list-shares):
15787 Set the real major mode immediately, not after execing.
15788 Use `pop-to-buffer' instead of `switch-to-buffer-other-window'.
15789
15790 * comint.el (comint-watch-for-password-prompt): Use STRING as a prompt.
15791
15792 2000-10-05 Stefan Monnier <monnier@cs.yale.edu>
15793
15794 * progmodes/compile.el (compile-collect-regexps): Use dolist and push.
15795
15796 * which-func.el (which-func-format): Remove spurious space.
15797 (which-func-mode): Don't make it permanent-local.
15798 (which-func-ff-hook): Allow which-func-maxout to be nil.
15799 (which-func-update): Simplify a bit. Only run if which-func-mode is t.
15800 (which-func-mode): Simplify.
15801 Use post-command-idle-hook rather than post-command-hook.
15802 Go through all buffers and update their state.
15803 (which-function): Also try add-log-current-defun-function.
15804
15805 * vc.el (with-vc-properties): Use conses rather than length-2 lists.
15806 (vc-checkout, vc-finish-steal, vc-checkin, vc-revert-file):
15807 Update call to with-vc-properties accordingly.
15808 (vc-comment-search-reverse, vc-comment-search-forward): Docstring fix.
15809 (vc-revert-buffer): More careful about window selection and deletion.
15810 (vc-switch-backend): Slight reorg to avoid calling `registered' twice.
15811
15812 * pcvs.el (cvs-ediff-exit-hook): Expect delete-window to fail.
15813 (cvs-retrieve-revision): Reuse a pre-existing buffer.
15814 (cvs-dired-action): Change the default to quickdir.
15815
15816 * newcomment.el (comment-indent): Delegate to indent-according-to-mode
15817 if comment-indent-function returns nil.
15818 (comment-indent-default): New function.
15819 (comment-indent-function): Use it and document the new semantics.
15820
15821 * image-file.el: Docstring fixes.
15822
15823 * help.el (help-xref-on-pp): Use match-string.
15824 (describe-variable): New arg BUFFER.
15825 Store the current buffer in the help-xref-stack.
15826 (temp-buffer-resize-mode): Use define-minor-mode.
15827
15828 * jit-lock.el (jit-lock-mode): Use jit-lock-defer-contextually
15829 consistently with its docstring.
15830 Set jit-lock-first-unfontify-pos in an idempotent way.
15831 (jit-lock-register): Autoload and add arg CONTEXTUAL.
15832
15833 2000-10-05 Alex Schroeder <alex@gnu.org>
15834
15835 * sql.el (sql-mysql-options): New variable.
15836 (sql-mysql): Use it.
15837
15838 2000-10-05 Miles Bader <miles@lsi.nec.co.jp>
15839
15840 * image.el (image): New group.
15841
15842 * smerge-mode.el (smerge-mine-face, smerge-other-face)
15843 (smerge-base-face, smerge-markers-face): Add dark-background variants.
15844
15845 2000-10-04 Peter Breton <pbreton@ne.mediaone.net>
15846
15847 * net/net-utils.el (nslookup-font-lock-keywords)
15848 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
15849 Ignore the value of wqindow-system; always define keywords
15850
15851 2000-10-05 Kenichi Handa <handa@etl.go.jp>
15852
15853 * startup.el (fancy-splash-screens): Remove the code for
15854 debugging; `(trace-to-stderr "EXITTT\n")'.
15855
15856 2000-10-05 Miles Bader <miles@gnu.org>
15857
15858 * diff-mode.el (diff-goto-source): Update call to
15859 `diff-hunk-status-msg' to reflect new REV variable.
15860
15861 2000-10-04 Stefan Monnier <monnier@cs.yale.edu>
15862
15863 * progmodes/icon.el (icon-mode):
15864 Don't gratuitously override the default for comment-column.
15865
15866 * vc-hooks.el (vc-mode-line): Fix interactive spec.
15867
15868 * jit-lock.el (with-buffer-unmodified): Use unwind-protect.
15869 (jit-lock-mode): Make sure font-lock-keywords-only is bound before use.
15870 (jit-lock-functions): New var.
15871 (jit-lock-function-1): Use it if non-nil.
15872 Don't switch the syntax-table. Don't set parse-sexp-lookup-properties.
15873 Set the `fontified' property before doing the fontification to avoid
15874 repeatedly going through the same error.
15875 Don't turn errors into messages.
15876 (jit-lock-register, jit-lock-unregister): New functions.
15877
15878 * dired.el (dired-mark-pop-up): Turn comment into docstring.
15879 Use with-current-buffer.
15880
15881 * dired-aux.el (dired-do-create-files, dired-kill-tree):
15882 Turn comment into docstring.
15883
15884 * apropos.el (apropos-mode): Use define-derived-mode.
15885
15886 2000-10-04 Gerd Moellmann <gerd@gnu.org>
15887
15888 * startup.el (fancy-splash-pending-command): New variable.
15889 (fancy-splash-pre-command): New function.
15890 (fancy-splash-screens): Rewritten.
15891 (command-line-1): If fancy-splash-pending-command is set, call it
15892 interactively.
15893
15894 2000-10-04 Dave Love <fx@gnu.org>
15895
15896 * toolbar/tool-bar.el (tool-bar-setup): New function.
15897 (tool-bar-mode): Use it.
15898
15899 * subr.el (substitute-key-definition): Doc fix.
15900 (play-sound-file): New command.
15901
15902 2000-10-04 Andre Spiegel <spiegel@gnu.org>
15903
15904 * vc-hooks.el (vc-before-save, vc-default-make-version-backups,
15905 vc-version-backup-file-name): New functions.
15906
15907 * files.el (basic-save-buffer): Call vc-before-save before saving.
15908
15909 * vc-cvs.el (vc-cvs-make-version-backups): Return t if
15910 vc-cvs-stay-local-p.
15911
15912 * vc.el (vc-revert-buffer): Handle empty diff properly.
15913 (vc-version-backup-file): New function.
15914 (vc-checkout): Create a version backup if necessary.
15915 (vc-checkin): If a version backup file exists, delete it.
15916 (vc-version-diff): Diff locally using version backups, if available.
15917 (vc-revert-file): If there's a version backup, revert locally.
15918 (vc-transfer-file): Use version backup for base version, if
15919 available. If not, ask for confirmation whether to get it from the
15920 server. Update mode line before check-in.
15921
15922 2000-10-04 Dave Love <fx@gnu.org>
15923
15924 * toolbar/tool-bar.el (tool-bar-setup): New function.
15925 (tool-bar-mode): Use it.
15926
15927 2000-10-04 Peter Breton <pbreton@ne.mediaone.net>
15928
15929 * net/net-utils.el (nslookup-font-lock-keywords)
15930 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
15931 Only set if window-system is non-nil
15932 (net-utils-run-program): Returns buffer.
15933 (network-connection-reconnect): Added this function.
15934
15935 * generic.el:
15936 Incorporates extensive cleanup and docfixes by
15937 Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu).
15938 Uses cl compile-time macros.
15939 (generic-mode-name, generic-comment-list)
15940 (generic-keywords-list, generic-font-lock-expressions)
15941 (generic-mode-function-list, generic-mode-syntax-table):
15942 Removed variables.
15943 (generic-mode-alist): Renamed to generic-mode-list.
15944 (generic-find-file-regexp): Default changed to "^#".
15945 (generic-read-type): Uses completing read on generic-mode-list.
15946 (generic-mode-sanity-check): removed this function.
15947 (generic-add-to-auto-mode): Removed this function
15948 (generic-mode-internal): Bind mode-specific definitions
15949 into function instead of putting them in alist.
15950 (generic-mode-set-comments): Reworked extensively.
15951 (generic-mode-find-file-hook): Simplified regexp searching
15952 (generic-make-keywords-list): Omit extra pair of parens
15953
15954 * find-lisp.el (find-lisp-find-files-internal):
15955 Make sure directory name ends with "/".
15956
15957 * generic-x.el (apache-conf-generic-mode):
15958 Regexp now allows leading whitespace.
15959 (rc-generic-mode): Added eval-when-compile
15960 around generic-make-keywords-list.
15961 Deleted duplicate regexp
15962 (rul-generic-mode): Added eval-when-compile
15963 around generic-make-keywords-list.
15964 (etc-fstab-generic-mode): New generic mode.
15965 (rul-generic-mode): Removed one eval-when-compile
15966 which caused a max-specpdl-size exceeded error.
15967
15968 2000-10-04 Miles Bader <miles@gnu.org>
15969
15970 * simple.el (minibuffer-temporary-goal-position): New variable.
15971 (next-history-element): Try to keep the position of point in the
15972 input string constant.
15973
15974 * dired-aux.el (dired-mark-read-file-name): Add optional arg DEFAULT.
15975 (dired-do-create-files): If there's only one file, pass it in as
15976 the DEFAULT arg to dired-mark-read-file-name.
15977
15978 2000-10-03 Stefan Monnier <monnier@cs.yale.edu>
15979
15980 * diff-mode.el (diff-font-lock-keywords): Minor regex fix.
15981 (diff-goto-source): Be smarter when choosing REVERSE or not.
15982
15983 * textmodes/texinfo.el (texinfo-heading-face): Forgot the var def.
15984 (texinfo-mode-menu): Add an explicit shortcut for update all.
15985
15986 2000-10-03 Andre Spiegel <spiegel@gnu.org>
15987
15988 * vc.el (vc-transfer-file, vc-default-receive-file): Rewritten to
15989 factorize backend-specific code cleanly (this was essentially
15990 conceived by Stefan Monnier).
15991 (vc-unregister): Function removed.
15992 (vc-revert-file): New function.
15993 (vc-revert-buffer): Delegate some of the work to it.
15994
15995 * vc-rcs.el (vc-rcs-fetch-master-state): Parse and remember
15996 default branch unconditionally.
15997 (vc-rcs-set-default-branch): New function.
15998 (vc-rcs-cancel-version, vc-rcs-checkin, vc-rcs-checkout): Use it.
15999 (vc-rcs-checkin): If an appropriate default branch has been set,
16000 force creation of that branch.
16001 (vc-rcs-receive-file): Rewritten to contain only backend-specific
16002 code (as suggested by Stefan Monnier).
16003
16004 2000-10-02 Gerd Moellmann <gerd@gnu.org>
16005
16006 * isearch.el (isearch-lazy-highlight-update): Don't put a lazy
16007 highlighting overlay with a different face over the overlay
16008 isearch uses to highlight the current match because that can lead
16009 to bad face combinations.
16010
16011 * loadup.el (toplevel): Load faces before isearch.
16012
16013 * isearch.el (isearch-faces): New custom group.
16014 (isearch): New defface; was already tested for in the code.
16015 (isearch-lazy-highlight-face): Changed to defface from defcustom.
16016 (isearch-highlight): Always use face `isearch'.
16017
16018 2000-10-02 Dave Love <fx@gnu.org>
16019
16020 * emacs-lisp/byte-opt.el (byte-optimize-lapcode): Don't bind
16021 unused vars. Treat byte-constant2 like byte-constant. Fix bogus
16022 comparison of opcode with operand.
16023
16024 2000-10-03 Miles Bader <miles@gnu.org>
16025
16026 * play/yow.el (yow): Don't display multi-line quotations in a *Help*
16027 buffer, since the echo area will now grow to accommodate them.
16028
16029 2000-10-02 Andre Spiegel <spiegel@gnu.org>
16030
16031 * vc-hooks.el (vc-registered): If FILE used to be registered under
16032 a certain backend, try that one first.
16033
16034 * vc.el (vc-responsible-backend): Undo the previous change in the
16035 argument list. Handle multiple backends correctly.
16036 (vc-find-new-backend): Function removed.
16037 (vc-register): Use vc-responsible-backend, as before.
16038 (vc-next-action-on-file): Do use vc-registered, not vc-backend.
16039
16040 2000-10-02 Gerd Moellmann <gerd@gnu.org>
16041
16042 * startup.el (fancy-splash-head): Change message below the
16043 logo.
16044
16045 2000-10-02 Miles Bader <miles@lsi.nec.co.jp>
16046
16047 * diff-mode.el (diff-goto-source): Emit a status message.
16048 (diff-test-hunk, diff-apply-hunk): Remove unneeded `let'.
16049 (diff-test-hunk): Fix doc string.
16050 (diff-apply-hunk): Only advance if `diff-advance-after-apply-hunk'.
16051 (diff-advance-after-apply-hunk): New variable.
16052 (diff-apply-hunk): Don't return a value.
16053
16054 2000-10-01 Stefan Monnier <monnier@cs.yale.edu>
16055
16056 * vc.el (vc-editable-p): Minor optimization.
16057 (edit-vc-file, vc-next-action-on-file): Don't use find-file.
16058 (vc-find-new-backend): New function split from vc-responsible-backend.
16059 (vc-register): Use it.
16060 (vc-responsible-backend): Remove REGISTER arg and add BACKENDS arg.
16061 (vc-unregister): Drop BACKEND arg (it doesn't work anyway).
16062 (vc-default-unregister, vc-revert-buffer): Docstring fix.
16063 (vc-clear-headers): Don't use find-file.
16064 (vc-revert-buffer): Use `and' again (must have been a braino).
16065 (vc-switch-backend): Only prompt if requested.
16066 Short circuit if nothing is to be done.
16067 Don't use vc-resynch-buffer which could lose unsaved editing.
16068 (vc-default-receive-file): Update call to vc-unregister.
16069 (with-vc-file, vc-next-action-on-file):
16070 Use vc-backend rather than vc-registered.
16071 (vc-next-action-on-file): Use intern-soft.
16072 Deal with read-only *vc-diff* buffer.
16073 (vc-transfer-file): Docstring fix.
16074
16075 * vc-rcs.el (vc-rcs-unregister): Keep a backup of the master file.
16076 (vc-rcs-receive-file): Avoid with-vc-properties.
16077 Update call to vc-unregister.
16078 Use constant `RCS' rather than (dynamically bound) var `backend'.
16079
16080 2000-10-01 Andre Spiegel <spiegel@gnu.org>
16081
16082 * vc.el (vc-next-action-on-file): Update mode line only if file
16083 is visited.
16084 (vc-start-entry): New argument initial-contents. Don't visit the file
16085 if it isn't already visited. Brought documentation up-to-date.
16086 (vc-next-action, vc-register): Updated calls to vc-start-entry.
16087 (vc-checkin): New optional arg initial-contents, which is passed to
16088 vc-start-entry.
16089 (vc-finish-logentry): Make sure to bury log buffer only if there
16090 really is one. Call `vc-resynch-buffer' on log-file, not
16091 buffer-file-name.
16092 (vc-default-comment-history, vc-default-wash-log): New functions.
16093 (vc-index-of): Removed.
16094 (vc-transfer-file): Make do without the above.
16095 (vc-default-receive-file): Call comment-history unconditionally. Pass
16096 the resulting string to vc-checkin, instead of inserting it into the
16097 comment ring.
16098
16099 * vc-rcs.el (vc-rcs-receive-file): Call comment-history
16100 unconditionally. Use the comments as initial contents of the log
16101 entry buffer. Document the trick to force branch creation with no
16102 changes.
16103
16104 2000-10-01 Miles Bader <miles@gnu.org>
16105
16106 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Call
16107 `recenter' with an arg to prevent redrawing the display.
16108
16109 2000-09-30 Stefan Monnier <monnier@cs.yale.edu>
16110
16111 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Prettier.
16112
16113 * emacs-lisp/lisp.el (lisp-complete-symbol): Only jump 2 not 3 levels.
16114
16115 * progmodes/c-mode.el (c-mode):
16116 Don't gratuitously override the default for comment-column.
16117
16118 * textmodes/tex-mode.el (latex-metasection-list): New var.
16119 (latex-imenu-create-index): Use it.
16120 Move the regexp construction outside loops (and use push).
16121 (tex-font-lock-keywords-1, tex-font-lock-keywords-2)
16122 (tex-font-lock-keywords): Moved from font-lock.el.
16123 (tex-comment-indent): Remove.
16124 (tex-common-initialization): Don't set comment-indent-function.
16125 (latex-block-default): New var.
16126 (tex-latex-block): Use it to provide a default choice.
16127 Add any unknown choice to latex-block-names.
16128 Insert [...] after {...}.
16129 (tex-last-unended-begin): Simplify regexp.
16130 (tex-goto-last-unclosed-latex-block, latex-backward-sexp-1)
16131 (latex-forward-sexp-1, latex-forward-sexp): New functions.
16132 (latex-mode): Set forward-sexp-function.
16133
16134 * textmodes/texinfo.el (texinfo-font-lock-syntactic-keywords):
16135 Add regexp for @ignore ... @end ignore.
16136 (texinfo-heading-face): New face.
16137 (texinfo-font-lock-keywords): Use it.
16138 (texinfo-mode-menu): New menu.
16139 (texinfo-inside-macro-p, texinfo-inside-env-p, texinfo-insert-quote):
16140 New functions.
16141 (texinfo-mode-map): Bind " to insert-quote and M-RET to insert-@item.
16142 (texinfo-section-types-regexp, texinfo-section-level-regexp)
16143 (texinfo-subsection-level-regexp, texinfo-subsubsection-level-regexp):
16144 Remove declaration.
16145 (texinfo-show-structure): Use outline-regexp and texinfo-section-list.
16146
16147 * delsel.el (delete-selection-mode): Use define-minor-mode.
16148
16149 * emacs-lisp/regexp-opt.el (regexp-opt-group): Put more parenthesis.
16150
16151 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
16152
16153 * dired.el (dired-map-over-marks): Use modern backquotes and docstring.
16154
16155 2000-09-30 Gerd Moellmann <gerd@gnu.org>
16156
16157 * replace.el (keep-lines-read-args): New function.
16158 (keep-lines, flush-lines, how-many): Use keep-lines-read-args to
16159 read arguments interactively. Add parameters RSTART and REND.
16160 Operate on the active region in Transient Mark mode.
16161
16162 * files.el (auto-mode-alist): Add pattern for `#*mail*...'.
16163
16164 * emacs-lisp/authors.el (authors-obsolete-file-p): New function.
16165 (authors-obsolete-files-regexps): New variable.
16166 (authors-add): Don't record changes in obsolete files.
16167
16168 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
16169
16170 * autoinsert.el (auto-insert-mode): Use define-minor-mode.
16171
16172 * newcomment.el (comment-indent-function): Use 0 for ;;; and %%%.
16173 (comment-indent): Make sure there's a space between code and comment.
16174 Shift comments left to avoid going past fill-column.
16175
16176 2000-09-29 Gerd Moellmann <gerd@gnu.org>
16177
16178 * startup.el (startup-echo-area-message): New function.
16179 (display-startup-echo-area-message): Use it.
16180 (fancy-splash-screens): Rewritten to use keymaps and a timer.
16181 (fancy-splash-default-action): New function.
16182 (fancy-splash-screens-1): New function.
16183 (fancy-splash-head): Put a help-echo and a keymap under the image.
16184
16185 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
16186
16187 * diff-mode.el (diff-add-log-file-name): Remove.
16188 (diff-mode): Use add-log-buffer-file-name-function.
16189
16190 * add-log.el (find-change-log): New arg BUFFER-FILE.
16191 (add-log-file-name): Obey add-log-file-name-function.
16192 (add-log-buffer-file-name-function): New var.
16193 (add-change-log-entry): Use it.
16194
16195 2000-09-29 Miles Bader <miles@gnu.org>
16196
16197 * image-file.el (image-file-name-extensions): New variable.
16198 (image-file-name-regexps): Renamed from `image-file-regexps'.
16199 New default value is nil. Call `auto-image-file-mode'.
16200 (image-file-name-regexp): New function.
16201 (auto-image-file-mode): New minor mode.
16202 (insert-image-file): Don't make conditional on the image-file
16203 handler being enabled.
16204 (image-file-handler): Make the call here conditional instead.
16205 (set-image-file-handler-enabled, enable-image-file-handler)
16206 (disable-image-file-handler): Functions removed.
16207
16208 * emacs-lisp/authors.el (authors-print): Rephrase many-files
16209 string.
16210
16211 2000-09-29 Gerd Moellmann <gerd@gnu.org>
16212
16213 * textmodes/tex-mode.el (latex-outline-regexp): Don't use `list*';
16214 it's a function from CL.
16215 (latex-imenu-create-index): Replace eval-when-compile with progn
16216 because latex-section-alist is not bound while compiling.
16217
16218 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
16219
16220 * textmodes/outline.el (outline-minor-mode): Use define-minor-mode.
16221 (outline-mode): Use define-derived-mode.
16222
16223 * progmodes/perl-mode.el (perl-mode):
16224 * progmodes/awk-mode.el (awk-mode):
16225 * progmodes/asm-mode.el (asm-mode):
16226 Don't gratuitously override the default for comment-column.
16227
16228 * emacs-lisp/lisp.el (lisp-complete-symbol):
16229 Distinguish the let-binding case from the funcall case.
16230 (forward-sexp-function): New variable.
16231 (forward-sexp): Use it.
16232
16233 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Autoload.
16234 (easy-mmode-defmap): Remove the now useless autoload.
16235
16236 * time.el (display-time-mode): Use define-minor-mode.
16237
16238 * subr.el (add-minor-mode): Don't eval NAME.
16239 Don't depend on the presence of TOGGLE-FUN for any special behavior.
16240 Use if rather than cond.
16241
16242 * simple.el (read-expression-map): Define more properly.
16243 (comment-indent-hook): Remove.
16244 (string-to-syntax): Bug fix.
16245
16246 * pcvs.el (cvs-ediff-exit-hook): Kill buffer before window.
16247 (cvs-ediff-diff): Fix typo.
16248 (cvs-revert-if-needed): Don't bother preserving read-only.
16249
16250 * paren.el (show-paren-mode): Use define-minor-mode.
16251
16252 * jka-compr.el (auto-compression-mode): Use define-minor-mode.
16253 (toggle-auto-compression): Remove.
16254 (jka-compr-build-file-regexp): Remove useless grouping.
16255
16256 * diff-mode.el (diff-mode-map, diff-minor-mode-prefix):
16257 Avoid user-reserved bindings.
16258 (diff-mode, diff-minor-mode): Drop make-local-hook (done by add-hook).
16259 (diff-header-face): Revert to grey85.
16260
16261 * cvs-status.el (cvs-status-entry-leader-re): Minor fix.
16262
16263 * complete.el (partial-completion-mode) <defcustom>: Remove.
16264 (partial-completion-mode): Use define-minor-mode.
16265 (PC-do-completion): Understand `completion-auto-help = delay'
16266 to mean to popup the completion buffer only the second time.
16267 (PC-include-file-all-completions, PC-include-file-all-completions)
16268 (PC-include-file-all-completions): Don't quote lambda.
16269
16270 * comint.el (comint-mode-hook): Docstring fix.
16271 (comint-mode): Use define-derived-mode.
16272 (comint-mode-map): Remove obsolete comment.
16273 (make-comint): Minor stylistic change.
16274 (comint-insert-clicked-input): Be more careful to find the overlay.
16275 Use this-command-keys rather than hardcoding mouse-2.
16276
16277 * font-lock.el: Replace confusing (,@ with ,
16278 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
16279 Don't use regexp-opt-depth. Spice up the regexp for args.
16280 Don't distinguish between cmds that can take an opt arg or not.
16281 Use `append' and `prepend' rather than `keep'.
16282
16283 * textmodes/tex-mode.el (latex-imenu-indent-string): Add a space.
16284 (latex-outline-regexp): New var.
16285 (latex-outline-level): New fun.
16286 (latex-section-alist): New var.
16287 (latex-imenu-create-index): Use it. Use `push' as well.
16288 (tex-shell-map): Initialize it properly.
16289 (tex-mode): Minor stylistic change.
16290 (plain-tex-mode): Use define-derived-mode.
16291 (latex-mode): Use define-derived-mode.
16292 Construct the paragraph regexps in a more readable way.
16293 Set the buffer-local outline-{level,regexp} vars.
16294 (slitex-mode): Derive from latex-mode.
16295 (tex-common-initialization): Don't kill-all-vars anymore.
16296 Add setting for comment-add and font-lock-defaults.
16297 (tex-start-shell): Use with-current-buffer and don't re-init keymap.
16298 (tex-main-file): New fun. Obey TeX-master as well and remove `.tex'.
16299 (tex-start-tex): New arg DIR (and send a chdir command for it).
16300 Also display the shell buffer and save it in tex-last-buffer-texed.
16301 (tex-region): Use expand-file-name rather than concat.
16302 Remove code made useless by changes in tex-start-tex.
16303 (tex-file): Use tex-main-file and adapt to new tex-start-tex.
16304
16305 * map-ynp.el (map-y-or-n-p): Fix missing backquotes.
16306
16307 2000-09-28 Dave Love <fx@gnu.org>
16308
16309 * eshell/eshell.el (eshell) <defgroup>: Add :version.
16310
16311 2000-09-28 Gerd Moellmann <gerd@gnu.org>
16312
16313 * emacs-lisp/authors.el (authors-add): Use `nconc' instead of
16314 `append'.
16315
16316 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
16317
16318 * info.el (Info-extract-pointer): Undo last change.
16319 Instead, fix the position of the `bound' arg to re-search-backward.
16320
16321 2000-09-27 Stefan Monnier <monnier@cs.yale.edu>
16322
16323 * info.el (Info-extract-pointer):
16324 Widen more carefully, to avoid finding pointers in other nodes.
16325 (Info-index): Use push.
16326
16327 2000-09-27 Gerd Moellmann <gerd@gnu.org>
16328
16329 * frame.el (set-frame-font): Remove call to obsolete function
16330 frame-update-faces.
16331 (set-foreground-color, set-background-color): Likewise for
16332 frame-update-face-colors.
16333
16334 2000-09-27 Miles Bader <miles@gnu.org>
16335
16336 * image-file.el: New file.
16337
16338 2000-09-27 Gerd Moellmann <gerd@gnu.org>
16339
16340 * frame.el (frame-notice-user-settings): Don't call
16341 frame-update-faces, which is a no-op now.
16342
16343 * ediff-wind.el (ediff-control-frame-parameters): Add zero
16344 tool-bar-lines.
16345
16346 2000-09-27 Dave Love <fx@gnu.org>
16347
16348 * mouse.el: Fix last change.
16349
16350 2000-09-27 Miles Bader <miles@lsi.nec.co.jp>
16351
16352 * toolbar/tool-bar.el (tool-bar-help): Use `mouse-pixel-position'.
16353
16354 2000-09-22 Kenichi Handa <handa@etl.go.jp>
16355
16356 * international/quail.el (quail-help): The output message is
16357 improved.
16358
16359 2000-09-26 Dave Love <fx@gnu.org>
16360
16361 * mouse.el (popup-menu): If POSITION is nil, set it using
16362 mouse-position.
16363
16364 2000-09-25 Sam Steingold <sds@gnu.org>
16365
16366 * net/browse-url.el (browse-url-file-url): Check for null maps.
16367
16368 2000-09-26 Gerd Moellmann <gerd@gnu.org>
16369
16370 * frame.el (frame-notice-user-settings): Don't add a
16371 tool-bar-lines frame parameter to default-frame-alist in batch mode.
16372
16373 * frame.el (frame-notice-user-settings):
16374 Make tool-bar-mode and default-frame-alist consistent.
16375
16376 * toolbar/tool-bar.el (tool-bar-help): New function.
16377
16378 2000-09-25 Gerd Moellmann <gerd@gnu.org>
16379
16380 * bytecomp.el (byte-compile-defvar-or-defconst): Only cons onto
16381 current-load-list in top-level forms. Else this leaks a cons cell
16382 every time a defun is called.
16383
16384 * mail/mail-utils.el (rmail-dont-reply-to): Fix last change.
16385
16386 2000-09-25 Dave Love <fx@gnu.org>
16387
16388 * startup.el (fancy-splash-head): Check XPM is available.
16389
16390 * autoinsert.el (auto-insert): Doc fix.
16391 (auto-insert-alist): Following GNU notices, don't say `copyright
16392 _by_'. Use line-beginning-position.
16393 (auto-insert): Check buffer-file-name is non-nil before use.
16394
16395 2000-09-25 Gerd Moellmann <gerd@gnu.org>
16396
16397 * textmodes/texinfo.el (texinfo-mode): Prevent filling lines
16398 starting with `@def' or `@multitable', in addition to ones
16399 specified by the user in auto-fill-inhibit-regexp.
16400
16401 2000-09-25 Markus Rost <rost@math.ohio-state.edu>
16402
16403 * mail/mail-utils.el (rmail-dont-reply-to): Avoid infinite loop if
16404 rmail-dont-reply-to-names matches the empty string.
16405
16406 2000-09-25 Gerd Moellmann <gerd@gnu.org>
16407
16408 * startup.el (command-line-1, fancy-splash-text): Change the
16409 text to sound more friendly.
16410
16411 2000-09-23 Thien-Thi Nguyen <ttn@gnu.org>
16412
16413 * progmodes/hideshow.el: Update author email address.
16414 Generally, sync w/ maintainer version 5.22.
16415 (hs-hide-all-non-comment-function): New var.
16416 (hs-hide-hook, hs-show-hook, hs-minor-mode): Update docstrings.
16417 (hs-hide-all): Use `hs-hide-all-non-comment-function'.
16418 (hs-show-region): Delete this command.
16419 (hs-minor-mode-map): Change bindings to leave "C-c LETTER" alone.
16420
16421 2000-09-22 Dave Love <fx@gnu.org>
16422
16423 * hl-line.el (hl-line-overlay): Don't make it buffer-local.
16424 (hl-line-highlight): Specify buffer when moving overlay.
16425
16426 * progmodes/fortran.el (fortran-mode): Locally set
16427 normal-auto-fill-function.
16428 (fortran-auto-fill-mode): Just alias to auto-fill-mode.
16429 (fortran-mode-map): Adjust auto-fill menu entry.
16430
16431 2000-09-22 Gerd Moellmann <gerd@gnu.org>
16432
16433 * vc-rcs.el (toplevel): Require `vc' when compiling.
16434
16435 * startup.el (fancy-splash-head): Use splash.pbm instead of splash.xbm.
16436
16437 2000-09-22 Andre Spiegel <spiegel@gnu.org>
16438
16439 * vc.el (vc-switch-backend): Signal an error if the file is not
16440 registered under the new backend.
16441
16442 * vc-rcs.el (vc-rcs-checkin): Fix bug that prevented check-in
16443 without explicit revision number.
16444
16445 2000-09-21 Stefan Monnier <monnier@cs.yale.edu>
16446
16447 * diff-mode.el (diff-file-header-face): Reset to its previous value.
16448 (diff-hunk-text): Correctly use offsets rather than buffer-positions.
16449 (diff-xor): New function.
16450 (diff-find-source-location): Use it. Fix a stupid name clash.
16451 (diff-hunk-status-msg): New function.
16452 (diff-apply-hunk): Drop args OTHER-FILE, DRY-RUN, POPUP and NOERROR.
16453 (diff-test-hunk): Use diff-find-source-location.
16454 (diff-goto-source): Favor the `reverse'.
16455 (diff-hunk-text): Properly handle one-sided context diffs.
16456 (diff-apply-hunk): When done, advance to the next hunk.
16457
16458 2000-09-21 Gerd Moellmann <gerd@gnu.org>
16459
16460 * startup.el (command-line): If frame was created with a non-zero
16461 tool-bar-lines parameter, switch tool-bar-mode on.
16462
16463 * add-log.el (change-log-date-face, change-log-name-face)
16464 (change-log-email-face, change-log-file-face)
16465 (change-log-list-face, change-log-conditionals-face)
16466 (change-log-function-face, change-log-acknowledgement-face):
16467 New faces, inheriting from font-lock faces.
16468 (change-log-font-lock-keywords): Use them.
16469
16470 2000-09-21 Dave Love <fx@gnu.org>
16471
16472 * progmodes/cperl-mode.el (top-level): Clean up
16473 `eval-when-compile's and assorted defvars.
16474 (cperl-invalid-face): Don't double-quote value. Change custom
16475 type.
16476 (cperl-mode): Set normal-auto-fill-function and don't zap
16477 auto-fill-function.
16478 (cperl-imenu--function-name-regexp-perl): Renamed from
16479 imenu-example--function-name-regexp-perl.
16480 (cperl-imenu--create-perl-index): Renamed from
16481 imenu-example--create-perl-index.
16482 (cperl-xsub-scan): Don't require cl.
16483
16484 * msb.el (msb-mode-map): Use substitute-key-definition.
16485 (msb-mode): Use msb-mode-map.
16486
16487 2000-09-21 Andre Spiegel <spiegel@gnu.org>
16488
16489 * vc.el (vc-index-of, vc-transfer-file, vc-default-receive-file):
16490 New functions.
16491 (vc-next-action-on-file): Call vc-transfer-file at appropriate places.
16492 (vc-switch-backend): New function.
16493 (vc-prefix-map): Bind `vc-switch-backend' to `b'.
16494 (vc-register): Fix prompt.
16495 (vc-unregister, vc-default-unregister): New functions.
16496 (vc-version-diff): Handle empty buffer in sentinel.
16497
16498 * vc-rcs.el (vc-rcs-workfile-is-newer): New function.
16499 (vc-rcs-state-heuristic): Use it to guess the state of files with
16500 non-strict locking.
16501 (vc-rcs-find-most-recent-rev): Handle the case when a branch has
16502 been set with -b, but not created yet.
16503 (vc-rcs-fetch-master-state): With non-strict locking, compare file
16504 contents in order to find the state.
16505 (vc-rcs-checkin): Allow creation of branches with no changes.
16506 (vc-rcs-unregister, vc-rcs-receive-file)
16507 (vc-rcs-set-non-strict-locking): New functions.
16508
16509 * vc-hooks.el (vc-name): Force correct computation of the value
16510 in case it is missing.
16511
16512 2000-09-21 Gerd Moellmann <gerd@gnu.org>
16513
16514 * startup.el (fancy-splash-tail): Use a different foreground
16515 color on a dark frame background.
16516
16517 2000-09-21 Miles Bader <miles@lsi.nec.co.jp>
16518
16519 * info.el: Use the correct capitalization when making Info-mode
16520 and Info-edit-mode `special' modes.
16521
16522 2000-09-20 Stefan Monnier <monnier@cs.yale.edu>
16523
16524 * diff-mode.el (diff-add-log-file-name, diff-current-defun): New funs.
16525 (diff-mode): Add support for add-log.el.
16526 (diff-hunk-text): Use char offsets rather than line offsets.
16527 (diff-find-source-location): Replace LINE with line-offset (nil
16528 if not found) and always set POS to a meaningful position.
16529 Adapt to the new char-offsets.
16530 (diff-apply-hunk): Drop support for the unused `select' POPUP.
16531 Adapt to the new diff-find-source-location.
16532 (diff-goto-source): Adapt to the new diff-find-source-location.
16533
16534 * add-log.el (add-log-file-name): New function (split out of
16535 add-change-log-entry).
16536 (add-change-log-entry): Use it.
16537 Call add-log-file-name-function with the changelog file name if
16538 the current buffer is not associated with any file.
16539 Avoid find-file if the selected window is dedicated.
16540
16541 * diff-mode.el (diff-find-source-location):
16542 Move code from diff-apply-hunk. Return buffer rather than file.
16543 (diff-apply-hunk): Use the new result from diff-find-source-location.
16544 (diff-goto-source): Use the new diff-find-source-location.
16545
16546 2000-09-20 Dave Love <fx@gnu.org>
16547
16548 * iswitchb.el: Some doc fixes.
16549 (iswitchb-mode-map): Define completely initially. Inherit
16550 minibuffer-local-map.
16551 (iswitchb-completion-help) <!iswitchb-xemacs>: Use
16552 fundamental-mode.
16553 (iswitchb-global-map): New variable.
16554 (iswitchb-summaries-to-end): Amalgamate regexps.
16555 (iswitchb-mode): New.
16556 (iswitchb-mode-hook): New variable.
16557 (iswitchb) <defgroup>: Add URL link. Use group `completion', not
16558 `extensions'.
16559
16560 2000-09-20 Gerd Moellmann <gerd@gnu.org>
16561
16562 * ehelp.el (electric-help): New defgroup.
16563 (electric-help-shrink-window): New user-option.
16564 (with-electric-help): Use it.
16565
16566 * window.el (shrink-window-if-larger-than-buffer): If face
16567 `mode-line' has a :box, and we're on a graphical frame, add 1
16568 to the needed window height.
16569
16570 * frame.el (frame-notice-user-settings): Add a last parameter nil
16571 to a call to `append', because the last list passed to `append' is
16572 not copied, and so subsequent calls to assq-delete-all will modify
16573 default-frame-alist.
16574
16575 * startup.el (fancy-splash-image): Change :type.
16576 (fancy-splash-head): Use an XBM image if appropriate.
16577 (command-line-1): Show splash screens in more cases.
16578
16579 * startup.el (fancy-splash-text): Don't quote faces.
16580
16581 * dired.el (dired-font-lock-keywords): Undo last change.
16582 (dired-readin): Bind indent-tabs-mode to nil.
16583
16584 * startup.el (fancy-splash-head): If frame's background mode
16585 is `dark', change the black background of the image to gray.
16586 (fancy-splash-screens): Display startup echo area message.
16587 (display-startup-echo-area-message): New function.
16588
16589 2000-09-20 Miles Bader <miles@lsi.nec.co.jp>
16590
16591 * faces.el (mode-line, tool-bar): Merge entries for `x' and `w32'.
16592
16593 * info.el (info-header-node): Tweak for color ttys.
16594
16595 * faces.el (face-valid-attribute-values): Make sure directories we
16596 search for stipples both exist and are readable before trying to
16597 search them.
16598
16599 * diff-mode.el (diff-apply-hunk): Jump to the correct line offset
16600 in the dry-run case.
16601
16602 * jka-compr.el (with-auto-compression-mode): New macro.
16603
16604 * cus-edit.el (custom-face-tag-face, custom-group-tag-face-1)
16605 (custom-group-tag-face, custom-variable-tag-face): Use relative
16606 :height and inherit from `variable-pitch' face instead of
16607 hardwiring :family.
16608 * hi-lock.el (hi-black-hb): Likewise.
16609
16610 Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
16611 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Like in
16612 toolbar-add-item, if image doesn't have a mask add a `:mask
16613 heuristic'.
16614
16615 2000-09-19 Stefan Monnier <monnier@cs.yale.edu>
16616
16617 * diff-mode.el: Docstring fixes.
16618 (diff-header-face, diff-comment-face): New faces.
16619 (diff-font-lock-keywords): Highlight a bit differently.
16620 (diff-find-source-location): Don't return SPAN any more.
16621 (diff-hunk-text): Don't bother erasing the temp buffer.
16622 (diff-find-text): Drop argument LINE.
16623 (diff-apply-hunk): Update calls to diff-find-text.
16624 (diff-goto-source): Use pop-to-buffer again and don't raise an error.
16625
16626 * calendar/calendar.el: Docstring fixes.
16627 (calendar-make-alist): Don't quote lambda.
16628 (calendar-star-date): Use make-local-variable.
16629
16630 2000-09-19 Dave Love <fx@gnu.org>
16631
16632 * toolbar/tool-bar.el: Renamed from toolbar.el.
16633 Change `toolbar' to `tool-bar' generally in symbols.
16634 Make some items invisible in `special' major modes.
16635 (tool-bar-add-item-from-menu): Renamed from toolbar-like-menu-item.
16636 Add arg PROPS.
16637
16638 * startup.el (fancy-splash-screen) <defgroup>: Fix syntax.
16639 Add :version here.
16640 (fancy-splash-delay, fancy-splash-image): Remove :version here.
16641
16642 2000-09-19 Gerd Moellmann <gerd@gnu.org>
16643
16644 * progmodes/sh-script.el (sh-search-word): Remove call to `debug'.
16645
16646 * files.el (find-file-suppress-same-file-warnings): New user-option.
16647 (find-file-noselect): Use it.
16648
16649 * startup.el (fancy-splash-delay, fancy-splash-image): Add :version.
16650 (fancy-splash-screen): Defgroup.
16651
16652 * add-log.el (change-log-font-lock-keywords): Match names
16653 more exactly for the case that font-lock-constant-face is
16654 underlined.
16655
16656 2000-09-19 Richard M. Stallman <rms@gnu.org>
16657
16658 * progmodes/sh-script.el (sh-search-word): Rewritten for speed.
16659
16660 2000-09-19 Andre Spiegel <spiegel@gnu.org>
16661
16662 * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
16663
16664 2000-09-19 Gerd Moellmann <gerd@gnu.org>
16665
16666 * gnus/: Update to emacs-21-branch of the Gnus CVS repository.
16667 * gnus/binhex.el, gnus/flow-fill.el, gnus/format-spec.el
16668 * gnus/gnus-ml.el, gnus/gnus-mlspl.el, gnus/ietf-drums.el,
16669 * gnus/imap.el, gnus/mail-parse.el, gnus/mail-prsvr.el,
16670 * gnus/mail-source.el, gnus/mailcap.el, gnus/mm-bodies.el,
16671 * gnus/mm-decode.el, gnus/mm-encode.el, gnus/mm-partial.el,
16672 * gnus/mm-util.el, gnus/mm-uu.el, gnus/mm-view.el,
16673 * gnus/mml.el, gnus/nnimap.el, gnus/nnslashdot.el,
16674 * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
16675 * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
16676 * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
16677 * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
16678
16679 * startup.el (fancy-splash-text): New variable.
16680 (fancy-splash-delay, fancy-splash-image): New user-options.
16681 (fancy-splash-insert, fancy-splash-head, fancy-splash-tail)
16682 (fancy-splash-screens): New functions.
16683 (command-line-1): If display has a `display' frame parameter, has
16684 colors, and we have XPM support, show more fancy splash screens.
16685
16686 2000-09-19 Dave Love <fx@gnu.org>
16687
16688 * map-ynp.el (map-y-or-n-p): Check use-dialog-box. Don't lose
16689 with null `help'. Use modern backquote syntax.
16690
16691 2000-09-19 Gerd Moellmann <gerd@gnu.org>
16692
16693 * font-lock.el (font-lock-mode): Change message telling the user
16694 that ``the buffer is too big''.
16695
16696 * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
16697 for instance for the case that tab-width is 2.
16698
16699 2000-09-18 Gerd Moellmann <gerd@gnu.org>
16700
16701 * toolbar/toolbar.el (toolbar-like-menu-item): Like in
16702 toolbar-add-item, if image doesn't have a mask add a `:mask
16703 heuristic'.
16704
16705 2000-09-18 Miles Bader <miles@lsi.nec.co.jp>
16706
16707 * diff-mode.el (diff-hunk-text): Add new optional arg LINE-OFFSET,
16708 and return a cons if it's non-nil.
16709 (diff-apply-hunk): Try to jump to the line in the source text
16710 corresponding to the position of point in the in the hunk.
16711
16712 * info.el (Info-title-3-face, Info-title-2-face)
16713 (Info-title-1-face): Use face inheritance and relative sizes
16714 instead of hard-wiring things.
16715
16716 * faces.el (secondary-selection): Make dark-background variant sane.
16717
16718 2000-09-16 Andrew Innes <andrewi@gnu.org>
16719
16720 * makefile.w32-in (compile-files-CMD): No need to make .elc files
16721 read-only, since they aren't under VC now.
16722
16723 2000-09-17 Dave Love <fx@gnu.org>
16724
16725 * tmm.el: Replace mapcar with mapc in several places.
16726
16727 * loadhist.el (unload-feature): Maybe call elp-restore-list and
16728 ad-unadvise.
16729
16730 * international/latin1-disp.el: New file.
16731
16732 * calendar/cal-move.el (scroll-calendar-left)
16733 (scroll-calendar-right): Make arg optional (for active mode line).
16734
16735 * calendar/calendar.el (calendar-mode-line-format): Make fields
16736 mouse-sensitive.
16737 (calendar-read-date, calendar-read-date, calendar-window-list):
16738 Unquote lambda.
16739 (calendar-month-name): Use aref, not sref.
16740
16741 * view.el (minor-mode-alist): Propertize the string.
16742
16743 * international/characters.el (standard-case-table): Add entries
16744 for Greek.
16745
16746 2000-09-18 Miles Bader <miles@gnu.org>
16747
16748 * info.el (info-node, info-xref): Add dark-background variants.
16749
16750 * faces.el (header-line): Change defaults to be less confusing
16751 when mixed with mode-lines.
16752
16753 * info.el (Info-fontify-node): Make a few cleanups.
16754 Add extra `help-echo' and `local-map' props to node xrefs.
16755 Use header-specific faces for node-names & xrefs.
16756 (Info-use-header-line): New variable.
16757 (info-header-xref, info-header-node): New faces.
16758 (Info-setup-header-line): New function.
16759 (Info-select-node): Call Info-setup-header-line when enabled.
16760 (Info-extract-pointer): Work even if the header line is hidden.
16761 (Info-header-line): New variable.
16762
16763 2000-09-16 Stefan Monnier <monnier@cs.yale.edu>
16764
16765 * vms-patch.el (print-region-function): Don't quote lambda.
16766
16767 * tempo.el (tempo-expand-if-complete): Quote paren in docstring.
16768
16769 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Cleanup the regexp.
16770 (lm-get-header-re): Allow spaces between the header and the colon.
16771 (lm-header): Allow $ in non-RCS headers.
16772 (lm-header-multiline): Put the strings back into order.
16773 Stop at an empty line. Don't require two space chars if the
16774 line is clearly not another header line.
16775
16776 * emacs-lisp/lmenu.el (popup-menu, popup-menu-internal)
16777 (popup-menu-popup): Remove.
16778
16779 2000-09-15 Gerd Moellmann <gerd@gnu.org>
16780
16781 * toolbar/toolbar.el (toolbar-add-item): Use the same image
16782 specification if or if not tool-bar item contains an `:enabled'
16783 property.
16784
16785 * menu-bar.el (menu-bar-files-menu): Disable ``Save'' if
16786 current buffer has no file name.
16787
16788 2000-09-15 Dave Love <fx@gnu.org>
16789
16790 * strokes.el: Sync with maintainer's current version with changes
16791 for Emacs, but avoid runtime cl and levents.
16792 (toplevel): Change autoloads and compilation requires.
16793 (strokes-version, strokes-bug-address, strokes-lift): Values
16794 changed.
16795 (strokes-xpm-header, strokes-insinuated): New variable.
16796 (strokes): Add :link.
16797 (strokes-mode): Customized.
16798 (strokes-while-inhibiting-garbage-collector): New macro.
16799 (strokes-remassoc): Avoid remove-if.
16800 (strokes-fix-button2-command): Don't use ad-do-it.
16801 (strokes-insinuate): New function.
16802 (strokes-button-press-event-p, strokes-button-release-event-p):
16803 New functions, used instead of non-`strokes-' versions..
16804 (strokes-mouse-event-p): Rewritten.
16805 (strokes-event-closest-point): Avoid event-point.
16806 (strokes-get-grid-position): Avoid cdadr, caadr
16807 (strokes-read-stroke, strokes-read-complex-stroke): Avoid levents
16808 functions.
16809 (strokes-help): Use with-output-to-temp-buffer.
16810 (strokes-window-configuration-changed-p): New function.
16811 (strokes-update-window-configuration): Use buffer-live-p,
16812 strokes-window-configuration-changed-p.
16813 (strokes-mode): Use strokes-insinuate. Alter mouse bindings.
16814 (strokes-char-face): New face.
16815 (strokes-char-table, strokes-base64-chars): New variable.
16816 (strokes-xpm-for-stroke, strokes-list-strokes)
16817 (strokes-xpm-char-on-p, strokes-xpm-char-bit-p)
16818 (strokes-xpm-encode-length-as-string, strokes-xpm-decode-char)
16819 (strokes-xpm-to-compressed-string, strokes-decode-buffer)
16820 (strokes-encode-buffer, strokes-xpm-for-compressed-string)
16821 (strokes-compose-complex-stroke, strokes-alphabetic-lessp): New
16822 functions.
16823
16824 2000-09-15 Gerd Moellmann <gerd@gnu.org>
16825
16826 * toolbar/toolbar.el (toolbar-add-item): Use image-mask-p.
16827
16828 * image.el (create-image): Doc fix.
16829
16830 * toolbar/toolbar.el (toolbar-add-item): Use `:mask heuristic'
16831 instead of `:heuristic-mask t'.
16832
16833 2000-09-14 Andrew Innes <andrewi@gnu.org>
16834
16835 * makefile.w32-in: Revert to Unix line endings.
16836
16837 2000-09-14 Andrew Innes <andrewi@gnu.org>
16838
16839 * makefile.w32-in: Add bootstrap support. Also copy lisp source
16840 when installing.
16841
16842 * makefile.nt (DONTCOMPILE): Fix typo.
16843
16844 * shell.el (shell-write-history-on-exit): New function.
16845 (shell-dumb-shell-regexp): New custom variable.
16846 (shell-mode): Make shell-write-history-on-exit the process
16847 sentinel if shell name matches shell-dumb-shell-regexp.
16848
16849 * w32-fns.el: Comment out before-init-hook function which resets
16850 source-directory based; this breaks bootstrap.
16851
16852 2000-09-14 Dave Love <fx@gnu.org>
16853
16854 * toolbar/cancel.xpm, toolbar/close.xpm, toolbar/copy.xpm,
16855 toolbar/cut.xpm, toolbar/exit.xpm, toolbar/fld_open.xpm,
16856 toolbar/help.xpm, toolbar/info.xpm, toolbar/mail.xpm,
16857 toolbar/mail_compose.xpm, toolbar/new.xpm, toolbar/open.xpm,
16858 toolbar/paste.xpm, toolbar/preferences.xpm, toolbar/print.xpm,
16859 toolbar/save.xpm, toolbar/saveas.xpm, toolbar/search-replace.xpm,
16860 toolbar/search.xpm, toolbar/spell.xpm, toolbar/undo.xpm: New.
16861 From Tuomas Kuosmanen <tigert@gimp.org>. (Gnome icons fetched
16862 from <URL:http://tigert.gimp.org/gnome/gnome-stock/>.)
16863
16864 * toolbar/toolbar.el: New.
16865
16866 * subdirs.el: Add toolbar.
16867
16868 2000-09-14 Gerd Moellmann <gerd@gnu.org>
16869
16870 * indent.el (indent-for-tab-command): Doc fix.
16871
16872 2000-09-14 Alex Schroeder <alex@gnu.org>
16873
16874 * ansi-color.el (ansi-colors): Doc change.
16875 (ansi-color-get-face): Simplified regexp.
16876 (ansi-color-faces-vector): Added more faces, doc change.
16877 (ansi-color-names-vector): Doc change.
16878 (ansi-color-regexp): Simplified regexp.
16879 (ansi-color-parameter-regexp): New regexp.
16880 (ansi-color-filter-apply): Doc change.
16881 (ansi-color-filter-region): Doc change.
16882 (ansi-color-apply): Use ansi-color-regexp and ansi-color-get-face,
16883 deal with zero length parameters.
16884 (ansi-color-apply-on-region): Doc change.
16885 (ansi-color-map): Doc change.
16886 (ansi-color-map-update): Removed debugging message.
16887 (ansi-color-get-face-1): Added condition-case to trap
16888 args-out-of-range errors.
16889 (ansi-color-get-face): Doc change.
16890 (ansi-color-make-face): Removed.
16891 (ansi-color-for-shell-mode): New option.
16892
16893 2000-09-13 Kenichi Handa <handa@etl.go.jp>
16894
16895 * international/quail.el (quail-start-translation): Translate KEY
16896 if necessary even if it doesn't have any mapping in the current
16897 input method.
16898 (quail-start-conversion): Likewise.
16899 (quail-help): The output message is improved.
16900
16901 2000-09-13 Miles Bader <miles@gnu.org>
16902
16903 * comint.el (comint-output-filter): Revert to using
16904 `insert-before-markers'. Add bletcherous hack to undo damage
16905 caused by `insert-before-markers'. Put `front-sticky' property on
16906 overlays created here so that the field code understands how the
16907 overlay works. Use a let when making comint-last-prompt-overlay,
16908 so that the code is easier to read.
16909
16910 2000-09-13 Dave Love <fx@gnu.org>
16911
16912 * wid-edit.el (widget-default-format-handler): DTRT when
16913 doc-property is a function.
16914
16915 2000-09-12 Francesco Potorti` <pot@gnu.org>
16916
16917 * mail/sendmail.el (mail-mode-fill-paragraph): Do not get the
16918 filed name if it's not there.
16919
16920 2000-09-12 Dave Love <fx@gnu.org>
16921
16922 * simple.el (read-mail-command): Doc fix.
16923 (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
16924
16925 * vc.el (vc-dired-listing-switches): Fix :version.
16926
16927 * vc-hooks.el: Doc fixes.
16928
16929 * subr.el (add-minor-mode): Use toggle-fun arg.
16930
16931 * speedbar.el: Add :version to several defcustoms.
16932
16933 * imenu.el (imenu--truncate-items, imenu--cleanup)
16934 (imenu--generic-function): Avoid mapcar.
16935 (imenu--replace-spaces): Function removed.
16936 (imenu--completion-buffer): Use subst-char-in-string.
16937 (imenu-add-to-menubar): Use keymap inheritance.
16938
16939 2000-09-12 Miles Bader <miles@gnu.org>
16940
16941 * diff-mode.el (diff-hunk-text): Use `with-temp-buffer'.
16942 (diff-mode-map): Bind `diff-test-hunk'.
16943 (diff-apply-hunk): Use `select-window' instead of `pop-to-buffer'.
16944
16945 2000-09-11 Gerd Moellmann <gerd@gnu.org>
16946
16947 * bytecomp.el (byte-compile-defvar): Undo last change
16948 because it breaks '(make-variable-buffer-local (defvar ...)'
16949 which is used at least in dired.
16950
16951 2000-09-12 Kenichi Handa <handa@etl.go.jp>
16952
16953 * international/quail.el (quail-define-package): Docstring
16954 modified.
16955
16956 2000-09-12 Kenichi Handa <handa@etl.go.jp>
16957
16958 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Add
16959 extra docstrings for "chinese-ccdospy", "chinese-ecdict",
16960 "chinese-etzy", "chinese-sw", and "chinese-ziranma". Modify the
16961 docstring of "chinese-py".
16962
16963 * international/quail.el (quail-translation-docstring): New
16964 variable.
16965 (quail-show-keyboard-layout): Docstring modified.
16966 (quail-select-current): Likewise.
16967 (quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
16968 infinite recursive call.
16969 (quail-help): Check quail-translation-docstring. Format of the
16970 output changed.
16971 (quail-help-insert-keymap-description): Adjusted for the above
16972 change.
16973
16974 2000-09-11 Gerd Moellmann <gerd@gnu.org>
16975
16976 * bytecomp.el (byte-compile-defvar): Only cons onto
16977 current-load-list in top-level forms. Else this leaks a cons cell
16978 every time a defun is called.
16979
16980 2000-09-11 Miles Bader <miles@lsi.nec.co.jp>
16981
16982 * diff-mode.el (diff-apply-hunk): Function basically rewritten.
16983 Now understands non-unified diffs. Some functionality moved into
16984 `diff-hunk-text' and `diff-find-text'. Add OTHER-FILE, DRY-RUN,
16985 POPUP, and NOERROR arguments. If DRY-RUN is true, don't actually
16986 modify anything. Only reposition point in the patched file if the
16987 patch succeeds. Only pop up another window if POPUP is true.
16988 Emit a message describing what happened if successful, and at what
16989 line-offset. Automatically detect reversed hunks and do something
16990 appropriate.
16991 (diff-hunk-text, diff-find-text): New functions.
16992 (diff-filter-lines): Function removed.
16993 (diff-test-hunk): New function.
16994 (diff-goto-source): Rewritten in terms of diff-apply-hunk.
16995
16996 2000-09-10 Dave Love <fx@gnu.org>
16997
16998 * textmodes/tildify.el: Minor doc/commentary fixes.
16999 (tildify) <defgroup>: Add :version.
17000
17001 * faces.el (face-x-resources): Make custom type more specific.
17002 (frame-background-mode): Use mapc.
17003 (region) <defcustom>: Add :version.
17004
17005 2000-09-08 Stefan Monnier <monnier@cs.yale.edu>
17006
17007 * vc-sccs.el (vc-sccs-register):
17008 * vc-rcs.el (vc-rcs-register):
17009 * vc-cvs.el (vc-cvs-register): Don't clear file's properties.
17010 * vc.el (vc-register): Clear file's properties.
17011
17012 2000-09-08 Gerd Moellmann <gerd@gnu.org>
17013
17014 * faces.el (face-spec-set): Only face-spec-reset-face when
17015 ATTRS is non-nil.
17016
17017 2000-09-08 Eli Zaretskii <eliz@is.elta.co.il>
17018
17019 * help.el (help-insert-xref-button): Fix a typo in doc string.
17020
17021 2000-09-07 Eli Zaretskii <eliz@is.elta.co.il>
17022
17023 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
17024 Fix doc strings of chinese-py-b5, chinese-py, and chinese-tonepy input
17025 methods.
17026
17027 * menu-bar.el (read-mail-item-name): New function.
17028 (menu-bar-tools-menu): Use it to compute and display the package
17029 used to read email.
17030 (menu-bar-tools-menu): Fix typo in GUD's help string.
17031
17032 2000-09-07 Dave Love <fx@gnu.org>
17033
17034 * diff-mode.el (diff-mouse-goto-source): New function.
17035
17036 * vc-sccs.el: Doc fixes.
17037 (vc-sccs-register-switches, vc-sccs-master-templates): Add :version.
17038
17039 * vc-rcs.el: Doc fixes.
17040 (vc-rcs-register-switches, vc-rcs-checkin-switches)
17041 (vc-rcs-checkout-switches, vc-rcs-header)
17042 (vc-rcs-master-templates): Add or change :version.
17043
17044 * vc-cvs.el: Doc fixes.
17045 (vc-cvs-register-switches, vc-cvs-header, vc-cvs-use-edit)
17046 (vc-cvs-stay-local): Add :version.
17047
17048 * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
17049
17050 2000-09-07 Kenichi Handa <handa@etl.go.jp>
17051
17052 * international/quail.el (quail-help): Fix previous change.
17053
17054 2000-09-07 Gerd Moellmann <gerd@gnu.org>
17055
17056 * faces.el (color-values): Doc fix.
17057
17058 * faces.el (frame-set-background-mode): Use frame-parameter
17059 instead of frame-parameters.
17060
17061 * frame.el (filtered-frame-list): Reduce consing.
17062 (frames-on-display-list): Call frame-parameter instead of
17063 frame-parameters.
17064
17065 2000-09-07 Kenichi Handa <handa@etl.go.jp>
17066
17067 * language/devan-util.el (devanagari-to-indian-region): In the
17068 loop, change the following char, not preceding char.
17069
17070 2000-09-07 Gerd Moellmann <gerd@gnu.org>
17071
17072 * menu-bar.el (menu-bar-update-buffers): Call frame-parameter
17073 instead of frame-parameters.
17074
17075 * faces.el (set-face-attribute): Simplify by calling
17076 internal-set-lisp-face-attribute with FRAME being 0.
17077
17078 * vc.el: Remove `Id' version control keyword.
17079
17080 2000-09-07 Kenichi Handa <handa@etl.go.jp>
17081
17082 * help.el (help-make-xrefs): Adjusted for the change of
17083 help-xref-mule-regexp.
17084 (help-insert-xref-button): New function.
17085
17086 * international/mule-cmds.el (help-xref-mule-regexp-template):
17087 Include the pattern for character set.
17088 (leim): New group.
17089
17090 * international/quail.el: Don't require face.
17091 (quail): New group.
17092 (quail-other-command): Dummy command to make quail-help work better.
17093 (quail-keyboard-layout-alist): Add Keyboard type "jp106".
17094 (quail-keyboard-layout-substitution): New variable.
17095 (quail-update-keyboard-layout): New function.
17096 (quail-keyboard-layout-type): New customizable variable.
17097 (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
17098 (quail-keyboard-translate): Pay attention to
17099 quail-keyboard-layout-substitution.
17100 (quail-insert-kbd-layout): New function.
17101 (quail-show-keyboard-layout): New function.
17102 (quail-get-translation): If the definition is a vector of length
17103 1, and the element is a string of length 1, return the character
17104 in that string.
17105 (quail-update-current-translations): Fix the case of
17106 relative-index out of range.
17107 (quail-build-decode-map, quail-insert-decode-map): New Functions.
17108 (quail-help): Show keyboard layout by quail-insert-kbd-layout.
17109 Show key sequences for all available characters.
17110 (quail-help-insert-keymap-description): Don't show such verbose
17111 key bindings as quail-self-insert-command.
17112
17113 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
17114 Format changed, and each element now have extra documentations.
17115 (tit-process-header): Delete invalid characters from TIT-PROMPT.
17116 Adjusted for the change of quail-cxterm-package-ext-info.
17117
17118 2000-09-06 Gerd Moellmann <gerd@gnu.org>
17119
17120 * vc-hooks.el (toplevel): Don't require `vc' during compilation;
17121 requiring it leads to a recursive loading of vc.el and vc-hooks.el
17122 during bootstrap.
17123
17124 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
17125
17126 * vc.el: (toplevel): Don't require `dired' at run-time.
17127 (vc-dired-resynch-file): Remove autoload cookie.
17128
17129 2000-09-05 Andre Spiegel <spiegel@gnu.org>
17130
17131 * vc.el: Made several backend functions optional.
17132 (vc-default-responsible-p): New function.
17133 (vc-merge): Use RET for first version to trigger merge-news, not
17134 prefix arg.
17135 (vc-annotate): Handle backends that do not support annotation.
17136 (vc-default-merge-news): Removed. The existence of a merge-news
17137 implementation is now checked on caller sites.
17138
17139 * vc-hooks.el (vc-default-mode-line-string): Removed CVS special
17140 case.
17141
17142 * vc-cvs.el (vc-cvs-mode-line-string): New function, handles the
17143 special case that has been removed from the default in vc-hooks.el.
17144
17145 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
17146
17147 * vc.el (vc-log-edit): Properly handle the case where FILE is nil.
17148
17149 2000-09-05 Andre Spiegel <spiegel@gnu.org>
17150
17151 * vc-hooks.el: Require vc during compilation.
17152 (vc-file-setprop): Use `vc-touched-properties' if bound by the new
17153 macro `with-vc-properties' in vc.el.
17154 (vc-file-getprop): Doc fix.
17155 (vc-after-save): Call `vc-dired-resynch-file' only if vc is loaded.
17156
17157 * vc.el: Require dired-aux during compilation.
17158 (vc-name-assoc-file): Moved to vc-sccs.el.
17159 (with-vc-properties): New macro.
17160 (vc-checkin, vc-checkout, vc-revert, vc-cancel-version,
17161 vc-finish-steal): Use it.
17162 (vc-cancel-version): Moved RCS-specific code to vc-rcs.el. The call
17163 to the backend-specific function is now supposed to do the checkout,
17164 too.
17165 (vc-log-edit): Handle FILE being nil and added a FIXME for log-edit.
17166
17167 * vc-cvs.el (vc-cvs-checkin, vc-cvs-checkout): Don't bother to
17168 set file properties; that gets done in the generic code now.
17169
17170 * vc-rcs.el (vc-rcs-uncheck): Renamed to `vc-rcs-cancel-version'.
17171 Changed parameter list, added code from vc.el that does the
17172 checkout, possibly with a double-take.
17173
17174 * vc-sccs.el (vc-sccs-name-assoc-file): Moved here from vc.el.
17175 (vc-sccs-add-triple, vc-sccs-rename-file, vc-sccs-lookup-triple): Use
17176 the above under the new name.
17177 (vc-sccs-uncheck): Renamed to `vc-sccs-cancel-version'. Changed
17178 parameter list, added checkout command.
17179 (vc-sccs-checkin, vc-sccs-checkout): Don't bother to set file
17180 properties; that gets done in the generic code now.
17181
17182 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
17183
17184 * vc.el: Docstring fixes (courtesy of checkdoc).
17185
17186 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
17187
17188 * vc.el (vc-checkout-writable-buffer-hook)
17189 (vc-checkout-writable-buffer): Remove.
17190 (vc-start-entry): Always call vc-log-edit, never vc-log-mode.
17191 (vc-log-mode): Make it into a clean derived major mode.
17192 (vc-log-edit): Mark buffer unmodified (as vc-log-mode did) and use
17193 vc-log-mode if log-edit is not available.
17194 (vc-dired-mode-map): Don't set-keymap-parent yet.
17195 (vc-dired-mode): Do set-keymap-parent here.
17196 (vc-dired-buffers-for-dir): Nop if dired is not loaded.
17197
17198 2000-09-05 Gerd Moellmann <gerd@gnu.org>
17199
17200 * faces.el (set-face-attribute, face-spec-reset-face)
17201 (face-spec-set): Avoid consing by removing calls to `apply'.
17202
17203 * frame.el (frame-parameter): Move to C code.
17204
17205 2000-09-05 Dave Love <fx@gnu.org>
17206
17207 * help.el (help-manyarg-func-alist): Add ml-prefix-argument-loop,
17208 insert-before-markers-and-inherit. Now checked systematically!
17209
17210 2000-09-05 Alex Schroeder <alex@gnu.org>
17211
17212 * sql.el (sql-postgres): Use sql-postgres-options.
17213 (sql-postgres-options): New variable.
17214
17215 2000-09-05 Alex Schroeder <alex@gnu.org>
17216
17217 * sql.el (sql-mode-menu): Work around missing variable mark-active
17218 in XEmacs.
17219 (sql-mode): Added call to easy-menu-add for XEmacs compatibility.
17220 (sql-interactive-mode): Added call to easy-menu-add for XEmacs
17221 compatibility.
17222
17223 2000-09-04 Gerd Moellmann <gerd@gnu.org>
17224
17225 * vc.el (vc-dired-resynch-file): Add autoload cookie.
17226
17227 * vc.el (toplevel): Require `dired' at run-time for dired-mode-map.
17228
17229 * Makefile.in (DONTCOMPILE): Fix typo in file name.
17230
17231 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17232
17233 * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we
17234 don't support anything else under SCCS yet.
17235
17236 * vc-hooks.el: Minor doc fixes.
17237
17238 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17239
17240 * vc.el (vc-next-action-on-file): Do not visit the file if it's
17241 not necessary. If verbose in state `needs-patch', do the same as
17242 under `up-to-date'. When NOT verbose and `needs-patch', check out
17243 latest version instead of `merge-news'.
17244 (vc-next-action-dired): Don't mess with default-directory here; it
17245 breaks other parts of dired. It is the job of the
17246 backend-specific functions to adjust it temporarily if they need it.
17247 (vc-next-action): Remove a special CVS case.
17248 (vc-clear-headers): New optional arg FILE.
17249 (vc-checkin, vc-checkout): Set properties vc-state and
17250 vc-checkout-time properly.
17251 (vc-finish-steal): Call steal-lock, not steal, which doesn't exist.
17252 (vc-print-log): Use new backend function `show-log-entry'.
17253 (vc-cancel-version): Do the checks in a different order. Added a
17254 FIXME concerning RCS-only code.
17255
17256 * vc-rcs.el (vc-rcs-show-log-entry): New function.
17257 (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties.
17258
17259 * vc-cvs.el (vc-cvs-show-log-entry): New function.
17260
17261 * vc-hooks.el (vc-default-mode-line-string): Show state
17262 `needs-patch' as a `-' too.
17263
17264 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17265
17266 * vc.el (vc-responsible-backend): New optional arg REGISTER.
17267 (vc-default-could-register): New function.
17268 (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions.
17269 (vc-resynch-buffer): Call vc-dired-resynch-file.
17270 (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use
17271 vc-resynch-buffer instead of vc-resynch-window.
17272 (vc-next-action-dired): Don't redisplay here, that gets done as a
17273 result of the individual file operations.
17274 (vc-retrieve-snapshot): Corrected prompt order.
17275
17276 * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file.
17277
17278 * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp
17279 as well.
17280 (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p. Handle
17281 hostname regexps. Updated all callers.
17282 (vc-cvs-responsible-p): Handle directories as well.
17283 (vc-cvs-could-register): New function.
17284 (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file
17285 properties up-to-date.
17286
17287 * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the
17288 user whether to create one.
17289
17290 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17291
17292 * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to
17293 check out a non-existing file.
17294
17295 * vc-cvs.el (vc-cvs-checkout): Do the right thing when the
17296 workfile does not exist.
17297
17298 * vc.el (vc-version-diff): Use `require' to check for existence of
17299 diff-mode.
17300
17301 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17302
17303 * vc-cvs.el (vc-cvs-registered): Use new function
17304 vc-cvs-parse-entry to do the actual work.
17305
17306 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17307
17308 * vc-hooks.el (vc-find-backend-function): If function doesn't
17309 exist, return nil instead of error.
17310 (vc-call-backend): Doc fix.
17311
17312 * vc.el (vc-do-command): Doc fix.
17313 (vc-finish-logentry): When checking in from vc-dired, choose the
17314 right backend for logentry check.
17315 (vc-dired-mode-map): Inherit from dired-mode-map.
17316 (vc-dired-mode): Local value of dired-move-to-filename-regexp
17317 simplified.
17318 (vc-dired-state-info): Removed, updated caller.
17319 (vc-default-dired-state-info): Use parentheses instead of hyphens.
17320 (vc-dired-hook): Use vc-BACKEND-dir-state, if available.
17321 (vc-dired-listing-switches): New variable.
17322 (vc-directory): Use it, instead of dired-listing-switches.
17323
17324 * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too.
17325 (vc-cvs-dir-state): New function.
17326 (vc-cvs-dir-state-heuristic): New function, subroutine of the above.
17327 (vc-cvs-parse-entry): New function, also to be used in
17328 vc-cvs-registered.
17329
17330 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17331
17332 * vc.el (vc-revert-buffer): Hide the frame for dedicated windows
17333 *or* single-window-frames.
17334
17335 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17336
17337 * vc.el (vc-update-changelog): Split into generic part and default
17338 implementation. Doc string adapted.
17339 (vc-default-update-changelog): New function. Call the `rcs2log'
17340 script in exec-directory, to fix a long-standing nuisance.
17341
17342 * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that
17343 simply signals an error.
17344
17345 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17346
17347 * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the
17348 control-flow more clear and to avoid running `cvs' twice.
17349
17350 * vc.el (vc-next-action-on-file): Doc fix.
17351 (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode.
17352 (vc-print-log): Eval `file' before constructing the continuation.
17353
17354 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17355
17356 * vc.el (vc-next-action-on-file): Corrected several messages.
17357 (vc-merge): Add prefix arg `merge-news'; handle it.
17358
17359 * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this
17360 is not reached. It is.
17361 (vc-cvs-merge): Set state to 'edited after merge.
17362 (vc-cvs-merge-news): Set workfile version to nil if not known.
17363 (vc-cvs-latest-on-branch-p): Recommented. Candidate for removal.
17364
17365 * vc-*.el (vc-*-checkout): Switch off coding systems for checkout
17366 via stdout. (Merge from main line.)
17367
17368 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17369
17370 * vc.el (vc-finish-logentry): Thinko in the "same comment"
17371 detection.
17372
17373 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17374
17375 * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them
17376 against kill-all-local-variables.
17377 (vc-log-edit): Don't save vc-parent-buffer any more.
17378 (vc-last-comment-match): Initialize to an empty string.
17379 (vc-post-command-functions): New hook.
17380 (vc-do-command): Run it.
17381 (vc-next-action-on-file): Remove unnecessary pop-to-buffer.
17382 (vc-finish-logentry): Only add the comment to the ring if it's
17383 different from the last comment entered.
17384 (vc-new-comment-index): New function.
17385 (vc-previous-comment): Use it. Make the minibuffer message
17386 slightly less terse.
17387 (vc-comment-search-reverse): Make it work forward as well. Don't
17388 set vc-comment-ring-index if no match is found. Use
17389 vc-new-comment-index.
17390 (vc-comment-search-forward): Use vc-comment-search-reverse.
17391 (vc-dired-mode-map): Don't inherit from dired-mode-map since
17392 define-derived-mode will do it for us. Bind `v' to a keymap that
17393 inherits from vc-prefix-map so that we can bind `vt' without
17394 binding C-x v t.
17395 (vc-retrieve-snapshot): Parenthesis typo.
17396
17397 * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0
17398 to 1. Make sure to switch to *vc* before looking for an error
17399 message. Use vc-parse-buffer.
17400
17401 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17402
17403 * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR
17404 and NAME.
17405 (vc-retrieve-snapshot): Split into two parts.
17406 (vc-default-retrieve-snapshot): New function.
17407
17408 * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME.
17409 (vc-cvs-retrieve-snapshot): New function (untested).
17410 (vc-cvs-stay-local): Default to t.
17411 (vc-cvs-remote-p): New function and property.
17412 (vc-cvs-state): Stay local only if the above is t.
17413 (vc-handle-cvs): Removed.
17414 (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be
17415 done via vc-handled-backends now.
17416 (vc-cvs-header): Escape Id.
17417
17418 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17419
17420 * vc.el (vc-do-command): Remove unused commands.
17421 (vc-version-diff): Make sure default-directory ends with a slash.
17422 Move the window commands into a vc-exec-after.
17423 (vc-print-log): Move more of the code into the `vc-exec-after'.
17424
17425 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17426
17427 * vc.el (vc-exec-after): Fix disassembly of previous sentinel.
17428 (vc-print-log): Search current revision from beginning of buffer.
17429 (vc-revert-buffer): Clear echo area after the diff is finished.
17430 (vc-prefix-map): Removed definition of "t" for terse display in vc
17431 dired.
17432 (vc-dired-mode-map): Inherit from dired-mode-map. Added
17433 definition of "vt" for terse display.
17434 (vc-dired-mode): Fix dired-move-to-filename-regexp.
17435
17436 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17437
17438 * vc.el (vc-exec-after): Avoid caddr.
17439
17440 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17441
17442 * vc.el (vc-exec-after): New function.
17443 (vc-do-command): Use it to add a termination message for async
17444 procs.
17445 (vc-checkout): Try to handle a missing-backend situation.
17446 (vc-version-diff): Use vc-exec-after to fix the behavior for diffs
17447 of a directory with a backend using async diffs.
17448 (vc-print-log): Use vc-exec-after and use log-view-goto-rev if
17449 present.
17450
17451 * vc-sccs.el (vc-sccs-state-heuristic): Use
17452 file-ownership-preserved-p.
17453
17454 * vc-rcs.el (vc-rcs-state-heuristic): Use
17455 file-ownership-preserved-p.
17456 (vc-rcs-checkout): Remove the error-handling for missing-rcs.
17457
17458 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17459
17460 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to
17461 vc-do-command.
17462
17463 * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert
17464 when there are no changes.
17465
17466 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17467
17468 * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p.
17469
17470 * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p.
17471
17472 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17473
17474 * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el.
17475
17476 * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move
17477 the `fset' outside of the defvar so that it works even if
17478 vc-prefix-map was already defined.
17479 (vc-setup-buffer): New function, split out of vc-do-command.
17480 (vc-do-command): Allow BUFFER to be t to mean `just use the
17481 current buffer without any fuss'.
17482 (vc-version-diff): Change the `diff' backend operation to just put
17483 the diff in the current buffer without erasing it. Always use
17484 *vc-diff* even for directory-diffs. Use vc-setup-buffer. Protect
17485 shrink-window-if-larger-than-buffer.
17486 (vc-print-log): Change the `print-log' backend operation to just
17487 put the log in the current buffer without erasing it. Protect
17488 shrink-window-if-larger-than-buffer.
17489 (vc-update-change-log): Fix setd typo.
17490
17491 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis.
17492 (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer.
17493
17494 * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer.
17495 (vc-rcs-diff): Insert in the current buffer and remove unused arg
17496 CMP.
17497
17498 * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use
17499 with-temp-file. Use the new BUFFER=t argument to vc-do-command.
17500 (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer.
17501
17502 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17503
17504 * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is
17505 not possible, use vc-BACKEND-workfile-unchanged-p.
17506 (vc-default-workfile-unchanged-p): New function. Delegates to a
17507 full vc-BACKEND-diff.
17508
17509 * vc-hooks.el (vc-simple-command): Removed.
17510
17511 * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command
17512 instead of vc-simple-command.
17513 (vc-rcs-fetch-master-state): Removed check for unlocked-changes to
17514 avoid doing a diff when opening a file.
17515 (vc-rcs-state): Added check for unlocked-changes.
17516 (vc-rcs-header): Escape Id.
17517 (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION.
17518 (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific
17519 version.
17520
17521 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten.
17522 (vc-sccs-diff): Remove optional arg CMP.
17523 (vc-sccs-state): Call vc-workfile-unchanged-p, not the
17524 SCCS-specific function.
17525
17526 * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of
17527 vc-simple-command.
17528
17529 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17530
17531 * vc.el (vc-editable-p): Renamed from vc-writable-p.
17532 (with-vc-file, vc-merge): Use vc-editable-p.
17533 (vc-do-command): Remove unused var vc-file and fix the
17534 doubly-defined `status' var. Add a user message when starting an
17535 async command.
17536 (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry)
17537 (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file):
17538 Use with-current-buffer.
17539 (vc-buffer-sync): Use unless.
17540 (vc-next-action-on-file): If the file is 'edited by read-only,
17541 make it read-write instead of trying to commit.
17542 (vc-version-diff, vc-update-change-log): Use `setq
17543 default-directory' rather than `cd'.
17544 (vc-log-edit): Don't forget to set default-directory in the
17545 buffer.
17546
17547 * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis.
17548 (vc-sccs-state-heuristic): Use file-writable-p instead of
17549 comparing userids.
17550 (vc-sccs-checkout): Use `unless'.
17551
17552 * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead
17553 of comparing userids.
17554 (vc-rcs-fetch-master-state): Handle the case where rcs is missing.
17555 Simplify the logic by eliminating unreachable code.
17556 (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and
17557 just do a recursive call if we need to retry.
17558 (vc-rcs-checkout): Handle the case where rcs is missing by making
17559 the buffer read-write if requested and re-signalling the error.
17560
17561 * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP.
17562
17563 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17564
17565 * vc-hooks.el (vc-handled-backends): Docstring change.
17566 (vc-ignore-vc-files): Mark obsolete.
17567 (vc-registered): Check vc-ignore-vc-files.
17568 (vc-find-file-hook, vc-file-not-found-hook): Don't check
17569 vc-ignore-vc-files.
17570
17571 * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs.
17572
17573 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17574
17575 * vc.el (vc-checkout): Don't do anything special for ange-ftp
17576 files since ange-ftp already has vc-registered return nil.
17577
17578 * vc-sccs.el (vc-sccs-state): Use with-temp-buffer.
17579 (vc-sccs-workfile-version): Use with-temp-buffer and new
17580 vc-parse-buffer and don't bother setting the property.
17581 (vc-sccs-add-triple): Use with-current-buffer and
17582 find-file-noselect.
17583 (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if.
17584
17585 * vc-rcs.el (vc-rcs-find-most-recent-rev): New function. The code
17586 derives from the old vc-parse-buffer but uses the revision number
17587 rather than the date (much easier to compare robustly).
17588 (vc-rcs-fetch-master-state): Use `with-temp-buffer'. Adapt to the
17589 new vc-parse-buffer (and vc-rcs-find-most-recent-rev). Find the
17590 locking-user more directly. Check strict locking and set
17591 checkout-model appropriately.
17592 (vc-rcs-parse-locks): Remove.
17593 (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the
17594 new vc-parse-buffer (and vc-rcs-find-most-recent-rev).
17595 (vc-rcs-system-release): Use with-current-buffer and
17596 vc-parse-buffer.
17597 (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer.
17598
17599 * vc-hooks.el (vc-parse-buffer): Lobotomize the monster.
17600 (vc-simple-command): Docstring fix.
17601 (vc-registered): Align the way the file-handler is called with the
17602 way the function itself works.
17603 (vc-file-owner): Remove.
17604
17605 * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer. Reorder
17606 extraction of fields and call to file-attributes because of a
17607 temporary bug in rcp.el.
17608 (vc-cvs-fetch-status): Use with-current-buffer.
17609
17610 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17611
17612 * vc.el (vc-do-command): Use file-relative-name.
17613 (vc-responsible-backend): Use vc-backend if possible.
17614 (vc-create-snapshot): Improve the `interactive' spec. Add support
17615 for branches and dispatch to backend-specific `create-snapshot'.
17616 (vc-default-create-snapshot): New function, containing the bulk of
17617 the old vc-create-snapshot.
17618 (vc-retrieve-snapshot): Improve the interactive spec.
17619
17620 * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el.
17621 (vc-backend-hook-functions): Remove.
17622 (vc-find-backend-function): Don't try to load vc-X-hooks anymore.
17623 (vc-backend): Reintroduce the test for `file = nil' now that I
17624 know why it was there (and added a comment to better remember).
17625
17626 * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in
17627 code from vc-sccs-hooks.el.
17628 (vc-sccs-release, vc-sccs-system-release): Remove. Don't require
17629 'vc anymore.
17630 (vc-sccs-responsible-p): Use expand-file-name instead of concat
17631 and file-directory-p instead of file-exists-p.
17632 (vc-sccs-check-headers): Simplify the regexp.
17633
17634 * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code
17635 from vc-rcs-hooks.el. Don't require 'vc anymore.
17636 (vc-rcs-responsible-p): Use expand-file-name instead of concat and
17637 file-directory-p instead of file-exists-p.
17638
17639 * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code
17640 from vc-cvs-hooks.el.
17641 (proto vc-cvs-registered): Require 'vc-cvs instead of
17642 'vc-cvs-hooks. Don't require 'vc anymore.
17643 (vc-cvs-responsible-p): Use expand-file-name instead of concat and
17644 file-directory-p instead of file-exists-p.
17645 (vc-cvs-create-snapshot): New function, replacing
17646 vc-cvs-assign-name.
17647 (vc-cvs-assign-name): Remove.
17648
17649 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17650
17651 * vc-cvs.el (vc-cvs-header): New var.
17652
17653 * vc-rcs.el (vc-rcs-exists): Remove.
17654 (vc-rcs-header): New var.
17655
17656 * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use
17657 `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'.
17658 (vc-sccs-header): New var.
17659
17660 * vc.el (vc-do-command): Get rid of the `last' argument.
17661 (vc-header-alist): Remove, replaced by vc-X-header.
17662 (vc-insert-headers): Use vc-X-header instead of vc-header-alist.
17663 (vc-dired-hook): Use expand-file-name instead of concat.
17664 (vc-directory): Use file-name-as-directory.
17665 (vc-snapshot-precondition, vc-create-snapshot)
17666 (vc-retrieve-snapshot): Allow the command to operate on any
17667 directory.
17668
17669 * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either
17670 just removing the 'WORKFILE argument or by removing the 'MASTER
17671 argument and replacing `file' with (vc-name file).
17672
17673 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17674
17675 * vc.el: Update Copyright and add a crude list of backend funs.
17676 (vc-writable-p): New function.
17677 (with-vc-file): Use vc-writable-p.
17678 (vc-next-action-on-file): Update call to vc-steal-lock and cleanup.
17679 (vc-register): Avoid vc-name.
17680 (vc-locking-user): Remove.
17681 (vc-steal-lock): Make the `owner' arg non-optional.
17682 (vc-merge): Use vc-writable-p instead of vc-locking-user and
17683 vc-checkout-model.
17684 (vc-default-dired-state-info): Use vc-state instead of
17685 vc-locking-user and return special strings for special states.
17686 (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user
17687 and get rid of one of the special CVS cases.
17688 (vc-cancel-version): prettify error message with \\[...].
17689 (vc-rename-master): New function.
17690 (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn
17691 use vc-rename-master) instead of vc-BACKEND-record-rename. Make
17692 the CVS special case generic.
17693 (vc-default-record-rename): Remove.
17694 (vc-file-tree-walk-internal): Only call FUNC for files that are
17695 under control of some VC backend and replace `concat' with
17696 expand-file-name.
17697 (vc-file-tree-walk): Update docstring.
17698 (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot)
17699 (vc-retrieve-snapshot): Update call to vc-file-tree-walk.
17700
17701 * vc-sccs.el (vc-sccs-rename-file): Renamed from
17702 vc-sccs-record-rename. Use `find-file-noselect' rather than
17703 `find-file' and call `vc-rename-master' to do the actual move.
17704 (vc-sccs-diff): Remove unused `backend' variable.
17705
17706 * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version
17707 to delay loading of vc-sccs until it is really used.
17708 (vc-sccs-master-templates): Preload.
17709 (vc-sccs-state): Update call to vc-sccs-parse-locks.
17710 (vc-sccs-project-dir): Remove (merged into
17711 vc-sccs-search-project-dir).
17712 (vc-sccs-search-project-dir): Rewrite using file name handling ops
17713 rather than `concat', make sure it is preloaded and don't bother
17714 to check that the file actually exists.
17715 (vc-sccs-parse-locks): Remove unused `file' argument, remove
17716 `locks' argument (use buffer's content instead) and eliminate n^2
17717 behavior.
17718
17719 * vc-rcs.el: Update Copyright.
17720 (vc-rcs-rename-file): New function.
17721 (vc-rcs-diff): Remove unused `backend' variable.
17722
17723 * vc-hooks.el: Update Copyright.
17724 (vc-backend): Don't accept a nil argument any more.
17725 (vc-up-to-date-p): Turn into a defsubst.
17726 (vc-possible-master): New function.
17727 (vc-check-master-templates): Use `vc-possible-master' and allow
17728 funs in vc-X-master-templates to return a non-existent file.
17729
17730 * vc-cvs.el: Update Copyright.
17731 (vc-cvs-diff): Remove unused `backend' variable.
17732 (vc-cvs-checkout): Only toggle read-only if the buffer is setup right.
17733
17734 * vc-cvs-hooks.el: Preload a proto vc-cvs-registered.
17735
17736 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17737
17738 * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version
17739 since it can be called from vc-rcs.el.
17740 (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior.
17741
17742 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17743
17744 * vc.el (vc-version-diff): Expand file name read from the
17745 minibuffer. Handle the case when a previous version number can't
17746 be guessed. Give suitable messages when there were no differences
17747 found.
17748 (vc-clear-headers): Call backend-specific implementation, if one
17749 exists.
17750 (vc-cancel-version): Made error checks generic. When done, clear
17751 headers generically, too.
17752
17753 * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here
17754 from vc-clear-headers in vc.el.
17755
17756 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer
17757 correctly.
17758 (vc-rcs-latest-on-branch-p): Made second argument VERSION
17759 optional. Handle the case when it's not there.
17760
17761 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17762
17763 * vc.el (vc-locking-user): Moved from vc-hooks.el.
17764
17765 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17766
17767 * vc-hooks.el (vc-loadup): Remove.
17768 (vc-find-backend-function): Use `require'. Also, handle the case
17769 where vc-BACKEND-hooks.el doesn't exist.
17770 (vc-call-backend): Cleanup.
17771
17772 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17773
17774 * vc-rcs-hooks.el (vc-rcs-templates-grabbed,
17775 vc-rcs-grab-templates)
17776 (vc-rcs-registered): Remove. The default function works as well.
17777 * vc-sccs-hooks.el (vc-sccs-templates-grabbed,
17778 vc-sccs-grab-templates)
17779 (vc-sccs-registered): Remove. The default function works as well.
17780
17781 * vc.el (vc-version-diff): Left out a vc- in call to
17782 vc-call-backend.
17783 (vc-default-dired-state-info, vc-default-record-rename)
17784 (vc-default-merge-news): Update for the new backend argument.
17785
17786 * vc-hooks.el (vc-find-backend-function): Return a cons cell if
17787 using the default function.
17788 (vc-call-backend): If calling the default function, pass it the
17789 backend as first argument. Update the docstring accordingly.
17790 (vc-default-state-heuristic, vc-default-mode-line-string): Update
17791 for the new backend argument.
17792 (vc-make-backend-sym): Renamed from vc-make-backend-function.
17793 (vc-find-backend-function): Use the new name.
17794 (vc-default-registered): New function.
17795
17796 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17797
17798 * vc.el (vc-merge): Use vc-find-backend-function.
17799
17800 * vc-hooks.el (vc-backend-functions): Remove.
17801 (vc-loadup): Don't setup 'vc-functions.
17802 (vc-find-backend-function): New function.
17803 (vc-call-backend): Use above fun and populate 'vc-functions
17804 lazily.
17805 (vc-backend-defines): Remove.
17806
17807 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17808
17809 * vc.el (vc-register): Put a FIXME note for a newly found bug.
17810 Call vc-call-backend without the leading vc-.
17811 (vc-responsible-backend, vc-finish-logentry, vc-annotate)
17812 (vc-check-headers): Call vc-call-backend without the leading vc-.
17813 (vc-annotate-time-span): Replace confusing use of `cond' with `or'.
17814 (vc-annotate-display): Replace confusing use of `cond' with `or'.
17815 Call vc-call-backend without the leading vc-.
17816
17817 * vc-cvs.el (tail): Provide vc-cvs.
17818 * vc-sccs.el (tail): Provide vc-sccs.
17819 * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check.
17820
17821 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions)
17822 (vc-make-backend-function, vc-call): Pass names without leading
17823 `vc-' to vc-call-backend so we can blindly prefix them with vc-BACKEND.
17824 (vc-loadup): Don't load vc-X-hooks if vc-X is requested.
17825 (vc-call-backend): Always try to load vc-X-hooks.
17826 (vc-registered): Remove vc- in call to vc-call-backend.
17827
17828 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17829
17830 * vc.el (vc-process-filter): New function.
17831 (vc-do-command): Setup `vc-process-filter' for the async process.
17832 (vc-maybe-resolve-conflicts): New function to reduce
17833 code-duplication. Additionally, it puts the buffer in
17834 `smerge-mode' if applicable.
17835 (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after
17836 calling `merge-news'.
17837 (vc-merge): Use `vc-maybe-resolve-conflicts' after calling `merge'.
17838 (vc-log-edit): New function. Replacement for `vc-log-mode' by
17839 interfacing to log-edit.el.
17840 (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if
17841 log-edit is available.
17842 (vc-resolve-conflicts): Delegate to `smerge-ediff' if available.
17843
17844 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17845
17846 * vc.el (vc-register): Remove `vc-buffer-backend' setup.
17847 (vc-log-mode-map): New name for vc-log-entry-mode and merge the
17848 defvar and the initialization.
17849 (vc-log-mode): Minor docstring fix and use vc-log-mode-map.
17850
17851 * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove.
17852 (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling.
17853
17854 * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a FIXME.
17855
17856 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17857
17858 * vc.el (vc-file-clear-masterprops): Removed.
17859 (vc-checkin, vc-revert-buffer): Removed calls to the above.
17860 (vc-version-diff): Use buffer-size without argument.
17861 (vc-register): Heed vc-initial-comment.
17862
17863 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for
17864 default branch.
17865
17866 * vc-rcs.el (vc-rcs-register): Parse command output to find master
17867 file name and workfile version.
17868 (vc-rcs-checkout): Removed call to vc-file-clear-masterprops.
17869
17870 * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to
17871 vc-file-clear-masterprops.
17872
17873 * vc-sccs.el (vc-sccs-checkout): Removed call to
17874 vc-file-clear-masterprops. If writable, set vc-state to 'edited
17875 rather than user login name.
17876
17877
17878 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17879
17880 * vc.el (vc-workfile-unchanged-p): Remove unused argument
17881 `want-differences-if-changed' and simplify.
17882 (vc-next-action-on-file) [needs-merge]: Resynch the buffer.
17883 (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status
17884 output (which is invalid for async vc-diff) to decide whether to
17885 do the revert silently or not.
17886
17887 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17888
17889 * vc-hooks.el (vc-loadup): Load files quietly.
17890 (vc-call-backend): Oops, brain fart.
17891
17892 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17893
17894 * vc-cvs.el (vc-cvs-state): Typo.
17895 (vc-cvs-merge-news): Return the status code rather than the error msg.
17896
17897 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17898
17899 * vc.el (with-vc-file, vc-next-action, vc-version-diff)
17900 (vc-dired-mark-locked): Replaced usage of vc-locking-user with
17901 vc-state or vc-up-to-date-p.
17902 (vc-merge): Use vc-backend-defines to check whether merging is
17903 possible. Set state to 'edited after successful merge.
17904
17905 * vc-hooks.el (vc-locking-user): If locked by the calling user,
17906 return that name. Redocumented.
17907
17908 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17909
17910 * vc.el (vc-recompute-state, vc-next-action-on-file): Update to
17911 new `vc-state' semantics.
17912 (vc-finish-steal): Set 'vc-state to 'edited rather than setting
17913 'vc-locking-user to the current user.
17914 (vc-merge): Inline vc-backend-merge. Comment out code that I
17915 don't understand and hence can't adapt to the new `vc-state' and
17916 `vc-locking-user' semantics.
17917 (vc-backend-merge): Remove.
17918
17919 * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state
17920 rather than 'vc-locking-user.
17921
17922 * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'.
17923
17924 * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit.
17925 (vc-state): Don't use 'reserved any more. Just use the same
17926 convention as the one used for vc-<backend>-state where the
17927 locking user (as a string) is returned.
17928 (vc-locking-user): Update, based on the above convention. The
17929 'vc-locking-user property has disappeared.
17930 (vc-mode-line, vc-default-mode-line-string): Adapt to new `vc-state'.
17931
17932 * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state
17933 with a heuristic one.
17934 (vc-cvs-merge-news): Just use 'edited for the case with conflicts.
17935 (vc-cvs-checkin): Do a trivial parse to set the state in case of
17936 error. That allows us to get to 'needs-merge even in the
17937 stay-local case. There's still no way to detect 'needs-patch in
17938 such a setup (or to force an update for that matter).
17939 (vc-cvs-logentry-check): Remove, the default works as well.
17940
17941 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17942
17943 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs asynchronously.
17944
17945 * vc.el (vc-do-command): kill-all-local-variables, to reset any
17946 major-mode in which the buffer might have been put earlier. Use
17947 `remove' and `when'. Allow `okstatus' to be `async' and use
17948 `start-process' in this case.
17949 (vc-version-diff): Handle the case where the diff looks empty
17950 because of the use of an async process.
17951
17952 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17953
17954 * vc.el (vc-next-action-on-file): Removed optional parameter
17955 `simple'. Recompute state unconditionally.
17956 (vc-default-toggle-read-only): Removed.
17957
17958 * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only.
17959 (vc-toggle-read-only): Undid prev change.
17960
17961 * vc-cvs.el (vc-cvs-stay-local): Renamed from
17962 vc-cvs-simple-toggle. Redocumented.
17963 (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic.
17964 (vc-cvs-toggle-read-only): Removed.
17965
17966 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17967
17968 * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): Remove.
17969 (vc-prefix-map): Move from vc-hooks.el and make autoloaded.
17970 (vc-release-greater-or-equal-p): Move to vc-rcs.el.
17971 (vc-file-clear-masterprops): Braindead "fix". It was a nop and
17972 still is. So maybe it should be removed.
17973 (vc-head-version, vc-find-binary): Remove.
17974 (vc-recompute-state): Move from vc-hooks.el.
17975 (vc-next-action-on-file): Add a `simple' argument to allow
17976 avoiding the `recompute' step (use for vc-cvs-simple-toggle).
17977 (vc-default-toggle-read-only, vc-default-record-rename): New funs.
17978 (vc-next-action, vc-dired-hook): Use vc-state instead of vc-cvs-status.
17979 (vc-dired-mode-map): Properly defvar it.
17980 (vc-print-log): Call log-view-mode if available.
17981 (small-temporary-file-directory): defvar instead of use boundp.
17982 (vc-merge-news): Moved to vc-cvs.el.
17983 (vc-default-merge-news): New function.
17984
17985 * vc-sccs.el: Require 'vc and 'vc-sccs-hooks.
17986 (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks.
17987 (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the
17988 unknown `vc-latest-version' function. It should probably refer to
17989 vc-workfile-version or somesuch, but it's very unclear to me and I
17990 don't have SCCS to test things.
17991
17992 * vc-sccs-hooks.el: Provide 'vc-sccs-hooks.
17993 (vc-sccs-state-heuristic): Fix typo.
17994 (vc-sccs-workfile-unchanged-p): Add missing argument.
17995
17996 * vc-rcs.el: Require vc and vc-rcs-hooks.
17997 (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks.
17998 (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p).
17999 (vc-release-greater-or-equal-p): Move from vc.
18000 (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part,
18001 vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates.
18002 (vc-rcs-checkout): Add a missing `new-version' argument in the
18003 call to vc-rcs-latest-on-branch-p. Hopefully that was the right one.
18004
18005 * vc-rcs-hooks.el: Provide 'vc-rcs-hooks.
18006 (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el.
18007 (vc-rcs-latest-on-branch-p): Use the `version' argument rather
18008 than the apparently unbound `workfile-version'.
18009
18010 * vc-hooks.el (vc-master-templates): Def the obsolete var.
18011 (vc-file-prop-obarray): Use `make-vector'.
18012 (vc-backend-functions): Add new hookable functions
18013 vc-toggle-read-only, vc-record-rename and vc-merge-news.
18014 (vc-loadup): If neither backend nor default functions exist, use
18015 the backend function rather than nil.
18016 (vc-call-backend): If the function if not bound yet, try to load
18017 the non-hook file to see if it provides it.
18018 (vc-call): New macro plus use it wherever possible.
18019 (vc-backend-subdirectory-name): Use neither `vc-default-back-end'
18020 nor `vc-find-binary' since it's only called from
18021 vc-mistrust-permission which is only used once the backend is known.
18022 (vc-checkout-model): Fix parenthesis.
18023 (vc-recompute-state, vc-prefix-map): Move to vc.el.
18024
18025 * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler warnings).
18026 (vc-cvs-release, vc-cvs-system-release): Remove.
18027 (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables.
18028 (vc-cvs-dired-state-info): Use `cvs-state' and slightly different
18029 status symbols.
18030 (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el.
18031 (vc-cvs-toggle-read-only): First cut at a function to allow a
18032 cvs-status-free vc-toggle-read-only.
18033 (vc-cvs-merge-news): Move from cvs-merge-news in vc.el.
18034 (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of
18035 vc-cvs-status. Also set vc-state rather than vc-locking-user.
18036 (vc-cvs-checkout): Modify access rights directly if the user
18037 requested not to use `cvs edit'. And refresh the mode line.
18038
18039 * vc-cvs-hooks.el: Provide 'vc-cvs-hooks.
18040 (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el.
18041
18042 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
18043
18044 * vc-cvs.el (vc-cvs-checkout): Docstring fix. Added a `(if
18045 workfile' that got lost when the code was extracted from vc.el.
18046 And merged the tail with the rest of the code (not possible in the
18047 old vc.el where the tail was shared among all backends). And
18048 explicitly set the state to 'edited if `writable' is set.
18049
18050 * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name.
18051 (vc-cvs-state): Be careful to return the value from
18052 vc-cvs-parse-state.
18053 (vc-cvs-parse-status): Use expand-file-name. Don't set 'vc-state
18054 property but return it instead. Also be careful to handle a nil
18055 or "" `rev' when workfile is non-nil (it was handled properly when
18056 workfile was nil).
18057
18058 * vc.el: Removed those pesky unnecessary `(function' quotes.
18059 (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize
18060 directly in the defvar.
18061 (vc-do-command): Bind inhibit-read-only so as to properly handle
18062 the case where the destination buffer has been made read-only.
18063 (vc-diff): Delegate to vc-version-diff in all cases.
18064 (vc-version-diff): Setup the *vc-diff* buffer as was done in vc-diff.
18065 (vc-annotate-mode-variables): Removed (code moved partly to
18066 defvars and partly to vc-annotate-add-menu).
18067 (vc-annotate-mode): Turned into a derived-mode.
18068 (vc-annotate-add-menu): Moved in code in
18069 vc-annotate-mode-variables.
18070 (vc-update-change-log): Use make-temp-file if available.
18071
18072 2000-09-04 Martin Lorentzson <martinl@delysid.gnu.org>
18073
18074 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to
18075 `vc-checkout-model' updated to `vc-cvs-update-model'.
18076
18077 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18078
18079 * vc.el (vc-next-action-on-file): Added handling of state
18080 `unlocked-changes'.
18081 (vc-checkout-carefully): Is now practically obsolete, unless the
18082 above is too slow to be enabled unconditionally.
18083 (vc-update-change-log): Fixed typo.
18084
18085 * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'.
18086
18087 * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten.
18088 Now handles state `unlocked-changes'.
18089 (vc-sccs-workfile-unchanged-p): New function, to support the above.
18090
18091 * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'.
18092
18093 * vc-rcs-hooks.el (vc-rcs-state): Fixed typo.
18094 (vc-rcs-fetch-master-state): Bug fixes. Recognize state
18095 `unlocked-changes'.
18096 (vc-rcs-workfile-unchanged-p): Renamed from
18097 `vc-rcs-workfile-unchanged'. This is not a real backend-specific
18098 function yet, but supposed to become one soon.
18099
18100 * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to
18101 `vc-steal-lock'.
18102 (vc-call-backend): Changed error message.
18103 (vc-state): Added description of state `unlocked-changes'.
18104
18105 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18106
18107 * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to
18108 always return t in CVS-controlled directories.
18109
18110 * vc.el (vc-responsible-backend): New function.
18111 (vc-register): Largely rewritten.
18112 (vc-admin): Removed (implementation moved into vc-register).
18113 (vc-checkin): Redocumented.
18114 (vc-finish-logentry): If no backend defined yet (because we are in
18115 the process of registering), use the responsible backend.
18116
18117 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
18118 Updated function lists.
18119 (vc-call-backend): Fixed typo.
18120
18121 * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p):
18122 New functions.
18123 (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'.
18124 Removed query option. Redocumented.
18125
18126 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18127
18128 * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'.
18129
18130 * vc.el: Updated callers of `vc-checkout-required' to use
18131 `vc-checkout-model'.
18132
18133 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18134
18135 * vc-rcs.el (vc-rcs-backend-release-p): function added. other
18136 stuff updated to reference this function instead of the old
18137 `vc-backend-release-p'.
18138
18139 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18140
18141 * vc-sccs-hooks.el (vc-uses-locking): Renamed to
18142 vc-checkout-model. Return appropriate values. Updated callers.
18143
18144 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18145
18146 * vc.el (vc-backend-release, vc-backend-release-p): Moved to vc-rcs.el.
18147 (vc-backend-revert): Function moved into `vc-revert';
18148 `vc-next-action' must be updated to accomodate this change.
18149 (vc-backend-steal): Function moved into `vc-finish-steal'.
18150 (vc-backend-logentry-check): Function moved into
18151 `vc-finish-logentry'.
18152 (vc-backend-printlog): Function moved into `vc-print-log'.
18153 (vc-backend-uncheck): Function moved into `vc-cancel-version'.
18154 (vc-backend-assign-name): Function moved into
18155 `vc-create-snapshot'.
18156
18157 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18158
18159 * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking):
18160 Rename to vc-checkout-model. Return appropriate values.
18161 Update callers.
18162
18163 * vc-hooks.el (vc-backend-hook-functions): Rename vc-uses-locking
18164 to vc-checkout-model.
18165 (vc-checkout-required): Rename to vc-checkout-model.
18166 Re-implement and re-comment.
18167 (vc-after-save): Use vc-checkout-model.
18168
18169 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18170
18171 * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff):
18172 Update to use the vc-BACKEND-diff functions instead.
18173 `vc-diff' is now working.
18174
18175 * vc-rcs.el (vc-rcs-logentry-check): New function.
18176
18177 * vc-cvs.el (vc-cvs-logentry-check): New function.
18178
18179 * vc-sccs.el (vc-sccs-diff): Function changed name from
18180 `vc-backend-diff'. This makes `vc-diff' work.
18181
18182 * vc-hooks.el (vc-backend-functions): Add `vc-diff' to the list
18183 of functions possibly implemented in a vc-BACKEND library.
18184 (vc-checkout-required): Fix bug that caused an error to be
18185 signaled during `vc-after-save'.
18186
18187 * vc.el: Fix typo.
18188 This checkin is made with our new VC code base for the very first time.
18189 A simple `(vc-checkin (buffer-file-name))' was used to perform it.
18190
18191 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to
18192 `vc-checkout-required' updated to `vc-cvs-uses-locking'.
18193
18194 * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required'
18195 updated to `vc-uses-locking'.
18196 (vc-checkout-required): Call to backend function.
18197 `vc-checkout-required' updated to `vc-uses-locking' instead.
18198
18199 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to
18200 `vc-checkout-required' updated to `vc-rcs-uses-locking'.
18201
18202 * vc.el (vc-checkin): Merge with `vc-backend-checkin' and update
18203 to match the split into various backends.
18204 (vc-backend-checkin): Remove. Merge with `vc-checkin'.
18205 (vc-retrieve-snapshot): Bug fix.
18206
18207 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18208
18209 * vc-sccs.el (vc-sccs-release): Doc fix.
18210
18211 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18212
18213 * vc.el (vc-next-action-on-file): Bug found and fixed.
18214 (vc-checkout, vc-version-other-window, vc-retrieve-snapshot)
18215 (vc-cancel-version): Handle of vc-BACKEND-checkout updated.
18216
18217 * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version)
18218 (vc-rcs-checkout): Name space cleaned up. No more revision number
18219 crunching function names that are not prefixed with vc-rcs.
18220 (vc-rcs-checkout-model): Function added. References to
18221 `vc-checkout-model' replaced.
18222
18223 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18224
18225 * vc.el (vc-next-action-on-file): Rewritten for the new state model.
18226 (vc-backend-merge-news): Renamed to `vc-merge-news'. (Specific parts
18227 still need to be split, and implemented for RCS).
18228
18229 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18230
18231 * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed.
18232
18233 * vc-sccs.el (vc-sccs-admin): Added the query-only option as
18234 required by the vc.el file.
18235
18236 * vc-rcs.el (vc-rcs-admin): Added the query-only option as
18237 required by the vc.el file.
18238 (vc-rcs-exists): Function added.
18239
18240 * vc-cvs.el (vc-cvs-admin): Added the query-only option as
18241 required by the vc.el file.
18242
18243 * vc.el (vc-admin): Updated to handle selection of appropriate
18244 backend. Current implementation is crufty and need re-thinking.
18245
18246 * vc-hooks.el (vc-parse-buffer): Bug found and fixed.
18247
18248 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18249
18250 * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle
18251 beginning of annotate buffers correctly.
18252
18253 * vc.el (vc-annotate-get-backend, vc-annotate-display-default)
18254 (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate
18255 functionality updated quite a lot to support multiple backends.
18256 Variables `vc-annotate-mode', `vc-annotate-buffers',
18257 `vc-annotate-backend' added.
18258
18259 * vc-hooks.el (vc-backend-functions): `vc-annotate-command',
18260 `vc-annotate-difference' added to supported backend functions.
18261
18262 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18263
18264 * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout):
18265 Use with-temp-file instead of /bin/sh. Merged from mainline
18266
18267 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18268
18269 * vc-sccs-hooks.el (vc-sccs-registered): Updated.
18270
18271 * vc-rcs-hooks.el (vc-rcs-registered): Updated.
18272
18273 * vc-cvs-hooks.el (vc-cvs-registered): Updated.
18274
18275 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18276
18277 * vc-hooks.el: vc-state-heuristic added to
18278 vc-backend-hook-functions.
18279
18280 * vc-sccs-hooks.el (vc-sccs-registered): Bug fix.
18281
18282 * vc-rcs-hooks.el (vc-rcs-registered): Bug fix.
18283
18284 * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Rename
18285 `vc-uses-locking' to `vc-checkout-required'. Rename the `locked'
18286 state to `reserved'.
18287
18288 * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to
18289 `vc-checkout-required'. Rename the `locked' state to `reserved'.
18290
18291 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18292
18293 * vc-rcs-hooks.el: Implement new state model. Hardly anything
18294 untouched.
18295
18296 * vc-rcs.el (vc-rcs-latest-on-branch-p): Move to vc-rcs-hooks.el.
18297
18298 * vc.el (vc-update-change-log): Use small-temporary-file-directory,
18299 if defined. (Merged from main line, slightly adapted.)
18300
18301 * vc-cvs.el (vc-cvs-annotate-difference): Handle possible
18302 millenium problem (merged from mainline).
18303
18304 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18305
18306 * vc-cvs.el: Split the annotate feature into a BACKEND-specific
18307 part and moved the non-BACKEND stuff to vc.el.
18308
18309 * vc.el: Split the annotate feature into a BACKEND specific part
18310 and moved it from the vc-cvs.el file to this one.
18311
18312 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18313
18314 * vc-hooks.el: Implement new state model.
18315 (vc-state, vc-state-heuristic, vc-default-state-heuristic): New funs.
18316 (vc-locking-user): Simplify. Now only needed if the file is
18317 locked by somebody else.
18318 (vc-lock-from-permissions): Remove. Functionality is in
18319 vc-sccs-hooks.el and vc-rcs-hooks.el now.
18320 (vc-mode-line-string): New name for former vc-status. Adapted.
18321 (vc-mode-line): Adapt to use the above. Remove optional parameter.
18322
18323 * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New funs.
18324 Various simplifications and adaptations all over the place.
18325
18326 * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New funs.
18327 Simplify and adapt the rest.
18328
18329 * vc.el (vc-resynch-window): Add TODO comment: check for
18330 interaction with view mode according to recent RCS change.
18331 (vc-backend-merge-news): Merge "CMUP" patch from mainline.
18332
18333 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18334
18335 * vc.el: Convert the remaining function comments to docstrings.
18336
18337 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18338
18339 * vc.el (vc-backend-release, vc-release-greater-or-equal)
18340 (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part)
18341 (vc-minor-part, vc-previous-version): Functions that operate and
18342 compare revision numbers got proper documentation. Comments added
18343 about their possible removal.
18344
18345 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18346
18347 * vc.el (vc-latest-on-branch-p): Function removed and replaced in
18348 the vc-backend.el files.
18349
18350 * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added.
18351
18352 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p)
18353 (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part)
18354 (vc-rcs-previous-version): Functions added.
18355
18356 * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added.
18357
18358 * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed.
18359
18360 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18361
18362 * vc-hooks.el (vc-master-templates): Is really obsolete.
18363 Comment out the definition for now. What is the right procedure
18364 to get rid of it?
18365 (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely
18366 rewritten.
18367 (vc-default-registered): Remove.
18368 (vc-check-master-templates): New function; does mostly what the
18369 above did before.
18370 (vc-locking-user): Don't rely on the backend to set the property.
18371
18372 * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values.
18373 Rewrite documentation.
18374 (vc-rcs-templates-grabbed): New variable.
18375 (vc-rcs-grab-templates): New function.
18376 (vc-rcs-registered): Rewrite to use above mechanism.
18377
18378 * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values.
18379 Rewrite documentation.
18380 (vc-sccs-templates-grabbed): New variable.
18381 (vc-sccs-grab-templates): New function.
18382 (vc-sccs-registered): Rewrite to use above mechanism.
18383 (vc-sccs-search-project-dir): Rename from vc-search-sccs-project-dir.
18384 Don't throw the result, simply return it.
18385
18386 * vc-cvs-hooks.el (vc-cvs-master-templates): Remove.
18387 (vc-cvs-find-master): Remove. Code is now in vc-cvs-registered.
18388 (vc-cvs-registered): Does the check itself now. Simplify.
18389
18390 * vc-cvs.el (vc-cvs-revert): Merge and adapt "unedit" patch
18391 from main line.
18392
18393 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18394
18395 * vc-cvs.el (vc-cvs-diff): New function.
18396
18397 * vc-sccs.el (vc-sccs-diff): New function.
18398
18399 * vc-rcs.el (vc-rcs-diff): New function.
18400 (vc-rcs-checkout): Bug (typo) found and fixed.
18401 (vc-rcs-register-switches): New variable.
18402
18403 * vc.el (vc-backend-diff): Function removed and placed in the
18404 backend files.
18405
18406 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18407
18408 * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added.
18409
18410 * vc.el (vc-backend-checkout): Function removed and replaced in
18411 the vc-backend.el files.
18412
18413 * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'.
18414
18415 * vc.el (vc-backend-admin): Removed and replaced in the
18416 vc-backend.el files.
18417
18418 * vc.el (Martin): Removed all the annotate functionality since it
18419 is CVS backend specific.
18420
18421 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18422
18423 * spec.txt: Added specification of vc-state.
18424
18425 * vc-sccs-hooks.el (vc-sccs-master-properties):
18426 Remove handling of vc-latest-version and
18427 vc-your-latest-version. What used to be vc-latest-version, is now
18428 returned as vc-workfile-version.
18429 (vc-sccs-workfile-version): Adapt.
18430
18431 2000-09-04 Dave Love <fx@gnu.org>
18432
18433 * vc.el: [Merged from mainline.]
18434 (vc-dired-mode): Make the dired-move-to-filename-regexp
18435 regexp match the date, to avoid treating date as file size.
18436 Add YYYY S option to WESTERN/
18437
18438 2000-09-04 Dave Love <fx@gnu.org>
18439
18440 * vc.el: Require `compile' when compiling.
18441 (vc-logentry-check-hook): New option.
18442 (vc-steal-lock): Use compose-mail.
18443 (vc-dired-mode-map): Defvar when compiling.
18444 (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to
18445 vc-sccs.el and renamed. Callers changed.
18446 (vc-backend-checkout, vc-backend-logentry-check)
18447 (vc-backend-merge-news): Doc fix.
18448 (vc-default-logentry-check): New function.
18449 (vc-backend-checkin, vc-backend-revert, vc-backend-steal)
18450 (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name)
18451 (vc-backend-merge): Doc fix. Use backend functions.
18452 (vc-check-headers): Use backend functions.
18453
18454 * vc-cvs.el: Require vc when compiling.
18455 (vc-cvs-register-switches): Doc fix.
18456 (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type.
18457 (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge)
18458 (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin):
18459 New functions (code from vc.el).
18460 (vc-annotate-display-default): Fix interactive spec.
18461 (vc-annotate-time-span): Doc fix.
18462
18463 * vc-rcs.el: Require vc when compiling.
18464 (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge)
18465 (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert)
18466 (vc-rcs-checkin): New functions (code from vc.el).
18467 (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout):
18468 Doc fix.
18469 (vc-rcs-release): Deleted. (Duplicated vc-rcs-system-release).
18470
18471 * vc-sccs.el: Require vc when compiling.
18472 (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge)
18473 (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck)
18474 (vc-sccs-revert)
18475 (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code
18476 from vc.el).
18477 (vc-sccs-add-triple, vc-sccs-record-rename)
18478 (vc-sccs-lookup-triple): Moved from vc.el and renamed.
18479 (vc-sccs-admin): Doc fix.
18480
18481 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18482
18483 * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part)
18484 (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release)
18485 (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions
18486 from vc.el.
18487
18488 * vc-sccs.el (vc-admin-sccs): Added from vc.el
18489
18490 * vc-cvs.el: Moved the annotate functionality from vc.el.
18491 (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el.
18492
18493 2000-09-04 Dave Love <fx@gnu.org>
18494
18495 * vc.el (vc-backend-release): Call vc-system-release.
18496
18497 * vc-sccs.el (vc-sccs-system-release):
18498 Renamed from vc-sccs-backend-release.
18499
18500 * vc-rcs.el (vc-rcs-system-release):
18501 Renamed from vc-rcs-backend-release.
18502
18503 * vc-cvs.el (vc-cvs-system-release):
18504 Renamed from vc-cvs-backend-release.
18505
18506 2000-09-04 Dave Love <fx@gnu.org>
18507
18508 * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to
18509 backend files.
18510 (vc-backend-release): Dispatch to backend functions.
18511 (vc-backend-release-p): Don't mention CVS, RCS. [The SCCS case
18512 probably needs attention.]
18513
18514 * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el.
18515 (vc-sccs-backend-release): New function.
18516
18517 * vc-cvs.el (vc-cvs-release): Moved from vc.el.
18518 (vc-cvs-backend-release): New function.
18519
18520 * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge):
18521 Doc fix.
18522 (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed.
18523 (vc-default-dired-state-info): New function.
18524 (vc-dired-state-info): Dispatch to backends.
18525 (vc-dired-hook): Doc fix. Simplify, pending removal of CVS specifics.
18526
18527 * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved
18528 from vc.el and renamed.
18529
18530 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18531
18532 * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p)
18533 (vc-version-other-window, vc-backend-assign-name): Removed
18534 references to vc-latest-version; sometimes changed into
18535 vc-workfile-version.
18536
18537 * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to
18538 vc-rcs-master-workfile-version.
18539 (vc-rcs-workfile-version): Use the above. Don't call
18540 vc-latest-version (that was unreachable code, anyway).
18541 (vc-rcs-fetch-master-properties): Doc fix.
18542
18543 * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed.
18544 (vc-backend-hook-functions): Removed them from this list, too.
18545 (vc-fetch-properties): Removed.
18546 (vc-workfile-version): Doc fix.
18547
18548 * vc-rcs-hooks.el (vc-rcs-consult-headers): New function.
18549 (vc-rcs-workfile-version, vc-rcs-locking-user)
18550 (vc-rcs-uses-locking): Use it.
18551
18552 * vc-hooks.el (vc-consult-rcs-headers):
18553 Moved into vc-rcs-hooks.el, under the name
18554 vc-rcs-consult-headers.
18555
18556 * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS
18557 headers.
18558 (vc-cvs-find-master): Use this name only; correct different
18559 versions of the name.
18560
18561 * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user):
18562 New functions.
18563 (vc-sccs-locking-user): Use the latter.
18564
18565 * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user):
18566 New functions.
18567
18568 * vc-hooks.el (vc-master-locks, vc-master-locking-user):
18569 Moved into both
18570 vc-rcs-hooks.el and vc-sccs-hooks.el. These properties and access
18571 functions are implementation details of those two backends.
18572
18573 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18574
18575 * vc-rcs-hooks.el (vc-rcs-fetch-master-properties)
18576 (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks.
18577
18578 * vc-sccs-hooks.el (vc-sccs-fetch-master-properties)
18579 (vc-sccs-parse-locks): SCCS-specific code moved here from
18580 vc-hooks.
18581
18582 * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific
18583 code moved here from vc-hooks.
18584
18585 * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split
18586 into back-end specific parts and removed. Callers not updated
18587 yet; because I guess these callers will disappear into back-end
18588 specific files anyway.
18589
18590 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18591
18592 * vc.el (with-vc-file, vc-next-action-on-file, vc-merge)
18593 (vc-backend-checkout): Changed calls to `vc-checkout-model' to
18594 `vc-uses-locking'.
18595
18596 * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking.
18597 Store yes/no in the property, and return t/nil. Updated all
18598 callers.
18599
18600 * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to
18601 vc-sccs-uses-locking. Don't set property.
18602 (vc-sccs-locking-user): Don't set property.
18603
18604 * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to
18605 vc-cvs-uses-locking. Don't set property here; leave that to
18606 vc-hooks.
18607 (vc-cvs-locking-user): Reflect above change. Streamlined.
18608
18609 * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to
18610 vc-rcs-uses-locking.
18611 (vc-rcs-locking-user): Reflect above change.
18612
18613 2000-09-04 Dave Love <fx@gnu.org>
18614
18615 * vc-sccs-hooks.el (vc-sccs-checkout-model): New function.
18616
18617 * vc-rcs-hooks.el (vc-rcs-checkout-model): New function.
18618
18619 * vc-hooks.el (vc-checkout-model): Punt to backends.
18620
18621 * vc-cvs-hooks.el (vc-cvs-checkout-model): New function.
18622
18623 * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status.
18624
18625 * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user):
18626 New functions.
18627
18628 * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user):
18629 New functions.
18630
18631 * vc-cvs-hooks.el (vc-handle-cvs): Doc fix.
18632 (vc-cvs-workfile-version, vc-cvs-locking-user): New functions.
18633
18634 * vc-hooks.el (vc-default-locking-user): New function.
18635 (vc-locking-user, vc-workfile-version): Punt to backends.
18636
18637 2000-09-04 Dave Love <fx@gnu.org>
18638
18639 * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff)
18640 (vc-master-workfile-version): Moved from vc-hooks.
18641
18642 * vc-rcs-hooks.el: Fix duplicate code in last change.
18643
18644 * vc-rcs-hooks.el: Require vc-hooks when compiling.
18645 (vc-rcs-master-templates): Improve :type.
18646 (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff,
18647 vc-master-workfile-version): Moved from vc-hooks.
18648
18649 * vc-sccs-hooks.el: Require vc-hooks when compiling.
18650 (vc-sccs-master-templates): Improve :type.
18651 (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file.
18652
18653 * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed.
18654
18655 * vc-cvs-hooks.el: Require vc-hooks when compiling.
18656 (vc-cvs-master-templates): Improve :type. Use
18657 vc-cvs-find-cvs-master.
18658 (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here
18659 from vc-hooks.
18660 (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master.
18661
18662 * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status):
18663 Moved to vc-cvs-hooks.
18664
18665 * vc-hooks.el: Add doc strings in various places. Simplify the
18666 minor mode setup.
18667 (vc-handled-backends): New user variable.
18668 (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor
18669 simplification.
18670
18671 2000-09-04 Dave Love <fx@gnu.org>
18672
18673 * vc.el: Some doc fixes for autoloaded and interactive functions.
18674 Fix compilation warnings from ediff stuff.
18675 (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix.
18676
18677 * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version.
18678
18679 * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version.
18680
18681 * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version.
18682
18683 2000-09-04 Dave Love <fx@gnu.org>
18684
18685 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
18686 New variable.
18687 (vc-make-backend-function, vc-loadup, vc-call-backend)
18688 (vc-backend-defines): New functions.
18689
18690 * vc-hooks.el: Various doc fixes.
18691 (vc-default-back-end, vc-follow-symlinks): Custom fix.
18692 (vc-match-substring): Function removed. Callers changed to use
18693 match-string.
18694 (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook):
18695 Simplify.
18696
18697 2000-09-04 Dave Love <fx@gnu.org>
18698
18699 * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom
18700 type.
18701 (vc-sccs-project-dir, vc-search-sccs-project-dir)
18702 (vc-sccs-registered): Doc fix.
18703
18704 * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type.
18705 (vc-cvs-registered): Doc fix.
18706
18707 * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type.
18708 (vc-rcs-registered): Doc fix.
18709
18710 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18711
18712 * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file.
18713
18714 * vc-hooks.el: vc-registered has been renamed
18715 vc-default-registered. Some functions have been moved to the
18716 backend specific files. they all support the
18717 vc-BACKEND-registered functions.
18718
18719 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18720
18721 * vc-hooks.el: This is 1998-11-11T18:47:32Z!kwzh@gnu.org from the emacs sources
18722
18723 * vc.el: This is 1999-03-13T05:04:24Z!kwzh@gnu.org from the emacs sources
18724
18725 2000-09-04 Dave Love <fx@gnu.org>
18726
18727 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run
18728 menu-bar-update-hook.
18729
18730 * help.el (help-manyarg-func-alist): Add
18731 find-operation-coding-system.
18732
18733 * wid-edit.el (widget-sexp-validate): Fix garbled code.
18734
18735 * custom.el (custom-set-variables): Print message about errors in
18736 setting.
18737
18738 2000-09-03 Andrew Innes <andrewi@gnu.org>
18739
18740 * makefile.w32-in: Change to DOS line endings.
18741
18742 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
18743
18744 * mouse.el (mouse-popup-menubar): Supply the prompt string for
18745 minor-mode keymaps, if they don't have one.
18746
18747 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
18748
18749 * eshell/esh-module.el (eval-when-compile): Don't lose if
18750 esh-module.el's file name is truncated to DOS 8+3 limits.
18751
18752 2000-09-01 John Wiegley <johnw@gnu.org>
18753
18754 * pcomplete.el (pcomplete-dirs-or-entries): Added a missing
18755 predicate, which caused entries in the completion list to be
18756 doubled.
18757
18758 2000-08-30 John Wiegley <johnw@gnu.org>
18759
18760 * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct
18761 sending to subprocesses. Also, hook pre-command-hook if
18762 `eshell-send-direct-to-subprocesses' is non-nil.
18763 (eshell-send-direct-to-subprocesses): New config variable. If t,
18764 subprocess input is send immediately.
18765 (eshell-toggle-direct-send): New function.
18766 (eshell-self-insert-command): New function.
18767 (eshell-intercept-commands): New function.
18768 (eshell-send-input): If direct subprocess sending is enabled,
18769 don't echo any input to the Eshell buffer. Let the subprocess
18770 handle that. This requires "stty echo" in bash, for example.
18771
18772 2000-08-28 John Wiegley <johnw@gnu.org>
18773
18774 * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added
18775 completion function for Eshell's implementation of `unset'.
18776
18777 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
18778
18779 * info.el (Info-directory-list): Doc fix.
18780
18781 2000-08-31 Peter Breton <pbreton@ne.mediaone.net>
18782
18783 * filecache.el (file-cache-add-directory-using-find): Don't quote
18784 wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
18785
18786 2000-08-31 Kenichi Handa <handa@etl.go.jp>
18787
18788 * help.el (help-make-xrefs): Don't make hyperlinks for incorrect
18789 coding systems.
18790
18791 2000-08-30 Andrew Innes <andrewi@gnu.org>
18792
18793 * timer.el (run-with-idle-timer): Undo last change, so that timer
18794 is not activated immediately if Emacs is already idle. Some
18795 existing code relies on this behaviour.
18796
18797 2000-08-30 Miles Bader <miles@gnu.org>
18798
18799 * frame.el (set-frame-font): Do completion of font-name for
18800 interactive use.
18801
18802 2000-08-30 Kenichi Handa <handa@etl.go.jp>
18803
18804 * international/quail.el (quail-start-translation): Bind locally
18805 last-command-event, last-command, and this-command.
18806 (quail-start-conversion): Likewise.
18807 (quail-self-insert-command): Fix docstring.
18808
18809 2000-08-29 Gerd Moellmann <gerd@gnu.org>
18810
18811 * progmodes/executable.el
18812 (executable-make-buffer-file-executable-if-script-p): Check that
18813 buffer contains at least 2 characters.
18814
18815 2000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
18816
18817 * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix.
18818
18819 2000-08-29 Dave Love <fx@gnu.org>
18820
18821 * diff-mode.el (diff-mode) <defgroup>: Add :version.
18822 (diff-mode-shared-map): Bind mouse-2.
18823 (diff-imenu-generic-expression): New variable.
18824 (diff-mode): Use it.
18825
18826 * mouse.el (mouse-major-mode-menu): Use local-key-binding.
18827 (mouse-popup-menubar): Add minor mode menus.
18828 (popup-menu): Check for lookup-key returning number.
18829
18830 2000-08-29 Miles Bader <miles@gnu.org>
18831
18832 * comint.el (comint-send-input): Create overlays using the proper
18833 front/read-advance arguments.
18834
18835 2000-08-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
18836
18837 * ps-print.el: Even/odd pages printing. Doc fix.
18838 (ps-print-version): New version number (6.0).
18839 (ps-setup, ps-print-page-p, ps-background-text, ps-background-image)
18840 (ps-background, ps-begin-file, ps-begin-job): Code fix.
18841 (ps-print-duplex-feature): Variable eliminated.
18842 (ps-even-or-odd-pages): New variable.
18843
18844 * progmodes/ebnf2ps.el: Doc fix.
18845 (ebnf-version): New version (3.3).
18846 (ebnf-user-arrow): Change variable customization to sexp.
18847 (ebnf-user-arrow): Function eliminated.
18848 (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix.
18849
18850 2000-08-29 Kenichi Handa <handa@etl.go.jp>
18851
18852 * help.el (help-xref-mule-regexp): New variable.
18853 (help-make-xrefs): Handle help-xref-mule-regexp.
18854
18855 * international/mule-cmds.el (help-xref-mule-regexp-template): New
18856 variable.
18857 (describe-input-method): Temporarily activate the specfied input
18858 method to display the information.
18859 (describe-language-environment): Hyperlinks to mule related items.
18860
18861 * international/mule-diag.el (charset-multibyte-form-string): New
18862 function.
18863 (list-character-sets-1): Use charset-multibyte-form-string.
18864 (describe-character-set): New function.
18865 (describe-coding-system): Hyperlinks to safe character sets.
18866
18867 * international/quail.el (quail-help): New arg PACKAGE.
18868 Hyperlinks to mule related items.
18869 (quail-help-insert-keymap-description): Use
18870 substitute-command-keys instead of describe-bindings.
18871 (quail-translation-help): Hyperlinks to mule related items.
18872
18873 2000-08-28 John Wiegley <johnw@gnu.org>
18874
18875 * eshell/esh-util.el (eshell-flatten-list): It's not too wise to
18876 have a defsubst call itself. Made `eshell-flatten-list' back into
18877 a function again.
18878
18879 * eshell/em-smart.el (eshell-smart-redisplay): Added a safety
18880 catch, in case re-centering point at bottom messes up the display.
18881 This happens frequently in Emacs 21, due I believe to variable
18882 line heights.
18883
18884 * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order
18885 to call `find-tag-interactive'.
18886
18887 * eshell/em-dirs.el (eshell/cd): Use buffered printing to display
18888 the list of remember directories.
18889
18890 2000-08-28 John Wiegley <johnw@gnu.org>
18891
18892 * align.el: Test align-region-separate to see if it's a symbol.
18893
18894 2000-08-28 John Wiegley <johnw@gnu.org>
18895
18896 * eshell/esh-util.el (eshell-flatten-list): Made this function
18897 into a defsubst form. It gets used very frequently, although
18898 calls don't occur all that often.
18899
18900 * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
18901 examining it.
18902
18903 * eshell/esh-cmd.el (eshell-rewrite-while-command):
18904 (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
18905 `eshell-protect'.
18906 (eshell-copy-handles): Created a new macro for duplicating the
18907 current set of open handles. This is needed by the looping
18908 functions.
18909 (eshell-do-eval): Fixed while and if, so that the eshell-test-body
18910 is not incorrectly stomped on.
18911
18912 * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
18913 declaration for pcomplete-use-paring.
18914 (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
18915 value of eshell-cmpl-use-paring.
18916 * pcomplete.el (pcomplete-use-paring): New config variable, to
18917 indicate whether paring should be used.
18918 (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
18919 completion alternatives that have already been used.
18920
18921 * eshell/esh-mode.el (eshell-repeat-argument): Added function,
18922 bound to C-c C-y, which will repeat the previous N arguments
18923 (based on prefix argument).
18924 (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
18925
18926 * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
18927 if there is no *Help* buffer. This is for XEmacs, which renames
18928 its help buffers uniquely. TODO: Find out what the current buffer
18929 name to delete is.
18930
18931 * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
18932 first entry that correlates to a passwd/group number. Later
18933 entries (used for group/user name aliasing to multiple IDs) are
18934 ignored.
18935
18936 * eshell/em-xtra.el (eshell/expr):
18937 * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
18938 (eshell-grep, eshell/diff, eshell/locate):
18939 * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
18940 argument list, before passing it to the system command.
18941
18942 * eshell/esh-mode.el (eshell-find-tag): Added a special version of
18943 `find-tag' for use at final position in Eshell buffers (which
18944 otherwise triggers an error on Emacs 21).
18945 (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
18946 buffer, if it is currently bound to `find-tag'.
18947
18948 * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
18949 in the list of matched Makefile names.
18950 (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
18951 directory, prefer its contents to Makefile.
18952
18953 * eshell/em-dirs.el (eshell/cd): cd commands that look up
18954 directory parts (like "cd old new", or "cd =regexp"), are now case
18955 sensitive on non-Windows/DOS platforms.
18956
18957 * eshell/esh-mode.el (eshell-parse-command-input): When a user
18958 types RET after an open delimiter (like "), display a message
18959 indicating that Eshell is waiting for the closing delimiter.
18960
18961 * eshell/esh-var.el (eshell/unset): Added a command for unsetting
18962 environment variables.
18963
18964 * eshell/em-unix.el (eshell/diff): Added logic to fail more
18965 gracefully if the user enters incorrect arguments.
18966
18967 * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
18968 Eshell buffers.
18969
18970 * eshell/esh-var.el (eshell-interpolate-variable):
18971 * eshell/esh-mode.el (eshell-move-argument):
18972 * eshell/em-unix.el (eshell-du-sum-directory):
18973 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
18974 * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
18975 (not (= ...)).
18976
18977 * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
18978 to ensure the `preserve' flag gets propagated when doing recursive
18979 directory copies.
18980
18981 2000-08-28 Stefan Monnier <monnier@cs.yale.edu>
18982
18983 * eshell/em-hist.el (eshell-put-history, eshell-get-history):
18984 Don't convert \n into \0177 in memory.
18985 (eshell-read-history, eshell-write-history): Convert \n to \0177,
18986 and back again, when reading and writing.
18987
18988 2000-08-28 Eli Zaretskii <eliz@is.elta.co.il>
18989
18990 * eshell/esh-util.el (eshell-processp): Added to relieve constant
18991 testing of `fboundp' on `processp'.
18992
18993 * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
18994 (eshell/jobs): Don't call process-list if it is not bound.
18995 (eshell-gather-process-output): Support systems where async
18996 subprocesses aren't supported.
18997 (eshell-scratch-buffer, eshell-last-sync-output-start): New
18998 variables.
18999
19000 * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
19001 eshell-do-eval returns t.
19002 (eshell-do-pipelines-synchronously): New defmacro.
19003 (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
19004 when async subprocesses aren't supported.
19005 (eshell-do-eval): Use eshell-processp. Don't throw eshell-defer
19006 if async subprocesses aren't supported.
19007 (eshell-resume-command): Don't assume STATUS is a string.
19008
19009 * eshell/em-unix.el (eshell/rm): Use eshell-processp.
19010
19011 * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
19012 (eshell-close-target, eshell-get-target): Use eshell-processp.
19013 (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
19014 fix.
19015 (eshell-get-target, eshell-create-handles): Doc fix.
19016
19017 2000-08-28 Miles Bader <miles@lsi.nec.co.jp>
19018
19019 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the
19020 criterion to include commands that output something, as long as it
19021 leaves both the command and the end-of-buffer visible when the
19022 command has exited.
19023 (eshell-review-quick-commands): Adjust the help doc string
19024 accordingly.
19025
19026 2000-08-28 Peter Breton <pbreton@ne.mediaone.net>
19027
19028 * locate.el (locate): Cleaned up locate command's interactive prompting
19029 Thanks to Fran\e,Ag\e(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions.
19030
19031 * filecache.el (file-cache-case-fold-search): New variable
19032 (file-cache-assoc-function): New variable
19033 (file-cache-minibuffer-complete): Use file-cache-assoc-function.
19034 Use file-cache-case-fold-search variable
19035 (file-cache-add-file): Use file-cache-assoc-function
19036 (file-cache-delete-file): likewise
19037 (file-cache-directory-name): likewise
19038 (file-cache-debug-read-from-minibuffer): likewise
19039
19040 2000-08-28 Gerd Moellmann <gerd@gnu.org>
19041
19042 * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
19043 (abbrev-table-name): New function.
19044 (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
19045 If non-nil list local abbrev, only.
19046
19047 2000-08-28 Stanislav Shalunov <shalunov@internet2.edu>
19048
19049 * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*"
19050 from Gnus support code, and use special article copy buffer
19051 `(gnus-original-article-buffer)' instead. This allows to get rid
19052 of article-hide-headers usage (which breaks in the latest Gnus
19053 version). Thanks to Detlev Zundel.
19054
19055 2000-08-28 Kenichi Handa <handa@etl.go.jp>
19056
19057 * international/quail.el (quail-use-package): Hide "... loaded"
19058 message.
19059 (quail-start-translation, quail-start-conversion): Likewise.
19060
19061 * international/kkc.el (kkc-region): Hide "... loaded" message.
19062
19063 2000-08-27 Dave Love <fx@gnu.org>
19064
19065 * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
19066
19067 2000-08-27 Miles Bader <miles@gnu.org>
19068
19069 * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
19070
19071 2000-08-27 Kenichi Handa <handa@etl.go.jp>
19072
19073 * international/ja-dic-cnv.el (skkdic-convert): Insert (require
19074 'ja-dic-cnv), not (require 'skkdic-cnv).
19075
19076 2000-08-26 Miles Bader <miles@gnu.org>
19077
19078 * faces.el (face-x-resources): Add entry for :inherit.
19079 * cus-face.el (custom-face-attributes): Add support for :inherit
19080 attribute. Add support for relative face heights.
19081 (custom-face-attributes-get): Treat `nil' as being a default value
19082 for :inherit (as well as `unspecified').
19083
19084 * faces.el (set-face-attribute): Update doc string.
19085 (face-attribute-name-alist): Add :inherit.
19086 (face-valid-attribute-values): Handle :inherit.
19087 (face-read-string): Rephrase prompt to be less confusing.
19088 Assume that DEFAULT is a string, since we must return a string.
19089 (face-read-integer): Use `format' to turn DEFAULT into an
19090 acceptable default for face-read-string. Match NEW-VALUE against
19091 the string "unspecified", not the symbol `unspecified', since
19092 that's what face-read-string returns.
19093 (read-face-attribute): Lookup a name for old-value in valid, and
19094 use it as a default if we find one. Treat all values from
19095 face-read-string as strings. If the default is used, don't do any
19096 more processing on the value, just use the old value directly.
19097 (read-face-and-attribute, modify-face): Tweak prompt.
19098 (read-face-name): Don't assume prompt ends with a space.
19099
19100 * faces.el (describe-face): Add support for :inherit attribute.
19101
19102 2000-08-25 Kenichi Handa <handa@etl.go.jp>
19103
19104 * terminal.el (terminal-emulator): Fix args to `concat'. Now
19105 concat doesn't accept interger.
19106
19107 * international/kkc.el: Remove SKK from Keywords. Require
19108 ja-dic-utl instead of skkdic-utl.
19109
19110 * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
19111 Provide ja-dic-cnv instead of skkdic-cnv.
19112 (ja-dic-filename): Renamed from skkdic-filename. Referers changed
19113 (iso-2022-7bit-short): Add safe-charsets property.
19114 (skkdic-convert-postfix): Search Japanese chou-on character in
19115 addition to Hiragana character.
19116 (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
19117 (skkdic-convert): Change file names from skkdic.el to ja-dic.el
19118 (batch-skkdic-convert): Likewise.
19119
19120 * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
19121 Provide ja-dic-utl instead of skkdic-utl.
19122 (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
19123
19124 2000-08-24 Dave Love <fx@gnu.org>
19125
19126 * disp-table.el (standard-display-default): Make the test of `l'
19127 useful.
19128
19129 * language/european.el ("Latin-8", "Latin-9"): Add input methods,
19130 mod sample text.
19131
19132 * international/iso-ascii.el: Make pilcrow convenient string
19133 consistent with section.
19134 (iso-ascii-display): Set up multibyte characters as well as
19135 unibyte.
19136
19137 2000-08-24 Kenichi Handa <handa@etl.go.jp>
19138
19139 * international/mule-cmds.el (reset-language-environment): Set
19140 default-process-coding-system to '(undecided . iso-latin-1), which
19141 makes process I/O almost consistent with file I/O. Call this
19142 function when mule-cmds.el[c] is loaded.
19143
19144 2000-08-22 Andrew Innes <andrewi@gnu.org>
19145
19146 * makefile.w32-in: New file.
19147
19148 2000-08-22 Miles Bader <miles@lsi.nec.co.jp>
19149
19150 * comint.el (comint-output-filter): Compare end of
19151 comint-last-output-overlay with the start of the newly inserted
19152 text, not the end, when deciding whether to extend it.
19153 Set saved-point's insertion type to advance after insertion.
19154
19155 * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
19156 since this is now done independently of font-lock mode.
19157
19158 2000-08-21 Gerd Moellmann <gerd@gnu.org>
19159
19160 * server.el (server-kill-new-buffers): New user option.
19161 (server-existing-buffer): New buffer-local variable.
19162 (server-visit-files): When using an existing buffer, set
19163 server-existing-buffer to t.
19164 (server-buffer-done): If server-kill-new-buffers is t, kill the
19165 buffer, unless it was already present before visiting it with
19166 Emacs server.
19167
19168 2000-08-21 Eli Zaretskii <eliz@is.elta.co.il>
19169
19170 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
19171 even if the display doesn't support colors: some displays will
19172 support bold/underline faces.
19173
19174 2000-08-21 Gerd Moellmann <gerd@gnu.org>
19175
19176 * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
19177
19178 * startup.el (command-line): If user's init file had an error,
19179 add explanatory text to *Messages*.
19180
19181 2000-08-21 Kenichi Handa <handa@etl.go.jp>
19182
19183 * man.el (Man-getpage-in-background): Decode the process output by
19184 the system locale coding system.
19185
19186 2000-08-20 Dave Love <fx@gnu.org>
19187
19188 * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
19189 Don't test x-popup-menu.
19190 (function) <complete-function>: Complete only fbound symbols.
19191 <validate, value>: New.
19192 (variable) <complete-function>: Complete only bound symbols.
19193 (coding-system): Add :base-only, :complete-function, :validate,
19194 :value, :prompt-match.
19195 (widget-coding-system-prompt-value): Use read-coding-system and
19196 act on :base-only.
19197 (editable-field): Add :help-echo.
19198 (widget-push-button-gui, widget-push-button-cache)
19199 (widget-gui-action, widget-editable-list-gui): COmment out, along
19200 with uses.
19201 (widget-at): Make arg optional.
19202 (widget-echo-help): Adjust for current help-echo calling sequence.
19203 (widget-specify-field, widget-specify-button)
19204 (widget-specify-insert, widget-get-sibling, widget-image-find)
19205 (widget-convert, widget-insert, widget-leave-text)
19206 (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
19207 (widget-setup, widget-field-find, widget-before-change)
19208 (widget-after-change, widget-default-complete)
19209 (widget-default-create, widget-default-delete)
19210 (widget-push-button-value-create, editable-field)
19211 (widget-field-prompt-value, widget-field-validate)
19212 (widget-choice-value-create, widget-choice-action)
19213 (widget-choice-validate, widget-checklist-add-item)
19214 (widget-radio-add-item, widget-radio-chosen)
19215 (widget-radio-value-inline, widget-editable-list-value-create)
19216 (widget-editable-list-entry-create)
19217 (widget-documentation-link-add)
19218 (widget-documentation-string-value-create)
19219 (widget-regexp-validate, widget-file-complete)
19220 (widget-sexp-validate, widget-plist-convert-widget)
19221 (widget-plist-convert-widget, widget-alist-convert-widget)
19222 (widget-alist-convert-widget, widget-color-complete): Simplify,
19223 particularly to avoid bindings which aren't optimized out.
19224
19225 * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
19226 Doc fix.
19227 (down-list, backward-up-list, up-list, kill-sexp)
19228 (backward-kill-sexp, mark-sexp): Make arg optional.
19229 (lisp-complete-symbol): Add optional arg PREDICATE.
19230
19231 * cus-start.el: Add display-buffer-reuse-frames,
19232 file-coding-system-alist.
19233
19234 2000-08-20 Gerd Moellmann <gerd@gnu.org>
19235
19236 * startup.el (command-line): Clear realized faces after
19237 modifying TTY color mappings.
19238
19239 2000-08-20 Miles Bader <miles@gnu.org>
19240
19241 * faces.el (face-attr-match-p): Don't return true if ATTRS are
19242 merely a subset of FACE's attributes.
19243
19244 2000-08-19 Miles Bader <miles@gnu.org>
19245
19246 * comint.el (comint-output-filter): Save the point with a marker,
19247 not just a buffer position.
19248
19249 * international/mule.el (set-buffer-process-coding-system): Make
19250 interactive prompt less confusing.
19251
19252 2000-08-19 Gerd Moellmann <gerd@gnu.org>
19253
19254 * hilit-chg.el: General cleanup of doc strings, comments and
19255 code formatting.
19256
19257 2000-08-19 Miles Bader <miles@gnu.org>
19258
19259 * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
19260 Compiler macro removed; beginning-of-line is no longer always
19261 equivalent to forward-line, in the presence of fields.
19262
19263 * comint.el (comint-output-filter): Remove ad-hoc saving of
19264 restriction, and just use save-restriction, now that it works
19265 correctly. Don't adjust comint-last-input-start to account for
19266 our insertion; it shouldn't have moved because we don't use
19267 insert-before-markers anymore. Comment out call to
19268 `force-mode-line-update'; why is it here?
19269
19270 * gud.el (gud-basic-call): Temporarily widen gud comint buffer
19271 while checking for prompt to delete. Use `forward-line 0'
19272 instead of beginning-of-line.
19273 (gud-filter): Temporarily widen gud comint buffer while
19274 examining output.
19275
19276 2000-08-18 Stefan Monnier <monnier@cs.yale.edu>
19277
19278 * progmodes/sh-script.el: Big bag of typos.
19279
19280 * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
19281 check since ispell-process is not bound when ispell is not yet loaded.
19282
19283 2000-08-18 Dave Love <fx@gnu.org>
19284
19285 * image.el (find-image): Copy `spec' before using plist-put.
19286
19287 2000-08-18 Gerd Moellmann <gerd@gnu.org>
19288
19289 * textmodes/ispell.el (ispell-dictionary-alist-6): Add
19290 `portugues'.
19291
19292 * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
19293 backward-kill-sexp, analogous to kill-sexp.
19294
19295 * progmodes/icon.el (icon-indent-line)
19296 (icon-is-continuation-line): Handle comments specially.
19297
19298 2000-08-17 Ken Stevens <k.stevens@ieee.org>
19299
19300 * ispell.el: Set to standard author/maintainer/keyword fields.
19301 Fine tuning to menu map appearance and operation, and added help.
19302 Remove `start' and `end' error messages when compiling.
19303 (ispell-choices-win-default-height): Fixed comment string.
19304 (ispell-dictionary-alist-1): Fixed regexp in castellano and
19305 castellano8 dictionaries.
19306 (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
19307 (ispell-dictionary-alist-4): Fixed regexp in francais-tex
19308 dictionary, added italiano dictionary.
19309 (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
19310 word character
19311 (ispell-tex-skip-alists): Added psfig support.
19312 (ispell-skip-html): Renamed from ispell-skip-sgml.
19313 (ispell-begin-skip-region-regexp, ispell-skip-region)
19314 (ispell-minor-check): Improved html skipping support to skip across
19315 code, and recognize `&' commands without propper `;' syntax;
19316 (ispell-process-line): Fix alignment error when manually
19317 correcting spelling.
19318 (ispell): Fix comment string.
19319 (ispell-add-per-file-word-list): Always put word list on new line.
19320
19321 2000-08-17 Gerd Moellmann <gerd@gnu.org>
19322
19323 * format.el (format-encode-run-method): Fix error message to say
19324 `encode' instead of `decode'. Use save-window-excursion around
19325 shell-command-on-region as in format-decode-run-method because
19326 shell-command-on-region can display a buffer with error output.
19327 (format-decode): Don't record undo information for the decoding.
19328 (format-annotate-function): Add parameter FORMAT-COUNT. Make
19329 that number part of the temporary buffer name so that more than
19330 one decoding using a temporary buffer can happen safely.
19331
19332 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
19333 of `A-z' in the regexp.
19334
19335 * hilit-chg.el: Fix typos in commentary.
19336
19337 * help.el (view-emacs-news): Rewritten for new naming scheme
19338 for old NEWS files.
19339
19340 * startup.el (command-line): Pop to *Messages* in case an error
19341 is signaled while loading user-init-file.
19342
19343 2000-08-17 Andreas Schwab <schwab@suse.de>
19344
19345 * files.el (insert-directory): Don't lose original file name,
19346 undoing an undocumented change.
19347
19348 2000-08-17 Alex Schroeder <alex@gnu.org>
19349
19350 * sql.el (sql-magic-go): Use comint-bol.
19351 (sql-copy-column): Use comint-line-beginning-position.
19352 (comint-line-beginning-position): Define a replacement for
19353 comint-line-beginning-position if it is not fboundp.
19354
19355 2000-08-17 Alex Schroeder <alex@gnu.org>
19356
19357 * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
19358 it didn't have any effect anyway.
19359
19360 2000-08-17 Alex Schroeder <alex@gnu.org>
19361
19362 * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
19363 --pset and pager=off instead of sending \\o|cat at the beginning
19364 of the session.
19365
19366 2000-08-17 Miles Bader <miles@gnu.org>
19367
19368 * progmodes/octave-inf.el: Add compatibility definition of
19369 comint-line-beginning-position.
19370
19371 2000-08-17 Kenichi Handa <handa@etl.go.jp>
19372
19373 * startup.el (normal-top-level): Look in each dir in load-path for
19374 a leim-list.el file too. This assures of loading leim-list.el
19375 that is created at Emacs installation time even if a user have his
19376 own leim-list.el.
19377
19378 2000-08-17 Miles Bader <miles@gnu.org>
19379
19380 * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
19381 foreground color to black if the background is dark.
19382
19383 2000-08-16 Stefan Monnier <monnier@cs.yale.edu>
19384
19385 * loadhist.el (unload-feature): Typo.
19386
19387 * finder.el (finder-compile-keywords):
19388 * cus-dep.el (custom-make-dependencies): Add local-variable settings
19389 to the generated file.
19390
19391 * mail/mh-e.el (mh-make-local-vars):
19392 Replace make-variable-buffer-local with make-local-variable.
19393
19394 * play/landmark.el:
19395 * options.el (Edit-options-{set,toggle,t,nil}):
19396 * mail/mailabbrev.el (mail-abbrevs-mode):
19397 * textmodes/tex-mode.el (tex-expand-files):
19398 * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
19399
19400 * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
19401
19402 * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
19403 (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
19404 Allow going past the last element.
19405 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
19406 (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
19407 (cvs-mouse-toggle-mark): Don't move point.
19408 (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
19409
19410 * progmodes/compile.el (grep): Provide a default set of files.
19411 (next-error): Docstring fix.
19412 (compilation-find-file): Avoid find-file (fails in a dedicated window).
19413
19414 * emacs-lisp/easy-mmode.el (define-minor-mode):
19415 Use `symbol-value' to keep the byte-compiler quiet.
19416
19417 * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
19418 (diff-find-source-location): New fun, extracted from diff-goto-source.
19419 (diff-goto-source): Use it.
19420 (diff-next-complex-hunk, diff-filter-lines): New function.
19421 (diff-apply-hunk): New command.
19422
19423 * smerge-mode.el (smerge-mode-menu): Doc fix.
19424
19425 * msb.el (msb-mode): Define it in terms of define-minor-mode.
19426
19427 2000-08-16 Dave Love <fx@gnu.org>
19428
19429 * windmove.el (windmove) <defgroup>: Add :version.
19430
19431 * net/goto-addr.el: Don't require browse-url. Require thingatpt.
19432 (goto-address-fontify-p, goto-address-highlight-p)
19433 (goto-address-url-face, goto-address-url-mouse-face)
19434 (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
19435 (goto-address-url-regexp): Use thing-at-point-url-regexp.
19436 (goto-address-fontify, goto-address-at-mouse): Simplify,
19437 (goto-address-at-point): browse-url-url-at-point,
19438 goto-address-find-address-at-point can return nil.
19439 (goto-address-find-address-at-point): Return nil on failure.
19440
19441 * align.el (align) <defgroup>: Add :version.
19442
19443 * calculator.el (calculator): Add :version.
19444 (calculator): Use two lines for calculator window if `modeline'
19445 face is boxed.
19446
19447 * play/5x5.el: Doc fixes.
19448 (5x5) <defgroup>: Add :version.
19449
19450 * play/fortune.el (fortune) <defgroup>: Add :version.
19451 (fortune-append): Fix error message.
19452 (fortune-from-region): Doc fix.
19453
19454 * play/pong.el (pong): Doc fix.
19455
19456 * play/morse.el: Keywords, commentary, autoloads.
19457
19458 2000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
19459
19460 * desktop.el (desktop-save): Don't look at symbol-value of a
19461 member of minor-mode-alist, unless it is boundp.
19462
19463 2000-08-16 Sam Steingold <sds@gnu.org>
19464
19465 * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
19466 `while'; use `with-current-buffer' instead of `save-excursion'.
19467 Removed unnecessary kludges now that "*Buffer List*" is excluded.
19468
19469 2000-08-16 Kenichi Handa <handa@etl.go.jp>
19470
19471 * international/ccl.el (declare-ccl-program): Docstring modified.
19472 (ccl-execute-with-args): Likewise.
19473
19474 2000-08-16 Miles Bader <miles@gnu.org>
19475
19476 * progmodes/sql.el: Add compatibility definition of
19477 comint-line-beginning-position.
19478
19479 2000-08-15 Gerd Moellmann <gerd@gnu.org>
19480
19481 * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
19482 'buffer-menu' property.
19483 (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
19484 fails.
19485 (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
19486 buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
19487 wasn't killed.
19488
19489 * buff-menu.el (list-buffers-noselect): Don't display the
19490 *Buffer List* buffer.
19491
19492 * font-lock.el: Require jit-lock to prevent a very late
19493 `Loading jit-lock' message.
19494
19495 * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
19496 * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
19497 mail address.
19498
19499 2000-08-15 Miles Bader <miles@gnu.org>
19500
19501 * textmodes/ispell.el (ispell-graphic-p): New constant.
19502 (ispell-choices-win-default-height, ispell-help): Use
19503 `ispell-graphic-p' instead of `xemacsp'.
19504
19505 2000-08-15 Dave Love <fx@gnu.org>
19506
19507 * simple.el: Autoload widget-convert when compiling.
19508 (mail-user-agent): Doc fix.
19509
19510 * help.el (function-called-at-point, variable-at-point): Use
19511 with-syntax-table.
19512 (help-manyarg-func-alist): Add insert-and-inherit.
19513
19514 * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
19515
19516 * delsel.el (delsel-unload-hook): New function.
19517
19518 * find-file.el: Doc fixes. Move provide to end.
19519 (ff) <defgroup>: Add :link.
19520 (ff-goto-click): Deleted.
19521 (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
19522 Use mouse-set-point.
19523
19524 * textmodes/tildify.el: Doc fixes.
19525 (tildify) <defgroup>: Add:version.
19526
19527 * progmodes/glasses.el (glasses) <defgroup>: Add :version.
19528 (glasses-custom-set): Use set-default, not set.
19529 (minor-mode-alist): Propertize the lighter.
19530 (glasses-mode): Provide optional arg.
19531
19532 * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
19533 (global-cwarn-mode): Don't make it a user option. Unquote lambda.
19534 (cwarn-font-lock-feature-keywords-alist): Don't make it a user
19535 option. Provide :type.
19536 (cwarn-configuration): Provide :type.
19537 (cwarn-mode): Doc fix.
19538
19539 * add-log.el (change-log-merge): Doc fix.
19540 (change-log-redate): New command.
19541
19542 * net/browse-url.el (browse-url-filename-alist): Add a clause for
19543 Doze and Dog.
19544 (browse-url): Use dolist, not mapcar.
19545 (browse-url-at-point): Check for null url.
19546 (browse-url-event-buffer, browse-url-event-point): Functions
19547 deleted.
19548 (browse-url-at-mouse, browse-url-netscape): Simplify.
19549
19550 * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
19551 modes.
19552 (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
19553 Fix previous change to mapcan.
19554 (msb--init-file-alist, msb--add-separators)
19555 (msb--make-keymap-menu): Simplify.
19556 (msb--choose-file-menu): Use copy-sequence.
19557 (msb-mode-map): Add title to keymap.
19558 (msb-unload-hook): New function.
19559
19560 * bs.el: Fix indentation.
19561 (bs) <defgroup>: Add :links.
19562 (bs-show): Doc fix.
19563 (bs-apply-sort-faces): Don't use window-system.
19564 (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
19565
19566 2000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
19567
19568 * calendar/timeclock.el (timeclock-file): Run .timelog through
19569 convert-standard-filename.
19570
19571 2000-08-14 Gerd Moellmann <gerd@gnu.org>
19572
19573 * emacs-lisp/authors.el: New file.
19574
19575 * paren.el (show-paren-priority): New user option.
19576 (show-paren-function): Set overlay priorities to
19577 show-paren-priority.
19578
19579 2000-08-14 Miles Bader <miles@gnu.org>
19580
19581 * comint.el (comint-bol): Use `forward-line 0' instead of calling
19582 beginning-of-line with inhibit-field-text-motion bound.
19583
19584 2000-08-14 Gerd Moellmann <gerd@gnu.org>
19585
19586 * calendar/timeclock.el: New file.
19587
19588 2000-08-14 David Ponce <david@dponce.com>
19589
19590 * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
19591 `widget-button-click'. so that one can use left mouse button to
19592 click on dialog buttons.
19593
19594 2000-08-14 Emmanuel Briot <briot@gnat.com>
19595
19596 * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
19597 identifiers, since XML is case sensitive
19598
19599 2000-08-12 Miles Bader <miles@gnu.org>
19600
19601 * comint.el (comint-output-filter): Don't bother frobbing
19602 window-start, it doesn't seem to be necessary.
19603
19604 * comint.el (comint-send-string, comint-send-region): Make into
19605 real functions. Snapshot the prompt before sending.
19606
19607 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
19608
19609 * info.el (Info-find-emacs-command-nodes): Rewrite to use
19610 technique similar to Info-index, instead of relying on specific
19611 names of relevant Index nodes.
19612 (Info-goto-emacs-command-node): Bind Info-history to nil when
19613 going to the first node found by Info-find-emacs-command-nodes.
19614
19615 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
19616
19617 * menu-bar.el (menu-bar-help-menu): Add a :help string.
19618
19619 2000-08-10 Miles Bader <miles@gnu.org>
19620
19621 * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
19622
19623 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
19624
19625 * info.el (Info-file-list-for-emacs): More elements for the
19626 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
19627 and woman manuals.
19628
19629 2000-08-10 Miles Bader <miles@lsi.nec.co.jp>
19630
19631 * comint.el (comint-send-input): Make the newline boundary overlay
19632 rear-nonsticky. Use `insert' instead of `insert-before-markers'.
19633 (comint-output-filter): Use `insert' instead of
19634 `insert-before-markers'. Extend comint-last-output-overlay when
19635 necessary since we can't rely on insert-before-markers to do it.
19636 * gud.el (gud-filter): Use `with-current-buffer' instead of
19637 save-excursion when inserting the output, so that point gets
19638 updated correctly; the old method relied on a rather dodgy
19639 side-effect of comint-output-filter to avoid the effect of
19640 save-excursion.
19641
19642 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
19643
19644 * files.el (recover-file): Call insert-directory instead of
19645 invoking `ls' directly.
19646
19647 2000-08-10 Miles Bader <miles@gnu.org>
19648
19649 * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
19650 (comint-last-prompt-overlay): New variables.
19651 (comint-output-filter): Implement prompt highlighting.
19652 (comint-snapshot-last-prompt): New function.
19653 (comint-send-input): Snapshot the last prompt.
19654 Use comint-highlight-input-face.
19655 (comint-highlight-input-face): Renamed from `comint-highlight-face'.
19656 Use defface instead of defcustom.
19657 (send-invisible, comint-send-eof): Snapshot the last prompt.
19658 (comint-delchar-or-maybe-eof): Use comint-send-eof.
19659 (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
19660
19661 2000-08-09 Stefan Monnier <monnier@cs.yale.edu>
19662
19663 * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
19664 (regexp-opt-group): Use a list of chars for `letters'.
19665 (regexp-opt-charset): `chars' is now a list of chars.
19666 Use a char-table rather than a vector so it works for multibyte chars.
19667
19668 * pcvs.el (cvs-menu): Don't move point. Use popup-menu.
19669 Set cvs-minor-current-files to the selected fileinfo.
19670 (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
19671 (cvs-mode-insert): Manually macroexpand `ignore-errors'.
19672
19673 2000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
19674
19675 * files.el (insert-directory): Don't call access-file on
19676 directories on DOS and Windows.
19677
19678 2000-08-09 Kenichi Handa <handa@etl.go.jp>
19679
19680 * international/ccl.el (ccl-embed-data): Make ccl-program-vector
19681 longer if necessary.
19682 (ccl-embed-code): Call ccl-embed-data to store CODE in
19683 ccl-program-vector.
19684
19685 2000-08-09 Miles Bader <miles@gnu.org>
19686
19687 * comint.el (comint-output-filter): Properly handle the case where
19688 the text surrounded by comint-last-output-overlay was deleted.
19689
19690 2000-08-08 Gerd Moellmann <gerd@gnu.org>
19691
19692 * info.el (Info-insert-dir): Use Info-additional-directory-list if
19693 non-nil.
19694 (Info-file-list-for-emacs): Remove "info" from the list because
19695 that leads to trying to use the documentation from file `info'
19696 in various situations where it isn't appropriate, for instance
19697 C-h C-k C-h i.
19698
19699 * ffap.el (ffap-read-file-or-url-internal): Handle case that
19700 DIR and/or STRING are nil.
19701
19702 * progmodes/compile.el (compilation-setup): Make variable
19703 compilation-error-screen-columns buffer-local, as some comment
19704 in the code suggests it should be.
19705
19706 * files.el (auto-mode-interpreter-regexp): New variable.
19707 (set-auto-mode): Use it.
19708
19709 * indent.el (indent-for-tab-command): Doc fix.
19710
19711 * mouse-sel.el (mouse-sel-mode): Doc fix.
19712
19713 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
19714 labels.
19715
19716 * help.el (print-help-return-message): When
19717 display-buffer-reuse-frames is set, let the help window been quit,
19718 instead of deleting it, which might delete a reused frame.
19719
19720 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
19721
19722 * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
19723 rename a directory to a name that differs only by its letter case.
19724
19725 2000-08-08 Kenichi Handa <handa@etl.go.jp>
19726
19727 * international/quail.el (quail-define-rules): Handle Quail decode
19728 map correctly. Add code for supporting annotations.
19729 (quail-install-decode-map): New function.
19730 (quail-defrule-internal): New optional arguments decode-map and
19731 props.
19732 (quail-advice): New function.
19733
19734 2000-08-07 Sam Steingold <sds@gnu.org>
19735
19736 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
19737 `defconst', `define-condition', `with-slots'.
19738 * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
19739
19740 2000-08-03 Miles Bader <miles@gnu.org>
19741
19742 * comint.el (comint-use-prompt-regexp-instead-of-fields):
19743 New variable.
19744 (comint-prompt-regexp, comint-get-old-input): Document dependence on
19745 comint-use-prompt-regexp-instead-of-fields.
19746 (comint-send-input): Add `input' field property to stuff we send to
19747 the process, if comint-use-prompt-regexp-instead-of-fields is nil.
19748 (comint-output-filter): Add `output' field property to process
19749 output, if comint-use-prompt-regexp-instead-of-fields is nil.
19750 (comint-replace-by-expanded-history)
19751 (comint-get-old-input-default, comint-show-output)
19752 (comint-backward-matching-input, comint-forward-matching-input)
19753 (comint-next-prompt, comint-previous-prompt): Use field
19754 properties if comint-use-prompt-regexp-instead-of-fields is nil.
19755 (comint-line-beginning-position): New function.
19756 (comint-bol): Use comint-line-beginning-position. Make ARG optional.
19757 (comint-replace-by-expanded-history-before-point): Use
19758 comint-line-beginning-position and line-end-position.
19759 (comint-last-output-overlay): New variable.
19760 (comint-mode): Make `comint-last-output-overlay' buffer-local.
19761
19762 * shell.el (shell-prompt-pattern): Doc change.
19763 (shell-backward-command): Use line-beginning-position.
19764
19765 * gud.el (gud-gdb-complete-command): Use
19766 comint-line-beginning-position.
19767
19768 * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
19769 comint-bol doesn't actually go to the beginning of the line.
19770
19771 * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
19772 if comint-use-prompt-regexp-instead-of-fields is non-nil.
19773 (try-expand-line-all-buffers): Likewise.
19774
19775 * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
19776 explicitly matching comint-prompt-regexp.
19777 (sql-copy-column): Use comint-line-beginning-position instead of
19778 explicitly matching comint-prompt-regexp.
19779
19780 * progmodes/octave-inf.el (inferior-octave-complete): Use
19781 comint-line-beginning-position.
19782
19783 * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
19784
19785 * progmodes/idlw-shell.el (idlwave-shell-send-command): When
19786 looking for a prompt, use `forward-line 0' instead of
19787 `beginning-of-line', to avoid getting caught by an input field.
19788
19789 2000-08-07 Gerd Moellmann <gerd@gnu.org>
19790
19791 * files.el (shell-quote-wildcard-pattern): Make sure to return
19792 PATTERN, in the Unix case.
19793
19794 2000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
19795
19796 * play/zone.el (zone): Discard any pending input before running
19797 the randomly-chosen pgm.
19798
19799 2000-08-07 Kenichi Handa <handa@etl.go.jp>
19800
19801 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
19802 checking the existence of any multibyte characters.
19803
19804 2000-08-06 Gerd Moellmann <gerd@gnu.org>
19805
19806 * help.el (describe-mode): Test minor-mode symbol for being
19807 bound before testing its value for being nil.
19808
19809 * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
19810 `first', `second', and `third'.
19811
19812 * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
19813 (second): Make it an alias for `cadr'.
19814
19815 2000-08-06 Eli Zaretskii <eliz@is.elta.co.il>
19816
19817 * bs.el (bs-apply-sort-faces): Don't use window-system, since all
19818 types of display support faces now.
19819
19820 2000-08-05 Gerd Moellmann <gerd@gnu.org>
19821
19822 * pcvs.el (require): Require `cl' during compilation, only.
19823
19824 * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
19825 (toplevel): Remove `remq' and `remove' from autoloads.
19826 (cl-fake-autoloads): New variable. If set, arrange for an error
19827 when CL functions etc. are autoloaded.
19828
19829 2000-08-04 Eli Zaretskii <eliz@is.elta.co.il>
19830
19831 * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
19832
19833 * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
19834 popped up, but the user clicks outside the menu, return an empty
19835 regexp (that causes unhighlight-regexp to have no effect).
19836
19837 * menu-bar.el (menu-bar-games-menu): Add Zone.
19838
19839 * hi-lock.el (toplevel): Require font-lock.
19840
19841 2000-08-03 Vinicius Jose Latorre <vinicius@cpqd.com.br>
19842
19843 * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward.
19844 (ebnf-8-bit-chars): New var for bug fix.
19845 (ebnf-string): Bug fix.
19846
19847 2000-08-03 Sam Steingold <sds@gnu.org>
19848
19849 * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
19850 instead of `buffer-string'.
19851 (require 'cl): Always, not just when compiling.
19852 `ignore-errors' in `interactive', `list*', `defun*' &c make this
19853 necessary.
19854
19855 2000-08-03 Eli Zaretskii <eliz@is.elta.co.il>
19856
19857 * international/mule-cmds.el (select-safe-coding-system): Make
19858 the message text about selecting a safe coding system more clear.
19859
19860 2000-08-02 Gerd Moellmann <gerd@gnu.org>
19861
19862 * hi-lock.el: New file.
19863
19864 * play/zone.el: New file.
19865
19866 * replace.el (occur): Set tab-width in the *Occur* buffer to the
19867 value of tab-width in the original buffer. Choose a line number
19868 format that's a multiple of the original buffer's tab width, so
19869 that lines appear right.
19870
19871 * textmodes/ispell.el (ispell): New function, replacing an alias.
19872 Spell-check active region if in transient-mark-mode and mark
19873 is active; otherwise spell-check buffer.
19874
19875 2000-08-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
19876
19877 * ps-mule.el: Fix a customization problem on
19878 ps-mule-font-info-database-default.
19879
19880 2000-08-02 Eli Zaretskii <eliz@is.elta.co.il>
19881
19882 * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
19883 display-mouse-p instead of window-system.
19884 (ebrowse-member-mode-map): Ditto.
19885
19886 2000-08-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
19887
19888 * progmodes/ebnf2ps.el: Update ps-print functions call.
19889 Indentation fix. Doc fix.
19890 (ebnf-version): New version number (3.2).
19891 (ebnf-format-color, ebnf-begin-job): Code fix.
19892
19893 2000-08-01 Eli Zaretskii <eliz@is.elta.co.il>
19894
19895 * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
19896 font lock support on window-system.
19897 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
19898
19899 * textmodes/ispell.el (ispell-highlight-spelling-error): Use
19900 display-color-p, if fboundp, instead of window-system.
19901
19902 2000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
19903
19904 * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
19905 instead of window-system.
19906
19907 * wid-edit.el (widget-choose): Use display-mouse-p instead of
19908 window-system.
19909 (widget-choice-mouse-down-action): Use display-popup-menus-p
19910 instead of window-system.
19911
19912 * strokes.el (strokes-file): Run the file name through
19913 convert-standard-filename.
19914 (strokes-mode): Call display-mouse-p instead of looking at
19915 window-system. Change the error message accordingly.
19916
19917 * progmodes/cpp.el (toplevel): Support faces on tty's.
19918
19919 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
19920 (lm-plot-square, lm-init-display): Don't use window-system.
19921
19922 * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
19923 (gomoku-plot-square, gomoku-init-display): Don't use window-system.
19924
19925 * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
19926 instead of looking at window-system.
19927
19928 2000-07-30 Gerd Moellmann <gerd@gnu.org>
19929
19930 * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
19931 of testing if iswitchb-prepost-hooks is bound, because the
19932 latter will always be true when invoking a recursive minibuffer
19933 from an active Iswitchb buffer.
19934
19935 2000-07-30 Eli Zaretskii <eliz@is.elta.co.il>
19936
19937 * files.el (shell-quote-wildcard-pattern): New function.
19938 (insert-directory): Call it. Only prepend "\" to command on Unix
19939 and GNU/Linux systems.
19940
19941 2000-07-30 Gerd Moellmann <gerd@gnu.org>
19942
19943 * eshell/esh-groups.el: Change custom :link file names
19944 from `eshell.info' to `eshell'.
19945
19946 2000-07-30 Francis Wright <fjw@maths.qmw.ac.uk>
19947
19948 * dired.el (dired-build-subdir-alist): Expand subdirectory names
19949 correctly in recursive ange-ftp listings.
19950
19951 2000-07-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
19952
19953 * ps-print.el: Fix bug 1: if ps-font-size-internal,
19954 ps-header-font-size-internal and
19955 ps-header-title-font-size-internal variables are not set,
19956 ps-nb-pages and ps-line-lengths-internal crashes. Fix bug 2: if
19957 face text property is (foreground-color . COLOR) or
19958 `(background-color . COLOR)', ps-print crashes. Doc fix.
19959 (ps-print-version): New version number (5.2.4).
19960 (ps-plot-region): Code fix.
19961 (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
19962 (ps-face-attribute-list, ps-face-attributes, ps-face-background):
19963 Bug fix 2.
19964
19965 2000-07-30 Milan Zamazal <pdm@freesoft.cz>
19966
19967 * glasses.el (glasses-make-readable): Fix uncapitalization of
19968 identifiers like `myXMLDocument'.
19969
19970 2000-07-28 Karl Fogel <kfogel@red-bean.com>
19971
19972 * mail/mail-hist.el (mail-hist-previous-input)
19973 (mail-hist-next-input): Do the obvious code factorization.
19974 (mail-hist-retrieve-and-insert): New func, contains common
19975 code of above two.
19976 If inserting a message body, leave point at top.
19977
19978 2000-07-28 Sam Steingold <sds@gnu.org>
19979
19980 * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
19981 Use `<=', not `<' to compare times!
19982 (ange-ftp-ls): Remove.
19983
19984 2000-07-27 Gerd Moellmann <gerd@gnu.org>
19985
19986 * play/cookie1.el: Add explanation of how to make cookie.el
19987 compatible with strfile(1) to comment.
19988
19989 * subr.el (remove, remq): New functions.
19990
19991 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
19992 escape `*' in regexps.
19993 (midnight-find): Reverse order of arguments in the funcall of
19994 TEST.
19995
19996 * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
19997 and `.class'.
19998
19999 * play/meese.el: Add Commentary section.
20000
20001 2000-07-27 Alex Schroeder <alex@gnu.org>
20002
20003 * sql.el (sql-ms): Added autoload cookie.
20004 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
20005 (sql-oracle): Ditto.
20006 (sql-help): Doc change.
20007
20008 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
20009 types and exceptions.
20010
20011 2000-07-27 Alex Schroeder <alex@gnu.org>
20012
20013 * sql.el (sql-placeholder-history): New variable.
20014 (sql-query-placeholders-and-send): New function that will query
20015 the user and replace placeholders with user input.
20016 (sql-oracle): If running on NT, set comint-input-sender to
20017 sql-query-placeholders-and-send.
20018
20019 (sql-stop): If in the SQLi buffer, insert stop notification, else
20020 present it as a message.
20021
20022 2000-07-27 Alex Schroeder <alex@gnu.org>
20023
20024 * sql.el (sql-input-ring-separator): Doc change.
20025 (sql-input-ring-file-name): Doc change.
20026 (sql-interactive-mode): Use `sql-input-ring-separator' and
20027 `sql-input-ring-file-name' to set the comint-mode equivalents
20028 without making them local variables.
20029 (sql-stop): Don't bind `sql-input-ring-separator' and
20030 `sql-input-ring-file-name' dynamically to their comint-mode
20031 equivalents.
20032
20033 2000-07-27 Kenichi Handa <handa@etl.go.jp>
20034
20035 * international/mule.el (register-char-codings): New function.
20036 (make-coding-system): Handle `safe-chars' specification in the arg
20037 PROPERTY.
20038
20039 * international/mule-cmds.el
20040 (find-coding-systems-region-subset-p): This function deleted.
20041 (sort-coding-systems-predicate): New variable.
20042 (sort-coding-systems): New function.
20043 (find-coding-systems-region): Use
20044 find-coding-systems-region-internal.
20045 (find-coding-systems-string): Use find-coding-systems-region.
20046 (find-coding-systems-for-charsets): Check
20047 char-coding-system-table.
20048 (select-safe-coding-system-accept-default-p): New variable.
20049 (select-safe-coding-system): Mostly rewritten. New argument
20050 ACCEPT-DEFAULT-P.
20051 (select-message-coding-system): Call select-safe-coding-system
20052 with ACCEPT-DEFAULT-P arg.
20053 (reset-language-environment): Reset default-sendmail-coding-system
20054 to the default value iso-latin-1.
20055 (set-language-environment): Don't set the obsolete variable
20056 charset-origin-alist.
20057
20058 * international/codepage.el (cp-coding-system-for-codepage-1):
20059 Give `safe-chars' property to make-coding-system.
20060
20061 * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
20062 calling select-message-coding-system twice.
20063
20064 * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
20065 instead of `safe-charsets'.
20066 (cyrillic-alternativnyj): Likewise.
20067 (ccl-encode-alternativnyj): Don't check the charset
20068 cyrillic-iso8859-5.
20069
20070 2000-07-27 Kenichi Handa <handa@etl.go.jp>
20071
20072 * composite.el (compose-chars-after): Preserve match data.
20073
20074 2000-07-26 Sam Steingold <sds@gnu.org>
20075
20076 * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
20077 (ange-ftp-real-file-newer-than-file-p): New function.
20078 (ange-ftp-verify-visited-file-modtime): Use `float-time'.
20079 (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
20080
20081 * tooltip.el (tooltip-float-time): Removed (use `float-time').
20082 * midnight.el (midnight-float-time): Ditto.
20083
20084 2000-07-26 Andreas Schwab <schwab@suse.de>
20085
20086 * files.el (normal-backup-enable-predicate): Correct
20087 interpretation of the return value of compare-strings.
20088
20089 2000-07-26 Gerd Moellmann <gerd@gnu.org>
20090
20091 * isearch.el (isearch-resume): New function.
20092 (isearch-done): Add something to command-history to resume
20093 the search.
20094 (isearch-yank-line, isearch-yank-word): Use
20095 buffer-substring-no-properties instead of buffer-substring.
20096
20097 * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
20098 of flyspell-mouse-map.
20099
20100 * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
20101 duplicate definition.
20102 (makefile-mode): Remove duplicate setting of local-abbrev-table.
20103
20104 * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
20105 (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
20106
20107 2000-07-25 Sam Steingold <sds@gnu.org>
20108
20109 * net/ange-ftp.el: Get modtime over the net.
20110 (ange-ftp-file-modtime): New function.
20111 (ange-ftp-write-region, ange-ftp-insert-file-contents)
20112 (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
20113 Use it.
20114 (ange-ftp-dot-to-slash): New function.
20115 (ange-ftp-fix-name-for-vms): Use it.
20116
20117 * midnight.el (midnight-buffer-display-time): Use
20118 `with-current-buffer'.
20119
20120 2000-07-25 Gerd Moellmann <gerd@gnu.org>
20121
20122 * find-dired.el: Update copyright notice.
20123 (find-dired): Offer to kill a running `find'.
20124
20125 * enriched.el (enriched-face-ans): For a `foreground-color'
20126 property, return '(("x-color" COLOR))' so that COLOR will be
20127 output as a parameter of the x-color annotation. Likewise for the
20128 `background-color' property. In the case of normal face
20129 properties, don't return annotations for unspecified foreground
20130 and background face attributes.
20131
20132 2000-07-25 Kenichi Handa <handa@etl.go.jp>
20133
20134 * language/japan-util.el (japanese-katakana-region): Fix handling
20135 HANKAKU argument.
20136
20137 2000-07-25 Miles Bader <miles@gnu.org>
20138
20139 * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
20140 constrain-to-field. Pass nil ESCAPE-FROM-EDGE argument to
20141 constrain-to-field.
20142
20143 2000-07-24 Andrew Innes <andrewi@gnu.org>
20144
20145 * timer.el (timer-activate-when-idle): Add optional parameter
20146 DONT-WAIT. Update docstring.
20147 (run-with-idle-timer): Specify extra parameter to
20148 timer-activate-when-idle, so that timer will be activated
20149 immediately if Emacs is already idle.
20150
20151 * w32-fns.el (w32-using-nt): Fix docstring.
20152
20153 2000-07-24 Dave Love <fx@gnu.org>
20154
20155 * mouse.el (popup-menu): Set last-command-event.
20156 (mouse-major-mode-menu-prefix): Declare.
20157
20158 2000-07-24 Gerd Moellmann <gerd@gnu.org>
20159
20160 * textmodes/flyspell.el: Update to author's version 1.5d.
20161
20162 * progmodes/hideshow.el: Update copyright notice.
20163
20164 * vcursor.el: Set maintainer to FSF, since author cannot
20165 be reached.
20166
20167 2000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
20168
20169 * info.el (Info-goto-emacs-key-command-node): Leave a space after
20170 the prompt.
20171
20172 * mouse.el (popup-menu): Run the keymap through indirect-function,
20173 in case it was defined with define-prefix-key. If the menu is a
20174 list of keymaps, look up the binding of user's choice in each one
20175 of the keymaps.
20176 (mouse-popup-menubar): If the global and local menu-bar keymaps
20177 don't have a prompt string, create one and insert it into the
20178 keymap. Don't barf if current-local-map returns nil.
20179
20180 2000-07-24 Francis Wright <fjw@maths.qmw.ac.uk>
20181
20182 * dired.el (dired-sort-R-check): Added to allow recursive listing
20183 to be undone.
20184 (dired-sort-other): Use it.
20185
20186 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20187
20188 * Release of cc-mode 5.27
20189
20190 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20191
20192 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
20193 c-beginning-of-statement-1 that caused a bad case of recursion
20194 which could consume a lot of CPU in large classes in languages
20195 that have in-expression classes (i.e. Java and Pike).
20196
20197 * cc-engine.el (c-guess-basic-syntax): Check for in-expression
20198 statements before top level constructs (i.e. case 6 is moved
20199 before case 5 and is now case 4) to catch in-expression
20200 classes in top level expressions correctly.
20201
20202 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20203
20204 * cc-engine.el (c-guess-basic-syntax): Less naive handling of
20205 objc-method-intro. Case 4 removed and case 5I added.
20206
20207 * cc-langs.el (c-append-paragraph-start): New variable used by
20208 c-common-init to get paragraph-start correct.
20209 * cc-langs.el (c-common-init): Use c-append-paragraph-start to
20210 initialize paragraph-start to make it correct both with and
20211 without the javadoc special case.
20212
20213 * cc-mode.el (java-mode): Use c-append-paragraph-start to
20214 initialize paragraph-start for javadoc markup.
20215
20216 * cc-vars.el (c-style-variables-are-local-p): Incompatible
20217 change by defaulting this to t. It's motivated by the
20218 confusing behavior that otherwise arise from the style system
20219 when editing both java and non-java files at the same time
20220 (see the comments about style setting in c-common-init).
20221
20222 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20223
20224 * cc-cmds.el (c-indent-new-comment-line): Added a kludge
20225 similar to the one in c-fill-paragraph to check the fill
20226 prefix from the adaptive fill function for sanity.
20227
20228 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20229
20230 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
20231 defun block.
20232
20233 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20234
20235 * cc-align.el (c-lineup-multi-inher): Handle lines with
20236 leading comma nicely. Extended to handle member initializers
20237 too.
20238
20239 * cc-engine.el: (c-beginning-of-inheritance-list,
20240 c-guess-basic-syntax): Fixed recognition of inheritance lists
20241 when the lines begins with a comma.
20242
20243 * cc-vars.el (c-offsets-alist): Changed default for
20244 member-init-cont to c-lineup-multi-inher since it now handles
20245 member initializers and indents better for leading commas.
20246
20247 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20248
20249 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
20250 handling that caused class open lines to be recognized as
20251 statement-conts in some cases.
20252
20253 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
20254 guessed by the adaptive fill function unless point is on the
20255 first line of a block comment.
20256
20257 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
20258 when the buffer ends with a macro continuation char.
20259
20260 * cc-engine.el (c-guess-basic-syntax): Added support for
20261 function definitions as statements in Pike. The first
20262 statement in a lambda block is now labeled defun-block-intro
20263 instead of statement-block-intro.
20264
20265 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
20266 so that the class surrounding point is selected, not the one
20267 innermost in the state.
20268
20269 * cc-engine.el (c-guess-basic-syntax): Fixed bug in
20270 recognition of switch labels having hanging multiline
20271 statements.
20272
20273 * cc-engine.el (c-beginning-of-member-init-list): Broke out
20274 some code in c-guess-basic-syntax to a separate function.
20275 * cc-engine.el (c-just-after-func-arglist-p): Fixed
20276 recognition of member inits with multiple line arglists.
20277 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
20278 member-init-cont when the commas are in funny places.
20279
20280 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20281
20282 * cc-defs.el (c-auto-newline): Removed this macro since it's
20283 not used anymore.
20284
20285 * cc-engine.el (c-looking-at-bos): New helper function.
20286 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
20287 inexpr and toplevel classes apart in Pike.
20288
20289 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
20290 of case 9A.
20291
20292 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
20293 constant, since "class" can introduce an in-expression class
20294 in Pike nowadays.
20295
20296 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20297
20298 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
20299 indentation on cpp-macro lines.
20300
20301 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
20302 a syntax modifier like comment-intro, to make it possible to
20303 get syntactic indentation for preprocessor directives. It's
20304 incompatible wrt to lineup functions on cpp-macro, but it has
20305 no observable effect in the 99.9% common case where cpp-macro
20306 is set to -1000.
20307
20308 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20309
20310 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
20311 member-init-cont when the preceding arglist is several lines.
20312
20313 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20314
20315 * cc-styles.el (c-style-alist): The basic offset for the BSD
20316 style corrected to 8.
20317
20318 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20319
20320 * cc-styles.el (c-style-alist): Adjusted the indentation of
20321 brace list openers in the gnu style.
20322
20323 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20324
20325 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
20326
20327 * cc-cmds.el (c-electric-brace, c-electric-slash,
20328 c-electric-star, c-electric-semi&comma, c-electric-colon,
20329 c-electric-lt-gt, c-electric-paren): Don't reindent old lines
20330 when c-syntactic-indentation is nil.
20331
20332 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
20333 we were left at comments preceding the first statement when
20334 reaching the beginning of the buffer.
20335
20336 * cc-vars.el (c-syntactic-indentation): New variable to turn
20337 off all syntactic indentation.
20338
20339 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20340
20341 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
20342 between the text and the block comment ender when it hangs,
20343 depending on how many there are before the fill.
20344
20345 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20346
20347 * cc-engine.el (c-beginning-of-closest-statement): New helper
20348 function to go back to the closest preceding statement start,
20349 which could be inside a conditional statement.
20350 * cc-engine.el (c-guess-basic-syntax): Use
20351 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
20352
20353 * cc-engine.el (c-guess-basic-syntax): Better handling of
20354 arglist-intro, arglist-cont-nonempty and arglist-close when
20355 the arglist is nested inside parens. Cases 7A, 7C and 7F
20356 changed.
20357
20358 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
20359 up-to-date with javadoc 1.2.
20360
20361 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20362
20363 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
20364 multiline Pike type decls.
20365
20366 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20367
20368 * cc-cmds.el (c-indent-new-comment-line): Always break
20369 multiline comments in multiline mode, regardless of
20370 comment-multi-line.
20371
20372 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20373
20374 * cc-engine.el (c-guess-basic-syntax): Fixed bug with
20375 fully::qualified::names in C++ member init lists. Preamble in
20376 case 5D changed.
20377
20378 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20379
20380 * cc-langs.el (c-common-init): Handling of obsolete variables
20381 moved to c-initialize-cc-mode. More compatible style override
20382 when using global style variables.
20383 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
20384 variables moved here.
20385
20386 * cc-styles.el (c-make-styles-buffer-local): Flag style
20387 variable localness in c-style-variables-are-local-p to make
20388 the compatibility measure in c-common-init work well.
20389
20390 * cc-styles.el (c-set-style-1): c-special-indent-hook can no
20391 longer contain set-from-style.
20392 * cc-styles.el (c-initialize-builtin-style): Don't check for
20393 set-from-style on c-special-indent-hook.
20394 * cc-styles.el (c-copy-tree): Obsolete. The standard function
20395 copy-alist is sufficient now.
20396
20397 * cc-styles.el (c-set-style, c-set-style-1,
20398 c-get-style-variables): Fixes to variable initialization so
20399 that duplicate entries in styles have the same effect
20400 regardless of DONT-OVERRIDE.
20401
20402 * cc-styles.el (c-set-style-2): Fixed bug where the
20403 initialization of inheriting styles failed when the
20404 dont-override flag is set.
20405
20406 * cc-vars.el (c-special-indent-hook): Don't use set-from-style
20407 on this.
20408
20409 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20410
20411 * cc-defs.el (c-forward-comment): Removed the workaround
20412 introduced in 5.38 since it had worse side-effects. If a line
20413 contains the string "//\"", it regarded the // as a comment
20414 start since the \ temporarily doesn't have escape syntax.
20415
20416 2000-07-17 Emmanuel Briot <briot@act-europe.fr>
20417
20418 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
20419 ada-xref.el before ada-prj.el, so that the Project menu is created
20420 when ada-prj tries to add to it.
20421 (ada-activate-keys-for-case): Suppress the characters that are not
20422 part of the Ada syntax. Better compatibility with else-mode
20423 (ada-adjust-case-interactive): When auto-casing is not active,
20424 correctly insert newlines (used to insert only ^M). Prevent the
20425 syntax table from being changed in case of an error
20426 (or '_' becomes part of a word and some commands are confused).
20427 Do nothing if ada-auto-case is nil.
20428 (ada-after-keyword-p): Ignore keywords that are also attributes
20429 (ada-batch-reformat): Update usage comment
20430 (ada-call-from-contextual-menu): New function
20431 (ada-case-read-exceptions): Reinitialize the casing exception list
20432 first to nil first, so that the casing exception file can be
20433 shared.
20434 (ada-check-defun-name): Handles "configure" keyword for gnatdist
20435 files.
20436 (ada-compile-goto-error): Fix regexp used to detect a file:line
20437 anywhere in the error message
20438 (ada-contextual-menu-last-point): New variable
20439 (ada-create-keymap): If the variable delete-key-deletes-forward is
20440 t on XEmacs, it means that DEL should delete one character
20441 forward.
20442 (ada-create-menu): Use :included instead of :visible for XEmacs.
20443 New submenu "Options".
20444 (ada-end-stmt-re): Correctly indent "select ... then abort"
20445 statements.
20446 (ada-fill-comment-paragraph): Correctly delete all leading '--'
20447 even if they don't match ada-fill-comment-prefix Fix handling of
20448 paragraphs on the first or last line of a file.
20449 (ada-format-paramlist): Fix handling of default parameter values.
20450 (ada-get-body-name): New function.
20451 (ada-get-current-indent): Optimized by searchling directly for an
20452 existing generic part or a statement outside of it. Handle
20453 ada-indent-align-comments when indenting comments Replaced some
20454 regexps by testing directly the next character. This results in a
20455 huge speedup on some files. New indentation scheme for renames
20456 statements. Stop looking for the 'while' or 'for' associated with
20457 a 'loop' at the first semicolon encountered. A "return" can also
20458 match an anonymous access subprogram declaration.
20459 (ada-get-indent-noindent): Ignore strings and comments when
20460 looking for the keywords "record" and "private".
20461 (ada-goto-matching-decl-start): When matching "if", make sure we
20462 are not in fact seeing "end if". Ignore "when" statements except
20463 when initial keyword was "begin". Fix handling of nested
20464 procedures. Add a recursive call to this function to skip over
20465 other 'end' statmts. Fix indentation for "when .. => begin"
20466 (ada-in-open-paren-p): Fix indentation for complex boolean
20467 expressions, where 'and then', 'or else' and parenthesis
20468 statements are mixed up.
20469 (ada-in-paramlist-p): Skip comments while searching for the
20470 beginning Fix handling of operator declarations.
20471 (ada-indent-align-comments): New variable
20472 (ada-indent-current): Change the syntax table only in the
20473 protected section, so that we are sure it is restored correctly.
20474 (ada-indent-on-previous-lines): Use ada-use-indent and
20475 ada-with-indent Correctly indent "select ... then"
20476 (ada-indent-region): Slight speedup.
20477 (ada-indent-renames): New variable.
20478 (ada-last-which-function-subprog, ada-last-which-function-line):
20479 New variables
20480 (ada-looking-at-semi-private): Correctly indent the 'private'
20481 keyword when it is the first word in a package declaration.
20482 (ada-loose-case-word): Stop searching if at the end of the buffer.
20483 (ada-loose-case-word, ada-capitalize-word): Recase the whole word
20484 even if point is not initially at the end of the word.
20485 (ada-matching-decl-start-re): Add "when".
20486 (ada-mode): Add support for abbrev-mode, outline-mode and
20487 which-func-mode Override the old find-file.el entry in
20488 ff-special-constructs since it is using the obsolete
20489 ada-spec-suffix variable
20490 (ada-no-auto-case): New function
20491 (ada-scan-paramlist): When parsing the argument type, accept
20492 spaces (as in "X 'Class", generated by Rational Rose).
20493 (ada-other-file-name): No longer loads the other file.
20494 (ada-popup-menu): Save and restore the current buffer and cursor
20495 position before and after displaying the menu.
20496 (ada-search-ignore-complex-boolean): New function.
20497 (ada-uncomment-region): Emacs21 already knows how to delete
20498 comments not starting in the first column.
20499 (ada-use-indent): New variable
20500 (ada-which-function): New function.
20501 (ada-with-indent): New variable
20502 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
20503 can be batch-compiled from the command line.
20504
20505 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
20506 Add to the menu when the file is loaded, not in ada-mode-hook.
20507 Add -toolbar to the default ddd command Switches moved from
20508 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
20509 ada-prj-default-comp-opt
20510 (ada-add-ada-menu): Remove the map and name parameters Add the Ada
20511 Reference Manual to the menu
20512 (ada-check-current): rewritten as a call to ada-compile-current
20513 (ada-compile): Removed.
20514 (ada-compile-application, ada-compile-current, ada-check-current):
20515 Set the compilation-search-path so that compile.el automatically
20516 finds the sources in src_dir. Automatic scrollong of the
20517 compilation buffer. C-uC-cC-c asks for confirmation before
20518 compiling
20519 (ada-compile-current): New parameter, prj-field
20520 (ada-complete-identifier): Load the .ali file before doing
20521 processing
20522 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
20523 conform to gnatmake's behavior.
20524 (ada-find-file-in-dir): New function
20525 (ada-find-references): Set the environment variables for gnatfind
20526 (ada-find-src-file-in-dir): New function.
20527 (ada-first-non-nil): Removed
20528 (ada-gdb-application): Add support for jdb, the java debugger.
20529 (ada-get-ada-file-name): Load the original-file first if not done
20530 yet.
20531 (ada-get-all-references): Handles the new ali syntax (parent types
20532 are found between <>).
20533 (ada-initialize-runtime-library): New function
20534 (ada-mode-hook): Always load a project file when a file is opened,
20535 so that the casing exceptions are correctly read.
20536 (ada-operator-re): Add all missing operators ("abs", "rem", "**").
20537 (ada-parse-prj-file): Use find-file-noselect instead of find-file
20538 to open the project file, since the latter does not work with
20539 speedbar Get default values before loading the prj file, or the
20540 default executable file name is wrong. Use the absolute value of
20541 src_dir to initialize ada-search-directories and
20542 compilation-search-path,... Add the standard runtime library to
20543 the search path for find-file.
20544 (ada-prj-default-debugger): Was missing an opening '{'
20545 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
20546 variables.
20547 (ada-prj-default-gnatmake-opt): New variable
20548 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
20549 buffers, the project file is the default one Save the windows
20550 configuration before displaying the menu.
20551 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
20552 (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
20553 ...) regexp-quote identifiers names to support operators +,
20554 -,... in regexps.
20555 (ada-remote): New function.
20556 (ada-run-application): Erase the output buffer before starting the
20557 run Support remote execution of the application. Use
20558 call-process, or the arguments are incorrectly parsed
20559 (ada-set-default-project-file): Reread the content of the active
20560 project file, not the one from the current buffer When a project
20561 file is set as the default project, all directories are
20562 automatically associated with it.
20563 (ada-set-environment): New function
20564 (ada-treat-cmd-string): New special variable ${current}
20565 (ada-treat-cmd-string): Revised. The substitution is now done for
20566 any ${...} substring
20567 (ada-xref-current): If no body was found, compiles the spec
20568 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the
20569 compiler to get rid of command line length limitations.
20570 (ada-xref-get-project-field): New function
20571 (ada-xref-project-files): New variable
20572 (ada-xref-runtime-library-specs-path)
20573 (ada-xref-runtime-library-ali-path): New variables
20574 (ada-xref-set-default-prj-values): Default run command now does a
20575 cd to the build directory. New field: main_unit Provide a default
20576 file name even if the current buffer has no prj file.
20577
20578 * ada-prj.el:
20579 Rewritten to show a tabbed-dialog.
20580 (ada-prj-add-ada-menu): Remove the map and name parameters.
20581 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
20582 New function
20583 (ada-prj-load-directory, ada-prj-subdirs-of): New functions
20584 (ada-prj-load-from-file): New function
20585 (ada-prj-save): Always save fields that depend on the current buffer
20586 (ada-prj-show-value): New function
20587
20588 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
20589 Ada mode. This will allow us to display the Ada menu in any buffer
20590 we want (for project items).
20591 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
20592 number of spaces in the header.
20593
20594 2000-07-24 Dave Love <fx@gnu.org>
20595
20596 * ediff-init.el (ediff-region-help-echo): Bind face-help.
20597
20598 2000-07-23 Noah Friedman <friedman@splode.com>
20599
20600 * type-break.el (type-break): perform autosave.
20601 Suggested by Stephen Gildea <gildea@stop.mail-abuse.org>.
20602 (type-break-do-query): Cancel query schedule while performing
20603 actual query, to avoid possibility of a second query being made
20604 while first one is already in progress.
20605 (type-break-time-stamp-format): New variable.
20606 (type-break-time-stamp): New function.
20607 (type-break-time-warning): Use it.
20608 (type-break-keystroke-warning): Use it.
20609 (type-break-noninteractive-query): Use it.
20610
20611 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
20612 cookie.
20613 Use add-minor-mode to set minor-mode-alist, if available.
20614 (eldoc-echo-area-use-multiline-p): New user option.
20615 (eldoc-echo-area-multiline-supported-p): New variable.
20616 (eldoc-docstring-format-sym-doc): Use them.
20617 (eldoc-mode): If not using idle timers, append to local post and
20618 pre command hooks. Suggested by David Byers <davby@ida.liu.se>.
20619 (eldoc-display-message-no-interference-p): Don't interfere with
20620 edebug.
20621 Add autoload cookie for eldoc-mode minor-mode-alist initialization.
20622 (eldoc-function-arglist): New function.
20623 (eldoc-function-argstring): Use it.
20624
20625 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
20626 auto save directory exists before calling directory-files.
20627
20628 2000-07-23 Dave Love <fx@gnu.org>
20629
20630 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
20631 ^o, ^u.
20632
20633 2000-07-21 Dave Love <fx@gnu.org>
20634
20635 * ediff-init.el (ediff-region-help-echo): Modify to use overlay
20636 now passed to the function. It now works properly.
20637
20638 * smerge-mode.el (smerge-mode-menu): Fill it out.
20639
20640 2000-07-20 Gerd Moellmann <gerd@gnu.org>
20641
20642 * info-look.el (info-lookup): If *info* is shown in another frame
20643 on the same display, select that frame, instead of switching to
20644 the Info buffer in another window of the selected frame.
20645
20646 * simple.el (universal-argument-map): Bind numeric keypad keys
20647 kp-0 to kp-9 and kp-subtract.
20648 (digit-argument): Handle these keys.
20649
20650 2000-07-20 Dave Love <fx@gnu.org>
20651
20652 * net/goto-addr.el (goto-address-fontify): Don't bother with
20653 buffer-modified and read-only stuff -- irrelevant with overlays.
20654 Put an extra property on the overlays and use it to clean up in
20655 case goto-address is re-run.
20656
20657 2000-07-19 Richard M. Stallman <rms@gnu.org>
20658
20659 * timer.el (run-with-idle-timer): Doc fix.
20660
20661 * mail/mail-utils.el (mail-strip-quoted-names):
20662 Handle case where <...> appears inside "...".
20663 Use replace-match to edit the string more simply.
20664 (rmail-dont-reply-to): Cope with an unmatched ".
20665
20666 2000-07-19 Dave Love <fx@gnu.org>
20667
20668 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
20669 implementation.
20670
20671 * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
20672 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
20673 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
20674
20675 2000-07-19 Gerd Moellmann <gerd@gnu.org>
20676
20677 * textmodes/refer.el: Correct maintainer's email address.
20678
20679 * progmodes/hideif.el: Correct author's email address.
20680 Fix typo in comment.
20681
20682 * xml.el: New file.
20683
20684 * mail/mailheader.el: Correct author's mail address.
20685
20686 * gnus/parse-time.el: Correct author's mail address.
20687
20688 2000-07-19 Colin Walters <walters@cis.ohio-state.edu>
20689
20690 * comint.el (comint-highlight-input, comint-highlight-face):
20691 New user options.
20692 (comint-input-ring-file-name): Change custom type.
20693 (comint-mode-map): Bind mouse-2.
20694 (comint-insert-clicked-input): New function.
20695 (comint-send-input): Handle input highlighting.
20696
20697 2000-07-18 Stefan Monnier <monnier@cs.yale.edu>
20698
20699 * mouse.el (popup-menu): New function.
20700 (mouse-major-mode-menu): Use it.
20701
20702 2000-07-18 Dave Love <fx@gnu.org>
20703
20704 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
20705 improvements.
20706
20707 2000-07-18 Gerd Moellmann <gerd@gnu.org>
20708
20709 * faces.el (face-font-selection-order)
20710 (face-font-family-alternatives): Add custom type.
20711
20712 2000-07-18 Dave Love <fx@gnu.org>
20713
20714 * cus-edit.el (custom-variable-reset-saved)
20715 (custom-variable-reset-standard): Remove unused bindings.
20716
20717 * rect.el (open-rectangle-line): Remove unused let.
20718
20719 * hl-line.el (hl-line-highlight): Check hl-line-mode.
20720
20721 2000-07-18 Gerd Moellmann <gerd@gnu.org>
20722
20723 * cdl.el: Fix `Maintainer' keyword.
20724
20725 * play/pong.el: Add author's email address.
20726
20727 2000-07-17 Sam Steingold <sds@gnu.org>
20728
20729 * files.el (insert-directory): Call `split-string' instead of
20730 re-implementing it.
20731
20732 2000-07-18 Gerd Moellmann <gerd@gnu.org>
20733
20734 * mail/vms-pmail.el: Change maintainer to FSF.
20735
20736 * net/goto-addr.el: Change maintainer to FSF.
20737
20738 * info.el (Info-title-face-alist): Removed.
20739
20740 2000-07-18 David Ponce <david@dponce.com>
20741
20742 * recentf.el (recentf-open-files): New command that works like
20743 `recentf-open-more-files', but shows the whole list of files (not just
20744 those omitted from the menu). Useful if you don't use a menu-bar!
20745 (recentf-open-more-files) Modified to use `recentf-open-files'.
20746
20747 (recentf-open-files, recentf-open-more-files)
20748 (recentf-edit-list): Dialogs use `recentf-dialog-mode'
20749
20750 (recentf-dialog-mode): New mode for dialogs. You can now just type
20751 "q" to cancel the dialogs.
20752
20753 2000-07-18 David Ponce <david@dponce.com>
20754
20755 * recentf.el: This is a major update of recentf.el. It adds new
20756 features to better organize the recentf menu and "More..." buffer.
20757
20758 Using new provided menu filtering functions you can now organize the
20759 recent files list:
20760
20761 - by major modes
20762 - by directories
20763 - by user defined rules
20764
20765 Finally, with the new `recentf-filter-changer' customizable filter you
20766 can define a ring of filters and dynamically (via the menu) cycle on
20767 each menu organization in the ring (a la msb).
20768
20769 2000-07-18 Eli Zaretskii <eliz@is.elta.co.il>
20770
20771 * eshell/eshell.el (eshell): Replace links to eshell.info with
20772 links to eshell, to avoid problems on systems where the manual is
20773 installed as `eshell'.
20774 * eshell/esh-cmd.el (eshell-cmd): Ditto.
20775 * eshell/em-smart.el (eshell-smart): Ditto.
20776 * eshell/em-banner.el (eshell-banner): Ditto.
20777 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
20778
20779 * eshell/em-unix.el (eshell-shuffle-files): Don't disable
20780 same-file check in the MS-DOS version (it does support inodes).
20781
20782 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
20783
20784 * eshell/eshell.el (eshell-directory-name):
20785 Run default directory name through convert-standard-filename.
20786
20787 2000-07-18 Kenichi Handa <handa@etl.go.jp>
20788
20789 * international/mule-cmds.el (select-safe-coding-system):
20790 Fix typo in the comment.
20791
20792 * language/european.el (compound-text):
20793 Force katakana-jisx0201 to be designated to G1.
20794
20795 * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
20796 Don't translate some national variant characters of latin-jisx0201.
20797 (x-ctext): Force katakana-jisx0201 to be designated to G1.
20798
20799 * international/kkc.el (kkc-after-update-conversion-functions):
20800 New variable.
20801 (kkc-update-conversion): Run functions in it at the tail.
20802
20803 2000-07-16 John Wiegley <johnw@gnu.org>
20804
20805 * lisp/align.el (align-newline-and-indent):
20806 Adding new function. for auto-aligning blocks of code on RET.
20807 (align-region): Fixed badly formatted minibuffer message.
20808
20809 2000-07-17 Kenichi Handa <handa@etl.go.jp>
20810
20811 * international/kkc.el (kkc-show-conversion-list-count): Customize it.
20812 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show
20813 the conversion list at first if appropriate.
20814 (kkc-next): Don't update kkc-next-count here.
20815 (kkc-prev): Don't update kkc-prev-count here.
20816 (kkc-show-conversion-list-update): Fix setting up of conversion
20817 list message.
20818
20819 2000-07-16 Stefan Monnier <monnier@cs.yale.edu>
20820
20821 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
20822
20823 2000-07-16 Dave Love <fx@gnu.org>
20824
20825 * cus-edit.el (custom-buffer-create-internal): Use a help-echo
20826 function to be more specific.
20827
20828 * wid-edit.el (widget-specify-field, widget-specify-button): Allow
20829 non-string help-echo.
20830 (widget-types-convert-widget): Defsubst it.
20831 (widget-echo-help): Try to cope with a help-echo function of two
20832 possible sorts.
20833
20834 2000-07-15 Jason Rumney <jasonr@gnu.org>
20835
20836 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
20837 Declare as obsolete.
20838
20839 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
20840
20841 2000-07-14 Gerd Moellmann <gerd@gnu.org>
20842
20843 * hilit-chg.el: Fix typo.
20844
20845 2000-07-14 Dave Love <fx@gnu.org>
20846
20847 * info.el (Info-mode-menu): Fix use of :help, :enable.
20848
20849 2000-07-14 Stefan Monnier <monnier@cs.yale.edu>
20850
20851 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
20852
20853 2000-07-13 Dave Love <fx@gnu.org>
20854
20855 * emacs-lisp/easymenu.el: Doc fixes.
20856 (easy-menu-remove): Defalias to ignore.
20857
20858 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
20859 Call throw correctly.
20860
20861 2000-07-13 Gerd Moellmann <gerd@gnu.org>
20862
20863 * faces.el (frame-background-mode): Doc fix.
20864
20865 * simple.el (eval-expression-print-length): Change custom type to
20866 allow entering nil as value.
20867
20868 2000-07-13 Dave Love <fx@gnu.org>
20869
20870 * progmodes/fortran.el (fortran-imenu-generic-expression):
20871 Change definition layout.
20872 (fortran-mode-menu): Reinstate customize entries.
20873
20874 * cus-edit.el (custom-group-menu-create, customize-menu-create):
20875 Use :filter, per old XEmacs code.
20876
20877 2000-07-12 Gerd Moellmann <gerd@gnu.org>
20878
20879 * term.el (term-send-raw-meta): Strip modifiers from the keyboard
20880 event when deciding what to send to the terminal.
20881
20882 2000-07-12 Dave Love <fx@gnu.org>
20883
20884 * cus-start.el: Add optional version as 4th element of specs and
20885 use it for several things new in v21. Remove load-path. Fix type
20886 of line-number-display-limit.
20887
20888 2000-07-11 Dave Love <fx@gnu.org>
20889
20890 * progmodes/fortran.el: Don't require easymenu.
20891 Use repeat counts in various regexps.
20892 (fortran-mode-syntax-table): Defvar directly.
20893 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
20894 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
20895 Use defvar, not defconst.
20896 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'.
20897 (fortran-mode): Set fortran-comment-line-start-skip,
20898 fortran-comment-line-start-skip, dabbrev-case-fold-search.
20899 (fortran-comment-indent): Use defsubst.
20900 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
20901 Use fortran-comment-indent, not fortran-comment-indent-function.
20902 (fortran-comment-region, fortran-electric-line-number): Simplify.
20903 (fortran-auto-fill): New function.
20904 (fortran-do-auto-fill): Deleted.
20905 (fortran-find-comment-start-skip):
20906 Check for non-null comment-start-skip.
20907 (fortran-auto-fill-mode, fortran-fill-statement):
20908 Use fortran-auto-fill.
20909 (fortran-fill): Use fortran-auto-fill. Check for null
20910 comment-start-skip. Simplify final clause and use end-of-line finally.
20911
20912 * widget.el (widget-plist-member): New alias.
20913
20914 2000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
20915
20916 * eshell/esh-module.el (toplevel): Reference
20917 byte-compile-current-file only if it is bound.
20918
20919 2000-07-10 Gerd Moellmann <gerd@gnu.org>
20920
20921 * dired.el: Don't require `dired-aux'.
20922
20923 2000-07-10 Miles Bader <miles@lsi.nec.co.jp>
20924
20925 * dired-aux.el (dired-show-file-type): New function.
20926 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
20927 (dired-show-file-type): Add autoload.
20928
20929 2000-07-10 Kenichi Handa <handa@etl.go.jp>
20930
20931 * international/mule-diag.el (describe-font): Adjusted for the
20932 change of fontset-info.
20933 (print-fontset): Likewise.
20934
20935 2000-07-09 Stefan Monnier <monnier@cs.yale.edu>
20936
20937 * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
20938
20939 2000-07-07 Gerd Moellmann <gerd@gnu.org>
20940
20941 * bindings.el: Bind `[delete]' to delete-char.
20942
20943 * dired.el (dired-find-alternate-file): New function.
20944 (dired-mode-map): Bind `a' to dired-find-alternate-file.
20945 (toplevel): Require dired-aux when compiling.
20946 (dired-buffers): Move defvar within file to avoid compiler warning.
20947
20948 * info.el (Info-last-search): Variable removed.
20949 (Info-search-history): New variable.
20950 (Info-search): New Info-search-history.
20951
20952 * battery.el, info-look.el: Change author's mail address.
20953
20954 2000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
20955
20956 * mail/rmail.el (rmail-clear-headers): Don't throw an error
20957 if rmail-ignored-headers is nil.
20958 (rmail-retry-failure): Bind rmail-ignored-headers and
20959 rmail-displayed-headers to nil.
20960
20961 2000-07-06 Gerd Moellmann <gerd@gnu.org>
20962
20963 * lpr.el (lpr-page-header-switches): Add `-h' switch.
20964 (print-region-1): Don't hard code `-h' here.
20965
20966 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
20967
20968 2000-07-01 Francesco Potorti` <pot@gnu.org>
20969
20970 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
20971 exim can use "your message" instead of "the message".
20972
20973 2000-07-06 Stefan Monnier <monnier@cs.yale.edu>
20974
20975 * facemenu.el: Docstrings fixes.
20976 (facemenu-get-face): Don't use internal-find-face.
20977 (facemenu-iterate): Rename arg to match the docstring.
20978
20979 * newcomment.el (uncomment-region): Be more careful when skipping
20980 backwards over `=' not to bump into BOBP.
20981
20982 2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
20983
20984 * ediff-diff.el (ediff-wordify): Use syntax table.
20985 * ediff-init.el (ediff-has-face-support-p): Use
20986 ediff-color-display-p.
20987 (ediff-color-display-p): Use display-color-p, changed to defun
20988 from defsubst.
20989 Got rid of special cases for NeXT and OS/2.
20990 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
20991 face.
20992
20993 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
20994
20995 * emacs-lisp/lucid.el: Require CL.
20996 (copy-tree, remprop): Remove, it's provided by CL.
20997 (map-keymap): Define in terms of cl-map-keymap.
20998 (extent-property, set-extent-end-glyph): New functions.
20999
21000 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
21001
21002 2000-07-05 Gerd Moellmann <gerd@gnu.org>
21003
21004 * Makefile.in (DONTCOMPILE): Add comment that the name may
21005 not be changed without changing the make-dist script.
21006
21007 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
21008 (cl-mapc): Use mapc instead of cl-old-mapc.
21009
21010 2000-07-05 Andrew Innes <andrewi@gnu.org>
21011
21012 * makefile.nt: Add support for `bootstrap' and related targets.
21013
21014 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
21015
21016 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
21017 (easy-menu-do-define): Use `menu-item' format.
21018 Handle case where easy-menu-create-menu returns a symbol.
21019 Manually call the potential top-level filter in the function binding.
21020 (easy-menu-filter-return): New arg NAME.
21021 Convert to a keymap if MENU is an XEmacs menu.
21022 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item.
21023 (easy-menu-converted-items-table, easy-menu-convert-item):
21024 New var and fun to memoize easy-menu-convert-item-1.
21025 (easy-menu-do-add-item): Use it.
21026 (easy-menu-create-menu): Use easy-menu-convert-item.
21027 Wrap easy-menu-filter-return around any :filter specification.
21028 Don't convert the menu if a filter was specified.
21029 Tell easy-menu-make-symbol not to check for MENU being an expression.
21030 (easy-menu-make-symbol): New arg NOEXP.
21031
21032 2000-07-05 Gerd Moellmann <gerd@gnu.org>
21033
21034 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
21035 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
21036 (eval-defun): If called with prefix arg, instrument code for
21037 Edebug.
21038
21039 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
21040 similar to that of eval-defun.
21041
21042 2000-07-04 Dave Love <fx@gnu.org>
21043
21044 * hl-line.el (hl-line-overlay): Make it permanent-local.
21045
21046 * calendar/todo-mode.el: Replaced with a working version, based on
21047 1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
21048
21049 2000-07-03 Miles Bader <miles@lsi.nec.co.jp>
21050
21051 * paths.el (prune-directory-list): New function.
21052 (Info-default-directory-list): Rewritten to more methodically
21053 enumerate a big list of possible info directories (based on the
21054 list used by the standalone info reader).
21055
21056 * info.el (info-initialize): Use prune-directory-list to remove
21057 non-existent directories from Info-directory-list.
21058
21059 * paths.el (Info-default-directory-list): Try a list of possible
21060 info-directories instead of a single one. Add the possible
21061 info directory "/usr/share/info".
21062
21063 * woman.el (woman-man.conf-path): Explicitly include the debian
21064 man-db config file "/etc/manpath.config".
21065 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
21066 are present in `manpath.config'.
21067 (woman-manpath): Include "/usr/share/man".
21068
21069 2000-07-03 Gerd Moellmann <gerd@gnu.org>
21070
21071 * frame.el (blink-cursor-mode): Don't hide cursor initially.
21072
21073 * startup.el (command-line): Initialize blink-cursor based
21074 on window-system.
21075
21076 * frame.el (blink-cursor): Default to nil if not running under
21077 a window-system.
21078
21079 * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
21080 (face-x-resources): Remove duplicate entry for :font.
21081
21082 * textmodes/refer.el (refer-find-entry-internal): Use some-window
21083 instead of cycling through windows with next-window.
21084
21085 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
21086 of cycling through windows with next-window.
21087
21088 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
21089 of cycling through windows with next-window.
21090
21091 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
21092 (edebug-get-displayed-buffer-points): Use walk-windows/some-window
21093 instead of cycling through windows with next-window.
21094
21095 * calendar/appt.el (appt-select-lowest-window): Use walk-windows
21096 instead of cycling through windows with next-window.
21097
21098 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
21099 of cycling through windows with next-window.
21100
21101 * terminal.el (te-process-output): Use walk-windows instead of
21102 cycling through windows with next-window.
21103
21104 * server.el (server-switch-buffer): Use some-window instead of
21105 cycling through windows with next-window.
21106
21107 * window.el (some-window): New function.
21108 (walk-windows): Remove reference to walk-windows-start.
21109
21110 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
21111
21112 2000-07-03 Richard Stallman <rms@gnu.org>
21113
21114 * window.el (walk-windows): Guarantee termination by keeping a list
21115 of all the windows already handled.
21116
21117 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
21118
21119 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
21120 window-system.
21121
21122 * man.el (Man-notify-when-ready): Don't use window-system. If
21123 Man-notify-method is newframe, and the display is not
21124 multi-frame, select the frame created for the man page.
21125 (Man-init-defvars): Doc fix.
21126
21127 2000-06-28 Gerd Moellmann <gerd@gnu.org>
21128
21129 * faces.el (region): Change background color for light background.
21130
21131 * ediff-wind.el (ediff-setup-control-frame): Remove :box
21132 attribute from mode-line face of Ediff control frame.
21133
21134 * replace.el (query-replace-map): Bind `e' like `E'.
21135
21136 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
21137
21138 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
21139 Change name to "Select All".
21140
21141 * dos-fns.el (convert-standard-filename): Fix last change.
21142
21143 2000-06-27 Gerd Moellmann <gerd@gnu.org>
21144
21145 * help.el (describe-variable): Don't insert a second `'s' in front
21146 of the string `value is shown below'. Since the syntax-table is
21147 set to emacs-lisp-mode-syntax-table, forward-sexp skips over
21148 an existing `'s', so that this won't be deleted.
21149
21150 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
21151 * pcmpl-unix.el: New files.
21152
21153 2000-06-26 Stefan Monnier <monnier@cs.yale.edu>
21154
21155 * wid-edit.el (widget-member): Use the new plist-member.
21156
21157 2000-06-26 Gerd Moellmann <gerd@gnu.org>
21158
21159 * replace.el (perform-replace): Undo change of 2000-04-04.
21160 Instead, move backward 1 character at the end of the loop when
21161 necessary.
21162
21163 * faces.el (fringe): Change face for different backgrounds.
21164
21165 * eshell/esh-module.el (toplevel): Load defgroup's differently;
21166 patch from John.
21167
21168 * eshell/*.el: Change spelling of the Free Software Foundation.
21169
21170 * eshell/esh-toggle.el: Removed.
21171
21172 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
21173
21174 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
21175 interactively.
21176
21177 2000-06-26 Alex Schroeder <alex@gnu.org>
21178
21179 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
21180 `define-key'; instead of checking `(emacs-version)' check for
21181 `set-keymap-parent' and `set-keymap-name' directly. Add entries
21182 for `;' and `o' which might be electric.
21183
21184 (sql-electric-stuff): New user option.
21185 (sql-magic-go): New function which uses `sql-electric-stuff'.
21186 (sql-magic-semicolon): New function which uses
21187 `sql-electric-stuff'.
21188
21189 (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
21190 is not fboundp.
21191
21192 (sql-oracle-options): New variable.
21193 (sql-oracle): Use it.
21194
21195 (sql-imenu-generic-expression): Doc change.
21196 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
21197 is used.
21198
21199 (sql-informix): Added command line parameter "-" to force
21200 sql-informix-program to use stdout.
21201
21202 2000-06-25 Eli Zaretskii <eliz@is.elta.co.il>
21203
21204 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
21205 (cp864-decode-table): Doc fix.
21206 (cp720-decode-table): New variable, supports the Arabic OEM
21207 codepage used by Windows.
21208 (cp737-decode-table): New, Greek OEM codepage used by Windows.
21209
21210 2000-06-23 Dave Love <fx@gnu.org>
21211
21212 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
21213 (font-lock-fontify-anchored-keywords): Use
21214 line-beginning-position.
21215 (global-font-lock-mode): Use mapc.
21216
21217 2000-06-23 Stefan Monnier <monnier@cs.yale.edu>
21218
21219 * eshell/esh-module.el: Require CL when compiling.
21220
21221 2000-06-23 Gerd Moellmann <gerd@gnu.org>
21222
21223 * comint.el (comint-substitute-in-file-name): Call replace-match
21224 with second and third arg t.
21225
21226 * cus-edit.el (custom-button-face, custom-button-pressed-face):
21227 Specify foreground color.
21228
21229 * faces.el (tool-bar, mode-line, header-line): Specify foreground
21230 color.
21231
21232 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
21233
21234 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
21235 cddr instead of cdddr.
21236
21237 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
21238 instead of copy-list.
21239
21240 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
21241 of copy-list.
21242
21243 * subdirs.el: Add eshell subdirectory.
21244
21245 * eshell: New subdirectory containing the Eshell package.
21246
21247 * pcomplete.el: New file.
21248
21249 2000-06-23 Paul Eggert <eggert@twinsun.com>
21250
21251 * mail/mailpost.el (post-mail-send-it): Make sure file has
21252 proper permissions from birth.
21253
21254 * files.el (basic-save-buffer-2): When temporarily setting
21255 file modes, set them to current modes plus 0200, not to 0777.
21256
21257 * emerge.el (emerge-make-temp-file): Make sure file has proper
21258 permissions from birth.
21259
21260 2000-06-22 Eli Zaretskii <eliz@is.elta.co.il>
21261
21262 * files.el (make-backup-file-name-1): On DOS/Windows, run the
21263 backup file name through convert-standard-filename.
21264
21265 * dos-fns.el (convert-standard-filename): Convert leading
21266 directories as well. When long file names are supported, convert
21267 characters that are invalid in Windows file names.
21268
21269 2000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
21270
21271 * ps-print.el: Fix bug: if ^L is the very first buffer character,
21272 ps-print crashes. New feature: page selection for printing. Create
21273 raw-text-unix coding system for XEmacs. Doc fix.
21274 (ps-print-version): New version number (5.2.3).
21275 (ps-plot-region): Bug fix.
21276 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
21277 (ps-header-sheet, ps-generate, ps-end-job): Code fix.
21278 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
21279 funs.
21280 (ps-selected-pages, ps-last-selected-pages, ps-first-page)
21281 (ps-last-page): New vars.
21282
21283 2000-06-21 Gerd Moellmann <gerd@gnu.org>
21284
21285 * progmodes/sh-script.el (sh-while-getopts): Fix handling of
21286 empty option string.
21287
21288 2000-06-21 Eli Zaretskii <eliz@is.elta.co.il>
21289
21290 * man.el (man): Doc fix.
21291
21292 2000-06-21 Kenichi Handa <handa@etl.go.jp>
21293
21294 * international/mule-cmds.el (set-language-info-alist): Docstring
21295 fixed.
21296
21297 2000-06-20 Gerd Moellmann <gerd@gnu.org>
21298
21299 * version.el (emacs-version): Use ISO date format.
21300
21301 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
21302 instead of `M-backspace'.
21303
21304 * simple.el (turn-off-auto-fill): New function.
21305
21306 2000-06-20 Stefan Monnier <monnier@cs.yale.edu>
21307
21308 * jit-lock.el (with-buffer-prepared-for-jit-lock):
21309 Renamed from with-buffer-prepared-for-font-lock and use
21310 inhibit-modification-hooks rather than setting *-change-functions.
21311 Update all functions to use the new name.
21312 (jit-lock-first-unfontify-pos): New semantics (and doc).
21313 (jit-lock-mode): Make non-interactive.
21314 Don't automatically turn on font-lock.
21315 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
21316 Always use jit-lock-after-change.
21317 Remove and restore font-lock-after-change-function.
21318 (turn-on-jit-lock, jit-lock-after-fontify-buffer)
21319 (jit-lock-after-unfontify-buffer): Remove.
21320 (jit-lock-stealth-fontify):
21321 Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
21322 (jit-lock-after-change): Set the `fontified' text-prop to nil.
21323
21324 2000-06-20 Sam Steingold <sds@gnu.org>
21325
21326 * emacs-lisp/cl-indent.el (toplevel): Indent
21327 `print-unreadable-object' properly. Untabify.
21328
21329 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
21330
21331 * textmodes/reftex.el (reftex-find-citation-regexp-format):
21332 Support for bibentry.
21333 (reftex-compile-variables): Fixed problem with end of section-re.
21334
21335 * texmodes/reftex-dcr.el (reftex-view-crossref,
21336 reftex-view-crossref-from-bibtex):
21337 Deal with changed `reftex-find-citation-regexp-format'.
21338 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
21339 Replaced `remprop' with `put'.
21340 (reftex-view-crossref, reftex-view-crossref-when-idle):
21341 Support for bibentry.
21342
21343 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
21344 New entry for bibentry package.
21345
21346 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
21347 Regexp also matches "\nobibliography".
21348
21349 * textmodes/reftex-global.el (reftex-renumber-simple-labels):
21350 Call `reftex-ensure-write-access' before doing anything.
21351 (reftex-ensure-write-access): New function.
21352
21353 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
21354
21355 * progmodes/idlwave.el: File re-installed (update to version 4.2)
21356
21357 * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
21358
21359 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
21360
21361 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
21362
21363
21364 2000-06-20 Dave Love <fx@gnu.org>
21365
21366 * faces.el (frame-background-mode): Use set-default, not set, in
21367 setter.
21368 (frame-update-faces, frame-update-face-colors): Define with
21369 defalias.
21370
21371 * enriched.el (enriched-decode-foreground)
21372 (enriched-decode-background): Don't use internal-find-face.
21373
21374 * apropos.el: Doc fixes.
21375
21376 * cus-edit.el (customize-changed-options): Check arg.
21377 (customize-version-lessp): Don't require decimal point.
21378
21379 * custom.el (defcustom, defgroup): Doc fix.
21380
21381 * newcomment.el (comment) <defgroup>: Add :version.
21382 (comment-multi-line): Doc fix.
21383
21384 * emulation/mlsupport.el (define-hooked-local-abbrev,
21385 define-hooked-global-abbrev): Fix, using define-abbrev.
21386
21387 2000-06-19 Gerd Moellmann <gerd@gnu.org>
21388
21389 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
21390 the whole buffer.
21391
21392 2000-06-19 Dave Love <fx@gnu.org>
21393
21394 * menu-bar.el (menu-bar-options-save): New function.
21395 (menu-bar-options-menu): Use it.
21396 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
21397 Simplify.
21398
21399 2000-06-19 Andreas Schwab <schwab@suse.de>
21400
21401 * progmodes/etags.el (tags-query-replace): Put new parameters
21402 START and END at the end, for backward compatibility.
21403
21404 2000-06-19 Kenichi Handa <handa@etl.go.jp>
21405
21406 * international/codepage.el:
21407 (cp-coding-system-for-codepage-1): Delete special codes for
21408 generating xxx-dos coding system because now a CCL based coding
21409 system can handle EOL conversion by default.
21410
21411 * international/mule.el (make-coding-system): Generate subsidiary
21412 coding systems for EOL handling variants even for a CCL based
21413 coding system.
21414
21415 2000-06-19 Kenichi Handa <handa@etl.go.jp>
21416
21417 * international/isearch-x.el (isearch-minibuffer-input-method)
21418 (isearch-minibuffer-input-method-function): These variables
21419 deleted.
21420 (isearch-with-input-method): Don't use the above variables.
21421 (isearch-process-search-multibyte-characters): Likewise. Call
21422 read-string with the arg INHERIT-INPUT-METHOD t.
21423
21424 2000-06-17 Stefan Monnier <monnier@cs.yale.edu>
21425
21426 * font-lock.el (font-lock-after-fontify-buffer)
21427 (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
21428
21429 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
21430 Use consistent make-local-variable style for font-lock-fontified.
21431 (jit-lock-fontify-buffer):
21432 Don't bother checking for font-lock-mode and jit-lock-mode.
21433
21434 * time.el: Remove trailing ^M that prevent CVS-merging.
21435
21436 2000-06-16 Gerd Moellmann <gerd@gnu.org>
21437
21438 * Makefile.in (distclean): New target.
21439
21440 2000-06-16 Stefan Monnier <monnier@cs.yale.edu>
21441
21442 * Makefile.in (srcdir): Define for update-subdirs.
21443
21444 2000-06-16 Gerd Moellmann <gerd@gnu.org>
21445
21446 * find-lisp.el: New file.
21447
21448 2000-06-16 Andrew Innes <andrewi@gnu.org>
21449
21450 * time.el (display-time-mail-function): New variable, to allow
21451 external packages to indicate when new mail is available.
21452 (display-time-update): Use it.
21453
21454 2000-06-16 Kenichi Handa <handa@etl.go.jp>
21455
21456 * international/mule.el (mule-version): Change version name to
21457 SAKAKI. AOI has already been used by Meadow.
21458
21459 * international/quail.el (quail-show-guidance-buf): To find the
21460 bottom window (but minibuffer), pay attention to the height of
21461 minibuffer.
21462
21463 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
21464
21465 * arc-mode.el (archive-mode-map): Use the new menu-item format for
21466 menu-bar menus. Add help strings. Don't remove the Edit menu
21467 from the menu bar, as the menu bar has enough space now.
21468
21469 * Makefile.in (SHELL): Make sure /bin/sh is used.
21470
21471 * woman.el (woman-man-buffer): Fix bold and underlined CJK
21472 characters, which use series of two ^H characters instead of one.
21473
21474 2000-06-15 Gerd Moellmann <gerd@gnu.org>
21475
21476 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
21477 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
21478 functions.
21479 (Info-find-node-2): Try a case-sensitive search first, then
21480 do a case-insensitive search.
21481
21482 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
21483 tutorials.
21484
21485 * complete.el (PC-env-vars-alist): New variable.
21486 (PC-complete-as-file-name): New function.
21487 (partial-completion-mode): Initialize PC-env-vars-alist from
21488 process-environment.
21489 (PC-do-completion): Handle completion of env vars.
21490
21491 * info.el (Info-set-mode-line): Show file name in mode line,
21492 use `*Info*' instead of `Info:'.
21493
21494 * startup.el (command-line-1): Change copyright messages to year
21495 2000.
21496
21497 2000-06-15 Dave Love <fx@gnu.org>
21498
21499 * net/goto-addr.el (goto-address-fontify): Use keymap property,
21500 not local-map.
21501
21502 2000-06-15 Kenichi Handa <handa@etl.go.jp>
21503
21504 * international/mule.el (set-buffer-file-coding-system): Almost
21505 rewritten to handle `undecided' as no-op.
21506
21507 2000-06-14 Gerd Moellmann <gerd@gnu.org>
21508
21509 * Makefile.in: New file.
21510
21511 * Makefile: Removed.
21512
21513 * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
21514 (goto-address-highlight-keymap): Bind C-c RET.
21515
21516 2000-06-14 Kenichi Handa <handa@etl.go.jp>
21517
21518 * mail/sendmail.el (sendmail-send-it): The temporary buffer
21519 inherits buffer-file-coding-system of the current buffer.
21520
21521 * tar-mode.el (tar-extract): For goto-char, use (point-min), not
21522 0. Give correct argument to set-auto-coding-function.
21523 (tar-expunge): For goto-char, use (point-min), not 0.
21524 (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
21525 (tar-subfile-save-buffer): Likewize.
21526
21527 * international/mule.el
21528 (after-insert-file-set-buffer-file-coding-system): Call
21529 set-buffer-file-coding-system with the arg FORCE t.
21530
21531 2000-06-13 Gerd Moellmann <gerd@gnu.org>
21532
21533 * mail/sendmail.el (mail-specify-envelope-from): Initialize to
21534 nil. Contemporary sendmails issue an X-Authentication-Warning if
21535 the sender is set with `-f'.
21536
21537 2000-06-13 Dave Love <fx@gnu.org>
21538
21539 * help.el (describe-function-1): Kluge around cases of functions
21540 fset to subrs whose doc doesn't match their symbol-name.
21541
21542 * image.el (insert-image): Default STRING to a space.
21543
21544 * info.el Doc fixes.
21545 (Info-build-node-completions): Match Ref tags.
21546
21547 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
21548
21549 * frame.el (display-multi-frame-p, display-multi-font-p): New
21550 defaliases for display-graphic-p.
21551
21552 * hl-line.el: Fixed a typo in commentary.
21553
21554 2000-06-13 Kenichi Handa <handa@etl.go.jp>
21555
21556 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
21557 fixed.
21558
21559 2000-06-12 Dave Love <fx@gnu.org>
21560
21561 * image.el (insert-image): Save a little consing.
21562
21563 2000-06-12 Kenichi Handa <handa@etl.go.jp>
21564
21565 * language/tibet-util.el: Convert all tibetan-1-column characters
21566 to the corresponding tibetan characters.
21567 (tibetan-add-components): Delete code for the special treatment of
21568 'a chung.
21569
21570 * language/tibetan.el (tibetan-composable-pattern): Fix previous
21571 change.
21572 (tibetan-vowel-transcription-alist): More rules added.
21573 (tibetan-composite-vowel-alist): New variable.
21574 (tibetan-precomposition-rule-alist): More rules added.
21575
21576 2000-06-12 Stefan Monnier <monnier@cs.yale.edu>
21577
21578 * startup.el (command-line): Only call menu-bar-mode if interactive.
21579
21580 * thingatpt.el (toplevel symbol-properties):
21581 * textmodes/makeinfo.el (makeinfo-compile):
21582 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
21583 * progmodes/hideif.el (hif-compress-define-list)
21584 (hide-ifdef-use-define-alist):
21585 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
21586 (ange-ftp-vms-add-file-entry):
21587 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
21588 * man.el (Man-build-man-command):
21589 * mail/rnewspost.el (news-reply-header-hook):
21590 * info.el (Info-insert-dir):
21591 * emulation/mlconvert.el (backward-word, forward-word, setq):
21592 * emacs-lisp/gulp.el (gulp-send-requests):
21593 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
21594 (byte-optimize-inline-handler, byte-optimize-form-code-walker)
21595 (byte-optimize-apply, end of file):
21596 * emacs-lisp/advice.el (ad-advice-class-completion-table)
21597 (ad-make-freeze-definition):
21598 * startup.el (command-line, command-line-1): Don't quote lambdas.
21599
21600 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
21601 (cvs-cleanup-removed): New function.
21602 (cvs-cleanup-functions): New var.
21603 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
21604 some flexibility in specifying additional entries to auto-cleanup.
21605 (cvs-quickdir): New function.
21606 (cvs-mode-insert): Use cvs-fileinfo-from-entries.
21607 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
21608 (cvs-mode-find-file): Check that we are on a filename or dirname
21609 when invoked through a mouse-click.
21610 (cvs-full-path): Remove.
21611 (cvs-dired-action): Re-introduced.
21612 (cvs-dired-noselect): Use it.
21613 (vc-post-command-functions): use this new hook if available.
21614
21615 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
21616 (cvs-status-map): Don't inherit from cvs-mode-map anymore.
21617 (cvs-filename-map, cvs-dirname-map): Remove.
21618 (cvs-default-action): Remove.
21619 (cvs-add-face): Use `keymap' rather than `local-map' property, and only
21620 if the arg is really a keymap.
21621 (cvs-fileinfo-pp): Don't use any special map for file and dir names.
21622 Don't hardcode the mapping from state (aka type) to face, but check
21623 the var cvs-fi-<type>-face instead.
21624 (cvs-fileinfo-from-entries): New function.
21625
21626 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
21627 Docstring fix.
21628 (cvs-find-file-and-jump): Change default to be safer.
21629 (cvs-mode-diff-map): Define it as a function as well.
21630 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
21631 Bind mouse-2 in this global map rather than with text-properties.
21632
21633 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
21634 file to resolve the ambiguity between C(conflict) and C(need-merge).
21635
21636 2000-06-12 Kenichi Handa <handa@etl.go.jp>
21637
21638 * international/mule.el (set-buffer-file-coding-system): If
21639 CODING-SYSTEM is nil, set buffer-file-coding-system to nil
21640 unconditionally.
21641
21642 2000-06-12 Dave Love <fx@gnu.org>
21643
21644 * wid-edit.el (widget-specify-button): Really suppress the face if
21645 required.
21646
21647 2000-06-11 Gerd Moellmann <gerd@gnu.org>
21648
21649 * term/x-win.el (x-colors): Add colors from recent rgb.txt.
21650
21651 2000-06-11 Stefan Monnier <monnier@cs.yale.edu>
21652
21653 * imenu.el (imenu-generic-expression): Docstring fix.
21654
21655 * composite.el (composition-function-table): Move the `put'
21656 below the autoload cookie so we can load the file before loaddefs.
21657
21658 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
21659
21660 * emacs-lisp/autoload.el (make-autoload): Use `cond'.
21661 Handle easy-mmode-define-global-mode.
21662 For complex macros like define-minor-mode that can generate
21663 several autoload entries, try to autoload entries in the
21664 macroexpanded code.
21665
21666 * emacs-lisp/easy-mmode.el (define-minor-mode):
21667 If KEYMAP is a symbol, just use it.
21668 Use byte-compile-current-file and load-file-name to infer the
21669 proper :require to pass to defcustom.
21670 Wrap the hook var into `progn' so as not to autoload it.
21671 Add a :autoload-end cookie.
21672 Be more careful about the evaluation of KEYMAP.
21673 (easy-mmode-define-global-mode): Add a :autoload-end cookie.
21674 (define-derived-mode): Move define-abbrev-table outside of defvar.
21675
21676 2000-06-10 Stefan Monnier <monnier@cs.yale.edu>
21677
21678 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
21679 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
21680 (backup-compiled-files): Ignore errors during `tar'.
21681 (bootstrap): Make autoloads before elc files.
21682
21683 2000-06-10 Kenichi Handa <handa@etl.go.jp>
21684
21685 * international/mule.el (set-buffer-file-coding-system): If one of
21686 undecided-XXX is specified, change only EOL conversion.
21687
21688 * international/mule-conf.el (unix): New alias for the coding
21689 system undecided-unix.
21690
21691 2000-06-09 Dave Love <fx@gnu.org>
21692
21693 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
21694
21695 * progmodes/executable.el: Byte compile dynamic.
21696 (executable-insert): Change custom type.
21697 (executable-find): Add autoload cookie.
21698 (executable-make-buffer-file-executable-if-script-p): New
21699 function. After Noah Friedman.
21700
21701 * files.el (after-save-hook): Customize, with
21702 executable-make-buffer-file-executable-if-script-p as an option.
21703
21704 2000-06-09 Kenichi Handa <handa@etl.go.jp>
21705
21706 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
21707 "tib24p-mule.bdf" for Tibetan.
21708
21709 * composite.el (decompose-composite-char): Declare it as obsolete.
21710
21711 * man.el (Man-fontify-manpage): Pay attention to underline and
21712 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
21713
21714 2000-06-08 Gerd Moellmann <gerd@gnu.org>
21715
21716 * thingatpt.el (forward-thing): Use functionp instead of fboundp.
21717 Set maintainer to FSF since author isn't reachable.
21718
21719 2000-06-08 Dave Love <fx@gnu.org>
21720
21721 * international/mule-cmds.el (select-safe-coding-system): If
21722 DEFAULT-CODING-SYSTEM is not specified, also check the most
21723 preferred coding-system if buffer-file-coding-system is
21724 `undecided'. From Handa.
21725
21726 2000-06-08 Kenichi Handa <handa@etl.go.jp>
21727
21728 * international/mule.el
21729 (after-insert-file-set-buffer-file-coding-system): If the buffer
21730 size is greater than INSERTED, judget that we are not visiting.
21731
21732 2000-06-07 Rajesh Vaidheeswarran <rv@gnu.org>
21733
21734 * whitespace.el (defgroup whitespace): Comment out `:version'.
21735 XEmacs 20.4 has problems defining the group with this present.
21736 We'll have this commented out till get resolve the problem.
21737
21738 2000-06-07 John Wiegley <johnw@gnu.org>
21739
21740 * align.el (align-dq-string-modes, align-sq-string-modes)
21741 (align-open-comment-modes): Add pyhton-mode.
21742 (align-rules-list): Use get-text-property instead of
21743 text-properties-at.
21744 (align-rules-list): Add python-assignment.
21745 (align-rules-list): Change perl-comma-delimiter to
21746 basic-comma-delimiter. Use if for Perl modes and python-mode.
21747 (align-rules-list): Add python-chain-logic and
21748 basic-line-continuation.
21749
21750 2000-06-07 Jari Aalto <jari.aalto@poboxes.com>
21751
21752 * apropos.el (apropos-mode-hook): New user variable.
21753 (apropos-mode): Run apropos-mode-hook.
21754
21755 2000-06-07 David Ponce <david@dponce.com>
21756
21757 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
21758 commands. Require `wid-edit' at run-time.
21759
21760 2000-06-07 David Ponce <david@dponce.com>
21761
21762 * recentf.el: Added some "Commentary".
21763 (recentf-open-more-files, recentf-edit-list): Minor changes to
21764 move the point at the top of the file list. This behaviour is
21765 consistent with the menu one when the list contains a lot of
21766 files.
21767 (recentf-cleanup): Now displays the number of items removed from
21768 the list.
21769 (recentf-relative-filter) New menu filter to show filenames
21770 relative to `default-directory'.
21771
21772 2000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
21773
21774 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size
21775 with/without giving an error if PostScript printer doesn't have this
21776 kind of page size. Zebra Stripe continues or restarts on next page.
21777 Manual/automatic paper feeding. Switch or not the header.
21778 (ps-print-version): New version number (5.2.2).
21779 (ps-windows-system): Include emx as a Windows system.
21780 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
21781 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
21782 (ps-background-text): Code fix.
21783 (ps-error-handler-message, ps-user-defined-prologue)
21784 (ps-print-prologue-header, ps-printer-name)
21785 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
21786 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
21787 (ps-use-face-background): Customization fix.
21788 (ps-n-up-database): Data fix.
21789 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
21790 (ps-switch-header): New vars.
21791 (ps-xemacs-color-name, ps-face-foreground-name)
21792 (ps-face-background-name, ps-boolean-constant): New funs.
21793
21794 2000-06-07 Dave Love <fx@gnu.org>
21795
21796 * allout.el: New version from Manheimer.
21797
21798 2000-06-07 Kenichi Handa <handa@etl.go.jp>
21799
21800 * textmodes/fill.el (fill-find-break-point): Check the validity of
21801 charset.
21802
21803 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
21804
21805 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
21806 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
21807 Call display-color-p and display-mouse-p instead of looking at
21808 window-system.
21809
21810 2000-06-06 Dave Love <fx@gnu.org>
21811
21812 * image.el (find-image): Doc fix. Return nil if image not found.
21813 (put-image, insert-image): Make STRING arg optional.
21814
21815 2000-06-06 Kenichi Handa <handa@etl.go.jp>
21816
21817 * language/vietnamese.el: Remove eval-when-compile.
21818 (viet-viscii-nonascii-translation-table): Define it as a
21819 translation table made from viet-viscii-decode-table.
21820 (viet-viscii-encode-table): Define it as a translation table made
21821 from the reverse map of above.
21822 (viet-vscii-nonascii-translation-table): Define it as a
21823 translation table made from viet-vscii-decode-table.
21824 (viet-vscii-encode-table): Define it as a translation table made
21825 from the reverse map of above.
21826 (ccl-decode-viscii): Use translate-character.
21827 (ccl-encode-viscii, ccl-encode-viscii-font)
21828 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
21829 Likewize.
21830
21831 * language/cyrillic.el: Remove eval-when-compile.
21832 (cyrillic-koi8-r-nonascii-translation-table): Define it as a
21833 translation table made from cyrillic-koi8-r-decode-table.
21834 (cyrillic-koi8-r-encode-table): Define it as a translation table
21835 made from the reverse map of above.
21836 (ccl-decode-koi8): Use translate-character.
21837 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
21838 (cyrillic-alternativnyj-nonascii-translation-table): Define it as
21839 a translation table made from cyrillic-alternativnyj-decode-table.
21840 (cyrillic-alternativnyj-encode-table): Define it as a translation
21841 table made from the reverse map of above.
21842 (ccl-decode-alternativnyj): Use translate-character.
21843 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
21844 Likewize
21845
21846 * international/mule-diag.el (non-iso-charset-alist): Specify
21847 translation table symbol instead of translation table itself.
21848 (list-block-of-chars): CHARSET may be a translation table symbol.
21849
21850 * international/mule.el (make-coding-system): If CODING-SYSTEM
21851 already exists, override it.
21852
21853 * international/fontset.el: Use family `proportional' for Tibetan
21854 fonts.
21855
21856 * international/ccl.el (ccl-compile-translate-character): Don't
21857 check if Rrr has property translation-table.
21858 (ccl-compile-map-multiple): Modified to avoid compiler warning.
21859
21860 2000-06-05 Gerd Moellmann <gerd@gnu.org>
21861
21862 * info.el: Bind case-fold-search to t when searching in case
21863 a user sets it to nil in a hook.
21864
21865 2000-06-05 Stefan Monnier <monnier@cs.yale.edu>
21866
21867 * autoarg.el (autoarg-mode, autoarg-kp-mode):
21868 * hl-line.el (hl-line-mode): Use the new :global key argument.
21869
21870 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
21871 (tar-clip-time-string): Prepend a space.
21872 (tar-grind-file-mode): Construct a string rather than modifying one.
21873 (tar-header-block-summarize): Fix docstring.
21874 Use `format' rather than an error-prone set of copy-loops.
21875
21876 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
21877 (diff-goto-source, diff-unified->context, diff-context->unified)
21878 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
21879 understand the format output by the `-p' argument to diff.
21880
21881 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
21882 (sh-re-done): Use defconst.
21883 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
21884 (sh-help-string-for-variable, sh-guess-basic-offset):
21885 Don't quote lambdas.
21886 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
21887 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
21888
21889 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
21890 (mh-letter-mode): Derive from text-mode.
21891 This implicitly means that it now calls kill-all-local-variables.
21892 Also remove the Emacs-18 compatibility code.
21893
21894 * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
21895 Make use of symbol-property doc-string-elt.
21896 Use memq rather than a sequence of eq.
21897 (doc-string-elt): Fix the wrong or missing previously unused values.
21898 (autoload-print-form): New function extracted from
21899 generate-file-autoloads to allow recursion when handling progn
21900 so that defvar's and defun's docstrings are properly printed.
21901 (generate-file-autoloads): Use it.
21902
21903 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
21904 Use find-file-hooks in the minor-mode function.
21905 Be careful not to loop indefinitely in the post-command-hook function.
21906
21907 2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
21908
21909 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
21910 tty's.
21911 * ediff-diff.el (ediff-exec-process): Use --binary for fine
21912 differences whenever appropriate.
21913 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
21914 * viper.el (find-file, find-file-other-window): Get viper to do
21915 wildcards.
21916
21917 2000-06-04 Stefan Monnier <monnier@cs.yale.edu>
21918
21919 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
21920 (jit-lock-fontify-buffer): New function for JIT refontification.
21921 (jit-lock-mode): Fix docstring.
21922 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
21923 Remove jit-lock-after-change from the _local_ hook.
21924 (jit-lock-function-1): Fix docstring.
21925
21926 * info.el (Info-on-current-buffer): Initialize info.
21927
21928 * newcomment.el (comment-indent): Ignore comment-indent-hook.
21929
21930 * progmodes/tcl.el (tcl-indent-for-comment):
21931 Ignore comment-indent-hook.
21932
21933 * emacs-lisp/easy-mmode.el: Require CL during compilation.
21934 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
21935 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
21936 and improve to use the lighter to guess the capitalization.
21937 (define-minor-mode): Inline code from easy-mmode-define-toggle.
21938 Add keyword arguments to specify global-ness or the custom group.
21939 Add local-map and help-echo properties to the lighter.
21940 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
21941 (easy-mmode-define-global-mode): New macro.
21942
21943 2000-06-02 Dave Love <fx@gnu.org>
21944
21945 * wid-edit.el: byte-compile-dynamic since we typically don't use
21946 all the widgets. Don't require cl or widget. Remove
21947 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
21948 (widget-read-event): Removed. Callers changed to use read-event.
21949 (widget-button-release-event-p): Renamed from
21950 button-release-event-p.
21951 (widget-field-add-space, widget-field-use-before-change):
21952 Uncustomize.
21953 (widget-specify-field): Use keymap property, not local-map.
21954 (widget-specify-button): Obey :suppress-face.
21955 (widget-specify-insert): Use modern backquote syntax.
21956 (widget-image-directory): Renamed from widget-glyph-directory.
21957 (widget-image-enable): Renamed from widget-glyph-enable.
21958 (widget-image-find): Replaces widget-glyph-find.
21959 (widget-button-pressed-face): Move defvar.
21960 (widget-image-insert): Replaces widget-glyph-insert.
21961 (widget-convert): Use keywordp.
21962 (widget-leave-text, widget-children-value-delete): Use mapc.
21963 (widget-keymap): Remove XEmacs stuff.
21964 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
21965 (widget-button-click): Don't set point at the click, but re-centre
21966 if we scroll out of window. Rewritten for images v. glyphs &c.
21967 (widget-tabable-at): Use POS arg, not point.
21968 (widget-beginning-of-line, widget-end-of-line)
21969 (widget-item-value-create, widget-sublist, widget-princ-to-string)
21970 (widget-sexp-prompt-value, widget-echo-help): Simplify.
21971 (widget-default-create): Use widget-image-insert; some rewriting.
21972 (widget-visibility-value-create)
21973 (widget-push-button-value-create, widget-toggle-value-create): Use
21974 widget-image-insert.
21975 (checkbox): Create on and off images dynamically.
21976 (documentation-link): Change :help-echo.
21977 (widget-documentation-link-echo-help): Remove.
21978
21979 2000-06-02 Stefan Monnier <monnier@cs.yale.edu>
21980
21981 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
21982
21983 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
21984 (easy-mmode-define-toggle, define-minor-mode): Use it.
21985 (easy-mmode-define-keymap): Docstring fix.
21986 (define-derived-mode): Default PARENT to fundamental-mode.
21987 Add the derived-mode-parent symbol-property.
21988 (easy-mmode-derived-mode-p): New function.
21989
21990 2000-06-02 Dave Love <fx@gnu.org>
21991
21992 * files.el (convert-standard-filename): Doc fix.
21993 (normal-backup-enable-predicate): New function.
21994 (backup-enable-predicate): Use it to replace the lambda form.
21995
21996 * calendar/todo-mode.el: [This needs more work on the outline
21997 stuff.] Doc fixes.
21998 (todo) <defgroup>: Add :version.
21999 (todo-add-category): Don't use pushnew.
22000 (todo-cmd-raise): Fix typo.
22001 (todo-top-priorities): Change temp buffer name.
22002 (todo-category-alist): Avoid redundant lambda.
22003 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
22004 Use outline-next-heading.
22005
22006 * autoarg.el: Rewritten to use define-minor-mode.
22007 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
22008 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
22009
22010 2000-06-02 Kenichi Handa <handa@etl.go.jp>
22011
22012 * isearch.el (isearch-other-meta-char): Fix previous change.
22013
22014 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
22015
22016 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
22017 (log-edit-done): Only add the comment to the ring if it's different
22018 from the last comment entered.
22019
22020 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
22021
22022 2000-06-01 Dave Love <fx@gnu.org>
22023
22024 * hl-line.el: Rewritten using define-minor-mode.
22025
22026 * help.el (describe-function-1): Distinguish special form from
22027 builtin function. Sanity-check presence of arglist for builtins.
22028
22029 2000-06-01 Kenichi Handa <handa@etl.go.jp>
22030
22031 * international/characters.el: Fix syntax/category setting of
22032 Tibetan characters.
22033
22034 * language/tibet-util.el (tibetan-add-components): Fixes for new
22035 encoding of Tibetan characters.
22036 (tibetan-decompose-precomposition-alist): New variable.
22037 (tibetan-decompose-region): Convert precomposed characters to
22038 non-precomposed characters.
22039 (tibetan-decompose-string): Likewise.
22040 (tibetan-composition-function): Fix args to
22041 thibetan-compose-string.
22042
22043 * language/tibetan.el (tibetan-composable-pattern): More
22044 characters included.
22045 (tibetan-consonant-transcription-alist): Rule for "R" added.
22046 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
22047 "+R" added.
22048 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
22049
22050 * language/lao-util.el (lao-composition-function): Fix args to
22051 compose-string.
22052
22053 * language/thai-util.el (thai-composition-function): Fix args to
22054 compose-string.
22055
22056 * isearch.el (isearch-update): Set disable-point-adjustment to t
22057 to prevent the point moving to the end of a composition when a
22058 part of a composition is searched.
22059 (isearch-other-meta-char): If the key invoking this command can be
22060 mapped by function-key-map to a printing char, call
22061 isearch-process-search-char directly.
22062
22063 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
22064
22065 * emacs-lisp/bytecomp.el:
22066 * frame.el:
22067 * international/mule-cmds.el:
22068 * international/mule-util.el:
22069 * international/mule.el:
22070 * mouse.el:
22071 * subr.el:
22072 * faces.el: Update calls to make-obsolete with a WHEN argument.
22073
22074 * byte-run.el (make-obsolete, make-obsolete-variable):
22075 Add an optional WHEN argument and change the format of the
22076 symbol-property information.
22077 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
22078 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
22079 new obsolete-symbol-property format and print WHEN if it is provided.
22080
22081 2000-05-31 Dave Love <fx@gnu.org>
22082
22083 * loadhist.el (loadhist-hook-functions): Remove
22084 before-change-function, after-change-function.
22085 (unload-feature): Deal with symbols which are both bound and
22086 fbound.
22087
22088 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
22089 before-change-function, after-change-function.
22090
22091 * simple.el (newline): Don't bind before-change-function,
22092 after-change-function.
22093
22094 2000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
22095
22096 * whitespace.el (whitespace-rescan-timer-time): Update interval
22097 set to 600 seconds (10 minutes) instead of 60 seconds since
22098 a large number of whitespace buffers causes emacs to `freeze'
22099 for a considerable amount of time.
22100
22101 * whitespace.el: Updated email address
22102
22103 2000-05-31 Dave Love <fx@gnu.org>
22104
22105 * add-log.el (change-log-font-lock-keywords) <function>: Add
22106 pattern for function of change.
22107 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
22108 acknowledgements patterns.
22109
22110 2000-05-31 Kenichi Handa <handa@etl.go.jp>
22111
22112 * isearch.el (isearch-printing-char): If keyboard coding system is
22113 being used, call isearch-process-search-multibyte-characters.
22114
22115 * international/isearch-x.el: Mostly rewritten.
22116
22117 * international/quail.el (quail-start-conversion): Don't include
22118 unhandled events in the returned events, but set them in
22119 unread-command-events. Exit if all inputs are deleted.
22120
22121 2000-05-30 Jason Rumney <jasonr@gnu.org>
22122
22123 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
22124
22125 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
22126 Reenable code to create initial fontsets.
22127 Use set-fontset-font in place of put-charset-property.
22128
22129 2000-05-30 Gerd Moellmann <gerd@gnu.org>
22130
22131 * progmodes/perl-mode.el (perl-indent-line): When looking for a
22132 label, ensure that the first colon isn't followed by another.
22133
22134 * paths.el (Info-default-directory-list): Doc fix.
22135
22136 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
22137 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
22138 send a query containing USER only, not USER@HOST.
22139
22140 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
22141 and rmail-msgend to compute the restriction at the end, instead of
22142 computing it.
22143
22144 2000-05-29 Gerd Moellmann <gerd@gnu.org>
22145
22146 * dabbrev.el (dabbrev-expand): Don't display messages in the
22147 echo area if the minibuffer window is active.
22148
22149 * jit-lock.el (jit-lock-mode): Add after change function to
22150 local hook.
22151
22152 2000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
22153
22154 * antlr-mode.el: New commands: hide/unhide actions,
22155 upcase/downcase literals.
22156 (antlr-tiny-action-length): New user option.
22157 (antlr-hide-actions): New command. Suggested by
22158 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
22159 (antlr-mode-map): New binding [C-c C-v].
22160 (antlr-mode-menu): New entries.
22161 (antlr-downcase-literals): New command.
22162 (antlr-upcase-literals): Ditto.
22163
22164 * antlr-mode.el: Minor changes: indendation, mode-name.
22165 (antlr-indent-line): Indent cpp directive at column 0.
22166 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
22167
22168 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
22169 (antlr-font-lock-additional-keywords): Workaround for intentional
22170 bug in XEmacs version of font-lock.
22171 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
22172 be used by a smarter version of `buffers-menu-grouping-function'.
22173
22174 2000-05-29 Gerd Moellmann <gerd@gnu.org>
22175
22176 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
22177 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
22178
22179 2000-05-29 Kenichi Handa <handa@etl.go.jp>
22180
22181 * international/encoded-kb.el
22182 (encoded-kbd-iso2022-designation-map): Pay attention to that
22183 charset-iso-final-char return -1 for eight-bit-control and
22184 eight-bit-graphic.
22185
22186 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
22187
22188 * speedbar.el (speedbar-use-images, speedbar-update-flag)
22189 (speedbar-easymenu-definition-base): Use display-graphic-p where
22190 available, instead of window-system.
22191
22192 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
22193
22194 * international/codepage.el (cp-coding-system-for-codepage-1): Add
22195 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
22196 coding systems.
22197
22198 2000-05-26 Dave Love <fx@gnu.org>
22199
22200 * disp-table.el (standard-display-underline): Don't use
22201 internal-find-face.
22202
22203 * mail/reporter.el: Maintainer change. Doc fixes.
22204 (reporter-version): Deleted.
22205
22206 * emacs-lisp/elp.el: Maintainer change.
22207 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
22208
22209 2000-05-26 Stefan Monnier <monnier@cs.yale.edu>
22210
22211 * add-log.el (add-change-log-entry): Merge the current entry with the
22212 previous one if the previous one is empty.
22213
22214 2000-05-26 Dave Love <fx@gnu.org>
22215
22216 * loadhist.el (unload-feature): Fix interactive spec [from
22217 lijnzaad@ebi.ac.uk].
22218
22219 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
22220 subr-arity to check primitives.
22221 (byte-compile-flush-pending, byte-compile-file-form-progn)
22222 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
22223 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
22224 mapcar.
22225
22226 2000-05-26 Kenichi Handa <handa@etl.go.jp>
22227
22228 * international/fontset.el: Set family names of non-latin charsets
22229 in default fontset to "*".
22230
22231 * international/mule-diag.el (print-fontset): Combine family part
22232 and registry part of the fontname by "-*-" instead of "-".
22233
22234 * international/mule-cmds.el (encode-coding-char): Make strings
22235 multibyte before calling encode-coding-string.
22236
22237 2000-05-25 Stefan Monnier <monnier@cs.yale.edu>
22238
22239 * derived.el: Fix keywords.
22240 (define-derived-mode): Only define if needed.
22241
22242 * simple.el (fill-comment, comment-column, comment-start)
22243 (comment-start-skip, comment-end, comment-indent-function)
22244 (block-comment-start, block-comment-end, indent-for-comment)
22245 (set-comment-column, kill-comment, comment-padding, comment-region)
22246 (comment-multi-line, indent-new-comment-line): Remove.
22247
22248 * bindings.el (esc-map): Change ; to comment-dwim and use the new
22249 function names for comment operations.
22250
22251 * newcomment.el: Add abundant autoload cookies.
22252 (comment-style): Don't depend on runtime data at compile-time.
22253 (comment-indent-hook): Remove.
22254 (comment-indent): Check if comment-indent-hook is bound.
22255 (comment-region): Docstring fix.
22256
22257 2000-05-25 Dave Love <fx@gnu.org>
22258
22259 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
22260 byte-code-function-p.
22261
22262 * mail/rmailsum.el: Add provide.
22263
22264 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
22265
22266 * smerge-mode.el (smerge-diff-switches): Don't use list* in
22267 defcustom.
22268
22269 2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
22270
22271 * ediff-diff.el (ediff-exec-process): delete --binary option from
22272 non-buffer ediff jobs.
22273
22274 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
22275
22276 * hilit-chg.el (highlight-changes-mode): Ask about color or
22277 grayscale support, not about window-system.
22278
22279 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
22280 window-system.
22281 (ffap-highlight): Always default to t.
22282
22283 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
22284 display-popup-menus-p instead of looking at window-system.
22285
22286 * disp-table.el (standard-display-g1, standard-display-graphic):
22287 Only refuse to use string glyphs on X and MS-Windows.
22288
22289 * avoid.el: Remove window-system from commentary, suggest to use
22290 display-*-p instead.
22291
22292 * apropos.el (apropos-print): Use display-mouse-p instead of
22293 window-system.
22294
22295 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
22296
22297 * international/codepage.el (cp-decoding-vector-for-codepage):
22298 Fill up unsupported characters with their own codes. From Kenichi
22299 Handa.
22300
22301 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
22302
22303 * international/mule-diag.el (describe-char-after): Use
22304 display-graphic-p instead of window-system, so that this function
22305 works on MS-DOS.
22306
22307 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
22308
22309 * international/codepage.el (cp-make-coding-systems-for-codepage):
22310 Remove the eight-bit-graphic and eight-bit-control charsets from
22311 the list of charsets which we convert into `?'.
22312
22313 2000-05-25 Kenichi Handa <handa@etl.go.jp>
22314
22315 * international/mule-conf.el: Specify CHARSET-ID explicitely for
22316 private charsets.
22317 (mule-unicode-0100-24ff, japanese-jisx0213-1,
22318 japanese-jisx0213-2): New charsets.
22319
22320 * international/fontset.el: Setup default fontset for new charsets.
22321
22322 2000-05-24 Dave Love <fx@gnu.org>
22323
22324 * info.el (Info-find-node-2): Restructure [following "Vadim
22325 S. Solomin" <sovs@uic.nnov.ru>].
22326
22327 * icomplete.el: Fix header for Finder.
22328
22329 2000-05-24 Eric M. Ludlam <zappo@ultranet.com>
22330
22331 * rmailout.el (rmail-output-to-rmail-file): Added optional param
22332 STAY.
22333
22334 * rmail.el (rmail-automatic-folder-directives): New user variable.
22335 (rmail-show-message): Add call to `rmail-auto-file' during
22336 display.
22337 (rmail-auto-file): New function.
22338
22339 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
22340
22341 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
22342 account.
22343 (ediff-test-utility,ediff-diff-mandatory-option)
22344 (ediff-reset-diff-options): Utilities for proper initialization of
22345 ediff-diff-options and ediff-diff3-options on Windows.
22346
22347 * ediff-init.el (ediff-merge-filename-prefix): New customizable
22348 variable.
22349
22350 * ediff-mult.el (ediff-filegroup-action): Use
22351 ediff-merge-filename-prefix.
22352
22353 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
22354
22355 * viper-ex.el (ex-write): Set selective display to nil.
22356
22357 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
22358
22359 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
22360 aliases for hebrew-iso-8bit.
22361
22362 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
22363
22364 * woman.el: New version from Francis J. Wright
22365 <F.J.Wright@Maths.QMW.ac.uk>.
22366 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
22367 names in environment variables regardless of the path separator.
22368 (woman-topic-all-completions-1): Don't call file-name-directory-p
22369 on all files, since woman-file-regexp already filters out any
22370 directories.
22371
22372 2000-05-24 Kenichi Handa <handa@etl.go.jp>
22373
22374 * international/quail.el (quail-start-translation): Don't change
22375 modified-p of the current buffer.
22376 (quail-start-conversion): Likewise.
22377
22378 * international/kkc.el (kkc-region): Don't change modified-p of
22379 the current buffer.
22380
22381 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
22382 conform to RFC1468.
22383 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
22384
22385 2000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
22386
22387 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
22388 (speedbar-insert-button): Invisible text property fix.
22389 (speedbar-directory-plus): Renamed from speedbar-directory-+
22390 (speedbar-directory-minus): Renamed from speedbar-directory--
22391 (speedbar-page-plus): Renamed from speedbar-file-+
22392 (speedbar-page-minus): Renamed from speedbar-file--
22393 (speedbar-page): Renamed from speedbar-file-
22394 (speedbar-tag): Renamed from speedbar-tag-
22395 (speedbar-tag-plus): Renamed from speedbar-tag-+
22396 (speedbar-tag-minus): Renamed from speedbar-tag--
22397 (speedbar-expand-image-button-alist): Use above renames.
22398
22399 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
22400 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
22401 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
22402 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
22403 * sb-pg.xpm: Renamed from sb-file.xpm
22404 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
22405 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
22406
22407 2000-05-24 Kenichi Handa <handa@etl.go.jp>
22408
22409 * international/quail.el (quail-show-guidance-buf): Set
22410 current-input-method of the guidance buffer to the name of the
22411 curren input method.
22412
22413 2000-05-23 Stefan Monnier <monnier@cs.yale.edu>
22414
22415 * progmodes/compile.el (compile-internal): Style typo.
22416
22417 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
22418 quote vars and functions in the docstring.
22419
22420 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
22421
22422 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
22423 Don't quote lambdas.
22424
22425 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
22426
22427 2000-05-23 Gerd Moellmann <gerd@gnu.org>
22428
22429 * startup.el (command-line): Determine source file of compiled
22430 user init file differently. Warn if compiled user init file
22431 is older than its source file.
22432
22433 * ffap.el (ffap-url-regexp): Add `https'.
22434
22435 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
22436
22437 * files.el (make-backup-file-name-1): Replace slashes with `!'
22438 rather than `|' (which is not allowed on Windows). Replace the
22439 drive letters with a string "drive_X".
22440
22441 2000-05-23 Gerd Moellmann <gerd@gnu.org>
22442
22443 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
22444
22445 * files.el (interpreter-mode-alist): Add `bash2'.
22446
22447 2000-05-22 Dave Love <fx@gnu.org>
22448
22449 * loadhist.el (feature-symbols, file-provides, file-requires): Use
22450 mapc.
22451 (feature-file): Avoid calling symbol-name. Doc fix.
22452 (file-set-intersect, file-dependents): Use dolist, not mapcar.
22453 (loadhist-hook-functions): Add mouse-position-function.
22454 (unload-feature): Change uses of mapcar.
22455
22456 * files.el (parse-colon-path): Doc fix.
22457 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
22458 (set-auto-mode): Use mapc.
22459
22460 * complete.el (PC-look-for-include-file): Use :alnum: character
22461 class.
22462 (partial-completion-mode): Add autoload cookie.
22463
22464 2000-05-22 Sam Steingold <sds@gnu.org>
22465
22466 * info.el (Info-fontify-node): Fixed the call to
22467 `add-text-properties' (bug introduced on 2000-05-18).
22468
22469 2000-05-22 Dave Love <fx@gnu.org>
22470
22471 * bindings.el: Remove debug-ignored-errors set in other files.
22472
22473 * progmodes/etags.el: Add to debug-ignored-errors.
22474 (visit-tags-table-buffer): Clear out buffers holding old tables
22475 when making a new list.
22476 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
22477 mapc.
22478
22479 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
22480 quote keywords.
22481 (cmpl-string-case-type): Use character classes.
22482
22483 * comint.el:
22484 * textmodes/ispell.el:
22485 * imenu.el:
22486 * mail/mh-e.el:
22487 * progmodes/compile.el: Add to debug-ignored-errors.
22488
22489 * dabbrev.el: Add to debug-ignored-errors.
22490 (dabbrev-completion): Use mapc.
22491
22492 2000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
22493
22494 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
22495 (woman-mapcan, woman-parse-man.conf)
22496 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
22497 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
22498 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
22499 path syntax better.
22500 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
22501 (woman-manpath): Call woman-parse-man.conf.
22502 (woman-emulation): New defcustom, defaults to nroff.
22503 (woman-font-support): New defconst.
22504 (woman-use-symbol-font): New defcustom.
22505 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
22506 "Emulation".
22507 Many functions: Doc fix.
22508
22509 2000-05-22 Kenichi Handa <handa@etl.go.jp>
22510
22511 * international/quail.el (quail-simple-translation-keymap): Map
22512 128..255 to quail-self-insert-command.
22513 (quail-keyboard-layout-alist): Add definition for "pc102-de".
22514
22515 2000-05-22 Stefan Monnier <monnier@cs.yale.edu>
22516
22517 * help.el (help-manyarg-func-alist): Typo.
22518
22519 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
22520 intervals which makes it heaps simpler.
22521
22522 * newcomment.el (comment-region-internal): Go back to BEG after quoting
22523 the nested comment markers.
22524
22525 * subr.el (remove-hook): Don't turn the hook's value into a list.
22526
22527 2000-05-21 Dave Love <fx@gnu.org>
22528
22529 * edmacro.el (edmacro-parse-keys): Return vector if any elements
22530 are invalid characters.
22531
22532 * international/mule-util.el (detect-coding-with-priority): Use
22533 mapc. Remove redundant lambda.
22534
22535 * international/mule-diag.el (list-non-iso-charset-chars)
22536 (describe-fontset): Remove redundant lambda.
22537
22538 * emulation/crisp.el (brief-mode): New alias.
22539
22540 * emacs-lisp/ring.el (ring-elements): New function.
22541
22542 * emacs-lisp/easymenu.el (easy-menu-create-menu)
22543 (easy-menu-do-add-item): Use keywordp.
22544
22545 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
22546
22547 * replace.el: Doc and error message fixes.
22548 (replace-highlight): Use facep, not internal-find-face.
22549
22550 2000-05-20 Stefan Monnier <monnier@cs.yale.edu>
22551
22552 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
22553
22554 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
22555 (log-edit-insert-changelog): Drop `:' as well.
22556
22557 * log-view.el: Fix file description.
22558 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
22559 available.
22560 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
22561 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
22562
22563 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
22564 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
22565 Print a status message if the toggle is called interactively.
22566 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
22567 for global minor modes and use `defcustom' for them.
22568 Use add-minor-mode.
22569 (easy-mmode-define-derived-mode): Remove.
22570 (define-derived-mode): Fancier default docstring.
22571 (easy-mmode-define-navigation): Signal an error rather than (ding).
22572
22573 * newcomment.el (comment-styles): New `box-multi'.
22574 (comment-normalize-vars): Better default for comment-continue to
22575 avoid whitespace-only continuations.
22576 (comment-search-forward): Always move even in the no-syntax case.
22577 (comment-padright): Only obey N if it's only obeyed for padleft.
22578 (comment-make-extra-lines): Better handling of empty continuations.
22579 Use `=' for the filler if comment-start has only one character.
22580 (uncomment-region): Try handling the special `=' filler.
22581 (comment-region): Allow LINES even if MULTI is nil.
22582 (comment-box): Choose box style based on comment-style.
22583
22584 2000-05-20 Kenichi Handa <handa@etl.go.jp>
22585
22586 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
22587 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
22588
22589 2000-05-20 Kenichi HANDA <handa@etl.go.jp>
22590
22591 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
22592 and insert, not subst-char-in-region.
22593
22594 * international/mule-diag.el (list-character-sets-1): Handle
22595 charsets eight-bit-control and eight-bit-graphic.
22596 (list-iso-charset-chars): Likewise.
22597 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
22598 charactes as is. Use indent-to to align characters.
22599
22600 * international/mule-cmds.el (find-multibyte-characters): Never
22601 exclude charsets eight-bit-control and eight-bit-graphic.
22602
22603 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
22604
22605 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
22606 Don't quote lambdas.
22607
22608 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
22609
22610 2000-05-19 Gerd Moellmann <gerd@gnu.org>
22611
22612 * gud.el (gud-jdb-directories): Doc fix.
22613
22614 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
22615
22616 * newcomment.el: New file.
22617
22618 2000-05-19 Gerd Moellmann <gerd@gnu.org>
22619
22620 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
22621
22622 2000-05-18 Andreas Schwab <schwab@suse.de>
22623
22624 * dired.el (dired-between-files): Also skip lines beginning with
22625 `used'.
22626
22627 2000-05-18 Gerd Moellmann <gerd@gnu.org>
22628
22629 * msb.el (msb-menu-cond): Add choice `user'.
22630
22631 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
22632
22633 * ps-print.el: Compatibility, customization and doc fix.
22634 (ps-printer-name-option): Replace defconst by defvar.
22635 (ps-postscript-code-directory): XEmacs compatibility.
22636 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
22637 fix.
22638 (ps-user-defined-prologue, ps-print-prologue-header)
22639 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
22640 compatibility and code fix.
22641 (ps-print-background-image, ps-print-background-text):
22642 Customization fix.
22643 (ps-line-number-start, ps-n-up-on): New vars.
22644
22645 2000-05-18 Espen Skoglund <esk@ira.uka.de>
22646
22647 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
22648 the indent-comment function to just return the appropriate indent.
22649
22650 2000-05-18 Eric M. Ludlam <zappo@ultranet.com>
22651
22652 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
22653 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
22654 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
22655
22656 2000-05-18 Dave Love <fx@gnu.org>
22657
22658 * info.el (Info-fontify-node): Add intangible property as well as
22659 invisible.
22660
22661 * calendar/appt.el (appt-make-list): Match all lines of entry.
22662 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
22663
22664 2000-05-18 Kenichi Handa <handa@etl.go.jp>
22665
22666 * international/mule-diag.el (describe-char-after): Call
22667 internal-char-font, not char-font. If internal-char-font returns
22668 nil, display "-- none --".
22669
22670 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
22671
22672 * image.el (image-type-available-p): Don't reference image-types
22673 if it isn't bound.
22674
22675 2000-05-17 Stefan Monnier <monnier@cs.yale.edu>
22676
22677 * autoarg.el (autoarg-mode): Typo in the :set argument.
22678
22679 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
22680
22681 * startup.el (command-line-1): Don't signal an error if the
22682 directory for auto-save-list files does not yet exist.
22683
22684 2000-05-17 Kenichi Handa <handa@etl.go.jp>
22685
22686 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
22687
22688 2000-05-16 Stefan Monnier <monnier@cs.yale.edu>
22689
22690 * subr.el (remove-hook): `setq' hook-value, not `set'.
22691
22692 2000-05-16 Sam Steingold <sds@gnu.org>
22693
22694 * info.el (debug-ignored-errors): More errors to ignore.
22695
22696 2000-05-16 Dave Love <fx@gnu.org>
22697
22698 * cus-edit.el: Don't require cl or easymenu.
22699 (custom-variable-prompt): Test standard-value property, not
22700 user-variable-p.
22701
22702 2000-05-16 Sam Steingold <sds@gnu.org>
22703
22704 * subr.el (add-hook): `setq' hook-value, not `set'.
22705
22706 2000-05-16 Gerd Moellmann <gerd@gnu.org>
22707
22708 * startup.el (command-line-1): Mention the FAQ in the startup
22709 message.
22710
22711 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
22712
22713 * progmodes/compile.el (compilation-parse-errors): Collect
22714 `nomessage' regexps last.
22715
22716 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
22717
22718 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
22719 to the function name.
22720
22721 2000-05-15 Dave Love <fx@gnu.org>
22722
22723 * speedbar.el (speedbar-recenter): Typo.
22724 (speedbar-expand-line): Make arg optional.
22725 (speedbar-mode): Avoid a compiler warning.
22726
22727 2000-05-15 Gerd Moellmann <gerd@gnu.org>
22728
22729 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
22730 user-specified option string is empty.
22731
22732 * mouse.el (mouse-yank-at-click): Doc fix.
22733
22734 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
22735
22736 * term/internal.el (IT-character-translations): More updates of
22737 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
22738 documents.
22739
22740 2000-05-15 Gerd Moellmann <gerd@gnu.org>
22741
22742 * env.el (getenv): New function, interactively callable.
22743 (setenv, getenv): Remove autoload cookies.
22744
22745 * loadup.el: Load `env'.
22746
22747 * progmodes/f90.el: Change author's mail address.
22748
22749 2000-05-14 Dave Love <fx@gnu.org>
22750
22751 * mail/rmail.el (rmail-show-message-hook): Customize and offer
22752 goto-addr as an option.
22753
22754 * help.el (help-xref-stack): Doc fix.
22755 (help-xref-following): New variable.
22756 (help-make-xrefs): Use it.
22757 (help-xref-go-back): Use position information from stack element.
22758 (help-follow): Make position in stack element a pair. Use
22759 help-xref-following.
22760
22761 * autoarg.el: New file.
22762
22763 * faces.el: Declare more functions obsolete.
22764
22765 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
22766 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
22767 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
22768 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
22769 Remove all the setup-...-environment functions.
22770
22771 2000-05-13 Eric M. Ludlam <zappo@ultranet.com>
22772
22773 * speedbar.el: Updated the commentary section. xemacs20p now uses
22774 >= when detecting. Require `defimage' safely.
22775 (speedbar-easymenu-definition-base): Add toggle for images.
22776 (speedbar-easymenu-definition-special): Add flush cache & expand.
22777 (speedbar-visiting-tag-hook): Set new defaults. Added options.
22778 (speedbar-reconfigure-keymaps-hook): New variable.
22779 (speedbar-frame-parameters): Updated documentation.
22780 (speedbar-use-imenu-flag): Updated custom tag
22781 (speedbar-dynamic-tags-function-list): New variable.
22782 (speedbar-tag-hierarchy-method): Updated doc & custom.
22783 (speedbar-indentation-width, speedbar-indentation-width) New
22784 variables.
22785 (speedbar-hide-button-brackets-flag): Customizable.
22786 (speedbar-vc-indicator): Doc update.
22787 (speedbar-ignored-path-expressions): Updated default value.
22788 (speedbar-supported-extension-expressions): Updated default value.
22789 (speedbar-syntax-table): Remove {} paren status.
22790 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
22791 as "+". Added overlay aliases.
22792 (speedbar-mode): Use `speedbar-mode-line-update' instead of
22793 `force-mode-line-update'.
22794 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
22795 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
22796 `mouse-set-point'
22797 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
22798 (speedbar-item-info-tag-helper): Revamped to handle a wider range
22799 of arbitrary text, and new helper functions.
22800 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
22801 filename finder.
22802 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
22803 (speedbar-directory-buttons): Update path search/expansion.
22804 (speedbar-make-tag-line): Pay attention to
22805 `speedbar-indentation-width'. Use more care w/ invisible
22806 properties.
22807 (speedbar-change-expand-button-char): Call
22808 `speedbar-insert-image-button-maybe'.
22809 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
22810 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
22811 (speedbar-trim-words-tag-hierarchy)
22812 (speedbar-simple-group-tag-hierarchy): New functions
22813 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
22814 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
22815 functions.
22816 (speedbar-mouse-set-point): New function
22817 (speedbar-power-click): Updated documentation.
22818 (speedbar-line-token, speedbar-goto-this-file): Handle more types
22819 of tag prefix text.
22820 (speedbar-expand-line, speedbar-contract-line): Make more robust
22821 to strange text.
22822 (speedbar-expand-line): Takes universal argument to flush the
22823 cache.
22824 (speedbar-flush-expand-line): New function.
22825 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
22826 Use new generator insertion method.
22827 (speedbar-fetch-dynamic-tags): New function.
22828 (speedbar-fetch-dynamic-imenu): Removed code now handled in
22829 `speedbar-fetch-dynamic-imenu'.
22830 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
22831 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
22832 "Revert Buffer" menu items.
22833 (speedbar-buffer-buttons-engine): Be smarter when creating a
22834 filename tag (for expansion purposes.).
22835 (speedbar-highlight-one-tag-line,
22836 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
22837 (speedbar-recenter): New functions.
22838 (defimage-speedbar): Image loading abstraction.
22839 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
22840 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
22841 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
22842 (speedbar-tag-type, speedbar-tag-mail): New images.
22843 (speedbar-expand-image-button-alist): New variable.
22844 (speedbar-insert-image-button-maybe): Insert an image over some
22845 buttons.
22846
22847 2000-05-13 Kenichi Handa <handa@etl.go.jp>
22848
22849 * international/mule-cmds.el (encode-coding-char): An ASCII
22850 character is always encodable.
22851
22852 * international/mule-conf.el: Add more information in descriptions
22853 of character sets.
22854
22855 * international/mule-diag.el (describe-char-after): New function.
22856 (describe-font-internal): Adjusted for the change of font-info.
22857 (describe-font): Likewise.
22858 (print-fontset): Rewritten for the new fontset implementation.
22859 (describe-fontset): Include fontset alias names in completion.
22860 (list-fontsets): Adjusted for the change of print-fontset.
22861
22862 * simple.el (what-cursor-position): If DETAIL is non-nil, call
22863 describe-char-after instead of displaying the detail in the echo
22864 area.
22865 (syntax-code-table): Format changed.
22866 (string-to-syntax): Adjusted for the above change.
22867
22868 2000-05-12 Stefan Monnier <monnier@cs.yale.edu>
22869
22870 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
22871
22872 2000-05-12 Dave Love <fx@gnu.org>
22873
22874 * calendar/todo-mode.el: Remove some compatibility stuff and CL
22875 dependence. Use line-{beginning,end}-position, not
22876 point-at{b,e}ol. Some doc fixes.
22877 (todo-position): New function. Fix callers of position to use it.
22878 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
22879
22880 2000-05-12 Gerd Moellmann <gerd@gnu.org>
22881
22882 * time.el (display-time-mail-icon): Use `:ascent center'.
22883
22884 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
22885 handling FTP security extensions.
22886
22887 2000-05-11 Dave Love <fx@gnu.org>
22888
22889 * calendar/todo-mode.el: New file.
22890
22891 2000-05-11 Gerd Moellmann <gerd@gnu.org>
22892
22893 * comint.el (comint-read-input-ring): Move reference to
22894 comint-input-ring-size outside of the save-excursion. It was
22895 causing the default value to be the only one ever seen.
22896
22897 * font-lock.el: Update copyright. Remove Simon Marshall's email
22898 address on request from him.
22899
22900 * subr.el (substitute-key-definition): Add comment describing
22901 the meaning of PREFIX.
22902
22903 2000-05-10 Stefan Monnier <monnier@cs.yale.edu>
22904
22905 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
22906
22907 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
22908 (add-minor-mode): Don't make the variable buffer-local and add a
22909 reference to define-minor-mode in the docstring.
22910
22911 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
22912 HEADER/FOOTER and fix bug with trailing empty directory.
22913 (cvs-append-to-ignore): Use vc-editable-p if available.
22914 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
22915 (vc-do-command): Tweak advice to handle the new VC.
22916
22917 * log-view.el (log-view-goto-rev): New function for the new VC.
22918 (log-view-minor-wrap): Use mark-active.
22919
22920 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
22921 (log-edit-changelog-full-paragraphs): New var.
22922 (log-edit-insert-changelog): Remove a lonely leading `* file'.
22923 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
22924 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
22925 (log-edit-changelog-ours-p, log-edit-changelog-entries)
22926 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
22927 Replace the `cvs' prefix with `log-edit'.
22928
22929 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
22930
22931 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
22932 (diff-font-lock-defaults): Explicitly turn off multiline.
22933 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
22934 (diff-ediff-patch): Fix call to ediff-patch-file.
22935 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
22936 Handle comments.
22937
22938 * frame.el (automatic-hscrolling): Typo.
22939
22940 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
22941
22942 2000-05-09 Sam Steingold <sds@goems.com>
22943
22944 * apropos.el (apropos-print): use `describe-face' instead of
22945 `customize-face-other-window'.
22946
22947 2000-05-09 Dave Love <fx@gnu.org>
22948
22949 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
22950
22951 * help.el (describe-variable): Have customize button pop the
22952 help-xref stack when invoked.
22953 (help-xref-symbol-regexp): Add `face'.
22954 (help-make-xrefs): Check for quoted face names and adapt regexp
22955 submatch numbers to cope.
22956 (help-xref-interned): Maybe insert face doc too. Separate
22957 sections with a line of hyphens.
22958
22959 * faces.el: Some doc fixes. Declare some functions obsolete.
22960 (describe-face): Add customize button. Return the help
22961 text. Fix prompt.
22962
22963 2000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
22964
22965 * term/internal.el (IT-character-translations): Fix last change.
22966
22967 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
22968
22969 * woman.el: New file
22970 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
22971
22972 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
22973
22974 * term/internal.el (IT-character-translations): Update ASCII
22975 simulations for greek-iso8859-7, add latin-iso8859-14 and
22976 latin-iso8859-15.
22977
22978 * international/mule-cmds.el (set-language-info-alist): Call
22979 define-prefix-command with 3 arguments, to make the map suitable
22980 for a menu.
22981
22982 2000-05-07 Dave Love <fx@gnu.org>
22983
22984 * time.el: Small doc fixes from Pavel Jan\e,Bm\e(Bk ml.
22985
22986 2000-05-05 Dave Love <fx@gnu.org>
22987
22988 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
22989 list in doc string. Don't quote keyword symbols.
22990 * emacs-lisp/cl.el: Likewise
22991 * emacs-lisp/cl-seq.el: Likewise
22992
22993 2000-05-05 Gerd Moellmann <gerd@gnu.org>
22994
22995 * abbrev.el (abbrev-mode): Make ARG optional.
22996
22997 2000-05-04 Gerd Moellmann <gerd@gnu.org>
22998
22999 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
23000
23001 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
23002
23003 * subr.el (substitute-key-definition): Clarify documentation.
23004
23005 2000-05-04 Milan Zamazal <pdm@freesoft.cz>
23006
23007 * glasses.el (glasses-convert-to-unreadable): Use
23008 `glasses-separator' instead of the hard-wired "_".
23009 (glasses-mode): Call `glasses-make-unreadable' only in a single
23010 place.
23011
23012 2000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
23013
23014 * term/internal.el (cjk-codepages-alist): Add associations for
23015 Chinese and Korean codepages. Remove FIXME comment.
23016
23017 2000-05-03 Dave Love <fx@gnu.org>
23018
23019 * time.el (display-time-mail-face, display-time-use-mail-icon):
23020 New option.
23021 (display-time-mail-icon): New variable.
23022 (display-time-string-forms): Use the above. Fix the local-map.
23023
23024 2000-05-03 Gerd Moellmann <gerd@gnu.org>
23025
23026 * replace.el (query-replace-map): Add binding for `E'.
23027 (query-replace-help): Extend help text.
23028 (perform-replace): Allow editing the replacement string.
23029
23030 * make-mode.el (makefile-mode-abbrev-table): New variable.
23031 (makefile-mode): Set local abbrev table to
23032 makefile-mode-abbrev-table.
23033 (makefile-font-lock-keywords): Fontify includes and conditionals.
23034
23035 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
23036 set TOGGLE's value.
23037
23038 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
23039 mail-interactive-insert-alias.
23040 (mail-abbrev-complete-alias): New command.
23041 (mail-mode-map): Bind it to `M-TAB'.
23042
23043 2000-05-03 Kenichi Handa <handa@etl.go.jp>
23044
23045 * language/lao-util.el (lao-compose-region): New function.
23046
23047 2000-05-02 Gerd Moellmann <gerd@gnu.org>
23048
23049 * files.el (recover-session): Make directories as necessary
23050 if they don't exist yet.
23051
23052 * calendar/cal-french.el
23053 (french-calendar-multibyte-special-days-array)
23054 (french-calendar-special-days-array): Change French text.
23055 (calendar-french-date-string): Change output.
23056 (calendar-goto-french-date): Likewise.
23057
23058 2000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
23059
23060 * wid-edit.el (widget-default-active): Obey `:always-active'.
23061 (widget-documentation-string-value-create): Set `:always-active'.
23062
23063 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
23064
23065 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
23066 default prefix to `~/_emacs.d/auto-save.list/_s'.
23067 (normal-top-level): Create the directory for auto-save files, if
23068 it doesn't already exist (in the ms-dos case only).
23069
23070 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
23071
23072 * international/mule-cmds.el (set-language-environment): Don't
23073 concat an integer (dos-codepage), use format instead.
23074
23075 2000-05-02 Dave Love <fx@gnu.org>
23076
23077 * help.el (help-xref-on-pp): Check for constant symbols.
23078
23079 2000-04-29 Gerd Moellmann <gerd@gnu.org>
23080
23081 * startup.el (normal-top-level): Put a condition-case around
23082 the code loading subdirs.el.
23083
23084 2000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23085
23086 * ps-print.el: Upside-down and face background color printing,
23087 line number step, doc fix.
23088 (ps-print-version): New version number (5.2).
23089 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
23090 (ps-face-attribute-list, ps-plot-with-face): Code fix.
23091 (ps-spool-config): Var fix.
23092 (ps-printer-name-option): Const fix.
23093 (ps-print-upside-down, ps-use-face-background)
23094 (ps-line-number-step): New vars.
23095 (ps-window-system, ps-lp-system): New consts.
23096 (ps-face-background): New fun.
23097
23098 2000-04-28 Richard Stallman <rms@gnu.org>
23099
23100 * files.el (make-auto-save-file-name):
23101 Apply auto-save-file-name-transforms to visited file name
23102 before generating auto save file name.
23103 (auto-save-file-name-transforms): New variable.
23104
23105 * files.el (backup-enable-predicate):
23106 Correctly test for a file under a temporary directory.
23107
23108 2000-04-28 Gerd Moellmann <gerd@gnu.org>
23109
23110 * subr.el (add-minor-mode): Rewritten.
23111
23112 2000-04-28 Kenichi Handa <handa@etl.go.jp>
23113
23114 * mail/sendmail.el (sendmail-send-it): Set
23115 buffer-file-coding-system to the selected coding system for MIME
23116 header.
23117
23118 2000-04-27 Gerd Moellmann <gerd@gnu.org>
23119
23120 * dired.el (dired-move-to-filename-regexp): Allow format where
23121 YYYY is followed by two spaces.
23122
23123 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
23124 in the second character class of the regexp.
23125
23126 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
23127 mh-etc, too.
23128
23129 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
23130 nil.
23131
23132 * subr.el (add-minor-mode): Use `set' instead of `setq'.
23133
23134 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
23135 argument.
23136
23137 2000-04-27 Sen Nagata <sen@eccosys.com>
23138
23139 * emacs-lisp/crm.el (crm-completion-table): New variable.
23140 (crm-collection-fn, crm-test-completion)
23141 (completing-read-multiple): Use it.
23142
23143 2000-04-27 Dave Love <fx@gnu.org>
23144
23145 * help.el (locate-library): Use mapc.
23146 (help-manyarg-func-alist): Add call-process-region.
23147
23148 2000-04-26 Gerd Moellmann <gerd@gnu.org>
23149
23150 * subr.el (add-minor-mode): Make argument MAP optional.
23151
23152 * desktop.el (desktop-save): Save list of minor modes.
23153 (desktop-create-buffer): Restore minor modes.
23154 (desktop-minor-mode-table): New user-option.
23155
23156 * subr.el (add-minor-mode): New function.
23157
23158 * image.el (find-image): New function.
23159 (defimage): Rewritten to find image at load time.
23160
23161 * startup.el (normal-top-level-add-to-load-path): Handle
23162 case that the default directory is not in load-path.
23163
23164 * help.el: Old patch from Stefan Monnier.
23165 (help-xref-on-pp): New function.
23166 (describe-variable): Use it to display xrefs in a symbol's value.
23167
23168 2000-04-26 Stefan Monnier <monnier@cs.yale.edu>
23169
23170 * cus-edit.el (custom-face): Fix parenthesis.
23171
23172 2000-04-26 Kenichi Handa <handa@etl.go.jp>
23173
23174 * mail/rmail.el (rmail-expunge): When there are no deleted
23175 messages, do nothing.
23176
23177 2000-04-26 Dave Love <fx@gnu.org>
23178
23179 * international/mule-cmds.el (locale-translation-file-name):
23180 Defvar to nil.
23181 (set-locale-environment): Set it here (at runtime).
23182
23183 2000-04-25 Gerd Moellmann <gerd@gnu.org>
23184
23185 * replace.el (perform-replace): Add parameters START and END. Use
23186 them instead of the check for a region in Transient Mark mode.
23187 (query-replace-read-args): Return two more list elements for the
23188 start and end of the region in Transient Mark mode.
23189 (query-replace, query-replace-regexp, query-replace-regexp-eval)
23190 (map-query-replace-regexp, replace-string, replace-regexp): Add
23191 optional last arguments START and END and pass them to
23192 perform-replace.
23193
23194 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
23195 form with additional arguments for perform-replace.
23196
23197 * progmodes/etags.el (tags-query-replace): Add parameters START
23198 and END. Construct a form with additional arguments for
23199 perform-replace.
23200
23201 * simple.el (shell-command): Set default directory for "*Shell
23202 Command Output" buffer.
23203
23204 * language/european.el (iso-latin-4): Fix typo.
23205
23206 * emacs-lisp/crm.el: New file.
23207
23208 2000-04-24 Dave Love <fx@gnu.org>
23209
23210 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
23211 (Custom-reset-saved, Custom-reset-standard)
23212 (custom-group-value-create, custom-group-set, custom-group-save)
23213 (custom-group-reset-current, custom-group-reset-saved)
23214 (custom-group-reset-standard): Use mapc.
23215 (custom-buffer-create-internal): Disable undo when creating items.
23216 Use mapc.
23217 (custom-face): Avoid redundant lambda.
23218
23219 2000-04-24 Gerd Moellmann <gerd@gnu.org>
23220
23221 * startup.el (auto-save-list-file-prefix): Set default to
23222 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
23223
23224 2000-04-24 Sam Steingold <sds@gnu.org>
23225
23226 * time-stamp.el (time-stamp-string-preprocess): Always convert
23227 `field-result' to a string.
23228
23229 2000-04-24 Gerd Moellmann <gerd@gnu.org>
23230
23231 * frame.el (scrolling): New group.
23232 (automatic-hscrolling): New user-option.
23233
23234 * startup.el (command-line-x-option-alist): Add `-lsp' and
23235 `--line-spacing'.
23236
23237 2000-04-19 Dave Love <fx@gnu.org>
23238
23239 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
23240 (cl-mapc): Rename from mapc. Fix the funcall.
23241
23242 2000-04-19 Gerd Moellmann <gerd@gnu.org>
23243
23244 * simple.el (clone-indirect-buffer-other-window): New command.
23245 (clone-indirect-buffer): Add optional arg NORECROD.
23246 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
23247
23248 * help.el (resize-temp-buffer-window): Use count-screen-lines.
23249
23250 * window.el (count-screen-lines): New function.
23251 (shrink-window-if-larger-than-buffer): Use count-screen-lines
23252 instead of window-buffer-height.
23253
23254 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
23255 non-existing variable comint-input-sentinel.
23256 (inferior-lisp-args-to-list): Removed.
23257 (inferior-lisp): Use split-string instead of
23258 inferior-lisp-args-to-list.
23259
23260 * hexl.el (hexl-insert-hex-string): New command.
23261
23262 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
23263 instead of concat.
23264
23265 2000-04-18 Gerd Moellmann <gerd@gnu.org>
23266
23267 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
23268 at the start of an existing but empty folder.
23269
23270 2000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23271
23272 * ps-mule.el: Customization fix, doc fix.
23273 (ps-multibyte-buffer): Customization fix.
23274
23275 2000-04-17 Richard M. Stallman <rms@gnu.org>
23276
23277 * subr.el (read-passwd): Use read-char-exclusive.
23278
23279 2000-04-17 Gerd Moellmann <gerd@gnu.org>
23280
23281 * textmodes/texinfo.el (texinfo-insert-@email)
23282 (texinfo-insert-@emph, texinfo-insert-@quotation)
23283 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
23284 (texinfo-mode-map): Add key bindings for them.
23285
23286 * files.el (basic-save-buffer-2): Use a template with `$'
23287 instead of `#' for VMS.
23288
23289 * simple.el (clone-indirect-buffer): New function.
23290
23291 2000-04-16 Stephen Eglen <stephen@gnu.org>
23292
23293 * iswitchb.el (iswitchb-case): New function. If the user input
23294 contains any upper-case characters, the search is made
23295 case-sensitive.
23296
23297 2000-04-17 Stefan Monnier <monnier@cs.yale.edu>
23298
23299 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
23300 comment-end.
23301 (texinfo-font-lock-syntactic-keywords): New var.
23302 (texinfo-font-lock-keywords): Remove comment regexp.
23303 (texinfo-insert-block): New function.
23304 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
23305 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
23306 and font-lock-defaults. Use regexp-opt for outline-regexp.
23307 (texinfo-environments): New var.
23308 (texinfo-environment-regexp): Use regexp-opt and
23309 texinfo-environments.
23310
23311 * textmodes/ispell.el (ispell-menu-map-needed): Check that
23312 ispell-process is bound since this might be eval'd before ispell
23313 is loaded.
23314 (ispell-message): Use a tiny bit less magic and a bit more hard
23315 data to figure out what kind of sc-cite-regexp to use.
23316
23317 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
23318
23319 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
23320 (insert-cyclic-diary-entry): Unquote the lambda.
23321
23322 * gud.el (gud-jdb-build-source-files-list): Fix typo.
23323
23324 * files.el (backup-enable-predicate): Unquote the lambda.
23325
23326 * cus-edit.el (custom-face, face): Unquote the lambda.
23327
23328 2000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23329
23330 * ps-print.el: Check for line-beginning-position definition.
23331
23332 * ps-print.el: Fix counting lines in a region.
23333 (ps-print-version): New version number (5.1.5).
23334 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
23335 (ps-printing-region): Fun code fix.
23336
23337 2000-04-15 Gerd Moellmann <gerd@gnu.org>
23338
23339 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
23340 to file-directory-p.
23341
23342 2000-04-14 Gerd Moellmann <gerd@gnu.org>
23343
23344 * gud.el (gud-jdb-build-source-files-list): Check that directory
23345 exists before calling directory-files.
23346
23347 2000-04-13 Dave Love <fx@gnu.org>
23348
23349 * emacs-lisp/trace.el: Change maintainer. Use new backquote
23350 syntax.
23351
23352 * emacs-lisp/cl-specs.el: Remove when, unless.
23353
23354 * emacs-lisp/cl-extra.el: Don't quote keywords.
23355 (cl-old-mapc): New variable.
23356 (mapc): Use it.
23357 (cl-map-intervals): Use with-current-buffer. Don't check for
23358 next-property-change.
23359 (cl-map-overlays): Use with-current-buffer.
23360 (cl-expt): Remove.
23361 (copy-tree, remprop): Define unconditionally.
23362
23363 * emacs-lisp/cl-compat.el (keywordp): Remove.
23364
23365 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
23366 to use keywordp.
23367 (edebug-spec): Enable keywordp.
23368
23369 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
23370 string-lessp.
23371
23372 * cus-start.el: Use keywordp.
23373
23374 2000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
23375
23376 * diary-lib.el (include-other-diary-files): Fix the fix of
23377 2000-02-18 by doing a save-excursion.
23378
23379 2000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23380
23381 * ps-print.el: Customization fix, doc fix.
23382 (ps-print-version): New version number (5.1.4).
23383 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
23384 (ps-print-preprint): Adjust code.
23385 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
23386 (ps-print-prologue-header, ps-print-control-characters)
23387 (ps-spool-config): Customization fix.
23388
23389 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
23390
23391 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
23392 converted to the new menu-item format, names silightly changed,
23393 help strings added.
23394
23395 Support for spelling without async subprocesses:
23396
23397 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
23398 (ispell-session-buffer): New variables.
23399 (ispell-start-process, ispell-process-status,
23400 ispell-accept-output, ispell-send-string): New functions, for
23401 Ispell invocation when async subprocesses aren't supported.
23402 (ispell-word, ispell-pdict-save, ispell-command-loop,
23403 ispell-process-line, ispell-buffer-local-parsing): Replace calls
23404 to process-send-string with calls to ispell-send-string, and
23405 accept-process-output with ispell-accept-output.
23406 (ispell-init-process): Call ispell-process-status instead of
23407 process-status with.
23408 (ispell-init-process): Call ispell-start-process. Call
23409 ispell-accept-output and ispell-send-string. Don't call
23410 process-kill-without-query and kill-process if they are unbound.
23411 (ispell-async-processp): New function.
23412
23413 2000-04-12 Dave Love <fx@gnu.org>
23414
23415 * info.el: Add debug-ignored-errors.
23416 (Info-mode-menu): Add some items.
23417 (Info-directory): Add autoload cookie.
23418
23419 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
23420 Modify `truncate-lines'. Make `describe-language-environment'
23421 always visible and add help. Modify `describe-key' help. Invoke
23422 Info-directory from `info'. New entry `emacs-manual'.
23423
23424 2000-04-10 Gerd Moellmann <gerd@gnu.org>
23425
23426 * progmodes/ebrowse.el (ebrowse-tree-mode):
23427 Use propertized-buffer-identification.
23428 (ebrowse-update-member-buffer-mode-line): Likewise.
23429 (ebrowse--mode-strings): Removed.
23430 (ebrowse--mode-line-props): Removed.
23431
23432 * files.el (auto-mode-alist): Add `EBROWSE'.
23433
23434 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
23435 space before testing for end of buffer.
23436 (ebrowse-load): Removed.
23437 (ebrowse-revert-tree-buffer-from-file): Rewritten.
23438 (ebrowse-create-tree-buffer): Rewritten.
23439 (ebrowse-tree-mode): Read tree from buffer.
23440
23441 * progmodes/ebrowse-ffh.el: Removed.
23442
23443 2000-04-10 Kenichi Handa <handa@etl.go.jp>
23444
23445 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
23446
23447 2000-04-10 Gerd Moellmann <gerd@gnu.org>
23448
23449 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
23450 at the wrong place.
23451
23452 2000-04-09 Dave Love <fx@gnu.org>
23453
23454 * files.el (backup-enable-predicate):
23455 Use temporary-file-directory, small-temporary-file-directory.
23456 (make-backup-file-name-function, backup-directory-alist): New vars.
23457 (make-backup-file-name-1): New function.
23458 (make-backup-file-name): Use it.
23459 (find-backup-file-name): Likewise. Use format for clarity, not concat.
23460 (file-newest-backup): Use make-backup-file-name.
23461
23462 2000-04-09 Gerd Moellmann <gerd@gnu.org>
23463
23464 * progmodes/ebrowse-ffh.el: New file.
23465
23466 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn):
23467 Moved to ebrowse-ffh.el.
23468 (ebrowse-load): Add autoload.
23469
23470 * finder.el (finder-commentary): Add autoload cookie.
23471
23472 * mail/rfc2368.el: Correct author's email address.
23473
23474 * progmodes/ebrowse.el: New file.
23475
23476 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
23477 item help string.
23478 (easy-menu-do-add-item): Ditto.
23479 (easy-menu-define): Extend doc string.
23480
23481 * jit-lock.el (with-buffer-unmodified): Use restore-buffer-modified-p.
23482 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
23483 (jit-lock-function, jit-lock-stealth-fontify): Don't use
23484 with-buffer-unmodified.
23485
23486 2000-04-08 Dave Love <fx@gnu.org>
23487
23488 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
23489 unless, when.
23490
23491 2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
23492
23493 * viper-util.el (viper-put-on-search-overlay): New subroutine.
23494 (viper-flash-search-pattern): No operation when using Emacs
23495 doesn't support face.
23496 Use `viper-put-on-search-overlay'.
23497
23498 2000-04-04 Gerd Moellmann <gerd@gnu.org>
23499
23500 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
23501 like C-r.
23502
23503 * progmodes/make-mode.el: Some doc fixes.
23504 (makefile-mode-abbrev-table): New variable.
23505 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
23506 (makefile-font-lock-keywords): Fontify includes and conditionals.
23507 (toplevel): Require `dabbrev' and `add-log' when compiling.
23508
23509 * replace.el (perform-replace): Don't move forward one char
23510 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
23511 to do that because it leaves point 1 position after the last
23512 replacement, after everything has been replaced.
23513
23514 * jit-lock.el (with-buffer-unmodified): New macro.
23515 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
23516 modified state.
23517 (jit-lock-function-1): Extracted from jit-lock-function; not
23518 preserving buffer's modified state.
23519 (jit-lock-function, jit-lock-stealth-fontify):
23520 Call jit-lock-function-1.
23521
23522 * mail/rfc2368.el: Remove supernumerary copyright line.
23523
23524 2000-04-04 Milan Zamazal <pdm@freesoft.cz>
23525
23526 * glasses.el: Provide facilities for inserting space before left
23527 parentheses and uncapitalization of identifiers.
23528 (glasses-mode): Try to remove old overlays in all cases.
23529
23530 2000-04-03 Gerd Moellmann <gerd@gnu.org>
23531
23532 * progmodes/compile.el (compile-internal): Display the compilation
23533 buffer in a different frame, if it's already displayed there.
23534
23535 * mail/rfc2368.el: New file.
23536
23537 * simple.el (sendmail-user-agent-compose): Recognize a `body'
23538 header and insert its value as mail body.
23539
23540 * subr.el (member-ignore-case): New function.
23541
23542 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
23543 (dabbrev--find-expansion): Ignore buffers matching a regexp
23544 from dabbrev-ignored-regexps.
23545
23546 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
23547 to extensions handled by gzip.
23548
23549 2000-04-03 Richard M. Stallman <rms@gnu.org>
23550
23551 * files.el (insert-directory): List the total free space
23552 along with the used space.
23553
23554 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
23555 line is followed by one that matches CITATION-REGEXP, end the
23556 paragraph.
23557
23558 2000-04-03 Markus Rost <rost@delysid.gnu.org>
23559
23560 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
23561 (rmail-make-basic-summary-line): Use that option.
23562
23563 2000-04-03 Kenichi Handa <handa@etl.go.jp>
23564
23565 * international/mule-cmds.el (encoded-string-description):
23566 Rewritten. Try pretty description for ISO 2022 escape sequences
23567 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
23568 for hexadecimal format.
23569
23570 2000-04-01 Dave Love <fx@gnu.org>
23571
23572 * cpp.el: Change customization group to `c' from `C'.
23573
23574 * vcursor.el (vcursor-move): Use display-color-p.
23575
23576 * international/mule-util.el: Provide mule-utils.
23577 (string-to-sequence): Simplify and speed up.
23578
23579 * international/mule.el (make-coding-system): Purecopy doc-string.
23580
23581 * international/mule-cmds.el: Various menu changes.
23582 (describe-specified-language-support): Handle `Default'.
23583 (set-language-info): Purecopy `info'.
23584
23585 2000-03-31 Andrew Innes <andrewi@gnu.org>
23586
23587 * vc.el (vc-backend-diff): Return the correct status if we had to
23588 retry the rcsdiff command without the --brief option.
23589
23590 2000-03-31 Dave Love <fx@gnu.org>
23591
23592 * help.el (help-manyarg-func-alist): Correct several omissions.
23593
23594 * add-log.el: Don't require cl, fortran.
23595 (add-log-current-defun-function): Doc fix.
23596 (change-log-version-number-regexp-list): Remove SCCS part. Doc fix.
23597 (change-log-version-rcs): Function deleted.
23598 (change-log-version-number-search): Doc fix.
23599 Use vc-workfile-version. Avoid CL dolist.
23600 (add-change-log-entry): Just call add-log-current-defun to get
23601 defun. Simplify somewhat.
23602 (change-log-get-method-definition-1): Likewise.
23603 (add-log-current-defun): Return nil if calling
23604 add-log-current-defun-function does so. Move Fortran stuff to
23605 fortran.el. Return string without properties.
23606
23607 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
23608 and :alpha: char classes.
23609
23610 * mail/supercite.el: Defvar curline when compiling.
23611 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
23612 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
23613 rather than a-zA-Z0-9 to allow non-ASCII characters.
23614
23615 2000-03-31 Gerd Moellmann <gerd@gnu.org>
23616
23617 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
23618
23619 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
23620 Re-enable new code.
23621
23622 * lpr.el (print-region-1): Use -d to specify printer name for
23623 systems `usg-unix-v*, `dgux', `hpux', `irix'.
23624
23625 2000-03-31 Dave Love <fx@gnu.org>
23626
23627 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
23628 Look for function definition in symbol's function value slot first
23629 instead of first consulting byte-compile-function-environment.
23630
23631 2000-03-31 Kenichi Handa <handa@etl.go.jp>
23632
23633 * language/european.el ("Polish"): New language environment.
23634 (setup-polish-environment): New function.
23635
23636 2000-03-30 Gerd Moellmann <gerd@gnu.org>
23637
23638 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
23639 Disable new code.
23640
23641 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
23642 trying to `load' the symbol of an autoload instead of the file
23643 recorded in the autoload. Fix error messages.
23644
23645 2000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23646
23647 * ps-print.el: PostScript programming fix for ghostview, doc fix.
23648 (ps-print-version): New version number (5.1.3).
23649 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
23650 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
23651 (ps-generate-postscript-with-faces): Code fix.
23652 (ps-color-values): XEmacs compatibility.
23653 (ps-print-background-image, ps-print-background-text, ps-printer-name)
23654 (ps-default-fg, ps-default-bg): Adjust customization.
23655 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
23656 (ps-color-scale): Renaming old ps-color-value fun.
23657 (ps-print-headers): Replace ps-print-header group to avoid conflict
23658 with ps-print-header variable.
23659 (ps-print-miscellany): New group.
23660 (ps-format-color, ps-rgb-color): New funs.
23661 (ps-default-foreground): New var.
23662 (ps-printer-name-option): New const.
23663
23664 2000-03-30 Peter Breton <pbreton@ne.mediaone.net>
23665
23666 * net/net-utils.el:
23667 (network-connection-host, network-connection-service): New variables
23668 (network-connection-mode): New mode, derived from comint-mode
23669 (network-connection-mode-setup): New function, saves host and
23670 service information in local variables.
23671
23672 * lisp/locate.el:
23673 (locate-word-at-point): Added this function
23674 (locate): Default to using locate-word-at-point as input
23675 Run dired-mode-hook
23676
23677 2000-03-29 Dave Love <fx@gnu.org>
23678
23679 * calendar/appt.el: Doc fixes.
23680 (appt-check): Convert min-to-app to a string before passing to
23681 appt-disp-window-function or concat.
23682 (appt-delete-window): Remove test for frame-root-window.
23683 (appt-select-lowest-window, appt-convert-time): Simplify.
23684
23685 * emacs-lisp/bytecomp.el: Doc fixes.
23686 (byte-compile-file-form-autoload):
23687 Update byte-compile-function-environment.
23688
23689 2000-03-29 Andreas Schwab <schwab@suse.de>
23690
23691 * emacs-lisp/autoload.el: Also print defsubst doc string specially.
23692
23693 * dired.el (dired-insert-directory): If dired-free-space-program
23694 failed just delete its output.
23695
23696 2000-03-29 Dave Love <fx@gnu.org>
23697
23698 * international/iso-cvt.el: Move provide to end. Doc fixes.
23699 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
23700 (iso-iso2sgml, iso-sgml2iso): New functions.
23701 (iso-cvt-define-menu): Fix some entries and use backquote for
23702 clarity.
23703
23704 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
23705
23706 2000-03-28 Gerd Moellmann <gerd@gnu.org>
23707
23708 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
23709 ISO-DATE. If non-nil, return date in ISO 8601 format.
23710
23711 2000-03-26 Stefan Monnier <monnier@cs.yale.edu>
23712
23713 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
23714 if it ever becomes used.
23715 (log-edit-mode-hook): Default to vc-log-mode-hook.
23716 (log-edit-mode): Fix the docstring.
23717
23718 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
23719 the code.
23720
23721 2000-03-26 Dave Love <fx@gnu.org>
23722
23723 * net/browse-url.el (browse-url): Re-fix case of
23724 browse-url-browser-function being an alist.
23725 (browse-url): Add :link to defgroup.
23726
23727 * files.el: Doc fixes.
23728 (file-truename): Include `[' in wildcard characters.
23729 (automount-dir-prefix): Customize.
23730 (find-file-wildcards): Add :version.
23731 (find-file-noselect): Simplify a mapcar call.
23732
23733 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
23734 compatible with inf-lisp version.
23735 (eval-defun-1): Fix custom-declare-variable case.
23736
23737 2000-03-25 Stefan Monnier <monnier@cs.yale.edu>
23738
23739 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
23740
23741 2000-03-24 Gerd Moellmann <gerd@gnu.org>
23742
23743 * Makefile (COMPILE_FIRST): New macro.
23744 (compile-files): Compile files from COMPILE_FIRST first.
23745
23746 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new code.
23747
23748 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
23749 matching open parenthesis in column 0 to defun-prompt-regexp
23750 only if open-paren-in-column-0-is-defun-start is set.
23751
23752 * sun-curs.el: Require CL at compile-time only.
23753
23754 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
23755 instead of copy-list which is a function from CL.
23756 (msb--choose-menu, msb--mode-menu-cond)
23757 (msb--create-buffer-menu-2): Use dolist instead of mapc.
23758 (msb--init-file-alist): Use mapcar instead of mapcan.
23759 (msb--aggregate-alist): Use mapcar instead of mapcan.
23760 Fix `(' in column 0 in doc string.
23761 (msb--add-separators): Use mapcar instead of mapcan.
23762
23763 * cus-dep.el: Require CL at compile-time only.
23764
23765 2000-03-24 Stefan Monnier <monnier@cs.yale.edu>
23766
23767 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
23768 (byte-compile-warnings): New warning `noruntime'.
23769 (byte-compile-constants, byte-compile-variables): Fix docstring.
23770 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
23771 execute `eval-whenc-compile's body.
23772 (byte-compile-unresolved-functions): Fix docstring.
23773 (byte-compile-eval): New function.
23774 (byte-compile-callargs-warn): Check if the function will be available
23775 at runtime (via property `byte-compile-noruntime').
23776 (byte-compile-print-syms): New function.
23777 (byte-compile-warn-about-unresolved-functions): Also warn about
23778 `noruntime' functions (and use `byte-compile-print-syms').
23779 (byte-compile-file): Capitalize the message.
23780
23781 2000-03-24 Gerd Moellmann <gerd@gnu.org>
23782
23783 * mail/rmail.el (rmail-confirm-expunge): New user-option.
23784 (rmail-expunge): Ask for confirmation depending on the setting
23785 of rmail-confirm-expunge.
23786
23787 2000-03-23 Gerd Moellmann <gerd@gnu.org>
23788
23789 * Makefile (bootstrap-clean): If $(emacs) exists, build
23790 loaddefs.el first. A loaddefs.el that's not up-to-date might
23791 cause a bootstrap failure because things don't autoload as expected.
23792
23793 2000-03-23 Dave Love <fx@gnu.org>
23794
23795 * net/browse-url.el: Restore previous use of
23796 browse-url-maybe-new-window.
23797
23798 2000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23799
23800 * ps-print.el: Skip banner page fix.
23801 (ps-print-version): New version number (5.1.2).
23802 (ps-begin-file, ps-end-file, ps-generate): Code fix.
23803
23804 2000-03-23 Dave Pearson <davep@davep.org>
23805
23806 * net/quickurl.el Changed the type of parameter passed to the
23807 function defined by `quickurl-format-function'. Before only the
23808 text of the URL was passed. Now the whole URL structure is passed
23809 and the function is responsible for extracting the parts it requires.
23810 Changed the default of `quickurl-format-function' accordingly.
23811 (quickurl-insert): Changed the `funcall' of
23812 `quickurl-format-function' to match the above change.
23813 (quickurl-list-insert): Changed the `url' case so that it makes
23814 use of `quickurl-format-function', previous to this the format was
23815 hard wired.
23816
23817 2000-03-22 Gerd Moellmann <gerd@gnu.org>
23818
23819 * startup.el: Change some spellings for the X Window System.
23820
23821 2000-03-22 Stefan Monnier <monnier@cs.yale.edu>
23822
23823 * progmodes/make-mode.el (makefile-warn-suspicious-lines):
23824 Clean up the code and the regexp and make sure the cursor is
23825 temporarily moved to the suspicious line while querying the user.
23826
23827 2000-03-22 Jason Rumney <jasonr@gnu.org>
23828
23829 * w32-fns.el (w32-charset-info-alist): Initialize.
23830
23831 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23832
23833 * ps-print.el: N-up last page fix.
23834 (ps-print-version): New version number (5.1.1).
23835 (ps-end-file, ps-end-job, ps-generate): Code fix.
23836
23837 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
23838
23839 * files.el (find-file-run-dired): Update docstring.
23840 (find-directory-functions): New hook.
23841 (find-file-noselect): Run find-directory-functions rather than
23842 calling dired directly.
23843
23844 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
23845
23846 * pcvs.el: Add a minimal leading commentary.
23847 (cvs-make-cvs-buffer): Change the header part by removing the startup
23848 message and adding a `Module' entry. Also replace the FOOTER and
23849 HEADER special fileinfos with the new support in ewoc for updating
23850 its own footer and header.
23851 (cvs-update-header): Update to use the header/footer of the ewoc.
23852 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
23853 (cvs-is-within-p): New function.
23854 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
23855 to only examine some subset of the buffers.
23856
23857 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
23858 `format' instead of our own ad-hoc functions.
23859 Remove HEADER and FOOTER cases, now handled in the EWOC.
23860 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
23861
23862 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
23863 output to avoid scaring the user.
23864 (cvs-parse-table): Catch message for non-up-to-date commits.
23865
23866 * pcvs-defs.el (cvs-startup-message): Remove.
23867 (cvs-global-menu): New autoloaded menu.
23868
23869 * pcvs-util.el (cvs-string-fill): Remove.
23870
23871 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
23872 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
23873 PP part of it and also make it work for footers and headers.
23874 (ewoc-create): Drop POS and BUFFER arguments.
23875 Use the DLL's dummy node to store the end-of-footer position.
23876 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
23877 (ewoc-refresh): Remove unused `header' variable.
23878 (ewoc-(get|set)-hf): New functions.
23879
23880 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
23881 log-view-*-(message|file) and use easy-mmode-define-navigation.
23882 (log-view-message-re): Match SCCS format as well.
23883 And match the revision line rather than the dashed separator line.
23884 (log-view-mode): Use the new define-derived-mode.
23885 (log-view-current-tag): Fill in with an actual implementation.
23886
23887 * cvs-status.el (cvs-status-(prev|next)): Rename from
23888 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
23889 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
23890 to let the output "breathe" a little more (more readable).
23891 (cvs-status-mode): Use the new define-derived-mode.
23892
23893 * smerge-mode.el (smerge-auto-leave): New function and variable.
23894 (smerge-basic-map): Rename from smerge-basic-keymap.
23895 Change the bindings for smerge-diff-*.
23896 (smerge-*-map): Use easy-mmode-defmap.
23897 (smerge-(next|prev)): Use easy-mmode-define-navigation.
23898 (smerge-keep-*): Use smerge-auto-leave.
23899
23900 2000-03-21 Jason Rumney <jasonr@gnu.org>
23901
23902 * cus-edit.el (custom-button-face): Use 3D look for w32.
23903 (custom-button-pressed-face): Likewise.
23904
23905 2000-03-21 Gerd Moellmann <gerd@gnu.org>
23906
23907 * progmodes/etags.el (tags-case-fold-search): New user-option.
23908 (tags-loop-eval): New function. Bind case-fold-search around eval
23909 depending on the value of tags-case-fold-search.
23910 (tags-loop-continue): Use tags-loop-eval.
23911 (find-tag-in-order): Bind case-fold-search depending on the value
23912 of tags-case-fold-search.
23913
23914 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
23915
23916 * diff-mode.el (diff-mode-*-map): Use `easy-mmode-defmap'.
23917 (diff-end-of-hunk): Return the end position for use in
23918 `easy-mmode-define-navigation'.
23919 (diff-recenter): Remove.
23920 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
23921 of `easy-mmode-define-navigation'.
23922 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
23923 previous renaming) and fix to use new names.
23924 (diff-merge-strings): Use \n as separator: simpler, faster.
23925 (diff-mode): Use `define-derived-mode'.
23926
23927 * derived.el (define-derived-mode): Don't autoload anymore.
23928 Prefer the macro-only version provided by easy-mmode.el.
23929
23930 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
23931 `easy-mmode-define-derived-mode'. Use `combine-run-hooks'.
23932 (easy-mmode-define-navigation): New macro.
23933
23934 * subr.el (combine-run-hooks): New function.
23935
23936 2000-03-21 Kenichi HANDA <handa@etl.go.jp>
23937
23938 * term/x-win.el: Fontsets related initialization is simplified.
23939
23940 * international/mule-diag.el (describe-font): Don't refer to
23941 global-fontset-alist, instead call font-list.
23942 (describe-fontset, list-fontsets, mule-diag): Likewise.
23943 (print-fontset): Adjusted for the change of fontset implementation.
23944
23945 * international/fontset.el (x-charset-registries): Variable removed,
23946 instead the corresponding data is stored in the default fontset.
23947 (register-alternate-fontnames): Function removed.
23948 (resolved-ascii-font): Variable removed.
23949 (x-compose-font-name): Ignore the second argument REDOCE.
23950 (x-complement-fontset-spec): Complement only an ASCII font and
23951 element for those charsets than can use that ASCII font.
23952 (generate-fontset-menu): Don't refer to global-fontset-alist,
23953 instead call fontset-list.
23954 (uninstantiated-fontset-alist): Variable removed.
23955 (x-style-funcs-alist): Likewise.
23956 (fontset-default-styles): Likewise.
23957 (x-modify-font-name): Function removed.
23958 (create-fontset-from-fontset-spec): Ignore the argument STYLE-VARIANT.
23959 (create-fontset-from-ascii-font): Docsting adjusted for the above
23960 change.
23961 (instantiate-fontset, resolve-fontset-name): Functions removed.
23962 (fontset-list): Now implemented by C code.
23963
23964 * faces.el (read-face-font): Fix TABLE arg to completing-read.
23965 (describe-face): Include `font' attribute in the description.
23966
23967 2000-03-21 Kenichi Handa <handa@etl.go.jp>
23968
23969 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
23970
23971 2000-03-20 Gerd Moellmann <gerd@gnu.org>
23972
23973 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
23974 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
23975 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
23976
23977 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
23978 about behavior of set-buffer-modified-p wrt redisplay.
23979
23980 2000-03-19 Richard M. Stallman <rms@gnu.org>
23981
23982 * view.el (view-mode-disable): Kill local binding of view-read-only.
23983
23984 2000-03-18 Gerd Moellmann <gerd@gnu.org>
23985
23986 * font-lock.el (font-lock-apply-syntactic-highlight): If VALUE
23987 is a string, convert it to a syntax cell using string-to-syntax.
23988
23989 * simple.el (syntax-code-table, syntax-flag-table): New variables.
23990 (string-to-syntax): New function.
23991
23992 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
23993 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
23994 try to use passive ftp mode.
23995
23996 2000-03-17 Gerd Moellmann <gerd@gnu.org>
23997
23998 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
23999
24000 * simple.el (append-to-buffer): Update point of windows after
24001 insertion.
24002
24003 * abbrev.el (inverse-add-abbrev): Identify word by first moving
24004 forward then moving backward. Reindent.
24005
24006 * frame.el (other-frame): Call x-focus-frame only if
24007 focus-follows-mouse is off.
24008
24009 2000-03-17 Dave Love <fx@gnu.org>
24010
24011 * pcvs-util.el (cvs-strings->string): Rename replace-regexps-in-string.
24012
24013 2000-03-17 Stefan Monnier <monnier@cs.yale.edu>
24014
24015 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
24016 regexp for labels cannot span several lines.
24017
24018 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
24019 `(setq :<key> ':<key>)' to the macro expansion.
24020
24021 2000-03-16 Dave Love <fx@gnu.org>
24022
24023 * progmodes/f90.el (f90): Put custom group under `languages', not
24024 `fortran'.
24025 (f90-mode-hook): Customize.
24026 (f90-mode): Set add-log-current-defun-function.
24027 (f90-current-defun): New function.
24028
24029 2000-03-16 Gerd Moellmann <gerd@gnu.org>
24030
24031 * cus-edit.el (custom-variable-tag-face): Handle case that
24032 default face's height is not a number.
24033 (custom-face-tag-face, custom-group-tag-face-1)
24034 (custom-group-tag-face): Ditto.
24035 (custom-group-tag-face-1): Add :group.
24036
24037 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
24038
24039 2000-03-15 Gerd Moellmann <gerd@gnu.org>
24040
24041 * pcvs-defs.el (toplevel): Remove autoload cookie for form
24042 requiring easymenu.
24043
24044 2000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
24045
24046 * ps-print.el: PostScript user-defined prologue, PostScript error
24047 handler, doc fix.
24048 (ps-print-version): New version number (5.1).
24049 (ps-user-defined-prologue, ps-error-handler-message)
24050 (ps-print-prologue-0, ps-error-handler-alist): New vars.
24051 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
24052 (ps-insert-string): New function.
24053
24054 2000-03-15 Kenichi Handa <handa@etl.go.jp>
24055
24056 * international/ccl.el (ccl-compile-expression): Don't generate
24057 invalid self-assignment code.
24058
24059 2000-03-14 Dave Love <fx@gnu.org>
24060
24061 * subr.el (replace-regexp-in-string): Renamed from
24062 replace-regexps-in-string. Doc fix.
24063
24064 2000-03-12 Dave Love <fx@gnu.org>
24065
24066 * cus-edit.el: Doc fixes.
24067 (customize-set-variable, customize-save-variable): Rename args for doc.
24068 (custom-variable-tag-face, custom-face-tag-face)
24069 (custom-group-tag-face-1, custom-group-tag-face): Modify from
24070 style which user identify as hyperlink.
24071 (hook): Don't add undefined functions to the hook.
24072 (debug-ignored-errors): Transfer message from bindings.el.
24073
24074 2000-03-12 Gerd Moellmann <gerd@gnu.org>
24075
24076 * recentf.el (recentf-keep-non-readable-files-p):
24077 Remove double/nested definition.
24078
24079 2000-03-12 Dave Love <fx@gnu.org>
24080
24081 * facemenu.el (facemenu-get-face): Use display-color-p.
24082 * enriched.el (enriched-decode-foreground): Likewise.
24083 (enriched-decode-background): Likewise.
24084 * isearch.el (isearch-highlight): Likewise.
24085 * info-look.el (info-lookup): Likewise.
24086 * simple.el (completion-setup-function): Likewise.
24087
24088 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
24089 :options.
24090
24091 * bindings.el (mode-line-format): Fix line-number and
24092 column-number items. Add help-echo for the background.
24093 (mode-line-mule-info): Modify help-echo.
24094
24095 * avoid.el (mouse-avoidance-mode): Add autoload cookie to defcustom.
24096
24097 * files.el (load-file): Allow completion to .elc.
24098
24099 * man.el: Doc fixes.
24100 (Man-init-defvars): Use display-color-p to set fontification.
24101
24102 * play/hanoi.el (hanoi-internal): Don't use oddp.
24103
24104 2000-03-12 Gerd Moellmann <gerd@gnu.org>
24105
24106 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
24107
24108 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
24109
24110 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
24111
24112 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
24113 Fix comment.
24114
24115 2000-03-10 Stefan Monnier <monnier@cs.yale.edu>
24116
24117 * font-lock.el (font-lock-keywords): Fix the doc now that
24118 regexp-opt-depth is unnecessary.
24119 (save-buffer-state): Set an edebug spec.
24120 (font-lock-fontify-anchored-keywords): Properly handle the case when
24121 the matcher goes past the limit.
24122
24123 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
24124 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
24125
24126 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
24127 dll.el and cookie.el (from Elib) with heavy renaming and other
24128 massaging.
24129
24130 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
24131 Autoload the functions used.
24132 (easy-mmode-define-syntax): Fix CL typo.
24133 (easy-mmode-define-derived-mode): Improve the docstring generation.
24134
24135 2000-03-10 Gerd Moellmann <gerd@gnu.org>
24136
24137 * textmodes/texinfo.el (texinfo-version): Variable and function
24138 removed.
24139
24140 2000-03-09 Stefan Monnier <monnier@cs.yale.edu>
24141
24142 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
24143 allow more flexibility.
24144 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New fns.
24145 (easy-mmode-defmap, easy-mmode-defsyntax)
24146 (easy-mmode-define-derived-mode): New macros.
24147
24148 2000-03-09 Didier Verna <didier@xemacs.org>
24149
24150 * rect.el (replace-rectangle): New function.
24151
24152 2000-03-09 Dave Love <fx@gnu.org>
24153
24154 * progmodes/fortran.el (fortran-comment-line-start): Define as "C".
24155 (fortran-comment-line-start-skip): Don't match cpp stuff.
24156 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
24157 (fortran-mode-map): Remove over-eager custom-menu-create for now.
24158 (fortran-mode): Don't set fortran-comment-line-start-skip,
24159 fortran-comment-line-start here. Set comment-start,
24160 add-log-current-defun.
24161 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
24162 (fortran-current-defun): New function.
24163
24164 2000-03-09 Gerd Moellmann <gerd@gnu.org>
24165
24166 * emacs-lisp/re-builder.el: New file.
24167
24168 * mouse.el (mouse-drag-region): Don't run up-event handler
24169 if hscroll has changed.
24170
24171 * octave-mod.el (octave-font-lock-keywords): To font-lock the
24172 builtin operators, use `font-lock-builtin-face' for Emacs and
24173 `font-lock-preprocessor-face' otherwise.
24174
24175 * font-lock.el (lisp-font-lock-keywords-1): Highlight
24176 `(defun (setf foo)' differently.
24177
24178 2000-03-08 Stefan Monnier <monnier@cs.yale.edu>
24179
24180 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
24181 (regexp-opt): Update comment and adapt the code the new meaning of
24182 the `paren' argument of regex-opt-group for shy-groups.
24183 (regexp-opt-depth): Handle shy groups as well as backslashed
24184 backslashes.
24185 (regexp-opt-group): Turn the leading comment into a docstring.
24186 Allow `paren' to be a string (the string to use to open a group).
24187 Remove open-presuf and close-presuf. Instead of checking for `all
24188 one-char' and then later on check for `several one-char', handle
24189 both cases close together. Also apply a more generic algorithm
24190 for suffixes (the mirror image of the algorithm used for
24191 prefixes). Use shy-groups. Use nreverse rather than reverse.
24192 (regexp-opt-try-suffix): Removed.
24193
24194 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
24195 from comint-mode-map, so we can just inherit from it. Also, move
24196 the initialization into the `defvar' since there's no docstring
24197 anyway and it's fairly short.
24198 (inferior-scheme-mode): Define it as derived-mode: the code is
24199 shorter and this way we inherit from comint-mode-map rather than
24200 copying it.
24201
24202 * subr.el (replace-regexps-in-string): Properly handle the case
24203 where we match an empty string.
24204
24205 * comint.el (comint-exec-1): Add the current-dir to the exec-path
24206 when the command has a directory component (such as "./testml").
24207 Also fix a typo in the comment.
24208
24209 2000-03-08 Gerd Moellmann <gerd@gnu.org>
24210
24211 * Makefile (compile-files): Compile files one by one because
24212 that's the only way to ensure a clean compilation environment for
24213 each individual file.
24214
24215 * frame.el (other-frame): Call x-focus-frame.
24216
24217 2000-03-07 Dave Love <fx@gnu.org>
24218
24219 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
24220 :require to defcustom.
24221
24222 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads lists.
24223
24224 * files.el (auto-mode-alist): Add configure.in.
24225
24226 * progmodes/autoconf.el: New file.
24227
24228 2000-03-07 Gerd Moellmann <gerd@gnu.org>
24229
24230 * mail/mh-e.el: Change maintainer to `none'.
24231
24232 * recentf.el (recentf-keep-non-readable-files-p): Quote args
24233 to remove-hook and add-hook.
24234
24235 2000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
24236
24237 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
24238 it as the default.
24239 (mail-send): Test mail-send-nonascii also for the new `mime' value.
24240 (sendmail-send-it): Conditionally add MIME headers specifying the
24241 used character set.
24242
24243 2000-03-07 Dave Love <fx@gnu.org>
24244
24245 * winner.el: Fix keywords, autoload cookies.
24246 Split eval-when-compile form to avoid compilation failure.
24247
24248 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
24249
24250 * international/mule.el: Modify comment about coding system
24251 property `coding-category'.
24252 (make-coding-system): New argument EOL-TYPE. Pay attention to
24253 coding-category property of PROPERTIES.
24254
24255 * international/mule-conf.el (coding-category-utf-8)
24256 (coding-category-utf-16-be, coding-category-utf-16-le): New coding
24257 categories. Include them in the argument for set-coding-priority.
24258
24259 * international/mule-cmds.el (reset-language-environment):
24260 Include coding-category-utf-8, coding-category-utf-16-be, and
24261 coding-category-utf-16-le in the argument for set-coding-priority.
24262 (reset-language-environment): Initialize coding-category-utf-8,
24263 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
24264
24265 2000-03-06 Karl Fogel <kfogel@red-bean.com>
24266
24267 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
24268 code abstracted out of `bookmark-jump-noselect'. Now tries info
24269 extensions as well as compression extensions.
24270 (bookmark-jump-noselect): Use above new func.
24271
24272 2000-03-03 Gerd Moellmann <gerd@gnu.org>
24273
24274 * strokes.el: Change maintainer's mail address.
24275
24276 2000-03-03 Kenichi Handa <handa@etl.go.jp>
24277
24278 * international/mule-diag.el (list-character-sets): Make help-echo
24279 string by substitute-command-keys.
24280 (list-character-sets): Likewise.
24281 (sort-listed-character-sets): Call help-setup-xref.
24282
24283 2000-03-02 Gerd Moellmann <gerd@gnu.org>
24284
24285 * time.el (display-time-mail-file): Add `none' to the list of choices.
24286
24287 2000-03-01 Dave Love <fx@gnu.org>
24288
24289 * help.el (help-xref-go-back): Don't try to set position.
24290
24291 * international/mule-diag.el (list-character-sets):
24292 Call help-setup-xref. Add help-echo to xrefs.
24293 (list-character-sets-1): Add help-echo to xrefs.
24294
24295 2000-03-02 Gerd Moellmann <gerd@gnu.org>
24296
24297 * frame.el (blink-cursor-mode): Switch cursor on when turning
24298 the mode off.
24299
24300 * add-log.el (add-log-current-defun): Add support for
24301 Autoconf mode.
24302
24303 * mail/rmail.el (rmail-quit-hook): New variable.
24304
24305 2000-03-01 Dave Love <fx@gnu.org>
24306
24307 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
24308
24309 * help.el (help-xref-button): Add help-echo arg.
24310 (describe-function-1, describe-variable, help-make-xrefs): Use it.
24311
24312 * faces.el (list-faces-display): Supply help-echo with help-make-xrefs.
24313
24314 * facemenu.el (list-text-properties-at): Set help-xref-stack to nil.
24315
24316 2000-03-01 Gerd Moellmann <gerd@gnu.org>
24317
24318 * image.el (defimage): Look for image files in load-path.
24319
24320 * frame.el (busy-cursor-delay-seconds): Change type to `number'.
24321
24322 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24323
24324 * recentf.el (recentf): Added version tag to the defgroup of recentf.
24325
24326 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24327
24328 * recentf.el (recentf-cleanup): Changed to remove excluded file too.
24329 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
24330 action to select/unselect a file.
24331 (recentf-edit-list): Code cleanup and improvement.
24332 (recentf-open-more-files-action): `recentf-open-more-files' button
24333 widget action to open a file.
24334 (recentf-open-more-files): No more use standard completion but widgets.
24335 (recentf-more-collection): Deleted.
24336 (recentf-more-history): Deleted.
24337 (recentf-setup-more-completion): Deleted.
24338
24339 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24340
24341 * recentf.el (recentf-mode): No more needs that Emacs is running
24342 under a window-system.
24343
24344 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24345
24346 * recentf.el (recentf-edit-list): New command to edit the recent
24347 list which allow the user to remove files.
24348 (recentf-edit-selected-items): New global variable, used by
24349 `recentf-edit-list' to hold the list of files to be removed from
24350 the recent list.
24351 (recentf-make-menu-items): Updated to display a "Edit list..."
24352 menu item. Minor code cleanup.
24353
24354 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24355
24356 * recentf.el (recentf-open-more-files): New command to open files
24357 that are not displayed in the menu.
24358 (recentf-more-collection): New global variable holding the set of
24359 permissible completions used by `recentf-open-more-files'.
24360 (recentf-more-history): New global variable holding the history list
24361 used by `recentf-open-more-files' completion.
24362 (recentf-setup-more-completion): New function to setup completion for
24363 `recentf-open-more-files'.
24364 (recentf-make-menu-items): Updated to display a "More..." menu item.
24365
24366 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24367
24368 * recentf.el (recentf-menu-action): Doc fixed.
24369
24370 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24371
24372 * recentf.el (recentf-menu-filter): Doc updated.
24373 (recentf-update-menu-hook): Allow menu filters to force menu update.
24374 (recentf-make-menu-items): New menu filter handling.
24375 (recentf-make-menu-item): New helper function.
24376 (recentf-menu-elements): New menu handling function.
24377 (recentf-sort-ascending): Updated to new menu filter handling.
24378 (recentf-sort-descending): Updated to new menu filter handling.
24379 (recentf-sort-basenames-ascending): New menu filter function.
24380 (recentf-sort-basenames-descending): New menu filter function.
24381 (recentf-show-basenames): New menu filter function.
24382 (recentf-show-basenames-ascending): New menu filter function.
24383 (recentf-show-basenames-descending): New menu filter function.
24384
24385 2000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
24386
24387 * diary-lib.el (list-diary-entries): Don't try to go forward at
24388 the end of the buffer.
24389
24390 2000-02-29 Kenichi Handa <handa@etl.go.jp>
24391
24392 * international/mule-diag.el (list-character-sets):
24393 Completely rewritten.
24394 (sort-listed-character-sets): New function.
24395 (list-character-sets-1): Completely rewritten.
24396 (list-character-sets-2): New function.
24397 (non-iso-charset-alist): New variable.
24398 (decode-codepage-char): New function.
24399 (charset-history): New variable.
24400 (read-charset) (list-block-of-chars)
24401 (list-iso-charset-chars)
24402 (list-non-iso-charset-chars)
24403 (list-charset-chars): New functions.
24404 (mule-diag): Call list-character-sets-2, not list-character-sets-2.
24405 (dump-charsets): Likewise.
24406
24407 2000-02-29 Gerd Moellmann <gerd@gnu.org>
24408
24409 * dired-x.el (dired-filename-at-point): Add `@' to valid
24410 file name characters.
24411 (dired-filename-at-point): Handle ange-ftp file names.
24412
24413 * frame.el (frame-notice-user-settings): Use assq-delete-all
24414 instead of assoc-delete-all.
24415 (frame-notice-user-settings): Ditto.
24416
24417 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
24418 Don't copy alist.
24419
24420 2000-02-28 Eli Barzilay <eli@cs.cornell.edu>
24421
24422 * calculator.el (calculator-use-menu): New option.
24423 (calculator-initial-bindings): Changed some bindings to work as macros.
24424 (calculator-forced-input): Removed.
24425 (calculator-restart-other-mode): New variable.
24426 (calculator-mode-map): Set up menu.
24427
24428 2000-02-28 Jari Aalto <jari.aalto@poboxes.com>
24429
24430 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc tags.
24431
24432 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
24433
24434 * viper-cmd.el (viper-envelop-ESC-key): Add the option to
24435 translate all ESC key sequences.
24436 (viper-goto-mark-subr): Restore markers for files for which
24437 they were saved.
24438 * viper-init.el (viper-translate-all-ESC-keysequences): New variable.
24439 * viper-util.el (viper-set-replace-overlay-glyphs)
24440 (viper-set-replace-overlay): Always check if the replacement
24441 overlay is live.
24442 * viper.el (viper-vi-state-mode-list): Add major modes.
24443 * ediff-wind.el: Minor comment changes.
24444 * ediff.el: Copyright notice date fix.
24445
24446 2000-02-27 Jason Rumney <jasonr@gnu.org>
24447
24448 * faces.el (face-font-family-alternatives): Add arial to helv.
24449 (mode-line, header-line, tool-bar): Same default as x for w32.
24450 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
24451 face-font-family-alternatives from working.
24452 * term/w32-win.el (mouse-set-font): Do not build fontset from
24453 chosen font.
24454
24455 2000-02-25 Sam Steingold <sds@goems.com>
24456
24457 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
24458 properly.
24459
24460 2000-02-25 Richard M. Stallman <rms@gnu.org>
24461
24462 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
24463
24464 2000-02-25 Gerd Moellmann <gerd@gnu.org>
24465
24466 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer writable.
24467
24468 * frame.el (busy-cursor-delay-seconds): New option.
24469
24470 2000-02-24 Gerd Moellmann <gerd@gnu.org>
24471
24472 * frame.el (show-cursor-in-non-selected-windows): New option.
24473
24474 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
24475
24476 * diary-lib.el (include-other-diary-files): Undo the selective
24477 display in any included file and don't kill it.
24478
24479 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
24480
24481 * dired.el (dired-mode-map): Don't remove "Edit" from the menu bar.
24482 Menu items converted to (menu-item format, help strings added.
24483 [downcase, upcase]: Don't enable on MS-DOS.
24484 [symlink, symlinks]: Don't show if make-symbolic-link is not bound.
24485 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
24486
24487 2000-02-23 Dave Love <fx@gnu.org>
24488
24489 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
24490 (backward-kill-word): Revert addition of * to interactive spec --
24491 it's a feature.
24492
24493 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
24494 (backward-kill-sentence, kill-sentence): Likewise.
24495
24496 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
24497 scratch buffer name.
24498 (gud-format-command): Use int-to-string in ?l case. Simplify slightly.
24499
24500 * term/w32-win.el (internal-face-interactive): Update prompt for
24501 new read-face-name.
24502
24503 * mail/footnote.el (footnote): Add :version to defgroup.
24504 (footnote-section-tag-regexp): Customize.
24505 (footnote-start-tag, footnote-end-tag): New option.
24506 (footnote-latin-regexp): New variable.
24507 (Footnote-latin): New function.
24508 (footnote-style-alist): Add element for latin style.
24509 (footnote-style): Moved.
24510 (Footnote-goto-footnote): Use eq to test arg.
24511
24512 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
24513
24514 * emacs-lisp/byte-opt.el: Change old backquote syntax.
24515 (byte-compile-trueconstp): Include keywords.
24516 (byte-optimize-quote, byte-optimize-lapcode):
24517 Use byte-compile-const-symbol-p.
24518 (byte-optimize-char-before): New optimization.
24519
24520 * emacs-lisp/bytecomp.el: Change old backquote syntax.
24521 (byte-compile-const-symbol-p): New function.
24522 (byte-compile-constp, byte-compile-out-toplevel)
24523 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
24524 Use it.
24525
24526 * subr.el (define-key-after): Default AFTER to t. Doc fix.
24527
24528 2000-02-23 Kenichi Handa <handa@etl.go.jp>
24529
24530 * international/encoded-kb.el: Be sure to update minor-mode-alist
24531 and minor-mode-map-alist.
24532 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
24533 codes SS2 and SS3 correctly.
24534 (encoded-kbd-self-insert-ccl): New function.
24535 (encoded-kbd-setup-keymap): New function.
24536 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
24537 by calling encoded-kbd-setup-keymap.
24538
24539 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte characters.
24540 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t locally.
24541
24542 2000-02-22 Dave Love <fx@gnu.org>
24543
24544 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
24545 (lisp-mode-map, lisp-interaction-mode-map): Define all inside defvar.
24546 (lisp-mode-syntax-table): Set up for #|...|# comments.
24547 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
24548 classes. Match `defface'.
24549 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
24550 (eval-defun-1): Fix for defcustom.
24551 (lisp-indent-region): Doc fix.
24552
24553 * subr.el (when, unless, split-string): Doc fix.
24554 (read-passwd): Move call of clear-this-command-keys to the right place.
24555 (replace-regexps-in-string): New function.
24556
24557 2000-02-22 Gerd Moellmann <gerd@gnu.org>
24558
24559 * help.el (describe-variable): Set syntax table to
24560 emacs-lisp-mode-syntax-table when moving forward over the
24561 symbol's name.
24562
24563 2000-02-22 Dave Love <fx@gnu.org>
24564
24565 * xt-mouse.el: Doc fixes.
24566 (xterm-mouse-position-function): New function, replacing advice of
24567 mouse-position.
24568 (xterm-mouse-mode): Use it. Don't turn on under a window system.
24569
24570 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
24571
24572 2000-02-21 Gerd Moellmann <gerd@gnu.org>
24573
24574 * format.el (format-annotate-single-property-change):
24575 Handle properties with dotted-list values.
24576 (format-proper-list-p): New function.
24577
24578 * enriched.el (enriched-face-ans): Handle '(foreground-color
24579 . COLOR) and (background-color . COLOR).
24580
24581 2000-02-20 Dave Love <fx@gnu.org>
24582
24583 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
24584 and assignments to it.
24585 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
24586 current local map.
24587 (make-flyspell-overlay): Use it.
24588 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
24589
24590 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
24591 (lm-get-header-re): Defun, not defsubst.
24592 (lm-get-package-name): Defun, not defsubst. Simplify.
24593 (lm-version): Doc fix. Simplify.
24594 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
24595 (lm-crack-address, lm-last-modified-date, lm-commentary)
24596 (lm-verify, lm-synopsis): Simplify.
24597 (lm-report-bug): Require emacsbug. Use compose-mail.
24598
24599 2000-02-20 Gerd Moellmann <gerd@gnu.org>
24600
24601 * dired.el (dired-mode): Call propertized-buffer-identification
24602 to set mode-line-buffer-identification to something having
24603 the right text properties.
24604
24605 * bindings.el (propertized-buffer-identification): New function.
24606
24607 2000-02-20 Dave Love <fx@gnu.org>
24608
24609 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
24610 check for t-mouse too.
24611
24612 * cus-start.el: Make echo-keystrokes `number'.
24613
24614 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
24615
24616 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
24617 Don't call ring-empty-p unless tags-location-ring is bound.
24618 From Noah Friedman <friedman@splode.com>.
24619
24620 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
24621
24622 * progmodes/hideshow.el (hs-flag-region): No longer use
24623 `intangible' overlay property.
24624
24625 (hs-toggle-hiding): New command.
24626 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
24627
24628 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
24629 Fix omission bug: Run `hs-minor-mode-hook' for both activation
24630 and deactivation.
24631
24632 2000-02-18 Gerd Moellmann <gerd@gnu.org>
24633
24634 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
24635
24636 2000-02-17 Gerd Moellmann <gerd@gnu.org>
24637
24638 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
24639
24640 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
24641 of `*' to handle `(* ... *)' comments.
24642
24643 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
24644
24645 * faces.el (list-faces-display): Use display-mouse-p instead of
24646 window-system.
24647
24648 * menu-bar.el (global-map): Menu-bar items converted to the new
24649 format (menu-item..., rearranged for better CUA compliance, and
24650 their names changed for better clarity. Help strings added.
24651
24652 * international/mule-cmds.el (mule-menu-keymap)
24653 (describe-language-environment-map, set-coding-system-map)
24654 (setup-language-environment-map): Convert to new (menu-item...
24655 form, add help strings. Change names of menu items for better clarity.
24656 "Mule" menu-bar item removed (it's now in the "Options" submenu).
24657
24658 2000-02-17 Gerd Moellmann <gerd@gnu.org>
24659
24660 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
24661 within the code.
24662
24663 2000-02-16 Dave Love <fx@gnu.org>
24664
24665 * faces.el: Don't require custom. Add more specific :groups to
24666 various deffaces.
24667 (set-face-attribute): Purecopy args.
24668 (read-face-name): Default to name at point and use it in prompt.
24669 Remove colon from arg in all callers.
24670 (list-faces-display): Hyperlink to face descriptions and customize
24671 buffers.
24672
24673 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
24674
24675 * wid-edit.el (widget-match-inline): An atom never matches a list.
24676
24677 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24678
24679 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
24680 at ':' characters by call to split-string.
24681
24682 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24683
24684 * textmodes/bibtex.el: Added RCS version identification.
24685
24686 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24687
24688 * textmodes/bibtex.el: Some temporary comments removed.
24689 (bibtex-field-name, bibtex-entry-type): Made the relationship explicit.
24690 (bibtex-field-const): Allow capital letters.
24691 (bibtex-start-of-string): Deleted because unused.
24692
24693 * textmodes/bibtex.el: Unified some nomenclature. We no longer
24694 use the term 'reference' to describe a bibtex entry as a whole.
24695 Further, reference keys are no longer called 'labels'.
24696 (bibtex-keys): Renamed to bibtex-reference-keys.
24697 (bibtex-reformat-previous-labels): Renamed to
24698 bibtex-reformat-previous-reference-keys.
24699 (bibtex-reference-type): Renamed to bibtex-entry-type.
24700 (bibtex-reference-head): Renamed to bibtex-entry-head.
24701 (bibtex-reference-maybe-empty-head): Renamed to
24702 bibtex-entry-maybe-empty-head.
24703 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
24704 (bibtex-search-reference): Renamed to bibtex-search-entry.
24705 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
24706 bibtex-enclosing-entry-maybe-empty-head.
24707 (bibtex-entry-field-alist, bibtex-entry-head)
24708 (bibtex-font-lock-keywords, bibtex-skip-to-valid-entry)
24709 (bibtex-map-entries, bibtex-search-entry)
24710 (bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry)
24711 (bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode)
24712 (bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message)
24713 (bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer)
24714 (bibtex-find-entry-location, bibtex-validate, bibtex-find-text)
24715 (bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat)
24716 (bibtex-complete-key, bibtex-String) : Use the new nomenclature.
24717
24718 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24719
24720 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
24721 comment.
24722 (bibtex-format-field-delimiters): New function, functionality
24723 extracted from bibtex-format-entry.
24724 (bibtex-autokey-get-yearfield-digits): New function, functionality
24725 extracted from bibtex-autokey-get-yearfield.
24726
24727 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
24728 entries in order to avoid stack overflow in the regexp matcher if
24729 field contents become large.
24730 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield)
24731 (bibtex-field-string-part-not-braced)
24732 (bibtex-field-string-part-no-inner-braces)
24733 (bibtex-field-string-part-1-inner-brace)
24734 (bibtex-field-string-part-2-inner-braces)
24735 (bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced)
24736 (bibtex-field-string-quoted, bibtex-field-string)
24737 (bibtex-field-string-or-const, bibtex-field-text, bibtex-field)
24738 (bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix)
24739 (bibtex-string, bibtex-key-in-string, bibtex-text-in-string):
24740 Deleted as parsing is now performed by the following functions.
24741 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced)
24742 (bibtex-parse-quoted-string, bibtex-parse-field-string-quoted)
24743 (bibtex-parse-field-string, bibtex-search-forward-field-string)
24744 (bibtex-parse-association, bibtex-field-name-for-parsing)
24745 (bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field)
24746 (bibtex-search-forward-field, bibtex-search-backward-field)
24747 (bibtex-start-of-field, bibtex-end-of-field)
24748 (bibtex-start-of-name-in-field, bibtex-end-of-name-in-field)
24749 (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
24750 (bibtex-parse-string-prefix, bibtex-parse-string-postfix)
24751 (bibtex-parse-string, bibtex-search-forward-string)
24752 (bibtex-search-backward-string, bibtex-start-of-string)
24753 (bibtex-end-of-string, bibtex-start-of-reference-key-in-string)
24754 (bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string)
24755 (bibtex-end-of-text-in-string): New functions for the parsing of bibtex
24756 entries. Instead of reporting the results of the parsing by
24757 match-beginning or match-end, these functions return data structures
24758 that hold the corresponding positions.
24759 (bibtex-enclosing-field): Changed to also report field boundaries by
24760 return values rather than by match-beginning or match-end.
24761 The following functions have been adapted to use the new
24762 parsing functions.
24763 (bibtex-skip-to-valid-entry, bibtex-search-reference)
24764 (bibtex-enclosing-field, bibtex-format-entry)
24765 (bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring)
24766 (bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode)
24767 (bibtex-print-help-message, bibtex-end-of-entry)
24768 (bibtex-ispell-abstract, bibtex-validate, bibtex-next-field)
24769 (bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
24770 (bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry):
24771 Use the new method for parsing.
24772 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry)
24773 (bibtex-map-entries, bibtex-flash-head)
24774 (bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry)
24775 (bibtex-autokey-change, bibtex-autokey-get-namefield)
24776 (bibtex-autokey-get-names, bibtex-autokey-get-titlestring)
24777 (bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode)
24778 (bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer)
24779 (bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
24780 (bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
24781 order to make the new binding of case-fold-search immediately visible.
24782
24783 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24784
24785 * textmodes/bibtex.el: Copyright notice is up to date.
24786 Added constant 'bibtex-maintainer-salutation.
24787
24788 * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
24789 than make-temp-name, use match-string-no-properties and eliminate
24790 a quadratic behavior when building bibtex-strings.
24791
24792 * bibtex.el (bibtex-reference-key): Accept string entries whose
24793 reference key contains upper case letters.
24794
24795 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24796
24797 * bibtex.el (bibtex-reference-head): Allow entries to start with
24798 a new line.
24799
24800 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24801
24802 * bibtex.el: Hiding of entry bodies is not longer provided by
24803 bibtex.el directly. Instead the hideshow package can be used.
24804 Added a special bibtex entry to hs-special-modes-alist.
24805 (bibtex-hs-forward-sexp): Added for hideshow.el.
24806
24807 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24808
24809 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
24810 proceedings entry type (for cross referencing). Thanks to Wagner
24811 Toledo Correa for the suggestion.
24812
24813 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
24814
24815 2000-02-14 Kenichi Handa <handa@etl.go.jp>
24816
24817 * international/characters.el: Setup case table for Vietnamese.
24818
24819 2000-02-12 Gerd Moellmann <gerd@gnu.org>
24820
24821 * uniquify.el (toplevel): Require CL at compile time.
24822 (uniquify-push): Removed.
24823
24824 * shadowfile.el (shadow-when): Removed.
24825
24826 * tempo.el (tempo-dolist, tempo-mapc): Removed.
24827 (tempo-process-and-insert-string): Use dolist instead of tempo-dolist.
24828
24829 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
24830 regexp for paragraph-start.
24831
24832 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
24833 commas as well.
24834
24835 2000-02-10 Dave Love <fx@gnu.org>
24836
24837 * wid-edit.el: (widgets) [defgroup]: Remove url link.
24838 (widget-color-choice-list, widget-color-history, widget-mouse-help):
24839 Deleted.
24840 (widget-specify-field, widget-specify-button): Don't use
24841 widget-mouse-help as help-echo property.
24842 (default): Use #'ignore for :validate and :mouse-down-action.
24843 (checkbox): Add help-echo.
24844 (widget-sexp-validate): Rewritten to clarify error messages.
24845 (character): Use char-valid-p in :match function.
24846 (widget-color-complete): Use facemenu-color-alist.
24847 (widget-color-action): Use facemenu-read-color.
24848
24849 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
24850 set up `caar' &c that we now have.
24851
24852 2000-02-09 Ray Blaak <blaak@gnu.org>
24853
24854 * delphi.el: Make resourcestring a declaration region, like const
24855 and var.
24856
24857 2000-02-09 Dave Love <fx@gnu.org>
24858
24859 * bindings.el (mode-line-input-method-map): New variable.
24860 (mode-line-mule-info): Use it; fix last change.
24861 (mode-line-mode-menu): Move definition.
24862 (mode-line-mouse-sensitive-p): Deleted.
24863 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
24864 (make-mode-line-mouse-sensitive): Deleted. Body moved to top level.
24865
24866 * startup.el (command-line-1): Don't call
24867 make-mode-line-mouse-sensitive.
24868
24869 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
24870
24871 * mail/rmail.el (rmail-retry-failure): Use rmail-beginning-of-message
24872 before rmail-toggle-header, because the former toggles headers.
24873
24874 2000-02-06 Stefan Monnier <monnier@cs.yale.edu>
24875
24876 * diff-mode.el (diff-kill-junk): New interactive function.
24877 (diff-reverse-direction): Use delete-and-extract-region.
24878 (diff-post-command-hook): Restrict the area so that the hook also works
24879 outside of any diff hunk. This is necessary for the minor-mode.
24880 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
24881 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
24882
24883 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
24884 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
24885 so that it can be used more easily in <foo>-mode-hook. Also make sure
24886 to avoid duplicate entries.
24887 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
24888 (font-lock-remove-keywords): Just as was done for `add', allow it to
24889 work even if font-lock-mode is nil. Also make sure we don't modify
24890 any pre-existing list by forcing a copy-sequence. Finally rename
24891 `major-mode' to `mode'.
24892 (font-lock-fontify-syntactic-anchored-keywords)
24893 (font-lock-fontify-anchored-keywords)
24894 (font-lock-fontify-keywords-region): Use line-end-position.
24895 Don't make `font-lock-multiline' local (it's now done in
24896 font-lock-set-defaults).
24897 (font-lock-set-defaults): Make `font-lock-multiline' local.
24898 Move the `font-lock-fontified' creation to inside the `unless'.
24899
24900 2000-02-06 Andrew Innes <andrewi@gnu.org>
24901
24902 * term/w32-win.el (x-handle-args): Comment out call to message,
24903 which occurs before window system is initialized.
24904
24905 * makefile.nt: Add support for recompiling lisp code.
24906
24907 2000-02-04 Dave Love <fx@gnu.org>
24908
24909 * bindings.el (mode-line-mule-info): Fix/extend last change.
24910
24911 * completion.el: Replace completion-dolist with dolist.
24912
24913 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist, dotimes.
24914
24915 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
24916
24917 * textmodes/reftex.el (reftex-compile-variables): Regexp-quote the
24918 environment names before they go into the section regexp.
24919
24920 * textmodes/reftex-global.el (reftex-change-label): Add `A-Z' to
24921 char class in regexp.
24922
24923 * textmodes/reftex-parse.el (reftex-with-special-syntax):
24924 Bind `case-fold-search' to nil.
24925
24926 * progmodes/idlwave.el (idlwave-template):
24927 Respect `idlwave-abbrev-change-case'.
24928 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for)
24929 (idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat)
24930 (idlwave-while): Respect `idlwave-reserved-word-upcase'.
24931 (idlwave-rw-case): New function.
24932 (idlwave-statement-match): Fixed problem with assignment regexp.
24933 (idlwave-font-lock-keywords): Improved regexp for keyword parameters.
24934 (idlwave-surround): New argument LENGTH to support padding of
24935 operators longer than 1 char.
24936
24937 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
24938 idlwave-shell-expression-overlay. Implemented printing of
24939 expressions on higher levels of the calling stack.
24940 (idlwave-shell-display-level-in-calling-stack): Restore stack level.
24941 (idlwave-retrieve-expression-from-level): New function.
24942 (idlwave-shell-last-calling-stack): Variable removed.
24943 (idlwave-shell-reset): Argument action reversed (`visible' to
24944 `hidden'). Also remove stop-line overlay.
24945 (idlwave-shell-calling-stack-routine): New variable.
24946 (idlwave-shell-parse-stack-and-display): Messages now display
24947 negative level numbers.
24948 (idlwave-shell-mode): Set `modeline-format'.
24949 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
24950 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs 21.
24951 (idlwave-shell-print-expression-function): New option.
24952
24953 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere)
24954 (idlwave-toolbar-remove-everywhere): Keybindings prefix is now
24955 `tool-bar' instead of `toolbar'.
24956
24957 2000-02-02 Dave Love <fx@gnu.org>
24958
24959 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
24960 emacs-lisp-mode-hook. Don't check for defalias being defined.
24961
24962 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
24963 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions.
24964 Use the new builtins directly.
24965
24966 * whitespace.el (whitespace): Add :version to defgroup.
24967
24968 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
24969 Doc fix.
24970
24971 * thingatpt.el (sexp-at-point, symbol-at-point)
24972 (number-at-point, list-at-point): Add autoload cookie.
24973
24974 * recentf.el (recentf): Add :version to defgroup.
24975
24976 * quickurl.el (quickurl): Add :version to defgroup.
24977
24978 * elide-head.el (elide-head): Use point-marker more.
24979
24980 * bs.el (bs): Add :version to defgroup.
24981
24982 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
24983
24984 * progmodes/delphi.el (delphi): Add :version to defgroup.
24985
24986 2000-02-02 Gerd Moellmann <gerd@gnu.org>
24987
24988 * ange-ftp.el (ange-ftp-write-region): Handle case that
24989 succeeding process operation sets a different coding system.
24990
24991 * calculator.el: New file.
24992
24993 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
24994
24995 * frame.el (frames-on-display-list, framep-on-display): New functions.
24996 (display-mouse-p, display-popup-menus-p, display-graphic-p)
24997 (display-selections-p, display-screens, display-pixel-width)
24998 (display-pixel-height, display-mm-width, display-mm-height)
24999 (display-backing-store, display-save-under, display-planes)
25000 (display-color-cells, display-visual-class): New functions.
25001
25002 * term/tty-colors.el (tty-color-gray-shades): New function.
25003
25004 * faces.el (display-color-p): Use framep-on-display.
25005 (display-grayscale-p): New function.
25006
25007 2000-01-31 Dave Love <fx@gnu.org>
25008
25009 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
25010 (create-fontset-from-x-resource): Don't concat integers.
25011
25012 2000-01-31 Inge Frick <inge@nada.kth.se>
25013
25014 * view.el: Some changes in documentation. Removed some trailing
25015 whitespace. Changed some parameter names to agree with documentation.
25016 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
25017 window is not deleted. Modifies change 1998-04-26.
25018
25019 2000-01-31 Gerd Moellmann <gerd@gnu.org>
25020
25021 * windmove.el: New file.
25022
25023 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
25024 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
25025 progmodes/ebnf-yac.el: Update copyright and license info.
25026
25027 * jit-lock.el (jit-lock-function): Widen before calculating
25028 end position.
25029 (jit-lock-stealth-chunk-start): Rewritten.
25030
25031 * info.el (Info-title-face-alist): Removed.
25032 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New faces.
25033 (Info-fontify-node): Use these faces.
25034
25035 2000-01-30 Gerd Moellmann <gerd@gnu.org>
25036
25037 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
25038 (cl-macro-list1): Recognize `&allow-other-keys' instead of
25039 `&allow-other-keywords'.
25040
25041 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
25042 the list of directories scanned heuristically.
25043
25044 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to exist.
25045
25046 2000-01-30 Jason Rumney <jasonr@gnu.org>
25047
25048 * w32-fns.el: Define w32-tty-standard-colors.
25049
25050 * startup.el (command-line): Use w32-tty-standard-colors when in
25051 w32 console mode.
25052
25053 2000-01-30 Dave Love <fx@gnu.org>
25054
25055 * jka-compr.el (jka-compr-load): Fix up load-history.
25056
25057 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
25058
25059 * emacs-lisp/cl-macs.el: Revert previous change.
25060
25061 2000-01-29 Dave Love <fx@gnu.org>
25062
25063 * facemenu.el: Purecopy various strings.
25064
25065 * timezone.el (timezone-fix-time): Window against 69 for two-digit
25066 years. Deal with three-digit years.
25067
25068 * help.el (help-xref-symbol-regexp, help-xref-info-regexp):
25069 Use defconst, purecopy.
25070 (help-back-label): Purecopy it.
25071
25072 2000-01-18 Gerd Moellmann <gerd@gnu.org>
25073
25074 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
25075 variable. If non-nil, order the buffer list according to the
25076 currently selected frame.
25077 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
25078 non-nil, pass the selected frame to function buffer-list.
25079
25080 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
25081
25082 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
25083
25084 2000-01-28 Dave Love <fx@gnu.org>
25085
25086 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
25087
25088 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
25089 Don't use lisp-indent-hook property.
25090 (cl-abs): Remove.
25091
25092 * subr.el: Move out indent and edebug specs for when and unless.
25093
25094 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
25095 when, unless.
25096
25097 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
25098 unless, when.
25099
25100 2000-01-28 Gerd Moellmann <gerd@gnu.org>
25101
25102 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
25103 `collecting' as synonym for `collect'.
25104
25105 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
25106 for the case it contains spaces.
25107
25108 * simple.el (what-cursor-position): Change formatting of messages.
25109
25110 * frame.el (delete-other-frames): New function.
25111 (toplevel): Bind it to C-x 5 1.
25112
25113 * sort.el (sort-numeric-base): New option.
25114 (sort-numeric-fields): If number starts with `0' or `0[xX[',
25115 interpret it as octal or hexadecimal. Use sort-numeric-base
25116 as default base.
25117
25118 * progmodes/glasses.el: New file.
25119
25120 2000-01-27 Gerd Moellmann <gerd@gnu.org>
25121
25122 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
25123 userids differently.
25124
25125 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
25126 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
25127 progmodes/ebnf-yac.el: New files.
25128
25129 2000-01-26 Dave Love <fx@gnu.org>
25130
25131 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
25132 on a function with an empty body. [From Eric Ludlam.]
25133
25134 2000-01-25 Andre Spiegel <spiegel@gnu.org>
25135
25136 * vc.el (vc-version-diff): Make sure file name is expanded.
25137
25138 2000-01-25 Gerd Moellmann <gerd@gnu.org>
25139
25140 * scroll-bar.el (scroll-bar-timer): Variable removed.
25141 (scroll-bar-toolkit-scroll): Don't use a timer.
25142
25143 2000-01-25 Kenichi Handa <handa@etl.go.jp>
25144
25145 * language/thai-util.el (thai-composition-function):
25146 Delete superfluous `a'.
25147
25148 2000-01-24 Dave Love <fx@gnu.org>
25149
25150 * fortran.el (fortran-mode): Use beginning-of-defun-function,
25151 end-of-defun-function.
25152
25153 * font-lock.el (turn-on-font-lock): Don't depend on window-system &c.
25154
25155 2000-01-22 Jason Rumney <jasonr@gnu.org>
25156
25157 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
25158 conflicts with new face support.
25159
25160 2000-01-22 Richard M. Stallman <rms@gnu.org>
25161
25162 * replace.el (query-replace): Rename last arg to DELIMITED.
25163 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
25164 (query-replace-regexp): Likewise.
25165
25166 2000-01-20 Richard M. Stallman <rms@gnu.org>
25167
25168 * subr.el (with-syntax-table): Use make-symbol, not gensym.
25169
25170 * emacs-lisp/lisp.el (beginning-of-defun-function):
25171 Variable renamed from beginning-of-defun.
25172 Do not call make-variable-buffer-local.
25173 (beginning-of-defun-raw): Use new variable name; doc fix.
25174 (beginning-of-defun): Doc fix.
25175 (end-of-defun-function): Variable renamed from end-of-defun.
25176 Do not call make-variable-buffer-local.
25177 (end-of-defun): Use new variable name; doc fix.
25178
25179 * subr.el (dolist, dotimes): Copied from cl-macs.el
25180 and made to work.
25181
25182 * mail/undigest.el (rmail-digest-end-regexps):
25183 Variable replaces rmail-digest-end-regexp.
25184 Allows multiple regexps for detecting the end line.
25185 (undigestify-rmail-message): Corresponding changes.
25186
25187 2000-01-19 Dave Love <fx@gnu.org>
25188
25189 * files.el (user-init-file): Don't declare here -- is primitive.
25190
25191 * startup.el (command-line): Check for compiled user-init-file and
25192 set to uncompiled version if necessary.
25193
25194 2000-01-18 Gerd Moellmann <gerd@gnu.org>
25195
25196 * mail/undigest.el (rmail-digest-end-regexp): New user option.
25197 (undigestify-rmail-message): Use it.
25198
25199 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
25200
25201 2000-01-17 Gerd Moellmann <gerd@gnu.org>
25202
25203 * tmm.el (tmm-goto-completions): Adapt to prompt being part
25204 of mini-buffer.
25205
25206 2000-01-14 Gerd Moellmann <gerd@gnu.org>
25207
25208 * emacs-lisp/copyright.el (copyright-update): Removed the
25209 requirement for a trailing space from `copyright-regexp', to
25210 support copyrights with owner specified on a separate line..
25211
25212 * align.el: New file.
25213
25214 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
25215
25216 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
25217
25218 2000-01-13 Dave Love <fx@gnu.org>
25219
25220 * ph.el: Removed. (Obsoleted by EUDC.)
25221
25222 2000-01-13 Gerd Moellmann <gerd@gnu.org>
25223
25224 * net/eudc.el (toplevel): Remove autoloaded code installing
25225 menu with easymenu, because that causes build problems.
25226
25227 * frame.el (frame-notice-user-settings): New variable.
25228 (frame-notice-user-settings): Don't modify frame parameters
25229 if called a second time.
25230
25231 2000-01-13 Richard M. Stallman <rms@gnu.org>
25232
25233 * frame.el (frame-notice-user-settings):
25234 Notice default-frame-parameters even for non-window frames.
25235
25236 2000-01-13 Gerd Moellmann <gerd@gnu.org>
25237
25238 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
25239 for Emacs.
25240 (eudc-bob-can-display-inline-images): Extend for Emacs.
25241 (eudc-bob-toggle-inline-display): Ditto.
25242 (eudc-bob-display-jpeg): Ditto.
25243
25244 2000-01-12 Gerd Moellmann <gerd@gnu.org>
25245
25246 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
25247 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
25248 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
25249
25250 * add-log.el (add-change-log-entry): Fix error trying an
25251 `(insert nil)'.
25252
25253 * subdirs.el: Add `net' directory.
25254
25255 * net: New directory.
25256
25257 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
25258 eval-last-sexp. Don't bind debug-on-error here.
25259 (eval-last-sexp): New function. Bind debug-on-error if
25260 eval-expression-debug-on-error is non-nil.
25261 (eval-defun-2, eval-defun): Likewise.
25262
25263 * simple.el (eval-expression): Don't bind debug-on-error if
25264 eval-expression-debug-on-error is nil. Detect changed
25265 debug-on-error, and propagate new value to global binding, if
25266 eval-expression-debug-on-error is non-nil,
25267 (eval-expression-debug-on-error): Change doc string.
25268
25269 2000-01-11 Richard M. Stallman <rms@gnu.org>
25270
25271 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
25272
25273 * emacs-lisp/lisp-mode.el (with-syntax-table):
25274 Set up lisp-indent-function property.
25275
25276 * subr.el (with-syntax-table): Moved from simple.el.
25277
25278 * simple.el (with-syntax-table): Moved to subr.el.
25279
25280 2000-01-11 Gerd Moellmann <gerd@gnu.org>
25281
25282 * tmm.el (tmm-shortcut): Delete region after prompt instead
25283 of erasing buffer.
25284
25285 * textmodes/fill.el (fill-common-string-prefix): New function.
25286 (fill-context-prefix): Use the longest common prefix of first
25287 and second line fill prefix, if there is one.
25288
25289 2000-01-11 Richard M. Stallman <rms@gnu.org>
25290
25291 * array.el (array-mode): Don't use make-variable-buffer-local.
25292 Use make-local-variable for `truncate-lines'.
25293
25294 2000-01-11 Jari Aalto <jari.aalto@poboxes.com>
25295
25296 * add-log.el (add-log-current-defun): Handle user-defined
25297 add-log-current-function returning nil,
25298
25299 * add-log.el (add-change-log-entry): Insert version number
25300 if having found a current function
25301
25302 * add-log.el (add-log-current-defun):
25303 Call `add-log-current-defun-function'. Try matches at level 0 and
25304 level 1. Strip whitespace from defun found.
25305
25306 2000-01-10 John Wiegley <johnw@gnu.org>
25307
25308 * allout.el (isearch-done/outline-provisions): Added `edit'
25309 argument to correspond with the current definition of `isearch-done'.
25310
25311 2000-01-10 Dave Love <fx@gnu.org>
25312
25313 * elide-head.el (elide-head): Use point-marker, not point.
25314
25315 2000-01-10 Gerd Moellmann <gerd@gnu.org>
25316
25317 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
25318 before and after the year 2000.
25319
25320 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
25321 Add ispell- prefix.
25322
25323 2000-01-10 Ken Stevens <k.stevens@ieee.org>
25324
25325 * ispell.el: Only define dictionaries in menus when they exist.
25326 (version18p): New variable.
25327 (version20p): New variable.
25328 (xemacsp): New variable.
25329 (ispell-choices-win-default-height): Fix for XEmacs visibility.
25330 (ispell-dictionary-alist1): Added Brasileiro dictionary.
25331 (ispell-dictionary-alist6): Russian command lines no longer accept
25332 run-together words.
25333 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
25334 (ispell-dictionary-alist): Add koi8-r to customize definition.
25335 (check-ispell-version): Added documentation string. Return library
25336 path when called non-interactively.
25337 (ispell-menu-map-needed): Uses new variables.
25338 (ispell-library-path): New variable.
25339 (ispell-decode-string): XEmacs fix for bogus variable bindings.
25340 (ispell-word): Improved documentation string. Test for valid
25341 character mappings. Correctly check typed in word changes that can
25342 result in single words split into multiple words.
25343 Return replacement word.
25344 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
25345 replace in recursive query replace mode. Help message for
25346 recursive edit mode.
25347 (ispell-show-choices): Protect against bad framepop bindings.
25348 (ispell-help): Fix to work with XEmacs.
25349 (ispell-highlight-spelling-error): Use new variables.
25350 (ispell-overlay-window): Fix to work with XEmacs.
25351 (ispell-parse-output): Passed and returns location information
25352 tracking spelling corrections. Doesn't recheck same word on
25353 current line.
25354 (ispell-init-process): Protect against bogus XEmacs variable binding.
25355 Fix call to single argument in sleep-for. Use new variables.
25356 (ispell-region): Passed and returns location information tracking
25357 spelling corrections. Doesn't check same word on current line.
25358 Improved documentation string. Doesn't resend a line already
25359 checked to the ispell process - fixes bug in LaTeX parsing.
25360 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
25361 (ispell-skip-region): No longer skips <TT> in SGML.
25362 (ispell-process-line): Tracks location information with spelling
25363 corrections. Added documentation string. Accounts for words
25364 already accepted on this line. Don't allow query-replace on line
25365 starting with math characters. Doesn't resend a line already sent
25366 to ispell process. Fixes alignment error bug.
25367
25368 2000-01-10 Richard M. Stallman <rms@gnu.org>
25369
25370 * dired-x.el (dired-guess-shell-alist-default):
25371 Suggest xloadimage, which is free, not xv, which isn't.
25372
25373 * ange-ftp.el (ange-ftp-file-name-nondirectory):
25374 Don't ever include the host name or user name in the value.
25375
25376 2000-01-09 Gerd Moellmann <gerd@gnu.org>
25377
25378 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
25379 of a real newline.
25380
25381 2000-01-09 Stephen Eglen <stephen@gnu.org>
25382
25383 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
25384 for .png files.
25385
25386 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
25387
25388 * cus-edit.el (custom-hook-convert-widget): Fix comment.
25389
25390 2000-01-09 Gerd Moellmann <gerd@gnu.org>
25391
25392 * progmodes/cperl-mode.el: Replace ^F with ^L.
25393
25394 * sendmail.el (toplevel): Provide `sendmail' when compiling before
25395 `require'ing rmail and mailalias to prevent infinite recursion.
25396
25397 2000-01-08 Dave Love <fx@gnu.org>
25398
25399 * emacs-lisp/backquote.el: Remove inappropriate customization
25400 (allowing custom.el to use backquote).
25401
25402 2000-01-07 Dave Love <fx@gnu.org>
25403
25404 * add-log.el (add-log-debugging): Deleted.
25405 (add-change-log-entry): Treat a backup FILE-NAME as its parent
25406 file. Remove debugging code.
25407 (change-log-get-method-definition, change-log-name): Add doc.
25408 (change-log-sortable-date-at): New function.
25409 (change-log-merge): New command.
25410
25411 * time.el (display-time-string-forms): Make the Mail string active.
25412 (display-time-update): Provide help-echo for load average.
25413
25414 * bindings.el (make-mode-line-mouse2-map): New function.
25415 (mode-line-modified): Use it and simplify.
25416 (mode-line-mule-info): Provide help-echo info.
25417 (minor-mode-alist): Activate the strings.
25418 (make-mode-line-mouse-sensitive): Simplify for
25419 mode-line-buffer-identification.
25420
25421 2000-01-07 Gerd Moellmann <gerd@gnu.org>
25422
25423 * play/pong.el: New file.
25424
25425 2000-01-06 Dave Love <fx@gnu.org>
25426
25427 * array.el: Assorted cleanups for compiler warnings, doc strings,
25428 `array-' prefix for symbols.
25429
25430 2000-01-05 Dave Love <fx@gnu.org>
25431
25432 * textmodes/outline.el (outline-mode-menu-bar-map):
25433 Add outline-headers-as-kill.
25434 (outline-mode): Define imenu-generic-expression.
25435 (outline-headers-as-kill): New command.
25436
25437 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
25438 from paragraph-start.
25439 (paragraph-indent-minor-mode): New command.
25440
25441 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
25442 M-C-e, M-C-h, C-j, C-xnd, TAB.
25443 (fortran-mode): Set beginning-of-defun, end-of-defun.
25444 (fortran-column-ruler): Simplify.
25445 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
25446 (fortran-with-subprogram-narrowing): Likewise.
25447 (fortran-indent-subprogram): Call mark-defun.
25448 (fortran-check-for-matching-do): Change narrowing.
25449
25450 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
25451 (cl-lucid-hash-tag): Delete.
25452 (cl-hash-table-p): Correct test for native table.
25453 (cl-hash-table-count): Use hash-table-count.
25454
25455 * browse-url.el (browse-url): Fix case of
25456 browse-url-browser-function being an alist.
25457
25458 2000-01-05 Carsten Dominik <cd@gnu.org>
25459
25460 * textmodes/reftex-vars.el (reftex-parse-file-extension)
25461 (reftex-index-phrase-file-extension): New options.
25462
25463 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
25464 Use new option `reftex-index-phrase-file-extension'.
25465
25466 * textmodes/reftex.el (reftex-access-parse-file): Use new option
25467 `reftex-parse-file-extension'.
25468
25469 2000-01-05 Dave Love <fx@gnu.org>
25470
25471 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
25472 (beginning-of-defun-raw): Use it.
25473 (end-of-defun): New variable.
25474 (end-of-defun): Use it.
25475 (check-parens): New command.
25476
25477 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
25478
25479 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
25480 (hs-show-block): Don't use `mapcar' when not accumulating.
25481
25482 Fix buglet in local variables initialization.
25483
25484 2000-01-05 Andreas Schwab <schwab@suse.de>
25485
25486 * hscroll.el (hscroll): Doc fix.
25487
25488 2000-01-05 Carsten Dominik <cd@gnu.org>
25489
25490 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar):
25491 Require idlw-toolbar.
25492
25493 * progmodes/idlwave.el (idlwave-load-system-rinfo): Load must read
25494 file idlw-rinfo.el.
25495 (idlwave-customize): Load must read file idlw-shell.el.
25496 (idlwave-create-customize-menu): Load must read file idlw-shell.el.
25497
25498 2000-01-05 Carsten Dominik <dominik@astro.uva.nl>
25499
25500 * progmodes/idlw-shell.el: Also provide idlwave-shell
25501 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
25502 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
25503
25504 * textmodes/reftex-dcr.el: Rename from reftex-vcr.el, provide
25505 both reftex-dcr and reftex-vcr.
25506
25507 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
25508
25509 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
25510
25511 * ps-print.el: PostScript code now is in separate files, doc fix.
25512 (ps-print-version): New version number (5.0.3).
25513 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
25514 local.
25515 (ps-spool-config): Initialization fix.
25516 (ps-print-prologue-1, ps-print-prologue-2)
25517 (ps-print-duplex-feature): PostScript code moved to separated file.
25518 (ps-background-image): Little code reformating.
25519 (ps-begin-file, ps-begin-job): Fix code.
25520 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
25521 (ps-prologue-file): New fun.
25522
25523 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
25524
25525 * ps-vars.el: Eliminated.
25526
25527 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
25528 `;;;###autoload'.
25529
25530 * ps-print.el: ps-vars eliminated, doc fix.
25531 (ps-print-version): New version number (5.0.2).
25532 (ps-spool-config): Initialization fix.
25533 (ps-print-customize): New fun.
25534
25535 2000-01-04 Gerd Moellmann <gerd@gnu.org>
25536
25537 * autorevert.el (auto-revert-mode): Return value of auto-revert-mode.
25538
25539 2000-01-04 Dave Love <fx@gnu.org>
25540
25541 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
25542 menu items.
25543
25544 2000-01-03 Dave Love <fx@gnu.org>
25545
25546 * elide-head.el (elide-head) [defgroup]: Add :version.
25547
25548 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
25549 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count):
25550 Use `cl-hash-table-p', not `hash-table-p'.
25551 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
25552
25553 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
25554
25555 * faces.el (face-read-integer, read-face-attribute)
25556 (color-defined-p, color-values): Unspecified-{f,b}g are now strings.
25557
25558 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
25559
25560 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
25561 at comment end, and re-insert them after filling.
25562
25563 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
25564
25565 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
25566 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
25567 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
25568
25569 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
25570
25571 * term/x-win.el (xw-defined-colors): Call color-supported-p,
25572 the new name of face-color-supported-p.
25573
25574 * term/w32-win.el (xw-defined-colors): Likewise.
25575
25576 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
25577
25578 * simple.el (completion-setup-function): Count completion-size
25579 from minibuffer-prompt-end, not from point-min.
25580
25581 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
25582
25583 * faces.el (read-face-attribute, defined-colors, color-defined-p):
25584 Pass the frame to tty-color-* functions.
25585 (display-color-p, frame-set-background-mode): Pass the frame to
25586 tty-display-color-p.
25587
25588 * term/tty-colors.el (tty-defined-color-alist): Renamed from
25589 tty-color-alist.
25590 (tty-color-alist, tty-modify-color-alist): New functions.
25591 (tty-color-define, tty-color-clear, tty-color-approximate)
25592 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept an
25593 optional parameter FRAME.
25594
25595 2000-01-01 Gerd Moellmann <gerd@gnu.org>
25596
25597 * image.el (create-image, defimage): Don't assume image data is
25598 a string.
25599
25600 * image.el (defimage): Handle specifications containing :data
25601 instead of :file.
25602 (image-type-from-data): New function.
25603 (image-type-from-file-header): Use it.
25604 (create-image): Add parameter DATA-P.
25605
25606 See ChangeLog.8 for earlier changes.
25607
25608 ;; Local Variables:
25609 ;; coding: iso-2022-7bit
25610 ;; End:
25611
25612 Copyright (C) 2000, 2001 Free Software Foundation, Inc.
25613 Copying and distribution of this file, with or without modification,
25614 are permitted provided the copyright notice and this notice are preserved.