*** empty log message ***
[bpt/emacs.git] / lisp / ChangeLog
1 2002-02-18 Colin Walters <walters@verbum.org>
2
3 * calc/calcalg2.el (math-solve-get-int): Convert return value from
4 `math-get-from-counter' to a string before calling `concat' on it.
5
6 * calc/calc-maint.el (calc-split-manual): Look for calc.texi.
7 (calc-public-autoloads): Obsolete; remove.
8 (calc-private-autoloads): Ditto.
9 (calc-add-autoloads): Ditto.
10
11 * calc/calc-macs.el (calc-with-default-simplification): Use &rest
12 for body.
13
14 2002-02-17 Jason Rumney <jasonr@gnu.org>
15
16 * w32-win.el (x-option-alist, x-long-option-alist)
17 (x-switch-definitions): Remove, use command-line-x-option-alist
18 instead to be consistent with X.
19 (x-handle-initial-switch): New function.
20
21 2002-02-17 Eli Zaretskii <eliz@is.elta.co.il>
22
23 * faces.el (mode-line-inactive, header-line): Add the :inherit
24 attribute for the tty case.
25
26 2002-02-17 stanislav shalunov <shalunov@internet2.edu>
27
28 * mail/uce.el (uce-reply-to-uce): Fix incorrect behavior when
29 invoked from Rmail with full headers displayed.
30
31 2002-02-17 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
32
33 * emacs-lisp/lisp.el (mark-defun): Don't leave multiple marks
34 when repeated.
35 * textmodes/paragraphs.el (mark-paragraph): Ditto.
36
37 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
38
39 * menu-bar.el (menu-bar-showhide-menu): Added speedbar.
40 (menu-bar-tools-menu): Removed speedbar.
41
42 * textmodes/ispell.el (ispell-menu-map): Added `customize-ispell'
43 and `flyspell-mode' entries.
44
45 * textmodes/flyspell.el (flyspell): Add to ispell group.
46
47 2002-02-17 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
48
49 * emacs-lisp/lisp.el (mark-sexp): Don't leave multiple marks when
50 repeated.
51 (mark-defun): Mark more if repeated.
52
53 2002-02-17 Colin Walters <walters@verbum.org>
54
55 * ibuf-ext.el (ibuffer-toggle-sorting-mode): Make it work. Patch
56 from John Paul Wallington <jpw@shootybangbang.com>.
57
58 * ibuffer.el (ibuffer-truncate-lines): New option.
59 (ibuffer-mode): Use it.
60
61 2002-02-17 Kim F. Storm <storm@cua.dk>
62
63 * cus-start.el: Add mouse-highlight.
64
65 2002-02-16 Eli Zaretskii <eliz@is.elta.co.il>
66
67 * Makefile.in (DONTCOMPILE): Remove cus-start.el.
68
69 * cus-start.el: Add automatic-hscroll-margin and
70 automatic-hscroll-step.
71
72 2002-02-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
73
74 * cus-start.el (x-autoselect-window): Allow customization.
75
76 * eshell/em-alias.el (eshell-alias-initialize): Do not use
77 make-local-hook.
78
79 * eshell/em-cmpl.el (eshell-cmpl-initialize): Likewise.
80
81 * eshell/em-dirs.el (eshell-dirs-initialize): Likewise.
82
83 * eshell/em-glob.el (eshell-glob-initialize): Likewise.
84
85 * eshell/em-hist.el (eshell-hist-initialize): Likewise.
86
87 * eshell/em-pred.el (eshell-pred-initialize): Likewise.
88
89 * eshell/em-prompt.el (eshell-prompt-initialize): Likewise.
90
91 * eshell/em-rebind.el (eshell-rebind-initialize): Likewise.
92
93 * eshell/em-smart.el (eshell-smart-initialize): Likewise.
94
95 * eshell/em-unix.el (eshell-unix-initialize): Likewise.
96
97 * eshell/esh-cmd.el (eshell-cmd-initialize): Likewise.
98
99 * eshell/esh-ext.el (eshell-ext-initialize): Likewise.
100
101 * eshell/esh-io.el (eshell-io-initialize): Likewise.
102
103 * eshell/esh-mode.el (eshell-mode): Likewise.
104
105 * eshell/esh-test.el (eshell-show-usage-metrics): Likewise.
106
107 * eshell/esh-var.el (eshell-var-initialize): Likewise.
108
109 * progmodes/idlw-shell.el (idlwave-shell-mode): Likewise.
110
111 * progmodes/idlwave.el (idlwave-mode): Likewise.
112
113 * textmodes/reftex-sel.el (reftex-select-label-mode)
114 (reftex-select-bib-mode): Likewise.
115
116 2002-02-16 John Wiegley <johnw@gnu.org>
117
118 * eshell/em-hist.el (eshell-hist-initialize): When in the
119 minibuffer, use the global value of `eshell-history-ring', and
120 never save it to disk, or ask to save it to disk. This allows
121 users of session.el to control whether its global state should be
122 persisted or not.
123 (eshell-add-command-to-history): Don't write Eshell's history out
124 to disk, let the governing mode control that upon exit.
125
126 2002-02-16 Eli Zaretskii <eliz@is.elta.co.il>
127
128 * eshell/eshell.el (eshell-command): Before reading from the
129 minibuffer, add eshell-add-command-to-history to
130 minibuffer-exit-hook, and remove it after read-from-minibuffer
131 returns.
132
133 * eshell/em-hist.el (eshell-add-input-to-history): New function,
134 with most of the code from eshell-add-to-history.
135 (eshell-add-command-to-history): New function, to record in
136 eshell-history the commands run via eshell-command.
137 (eshell-add-to-history): Call eshell-add-command-to-history to do
138 most of the work.
139
140 2002-02-16 John Wiegley <johnw@gnu.org>
141
142 * eshell/esh-ext.el (eshell-external-command): Added a fix for
143 XEmacs' new dired.el, which adds a global entry in the
144 `file-name-handler-alist'.
145
146 2002-02-16 John Wiegley <johnw@gnu.org>
147
148 * align.el (align-region): Added a missing name argument.
149
150 2002-02-16 John Wiegley <johnw@gnu.org>
151
152 * eshell/esh-ext.el (eshell-script-interpreter): Allow whitespace
153 after the #! of a shell interpretor specification.
154
155 2002-02-15 Richard M. Stallman <rms@gnu.org>
156
157 * help.el (describe-key-briefly): Make output in INSERT case
158 look just like what is displayed in the normal case.
159
160 2002-02-15 Andreas Schwab <schwab@suse.de>
161
162 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Require
163 non-letter after specials.
164
165 2002-02-15 Eli Zaretskii <eliz@is.elta.co.il>
166
167 * menu-bar.el (menu-bar-tools-menu): Add an item for Calculator.
168
169 2002-02-15 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
170
171 * simple.el (mark-word): Mark more if repeated.
172 * textmodes/paragraphs.el (mark-paragraph): Ditto.
173 (mark-end-of-sentence): Ditto.
174
175 2002-02-15 Per Abrahamsen <abraham@dina.kvl.dk>
176
177 * wid-edit.el (widgetp): Made it more robust.
178
179 2002-02-14 Per Abrahamsen <abraham@dina.kvl.dk>
180
181 * facemenu.el (describe-text-done): New function.
182 (describe-text-mode-map): New variable.
183 (describe-text-mode-hook): New option.
184 (describe-text-mode): New function.
185 (describe-text-widget): New function.
186 (describe-text-sexp): New function.
187 (describe-text-properties): New function.
188 (describe-text-category): New command.
189 (describe-text-at): New command.
190 (facemenu-menu): Replace `list-text-properties-at' with
191 `describe-text-at' in the menu.
192
193 * wid-edit.el (widgetp): New function.
194 * wid-edit.el (widget-keymap, widget-insert, widget-setup):
195 Autoloaded.
196
197 * emacs-lisp/pp.el (pp-to-string): Autoloaded.
198
199 * wid-browse.el: Removed version and x-url keywords.
200
201 2002-02-13 Kim F. Storm <storm@cua.dk>
202
203 * cus-start.el (mode-line-in-non-selected-windows):
204 Allow customization.
205
206 2002-02-13 Richard M. Stallman <rms@gnu.org>
207
208 * textmodes/bibtex.el (bibtex-parse-buffers-stealthily):
209 Tell bibtex-parse-keys to output no progress messages.
210
211 * international/mule-diag.el (list-input-methods):
212 Use help-input-method, not describe-input-method, for button type.
213
214 * register.el (describe-register-1): Access register contents here.
215
216 * textmodes/text-mode.el (text-mode-hook-identify): Restore
217 previous definition. Add to text-mode-hook again.
218
219 * mail/mailabbrev.el (define-mail-abbrev): Define as system abbrev.
220 (mail-abbrev-in-expansion-header-p): Copy the code of mail-header-end
221 to avoid needing sendmail.el at run time.
222
223 * bindings.el (mode-line-minor-mode-keymap): Definition moved up.
224 Initialization moved up too.
225 (mode-line-modes): Use :propertize.
226 (mode-line-mode-menu-keymap): Var deleted.
227 (mode-line-copied-mode-name): Var deleted.
228 (mode-line-mode-name): Function deleted.
229 (mode-line-mode-menu): Each item now shows its mode line lighter.
230 (minor-mode-alist): Don't call propertize here.
231
232 2002-02-12 Eli Zaretskii <eliz@is.elta.co.il>
233
234 * progmodes/pascal.el (pascal-imenu-generic-expression): Add
235 menu-title and fix parentheses.
236
237 2002-02-12 Per Abrahamsen <abraham@dina.kvl.dk>
238
239 * menu-bar.el (menu-bar-options-save): Removed `truncate-lines'.
240 (menu-bar-options-menu): Don't set default value for
241 `truncate-lines'.
242
243 2002-02-12 Per Abrahamsen <abraham@dina.kvl.dk>
244
245 * menu-bar.el (menu-bar-options-save): Only save
246 `current-language-environment' and `default-input-method' when
247 marked as customized.
248
249 * international/mule-cmds.el
250 (setup-specified-language-environment): Mark
251 `current-language-environment' as customized.
252 (set-input-method): Mark
253 `default-input-method' as customized when called interactively.
254 (toggle-input-method): Ditto.
255
256 2002-02-11 Colin Walters <walters@verbum.org>
257
258 * ibuffer.el (ibuffer-switch-format): Supply required argument for
259 `ibuffer-current-formats'.
260
261 2002-02-11 Miles Bader <miles@gnu.org>
262
263 * faces.el (mode-line-inactive): Add dark-background variant.
264
265 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
266
267 * toolbar/tool-bar.el (tool-bar-mode): Removed standard value.
268 * menu-bar.el (menu-bar-mode): Ditto.
269 * cus-edit.el (customize-mark-to-save): Always save variables
270 without a standard value.
271
272 * menu-bar.el (menu-bar-make-toggle): Made it aware of customize.
273 (menu-bar-options-save): Ditto.
274 (menu-bar-showhide-menu): Ditto.
275 (menu-bar-options-menu): Ditto.
276 (menu-bar-scroll-bar-right, menu-bar-scroll-bar-left,
277 menu-bar-scroll-bar-none): Removed.
278 (menu-bar-showhide-scroll-bar-menu): Use customize aware lambda
279 expressions instead.
280
281 * cus-edit.el (customize-set-value): Return value.
282 (customize-set-variable): Ditto.
283 (customize-save-variable): Ditto.
284 (customize-set-variable): Load dependencies before setting value.
285 (custom-load-symbol): Autoload it.
286 (customize-mark-as-set): New function.
287
288 2002-02-11 Eli Zaretskii <eliz@is.elta.co.il>
289
290 * cus-start.el: Don't warn about "x-*" symbols when building a
291 non-GUI version.
292
293 2002-02-11 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
294
295 * strokes.el (strokes-do-stroke, strokes-do-complex-stroke):
296 Doc fix.
297 (strokes-help): Do not use doubled with-output-to-temp-buffer.
298 Fix the help string.
299 (strokes-prompt-user-save-strokes): Fix typo.
300 (strokes-list-strokes): Use proper exit-actionargument for
301 view-buffer.
302 Update copyright notice.
303
304 * international/mule-diag.el: Various doc and message fixes.
305 (non-iso-charset-alist): Add mac-roman. Don't add entries for
306 codepages already present.
307 (list-block-of-chars): Display space for null entries in
308 translation table. Display tab specially.
309 (list-non-iso-charset-chars): Check for null charsets. Use pop
310 for clarity. Don't break 8-bit sets into sections between ranges.
311 (list-charset-chars): Avoid indent-tabs-mode.
312 (describe-char-after): Maybe use the text property for syntax
313 table information. Maybe report char-code-property-table info.
314 Maybe report character's unicode. Tweak printing of list info.
315 (list-input-methods): Add xref buttons.
316 (dump-charsets, dump-codings): Deleted (obsolete).
317 From Dave Love <fx@gnu.org>.
318
319 2002-02-10 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
320
321 * menu-bar.el (menu-bar-showhide-menu): Rename functions for
322 toggling.
323
324 2002-02-10 Michael Kifer <kifer@cs.stonybrook.edu>
325
326 * viper-util.el (viper-read-key-sequence): fixed so it'll read
327 fast key sequences in emacs native mode
328 (viper-events-to-keys): deleted
329
330 * viper.el (describe-key, describe-key-briefly): get rid of
331 viper-events-to-keys.
332
333 * ediff-init.el (ediff-has-gutter-support): Steven Turnbull's patch.
334
335 * ediff-wind.el (ediff-setup-control-frame): Use
336 ediff-has-gutter-support.
337
338 * ediff-util.el (ediff-dispose-of-variant-according-to-user):
339 check if buff is alive.
340
341 * ediff.el: typo in comment.
342
343 2002-02-09 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
344
345 * menu-bar.el (menu-bar-options-save): Take care of
346 line-number-mode and column-number-mode variables.
347 (menu-bar-showhide-menu): New menu-items "Show Line Number" and
348 "Show Column Number" in "Show/Hide" menu.
349
350 2002-02-09 Richard M. Stallman <rms@gnu.org>
351
352 * mail/mailabbrev.el (mail-mode-map): Use eval-after-load to change it.
353
354 2002-02-09 Kim F. Storm <storm@cua.dk>
355
356 * faces.el (mode-line-inactive): New face for mode-line for
357 non-selected windows.
358 (mode-line): Doc fix: Only used for selected window.
359
360 2002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
361
362 * calendar/cal-menu.el (calendar-mode-map): Change the menu item's
363 name to "Insert Diary Entry".
364
365 2002-02-08 Stefan Monnier <monnier@cs.yale.edu>
366
367 * font-lock.el (save-buffer-state): Use restore-buffer-modified-p.
368 (c-font-lock-syntactic-face-function): Accept doxygen-style comments.
369
370 2002-02-08 Richard M. Stallman <rms@gnu.org>
371
372 * textmodes/text-mode.el (text-mode-hook-identify): Define as no-op.
373
374 2002-02-08 Andreas Schwab <schwab@suse.de>
375
376 * calc/calc.el (calcDigit-key): Use minibuffer-prompt-end instead
377 of point-min.
378
379 2002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
380
381 * net/ange-ftp.el (ange-ftp-process-handle-line)
382 (ange-ftp-set-xfer-size): If the file's size is a float, divide
383 by 1024 instead of using ash.
384
385 * international/mule-cmds.el (select-safe-coding-system):
386 State the buffer's name in the message popped in the *Warning* buffer,
387 and make sure the offending buffer is displayed.
388
389 2002-02-07 Markus Rost <rost@math.ohio-state.edu>
390
391 * ffap.el (ffap-newsgroup-p): Test for non-nil symbol-value of htb.
392
393 2002-02-07 Richard M. Stallman <rms@gnu.org>
394
395 * terminal.el (terminal-map): Define [menu-bar] so global def is seen.
396
397 * register.el (list-registers): New command.
398 (describe-register-1): New subroutine, taken out of view-register.
399
400 * emacs-lisp/copyright.el (copyright-regexp):
401 Delete the unibyte copyright symbol; it's redundant.
402 Fix a spazz in the multibyte encoding here.
403
404 2002-02-07 Dave Love <fx@gnu.org>
405
406 * language/cyril-util.el (cyrillic-encode-koi8-r-char)
407 (cyrillic-encode-alternativnyj-char): Get translation tables from
408 symbol properties, not as variables.
409 (standard-display-cyrillic-translit): Include unicodes.
410
411 2002-02-06 Kim F. Storm <storm@cua.dk>
412
413 * help.el (where-is): Report remapped commands.
414
415 * help-fns.el (describe-function-1): Ditto.
416
417 * subr.el (global-set-key, local-set-key): Accept a symbol for the
418 KEY argument (like define-key).
419
420 2002-02-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
421
422 * textmodes/flyspell.el (flyspell-insert-function): Doc fix.
423
424 2002-02-06 Richard M. Stallman <rms@gnu.org>
425
426 * mail/mailabbrev.el: Require sendmail only at compile time.
427 (mail-mode-header-syntax-table): Var deleted.
428 (mail-abbrev-syntax-table): Init to nil, will compute when needed.
429 (sendmail-pre-abbrev-expand-hook): Only temporarily change
430 local-abbrev-table and the syntax table.
431 Compute mail-abbrev-syntax-table if that has not been done.
432
433 * progmodes/compile.el (grep-compute-defaults): Definition moved up.
434
435 * emacs-lisp/debug.el (debugger-frame-offset): Var deleted.
436 (debugger-frame-number): Figure out the offset directly.
437 (debugger-setup-buffer): Don't use debugger-frame-offset.
438 (debugger-frame, debugger-frame-clear): Likewise.
439 (debugger-jump): Don't alter debugger-frame-offset.
440
441 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
442 Replace foo-p as var name with foo-flag, not foo-p-flag.
443
444 * hilit-chg.el (highlight-changes-active-string): Default to +Chg.
445 (highlight-changes-passive-string): Default to -Chg.
446 (highlight-changes-global-modes): Doc fix.
447
448 * dired.el (dired-get-filename): Add /: when appropriate
449 to avoid taking a local name as remote.
450
451 * files.el (file-name-non-special): Add special handling for
452 file-name-sans-versions, file-name-completion, and
453 file-name-all-completions.
454
455 * isearch.el (isearch-update): Don't update display in kbd macro.
456 (isearch-lazy-highlight-new-loop): Do nothing in kbd macro.
457
458 * subr.el (force-mode-line-update): Doc fix.
459
460 * subr.el (atomic-change-group, prepare-change-group)
461 (activate-change-group, accept-change-group, cancel-change-group):
462 New functions.
463
464 * simple.el (undo-get-state, undo-revert-to-state): Fns deleted.
465 (transpose-subr-1): Use atomic-change-group.
466
467 * subr.el (add-minor-mode): Include the mode's lighter string
468 in the minor mode menu item name.
469
470 * mail/rmail.el (rmail-toggle-header): Avoid possibly slow call to
471 rmail-count-screen-lines starting from (point-min).
472
473 * startup.el (use-fancy-splash-screens-p): Need 19 lines,
474 beyond the image height, to use the fancy splash screen.
475
476 * textmodes/text-mode.el (text-mode-hook-identify): Function deleted.
477 (text-mode): Set text-mode-variant here.
478
479 2002-02-06 Eli Zaretskii <eliz@is.elta.co.il>
480
481 * play/pong.el (pong-height): Don't use height that exceeds the
482 frame height.
483 (pong-border-options): Make the border colors slightly more bright.
484
485 * play/gamegrid.el (gamegrid-display-type): Treat any
486 color-capable display as color-x, if display-color-p is fboundp.
487 (gamegrid-make-color-x-face): Don't call gamegrid-color twice.
488 (gamegrid-make-color-tty-face): Use the value of color, not the
489 symbol itself. Don't call gamegrid-color.
490
491 2002-02-05 Eli Zaretskii <eliz@is.elta.co.il>
492
493 * gud.el (gud-refresh): Call recenter only after we are sure we
494 are in the right window.
495
496 2002-02-05 Per Abrahamsen <abraham@dina.kvl.dk>
497
498 * cus-edit.el (customize-mark-to-save): New function.
499 * menu-bar.el (menu-bar-options-save): Rewrote.
500
501 2002-02-05 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
502
503 * cus-start.el (x-use-underline-position-properties):
504 Allow customization.
505
506 2002-02-04 Simon Josefsson <jas@extundo.com>
507
508 * dired.el (dired-load-hook, dired-mode-hook)
509 (dired-before-readin-hook, dired-after-readin-hook): Defcustom.
510
511 2002-02-03 Colin Walters <walters@verbum.org>
512
513 * ibuf-ext.el (ibuffer-filter-format-alist)
514 (ibuffer-cached-filter-formats, ibuffer-compiled-filter-formats):
515 New variables.
516 * ibuffer.el (ibuffer): Remove link; the "home page" for ibuffer
517 is now the Emacs CVS tree.
518 (ibuffer-formats): Doc fix.
519 (ibuffer-active-formats-name, ibuffer-current-formats): New functions.
520 (ibuffer-current-format): Use them.
521 (ibuffer-recompile-formats, ibuffer-check-formats)
522 (ibuffer-switch-format, ibuffer-update-title):
523 Add support for ibuffer-filter-format-alist.
524 (define-ibuffer-column process): Remove unncessary consing.
525
526 * ibuf-macs.el (define-ibuffer-column): Add beginnings of support
527 for a summary column.
528
529 2002-02-03 Andreas Schwab <schwab@suse.de>
530
531 * window.el (save-selected-window): Move macro before first use.
532 (balance-windows): Fix misplaced parenthesis.
533
534 2002-02-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
535
536 * calculator.el (calculator-displayers): Doc fixes.
537
538 2002-02-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
539
540 * menu-bar.el (menu-bar-help-menu): Use different text for tool-tip.
541 (menu-bar-options-save): Save also the value of `display-time-mode'.
542 (showhide-date-time): New function.
543 (menu-bar-showhide-menu): New menu-item "Date and time".
544
545 2002-02-03 Eli Zaretskii <eliz@is.elta.co.il>
546
547 * mail/rmail.el (rmail): Use find-buffer-visiting instead of
548 get-file-buffer to check for rmail buffer existence.
549
550 * term.el (term-emulate-terminal): Extract proper command string
551 which is supplied to term-command-hook.
552
553 2002-02-03 Richard M. Stallman <rms@gnu.org>
554
555 * international/quail.el (quail-help): Don't call help-setup-xref.
556
557 * international/mule-cmds.el (describe-input-method):
558 Call help-setup-xref here.
559 (describe-current-input-method): Doc fix.
560
561 * novice.el (disabled-command-hook): Clarify output text.
562 Indent the paragraph from the command's doc string.
563
564 * dabbrev.el (dabbrev--goto-start-of-abbrev):
565 Exit loop on beginning of field rather than bobp.
566
567 2002-02-02 Eli Zaretskii <eliz@is.elta.co.il>
568
569 * mail/uce.el (uce-reply-to-uce): Prune the headers before copying
570 the message text into the *mail* buffer, and restore the pruned
571 state after that.
572
573 * mail/rmail.el (rmail-redecode-body): Prune the headers before
574 looking for X-Coding-System header, and restore the pruned state
575 before returning.
576
577 2002-02-02 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
578
579 * cus-edit.el (customize-save-variable): Fix typo in prompt.
580
581 These changes integrate new version of flyspell.el from its
582 maintainer, Manuel Serrano:
583
584 * textmodes/flyspell.el (flyspell-issue-message-flag): New user option.
585 (flyspell-mode-on, flyspell-notify-misspell)
586 (flyspell-small-region, flyspell-external-point-words)
587 (flyspell-large-region): Use it
588 (flyspell-before-incorrect-word-string)
589 (flyspell-after-incorrect-word-string): New user options.
590 (make-flyspell-overlay): Use them.
591 (flyspell-version): New function.
592 (flyspell-incorrect-face, flyspell-duplicate-face): Adapt face
593 definitions to use :weight.
594 (flyspell-insert-function): New user option.
595 (flyspell-auto-correct-word, flyspell-correct-word)
596 (flyspell-xemacs-correct): Use it.
597 (flyspell-define-abbrev): New function.
598 (flyspell-auto-correct-word, flyspell-correct-word)
599 (flyspell-xemacs-correct): Use it.
600 (make-flyspell-overlay): Use `evaporate' property.
601 (flyspell-auto-correct-word, flyspell-correct-word): Remove overlay.
602 (flyspell-emacs-popup): Use `session' instead of `accept'.
603 (flyspell-auto-correct-previous-pos): New variable.
604 (flyspell-auto-correct-previous-hook)
605 (flyspell-auto-correct-previous-word): New functions.
606
607 2002-02-02 Eli Zaretskii <eliz@is.elta.co.il>
608
609 * novice.el (enable-command): If Emacs was invoked as "emacs -q",
610 don't alter the user's ~/.emacs.
611 (disable-command): If user-init-file is nil or does not exist,
612 default to "~/.emacs" (~/_emacs on DOS and, maybe, Windows).
613 But don't alter the init file if Emacs was invoked as "emacs -q"
614
615 2002-02-01 Stefan Monnier <monnier@cs.yale.edu>
616
617 * mail/sendmail.el (mail-mode): Undo half of last change.
618
619 * indent.el (indent-for-tab-command): Remove spurious code.
620
621 * hi-lock.el (hi-lock-find-patterns): Save restriction.
622
623 2002-02-01 Eli Zaretskii <eliz@is.elta.co.il>
624
625 * calendar/time-date.el: Moved from lisp/gnus.
626
627 * calendar/parse-time.el: Ditto.
628
629 2002-01-31 Richard M. Stallman <rms@gnu.org>
630
631 * international/iso-acc.el (iso-languages): Fix ", " in French.
632
633 * cus-start.el (history-length): Specify customization for it.
634
635 * emacs-lisp/debug.el (debugger-setup-buffer):
636 When an eval-buffer frame was reading from a buffer,
637 insert indication of the buffer position.
638 (debugger-frame-number): Ignore ;;;-comment lines in backtrace.
639 (debugger-frame-clear, debugger-frame): Error on non-frame line.
640
641 * simple.el (shell-command-on-region): Err if no mark
642 before reading the command string.
643
644 * hl-line.el (hl-line-highlight, hl-line-unhighlight):
645 Definitions moved down after hl-line-mode var's definition.
646
647 * hilit-chg.el (hilit-chg-fixup): Don't alter overlay if not ours.
648 (hilit-chg-set-face-on-change): Rename arg.
649 (hilit-chg-make-ov): Detect error earlier.
650
651 * ediff-hook.el: Delete autoload cookies.
652
653 * comint.el (comint-scroll-show-maximum-output): Default is t.
654
655 * emacs-lisp/bytecomp.el (batch-byte-compile): New arg noforce.
656 (batch-byte-compile-if-not-done): New function.
657
658 * Makefile.in (compile): New target.
659 (compile-always): Renamed from compile-files.
660 (compile-after-backup): Renamed from compile.
661 (bootstrap): Depend on compile-always, not compile-files.
662
663 * emulation/pc-select.el (pc-select-save-and-set-mode):
664 Properly use MODE-VAR.
665
666 2002-01-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
667
668 * menu-bar.el (menu-bar-help-menu): Change menu-item "Show Emacs
669 Version" to "About Emacs".
670 (menu-bar-options-save): Add `default-frame-alist'
671 to saved variables.
672 (menu-bar-showhide-scroll-bar-menu): Use frame-parameters instead
673 of the variable `scroll-bar-mode'.
674
675 * startup.el (normal-splash-screen, display-splash-screen):
676 New functions (separated from command-line-1).
677 (command-line-1): Use them.
678
679 2002-01-28 Eli Zaretskii <eliz@is.elta.co.il>
680
681 * calendar/calendar.el (generate-calendar-month): Doc fix.
682
683 2002-01-27 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
684
685 * time.el (display-time-mail-directory): New option.
686 (display-time-mail-function): Update doc-string.
687 (display-time-mail-icon): Use XPM image when available.
688 (display-time-string-forms): Use more descriptive text as
689 help-echo property.
690 (display-time-mail-check-directory): New function.
691 (display-time-update): Use it.
692
693 * menu-bar.el (menu-bar-showhide-scroll-bar-menu):
694 Quote `window-system'.
695
696 * tmm.el (tmm-get-keymap): Honour :visible in `menu-item'.
697 Add Keywords header. Update Commentary section.
698 Update copyright notice.
699
700 * menu-bar.el (menu-bar-scroll-bar-right)
701 (menu-bar-scroll-bar-left, menu-bar-scroll-bar-none)
702 (showhide-menu-bar): New functions.
703 (menu-bar-showhide-menu): New submenu "Show/Hide".
704 (menu-bar-showhide-scroll-bar-menu): "Scroll-bar" submenu of
705 "Show/Hide".
706 Update copyright notice.
707
708 2002-01-27 Eli Zaretskii <eliz@is.elta.co.il>
709
710 * lazy-lock.el (lazy-lock-mode): Add a reference to jit-lock.
711
712 2002-01-26 Evgeny Roubinchtein <evgenyr@cs.washington.edu>
713
714 * pc-select.el (pc-selection-mode-hook)
715 (pc-select-saved-settings-alist, pc-select-map)
716 (pc-select-saved-global-map, pc-select-key-bindings-alist)
717 (pc-select-default-key-bindings, pc-select-extra-key-bindings)
718 (pc-select-meta-moves-sexps-key-bindings)
719 (pc-select-tty-key-bindings, pc-select-old-M-delete-binding):
720 New variables.
721 (pc-select-define-keys, pc-select-restore-keys): New functions.
722 (pc-select-add-to-alist, pc-select-save-and-set-var)
723 (pc-select-save-and-set-mode, pc-select-restore-var)
724 (pc-select-restore-mode): New macros.
725 (pc-selection-mode): Completely rewrote the body of the function;
726 the main goal was to make pc-selection-mode "turn-off"-able, like
727 other minor modes. Use define-minore-mode instead of just a
728 defun. Store the key bindings into four alists:
729 pc-select-default-key-bindings, pc-select-extra-key-bindings,
730 pc-select-meta-moves-sexps-key-bindings, and
731 pc-select-tty-key-bindings; then have the pc-select-define-keys
732 function walk those alists instead of calling define-key
733 repeatedly. When the mode is turned on, set the
734 keybindings in global-map and remember the old keybindings; when
735 the mode is turned off, restore the previously-saved keybindings.
736 (pc-selection-mode defcustom): Reflect the fact that the mode is
737 now "turn-off"-able.
738
739 2002-01-26 Eli Zaretskii <eliz@is.elta.co.il>
740
741 * eshell/esh-cmd.el (eshell-eval-command): If eshell-resume-eval
742 returns t, don't treat that as an error.
743
744 2002-01-25 Jason Rumney <jasonr@gnu.org>
745
746 * faces.el (face-font-registry-alternatives) [windows-nt]:
747 Add ms-oemlatin as an alternative for iso8859-1.
748
749 2002-01-25 Stefan Monnier <monnier@cs.yale.edu>
750
751 * pcvs.el (cvs-reread-cvsrc): Distinguish between an empty list of
752 args and the absence of an entry. Don't add -f each time.
753
754 2002-01-25 Eli Zaretskii <eliz@is.elta.co.il>
755
756 * emacs-lisp/cl-seq.el (mismatch): Doc fix.
757
758 Support for more than 8 colors on character terminals:
759
760 * term/rxvt.el: New file.
761
762 * Makefile.in (DONTCOMPILE): Remove term/xterm.el.
763
764 * term/xterm.el (xterm-standard-colors): New variable.
765 (xterm-rgb-convert-to-16bit, xterm-register-default-colors)
766 (xterm-rxvt-set-background-mode): New functions.
767 (toplevel): Call xterm-register-default-colors,
768 xterm-rxvt-set-background-mode, and tty-set-up-initial-frame-faces.
769 Add support for more keys from xterm's terminfo entry.
770
771 * facemenu.el (list-colors-display): If the argument is nil, don't
772 show more colors that the number returned by display-color-cells.
773
774 * term/pc-win.el (msdos-color-values): Reverse the order of the
775 colors, since tty-color-define now preserves the registration order.
776
777 * w32-fns.el (w32-tty-standard-colors): Reverse the order.
778
779 * term/tty-colors.el (tty-standard-colors): Reverse the order.
780 (tty-register-default-colors): New function; code moved from
781 startup.el's command-line.
782 (tty-modify-color-alist): Use nconc instead of cons, to preserve
783 the order the colors where registered.
784
785 * frame.el (display-color-cells): Use tty-display-color-cells.
786
787 * startup.el (command-line): Call tty-register-default-colors.
788
789 2002-01-25 Richard M. Stallman <rms@gnu.org>
790
791 * subr.el (remove): Doc fix.
792
793 2002-01-24 Richard M. Stallman <rms@gnu.org>
794
795 * progmodes/compile.el (compilation-handle-exit):
796 Add a compilation-handle-exit property to the "finished" message.
797 (compilation-parse-errors): Stop parsing when that property is seen.
798
799 * subr.el (substring-no-properties): New function.
800 (copy-without-properties): Function deleted.
801
802 * term/x-win.el (x-handle-geometry): Put sizes on both
803 initial-frame-alist and default-frame-alist.
804
805 * cus-edit.el (custom-save-all): Bind file-precious-flag to t
806 for saving .emacs.
807
808 * files.el (basic-save-buffer-2): Ignore file-error in delete-file.
809
810 * calendar/calendar.el (generate-calendar-month): Doc fix.
811
812 2002-01-23 Richard M. Stallman <rms@gnu.org>
813
814 * play/tetris.el (tetris): New defgroup.
815 (tetris-use-glyphs, tetris-use-color, tetris-draw-border-with-glyphs)
816 (tetris-default-tick-period): Convert to defcustom.
817 Added * in docstring to indicate user variable.
818 (tetris-update-speed-function, tetris-mode-hook, tetris-tty-colors)
819 (tetris-x-colors, tetris-buffer-name, tetris-buffer-width)
820 (tetris-buffer-height, tetris-width, tetris-height)
821 (tetris-top-left-x, tetris-top-left-y): Convert to defcustom.
822
823 2002-01-22 Stefan Monnier <monnier@cs.yale.edu>
824
825 * mail/sendmail.el (mail-mode): ">" is not a supercite-style prefix
826 and is already matched by adaptive-fill-regexp.
827
828 2002-01-22 Richard M. Stallman <rms@gnu.org>
829
830 * bindings.el (mode-line-copied-mode-name): New variable.
831 (mode-line-mode-name): Don't modify mode-name itself!
832 Instead, make a copy and reuse it.
833
834 * subr.el (copy-without-properties): New function.
835
836 * progmodes/sh-script.el (sh-set-shell): Doc fix.
837
838 * net/ange-ftp.el (ange-ftp-canonize-filename): Avoid duplicate
839 slash if DIR is just slash.
840
841 * progmodes/perl-mode.el (perl-mode-abbrev-table): Restore definition.
842
843 2002-01-21 Richard M. Stallman <rms@gnu.org>
844
845 * emacs-lisp/copyright.el (copyright-regexp): Fix previous change.
846
847 * net/ange-ftp.el (ange-ftp-bs2000-posix-hook-installed):
848 Move defvar up.
849
850 * textmodes/ispell.el (ispell-help): Clean up echo area if user quits.
851
852 * ibuffer.el: Don't require ibuf-ext at load time.
853 (ibuffer): Require ibuf-ext here.
854
855 2002-01-21 Francesco Potorti` <pot@gnu.org>
856
857 * generic-x.el (apache-conf-generic-mode): Highlight the first
858 word in a line even if preceded by blanks.
859
860 2002-01-21 Richard M. Stallman <rms@gnu.org>
861
862 * window.el (window-body-height): Handle minibuffer window specially.
863 Otherwise, don't return less than 1.
864
865 2002-01-20 Thomas Dorner <Thomas.Dorner@start.de>
866
867 * ange-ftp.el: Added support for BS2000, and for raw ftp
868 login commands (needed in some circumstances).
869 (ange-ftp-raw-login): New custom var.
870 (ange-ftp-normal-login): Perform login with raw ftp commands, if
871 ange-ftp-raw-login is set and account password is needed.
872 (ange-ftp-host-type, ange-ftp-guess-host-type): Handle BS2000 hosts.
873 (ange-ftp-bs2000-filename-pubset-regexp)
874 (ange-ftp-bs2000-filename-username-regexp)
875 (ange-ftp-bs2000-filename-prefix-regexp)
876 (ange-ftp-bs2000-name-template): New consts.
877 (ange-ftp-bs2000-short-filename-regexp)
878 (ange-ftp-bs2000-fix-name-regexp-reverse)
879 (ange-ftp-bs2000-fix-name-regexp): New consts.
880 (ange-ftp-bs2000-special-prefix): New custom var.
881 (ange-ftp-fix-name-for-bs2000)
882 (ange-ftp-fix-dir-name-for-bs2000): New funs.
883 (ange-ftp-bs2000-host-regexp, ange-ftp-bs2000-posix-host-regexp)
884 (ange-ftp-bs2000-posix-hook-installed): New vars.
885 (ange-ftp-parse-bs2000-filename, ange-ftp-parse-bs2000-listing)
886 (ange-ftp-bs2000-host, ange-ftp-bs2000-posix-host)
887 (ange-ftp-add-bs2000-host, ange-ftp-add-bs2000-posix-host): New funs.
888 (ange-ftp-bs2000-filename-regexp): New const.
889 (ange-ftp-bs2000-additional-pubsets): New custom var.
890 (ange-ftp-bs2000-cd-to-posix): New fun.
891
892 2002-01-20 Colin Walters <walters@verbum.org>
893
894 * ibuffer.el: (toplevel) Require `ibuf-ext', which is now compiled
895 with `byte-compile-dynamic'.
896 (ibuffer-default-directory, toplevel): Doc files.
897
898 2002-01-20 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
899
900 * tempo.el (tempo-define-template): Doc fix.
901
902 * scroll-bar.el (scroll-bar-mode): Make argument optional.
903
904 2002-01-20 Jason Rumney <jasonr@gnu.org>
905
906 * w32-vars.el: New file.
907
908 * loadup.el [windows-nt]: Load it.
909
910 * w32-fns.el, term/w32-win.el: Move user variables to w32-vars.el
911 and make them defcustoms.
912
913 * term/w32-win.el (mouse-set-font): Use w32-list-proportional-fonts.
914
915 2002-01-19 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
916
917 * language/tibet-util.el (tibetan-decompose-region)
918 (tibetan-decompose-string): Fix typo in docstring.
919
920 * ruler-mode.el (ruler-mode): New keyword. Fix :version.
921
922 2002-01-18 Richard M. Stallman <rms@gnu.org>
923
924 * comint.el (comint-redirect-send-command-to-process):
925 Restore previous current buffer.
926
927 * window.el (window-body-height): New function.
928
929 2002-01-18 Zoltan Kemenczy <kemenczy@rogers.com>
930
931 * gud.el (easy-mmode-defmap): Enable "Up Stack", "Down Stack", and
932 "Finish Function" menu map entries for jdb mode.
933 (gud-jdb-use-classpath): New customization variable.
934 (gud-jdb-command-name): Add customization.
935 (gud-jdb-classpath, gud-marker-acc-max-length): New variables.
936 (gud-jdb-classpath-string): New variable.
937 (gud-jdb-source-files, gud-jdb-class-source-alist): Add doc strings.
938 (gud-jdb-build-source-files-list): Likewise.
939 (gud-jdb-massage-args): Record any command argument classpath
940 string in `gud-jdb-classpath-string'.
941 (gud-jdb-lowest-stack-level): New function, finds bottom of current
942 java call stack in jdb output.
943 (gud-jdb-find-source-using-classpath, gud-jdb-find-source)
944 (gud-jdb-parse-classpath-string): New functions.
945 (gud-jdb-marker-filter): Search/detect classpath information in
946 jdb's output. marker regexp updated to match oldjdb and jdb output
947 formats. Expand search for source files to include new/old methods
948 using new functions above. Do not allow `gud-marker-acc' to grow
949 without bound.
950 (jdb): Set classpath information (if available) as jdb is started.
951 Change `gud-break' and `gud-remove'
952 to use new %c ("class") escape in format strings. Add
953 `gud-finish', `gud-up', `gud-down' command string functions, and
954 add them to the local menu map. Update `comint-prompt-regexp' for
955 jdb and oldjdb. If attaching to an already running java VM and
956 configured to use classpath, send command to query for classpath,
957 else use previous method for finding and parsing java
958 sources. Set `gud-jdb-find-source' function accordingly.
959 (gud-mode): Doc fix.
960 (gud-format-command): Add support for new %c ("class") escape.
961 (gud-find-class): New function in support of %c escape.
962
963 2002-01-17 Richard M. Stallman <rms@gnu.org>
964
965 * ibuf-ext.el: Enable byte-compile-dynamic.
966
967 2002-01-17 Jason Rumney <jasonr@gnu.org>
968
969 * term/w32-win.el: Restore conditional require of fontset.
970
971 2002-01-16 Richard M. Stallman <rms@gnu.org>
972
973 * mouse.el (mouse-drag-region-1): Renamed from mouse-drag-region,
974 more or less.
975 (mouse-drag-region): New function. For a click in the echo area,
976 show *Messages*.
977
978 * ibuf-ext.el: Delete the autoloads for functions defined with
979 ibuffer-specific commands.
980
981 * help.el (describe-distribution): Really call view-file.
982
983 * net/ange-ftp.el (ange-ftp-passive-mode): New arg PROC.
984 (ange-ftp-get-process): Pass that arg.
985
986 * comint.el (comint-simple-send): Fix previous change.
987
988 * net/telnet.el (telnet-simple-send): Fix previous change.
989
990 * progmodes/sql.el (sql-escape-newlines-and-send)
991 (sql-query-placeholders-and-send): Fix previous change.
992
993 2002-01-16 Colin Walters <walters@verbum.org>
994
995 * ibuf-ext.el, ibuf-macs.el, ibuffer.el (toplevel): Remove X-RCS,
996 URL, Compatibility headers. Update copyright notice.
997 * ibuf-macs.el (toplevel): Require `cl' when compiling.
998
999 2002-01-16 Andrew Choi <akochoi@cse.cuhk.edu.hk>
1000
1001 * startup.el (command-line): Set EOL mnemonics for the Mac.
1002
1003 2002-01-16 Andreas Schwab <schwab@suse.de>
1004
1005 * mail/feedmail.el (feedmail): Fix :link spec.
1006
1007 2002-01-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1008
1009 * net/ldap.el (ldap-ldapsearch-prog): Default to OpenLDAP version
1010 2 ldapsearch.
1011
1012 * net/eudc.el: New maintainer. Change author's address.
1013 (eudc-pre-select-window-configuration, eudc-insertion-marker):
1014 Variables removed.
1015 (eudc-insert-selected): Function removed.
1016 (eudc-select): Reimplemented.
1017 (eudc-expand-inline): Delete the strings only after its expansion
1018 is chosen not before.
1019
1020 * net/eudcb-ph.el (eudc-ph-open-session): Remove XEmacs case.
1021 Minor coding style fixes.
1022
1023 * net/eudcb-ldap.el: New maintainer. Change author's address.
1024 (eudc-attribute-display-method-alist): Display mail with
1025 eudc-display-mail.
1026
1027 * net/eudcb-bbdb.el, net/eudc-export.el, net/eudc-hotlist.el,
1028 * net/eudc-vars.el: New maintainer. Change author's address.
1029
1030 * net/eudc-bob.el: New maintainer. Change author's address.
1031 (eudc-bob-mail-keymap): New keymap for e-mail addresses.
1032 (eudc-display-mail): New function.
1033 (eudc-bob-play-sound-at-point): Remove XEmacs case.
1034
1035 2002-01-15 Richard M. Stallman <rms@gnu.org>
1036
1037 * emacs-lisp/autoload.el (make-autoload):
1038 Don't handle define-ibuffer-column, define-ibuffer-filter,
1039 define-ibuffer-sorter, and define-ibuffer-op.
1040
1041 2002-01-14 Richard M. Stallman <rms@gnu.org>
1042
1043 * calendar/calendar.el (diary-date-forms): Doc fix.
1044
1045 2002-01-14 Eli Zaretskii <eliz@is.elta.co.il>
1046
1047 * startup.el (command-line): Register the default tty colors even
1048 if the terminal doesn't seem to support colors.
1049 <tty-long-option-alist>: New option --color.
1050 (tty-handle-args): Parse the --color arg.
1051
1052 * term/tty-colors.el (tty-color-mode-alist): New variable.
1053
1054 2002-01-14 Stefan Monnier <monnier@cs.yale.edu>
1055
1056 * net/ange-ftp.el (ange-ftp-root-dir-p): New function.
1057 (ange-ftp-file-name-all-completions, ange-ftp-file-name-completion):
1058 Use it.
1059 (ange-ftp-hook-function): Preserve match-data.
1060 (ange-ftp-insert-directory): Typo.
1061 (ange-ftp-shell-command): Check if regexp matched.
1062
1063 2002-01-13 Richard M. Stallman <rms@gnu.org>
1064
1065 * international/mule-cmds.el: help-map bindings moved to help.el.
1066
1067 * help.el (view-echo-area-messages): New function.
1068 (help-map): Add `e' binding. Delete obsolete `d' binding.
1069 Change old Info bindings C-f, C-k and C-i to F, K, S.
1070 Move view-emacs-FAQ from F to C-f.
1071 Move view-emacs-problems from P to C-e.
1072 Bindings moved here from mule-cmds.el.
1073 C-l binding for describe-language-environment deleted
1074 (help-for-help): Update for all these changes.
1075
1076 * emacs-lisp/copyright.el (copyright-regexp): Make (C) optional.
1077
1078 2002-01-13 Dave Love <fx@gnu.org>
1079
1080 * emacs-lisp/copyright.el: Doc fixes.
1081 (copyright-regexp): Add Latin-9 copyright sign.
1082 Match comment delimiters in year lists.
1083 (copyright-current-year): Initialize to load-time year.
1084
1085 2002-01-13 Andreas Schwab <schwab@suse.de>
1086
1087 * dired-aux.el (dired-do-shell-command): Doc fix.
1088
1089 2002-01-13 Jan Djarv <Jan.Djarv@mbox200.swipnet.se>
1090
1091 * startup.el (command-line-x-option-alist): New options "-fs",
1092 "-fw", "-fh", "--fullscreen", "--fullwidth", and "--fullheight".
1093
1094 * term/x-win.el (x-handle-initial-switch): New function.
1095
1096 2002-01-13 Colin Walters <walters@debian.org>
1097
1098 * emacs-lisp/autoload.el (make-autoload): Handle
1099 define-ibuffer-column, define-ibuffer-filter,
1100 define-ibuffer-sorter, and define-ibuffer-op.
1101
1102 * emacs-lisp/lisp-mode.el (toplevel): Ditto.
1103
1104 * ibuffer.el, ibuf-ext.el, ibuf-macs.el: New files.
1105
1106 2002-01-12 Richard M. Stallman <rms@gnu.org>
1107
1108 * net/browse-url.el (browse-url-grail):
1109 Use browse-url-maybe-new-window.
1110
1111 * net/telnet.el (telnet-simple-send): Handle
1112 comint-input-sender-no-newline like comint-simple-send.
1113
1114 * progmodes/sql.el (sql-query-placeholders-and-send): Handle
1115 comint-input-sender-no-newline like comint-simple-send.
1116 (sql-escape-newlines-and-send): Likewise.
1117
1118 * comint.el (comint-input-sender): Doc fix.
1119 (comint-input-sender-no-newline): New variable.
1120 (comint-simple-send): If comint-input-sender-no-newline,
1121 don't output newline, but maybe send eof.
1122 (comint-send-input): New arg NO-NEWLINE.
1123 (comint-send-eof): Call comint-send-eof with NO-NEWLINE.
1124
1125 2002-01-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1126
1127 * textmodes/flyspell.el (flyspell-check-pre-word-p): Prevent
1128 delaying when executing keyboard macros.
1129
1130 2002-01-12 Richard M. Stallman <rms@gnu.org>
1131
1132 * simple.el (line-move): If we can't move enough lines,
1133 go to beginning or end of line.
1134
1135 * help-mode.el (help-xref-go-back): Restore POSITION in proper buffer
1136 and proper window.
1137
1138 * help.el (describe-mode): Call help-setup-xref in the help buffer.
1139 Switch buffers only after calling `help-buffer'.
1140
1141 * dired-aux.el (dired-shell-stuff-it): Substitute for * or ?
1142 only when they are surrounded by whitespace.
1143 Use dired-mark-separator when adding one file name to a command.
1144 (dired-do-shell-command): Verify that * is surrounded by whitespace.
1145 Ask for confirmation if * or ? is not surrounded by whitespace.
1146 (dired-bunch-files): Re-reverse the partial file list when it is used.
1147
1148 2002-01-12 Richard M. Stallman <rms@gnu.org>
1149
1150 * comint.el (comint-dynamic-list-completions): Repeating the command
1151 after displaying a completion list scrolls the list.
1152
1153 2002-01-12 Eli Zaretskii <eliz@is.elta.co.il>
1154
1155 * files.el (find-file-noselect): Don't consider a buffer as
1156 visiting a file literally if it is in hexl-mode.
1157
1158 * faces.el (minibuffer-prompt): A better face definition for MS-DOS.
1159
1160 2002-01-11 Richard M. Stallman <rms@gnu.org>
1161
1162 * startup.el (initial-scratch-message): Fix custom type, add group.
1163
1164 * mail/rmail.el (rmail-decode-babyl-format): Disable undo
1165 around the decode-coding-region call.
1166
1167 * emacs-lisp/lisp.el (lisp-complete-symbol): Repeating the command
1168 after displaying a completion list scrolls the list.
1169
1170 2002-01-11 Eli Zaretskii <eliz@is.elta.co.il>
1171
1172 * version.el (emacs-version): Bump to 21.2.50.
1173
1174 2002-01-10 Thien-Thi Nguyen <ttn@giblet.glug.org>
1175
1176 * play/zone.el (zone-timeout): New var.
1177 (zone-hiding-modeline): New macro.
1178 (zone-call): New func.
1179
1180 (zone): Init `modeline-hidden-level' symbol property.
1181 Use `zone-call' instead of `funcall'.
1182
1183 (zone-pgm-whack-chars): Use `make-string' (fix bug introduced in 2001-10-26T20:11:25Z!monnier@iro.umontreal.ca).
1184
1185 (zone-pgm-stress): Use `zone-hiding-modeline'.
1186
1187 (zone-pgm-stress-destress): New zone program.
1188
1189 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
1190
1191 * faces.el (minibuffer-prompt): Special face definition for MS-DOS.
1192
1193 2002-01-09 Richard M. Stallman <rms@gnu.org>
1194
1195 * startup.el (fancy-splash-screens): Set tab-width in correct buffer.
1196
1197 2002-01-09 Michael Kifer <kifer@cs.stonybrook.edu>
1198
1199 * viper.el (viper-set-hooks): Zap viper-unfriendly bindings in
1200 flyspell-mouse-map.
1201
1202 2002-01-08 Richard M. Stallman <rms@gnu.org>
1203
1204 * emacs-lisp/regexp-opt.el (regexp-opt): Bind max-specpdl-size.
1205
1206 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Fix custom type.
1207
1208 * textmodes/flyspell.el (flyspell-mode-line-string): Fix custom type.
1209
1210 2002-01-08 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1211
1212 * progmodes/ada-mode.el (ada-initialize-properties, ada-mode):
1213 Do not use make-local-hook.
1214
1215 2002-01-08 Eli Zaretskii <eliz@is.elta.co.il>
1216
1217 * international/quail.el (quail-start-translation)
1218 (quail-start-conversion): Bind last-command-event, last-command,
1219 and this-command in the first let. This fixes the change from
1220 2000-08-30.
1221
1222 2002-01-08 Michael Kifer <kifer@cs.stonybrook.edu>
1223
1224 * ediff-hook.el: Add an autoload cookie.
1225
1226 2002-01-08 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1227
1228 * net/eudcb-ph.el, net/ldap.el: New maintainer. New e-mail
1229 address of the author.
1230
1231 2002-01-08 Richard M. Stallman <rms@gnu.org>
1232
1233 * replace.el (occur-mode-goto-occurrence-other-window): New command.
1234 (occur-mode-map): Bind `o' to that.
1235
1236 2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
1237
1238 * viper-init.el (viper-cond-compile-for-xemacs-or-emacs):
1239 new macro that replaces viper-emacs-p and viper-xemacs-p in many
1240 cases. Used to reduce the number of warnings.
1241
1242 * viper-cmd.el: Use viper-cond-compile-for-xemacs-or-emacs.
1243 (viper-standard-value): Move here from viper.el.
1244 (viper-set-unread-command-events): Move to viper-util.el
1245 (viper-check-minibuffer-overlay): Make sure
1246 viper-minibuffer-overlay is moved to cover the entire input field.
1247
1248 * viper-util.el: use viper-cond-compile-for-xemacs-or-emacs.
1249 (viper-read-key-sequence, viper-set-unread-command-events)
1250 (viper-char-symbol-sequence-p, viper-char-array-p): Moved here.
1251
1252 * viper-ex.el: Use viper-cond-compile-for-xemacs-or-emacs.
1253
1254 * viper-keym.el: Use viper-cond-compile-for-xemacs-or-emacs.
1255
1256 * viper-mous.el: Use viper-cond-compile-for-xemacs-or-emacs.
1257
1258 * viper-macs.el (viper-char-array-p, viper-char-symbol-sequence-p)
1259 (viper-event-vector-p): Move to viper-util.el
1260
1261 * viper.el (viper-standard-value): Move to viper-cmd.el.
1262 Use viper-cond-compile-for-xemacs-or-emacs.
1263
1264 * ediff-help.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1265
1266 * ediff-hook.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1267
1268 * ediff-init.el (ediff-cond-compile-for-xemacs-or-emacs):
1269 New macro designed to be used in many places where ediff-emacs-p or
1270 ediff-xemacs-p was previously used. Reduces the number of warnings.
1271 Use ediff-cond-compile-for-xemacs-or-emacs in many places in lieu
1272 of ediff-xemacs-p.
1273 (ediff-make-current-diff-overlay, ediff-highlight-diff-in-one-buffer)
1274 (ediff-convert-fine-diffs-to-overlays, ediff-empty-diff-region-p)
1275 (ediff-whitespace-diff-region-p, ediff-get-region-contents):
1276 Move to ediff-util.el.
1277 (ediff-event-key): Moved here.
1278
1279 * ediff-merge.el: Got rid of unreferenced variables.
1280
1281 * ediff-mult.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1282
1283 * ediff-util.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1284 (ediff-cleanup-mess): Improve the way windows are set up after
1285 quitting ediff.
1286 (ediff-janitor): Use ediff-dispose-of-variant-according-to-user.
1287 (ediff-dispose-of-variant-according-to-user): New function
1288 designed to be smarter and also understands indirect buffers.
1289 (ediff-highlight-diff-in-one-buffer)
1290 (ediff-unhighlight-diff-in-one-buffer)
1291 (ediff-unhighlight-diffs-totally-in-one-buffer)
1292 (ediff-highlight-diff, ediff-highlight-diff)
1293 (ediff-unhighlight-diff, ediff-unhighlight-diffs-totally)
1294 (ediff-empty-diff-region-p, ediff-whitespace-diff-region-p)
1295 (ediff-get-region-contents, ediff-make-current-diff-overlay):
1296 Moved here.
1297 (ediff-format-bindings-of): New function by Hannu Koivisto
1298 <azure@iki.fi>.
1299 (ediff-setup): Make sure the merge buffer is always widened and
1300 modifiable.
1301 (ediff-write-merge-buffer-and-maybe-kill): Refuse to write the
1302 result of a merge into a file visited by another buffer.
1303 (ediff-arrange-autosave-in-merge-jobs): Check if the merge file
1304 is visited by another buffer and ask to save/delete that buffer.
1305 (ediff-verify-file-merge-buffer): New function to do the above.
1306
1307 * ediff-vers.el: Load ediff-init.el at compile time.
1308
1309 * ediff-wind.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1310
1311 * ediff.el (ediff-windows, ediff-regions-wordwise)
1312 (ediff-regions-linewise): Use indirect buffers to improve
1313 robustness and make it possible to compare regions of the same
1314 buffer (even overlapping regions).
1315 (ediff-clone-buffer-for-region-comparison)
1316 (ediff-clone-buffer-for-window-comparison): New functions.
1317 (ediff-files-internal): Refuse to compare identical files.
1318 (ediff-regions-internal): Get rid of the warning about comparing
1319 regions of the same buffer.
1320
1321 * ediff-diff.el (ediff-convert-fine-diffs-to-overlays): Moved here.
1322 Plus the following fixes courtesy of Dave Love: Doc fixes.
1323 (ediff-word-1): Use word class and move - to the
1324 front per regexp documentation.
1325 (ediff-wordify): Bind forward-word-function outside loop.
1326 (ediff-copy-to-buffer): Use insert-buffer-substring rather than
1327 consing buffer contents.
1328 (ediff-goto-word): Move syntax table setting outside loop.
1329
1330 2002-01-07 Richard M. Stallman <rms@gnu.org>
1331
1332 * dired.el (dired-copy-filename-as-kill): Call kill-append
1333 if following a kill command.
1334
1335 * help-fns.el (describe-variable, describe-function):
1336 Do save-excursion.
1337
1338 2002-01-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1339
1340 * net/ldap.el (ldap-search-internal): Skip error message from
1341 ldapsearch. Allow listing attribute names only. Do not open
1342 non-existent files.
1343
1344 * net/eudcb-ldap.el (eudc-ldap-get-field-list): Do not try to
1345 call non-existent function.
1346
1347 * net/eudc.el (top-level): Revert previous change.
1348
1349 * net/net-utils.el (nslookup-font-lock-keywords): Defvar font-lock
1350 variables to prevent warning from byte-compiler.
1351
1352 * net/eudc.el (top-level): Use eudc-xemacs-p instead of
1353 string-match on emacs-version again.
1354
1355 * enriched.el (enriched-make-annotation): Fix the change from
1356 2002-01-05.
1357 (enriched-handle-display-prop): Return proper values.
1358
1359 * net/eudcb-ldap.el (eudc-attribute-display-method-alist): Use
1360 proper attribute name labeledUri instead of deprecated labeledUrl.
1361
1362 2002-01-05 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1363
1364 * net/eudc-hotlist.el (eudc-edit-hotlist): Avoid error when
1365 editing an empty hotlist.
1366
1367 * net/ldap.el (ldap-search-internal): Make the buffer unibyte.
1368 Use buffer-string instead of buffer-substring for the whole
1369 buffer.
1370
1371 * net/eudc-vars.el (eudc-external-viewers): Do not use xv, it is
1372 not free.
1373
1374 * net/eudc-bob.el (eudc-bob-can-display-inline-images)
1375 (eudc-bob-display-jpeg): Use fboundp instead of boundp.
1376 (eudc-bob-save-object): Make the buffer unibyte.
1377 (eudc-bob-generic-keymap): Add new keybinding `!' to pipe the
1378 object to external program.
1379
1380 2002-01-05 Andre Spiegel <spiegel@gnu.org>
1381
1382 * vc.el (vc-branch-part): Return nil if there's no `.'
1383 (vc-default-previous-version): Renamed from vc-previous-version.
1384 New args BACKEND and FILE. Return nil for revision numbers
1385 without a `.'
1386 (vc-version-diff): Call vc-BACKEND-previous-version.
1387 (vc-steal-lock): Steal lock before composing mail, so that no mail
1388 is sent when the stealing goes wrong. And we'll actually see the
1389 error in that case now.
1390 (vc-finish-steal): Removed.
1391
1392 * vc-rcs.el (vc-rcs-steal-lock): Do a real checkout after stealing
1393 the lock, so that we see expanded headers.
1394 (vc-rcs-trunk-p, vc-rcs-branch-part, vc-rcs-branch-p,
1395 vc-rcs-minor-part, vc-rcs-previous-version): Removed. These are
1396 available from vc.el. Updated all callers.
1397
1398 2002-01-05 Richard M. Stallman <rms@gnu.org>
1399
1400 * enriched.el (enriched-make-annotation): Doc fix.
1401
1402 * format.el (format-replace-strings, format-subtract-regions)
1403 (format-annotate-region, format-annotate-location)
1404 (format-annotate-atomic-property-change)
1405 (format-annotate-single-property-change): Doc fixes.
1406
1407 2002-01-05 Jason Rumney <jasonr@gnu.org>
1408
1409 * term/w32-win.el: Require fontset unconditionally.
1410 (w32-handle-scroll-bar-event): Remove.
1411
1412 2002-01-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
1413
1414 * emacs-lisp/copyright.el (copyright-regexp): Allow multi-line
1415 copyrights to be updated.
1416
1417 2002-01-04 Eli Zaretskii <eliz@is.elta.co.il>
1418
1419 * textmodes/texinfo.el (texinfo-insert-@end): Fix the change from
1420 2001-10-24.
1421
1422 * mail/sendmail.el (mail-recover-1, mail-recover): Doc fix.
1423
1424 2002-01-04 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1425
1426 * net/ldap.el (ldap-host-parameters-alist): Remove duplicated
1427 entry.
1428 (ldap-ignore-attribute-codings): Change the default value to allow
1429 encoding/decoding of attributes.
1430 (ldap-coding-system): Use UTF-8 as the coding-system. Doc fix.
1431
1432 2002-01-03 Richard M. Stallman <rms@gnu.org>
1433
1434 * files.el (basic-save-buffer): Undo previous change.
1435
1436 * calendar/diary-lib.el (diary-block): Doc fix.
1437
1438 * custom.el (defcustom): Fix syntax of previous change.
1439
1440 2002-01-03 Per Abrahamsen <abraham@dina.kvl.dk>
1441
1442 * custom.el (defcustom): Documented :tag, :link and :load.
1443
1444 2002-01-03 Eli Zaretskii <eliz@is.elta.co.il>
1445
1446 * mail/sendmail.el (mail-recover-1): New function.
1447 (mail-recover): Switch to the *mail* buffer right away. Use
1448 buffer-auto-save-file-name instead of calling
1449 make-auto-save-file-name. Call dired-noselect instead of invoking
1450 `ls' directly. Bind coding-system-for-read to emacs-mule-unix
1451 before reading the auto-save file. If the buffer's auto-save file
1452 does not exist, call mail-recover-1 to allow recovery from past
1453 auto-saved drafts.
1454
1455 2002-01-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1456
1457 * time.el (display-time-load-average-threshold): Fix defcustom
1458 (add type and group).
1459
1460 * net/ange-ftp.el (ange-ftp-shell-command): Remove port
1461 specification from the hostname.
1462
1463 2002-01-02 Richard M. Stallman <rms@gnu.org>
1464
1465 * facemenu.el (facemenu-active-faces):
1466 Use face-attributes-as-vector, not face-attributes-vector.
1467
1468 2002-01-02 Chris Hanson <cph@aarau.ai.mit.edu>
1469
1470 * xscheme.el: Eleven years of updates on a private copy.
1471
1472 Extensive changes to support multiple xscheme buffers:
1473 (run-scheme): Break up into new functions to facilitate starting
1474 processes in other buffers.
1475 (xscheme-start, xscheme-read-command-line): New functions.
1476 (start-scheme, select-scheme)
1477 (default-xscheme-runlight)
1478 (global-set-scheme-interaction-buffer)
1479 (local-set-scheme-interaction-buffer)
1480 (local-clear-scheme-interaction-buffer)
1481 (exit-scheme-interaction-mode)
1482 (verify-xscheme-buffer): New functions.
1483 (xscheme-process-name, xscheme-buffer-name)
1484 (xscheme-runlight): New internal vars.
1485 (default-xscheme-runlight): New const.
1486 (xscheme-start-process): Add args for the process/buffer names.
1487 (reset-scheme): Pass process/buffer names.
1488 (scheme-interaction-mode): Initialize new local vars.
1489 (reset-scheme, xscheme-send-string-2, xscheme-process-running-p)
1490 (xscheme-select-process-buffer, xscheme-process-buffer)
1491 (xscheme-send-region, xscheme-send-char, xscheme-send-interrupt)
1492 (xscheme-goto-output-point, xscheme-write-message-1): Use new
1493 var xscheme-process-name.
1494 (xscheme-start-process): Initialize xscheme-process-name and
1495 xscheme-buffer-name in the process buffer. Pass buffer name to
1496 xscheme-modeline-initialize.
1497 (xscheme-modeline-initialize): Add argument to specify buffer name
1498 for mode-line vars.
1499 (xscheme-process-sentinel): Make sure sentinel is run in the
1500 process buffer so it sees its local vars.
1501 (xscheme-process-filter-initialize, xscheme-set-runlight): More
1502 elaborate logic to handle multiple-buffer mode lines.
1503
1504 (xscheme-enter-input-wait): Re-enable control-G handler upon
1505 entering input wait.
1506
1507 (scheme-interaction-mode): Add arg to preserve local vars.
1508 (xscheme-enter-interaction-mode)
1509 (xscheme-enter-debugger-mode): Preserve local vars.
1510 (xscheme-start-process): Clobber local vars.
1511
1512 (scheme-interaction-mode-commands): Allow end user to add commands
1513 to scheme-interaction-mode keymap.
1514 (scheme-interaction-mode-commands-alist): New variable.
1515
1516 (xscheme-send-string): Don't use insert-before-markers.
1517
1518 Implement a per-buffer kill ring:
1519 (xscheme-insert-expression)
1520 (xscheme-rotate-yank-pointer, xscheme-yank)
1521 (xscheme-yank-pop, xscheme-yank-push): New functions.
1522 (xscheme-expressions-ring)
1523 (xscheme-expressions-ring-yank-pointer)
1524 (xscheme-expressions-ring-max): New variables.
1525 (xscheme-send-string-1): Call xscheme-insert-expression to save
1526 expression in ring.
1527 (xscheme-yank-previous-send): Now an alias for xscheme-yank.
1528 (xscheme-previous-send): Deleted variable.
1529
1530 (xscheme-send-string-2, xscheme-send-char, xscheme-send-proceed,
1531 xscheme-send-control-g-interrupt): Use process-send-string rather
1532 than send-string.
1533
1534 (xscheme-send-region): Insert a newline after an expression that
1535 is submitted in the interaction buffer, for consistency with
1536 recent changes to Edwin.
1537
1538 (xscheme-delete-output): New function mimics comint-delete-output.
1539 (xscheme-last-input-end): New internal variable.
1540 (xscheme-process-filter-output): Update xscheme-last-input-end.
1541
1542 (xscheme-send-control-g-interrupt): Make sure that
1543 xscheme-control-g-disabled-p is looked up in the right buffer.
1544
1545 (xscheme-enable-control-g): Clear C-g message if visible.
1546 (xscheme-control-g-message-string): New internal var.
1547 (xscheme-send-control-g-interrupt): Use new var.
1548
1549 (xscheme-send-control-g-interrupt, xscheme-send-interrupt): Delay
1550 after sending interrupt in order to work around race condition.
1551
1552 (xscheme-send-control-g-interrupt, xscheme-send-interrupt)
1553 (xscheme-send-char): Use xscheme-send-char rather than send-string
1554 to send single char.
1555
1556 (xscheme-process-filter, xscheme-process-filter-alist): Add
1557 support for evaluating expressions outside of the call-excursion.
1558 (xscheme-process-filter:string-action-noexcursion): New func.
1559
1560 (xscheme-write-value): Change output string to match that used by
1561 Edwin.
1562
1563 (xscheme-coerce-prompt): Don't write a space after a command
1564 prompt. The PROMPT-FOR-COMMAND- procedures will take care of this
1565 for us.
1566
1567 (reset-scheme): Delete process after killing it.
1568
1569 2002-01-02 Eli Zaretskii <eliz@is.elta.co.il>
1570
1571 * bindings.el (function-key-map): Don't bind shifted keypad
1572 numeric keys.
1573
1574 2002-01-02 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1575
1576 * enriched.el (enriched-handle-display-prop): Remove unused
1577 variables.
1578 (enriched-mode): Doc fix.
1579
1580 2002-01-02 Eli Zaretskii <eliz@is.elta.co.il>
1581
1582 * international/ucs-tables.el (ucs-8859-8-alist): Comment away
1583 Hebrew points.
1584
1585 2002-01-01 Richard M. Stallman <rms@gnu.org>
1586
1587 * jka-compr.el (jka-compr-write-region): If START = nil, use whole buf.
1588
1589 2001-12-31 Richard M. Stallman <rms@gnu.org>
1590
1591 * comint.el, cus-edit.el, diff-mode.el, enriched.el, font-lock.el:
1592 * generic-x.el, info.el, log-view.el, pcvs-info.el, speedbar.el:
1593 * wid-edit.el, woman.el, calendar/calendar.el, textmodes/flyspell.el:
1594 * emulation/viper-init.el, eshell/em-ls.el, progmodes/antlr-mode.el:
1595 * progmodes/cperl-mode.el, progmodes/idlwave.el:
1596 * progmodes/sh-script.el, progmodes/vhdl-mode.el:
1597 Adapt face definitions to use :weight and :slant.
1598
1599 * ps-print.el (ps-font-lock-face-attributes): Use :weight and :slant.
1600
1601 * cus-edit.el (custom-face-edit-fix-value): Delete `assert' call.
1602
1603 * font-lock.el (initializing from font-lock-face-attributes):
1604 Use :weight and :slant, not :bold and :italic.
1605
1606 2001-12-31 Per Abrahamsen <abraham@dina.kvl.dk>
1607
1608 * cus-edit.el (custom-face-edit-fix-value): New function.
1609 (custom-face-edit): Use it, to convert :italic and :bold to new forms.
1610
1611 2001-12-30 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1612
1613 * progmodes/octave-mod.el (octave-abbrev-table):
1614 * progmodes/idlwave.el (idlwave-mode-abbrev-table):
1615 * progmodes/fortran.el (fortran-mode-abbrev-table):
1616 * progmodes/f90.el (f90-mode-abbrev-table):
1617 * progmodes/vhdl-mode.el (vhdl-mode-abbrev-table-init):
1618 * progmodes/sql.el (sql-mode-abbrev-table): Mark all the
1619 predefined abbrevs as "system" abbrevs.
1620
1621 2001-12-30 Richard M. Stallman <rms@gnu.org>
1622
1623 * info.el (Info-fontify-node): For a **** underline line, put the
1624 invisible and intangible props on the following newline, but not
1625 on the previous newline or the last char of the previous line.
1626
1627 * faces.el (face-set-after-frame-default): Don't change `default' face.
1628
1629 * faces.el (minibuffer-prompt): Adopt some default colors.
1630
1631 * replace.el (query-replace-read-args): Immediate error if read-only.
1632
1633 * textmodes/makeinfo.el (makeinfo-compilation-sentinel):
1634 Display the output buffer in a more intelligent way.
1635
1636 2001-12-30 Eli Zaretskii <eliz@is.elta.co.il>
1637
1638 * ls-lisp.el (insert-directory): Modify the "total" line wording,
1639 in accordance with files.el's insert-directory.
1640
1641 2001-12-29 Richard M. Stallman <rms@gnu.org>
1642
1643 * files.el (basic-save-buffer): If a before-write hook displays
1644 an echo area message, pause before calling basic-save-buffer-1.
1645
1646 2001-12-29 Markus Rost <rost@math.ohio-state.edu>
1647
1648 * textmodes/reftex-global.el (reftex-query-replace-document)
1649 (reftex-change-label): Doc fix.
1650
1651 * dired-aux.el (dired-do-query-replace-regexp): Doc fix.
1652
1653 * progmodes/etags.el (tags-query-replace): Doc fix.
1654
1655 2001-12-29 Richard M. Stallman <rms@gnu.org>
1656
1657 * progmodes/compile.el (compile-internal): Fix previous change.
1658
1659 2001-12-28 Richard M. Stallman <rms@gnu.org>
1660
1661 * mouse.el (mouse-drag-mode-line-1): When dragging a mode line upward,
1662 shrink the windows above as necessary to get space.
1663 (mouse-drag-move-window-bottom, mouse-drag-window-above): New fns.
1664
1665 * net/ange-ftp.el (ange-ftp-allow-child-lookup): Always return nil.
1666 This fixes a bug that treated all files as directories.
1667 (ange-ftp-insert-directory): Explicitly follow symlinks.
1668
1669 * international/iso-transl.el (iso-transl-char-map) Eliminate the
1670 alias symbols--put the translated sequences here directly.
1671
1672 * progmodes/cc-mode.el (c-mode-abbrev-table)
1673 (c++-mode-abbrev-table, objc-mode-abbrev-table)
1674 (java-mode-abbrev-table, pike-mode-abbrev-table):
1675 Mark all the predefined abbrevs as "system" abbrevs.
1676
1677 * mail/sendmail.el (mail-envelope-from): Fix custom type.
1678 (sendmail-send-it): Check mail-specify-envelope-from
1679 and mail-envelope-from in the mail buffer at start.
1680
1681 2001-12-28 Simon Josefsson <jas@extundo.com>
1682
1683 * mail/sendmail.el (mail-envelope-from): Fix :type.
1684 (sendmail-send-it): Copy `mail-envelope-from' from calling buffer.
1685
1686 2001-12-28 Richard M. Stallman <rms@gnu.org>
1687
1688 * net/ldap.el (ldap-search-internal): Handle <file://...> in results.
1689
1690 * simple.el (line-move-invisible): New subroutine.
1691 (line-move-to-column): New subroutine--smarter about advancing over
1692 invisible parts of a line, or lines, but only as long as hpos grows.
1693 (line-move-finish): New subroutine: repeatedly processes desired
1694 column, intangibility, and fields.
1695 (line-move): Use those subroutines.
1696 When moving lines downward, skip invisible text first rather than last.
1697
1698 2001-12-27 Richard M. Stallman <rms@gnu.org>
1699
1700 * international/mule-diag.el (describe-char-after):
1701 Describe the text properties of the char after point.
1702
1703 * help.el (describe-key): Doc fix.
1704
1705 2001-12-26 Markus Rost <rost@math.ohio-state.edu>
1706
1707 * find-dired.el (find-dired-sentinel): Precede exit message by
1708 two spaces, to match the regexp in dired-between-files.
1709
1710 2001-12-28 Miles Bader <miles@gnu.org>
1711
1712 * wid-edit.el (widget-toggle-value-create): Don't eval actual
1713 images (which are lists too).
1714
1715 2001-12-27 Eli Zaretskii <eliz@is.elta.co.il>
1716
1717 * language/european.el: Fix the doc string of "Latin-5" language
1718 environment.
1719
1720 2001-12-26 Richard M. Stallman <rms@gnu.org>
1721
1722 * textmodes/flyspell.el (flyspell-mode-map): New keymap,
1723 defined as before 2001-11-09.
1724 (add-minor-mode call): Specify the keymap.
1725
1726 * progmodes/compile.el (compile-internal):
1727 Set TERM variable in process-environment.
1728
1729 2001-12-25 Richard M. Stallman <rms@gnu.org>
1730
1731 * help-mode.el (help-xref-on-pp): Catch and ignore errors in scanning
1732 the buffer.
1733
1734 * startup.el (command-line): Convert command line args
1735 to Emacs internal representation using locale-coding-system.
1736
1737 2001-12-25 Eli Zaretskii <eliz@is.elta.co.il>
1738
1739 * international/fontset.el: Don't require ind-util when compiling.
1740
1741 2001-12-25 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1742
1743 * emulation/tpu-edt.el (tpu-reset-screen-size): Use
1744 set-frame-height and set-frame-width instead of set-screen-height
1745 and set-screen-width.
1746
1747 * vt-control.el (vt-wide, vt-narrow): Use set-frame-width instead
1748 of obsolete set-screen-width.
1749
1750 * locate.el (locate): Remove dot at the end of error argument.
1751
1752 * emerge.el (emerge-show-file-name): Use frame-height instead of
1753 obsolete screen-height.
1754
1755 * mail/mh-utils.el (mh-show-msg): Likewise.
1756 (mh-handle-process-error): Use frame-width instead of obsolete
1757 screen-width.
1758
1759 2001-12-25 Richard M. Stallman <rms@gnu.org>
1760
1761 * window.el (balance-windows): Use new PRESERVE-BEFORE arg
1762 to enlarge-window. Use save-selected-window. Don't try
1763 to resize windows that end at the bottom "level".
1764 Retry changing the sizes until the windows get the desired sizes.
1765 Discount the minibuffer when computing total height available.
1766
1767 * emacs-lisp/debug.el (debugger-mode-map): Bind C-m, not `RET'.
1768 (debugger-make-xrefs): Only make a button for the first symbol
1769 on any line.
1770
1771 2001-12-24 Eli Zaretskii <eliz@is.elta.co.il>
1772
1773 * term/internal.el (dos-cpNNN-setup, dos-codepage-setup):
1774 Call IT-setup-unicode-display here instead of adding it to
1775 dos-codepage-setup-hook, so that Unicode display tables are set
1776 before dos-codepage-setup-hook runs.
1777
1778 2001-12-24 Richard M. Stallman <rms@gnu.org>
1779
1780 * net/net-utils.el (ftp-mode-abbrev-table): Don't define it.
1781 (nslookup-mode-abbrev-table): Don't define it.
1782 (smbclient-mode-abbrev-table): Don't define it.
1783 (ftp-mode): Don't use ftp-mode-abbrev-table; don't enable Abbrev mode.
1784 (nslookup-mode, smbclient-mode): Likewise.
1785 (network-connection-service-abbrev-alist): Variable deleted.
1786 (network-connection-mode-setup): Don't set up abbrev table.
1787
1788 * faces.el (minibuffer-prompt): New face.
1789 (minibuffer-prompt-properties): Add `face' property.
1790
1791 * replace.el (occur-mode-display-occurrence): New function.
1792 (occur-mode-map): Bind C-o to it.
1793
1794 2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
1795
1796 * viper-cmd.el (viper-change-state): Got rid of make-local-hook.
1797 (viper-special-read-and-insert-char): Make C-m work right in the r
1798 comand.
1799 (viper-buffer-search-enable): Fixed format string.
1800
1801 * viper-ex.el (ex-token-alist): Use ex-set-visited-file-name
1802 instead of viper-info-on-file.
1803 (ex-set-visited-file-name): New function.
1804
1805 * viper.el (viper-emacs-state-mode-list): Added mail-mode.
1806
1807 * ediff-mult.el (ediff-meta-mark-equal-files): Added optional
1808 action argument.
1809
1810 * ediff-init.el: Fixed some doc strings.
1811
1812 * ediff-util.el (ediff-after-quit-hook-internal): New variable.
1813 Got rid of make-local-hook.
1814
1815 * ediff-wind.el (ediff-setup-control-frame): Got rid of
1816 make-local-hook.
1817
1818 2001-12-23 Richard M. Stallman <rms@gnu.org>
1819
1820 * term/x-win.el (x-handle-geometry): Put height and width
1821 on default-frame-alist, left and top on initial-frame-alist.
1822 * term/w32-win.el (x-handle-geometry): Likewise.
1823
1824 * sort.el (sort-reorder-buffer): Copy all to a temp buffer first.
1825
1826 * play/yow.el (yow): Use an arg to distinguish interactive calls,
1827 not interactive-p.
1828
1829 2001-12-22 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1830
1831 * emacs-lisp/elint.el (elint-unknown-builtin-args): Remove
1832 mocklisp entries.
1833
1834 * subr.el (insert-string): Moved from mocklisp.c, reimplemented in
1835 Lisp. Obsoleted.
1836
1837 * emulation/mlconvert.el: File removed.
1838
1839 * emulation/mlsupport.el: Moved to obsolete.
1840
1841 * obsolete/mlsupport.el: Moved there from lisp/emulation.
1842
1843 * emacs-lisp/find-gc.el (source-files): Remove mocklisp.c.
1844
1845 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove
1846 mocklisp case.
1847
1848 * help-fns.el (describe-function-1): Remove mocklisp function
1849 case.
1850
1851 2001-12-22 Miles Bader <miles@gnu.org>
1852
1853 * textmodes/refill.el (refill-mode): Don't barf when redundantly
1854 turning refill-mode off.
1855
1856 2001-12-22 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1857
1858 * time.el (display-time-load-average-threshold): New variable.
1859 (display-time-update): Use it.
1860
1861 These changes allow cycling through past 1, 5 and 15 minutes
1862 load-average displayed in the mode-line.
1863
1864 * time.el (display-time-default-load-average): New customizable option.
1865 (display-time-load-average): New variable.
1866 (display-time-cycle-load-average): New function.
1867 (display-time-update): Use them.
1868
1869 2001-12-21 Richard M. Stallman <rms@gnu.org>
1870
1871 * apropos.el (apropos-print): SPACING is now nil or a separator string.
1872 (apropos-documentation, apropos-value): Pass a suitable string.
1873
1874 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
1875
1876 * dired.el (dired-free-space-program, dired-free-space-args):
1877 Aliases for back-compatibility.
1878
1879 * info.el (Info-select-node): If Info-use-header-line is nil, set
1880 header-line-format to nil.
1881 (Info-fontify-node): Don't put a keymap text property on the
1882 heading if we are not going to display the header line. Remove
1883 any such text properties left over from past visits to this node.
1884
1885 * ls-lisp.el (insert-directory): Insert the amount of free disk
1886 space, like files.el's insert-directory does.
1887
1888 * files.el (directory-free-space-program): Mention
1889 file-system-info in the doc string.
1890 (get-free-disk-space): New function; code moved from
1891 insert-directory.
1892 (insert-directory): Call get-free-disk-space to get the amount of
1893 free space.
1894
1895 2001-12-21 Richard M. Stallman <rms@gnu.org>
1896
1897 * help.el (view-order-manuals, view-emacs-news, describe-copying)
1898 (describe-distribution, describe-project): Use view-file.
1899
1900 * emacs-lisp/cl-indent.el (define-modify-macro): Better indent spec.
1901
1902 * net/ange-ftp.el (ange-ftp-file-modtime): Use save-match-data.
1903
1904 * emacs-lisp/easy-mmode.el (define-minor-mode):
1905 Make no arg by default in an interactive call,
1906 so that repeating the command toggles again.
1907
1908 * emacs-lisp/lisp-mode.el (eval-defun-1): Cope with atoms as args.
1909
1910 2001-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
1911
1912 * antlr-mode.el: More sophisticated indentation of cpp directive.
1913 (antlr-indent-at-bol-alist): New user option.
1914 (antlr-indent-line): Use it.
1915 (antlr-indent-style): New user option.
1916 (antlr-mode): Use it.
1917 (antlr-indent-item-regexp): Customize.
1918
1919 * antlr-mode.el: Syntax highlighting changes.
1920 (antlr-font-lock-literal-regexp): New user option.
1921 (antlr-font-lock-syntax-face): New face used for :, |, ....
1922 (antlr-font-lock-default-face): New face.
1923 (antlr-font-lock-additional-keywords): Use them.
1924
1925 * antlr-mode.el: New command to insert options -- variables.
1926 (antlr-mode-map): New binding [C-c C-o].
1927 (antlr-mode-menu): New submenus.
1928 (antlr-options-use-submenus): New user option.
1929 (antlr-tool-version): New user option.
1930 (antlr-options-auto-colon): New user option.
1931 (antlr-options-style): New user option.
1932 (antlr-options-push-mark): New user option.
1933 (antlr-options-assign-string): New user option.
1934 (antlr-options-headings): New variable.
1935
1936 * antlr-mode.el: New command to insert options -- specific.
1937 (antlr-options-alists): New variable.
1938 (antlr-read-value): New function.
1939 (antlr-read-boolean): New function.
1940 (antlr-language-option-extra): New function.
1941 (antlr-language-limit-n-regexp): Change default to higher LIMIT.
1942 (antlr-c++-mode-extra): New function.
1943 (antlr-grammar-tokens): New function.
1944 (antlr-imenu-create-index-function): New optional argument.
1945
1946 * antlr-mode.el: New command to insert options -- functions.
1947 (antlr-insert-option): New command.
1948 (antlr-insert-option-interactive): New function.
1949 (antlr-options-menu-filter): New function.
1950 (antlr-option-kind): New function.
1951 (antlr-scan-lists): New alias.
1952 (antlr-scan-lists-internal): New function.
1953 (antlr-skip-file-prelude): Hack for special SKIP-COMMENT.
1954 (antlr-option-level): New function.
1955 (antlr-syntactic-grammar-depth): New function.
1956 (antlr-option-location): New function.
1957 (antlr-insert-option-do): New function.
1958 (antlr-option-spec): New function.
1959 (antlr-version-string): New function.
1960 (antlr-insert-option-existing): New function.
1961 (antlr-insert-option-space): New function.
1962 (antlr-insert-option-area): New function.
1963
1964 * antlr-mode.el: New electric keys ":;|&(){}", TAB works better
1965 with narrowing. Menu change. Miscellaneous.
1966 (antlr-mode-menu): Include "Indent Region" and "Customize Antlr".
1967 (antlr-mode-map): New bindings for characters in ":;|&(){}".
1968 (antlr-electric-character): New command.
1969 (antlr-class-header-regexp): New variable.
1970 (antlr-font-lock-additional-keywords): Use it.
1971 (antlr-imenu-create-index-function): Use it.
1972 (antlr-file-dependencies): Use it.
1973 (antlr-indent-line): Also works with restrictions.
1974 (antlr-indent-command): Interactive spec - changes the buffer.
1975 (antlr-language-for-option): Deletia.
1976 (antlr-language-option): New function, defined instead.
1977 (antlr-mode): Use it.
1978 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
1979
1980 * jka-compr.el (jka-compr-partial-uncompress): Use null-device
1981 instead of a literal /dev/null.
1982
1983 * Makefile.in (distclean): Remove Makefile in the build
1984 directory, not in the source directory.
1985
1986 2001-12-21 Simon Josefsson <jas@extundo.com>.
1987
1988 * mail/smtpmail.el (smtpmail-send-queued-mail): Use
1989 with-temp-buffer instead of find-file-noselect, and bind
1990 coding-system-for-read to no-conversion when reading the queued
1991 messages. (Simon's code modified slightly by Eli Zaretskii.)
1992
1993 2001-12-20 Werner Lemberg <wl@gnu.org>
1994
1995 * international/mule-diag.el (describe-coding-system,
1996 print-coding-system-briefly): Make printed output have a similar
1997 format as describe-character-set.
1998
1999 2001-12-20 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2000
2001 * play/blackbox.el (bb-member): Remove, use member instead.
2002 (bb-delete): Remove, use delete instead.
2003 Update copyright notice. Defvar for bb-board, bb-x, bb-y,
2004 bb-score, bb-detour-count and bb-balls-placed.
2005 Propertize results of rays.
2006
2007 2001-12-19 Karl Fogel <kfogel@red-bean.com>
2008
2009 * isearch.el (isearch-forward, isearch-edit-string): Make doc
2010 strings mention keybinding for `isearch-yank-word-or-char',
2011 rather than `isearch-yank-word', since the former is bound now
2012 and the latter is not.
2013 (isearch-yank-word-or-char): Fix formatting.
2014
2015 2001-12-19 Werner Lemberg <wl@gnu.org>
2016
2017 * language/czech.el, language/european.el, language/slovak.el: More
2018 fixes for language info doc strings.
2019
2020 2001-12-19 Eli Zaretskii <eliz@is.elta.co.il>
2021
2022 * loadup.el: Add "language" to the load-path.
2023
2024 2001-12-19 Richard M. Stallman <rms@gnu.org>
2025
2026 * international/mule-cmds.el (describe-language-environment):
2027 Fix calls to help-xref-button.
2028
2029 2001-12-19 Miles Bader <miles@gnu.org>
2030
2031 * international/fontset.el: Require `ind-util' when compiling.
2032
2033 2001-12-18 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2034
2035 * language/ethio-util.el (ethio-modify-vowel): Use char-to-string
2036 instead of decompose-composite-char.
2037
2038 2001-12-18 Richard M. Stallman <rms@gnu.org>
2039
2040 * simple.el (eval-expression-print-level)
2041 (eval-expression-print-length): Doc fixes.
2042
2043 * international/mule-diag.el (describe-character-set):
2044 Fix the arg to help-xref-button.
2045
2046 * files.el (directory-free-space-program): New variable.
2047 (directory-free-space-args): New variable.
2048 (insert-directory): Use those two variables for getting free space.
2049 Use file-system-info instead, if that is defined.
2050
2051 * dired.el (dired-free-space-program): Variable deleted.
2052 (dired-free-space-args): Variable deleted.
2053 (dired-insert-directory): Don't try to determine free space.
2054
2055 * files.el (font-lock-defaults): Add risky-local-variables prop.
2056 (hack-one-local-variable): Treat various font-lock variables as risky.
2057
2058 2001-12-18 Werner Lemberg <wl@gnu.org>
2059
2060 * language/chinese.el, language/cyrillic.el:
2061 * language/czech.el, language/european.el, language/greek.el:
2062 * language/hebrew.el, language/indian.el, language/japanese.el:
2063 * language/korean.el, language/lao.el, language/slovak.el:
2064 * language/thai.el, language/tibetan.el, language/vietnamese.el:
2065 Improve documentation strings of coding systems and language infos.
2066
2067 2001-12-18 Werner LEMBERG <wl@gnu.org>
2068
2069 Add support for EUC-TW decoding/encoding.
2070
2071 * language/china-util.el (big5-to-flat-code, flat-code-to-big5,
2072 euc-to-flat-code, flat-code-to-euc, expand-euc-big5-alist):
2073 New auxiliary functions to build `big5-to-cns'.
2074 (big5-to-cns): New translation alist.
2075
2076 * language/chinese.el: Added new coding system `euc-tw' and its
2077 alias `euc-taiwan'.
2078 Updated language `Chinese-CNS' to include euc-tw encoding also.
2079 (ccl-decode-euc-tw, ccl-encode-euc-tw): New functions for handling
2080 euc-tw.
2081
2082 2001-12-18 Dave Love <fx@gnu.org>
2083
2084 * loadup.el: Add language/utf-8-lang, language/georgian.
2085
2086 * image-file.el (image-file-name-extensions): Add pnm. Doc fix.
2087 (image-file-name-regexps): Doc fix.
2088
2089 * server.el (server-unload-hook): New function.
2090
2091 * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): Group the leader.
2092 (lm-crack-copyright): Cope with multi-line copyright `lines'.
2093
2094 * simple.el (newline): Doc fix.
2095 (eval-expression-print-level, eval-expression-print-length): Doc
2096 fix. Amend :type.
2097 (next-line, previous-line): Make arg optional.
2098 (newline): Doc fix.
2099
2100 * Makefile.in (DONTCOMPILE): Add various language files.
2101
2102 * international/quail.el (quail-input-string-to-events): Don't use
2103 string-to-list.
2104
2105 * progmodes/f90.el (f90-break-line): Avoid infinite recursion
2106 calling `newline'.
2107
2108 2001-12-17 Richard M. Stallman <rms@gnu.org>
2109
2110 * comint.el (comint-dynamic-list-input-ring-select): New function.
2111 Switches back to the old window configuration.
2112 (comint-dynamic-list-input-ring): Bind RET to that function.
2113 (comint-dynamic-list-input-ring-window-conf): New variable.
2114
2115 2001-12-17 Werner Lemberg <wl@gnu.org>
2116
2117 * international/mule-conf.el: Improve documentation strings of
2118 character sets.
2119
2120 2001-12-16 Richard M. Stallman <rms@gnu.org>
2121
2122 * dired.el (dired-copy-filename-as-kill): Moved from dired-x.el.
2123 (dired-mode-map): Bind w to dired-copy-filename-as-kill.
2124
2125 * dired-x.el (dired-copy-filename-as-kill): Moved to dired.el.
2126
2127 * autoinsert.el (auto-insert-alist): Redo finding C and C++ headers.
2128 Add a DESCRIPTION for the makefile item.
2129
2130 * find-file.el (ff-other-file-name): New function.
2131
2132 2001-12-16 Eli Zaretskii <eliz@is.elta.co.il>
2133
2134 * international/quail.el (quail-input-string-to-events): Fix last
2135 change.
2136
2137 2001-12-16 Richard M. Stallman <rms@gnu.org>
2138
2139 * isearch.el (isearch-edit-string): When we set isearch-string
2140 to the default, also set isearch-message.
2141
2142 * subr.el (temp-buffer-show-hook, temp-buffer-setup-hook): Add defvars.
2143
2144 * startup.el (command-line-1): Display startup screen
2145 even if there are command line args.
2146 Add a note about how to go to editing your files.
2147 (fancy-splash-head): Add a note about how to go to your files.
2148 (fancy-splash-outer-buffer): New variable.
2149 (fancy-splash-screens): Bind variable fancy-splash-outer-buffer.
2150
2151 * subr.el (with-temp-message): At the end, always discard
2152 the temp message, even by clearing the echo area.
2153
2154 * progmodes/sh-script.el (sh-mode): Run sh-mode-hook.
2155
2156 2001-12-16 Stefan Monnier <monnier@cs.yale.edu>
2157
2158 * log-view.el (log-view-message-re, log-view-current-tag):
2159 Recognize Subversion's log output format.
2160
2161 * international/fontset.el: Build the list L at compile time.
2162
2163 * language/ind-util.el (mapthread): Make a closure.
2164
2165 2001-12-15 Richard M. Stallman <rms@gnu.org>
2166
2167 * isearch.el (isearch-start-hscroll): New variable.
2168 (isearch-mode): Set isearch-start-hscroll.
2169 (isearch-update): Restore original hscrolling if possible.
2170
2171 * isearch.el (isearch-edit-string):
2172 Treat isearch-yank-word-or-char specially, like isearch-yank-word.
2173
2174 * emacs-lisp/debug.el (debugger-previous-backtrace): New variable.
2175 (debugger-make-xrefs): Optimize by (1) using skip-syntax-forward
2176 rather than regexp search and (2) copying text properties
2177 already set up on text unchanged from the previous backtrace.
2178
2179 * case-table.el (set-case-syntax-pair):
2180 Detect invalid calls and signal an error.
2181
2182 2001-12-15 Richard M. Stallman <rms@gnu.org>
2183
2184 * language/ind-util.el (range): Function deleted.
2185 (indian-regexp-of-hashtbl-keys): Renamed from `regexp-of-hashtbl-keys'.
2186 All calls changed.
2187
2188 * language/devan-util.el (devanagari-range): Renamed from `range'.
2189 All calls changed.
2190 (devanagari-regexp-of-hashtbl-keys):
2191 Renamed from `regexp-of-hashtbl-keys'. All calls changed.
2192
2193 2001-12-15 Dave Love <fx@gnu.org>
2194
2195 * language/ind-util.el: Don't require cl.
2196 (indian-glyph-char, indian-glyph-max-char)
2197 (indian-char-glyph): Moved from indian.el
2198 (indian--puthash-char, mapthread): Don't quote lambda.
2199 (indian--map): New function.
2200 (indian--puthash-v, indian--puthash-c, indian--puthash-m)
2201 (indian--puthash-cv): Use it.
2202
2203 * language/indian.el (indian-glyph-char, indian-glyph-max-char)
2204 (indian-char-glyph): Moved to ind-util.el
2205
2206 * language/devan-util.el (devanagari-post-read-conversion):
2207 New function.
2208
2209 * language/georgian.el: New file.
2210
2211 * international/mule-cmds.el (locale-language-names): Add various
2212 entries. Remove utf-8 special case.
2213 (locale-charset-language-names, locale-preferred-coding-systems):
2214 Add utf-8 case.
2215 (set-language-environment): Process required-features earlier.
2216
2217 * international/quail.el (quail-keyboard-layout-alist):
2218 Add pc105-uk.
2219 (quail-keyboard-layout-type): Fix :type.
2220 (quail-choose-completion-string): Simplify.
2221 (quail-update-leim-list-file): Don't get fooled by commented-out code.
2222 (quail-input-string-to-events): Run events through
2223 translation-table-for-input.
2224
2225 * international/mule-conf.el (translation-table-for-input):
2226 New variable.
2227 (latin-iso8859-14): Amend description.
2228 (file-coding-system-alist): Add entry for utf-8.
2229
2230 * language/utf-8-lang.el: New file.
2231
2232 * international/code-pages.el: New file.
2233
2234 * language/hebrew.el ("Windows-1255"): New language.
2235
2236 * language/european.el ("Welsh", "Latin-7", "Lithuanian")
2237 ("Latvian"): New languages.
2238
2239 2001-12-14 Stefan Monnier <monnier@cs.yale.edu>
2240
2241 * xml.el: Use setq rather than (set 'foo bar).
2242 Use push+nreverse rather than append.
2243 (xml-node-name, xml-node-attributes, xml-node-children):
2244 Use defsubst rather than macros.
2245 (xml-parse-region): Handle a nil return value from xml-parse-tag.
2246 (xml-parse-tag): Don't skip white space. Return nil for a comment.
2247 Concat the two strings surrounding a comment into a single string.
2248
2249 * newcomment.el (comment-indent): Jump to the middle of empty comments.
2250
2251 2001-12-14 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2252
2253 * select.el (xselect-convert-to-class, xselect-convert-to-name):
2254 Document.
2255
2256 2001-12-14 Andre Spiegel <spiegel@gnu.org>
2257
2258 * vc-hooks.el (vc-checkout-model, vc-state, vc-workfile-version):
2259 Return nil if FILE is not registered.
2260 (vc-check-master-templates, vc-default-make-version-backups-p):
2261 Doc fix.
2262
2263 2001-12-13 David Ponce <david@dponce.com>
2264
2265 * ruler-mode.el (ruler-mode-extra-left-cols): Remove.
2266 (ruler-mode-left-fringe-cols): New macro.
2267 (ruler-mode-right-fringe-cols): New macro.
2268 (ruler-mode-left-scroll-bar-cols): New macro.
2269 (ruler-mode-right-scroll-bar-cols): New macro.
2270 (ruler-mode-ruler): Use above new macros.
2271
2272 2001-12-13 Richard M. Stallman <rms@gnu.org>
2273
2274 * files.el (set-auto-mode): Fix previous change.
2275
2276 2001-12-13 Stefan Monnier <monnier@cs.yale.edu>
2277
2278 * emacs-lisp/easymenu.el (easy-menu-intern): New fun.
2279 (easy-menu-do-define, easy-menu-convert-item-1)
2280 (easy-menu-define-key-intern, easy-menu-get-map): Use it.
2281 (easy-menu-return-item): Only return nil if there is no binding.
2282
2283 2001-12-13 Rajesh Vaidheeswarran <rv@gnu.org>
2284
2285 * whitespace.el (whitespace-version): 3.2
2286 * whitespace.el (whitespace-force-mode-line-update): Replace with
2287 `whitespace-mode-line-update', which is an alias to the correct
2288 function in various emacsen.
2289 * whitespace.el (whitespace-{un,}highlight-the-space):
2290 Add colorized highlighting of the bogus whitespaces in a buffer/file,
2291 using the `whitespace-highlight-face' if
2292 `whitespace-display-spaces-in-color' is set.
2293
2294 2001-12-13 Eli Zaretskii <eliz@is.elta.co.il>
2295
2296 * international/mule.el (set-auto-coding): Don't search for
2297 "unibyte:" or "coding:" if set-auto-mode-1 returns nil.
2298
2299 2001-12-13 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2300
2301 * mail/mailabbrev.el (mail-abbrevs-setup): Do not use make-local-hook.
2302
2303 * mail/rmail.el (rmail-fontify-buffer-function): Likewise.
2304
2305 * mail/rmailsum.el (rmail-summary-mode): Likewise.
2306
2307 2001-12-13 Richard M. Stallman <rms@gnu.org>
2308
2309 * simple.el (undo): Always set this-command to `undo',
2310 so that the next undo after an error will not begin redoing.
2311
2312 * simple.el (shell-command): Doc fix.
2313 (shell-command-on-region): If there is output an an error,
2314 add "...Shell command failed" to the output.
2315
2316 2001-12-13 David Ponce <david@dponce.com>
2317
2318 * ruler-mode.el (ruler-mode-left-fringe-cols): Variable removed.
2319 (ruler-mode-left-fringe-cols): Function replaced by more efficient
2320 implementation `ruler-mode-extra-left-cols'.
2321 (ruler-mode-ruler): Use above new function. Take into account
2322 that the fringe areas can now be resized.
2323
2324 2001-12-12 Richard M. Stallman <rms@gnu.org>
2325
2326 * international/characters.el (Unicode): Comment out
2327 the specifications for kelvin and angstrom signs.
2328
2329 * international/mule.el (make-translation-table-from-vector):
2330 Allow null elements in VEC.
2331
2332 * international/ucs-tables.el (unify-8859-on-encoding-mode)
2333 (unify-8859-on-decoding-mode): Swap the code in their bodies.
2334 Add :version.
2335
2336 2001-12-11 Richard M. Stallman <rms@gnu.org>
2337
2338 * derived.el (derived-mode-p): Function moved to subr.el.
2339
2340 * subr.el (derived-mode-p): Moved here from derived.el.
2341
2342 * international/mule.el (set-auto-coding): Use set-auto-mode-1.
2343
2344 * files.el (set-auto-mode-1): New subroutine, broken out of
2345 set-auto-mode.
2346 (set-auto-mode, hack-local-variables-prop-line): Use that.
2347
2348 2001-12-11 Dave Love <fx@gnu.org>
2349
2350 * language/thai-util.el, language/thai.el: Add Unicode equivalents.
2351
2352 * language/european.el: Remove autoload cookies. Fix registration
2353 of diacritic composition function.
2354
2355 2001-12-11 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2356
2357 * calendar/todo-mode.el: Require time-stamp.
2358
2359 * net/zone-mode.el (zone-mode): Don't use make-local-hook.
2360
2361 2001-12-11 Richard M. Stallman <rms@gnu.org>
2362
2363 * emacs-lisp/authors.el (authors-aliases): Delete "Richard Stallmao".
2364
2365 * textmodes/ispell.el (ispell-buffer-local-parsing):
2366 Match xml like sgml.
2367
2368 * emacs-lisp/advice.el (ad-compile-function):
2369 Byte compile the function under another (uninterned) name.
2370
2371 * gud.el (gdb): Define and bind gud-jump.
2372
2373 * font-lock.el (font-lock-mode):
2374 Put our function at the end of after-change-functions.
2375
2376 * ediff-diff.el (ediff-cmp-options): Doc fix.
2377
2378 * comint.el (comint-password-prompt-regexp): Match "UNIX Password".
2379
2380 2001-12-10 Richard M. Stallman <rms@gnu.org>
2381
2382 * isearch.el (isearch-yank-word-or-char): New function.
2383 (isearch-mode-map): Bind C-w to that.
2384
2385 * menu-bar.el (menu-bar-mode): Make arg optional.
2386
2387 * simple.el (line-move): Cope if next-single-property-change
2388 or previous-single-property-change returns nil.
2389
2390 * emacs-lisp/lisp-mnt.el (lm-verify): New arg NON-FSF-OK.
2391 Don't use interactive-p; instead, pass the proper args
2392 in (interactive...). Clean up most of the trouble-report strings.
2393
2394 2001-12-10 Eli Zaretskii <eliz@is.elta.co.il>
2395
2396 * mail/smtpmail.el (smtpmail-send-queued-mail): Insert the
2397 enqueued messages literally.
2398
2399 2001-12-10 Noah Friedman <friedman@splode.com>
2400
2401 * battery.el (battery-insert-file-contents): Obsolete function
2402 removed.
2403 (battery-read-function): Obsolete function removed.
2404 (battery-linux-proc-apm): Use insert-file-contents.
2405
2406 2001-12-07 Stephen Eglen <stephen@gnu.org>
2407
2408 * iswitchb.el (iswitchb-visit-buffer):
2409 Use `select-frame-set-input-focus'--needed when window manager
2410 uses "click to focus" policy.
2411
2412 2001-12-09 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2413
2414 * COPYING: Moved back.
2415
2416 2001-12-07 Eli Zaretskii <eliz@is.elta.co.il>
2417
2418 * term/internal.el (IT-character-translations): Add entries for
2419 more points.
2420
2421 * international/characters.el: Resurrect the Hebrew category
2422 settings for all Hebrew characters removed by the last change.
2423 Add code for setting the Hebrew category of the Unicode Hebrew
2424 characters. Set syntax entries for Hebrew punctuation characters.
2425
2426 * international/ucs-tables.el (ucs-8859-8-alist): Add Hebrew
2427 points and directional formatting control characters.
2428
2429 2001-12-07 Dave Love <fx@gnu.org>
2430
2431 * language/lao-util.el: Add Unicode equivalents for rules.
2432 (lao-post-read-conversion): New function.
2433
2434 * language/lao.el: Add Unicode equivalents.
2435 (lao): Add post-read conversion.
2436
2437 * international/latin1-disp.el: Fix some 8-bit-graphic characters.
2438 Use iso2022 encoding.
2439 (latin1-char-displayable-p): Doc fix.
2440 (latin1-display-ucs-per-lynx): New option.
2441 (latin1-display-ucs-per-lynx): New command.
2442 (latin1-display-reset): Special-case arabic.
2443 (ucs-tables): Require.
2444 (latin1-display-sets, latin1-display-setup): Add arabic.
2445 (latin1-display) <variable>: Use function latin1-display.
2446 (latin1-display) <function>: Add mule-unicode stuff.
2447 (latin1-display-check-font): Don't lose if `info' is nil.
2448
2449 * international/iso-transl.el: Insert Latin-1 characters, not
2450 unibyte codes.
2451
2452 * language/european.el (diacritic-composition-pattern): New constant.
2453 (diacritic-compose-region, diacritic-compose-string)
2454 (diacritic-compose-buffer, diacritic-post-read-conversion)
2455 (diacritic-composition-function): New functions.
2456
2457 * international/utf-8.el (ucs-mule-to-mule-unicode):
2458 New translation table.
2459 (ccl-encode-mule-utf-8): Use it.
2460 (utf-8-untranslated-to-ucs, utf-8-help-echo, utf-8-compose)
2461 (utf-8-post-read-conversion, utf-8-pre-write-conversion): New function.
2462 (utf-8-subst-table): New variable.
2463 (utf-8-compose-scripts): New option.
2464 (mule-utf-8): Update safe-charsets, pre-write and post-read conversion.
2465
2466 * international/ucs-tables.el, international/utf-8-subst.el:
2467 New files.
2468
2469 * international/characters.el: Don't set word syntax (the default)
2470 explicitly. Add a diacritic category. Add info for Unicode
2471 equivalents of characters in various Mule charsets and for extra
2472 Unicode characters. Don't define specific categories for
2473 Indian/Devanagari, since they aren't used.
2474
2475 2001-12-06 Richard M. Stallman <rms@gnu.org>
2476
2477 * textmodes/fill.el (set-justification): Rename arg VALUE to STYLE.
2478 (set-justification-left, set-justification-right): Doc fix.
2479
2480 * progmodes/f90.el (f90-break-line): Use (newline 1) to insert newline.
2481 (bug-f90-mode): Variable deleted.
2482
2483 2001-12-06 Stefan Monnier <monnier@cs.yale.edu>
2484
2485 * indent.el (indent-line-function): Default is indent-relative again.
2486
2487 2001-12-07 Miles Bader <miles@gnu.org>
2488
2489 * progmodes/compile.el (compilation-error-regexp-alist):
2490 Added regexps for RXP.
2491
2492 2001-12-05 Eli Zaretskii <eliz@is.elta.co.il>
2493
2494 * progmodes/cwarn.el (cwarn-font-lock-match-assignment-in-expression):
2495 Add shift-assignment operators to those highlighted, and highlight
2496 the whole operator rather than just the "=".
2497
2498 2001-12-04 Juanma Barranquero <lektu@terra.es>
2499
2500 * files.el (save-abbrevs, save-some-buffers): Don't ask the user
2501 before saving abbrevs if `save-abbrevs' has the value `silently'.
2502
2503 2001-12-04 Andreas Schwab <schwab@suse.de>
2504
2505 * xt-mouse.el (turn-off-xterm-mouse-tracking): Doc fix.
2506
2507 2001-12-04 Colin Walters <walters@debian.org>
2508
2509 * emacs-lisp/autoload.el (make-autoload): Also generate autoloads
2510 for `defmacro*' forms.
2511
2512 * emacs-lisp/lisp-mode.el (toplevel): Define docstring offset for
2513 `defmacro*'.
2514
2515 2001-12-03 Stefan Monnier <monnier@cs.yale.edu>
2516
2517 * progmodes/antlr-mode.el (antlr-c-common-init): Undo last change.
2518
2519 2001-12-02 Richard M. Stallman <rms@gnu.org>
2520
2521 * files.el (insert-directory): If the df output does not look right,
2522 don't try to use it. Other cleanups in overall code structure.
2523
2524 2001-12-02 Stefan Monnier <monnier@cs.yale.edu>
2525
2526 * textmodes/outline.el (outline-mode-prefix-map):
2527 Add bindings for outline-promote and outline-demote.
2528 (outline-minor-mode-menu-bar-map): New var.
2529 (outline-minor-mode): Use it.
2530 (outline-heading-alist): New var (renamed from outline-level-heading).
2531 (outline-level): Use it.
2532 (outline-insert-heading, outline-promote, outline-demote):
2533 Update to use outline-heading-alist.
2534
2535 * disp-table.el (standard-display-european):
2536 Simplify since the function is not interactive any more.
2537 Don't set the existing buffers to unibyte.
2538
2539 * pcvs-util.el (cvs-file-to-string): Move condition-case outside.
2540
2541 * pcvs.el (cvs-reread-cvsrc): Don't use cvs-file-to-string.
2542
2543 * reveal.el (reveal-mode): Fix reveal-mode's lighter.
2544
2545 * shell.el (shell): Use shell-file-name.
2546 Pop to buffer before calling comint to set COLUMNS properly.
2547
2548 * emacs-lisp/cl.el (svref): New alias.
2549
2550 * progmodes/antlr-mode.el (antlr-c-common-init):
2551 Don't inhibit adaptive-fill-mode any more.
2552
2553 * progmodes/delphi.el (delphi-mode): Don't use make-local-hook.
2554
2555 * progmodes/etags.el (tags-with-face): Use make-symbol.
2556 (tags-search, tags-query-replace): Use backquotes.
2557
2558 * textmodes/picture.el (picture-mode-map): Don't use defconst
2559 for a variable.
2560
2561 2001-12-02 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2562
2563 * textmodes/reftex-index.el (reftex-index-mode):
2564 Remove make-local-hook.
2565
2566 * textmodes/reftex-toc.el (reftex-toc-mode): Likewise.
2567
2568 2001-12-02 Kim F. Storm <storm@cua.dk>
2569
2570 * isearch.el (isearch-resume-enabled): New variable.
2571 (isearch-done): Use that variable.
2572
2573 2001-12-01 Richard M. Stallman <rms@gnu.org>
2574
2575 * wid-edit.el (widget-button-click): Don't move point permanently:
2576 Avoid mouse-set-point--instead select the window,
2577 then do save-excursion, then move point.
2578 Specify the buffer for get-char-property.
2579 Don't use `@' in interactive.
2580
2581 * indent.el (indent-line-function):
2582 Default is indent-to-left-margin again.
2583
2584 * replace.el (query-replace-read-args): Display message
2585 if FROM contains `\n' or `\t'.
2586
2587 2001-12-01 Stefan Monnier <monnier@cs.yale.edu>
2588
2589 * indent.el (tab-to-tab-stop): Use delete-horizontal-space.
2590
2591 * bindings.el (minibuffer-local-map): Bind TAB to insert-tab.
2592
2593 * emacs-lisp/regexp-opt.el (regexp-opt):
2594 Bind completion-regexp-list to nil.
2595
2596 * progmodes/hideif.el (hif-nexttoken): Move to before first def.
2597
2598 2001-12-01 Eli Zaretskii <eliz@is.elta.co.il>
2599
2600 * progmodes/idlwave.el, progmodes/idlw-rinfo.el:
2601 * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el:
2602 Update maintainer.
2603
2604 2001-11-30 Stefan Monnier <monnier@cs.yale.edu>
2605
2606 * mail/smtpmail.el: Use with-current-buffer.
2607 (message-make-date, message-make-message-id): Autoload when needed.
2608 (smtpmail-send-it): Use them to add `Date:' and `Message-Id:'
2609 headers when missing.
2610
2611 * international/encoded-kb.el (encoded-kbd-mode):
2612 Use define-minor-mode.
2613
2614 * enriched.el (enriched-mode): Use define-minor-mode.
2615 Use dolist and pop and push.
2616
2617 * info.el (Info-find-node-2): Don't call info-insert-file-contents
2618 with the `visit' argument.
2619 (Info-extract-menu-node-name): Use `replace-regexps-in-string'.
2620
2621 * progmodes/hideif.el (hide-ifdef-mode): Only modify
2622 `change-major-mode-hook' locally. Reset invisibility spec.
2623
2624 * man.el (Man-build-section-alist): Remove last Man-match-substring.
2625
2626 2001-11-30 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
2627
2628 * textmodes/paragraphs.el (mark-paragraph): Clarify doc.
2629 Clarify error message.
2630
2631 2001-11-29 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
2632
2633 * textmodes/paragraphs.el (mark-paragraph): Allow prefix arg.
2634
2635 2001-11-30 Andre Spiegel <spiegel@gnu.org>
2636
2637 * vc-cvs.el (vc-cvs-parse-status): Store file state in property,
2638 don't just return it.
2639
2640 2001-11-30 Eli Zaretskii <eliz@is.elta.co.il>
2641
2642 * menu-bar.el (menu-bar-read-lispref, menu-bar-read-lispintro)
2643 (menu-bar-read-emacs-man, search-emacs-glossary)
2644 (emacs-index-search, elisp-index-search): New functions.
2645 (apropso-documentation, apropos, apropos-value, apropos-variable)
2646 (apropos-commands): Modify menu item names and help text.
2647 (elisp-index-search, emacs-index-search, emacs-glossary):
2648 New menu items.
2649 (menu-bar-manuals-menu): Move the Ordering Manuals item to a
2650 submenu.
2651 (info-elisp, info-elintro): New menu items.
2652 (apropos): Modify the menu item name.
2653
2654 2001-11-30 Stefan Monnier <monnier@cs.yale.edu>
2655
2656 * emacs-lisp/lisp-mode.el (read-if): Add lisp-indent-function prop.
2657
2658 * textmodes/outline.el (outline-promote, outline-demote): Typo.
2659
2660 * man.el (man-follow-mouse): New function.
2661 (Man-mode-map): Bind mouse-2 to it.
2662 (Man-match-substring): Remove. Replace with `match-string'.
2663 (man): Use the `default-value' argument to `read-string'.
2664 (Man-fontify-manpage): Add mouse-face to cross references.
2665
2666 * emacs-lisp/cl-macs.el (shiftf): Fix more. Simplify.
2667
2668 2001-11-29 Stefan Monnier <monnier@cs.yale.edu>
2669
2670 * emacs-lisp/crm.el (completing-read-multiple): Better preserve
2671 the value of require-match in minibuffer-completion-confirm.
2672 Use crm-local-completion-map.
2673
2674 * emacs-lisp/cl-macs.el (shiftf): Fix the fast case so
2675 (let ((a 1) (b 2)) (shiftf a b (cons a b)) b) returns (1 . 2).
2676 (cl-make-type-test): Use char-valid-p for `character'.
2677
2678 * info.el (Info-complete-next-re, Info-complete-cache): New vars.
2679 (Info-complete-menu-item): Rewrite. Add the ability to search
2680 several sequential nodes. Add a simple caching mechanism.
2681 (Info-goto-index): New function extracted from Info-index.
2682 (Info-index): Use it. Add completion to the interactive spec.
2683 (Info-menu-update): Simplify call to `Info-complete-menu-item'.
2684
2685 2001-11-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2686
2687 * COPYING: Removed.
2688
2689 2001-11-29 Dave Love <fx@gnu.org>
2690
2691 * progmodes/fortran.el: Fontify rewind, backspace. Doc fixes.
2692 (fortran-window-create, fortran-window-create-momentarily):
2693 Rewrite, moving error condition.
2694 (fortran-beginning-do, fortran-beginning-if): Fix regexps.
2695 (fortran-mode-syntax-table): Revert last change.
2696
2697 * international/mule.el: Doc fixes.
2698 (map-charset-chars): New function.
2699 (register-char-codings): Use it to cope with generic chars in
2700 safe-chars.
2701
2702 2001-11-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2703
2704 * play/blackbox.el (blackbox-mode, blackbox): Doc fix.
2705
2706 * play/cookie1.el (cookie, cookie-insert, shuffle-vector): Doc fixes.
2707
2708 * play/studly.el (studlify-word, studlify-region)
2709 (studlify-buffer): Fix doc-string.
2710 (studlify-buffer): Add autoload cookie.
2711
2712 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
2713
2714 * textmodes/outline.el (outline-up-heading): Add `invisible-ok' arg.
2715 (outline-up-heading-all): Remove.
2716 (hide-sublevels): Move to end-of-heading before calling flag-region.
2717 (outline-copy-overlay, outline-discard-overlays): Remove.
2718 (outline-flag-region): Use `remove-overlays'.
2719 Don't move to end-of-heading.
2720 (outline-next-visible-heading, outline-back-to-heading)
2721 (outline-on-heading-p): Use outline-invisible-p.
2722 (outline-font-lock-level): Use outline-up-heading's new arg.
2723 (outline-minor-mode): Simplify.
2724 (outline-map-tree, outline-reveal-toggle-invisible): New funs.
2725 (outline): Put a `reveal-toggle-invisible' property.
2726 (outline-level-heading): New var.
2727 (outline-insert-heading, outline-promote, outline-demote)
2728 (outline-toggle-children): New commands.
2729
2730 * progmodes/hideif.el (hif-end-of-line): New function.
2731 (hide-ifdef-mode): Set line-move-ignore-invisible.
2732 (hide-ifdef-region-internal): New function.
2733 (hide-ifdef-region): Use it.
2734 (hif-defined): Return an integer.
2735 (hif-infix-to-prefix): Remove.
2736 (hif-tokenize): Parse from the buffer rather than from a string.
2737 Correctly tokenize integers. Use forward-comment.
2738 (hif-expr): Use hif-or.
2739 (hif-term): Use hif-and.
2740 (hif-factor): Use hif-not. Handle numbers properly.
2741 Don't require parenthesis around `defined's argument.
2742 (hif-and, hif-or, hif-not): New funs.
2743 (hif-canonicalize): Pass a region to hif-tokenize. Use hif-not.
2744 (hif-hide-line): Don't hide the \n before the line.
2745 (hif-possibly-hide): Correctly handle numeric evaluation results.
2746
2747 * progmodes/make-mode.el: Use line-(end|beginning)-position.
2748 (makefile-mode): Set indent-line-function.
2749 (makefile-browser-insert-continuation): Use with-current-buffer.
2750 (makefile-beginning-of-line-point, makefile-end-of-line-point): Remove.
2751
2752 2001-11-28 Karl Fogel <kfogel@red-bean.com>
2753
2754 * isearch.el (isearch-yank-internal): New helper function.
2755 (isearch-yank-char): New function.
2756 (isearch-yank-word, isearch-yank-line): Rewrite to use
2757 isearch-yank-internal.
2758
2759 2001-11-28 Eli Zaretskii <eliz@is.elta.co.il>
2760
2761 * mouse.el (mouse-set-font): Make it a no-op if multiple fonts
2762 aren't supported. Print a message to that effect if invoked.
2763
2764 2001-11-27 Stephen Eglen <stephen@gnu.org>
2765
2766 * locate.el (locate): Put point at first matching file rather
2767 than top of buffer.
2768
2769 2001-11-27 Stefan Monnier <monnier@cs.yale.edu>
2770
2771 * reveal.el: New file.
2772
2773 * progmodes/hideif.el: Misc cleanup.
2774 (hide-ifdef-mode-submap): Put the def in the defvar.
2775 Use substitute-key-definition.
2776 (hide-ifdef-mode): Use define-minor-mode.
2777 (hif-outline-flag-region): Remove.
2778 (hif-show-all): Define in terms of hif-show-ifdef-region.
2779 (hif-after-revert-function): Rename from hif-before-revert-function.
2780 (hide-ifdef-region, hif-show-ifdef-region): Use overlays.
2781 (hif-tokenize): Use with-syntax-table.
2782 (hif-make-range): Use `else' also for `else-p'.
2783 (hif-range-else-p): Remove.
2784 (hif-find-range): Simplify.
2785 (hif-hide-line): Don't bother preserving buffer-modified-p.
2786 (hide-ifdefs, show-ifdefs, hide-ifdef-block, show-ifdef-block):
2787 Don't use selective-display and inhibit-read-only.
2788
2789 * subr.el (copy-overlay, remove-overlays): New funs.
2790
2791 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix off-by-two error.
2792
2793 2001-11-27 Sam Steingold <sds@gnu.org>
2794
2795 * ansi-color.el, bookmark.el, dired.el, emerge.el, fast-lock.el
2796 * lazy-lock.el, mouse-sel.el, mail/feedmail.el
2797 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el, emacs-lisp/ewoc.el
2798 * obsolete/c-mode.el, obsolete/cplus-md.el
2799 * progmodes/dcl-mode.el, progmodes/idlw-shell.el, progmodes/idlwave.el
2800 * term/sun-mouse.el, textmodes/artist.el:
2801 Converted backquote to the new style.
2802 * mouse.el, reposition.el: Likewise (in comments).
2803 * expand.el: Likewise (in a string).
2804
2805 2001-11-27 Richard M. Stallman <rms@gnu.org>
2806
2807 * cus-edit.el (custom-load-symbol): Don't always load locate-library.
2808
2809 2001-11-26 Richard M. Stallman <rms@gnu.org>
2810
2811 * wid-edit.el (widget-toggle-value-create): On graphic terminal,
2812 if :on-glyph or :off-glyph is a list, eval it and store it back.
2813 (checkbox): Quote the values for :on-glyph and :off-glyph.
2814
2815 * cus-start.el (recursive-load-depth-limit): Delete item.
2816
2817 2001-11-26 Stefan Monnier <monnier@cs.yale.edu>
2818
2819 * help-fns.el (describe-categories, help-describe-category-set): New.
2820 describe-categories moved here from src/category.c.
2821
2822 2001-11-26 Sam Steingold <sds@gnu.org>
2823
2824 * progmodes/cc-mode.el (c-submit-bug-report): Make sure that the
2825 arguments to `insert' are strings.
2826
2827 2001-11-26 Richard M. Stallman <rms@gnu.org>
2828
2829 * startup.el (command-line-1): Call kill-buffer only in non-fancy case.
2830
2831 2001-11-26 Eli Zaretskii <eliz@is.elta.co.il>
2832
2833 * international/mule-diag.el: Require help-fns instead of
2834 help-funs.
2835
2836 * help-fns.el: Renamed from help-funs.el.
2837
2838 * startup.el (command-line-1): Don't try to call process-list if
2839 it is not fboundp.
2840
2841 2001-11-26 Sam Steingold <sds@gnu.org>
2842
2843 * frame.el (show-trailing-whitespace): Remove :set argument (the
2844 value was essentially identical to the defalt).
2845
2846 2001-11-26 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2847
2848 * hexl.el (hexl-mode, hexl-follow-ascii): Remove make-local-hook.
2849
2850 * icomplete.el (icomplete-minibuffer-setup): Likewise.
2851
2852 * hilit-chg.el (hilit-chg-set): Likewise.
2853
2854 * speedbar.el (speedbar-mode): Likewise.
2855
2856 * calendar/calendar.el (calendar-mode): Likewise.
2857
2858 * play/yow.el (psychoanalyze-pinhead): Use insert instead of
2859 insert-string.
2860
2861 * play/gamegrid.el (gamegrid-init-buffer): Likewise.
2862
2863 * term/bg-mouse.el (bg-insert-moused-sexp): Likewise.
2864
2865 * term/sun-mouse.el (sun-yank-selection): Likewise.
2866
2867 * textmodes/bib-mode.el (return-key-bib): Likewise.
2868
2869 * calendar/appt.el (appt-disp-window): Likewise.
2870
2871 * calendar/diary-lib.el (list-diary-entries): Likewise.
2872
2873 * array.el (array-reconfigure-rows): Likewise.
2874
2875 * filecache.el (file-cache-minibuffer-complete): Likewise.
2876
2877 * obsolete/cplus-md.el (fill-c++-comment): Likewise.
2878
2879 * strokes.el (strokes-prompt-user-save-strokes): Likewise.
2880
2881 * allout.el (outline-version, outline-open-topic)
2882 (outline-rebullet-heading, outline-insert-listified)
2883 (outline-latex-verbatim-quote-curr-line)
2884 (outline-latexify-one-item, outlineify-sticky): Likewise.
2885
2886 * vc.el (vc-next-action-on-file): Likewise.
2887 (vc-dired-mode): Remove make-local-hook.
2888
2889 2001-11-26 Andre Spiegel <spiegel@gnu.org>
2890
2891 * vc.el (vc-find-version): New function.
2892 (vc-version-other-window): Redefined in terms of the above.
2893
2894 * log-view.el (log-view-find-version): New function.
2895 (log-view-mode-map): Bind it to `f'.
2896
2897 2001-11-26 Gerd Moellmann <gerd@gnu.org>
2898
2899 * language/devan-util.el (dev-char-glyph): Escape `"' in
2900 string literals.
2901 (dev-glyph-glyph, dev-glyph-glyph-2)
2902 (devanagari-compose-syllable-region): Likewise.
2903
2904 2001-11-26 Richard M. Stallman <rms@gnu.org>
2905
2906 * window.el (save-selected-window): No error if saved window is dead.
2907
2908 * help-funs.el (describe-syntax): Put (interactive) after doc string.
2909
2910 2001-11-26 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2911
2912 * international/quail.el (quail-help): Require help-mode in
2913 top-level instead.
2914
2915 * iswitchb.el (iswitchb-exhibit): Use insert instead of
2916 insert-string.
2917
2918 * icomplete.el (icomplete-exhibit): Likewise.
2919
2920 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
2921
2922 * diff-mode.el (diff-end-of-hunk): Watch out for ambiguities.
2923 (diff-hunk-kill): Simplify.
2924 (diff-post-command-hook): Only apply to a single hunk.
2925 (diff-hunk-text): Make `char-offset' non-optional.
2926 (diff-find-text): Return a cons cell.
2927 (diff-find-approx-text): New fun.
2928 (diff-find-source-location): Use it.
2929 (diff-apply-hunk, diff-test-hunk, diff-goto-source):
2930 Adapt to new retval of diff-find-text.
2931
2932 * vc-cvs.el (vc-cvs-parse-entry): Rewrite, comparing the string-
2933 rather than integer- representation of dates.
2934
2935 * textmodes/fill.el (fill-indent-according-to-mode): Default to nil.
2936
2937 * emacs-lisp/syntax.el: Don't profile syntax-ppss any more.
2938 (syntax-after): New fun.
2939
2940 * help-funs.el (describe-syntax): New fun.
2941
2942 * font-lock.el (font-lock-cache-state, font-lock-cache-position)
2943 (font-lock-ppss-stats, font-lock-ppss): Remove.
2944 (font-lock-fontify-syntactically-region): Remove tuning code.
2945 (font-lock-compile-keywords): Fix off-by-one bug.
2946 (font-lock-set-defaults): Don't set removed vars.
2947 (c-keywords): Add `inline'.
2948 (c-type-names): Add `_Complex', `_Imaginary' and `_Bool'.
2949
2950 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
2951 Set syntax-begin-function.
2952 (lisp-interaction-mode-abbrev-table): Defvar to its correct value.
2953 (lisp-interaction-mode): Don't set local-abbrev-table any more.
2954 (lisp-mode-auto-fill): Use syntax-ppss and obey
2955 comment-auto-fill-only-comments.
2956 (lisp-fill-paragraph): Use syntax-ppss.
2957
2958 2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
2959
2960 * mail/rmail.el (rmail-enable-mime-composing): New. A lightweight
2961 version of rmail-enable-mime.
2962 (rmail-forward): Use it.
2963
2964 2001-11-25 Richard M. Stallman <rms@gnu.org>
2965
2966 * emacs-lisp/lisp-mode.el (lisp-indent-function): Add doc string.
2967
2968 * international/quail.el (quail-keyboard-layout-button):
2969 Define button type.
2970 (quail-keyboard-customize-button): Likewise.
2971 (quail-help): Use those button types. Require `help-mode'.
2972 Avoid altering the argument `package'.
2973
2974 * help-mode.el (help-function, help-variable, help-face)
2975 (help-coding-system, help-input-method, help-character-set):
2976 Define each button type with its own explicit define-button-type.
2977
2978 * language/devan-util.el: Comment out parts of the file
2979 which apparently are garbled.
2980
2981 2001-11-25 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2982
2983 * mail/smtpmail.el (smtpmail-deduce-address-list): Don't use
2984 insert-string.
2985
2986 2001-11-25 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2987
2988 * play/snake.el (snake-mode): Remove make-local-hook.
2989
2990 * play/tetris.el (tetris-mode): Likewise.
2991
2992 * play/decipher.el (decipher-mode): Likewise.
2993
2994 * tmm.el (tmm-add-prompt): Likewise.
2995
2996 2001-11-25 Sam Steingold <sds@gnu.org>
2997
2998 * menu-bar.el (menu-bar-apropos-menu): New variable.
2999 Moved all `apropos' bindings to this menu.
3000 (menu-bar-help-menu): Added `menu-bar-apropos-menu'.
3001
3002 2001-11-24 KAWABATA, Taichi <batta@beige.ocn.ne.jp>
3003
3004 The following changes are for new indian languages support based
3005 on Unicode charset and CDAC fonts.
3006
3007 * international/mule-conf.el: Change indian-1-column charset to
3008 indian-glyph charset.
3009
3010 * international/characters.el: Adjusted for the change of
3011 indian-1-column -> indian-glyph.
3012
3013 * international/fontset.el: Delete the setting for indian-1-column
3014 and add the setting for indian-glyph in the default fontset.
3015
3016 * language/indian.el: Completely re-written.
3017
3018 * language/devanagari.el: Completely re-written.
3019
3020 * language/devan-util.el: Completely re-written.
3021
3022 * language/ind-util.el: New file.
3023
3024 2001-11-24 Richard M. Stallman <rms@gnu.org>
3025
3026 * startup.el (command-line-1): Don't do startup screen
3027 if a subprocess is running. Call the startup screen buffer
3028 "GNU Emacs". Make a special mode-line-format for it.
3029
3030 * net/browse-url.el (browse-url-galeon-new-window-is-tab): New var.
3031 (browse-url-galeon): Use that variable.
3032
3033 * mail/supercite.el (sc-toggle-var): Don't use set-variable or
3034 eval-expression. Eval and set the variable simply.
3035
3036 * files.el (temporary-file-directory): Use defcustom.
3037 (small-temporary-file-directory): Likewise.
3038 (normal-backup-enable-predicate): Move down in file
3039 after definition of temporary-file-directory.
3040
3041 * bindings.el (last-buffer, unbury-buffer): Doc fixes.
3042
3043 2001-11-24 Colin Walters <walters@debian.org>
3044
3045 * calc/calc-ext.el (calc-init-extensions): Update the rest of the
3046 autoload names to match files renamed on initial calc import.
3047
3048 * calc/calc.el (Commentary): Cleanup, and add logistic curve
3049 fitting suggestion from Robert J. Chassell <bob@rattlesnake.com>.
3050
3051 2001-11-23 Colin Walters <walters@debian.org>
3052
3053 * Makefile.in (finder_setwins, setwins): Include Calc again.
3054
3055 * calc/calc-rules.el: Add header comment.
3056
3057 2001-11-23 Andre Spiegel <spiegel@gnu.org>
3058
3059 * vc.el (with-vc-properties): Don't bind `filename' locally.
3060 (with-vc-file, edit-vc-file): Use `make-symbol' for local bindings
3061 to avoid name clashes. Fix `lisp-indent-function' property for
3062 both.
3063
3064 2001-11-23 Francesco Potorti` <pot@gnu.org>
3065
3066 * generic-x.el (mailrc-generic-mode): Highlight the `source' keyword.
3067
3068 2001-11-22 Colin Walters <walters@debian.org>
3069
3070 * calc/calc-misc.el (report-calc-bug):
3071 Use `reporter-prompt-for-summary-p'.
3072
3073 * calc/INSTALL, calc/Makefile: Remove.
3074
3075 2001-11-22 Miles Bader <miles@gnu.org>
3076
3077 * emacs-lisp/re-builder.el (reb-match-0, reb-match-1)
3078 (reb-match-2, reb-match-3): Add dark-background variants.
3079
3080 2001-11-22 Colin Walters <walters@debian.org>
3081
3082 * calc/calc-misc.el (calc-info): Don't perform voodoo, just
3083 (info "Calc").
3084 (report-calc-bug): Use reporter.el.
3085
3086 * mail/reporter.el (reporter-submit-bug-report): Doc fixes.
3087
3088 2001-11-21 Richard M. Stallman <rms@gnu.org>
3089
3090 * which-func.el (which-function): Call imenu--make-index-alist
3091 if necessary to get a list of functions.
3092 (which-function-imenu-failed): New variable.
3093 (which-func-update): Handle all visible windows.
3094 (which-func-update-1): New subroutine broken out of which-func-update.
3095
3096 * files.el (temporary-file-directory, null-device)
3097 (small-temporary-file-directory): Definitions moved up.
3098
3099 * progmodes/cperl-mode.el (cperl-problems, cperl-tips)
3100 (cperl-non-problems, cperl-praise): Doc fixes.
3101
3102 * progmodes/sh-script.el (sh-mode): Don't use define-derived-mode.
3103 (sh-mode-syntax-table): Function restored.
3104 Variable set up for use by function sh-mode-syntax-table.
3105 (sh-set-shell): Set the syntax table.
3106
3107 * play/gomoku.el (gomoku-mode): Don't use define-derived-mode.
3108
3109 * progmodes/perl-mode.el (perl-mode): Don't use define-derived-mode.
3110
3111 * international/encoded-kb.el: Don't alter minor-map-alist.
3112
3113 2001-11-20 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
3114
3115 * files.el (auto-save-file-name-transforms): Put remote files in
3116 temporary-file-directory rather than /tmp.
3117
3118 2001-11-21 Colin Walters <walters@debian.org>
3119
3120 * calc/calc-macs.el (calc-slow-wrapper): Move (point) call outside
3121 of (function ...) wrapper.
3122
3123 2001-11-20 Stefan Monnier <monnier@cs.yale.edu>
3124
3125 * derived.el (define-derived-mode): Create the abbrev-table
3126 from inside the `defvar'.
3127
3128 * jit-lock.el (jit-lock-defer-time): New var.
3129 (jit-lock-defer-timer, jit-lock-buffers): New vars.
3130 (jit-lock-mode): Initialize them. Cancel the timers more carefully.
3131 (jit-lock-function): Defer fontification if requested.
3132 (jit-lock-stealth-chunk-start): Pay attention to the new non-nil value.
3133 (jit-lock-stealth-fontify): Check the new `jit-lock-defer-multiline'
3134 text property.
3135 (jit-lock-deferred-fontify): New fun.
3136
3137 2001-11-20 Richard M. Stallman <rms@gnu.org>
3138
3139 * emacs-lisp/lisp-mode.el (lisp-interaction-mode):
3140 Set local-abbrev-table to lisp-mode-abbrev-table.
3141
3142 * emacs-lisp/re-builder.el (reb-mode):
3143 Don't use define-derived-mode. Call kill-all-local-variables.
3144
3145 * emacs-lisp/lisp-mode.el (lisp-mode, emacs-lisp-mode):
3146 Don't use define-derived-mode.
3147
3148 * help-mode.el (help-mode): Undo 2001-10-07 change.
3149
3150 * replace.el (occur-mode): Undo 2001-5-20 change.
3151
3152 2001-11-20 Jason Rumney <jasonr@gnu.org>
3153
3154 * w32-fns.el (w32-system-coding-system): Change to an alias for
3155 locale-coding-system.
3156 (set-w32-system-coding-system): Document the above change.
3157 Set locale-coding-system instead.
3158
3159 2001-11-20 Richard M. Stallman <rms@gnu.org>
3160
3161 * ruler-mode.el: Add pagination.
3162 (ruler-mode-toggle-show-tab-stops): No need to
3163 test `ruler-mode' variable.
3164
3165 2001-11-20 Eli Zaretskii <eliz@is.elta.co.il>
3166
3167 * play/landmark.el: Mark lm-mode as special.
3168
3169 * play/gomoku.el: Mark gomoku-mode as special.
3170
3171 2001-11-20 Juanma Barranquero <lektu@terra.es>
3172
3173 * emacs-lisp/re-builder.el (reb-change-target-buffer): New function.
3174 (top-level): Bind it to C-c C-b.
3175 (re-builder): Don't re-enter RE Builder Mode.
3176
3177 * bs.el (bs-delete): Signal an error if the buffer cannot be deleted.
3178
3179 2001-11-20 Stefan Monnier <monnier@cs.yale.edu>
3180
3181 * progmodes/cperl-mode.el (cperl-perldoc): Require man before binding
3182 `manual-program'.
3183
3184 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Don't move back
3185 to a line without a comment.
3186
3187 2001-11-20 Eli Zaretskii <eliz@is.elta.co.il>
3188
3189 * dired.el (dired-listing-switches): Mention in the doc string
3190 that some switches are not supported by ls-lisp.el
3191
3192 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
3193
3194 * imenu.el (imenu--split-menu): Use dolist and copy-sequence.
3195 (imenu--create-keymap-2): Remove.
3196 (imenu--create-keymap-1): Simplify, remove third argument.
3197 (imenu--generic-function): Use dolist.
3198 (imenu-find-default): New function.
3199 (imenu--completion-buffer): Use it.
3200 (imenu--mouse-menu): Use popup-menu.
3201 (imenu--menubar-select): Return t rather than calling imenu.
3202
3203 * textmodes/fill.el (fill-delete-prefix, fill-delete-newlines):
3204 New functions, extracted from fill-region-as-paragraph.
3205 (fill-region-as-paragraph): Use them.
3206 Use an end marker instead of eob.
3207 Ignore whitespace-only fill-prefixes when indenting according to mode.
3208 Simplify the loop that searches for spaces backwards.
3209
3210 * textmodes/picture.el (picture-vertical-step)
3211 (picture-horizontal-step): Don't use defconst for variables.
3212
3213 * mail/mail-extr.el: Use backquote/dolist/mapc/when. Docstring fixes.
3214 (mail-extract-address-components): Downcase domain names.
3215 (mail-extr-delete-char): Remove. Use delete-char instead.
3216
3217 * emulation/pc-select.el: Doc string fixes.
3218 (pc-selection-mode): Don't treat macos as a tty.
3219
3220 * emacs-lisp/lisp.el (mark-sexp): Mark more if repeated.
3221
3222 * progmodes/cc-engine.el (c-parse-state): Typo. From Martin Stjernholm.
3223
3224 * mwheel.el (mouse-wheel-scroll-amount): Allow float values.
3225 (mouse-wheel-progessive-speed): New var.
3226 (mwheel-scroll): Use it and handle float values.
3227
3228 * lazy-lock.el (lazy-lock-install-hooks): Remove make-local-hook.
3229
3230 * iswitchb.el (iswitchb-mode): Use define-minor-mode.
3231 (iswitchb): Fix the case where the result was selected with the mouse.
3232 (iswitchb-completion-help): Use the normal *Completions* now that
3233 mouse selection works.
3234 (iswitchb-minibuffer-setup): Simplify.
3235
3236 * newcomment.el (comment-column, comment-style, comment-multi-line)
3237 (comment-auto-fill-only-comments): Remove :group arg.
3238 (comment-padding): Add :type.
3239 (comment-indent-new-line): Ignore comment-auto-fill-only-comments
3240 if called interactively.
3241
3242 2001-11-19 Colin Walters <walters@verbum.org>
3243
3244 * calc/calc.el (toplevel): Add comment and version header.
3245 (calc-init-base): Bump version to 2.02f, update date.
3246
3247 2001-11-19 Richard M. Stallman <rms@gnu.org>
3248
3249 * net/browse-url.el: Support Mozilla and Galeon.
3250 By default, find the installed browser whichever it is.
3251 (browse-url-mozilla): New function.
3252 (browse-url-mozilla-sentinel): New function.
3253 (browse-url-galeon, browse-url-galeon-sentinel): New functions.
3254 (browse-url-default-browser): New function.
3255 (browse-url-process-environment): Use browse-url-browser-display.
3256 (browse-url-browser-display): Renamed from browse-url-netscape-display.
3257 (browse-url-mozilla-startup-arguments, browse-url-galeon-program)
3258 (browse-url-galeon-arguments, browse-url-galeon-startup-arguments)
3259 (browse-url-mozilla-program, browse-url-mozilla-arguments): New vars.
3260 (browse-url-browser-function): New default, new options.
3261
3262 2001-11-19 Sam Steingold <sds@gnu.org>
3263
3264 * bindings.el (last-buffer, unbury-buffer): New function.
3265 (mode-line-unbury-buffer): Use `unbury-buffer'.
3266
3267 2001-11-18 Stephen Eglen <stephen@gnu.org>
3268
3269 * iswitchb.el (iswitchb-cannot-complete-hook): New variable to
3270 control behaviour when no further completion is possible.
3271
3272 2001-11-19 Colin Walters <walters@verbum.org>
3273
3274 * calc/calc-macs.el (calc-wrapper, calc-slow-wrapper)
3275 (math-showing-full-precision, math-with-extra-prec, math-working)
3276 (calc-with-default-simplification)
3277 (calc-with-trail-buffer): Use backtick.
3278 (Math-zerop, Math-integer-negp, Math-integer-posp, Math-negp)
3279 (Math-looks-negp, Math-posp, Math-integerp, Math-natnump)
3280 (Math-ratp, Math-realp, Math-anglep, Math-numberp, Math-scalarp)
3281 (Math-vectorp, Math-messy-integerp, Math-objectp, Math-objvecp)
3282 (Math-integer-neg, Math-equal, Math-lessp, Math-primp)
3283 (Math-num-integerp, Math-bignum-test, Math-equal-int)
3284 (Math-natnum-lessp, math-format-radix-digit): Change to `defsubst'.
3285 (calc-record-compilation-date-macro): Deleted. Callers updated.
3286 (math-format-radix-digit): Move to calc-bin.el.
3287
3288 * calc/calc.el (calc-record-compilation-date): Remove.
3289 (calc-bug-address): Update.
3290 (calc-settings-file): Use `user-init-file'.
3291
3292 * calc/calc-mode.el (calc-settings-file-name, calc-save-modes):
3293 Handle null `calc-settings-file'.
3294
3295 * calc/calc-frac.el (calc-over-notation): Use `completing-read'.
3296 * calc/calc-keypd.el (calc-keypad-mode): New.
3297 (calc-do-keypad): Use it.
3298 (calc-keypad-map): Move into `calc-keypad-mode'.
3299
3300 * calc-math.el (calcFunc-sqrt, calcFunc-hypot): Add missing quote
3301 to defalias argument.
3302
3303 * calc-misc.el (math-fixnump, math-fixnatnump, calcFunc-trunc)
3304 (calcFunc-floor): Ditto.
3305
3306 * calc-units.el (calcFunc-usimplify): Ditto.
3307
3308 * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
3309 * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
3310 * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
3311 * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
3312 * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
3313 * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
3314 * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
3315 * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
3316 * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
3317 * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
3318 * calcsel2.el: Change all toplevel `setq' forms to `defvar' forms,
3319 and move them before their first use. Use `when', `unless'.
3320 Remove trailing periods from error forms. Add description and
3321 headers suggested by Emacs Lisp coding conventions.
3322
3323 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
3324
3325 * newcomment.el (comment-indent):
3326 Fix misindentation for comment-only lines.
3327 (comment-indent-new-line): Only obey comment-multi-line if the
3328 comment-ender is not the end-of-line.
3329
3330 2001-11-19 Richard M. Stallman <rms@gnu.org>
3331
3332 * net/net-utils.el (network-connection-service-abbrev-alist):
3333 New variable.
3334
3335 * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
3336 Advance to start of 3rd sexp by moving fwd and backing over it.
3337 At first three elements, act like defun.
3338
3339 * delsel.el (delete-selection-pre-hook): Handle and resignal
3340 file-supersession errors to interact properly with userlock.el.
3341
3342 2001-11-18 Richard M. Stallman <rms@gnu.org>
3343
3344 * progmodes/fortran.el (fortran-mode-syntax-table):
3345 Specify punctuation syntax for backslash.
3346
3347 * progmodes/sh-script.el (sh-must-be-shell-mode): Function deleted.
3348 All calls deleted.
3349
3350 * international/mule-util.el (string-to-sequence): Make it obsolete.
3351 (string-to-list, string-to-vector): Implement them directly
3352 using append and vconcat, not with string-to-sequence.
3353
3354 * startup.el (command-line): Set abbrevs-changed to nil after
3355 reading the init file and the abbrevs file.
3356
3357 * isearch.el (isearch): Use magenta2 as bg for (background light)
3358
3359 2001-11-17 Richard M. Stallman <rms@gnu.org>
3360
3361 * menu-bar.el (menu-bar-update-buffers-1): Don't pad the buffer name.
3362
3363 * simple.el (minibuffer-history-sexp-flag): Doc fix.
3364
3365 2001-11-17 Stefan Monnier <monnier@cs.yale.edu>
3366
3367 * font-lock.el (font-lock-compile-keywords): New arg `regexp'.
3368 If set and if applicable, add a regexp to highlight defun-like
3369 text inside comments and strings.
3370 (font-lock-fontify-keywords-region): Pass that new arg.
3371 (font-lock-set-defaults): Move the code to set `font-lock-keywords'
3372 to the end and pass that new arg.
3373 (c-font-lock-keywords-2): Fix regex for labels.
3374 (font-lock-match-c++-style-declaration-item-and-skip-to-next):
3375 Make it work when LIMIT is several lines further.
3376 (c-font-lock-keywords-3, c++-font-lock-keywords-3)
3377 (objc-font-lock-keywords-3, java-font-lock-keywords-3):
3378 Use backquote and make the regexes for `int a, b, c;' work on
3379 multiple lines.
3380
3381 * emacs-lisp/re-builder.el (reb-mode): Use define-derived-mode.
3382 (font-lock-defaults-alist): Don't change it any more.
3383 (reb-subexp-mode-map): Cleanup.
3384
3385 * custom.el (custom-current-group-alist): New var.
3386 (custom-declare-group): Set it.
3387 (custom-current-group): New fun.
3388 (custom-declare-variable, custom-handle-all-keywords):
3389 Use it as a default if no :group argument is specified.
3390
3391 * international/mule-cmds.el (locale-name-match): Use \` and \(?:.
3392 (standard-keyboard-coding-systems): New var.
3393 (set-locale-environment): Use it to decide whether or not to call
3394 set-keyboard-coding-system.
3395 (locale-language-names): Use \"French\" for "fr".
3396
3397 2001-11-17 Richard M. Stallman <rms@gnu.org>
3398
3399 * emacs-lisp/checkdoc.el (princ-list, checkdoc-read-event)
3400 (add-to-list): Delete compatibility code.
3401 (checkdoc-next-message-error): Doc fix.
3402
3403 2001-11-17 Stephen Eglen <stephen@gnu.org>
3404
3405 * locate.el (locate): Show default locate pattern within the
3406 prompt, but don't insert it into the minibuffer contents.
3407 Catch the case when pattern is the empty string.
3408
3409 2001-11-17 Eli Zaretskii <eliz@is.elta.co.il>
3410
3411 * language/european.el ("French"): New language environment.
3412
3413 2001-11-16 Richard M. Stallman <rms@gnu.org>
3414
3415 * calendar/todo-mode.el (todo-save): Fix previous change.
3416
3417 * subr.el (functionp): Do use cdr-safe on object.
3418
3419 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
3420
3421 * bindings.el (mode-line-mode-name): Only put the help-echo property
3422 if the local-map property was put as well.
3423 (global-map): Bind switch-frame, delete-frame, iconify-frame
3424 and make-frame-visible events.
3425
3426 * emacs-lisp/elp.el (elp-not-profilable): New var.
3427 (elp-not-profilable-p): New function.
3428 (elp-instrument-function): Use it. Use backquotes and push.
3429
3430 * emacs-lisp/bytecomp.el (byte-compile-call-tree, byte-code-vector)
3431 (byte-stack+-info, byte-compile-last-warned-form)
3432 (byte-compile-last-logged-file): Don't defconst a variable.
3433 (no-byte-compile): Declare.
3434 (byte-compile-file): Don't boundp-check no-byte-compile any more.
3435 (byte-compile-defvar): Leave defconst as is.
3436
3437 * emacs-lisp/edebug.el (edebug-form-data, edebug-offsets)
3438 (edebug-offsets-stack, edebug-read-dotted-list, edebug-def-name)
3439 (edebug-current-offset, edebug-old-def-name, edebug-error-point)
3440 (edebug-best-error): Don't defconst a variable.
3441 (edebug-read-syntax-table): Use a char-table.
3442 (edebug-lemacs-specific): Remove.
3443 Toplevel: Eliminate check for Lucid Emacs.
3444
3445 * pcvs-util.el (cvs-prefix-define): Don't defconst a variable.
3446
3447 * rect.el (move-to-column-force): Mark obsolete.
3448 (operate-on-rectangle, delete-extract-rectangle-line)
3449 (insert-rectangle, delete-whitespace-rectangle-line)
3450 (open-rectangle-line, clear-rectangle-line): Use move-to-column.
3451 (string-rectangle-history): New var.
3452 (string-rectangle, string-insert-rectangle): Use it.
3453 (delete-rectangle-line): Fix pos/column mixup and simplify.
3454
3455 * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
3456 (normal-top-level, command-line, command-line-1): Simplify.
3457
3458 * tar-mode.el (tar-mode): Use define-derived-mode.
3459
3460 * view.el (view-mode-enable): Don't use make-local-hook.
3461
3462 * emacs-lisp/eldoc.el (eldoc-mode): Use define-minor-mode.
3463
3464 2001-11-16 Richard M. Stallman <rms@gnu.org>
3465
3466 * mail/mail-extr.el (mail-extr-voodoo): Treat a number as a word
3467 if it doesn't make sense as anything else.
3468 Don't recognize a "telephone number" at the beginning of the name.
3469 (mail-extr-leading-garbage): Match non-word characters only.
3470
3471 2001-11-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3472
3473 * startup.el (command-line-processed): Doc fix.
3474
3475 * apropos.el (apropos-next-label-button): Doc fix.
3476
3477 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
3478
3479 * comint.el (comint-mode): Simplify.
3480 (make-comint-in-buffer): Run `comint-mode' only if necessary.
3481
3482 * subr.el (eval-after-load): Make it work with features as well.
3483
3484 * log-view.el (log-view-mode): Don't mark the buffer unmodified.
3485
3486 * international/mule-cmds.el (describe-input-method): Setup xref.
3487 (set-language-environment): Use functionp.
3488 (locale-language-names, locale-charset-language-names)
3489 (locale-preferred-coding-systems): Defconst and purecopy.
3490
3491 * language/european.el (mac-roman): Add mime-charset property.
3492
3493 2001-11-15 Richard M. Stallman <rms@gnu.org>
3494
3495 * emacs-lisp/cl.el (values, values-list, multiple-value-list)
3496 (multiple-value-apply, nth-value): Use defsubst rather than defalias
3497 to get better doc strings.
3498
3499 2001-11-15 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3500
3501 * derived.el: Fix autoload cookie.
3502
3503 2001-11-15 Richard M. Stallman <rms@gnu.org>
3504
3505 * jka-compr.el (jka-compr-partial-uncompress): Fix previous change.
3506
3507 2001-11-15 Stefan Monnier <monnier@cs.yale.edu>
3508
3509 * menu-bar.el (menu-bar-edit-menu) <copy>: Put an explicit key binding.
3510
3511 2001-11-15 Richard M. Stallman <rms@gnu.org>
3512
3513 * dired.el (dired-undo): Display a message to explain
3514 that this does not undo file system changes.
3515
3516 2001-11-15 David Kastrup <David.Kastrup@t-online.de>
3517
3518 * mouse-drag.el (mouse-drag-throw): Push back non-drag events
3519 into `unread-command-events' instead of trying keymap
3520 lookups ourselves. This makes mouse-clicks do the right
3521 thing even when keymaps of overlays are involved.
3522 (mouse-drag-drag): Likewise.
3523
3524 2001-11-15 Andreas Schwab <schwab@suse.de>
3525
3526 * progmodes/ada-mode.el (ada-add-extensions): Quote regexp special
3527 characters and append anchor to pattern added to auto-mode-alist.
3528
3529 2001-11-15 Stefan Monnier <monnier@cs.yale.edu>
3530
3531 * server.el (server-process-filter): Run pore/post-comment-hook
3532 before/after visiting the file.
3533
3534 * info-look.el (makefile-mode): Add info for automake.
3535 (autoconf-mode): Fix the name of the index for automake.
3536
3537 * international/latin-9.el: Give pilcrow punctuation syntax.
3538
3539 2001-11-15 Andre Spiegel <spiegel@gnu.org>
3540
3541 * vc.el: Documentation fixes.
3542
3543 2001-11-14 Stefan Monnier <monnier@cs.yale.edu>
3544
3545 * smerge-mode.el (smerge-match-conflict): Fix typo.
3546 (smerge-diff): Be careful to read match-data early enough.
3547
3548 2001-11-14 Colin Walters <walters@verbum.org>
3549
3550 * calc/calc-alg.el (calcFunc-esimplify, calcFunc-simplify)
3551 (calcFunc-subst): Use `defalias' instead of `fset' and
3552 `symbol-function'.
3553
3554 * calc/calc-arith.el (calcFunc-abs, calcFunc-float)
3555 (calcFunc-ceil, calcFunc-round): Ditto.
3556
3557 * calc/calc-bin.el (calcFunc-clip): Ditto.
3558
3559 * calc/calc-ext.el (calcFunc-evalv): Ditto.
3560
3561 * calc/calc-math.el (calcFunc-sqrt, calcFunc-hypot): Ditto.
3562
3563 * calc/calc-misc.el (math-fixnump, math-fixnatnump)
3564 (calcFunc-trunc, calcFunc-floor, calc-report-bug): Ditto.
3565
3566 * calc/calc-units.el (calcFunc-unsimplify): Ditto.
3567
3568 * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
3569 * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
3570 * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
3571 * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
3572 * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
3573 * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
3574 * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
3575 * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
3576 * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
3577 * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
3578 * calcsel2.el: Style cleanup; don't put closing parens on their
3579 own line, add "foo.el ends here" to each file, and update
3580 copyright date.
3581
3582 * README: Update maintainer.
3583
3584 2001-11-13 Richard M. Stallman <rms@gnu.org>
3585
3586 * progmodes/compile.el (recompile): Use compilation-arguments if
3587 set, so as to be able to M-x recompile the exact command which
3588 created a compilation-mode buffer.
3589
3590 * progmodes/ada-mode.el (ada-fill-comment-prefix): Doc fix.
3591
3592 2001-11-13 Gerd Moellmann <gerd@gnu.org>
3593
3594 * mouse.el (mouse-drag-region): Don't run the up-event
3595 handler if window start changed due to the down-mouse event.
3596
3597 2001-11-13 Richard M. Stallman <rms@gnu.org>
3598
3599 * mouse.el (mouse-show-mark): Either move point to the mark
3600 or use highlighting, never both.
3601 (mouse-buffer-menu): If WINDOW is a frame, select its selected window.
3602
3603 2001-11-13 Simon Josefsson <jas@extundo.com>
3604
3605 * mail/smtpmail.el (top-level): Change maintainer to Simon
3606 Josefsson, cleanup the smtpmail.el header.
3607
3608 * mail/smtpmail.el (top-level): Don't require cl or base64.
3609 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
3610 (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd):
3611 Defsubst instead of defmacro.
3612 (smtpmail-intersection): Return value in reverse order.
3613 (smtpmail-open-stream): Use stringp instead of string-to-list.
3614 (smtpmail-open-stream, smtpmail-try-auth-methods): New functions,
3615 separated from smtpmail-via-smtp.
3616
3617 * mail/smtpmail.el (top-level): Autoload starttls, mail-utils and
3618 rfc2104. Require base64 and cl.
3619 (smtpmail-smtp-service): Doc fix. :type fix.
3620 (smtpmail-debug-info): Doc fix.
3621 (smtpmail-debug-verb, smtpmail-auth-credentials)
3622 (smtpmail-starttls-credentials, smtpmail-auth-supported):
3623 New variables.
3624 (smtpmail-deduce-address-list, smtpmail-send-it): Don't require
3625 mail-utils (it is autoloaded).
3626 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
3627 (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd)
3628 (smtpmail-find-credentials, smtpmail-intersection): New utility funs.
3629 (smtpmail-via-smtp): Support STARTTLS, if binary is installed.
3630 (smtpmail-via-smtp): Support AUTH.
3631 (smtpmail-via-smtp): Use `smtpmail-debug-verb' to control VERB.
3632
3633 2001-11-13 Richard M. Stallman <rms@gnu.org>
3634
3635 * ebuff-menu.el (electric-buffer-update-highlight): New function.
3636 (electric-buffer-overlay): New variable.
3637 (electric-buffer-menu-looper): Call electric-buffer-update-highlight.
3638 (electric-buffer-list): Likewise.
3639
3640 * isearch.el (isearch-whitespace-chars): Doc fix.
3641 (isearch-mode): Handle negative search-slow-window-lines correctly.
3642
3643 2001-11-13 Stefan Monnier <monnier@cs.yale.edu>
3644
3645 * newcomment.el (comment-normalize-vars): Handle a nil comment-padding.
3646
3647 * progmodes/ada-mode.el (ada-fill-comment-prefix): GNAT wants 2 spaces.
3648 From Emmanuel Briot <briot@act-europe.fr>.
3649
3650 2001-11-13 Colin Walters <walters@debian.org>
3651
3652 * calc/calc.el (calc-unread-command): Use `unread-command-events'.
3653
3654 * calc/calc-mode.el (calc-settings-file-name): Don't hardcode
3655 "~/.emacs"; use `read-file-name'.
3656
3657 * calc/calc-graph.el, calc/calc-embed.el, calc/calc-graph.el
3658 * calc/calc-misc.el, calc/calc-mode.el, calc/calc-prog.el
3659 * calc/calc-sel.el, calc/calc-store.el, calc/calc-yank.el
3660 * calc/calc.el: Use `frame-width' instead of `screen-width',
3661 `frame-height' instead of `screen-height', and,
3662 `executing-kbd-macro' instead of `executing-macro'.
3663
3664 * calc/calc-embed.el (calc-do-embedded): Call `y-or-n-p' with
3665 correct number of arguments.
3666
3667 * calc/calc-aent.el (calc-do-alg-entry):
3668 Use `blink-paren-function' instead of `blink-paren-hook'.
3669
3670 2001-11-12 Richard M. Stallman <rms@gnu.org>
3671
3672 * calendar/todo-mode.el (todo-save): Add save-excursion
3673 and save-restriction.
3674
3675 * server.el (server-edit, server-done): Doc fix.
3676
3677 * simple.el (clone-indirect-buffer): Error if major mode symbol
3678 has a no-clone-indirect property.
3679 (clone-buffer): Check for obvious errors before reading clone name.
3680
3681 * info.el (Info-mode): Add a no-clone-indirect property.
3682
3683 2001-11-12 Sam Steingold <sds@gnu.org>
3684
3685 * vc.el (vc-print-log): Bind `inhibit-read-only' to t before and
3686 set-buffer-modified-p to nil after `vc-exec-after'.
3687 * log-view.el (log-view-mode-map): Bind "q", "z", "m" and "d".
3688 (log-view-mode): Make read-only.
3689 (log-view-current-file): Do final `expand-file-name' in the
3690 current `default-directory'.
3691 (log-view-current-tag): Take an optional `where' arg.
3692 (log-view-diff): New user command.
3693
3694 2001-11-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3695
3696 * progmodes/cpp.el (cpp-choose-face): Fix typo.
3697
3698 2001-11-12 Sam Steingold <sds@gnu.org>
3699
3700 * emacs-lisp/cl-indent.el (toplevel): Indent properly
3701 `generic-flet', `generic-labels', `with-accessors',
3702 `with-condition-restarts'.
3703
3704 2001-11-12 Richard M. Stallman <rms@gnu.org>
3705
3706 * dired.el: Many trivial doc fixes.
3707 (dired-get-file-for-visit): New function.
3708 (dired-find-alternate-file, dired-mouse-find-file-other-window):
3709 (dired-view-file, dired-find-file-other-window, dired-display-file):
3710 (dired-find-file): Use dired-get-file-for-visit.
3711
3712 2001-11-12 Alex Schroeder <kensanata@yahoo.com>
3713
3714 * sql.el (sql-mode): Doc change.
3715
3716 * sql.el (sql-mode-syntax-table): The backslash is no longer an
3717 escape character.
3718
3719 2001-11-12 Colin Walters <walters@debian.org>
3720
3721 * calc/calc-keypd.el (toplevel): Bind mouse buttons.
3722 (calc-do-keypad): Don't attempt to use nonexistent global
3723 mouse-map, use calc-keypad-map.
3724 (calc-keypad-x-left-click): Renamed to calc-keypad-left-click.
3725 (calc-keypad-left-click): Don't use mouse-map; update to new event
3726 interface.
3727 (calc-keypad-x-middle-click, calc-keypad-x-right-click): Ditto.
3728 (calc-keypad-press): Use `unread-command-events' instead of
3729 `unread-command-char'.
3730
3731 * calc/calc-ext.el (calc-init-extensions): Update autoload names
3732 to match files renamed on initial calc import.
3733
3734 2001-11-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3735
3736 * textmodes/flyspell.el (flyspell-default-dictionary):
3737 Fix previous change.
3738
3739 2001-11-12 Richard M. Stallman <rms@gnu.org>
3740
3741 * textmodes/flyspell.el (flyspell-default-dictionary):
3742 Fix custom type.
3743
3744 2001-11-11 Richard M. Stallman <rms@gnu.org>
3745
3746 * calendar/solar.el (solar-sunrise-and-sunset):
3747 Exchange the two extreme values of day-length.
3748
3749 * progmodes/sh-script.el (sh-must-be-shell-mode):
3750 Allow modes derived from sh-mode.
3751
3752 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
3753 Turn off error in some re-search-forward calls.
3754
3755 * replace.el (query-replace-skip-read-only): New variable.
3756 (perform-replace): If that variable is non-nil, ignore matches
3757 that have a read-only property.
3758
3759 * derived.el (define-derived-mode): Doc fix.
3760
3761 * server.el (server-buffer-done): Test of server-existing-buffer
3762 was backwards.
3763 (server-existing-buffer): Doc fix.
3764
3765 * textmodes/flyspell.el (flyspell-default-dictionary):
3766 Allow nil as value, and make nil the default.
3767
3768 2001-11-11 Eli Zaretskii <eliz@is.elta.co.il>
3769
3770 * menu-bar.el (menu-bar-edit-menu): Don't use x-selection-exists-p if
3771 it is not fboundp.
3772 (clipboard-yank): Ditto.
3773
3774 2001-11-11 Colin Walters <walters@verbum.org>
3775
3776 The following changes are based on patches from
3777 Eli Zaretskii <eliz@is.elta.co.il>, Kai Gro\e,A_\e(Bjohann
3778 <Kai.Grossjohann@CS.Uni-Dortmund.DE>, and others.
3779
3780 * calc/calc.el (toplevel): Require calc-macs.
3781 (calc-minibuffer-size): New.
3782 (calcDigit-nondigit): Use it instead of `buffer-size'.
3783 (calcDigit-backspace): Likewise.
3784 (calcDigit-nondigit): Use `minibuffer-contents' instead of
3785 `buffer-string'.
3786 (calc-minibuffer-contains): Use `minibuffer-prompt-end' instead of
3787 `point-min'.
3788 (calcDigit-key): Use `calc-minibuffer-contains' instead of a
3789 `save-excursion'.
3790
3791 * calc/calc-macs.el (calc-record-compilation-date-macro): Return a
3792 simple `setq' form.
3793
3794 * calc/calc-ext.el: (toplevel): Require calc.
3795 (calc-fancy-prefix-map): New.
3796 (calc-fancy-prefix): Use it.
3797 (calc-fancy-prefix-other-key): New.
3798
3799 * calc/calc-aent.el (toplevel): Require calc-macs during compilation.
3800 (calc-do-quick-calc): Use `frame-width' instead of `screen-width'.
3801 (calcAlg-edit): Use `minibuffer-contents' instead of `buffer-string'.
3802 (calcAlg-enter): Likewise.
3803 (calcAlg-enter): Use `minibuffer-prompt-end' instead of `point-min'.
3804
3805 2001-11-10 Richard M. Stallman <rms@gnu.org>
3806
3807 * abbrev.el (read-abbrev-file): Don't set save-abbrevs.
3808 (quietly-read-abbrev-file): Doc fix.
3809
3810 * startup.el (command-line): Read standard abbrev
3811 file (abbrev-file-name), if it exists.
3812
3813 * files.el (save-abbrevs): Default value is t.
3814
3815 * progmodes/compile.el (compile-goto-error): Fix previous change
3816 in the case where subsequent errors have not been parsed yet
3817 because they are in a different source file.
3818
3819 2001-11-10 Peter Kleiweg <kleiweg@let.rug.nl>
3820
3821 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
3822 Merge two regular expressions into one.
3823 (ps-mode): Make local bindings for `comment-start' and
3824 `comment-start-skip'.
3825 (ps-mode-looking-at-nested): Simplify an if-else construct;
3826 use `set-match-data' to set the result.
3827
3828 2001-11-10 Richard M. Stallman <rms@gnu.org>
3829
3830 * textmodes/flyspell.el (flyspell-correct-word/local-keymap):
3831 Function deleted.
3832 (flyspell-correct-word): Old definition deleted.
3833 (flyspell-correct-word/mouse-keymap): Renamed to flyspell-correct-word.
3834 All references renamed too.
3835
3836 2001-11-10 Gerd Moellmann <gerd@gnu.org>
3837
3838 * Makefile.in (finder_setwins, setwins): Exclude Calc.
3839
3840 2001-11-09 Per Abrahamsen <abraham@dina.kvl.dk>
3841
3842 * wid-edit.el (checklist): Removed `:menu-tag'.
3843 (radio-button-choice): Ditto.
3844 (editable-list): Ditto.
3845
3846 2001-11-09 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3847
3848 * play/gomoku.el: Move definitions of constants to the beginning
3849 of file, before their use.
3850
3851 2001-11-09 Richard M. Stallman <rms@gnu.org>
3852
3853 * textmodes/flyspell.el: Use the keymap property
3854 instead of local-map, and don't use a minor-mode map.
3855 (flyspell-mode-map): Variable deleted.
3856 Don't mess with minor-mode-map-alist.
3857 (calling add-minor-mode): Specify nil for keymap.
3858 And always use add-minor-mode, now that it exists.
3859 (flyspell-overlay-keymap-property-name): Set it to `keymap'.
3860 (flyspell-mode-on): Don't locally bind flyspell-mouse-map
3861 or flyspell-local-mouse-map.
3862 (make-flyspell-overlay): Use flyspell-mouse-map directly.
3863 (flyspell-mode): Doc fix.
3864 (flyspell-mode-on): Don't call make-local-hook.
3865
3866 2001-11-09 Sam Steingold <sds@gnu.org>
3867
3868 * emacs-lisp/debug.el (debugger-make-xrefs):
3869 Add buttons to all symbols.
3870
3871 2001-11-09 Andre Spiegel <spiegel@gnu.org>
3872
3873 * vc.el: Add John David Smith to credits.
3874
3875 Suggested by Kalle Olavi Niemitalo <kon@iki.fi>:
3876
3877 * vc-hooks.el (vc-error-occured): Backquotified.
3878 (vc-file-prop-obarray): Use prime length for better efficiency.
3879
3880 * vc.el (vc-clear-context): Fill obarray with 0, not nil.
3881
3882 2001-11-09 Eli Zaretskii <eliz@is.elta.co.il>
3883
3884 * info.el (Info-file-list-for-emacs): Add entries for Calc.
3885
3886 2001-11-09 Miles Bader <miles@gnu.org>
3887
3888 * subr.el (functionp): Don't consider macros as functions.
3889
3890 2001-11-08 Miles Bader <miles@gnu.org>
3891
3892 * subr.el (functionp): Make work correctly for macros and unbound
3893 symbols.
3894
3895 * comint.el (comint-send-input): Fix description of
3896 `comint-process-echoes' in the doc-string.
3897
3898 2001-11-08 Eli Zaretskii <eliz@is.elta.co.il>
3899
3900 * international/mule.el (make-translation-table): Doc fix.
3901 Suggested by Alex Schroeder <alex@gnu.org>.
3902
3903 2001-11-07 Richard M. Stallman <rms@gnu.org>
3904
3905 * info.el (Info-fontify-node): Highlight every third menu item.
3906
3907 2001-11-07 Per Abrahamsen <abraham@dina.kvl.dk>
3908
3909 * cus-edit.el (custom-face-value-create): Don't ignore the
3910 `customized-face' attribute when finding the current face spec.
3911
3912 2001-11-07 Stefan Monnier <monnier@cs.yale.edu>
3913
3914 * subr.el (with-local-quit): New macro.
3915 (make-syntax-table): Always inherit.
3916 (functionp): Be more careful when `object' is a symbol.
3917
3918 * dabbrev.el (dabbrev-completion): Use "*Completions*".
3919
3920 2001-11-07 Paul Eggert <eggert@twinsun.com>
3921
3922 * dired.el (dired-move-to-filename-regexp):
3923 Do not distinguish between ASCII letters and non-ASCII characters.
3924 Don't allow comma except in the form "month day, year".
3925 Don't allow space between month name and comma.
3926 Clean up the code that checks for trailing period, comma, and space.
3927 Remove now-obsolete comments, and add more commentary about
3928 Japanese dates.
3929 Always gobble up trailing spaces, instead of doing it only sometimes.
3930
3931 2001-11-07 Miles Bader <miles@gnu.org>
3932
3933 * paren.el (show-paren-match-face): Add dark-background variant.
3934
3935 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
3936
3937 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Paren typo.
3938 (lisp-mode-variables): Don't set paragraph-{start,separate}.
3939 Don't disable adaptive-fill-mode.
3940 (lisp-fill-paragraph): Use tab-width rather than 8.
3941 Prevent filling the first line of docstrings.
3942
3943 2001-11-06 Richard M. Stallman <rms@gnu.org>
3944
3945 * play/gomoku.el (gomoku): Doc fix.
3946
3947 * jka-compr.el (jka-compr-partial-uncompress):
3948 Support an alternative of not using dd.
3949 (jka-compr-dd-program): Use defcustom to define this.
3950 (jka-compr-load-suffixes): Use defcustom.
3951 (jka-compr-mode-alist-additions): Use defcustom.
3952
3953 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
3954
3955 * font-lock.el (font-lock-match-c-style-declaration-item-and-skip-to-next):
3956 Also work when LIMIT is further than the end of line.
3957
3958 2001-11-06 Eli Zaretskii <eliz@is.elta.co.il>
3959
3960 * international/quail.el (quail-update-leim-list-file): Print the
3961 offending file name if some of its quail-define-package forms is broken.
3962
3963 2001-11-05 Richard M. Stallman <rms@gnu.org>
3964
3965 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Return the value
3966 of the evaluated form.
3967
3968 2001-11-05 Paul Eggert <eggert@twinsun.com>
3969
3970 * ls-lisp.el (ls-lisp-time-to-seconds): New function.
3971 (ls-lisp-format-time): Emulate GNU fileutils 4.1.1 ls, whose time
3972 stamps always line up by default. Also, it uses a slightly
3973 different window to determine whether files are "recent".
3974
3975 2001-11-05 Andrew Innes <andrewi@gnu.org>
3976
3977 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
3978 Don't attempt to remake autoloads before nuking .elc files.
3979
3980 2001-11-04 Richard M. Stallman <rms@gnu.org>
3981
3982 * emacs-lisp/lisp-mode.el (last-sexp-toggle-display): Cope if
3983 previous-single-property-change or next-single-char-property-change
3984 returns nil.
3985
3986 * international/mule-cmds.el (set-locale-environment):
3987 Make it interactive; make arg optional.
3988
3989 * international/mule-diag.el (help-funs): Require help-funs.
3990
3991 2001-11-04 Eli Zaretskii <eliz@is.elta.co.il>
3992
3993 * term/internal.el (term-setup-hook): Add IT-setup-unicode-display.
3994
3995 2001-11-04 Miles Bader <miles@gnu.org>
3996
3997 * startup.el (fancy-splash-head): Reapply Gerd's hack to make the
3998 shadow of the splash image grey on a dark background instead of black.
3999
4000 2001-11-03 Stefan Monnier <monnier@cs.yale.edu>
4001
4002 * term.el (all faces): Don't (copy-face 'default <foo>).
4003
4004 * term/xterm.el (function-key-map):
4005 Add entry for `ESC [ 3 ~' -> <delete>
4006 Add entries `ESC O 5 [ABCD]' -> C-{up,down,right,left}.
4007 Use inheritance so that .emacs and terminfo take precedence.
4008
4009 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
4010
4011 * tooltip.el (tooltip-delay): Decrease to 0.7.
4012 (tooltip-hide-delay): Enlarge to 10.
4013
4014 2001-11-03 Richard M. Stallman <rms@gnu.org>
4015
4016 * startup.el (fancy-splash-tail): Explain how to recover
4017 from a crash, if there was a crash.
4018 (command-line-1): Reorganize display of startup screen,
4019 to simplify the logic. Use a temp buffer for it.
4020
4021 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
4022
4023 * frame.el (set-background-color, set-foreground-color):
4024 Call face-set-after-frame-default, to propagate the new colors to
4025 the frame's parameters alist.
4026
4027 * calendar/timeclock.el (timeclock-out): Signal an error if
4028 timeclock-last-event is nil.
4029
4030 2001-11-02 Stefan Monnier <monnier@cs.yale.edu>
4031
4032 * textmodes/fill.el (fill-context-prefix): Fix braino.
4033
4034 * international/quail.el (quail-help):
4035 Use `help-buffer' and move `help-setup-xref' to beginning.
4036
4037 * international/mule-cmds.el (describe-language-environment):
4038 Use `help-buffer' and move `help-setup-xref' to beginning.
4039
4040 * international/mule-diag.el (list-character-sets)
4041 (sort-listed-character-sets, describe-character-set)
4042 (describe-coding-system, describe-fontset, list-fontsets):
4043 Use `help-buffer' and move `help-setup-xref' to beginning.
4044 (describe-char-after): Use `internal-describe-syntax-value'.
4045
4046 2001-11-02 Richard M. Stallman <rms@gnu.org>
4047
4048 * mouse.el (popup-menu): If the user refuses to select
4049 from a menu, don't try to invoke the menu.
4050
4051 2001-11-02 Miles Bader <miles@gnu.org>
4052
4053 * help-mode.el (help-xref): New button type.
4054 (help-function, help-variable, help-face, help-coding-system)
4055 (help-input-method, help-character-set, help-type, help-symbol)
4056 (help-back, help-info, help-customize-variable, help-customize-face)
4057 (help-function-def, help-variable-def): Use it as a supertype.
4058 Remove `action' property.
4059
4060 * international/mule-diag.el (describe-character-set)
4061 (describe-coding-system): Pass correct args to `help-xref-button'.
4062 (sort-listed-character-sets): New button type.
4063 (list-character-sets): Use it.
4064 (list-charset-chars): New button type.
4065 (list-character-sets-1): Use it.
4066
4067 2001-11-01 Stefan Monnier <monnier@rum.cs.yale.edu>
4068
4069 * indent.el (tab-always-indent, indent-for-tab-command):
4070 Remove redundant `never' setting.
4071
4072 * fill.el (fill-region-as-paragraph): Don't forget to skip
4073 over current whitespace before looking for a preceding space.
4074
4075 2001-11-01 Richard M. Stallman <rms@gnu.org>
4076
4077 * files.el (file-newest-backup): Don't pass backup file name
4078 thru file-name-sans-versions, because it never has version numbers.
4079
4080 * textmodes/sgml-mode.el (sgml-xml-guess): Fix regexp
4081 to avoid ambiguous nested loops.
4082
4083 * files.el (find-file-noselect): Offer to change buffer-read-only
4084 only when the file's read-only status has changed from before
4085 as well as disagreeing with the buffer's current status.
4086 (buffer-file-read-only): New var, local in all buffers.
4087
4088 * buff-menu.el (buffer-menu): Doc fix.
4089 (buffer-menu-other-window): Doc fix.
4090 (list-buffers, list-buffers-noselect): Doc fix.
4091
4092 2001-11-01 Gerd Moellmann <gerd@gnu.org>
4093
4094 * startup.el (command-line): If the terminal Emacs is running on
4095 has erase char set to ^H, use the Backspace key for deleting
4096 backward, and the Delete key for deleting forward.
4097
4098 2001-11-01 Miles Bader <miles@gnu.org>
4099
4100 * button.el (define-button-type): Make sure every user-defined
4101 button type has a supertype.
4102
4103 2001-10-31 Jason Rumney <jasonr@gnu.org>
4104
4105 * international/mule-cmds.el (locale-language-names): Add chs and
4106 cht as aliases for Chinese-GB and Chinese-BIG5.
4107
4108 2001-10-31 Richard M. Stallman <rms@gnu.org>
4109
4110 * bindings.el (mode-line-frame-identification): Add doc string.
4111 (mode-line-position, mode-line-modes): New variables.
4112 (mode-line-format): Use mode-line-position for the part
4113 that displays the position-in-buffer info.
4114 Use mode-line-modes for the part that displays major and minor modes.
4115
4116 2001-10-31 Sam Steingold <sds@gnu.org>
4117
4118 * emacs-lisp/debug.el (debugger-make-xrefs): New function.
4119 (debugger-setup-buffer): Call it.
4120 (debugger-mode-map): Bind RET and mouse-2.
4121
4122 2001-10-31 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4123
4124 * startup.el: Document command line option --no-window-system
4125 instead of --no-windows.
4126
4127 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
4128
4129 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip.
4130
4131 * font-lock.el (java-font-lock-syntactic-face-function): New fun.
4132 (font-lock-defaults-alist): Use it.
4133 From David Ponce <david.ponce@wanadoo.fr>
4134
4135 * progmodes/perl-mode.el (perl-indent-line): Use `eq' to compare
4136 output of `char-after'.
4137
4138 * bindings.el (ctl-x-map): Add binding for C-x (, C-x ) and C-x e.
4139
4140 * simple.el (reindent-then-newline-and-indent): Insert the newline
4141 before indenting the first line.
4142 (undo-get-state, undo-revert-to-state): New funs.
4143 (shell-command): Don't kill the buffer even if empty.
4144 (transpose-subr-start1, transpose-subr-start2, transpose-subr-end1)
4145 (transpose-subr-end2): Remove.
4146 (transpose-subr): Add `special' arg and simplify.
4147 (transpose-subr-1): Rewrite.
4148 (do-auto-fill): Use fill-indent-according-to-mode and fill-nobreak-p.
4149 (rfc822-goto-eoh): Simplify.
4150
4151 2001-10-30 Richard M. Stallman <rms@gnu.org>
4152
4153 * enriched.el (enriched-face-ans): Fix previous change.
4154
4155 2001-10-30 Gerd Moellmann <gerd@gnu.org>
4156
4157 * international/iso-acc.el (iso-accents-compose): Remove a
4158 superfluous setq.
4159
4160 2001-10-30 Eli Zaretskii <eliz@is.elta.co.il>
4161
4162 * buff-menu.el (list-buffers-noselect): If the buffer's name
4163 starts with a blank, but it visits a file, do show it (for files
4164 whose names start with a blank).
4165
4166 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
4167
4168 * textmodes/fill.el (sentence-end-double-space)
4169 (sentence-end-without-period): Move to paragraphs.el.
4170 (fill-indent-according-to-mode): Change default to t.
4171 (fill-context-prefix): Simplify control-flow and use a more
4172 sophisticated merge that unifies both previous checks.
4173 (fill-single-word-nobreak-p, fill-french-nobreak-p): New funs.
4174 (fill-nobreak-predicate): Make it into a defcustom'd hook.
4175 (fill-nobreak-p): New fun.
4176 (fill-region-as-paragraph): Use it.
4177 Handle `fill-indent-according-to-mode' slightly differently.
4178 (fill-individual-paragraphs-prefix): Simplify the control-flow.
4179 (fill-individual-paragraphs-citation): Fix.
4180
4181 * textmodes/paragraphs.el (use-hard-newlines): Use define-minor-mode.
4182 (paragraph-start): Change default to the `text-mode' value.
4183 (sentence-end-double-space, sentence-end-without-period):
4184 Move from fill.el.
4185 (forward-paragraph): Use `parstart' and `parsep' for temp variables
4186 rather than rebinding `paragraph-start' and `paragraph-separate'.
4187
4188 * indent.el (indent-line-function): Change default to indent-relative.
4189 (tab-always-indent): Add an `never' setting.
4190 (indent-according-to-mode): Handle `indent-relative' and
4191 `indent-relative-maybe' specially.
4192 (indent-for-tab-command): Rename `prefix-arg' to `arg'.
4193 Handle the `never' case for `tab-always-indent'.
4194 Don't call indent-according-to-mode for indent-relative' and
4195 `indent-relative-maybe'.
4196 (insert-tab): Rename `prefix-arg' to `arg'.
4197 (indent-region): Indent the first line as well.
4198 (indent-relative): Don't mark the buffer modified if the indentation
4199 is unchanged.
4200
4201 * textmodes/text-mode.el (paragraph-indent-minor-mode):
4202 Don't set paragraph-separate. Set paragraph-start more carefully.
4203 Set indent-line-function.
4204 (paragraph-indent-text-mode): Use it and define-derived-mode.
4205 (text-mode-map): Remove the \t binding.
4206 (text-mode): Simplify now that the default is more favorable.
4207
4208 2001-10-29 Stefan Monnier <monnier@cs.yale.edu>
4209
4210 * emacs-lisp/find-func.el (find-function-search-for-symbol):
4211 If the regexp doesn't match, use a looser one.
4212 (find-variable-noselect): Add `file' argument.
4213
4214 * pcvs.el (cvs-mode-commit-hook): New hook.
4215 (cvs-mode-commit): Run it.
4216
4217 * log-edit.el (log-edit): Run hook after `log-edit-files'.
4218
4219 * emacs-lisp/edebug.el (delay-mode-hooks): Add edebug-spec.
4220 (edebug-instrument-function): Use `find-function-noselect'.
4221
4222 2001-10-29 Richard M. Stallman <rms@gnu.org>
4223
4224 * term.el (term-if-emacs19): Macro deleted.
4225 Callers changed to use progn instead.
4226
4227 * frame.el (blink-cursor-mode): Doc fix.
4228
4229 * files.el (find-backup-file-name): Use make-backup-file-name.
4230
4231 * emacs-lisp/edebug.el (edebug-window-live-p): Always alias to
4232 window-live-p.
4233 (edebug-set-conditional-breakpoint): Unconditionally use
4234 the former Emacs >=19 definition.
4235 (edebug-mark): Define unconditionally.
4236 (edebug-eval-expression): Always call read-from-minibuffer
4237 and specify history list.
4238 (edebug-lemacs-specific): Override emacs-mark, edebug-window-live-p,
4239 edebug-set-conditional-breakpoint.
4240 (edebug-emacs-version-specific): Function deleted;
4241 do the job at top level.
4242 (edebug-emacs-19-specific): Function deleted, this is the default.
4243
4244 2001-10-29 Sam Steingold <sds@gnu.org>
4245
4246 * w32-fns.el (convert-standard-filename): Handle cygwin-specific
4247 "/cygdrive/LETTER/" pathnames.
4248
4249 2001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
4250
4251 * faces.el (invert-face): Check for 'unspecified, not for nil,
4252 when testing whether face colors are not specified.
4253 From David.Kastrup@t-online.de (David Kastrup).
4254 (read-face-name): Doc fix.
4255 (make-face-bold, make-face-unbold, make-face-italic)
4256 (make-face-unitalic, make-face-bold-italic, invert-face):
4257 Remove trailing blank from the prompt passed to read-face-name.
4258
4259 2001-10-29 Sam Steingold <sds@gnu.org>
4260
4261 * emacs-lisp/bytecomp.el (byte-recompile-directory):
4262 Report numbers of files skipped and failed too.
4263 (byte-compile-file): Return 'no-byte-compile for skipped files.
4264
4265 2001-10-29 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4266
4267 * log-view.el (log-view-mode-map): Bind `M-n' and `M-p', not `M n'
4268 and `M p'.
4269
4270 2001-10-29 Gerd Moellmann <gerd@gnu.org>
4271
4272 * international/iso-acc.el (iso-accents-compose): Push SECOND-CHAR
4273 as is on unread-command-events instead of `(SECOND-CHAR)'.
4274
4275 2001-10-29 Andre Spiegel <spiegel@gnu.org>
4276
4277 * vc.el: Mention vc-*-switches in backend API documentation.
4278 (vc-annotate): Adapt doc string to recent change.
4279
4280 2001-10-29 Gerd Moellmann <gerd@gnu.org>
4281
4282 * enriched.el (enriched-face-ans): Handle face attributes
4283 of the form `(FACE1 FACE2 ...)'.
4284
4285 * dired-x.el (dired-omit-startup): Show ``Omit'' only in Dired buffers.
4286
4287 2001-10-29 Alex Schroeder <kensanata@yahoo.com>
4288
4289 * progmodes/sql.el (sql-mysql): Doc change by RMS.
4290
4291 * progmodes/sql.el (sql-db2): Doc change.
4292 (sql-help): Doc change by Christian Egli <christian.egli@stest.ch>.
4293 (sql-mysql): Doc change by Christian Egli <christian.egli@stest.ch>.
4294
4295 2001-10-29 Gerd Moellmann <gerd@gnu.org>
4296
4297 * env.el (substitute-env-vars): Don't quote argument to `rx';
4298 it's a macro.
4299
4300 2001-10-28 Per Abrahamsen <abraham@dina.kvl.dk>
4301
4302 * cus-start.el (recursive-load-depth-limit): Added.
4303
4304 2001-10-28 Richard M. Stallman <rms@gnu.org>
4305
4306 * textmodes/ispell.el (version18p, version20p): Vars deleted.
4307 All uses removed--assume Emacs version is >= 20.
4308
4309 * mail/supercite.el (sc-emacs-features): Test for "Emacs 19"
4310 by really checking that it is not version 18.
4311
4312 * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
4313
4314 2001-10-28 Miles Bader <miles@gnu.org>
4315
4316 * faces.el (face-attribute): Add INHERIT argument, consider face
4317 inheritance if it's non-nil.
4318 (face-attribute-merged-with): New function.
4319 (face-attribute-specified-or): New macro.
4320 (face-foreground, face-background, face-stipple): Add INHERIT
4321 argument. Use `face-attribute-specified-or'.
4322
4323 2001-10-28 Stefan Monnier <monnier@cs.yale.edu>
4324
4325 * font-lock.el: Require `syntax'.
4326 (font-lock-defaults-alist): Don't define keywords for lisp languages.
4327 Use `c-font-lock-syntactic-face-function' for c languages.
4328 (font-lock-mode): Don't unset vars when turning the mode off.
4329 (font-lock-default-fontify-buffer): Don't unset vars at the end.
4330 (font-lock-extra-managed-props): New var.
4331 (font-lock-default-unfontify-region): Use it.
4332 (font-lock-apply-syntactic-highlight): Flush the syntax cache.
4333 Don't eval the value when there's no match.
4334 (font-lock-ppss-stats): New var.
4335 (font-lock-ppss): New fun.
4336 (font-lock-fontify-syntactically-region): Use it and syntax.ppss.
4337 (font-lock-apply-highlight): Allow `highlight' to set several props.
4338 (font-lock-set-defaults): Use dolist.
4339 (font-lock-unset-defaults): Remove.
4340 (font-lock-match-c-style-declaration-item-and-skip-to-next):
4341 Try to recognize prototypes using `foo P_ ((args))'.
4342 ({c,c++,java,objc}-font-lock-keywords-{1,2,3}): Don't setq a defconst.
4343 (c-font-lock-keywords-2): Fix last change to still use Anders' trick.
4344 (c-font-lock-syntactic-face-function): New function.
4345 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
4346 (c++-keywords): Use a more sophisticated regexp to handle
4347 shallowly nested templates.
4348
4349 2001-10-27 Stefan Monnier <monnier@cs.yale.edu>
4350
4351 * textmodes/sgml-mode.el (sgml-empty-tags): New var.
4352 (sgml-tag): Use it. Cleanup with `cond'.
4353 (sgml-tags-invisible): Make sgml-tags-invisible buffer-local.
4354 Mark the overlays and only delete those that are marked.
4355 (sgml-skip-close-p): Remove.
4356 (sgml-value): Replace sgml-skip-close-p with its definition.
4357 (html-tag-alist): Use sgml-xml a bit more.
4358 (html-mode): Set sgml-empty-tags.
4359
4360 * textmodes/texnfo-upd.el: Use `when', `dolist', `push', ...
4361 (texinfo-update-node, texinfo-sequential-node-update):
4362 Don't bind the obsolete `auto-fill-hook'.
4363 (texinfo-multi-file-included-list,texinfo-multi-file-master-menu-list):
4364 Use `set-buffer' rather than `switch-to-buffer'.
4365 (texinfo-multi-file-update): Use "Top" rather than `up-node-name'.
4366 Use `set-buffer' rather than `switch-to-buffer'.
4367
4368 * mail/sendmail.el (mail-mode-syntax-table): Let it inherit from
4369 text-mode-syntax-table.
4370 (mail-mode): Use define-derived-mode.
4371 Fix ordering of alternatives in adaptive-fill-regexp.
4372 (mail-mode-map): Don't rely on keymap's internal representation.
4373
4374 2001-10-27 Sam Steingold <sds@gnu.org>
4375
4376 * textmodes/sgml-mode.el (sgml-xml): Renamed from `html-xhtml'.
4377 (sgml-xml-guess): Extracted from `html-mode' and generalized.
4378 (sgml-mode-common): Call it.
4379 (sgml-mode, html-mode): Set `mode-name' based on `sgml-xml'.
4380 (sgml-tag, sgml-skip-close-p, html-tag-alist, html-line)
4381 (html-horizontal-rule, html-image, html-ordered-list):
4382 (html-unordered-list, html-list-item, html-paragraph):
4383 (html-checkboxes, html-radio-buttons): Use `sgml-xml' instead of
4384 `html-xhtml'.
4385
4386 2001-10-26 Masayuki Ataka <ataka@milk.freemail.ne.jp>
4387
4388 * textmodes/texinfmt.el (texinfo-format-ifnotinfo): New function.
4389 (ifnothtml): New alias.
4390
4391 2001-10-27 Stefan Monnier <monnier@cs.yale.edu>
4392
4393 * textmodes/text-mode.el (text-mode): Use define-derived-mode.
4394 (toggle-text-mode-auto-fill): Use derived-mode-p.
4395
4396 2001-10-27 Gerd Moellmann <gerd.moellmann@t-online.de>
4397
4398 * net/ange-ftp.el (ange-ftp-send-cmd): Call fix-name-func for
4399 `mdtm'. From "Forrest Cahoon" <forrest.cahoon@merrillcorp.com>.
4400
4401 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
4402
4403 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
4404 Add make-obsolete cookies, to follow faces.el.
4405
4406 These changes avoid warnings from the byte compiler in faces.el:
4407
4408 * faces.el (internal-get-face): Use facep instead of the obsolete
4409 internal-find-face.
4410 (internal-frob-font-weight, internal-frob-font-slant):
4411 New defaliases for obsolete functions.
4412 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
4413 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
4414 (x-make-font-bold-italic): Use internal-frob-font-weight and
4415 internal-frob-font-slant aliases instead of the obsolete
4416 x-frob-... functions.
4417
4418 2001-10-26 Sam Steingold <sds@gnu.org>
4419
4420 * textmodes/sgml-mode.el (html-mode): Set `html-xhtml' from the
4421 DOCTYPE; set `mode-name' based on it.
4422 (html-tag-alist): Use `html-xhtml' for "li", "dt" and "dd".
4423 (sgml-tag): Close empty tags in XHTML.
4424
4425 2001-10-26 Jason Rumney <jasonr@gnu.org>
4426
4427 * w32-fns.el: (w32-charset-info-alist): Use ANSI for iso10646-1
4428 when UNICODE is not defined.
4429
4430 2001-10-26 Sam Steingold <sds@gnu.org>
4431
4432 * font-lock.el (c-font-lock-keywords-2): Do not require labels to
4433 be alone on the line.
4434
4435 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
4436
4437 * button.el (button): Special face definition for MS-DOS terminals.
4438
4439 2001-10-26 Sam Steingold <sds@gnu.org>
4440
4441 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
4442 Protect the /= test by checking that the args are non-nil.
4443 (sh-font-lock-close-heredoc): Check eof for being non-nil.
4444
4445 2001-10-26 Tomas Abrahamsson <tab@lysator.liu.se>
4446
4447 * textmodes/artist.el (artist-version): 1.2.4.
4448 (artist-butlast-fn): New variable.
4449 (artist-butlast): New function.
4450 (artist-ellipse-mirror-quadrant): Use it.
4451 (artist-mouse-draw-poly): Use nil for `point-list'.
4452 (artist-mouse-draw-poly): Check for point-list being nil.
4453
4454 2001-10-26 Peter Kleiweg <kleiweg@let.rug.nl>
4455
4456 * progmodes/ps-mode.el (ps-mode-print-function): Remove quote for
4457 lambda expression.
4458 (ps-mode-menu-main): Submenu with options on/off was replaced with
4459 a toggle button.
4460 (ps-mode, ps-run-mode): Define with `define-derived-mode'
4461 (ps-mode): Autoload cookie added on same line as comment
4462 (ps-mode-tabkey, ps-mode-backward-delete-char):
4463 (ps-mode-r-balance): Replace `delete-horizontal-space' and
4464 `indent-to' with `indent-line-to'
4465 (ps-mode-print-buffer, ps-mode-print-region): Use `funcall'
4466 instead of `eval'.
4467 (ps-mode-print-region): Use `with-temp-buffer'.
4468 (ps-run-start): Use of `mapconcat'. Use `apply' instead of `eval'.
4469 (numerous places): Add back-tick and tick around names in
4470 docstrings, fix punctuation in docstrings, remove trailing spaces.
4471
4472 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
4473
4474 * textmodes/sgml-mode.el (sgml-font-lock-keywords-1): Ignore comments.
4475 (sgml-font-lock-keywords-2): Use `eval'. Moved from sgml-mode-common.
4476 (sgml-font-lock-syntactic-keywords): New var.
4477 (sgml-mode-common): Drop the two args.
4478 Don't make buffer-local variables that aren't used.
4479 Don't set sgml-font-lock-keywords-2 now that it uses `eval instead.
4480 Don't set `before-string' props from sgml-display-text.
4481 (sgml-mode): Use define-derived-mode.
4482 (sgml-tags-invisible): Use sgml-display-text.
4483 (sgml-quote): New command.
4484 (html-tag-alist): Add args for `span'.
4485 (html-mode): Use define-derived-mode.
4486 Set sgml-display-text and sgml-tag-face-alist.
4487
4488 2001-10-25 Sam Steingold <sds@gnu.org>
4489
4490 * add-log.el (add-log-always-start-new-record): New user option.
4491 (add-change-log-entry): Use it.
4492
4493 2001-10-25 Richard M. Stallman <rms@gnu.org>
4494
4495 * progmodes/etags.el (tags-query-replace): Make tags-loop-scan
4496 bind case-fold-search if FROM is not all lower case.
4497
4498 2001-10-25 Gerd Moellmann <gerd@gnu.org>
4499
4500 * startup.el (normal-top-level): Check for frame-initial-frame
4501 only if it's really used.
4502
4503 * mail/mh-utils.el (mh-recenter): Call recenter with arg `(4)'.
4504
4505 * progmodes/compile.el (compilation-parse-errors-filename-function):
4506 New variable.
4507 (compilation-parse-errors): Use it.
4508
4509 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
4510
4511 * emacs-lisp/checkdoc.el (checkdoc-eval-defun): Call eval-defun
4512 interactively so that C-u M-C-x still does edebug.
4513 (checkdoc-sentencespace-region-engine): Don't force a double-space
4514 after `.' if it doesn't look like an end-of-sentence.
4515 (debug-ignored-errors): Add `disambiguate ...'.
4516
4517 2001-10-24 Stefan Monnier <monnier@cs.yale.edu>
4518
4519 * textmodes/texinfo.el (texinfo-environments)
4520 (texinfo-environment-regexp): Hoist.
4521 (texinfo-font-lock-keywords): Use `italic' and `bold' faces.
4522 Only highlight the menu name in menu items.
4523 Setup `@foo ... @end foo' as text clones.
4524 (texinfo-clone-environment): New function.
4525 (texinfo-mode): Simplify auto-fill-inhibit-regexp.
4526 (texinfo-insert-block): Simplify.
4527 (texinfo-insert-quote): Insert a plain " if preceded by \ or if
4528 the command is repeated.
4529 (texinfo-last-unended-begin, texinfo-next-unmatched-end): New funs.
4530 (texinfo-insert-@end): Simplify.
4531
4532 * textmodes/texnfo-upd.el (texinfo-section-types-regexp)
4533 (texinfo-section-level-regexp, texinfo-subsection-level-regexp)
4534 (texinfo-subsubsection-level-regexp)
4535 (texinfo-update-menu-same-level-regexps)
4536 (texinfo-update-menu-higher-regexps)
4537 (texinfo-update-menu-lower-regexps): Hoist to eliminate warnings.
4538
4539 * derived.el (define-derived-mode): Use {delay,run}-mode-hooks.
4540 (derived-mode-p): Autoload.
4541
4542 * subr.el (delay-mode-hooks, delayed-mode-hooks, run-mode-hooks):
4543 New vars and functions.
4544 (text-clone-maintain, text-clone-create): New functions.
4545
4546 2001-10-25 Miles Bader <miles@gnu.org>
4547
4548 * facemenu.el (facemenu-add-new-face): Fix variable names.
4549
4550 2001-10-24 Richard M. Stallman <rms@gnu.org>
4551
4552 * facemenu.el (facemenu-unlisted-faces): Improve doc strings
4553 of t and nil values.
4554 (facemenu-set-face): Handle START and END interactively.
4555 (facemenu-set-foreground): Don't use a face; specify color directly.
4556 (facemenu-set-background): Likewise.
4557 (facemenu-set-face-from-menu): Doc fix.
4558 (facemenu-active-faces): Use face-attribute-vector
4559 to handle bare attributes not in faces.
4560 (facemenu-get-face): Don't handle face names fg:... and bg:...
4561 specially.
4562 (facemenu-add-new-face): New argument MENU.
4563 New way to handle adding colors to the color menus.
4564
4565 * env.el (substitute-env-vars): Quote the arg to rx.
4566
4567 2001-10-24 Sam Steingold <sds@gnu.org>
4568
4569 * mouse.el (mouse-buffer-menu-mode-groups): Added "Version
4570 Control" and "SGML" groups.
4571
4572 2001-10-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4573
4574 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
4575 Better handling of C++ template args to avoid confusion with `<'
4576 and `>' used as operators in member init expressions.
4577
4578 2001-10-24 Gerd Moellmann <gerd@gnu.org>
4579
4580 * replace.el (perform-replace): Move START and END parameters
4581 to the end of the argument list and make them optional.
4582
4583 * progmodes/ebrowse.el, progmodes/etags.el: Adapt to change in
4584 perform-replace.
4585
4586 * international/fontset.el (x-must-resolve-font-name): New function.
4587 (x-complement-fontset-spec): Use it.
4588
4589 2001-10-23 Stefan Monnier <monnier@cs.yale.edu>
4590
4591 * uniquify.el (uniquify-get-proposed-name): Fix (.. "usr" "/usr" 0).
4592
4593 * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
4594 Turn caadr into caar of cdr.
4595
4596 2001-10-23 Gerd Moellmann <gerd@gnu.org>
4597
4598 * info.el (Info-fontify-node): Bind down-mouse-{1,2} instead
4599 of mouse-{1,2} since dragging is on the down event.
4600
4601 * play/doctor.el (make-doctor-variables): Remove a '($ please)'.
4602
4603 * mail/mh-utils.el (mh-recenter): Call `recenter' with arg t
4604 if ARG is nil.
4605
4606 * desktop.el (desktop-last-buffer): New variable.
4607 (desktop-create-buffer): Set it.
4608 (desktop-read): Bind it and switch to that buffer.
4609
4610 2001-10-22 Gerd Moellmann <gerd@gnu.org>
4611
4612 * progmodes/compile.el (compilation-set-window-height):
4613 Select old window only if it's still live.
4614
4615 2001-10-22 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4616
4617 * help-mode.el (help-buffer): Remove debugging code.
4618 From Stefan Monnier <monnier@cs.yale.edu>.
4619
4620 2001-10-22 Eli Zaretskii <eliz@is.elta.co.il>
4621
4622 * files.el (file-name-sans-extension, file-name-extension):
4623 Don't count the leading dots in file names as signaling an extension.
4624
4625 2001-10-22 Andre Spiegel <spiegel@gnu.org>
4626
4627 * vc.el (vc-diff-switches): Doc rewritten.
4628
4629 2001-10-22 Eli Zaretskii <eliz@is.elta.co.il>
4630
4631 * tooltip.el (tooltip-set-param): Doc fix.
4632
4633 * textmodes/sgml-mode.el (sgml-mode-map): Bind 8-bit codes above
4634 127 to sgml-maybe-name-self.
4635 (sgml-name-8bit-mode): Doc fix.
4636 (sgml-char-names-table): New variable.
4637 (sgml-name-char): Support non-ASCII and mule-unicode-*
4638 characters. Doc fix.
4639 (sgml-maybe-name-self): Convert unibyte characters to multibyte.
4640
4641 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Mention in the
4642 doc string the effect of `left' and `top' parameters in
4643 tooltip-frame-parameters, the default values, and the units.
4644 (tooltip-frame-parameters): Mention `top' and `left' in the doc string.
4645 (tooltip-show): Mention in the doc string the `top' and `left'
4646 parameters in tooltip-frame-parameters, and x-max-tooltip-size.
4647
4648 2001-10-22 Andre Spiegel <spiegel@gnu.org>
4649
4650 Add autoscaling support for vc-annotate.
4651 From J.D. Smith <jdsmith@alum.mit.edu>.
4652
4653 * vc.el (vc-annotate-display-default): Accept colormap scaling
4654 ratio (now deprecated).
4655 (vc-annotate-display-autoscale): Added.
4656 (vc-annotate-add-menu): New autoscaling menu options "Span to
4657 Oldest" and "Span Oldest->Newest". Easymenu support added for
4658 toggle menus driven by customize variable `vc-annotate-display-mode'.
4659 (vc-annotate-display-select): Added.
4660 (vc-annotate): Changed temp-buffer-show-function to
4661 `vc-annotate-display-select'.
4662 (vc-annotate-display): Removed arguments BUFFER and BACKEND.
4663 Added argument OFFSET. Instead of backend function, calls now
4664 generic `vc-annotate-difference'.
4665 (vc-annotate-difference): Added as generic function instead of
4666 backend-specific function. No longer takes argument POINT, but
4667 instead accepts a time OFFSET.
4668 (vc-default-annotate-current-time): Added.
4669
4670 * vc-cvs.el (vc-cvs-annotate-difference): Removed to generic
4671 version in vc.el, with
4672 (vc-cvs-annotate-current-time): Added, as override of default.
4673 (vc-cvs-annotate-time) Added. Taken mostly from the (now removed)
4674 `vc-cvs-annotate-difference'.
4675
4676 2001-10-22 Gerd Moellmann <gerd@gnu.org>
4677
4678 * saveplace.el (save-place): Require `saveplace'.
4679
4680 * progmodes/cwarn.el (cwarn-font-lock-feature-keywords-alist):
4681 Use `sexp' for :value-type instead of `face'.
4682
4683 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
4684
4685 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Fix the
4686 regexps due to 5-digit message IDs.
4687
4688 2001-10-21 Jason Rumney <jasonr@gnu.org>
4689
4690 * term/w32-win.el (redisplay-dont-pause): Don't set.
4691
4692 2001-10-21 Miles Bader <miles@gnu.org>
4693
4694 * help-funs.el (help-manyarg-func-alist): Variable removed.
4695
4696 2001-10-21 Miles Bader <miles@gnu.org>
4697
4698 * help-funs.el (help-manyarg-func-alist): Remove entries for
4699 `insert', `insert-and-inherit', `insert-before-markers',
4700 `insert-before-markers-and-inherit', `message', `message-box',
4701 `message-or-box', `propertize', `format', `encode-time', `append',
4702 `concat', `vconcat', `nconc', `widget-apply', `make-hash-table',
4703 `insert-string', `ml-if', `ml-provide-prefix-argument', and
4704 `ml-prefix-argument-loop'.
4705
4706 2001-10-21 Andre Spiegel <spiegel@gnu.org>
4707
4708 * vc.el (vc-diff-internal, vc-coding-system-for-diff)
4709 (vc-default-diff-tree): New functions.
4710 (vc-version-diff): Use them. As a result, coding systems are now
4711 set up properly for all sorts of diffs, and tree diffs can now
4712 also be done locally.
4713 (vc-diff): With a prefix argument, don't require that it's called
4714 from a buffer under version control.
4715 (diff-switches): Remove duplicate definition.
4716
4717 * vc-cvs.el (vc-cvs-diff-tree): New function.
4718
4719 2001-10-21 Miles Bader <miles@gnu.org>
4720
4721 * help-funs.el (help-manyarg-func-alist): Remove entries for
4722 `list', `vector', `make-byte-code', `call-process',
4723 `call-process-region', `string', `+', `-', `*', `/', `max', `min',
4724 `logand', `logior', and `logxor'.
4725
4726 * wid-edit.el (checkbox): Swap bg/fg colors in image, and invert
4727 image bits to compensate. Use `make-string' instead of
4728 `make-bool-vector' (XBM apparently wants byte-aligned rows).
4729
4730 2001-10-20 Kim F. Storm <storm@cua.dk>
4731
4732 * simple.el (kill-ring-save): Don't show extent of copied region
4733 if using transient-mark-mode and region is fully visible.
4734
4735 2001-10-20 Gerd Moellmann <gerd@gnu.org>
4736
4737 * (Version 21.1 released.)
4738
4739 2001-10-19 Eli Zaretskii <eliz@is.elta.co.il>
4740
4741 * files.el (auto-mode-alist): Associate .indent.pro with
4742 Fundamental mode. Suggested by Samuel Padgett <spadgett1@nc.rr.com>.
4743
4744 2001-10-18 Sam Steingold <sds@gnu.org>
4745
4746 Put the *Compile-Log* buffer in `compilation-mode'.
4747 * emacs-lisp/bytecomp.el (byte-goto-log-buffer): New function.
4748 (byte-compile-log-1, byte-compile-log-file)
4749 (displaying-byte-compile-warnings): Use it
4750
4751 2001-10-18 Stefan Monnier <monnier@cs.yale.edu>
4752
4753 * mail/smtpmail.el (smtpmail-via-smtp): Use mail-envelope-from if set.
4754
4755 * xml.el (xml-parse-tag): Use eq on char-after's return value.
4756
4757 2001-10-18 Gerd Moellmann <gerd@gnu.org>
4758
4759 * isearch.el (isearch-mode-map): Bind `mouse-movement' to nil.
4760
4761 * obsolete/hilit19.el (hilit-lookup-face-create):
4762 Call set-face-font only if display-graphic-p.
4763 (toplevel): Remove references to window-system.
4764
4765 2001-10-18 Miles Bader <miles@gnu.org>
4766
4767 * simple.el (what-line): Avoid problems with field properties.
4768
4769 2001-10-17 Eli Zaretskii <eliz@is.elta.co.il>
4770
4771 * wid-edit.el (widget-field-face, widget-single-line-field-face):
4772 Define special colors for a tty.
4773
4774 2001-10-17 Francesco Potorti` <pot@gnu.org>
4775
4776 * comint.el (comint-password-prompt-regexp): Make it less
4777 restrictive, letting comint recognise OpenSSH2 passphrase prompts.
4778
4779 2001-10-17 John Wiegley <johnw@gnu.org>
4780
4781 * eshell/em-unix.el (eshell/cat): Do a quick test if something is
4782 a regular file, before checking if it is a directory or symlink.
4783 This avoids a call to eshell-file-attributes, which can be
4784 expensive in some situations.
4785
4786 * eshell/em-ls.el (eshell-ls-dired-initial-args): Added an extra
4787 customization variable, to differentiate ls-in-dired from regular
4788 uses of ls.
4789
4790 2001-10-17 Miles Bader <miles@gnu.org>
4791
4792 * custom.el (defface): Mention `:inherit' in doc-string.
4793
4794 2001-10-16 Eli Zaretskii <eliz@is.elta.co.il>
4795
4796 * paren.el: Update the Commentary with installation instructions.
4797
4798 2001-10-15 Dave Love <fx@gnu.org>
4799
4800 * international/mule.el (set-auto-coding): Fix regexps for local
4801 variables section not to eat newlines.
4802
4803 2001-10-15 Miles Bader <miles@gnu.org>
4804
4805 * simple.el (display-message-or-buffer): Pass the correct buffer
4806 to `display-buffer'.
4807
4808 2001-10-14 Stefan Monnier <monnier@cs.yale.edu>
4809
4810 * progmodes/executable.el (executable-binary-suffixes): Make varalias.
4811 (executable-find): Use exec-suffixes.
4812 (executable-set-magic): Don't use make-local-hook.
4813
4814 * bindings.el (exec-suffixes): Initialize to a system-dependent value.
4815
4816 2001-10-14 Eli Zaretskii <eliz@is.elta.co.il>
4817
4818 * bindings.el (completion-ignored-extensions) [ms-dos, windows-nt]:
4819 Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386.
4820 Add .so to the Unix and GNU branch.
4821
4822 * international/latin-1.el:
4823 * international/latin-2.el:
4824 * international/latin-3.el:
4825 * international/latin-4.el:
4826 * international/latin-5.el:
4827 * international/latin-8.el:
4828 * international/latin-9.el: Add no-byte-compile: t, since
4829 Makefile.in instructs make-docfile to look at .el files.
4830
4831 2001-10-14 Miles Bader <miles@gnu.org>
4832
4833 * button.el (define-button-type): Allow supertype property to be
4834 specified with a keyword `:supertype' too.
4835 (button-put, make-text-button): Allow button type property to be
4836 specified using the keyword `:type' too.
4837 (button-type): New function.
4838 (button): Add `button-category-symbol' property.
4839
4840 2001-10-13 Stefan Monnier <monnier@cs.yale.edu>
4841
4842 * bindings.el (esc-map): Revert `j' and `C-j' bindings to
4843 indent-new-comment-line from comment-indent-new-line.
4844
4845 * textmodes/refill.el (refill-mode):
4846 Bind DEL to backward-delete-char-untabify.
4847 Set backward-delete-char-untabify-method to `hungry'.
4848
4849 * textmodes/bib-mode.el (bib-mode):
4850 * play/gomoku.el (gomoku-mode):
4851 * textmodes/page-ext.el (pages-directory-mode):
4852 * textmodes/scribe.el (scribe-mode): Use define-derived-mode.
4853
4854 * textmodes/two-column.el (2C-mode): Don't use make-local-hook.
4855
4856 * emacs-lisp/syntax.el (syntax-ppss): Autoload.
4857
4858 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
4859 Handle here-docs differently.
4860 (sh-font-lock-heredoc): Remove.
4861 (sh-here-doc-open-re, sh-here-doc-markers, sh-here-doc-re): New vars.
4862 (sh-font-lock-here-doc, sh-font-lock-close-heredoc)
4863 (sh-font-lock-open-heredoc): New functions.
4864 (sh-mode): Don't copy sh-font-lock-syntactic-keywords any more.
4865 (sh-font-lock-keywords-1): Use regexp-opt.
4866 (sh-in-comment-or-string): Use syntax-ppss.
4867 (sh-case, sh-for, sh-indexed-loop, sh-function, sh-if, sh-repeat)
4868 (sh-select, sh-tmp-file): Add explicit terminating \n.
4869
4870 * net/ange-ftp.el (ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
4871 Use with-current-buffer.
4872 (ange-ftp-cd): New arg `noerror' to prevent signalling an error.
4873 (ange-ftp-send-cmd): If a `cd' is used (because of a space in the
4874 filename), catch any error that occurs in `ange-ftp-cd'.
4875 If an error happened, don't bother sending `cmd' at all.
4876 Fix a parenthesis typo.
4877 (ange-ftp-write-region): Don't blindly use binary if the remote host
4878 is unix-like.
4879
4880 * play/pong.el (pong-init): Don't use make-local-hook.
4881
4882 2001-10-13 Michael Kifer <kifer@cs.sunysb.edu>
4883
4884 * viper-ex.el (ex-edit): Make checks for modified buffer/file.
4885 (viper-get-ex-address-subr): More precise addr for the $ marker
4886
4887 2001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
4888
4889 * version.el (emacs-version): Bump to 21.1.50.
4890
4891 2001-10-13 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4892
4893 * mail/mailalias.el (mail-directory-stream): Do not double
4894 variables in the lambda-list.
4895
4896 * play/gomoku.el (gomoku-init-display): Ditto.
4897
4898 * play/landmark.el (lm-init-display): Ditto.
4899
4900 * delim-col.el (delimit-columns-rectangle-max): Ditto.
4901 (delimit-columns-rectangle-line): Ditto.
4902
4903 2001-10-12 Stefan Monnier <monnier@cs.yale.edu>
4904
4905 * newcomment.el (comment-region-internal): Don't rebind
4906 invisibility_spec now that the C routines handle it correctly.
4907
4908 * help-funs.el (locate-library): Use load-suffixes and abbrev filename.
4909
4910 * frame.el (special-display-popup-frame): Obey new specs `same-window'
4911 and `same-frame'.
4912
4913 * menu-bar.el (minibuffer-local-*map): Take inheritance into account.
4914
4915 * simple.el (minibuffer-local*-map): Remove redundant bindings.
4916
4917 * bindings.el (minibuffer-local-map): Also bind next, C-n, C-s, prior,
4918 C-p and C-r. Remove redundant bindings from inheriting maps.
4919
4920 * progmodes/cperl-mode.el: Merged in changes from v4.32.
4921 After 4.23 and: After 4.24:
4922 (cperl-contract-levels): Restore position.
4923 (cperl-beautify-level): Likewise.
4924 (cperl-beautify-regexp): Likewise.
4925 (cperl-commentify): Rudimental support for length=1 runs
4926 (cperl-find-pods-heres): Process 1-char long REx comments too /a#/x
4927 After 4.25:
4928 (cperl-commentify): Was recognizing length=2 "strings" as length=1.
4929 (imenu-example--create-perl-index): Was not enforcing
4930 syntaxification-to-the-end.
4931 (cperl-invert-if-unless): Allow `for', `foreach'.
4932 (cperl-find-pods-heres): Quote `cperl-nonoverridable-face'.
4933 Mark qw(), m()x as indentable.
4934 (cperl-init-faces): Highlight `sysopen' too.
4935 Highlight $var in `for my $var' too.
4936 (cperl-invert-if-unless): Was leaving whitespace at end.
4937 (cperl-linefeed): Was splitting $var{$foo} if point after `{'.
4938 (cperl-calculate-indent): Remove old commented out code.
4939 Support (primitive) indentation of qw(), m()x.
4940 After 4.26:
4941 (cperl-problems): Mention `fill-paragraph' on comment. \"" and
4942 q [] with intervening newlines.
4943 (cperl-autoindent-on-semi): New customization variable.
4944 (cperl-electric-semi): Use `cperl-autoindent-on-semi'.
4945 (cperl-tips): Mention how to make CPerl the default mode.
4946 (cperl-mode): Support `outline-minor-mode'. From Mark A. Hershberger.
4947 (cperl-outline-level): New function.
4948 (cperl-highlight-variables-indiscriminately): New customization var.
4949 (cperl-init-faces): Use `cperl-highlight-variables-indiscriminately'.
4950 From Sean Kamath <kamath@pogo.wv.tek.com>.
4951 (cperl-after-block-p): Support CHECK and INIT.
4952 (cperl-init-faces, cperl-short-docs): Likewise and "our".
4953 From Doug MacEachern <dougm@covalent.net>.
4954 After 4.27:
4955 (cperl-find-pods-heres): Recognize \"" as a string.
4956 Mark whitespace between q and [] as `syntax-type' => `prestring'.
4957 Allow whitespace between << and "FOO".
4958 (cperl-problems): Remove \"" and q [] with intervening newlines.
4959 Mention multiple <<EOF as unsupported.
4960 (cperl-highlight-variables-indiscriminately): Doc misprint fixed.
4961 (cperl-indent-parens-as-block): New configuration variable.
4962 (cperl-calculate-indent): Merge cases of indenting non-BLOCK groups.
4963 Use `cperl-indent-parens-as-block'.
4964 (cperl-find-pods-heres): Test for =cut without empty line instead of
4965 complaining about no =cut.
4966 (cperl-electric-pod): Change the REx for POD from "\n\n=" to "^\n=".
4967 (cperl-find-pods-heres): Likewise.
4968 (cperl-electric-pod): Change `forward-sexp' to `forward-word':
4969 POD could've been marked as comment already.
4970 (cperl-unwind-to-safe): Unwind before start of POD too.
4971 After 4.28:
4972 (cperl-forward-re): Throw an error at proper moment REx unfinished.
4973 After 4.29:
4974 (x-color-defined-p): Make an extra case to peacify the warning.
4975 Toplevel: `defvar' to peacify the warnings.
4976 (cperl-find-pods-heres): Could access `font-lock-comment-face' in -nw.
4977 No -nw-compile time warnings now.
4978 (cperl-find-tags): TAGS file had too short substring-to-search.
4979 Be less verbose in non-interactive mode
4980 (imenu-example--create-perl-index): Set index-marker after name
4981 (cperl-outline-regexp): New variable.
4982 (cperl-outline-level): Made compatible with `cperl-outline-regexp'.
4983 (cperl-mode): Made use `cperl-outline-regexp'.
4984 After 4.30:
4985 (cperl-find-pods-heres): =cut the last thing, no blank line, was error.
4986 (cperl-outline-level): Make start-of-file same level as `package'.
4987 After 4.31:
4988 (cperl-electric-pod): `head1' and `over' electric only if empty.
4989 (cperl-unreadable-ok): New variable.
4990 (cperl-find-tags): Use `cperl-unreadable-ok', do not fail
4991 on an unreadable file.
4992 (cperl-write-tags): Use `cperl-unreadable-ok', do not fail
4993 on an unreadable directory.
4994
4995 * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
4996 Consider the text between two errors as belonging to the first error.
4997 (compilation-goto-locus): Use pop-to-buffer rather than
4998 switch-to-buffer-other-frame.
4999
5000 * progmodes/awk-mode.el (awk-mode-syntax-table): / has string syntax.
5001 (awk-font-lock-syntactic-keywords): New var.
5002 (awk-mode): Use it.
5003
5004 * expand.el (expand-c-for-skeleton): Add explicit terminating \n.
5005
5006 * faces.el (describe-face): Call help-setup-xref earlier.
5007
5008 * jka-compr.el (jka-compr-load-suffixes): New var.
5009 (jka-compr-install): Add its content to load-suffixes.
5010 (jka-compr-uninstall): Remove its content from load-suffixes.
5011
5012 2001-10-12 Sam Steingold <sds@gnu.org>
5013
5014 * bindings.el (completion-ignored-extensions): CL-related
5015 extensions are platform-independent.
5016
5017 * net/ange-ftp.el (ange-ftp-copy-files-async): New function for
5018 asynchronous multiple file copying.
5019
5020 2001-10-12 Gerd Moellmann <gerd@gnu.org>
5021
5022 * emacs-lisp/bytecomp.el (byte-compile-check-lambda-list):
5023 Turn error for repeated variables into warning.
5024
5025 * emacs-lisp/bytecomp.el (byte-compile-check-lambda-list):
5026 New function checking that lambda-list consists of non-constant
5027 symbols, that &rest and &optional are followed by variable names,
5028 that &rest VAR is the last element, and that variables aren't doubled.
5029 (byte-compile-lambda): Use it.
5030
5031 2001-10-12 Eli Barzilay <eli@barzilay.org>
5032
5033 * calculator.el (calculator-eng-display): Don't call concat
5034 with an integer argument.
5035
5036 2001-10-12 Miles Bader <miles@gnu.org>
5037
5038 * help-mode.el (help-customize-face): New button-type.
5039
5040 * faces.el (list-faces-display): Fix args to `help-xref-button'.
5041 (describe-face): Fix args to `help-xref-button'.
5042 Don't switch to help-buffer around call to `help-setup-xref'.
5043 Use `help-buffer' instead of hard-wired "*Help*".
5044 Require `help-mode'.
5045
5046 2001-10-11 Stefan Monnier <monnier@cs.yale.edu>
5047
5048 * net/goto-addr.el (goto-address-mail-regexp): Allow + in username.
5049
5050 * help-mode.el (help-buffer): New function.
5051 Returns the buffer-name to use for help output.
5052 Change all the code to use it instead of hard-coding *Help*.
5053 (help-mode-map): Put back the mouse-2 binding.
5054 (help-xref-stack): Change the format and make buffer-local.
5055 (help-xref-stack-item): Make buffer-local.
5056 (help-setup-xref): Do the `push' here rather than in help-do-xref.
5057 (help-xref-interned): Display the face doc as well.
5058 (help-follow-mouse): Re-introduce.
5059 (help-xref-go-back): Adapt to the new use of help-xref-stack.
5060 (help-do-xref): Don't `push' any more.
5061 (help-follow): Also follow face names.
5062
5063 * help-funs.el (describe-function-1): Remove unused `parens' arg.
5064 Don't call help-setup-xref anymore and remove its `interactive-p' arg.
5065 Autoload and cleanup.
5066 (describe-function): Call help-setup-xref.
5067 (describe-variable): Call help-setup-xref earlier.
5068
5069 * help.el (describe-bindings-internal): New fun moved from keymap.c.
5070 (view-lossage): Call help-setup-xref correctly and earlier.
5071 (describe-bindings): Call help-setup-xref earlier.
5072 (describe-key): Call help-setup-xref. Fix call to describe-function-1.
5073 (describe-mode): Don't autoload. Call help-setup-xref earlier.
5074
5075 2001-10-11 Gerd Moellmann <gerd@gnu.org>
5076
5077 * master.el (master-mode): Use define-minor-mode instead of
5078 easy-mmode-define-minor-mode. Add autload cookie.
5079 (Commentary): Remove the line showing how to autoload master-mode,
5080 since it's always autoloaded.
5081
5082 * master.el: New file.
5083
5084 2001-10-11 Dave Love <fx@gnu.org>
5085
5086 * emacs-lisp/byte-opt.el (byte-optimize-lapcode)
5087 <byte-constref-ops>: Consider byte-constant2 and clarify the code.
5088 <const-C varset-X const-C>: Fix car/cdr typo.
5089
5090 2001-10-11 Gerd Moellmann <gerd@gnu.org>
5091
5092 * emacs-lisp/bytecomp.el (byte-compile-display-log-head-p):
5093 New function extracted from byte-compile-log-1.
5094 (byte-compile-log-1): Change output to be more in line with
5095 the output of other GNU tools.
5096 (byte-compile-warn): Emit `warning' instead of `**' for warnings.
5097 (byte-compile-report-error): Downcase error message.
5098 Use `error' instead of `!!' for error messages.
5099 (byte-compile-print-syms): Treat non-interactive case specially.
5100 (displaying-byte-compile-warnings): Use backquote.
5101 (byte-compile-from-buffer): Bind byte-compile-last-line.
5102 (batch-byte-compile): Remove `Done' message.
5103
5104 2001-10-11 Stefan Monnier <monnier@cs.yale.edu>
5105
5106 * emacs-lisp/copyright.el (copyright): Add final \n.
5107
5108 2001-10-11 Miles Bader <miles@gnu.org>
5109
5110 * diff.el (diff): Display default values in prompts as
5111 `(default ...)', not `(...)'.
5112
5113 * info.el (Info-follow-reference): Likewise.
5114
5115 2001-10-10 Stefan Monnier <monnier@cs.yale.edu>
5116
5117 * emacs-lisp/autoload.el (doc-string-elt): Remove.
5118
5119 * newcomment.el (comment-indent): Be a little more robust in case
5120 comment-indent-function does funny things.
5121 (comment-normalize-vars): Autoload.
5122 (comment-region-internal): Fiddle with the visibility spec.
5123 (comment-valid-prefix): New function.
5124 (comment-indent-new-line): Use it. Ignore adaptive-fill-prefixes
5125 that would turn comment-text into non-comment-text.
5126
5127 * emacs-lisp/syntax.el: New file.
5128
5129 * progmodes/tcl.el: Change maintainer to FSF and remove loads of
5130 compatibility cruft.
5131 (tcl-using-emacs-19, tcl-using-emacs-19-23, tcl-using-xemacs-19)
5132 (tcl-version, tcl-maintainer, tcl-use-hairy-comment-detector): Remove.
5133 (tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
5134 tcl-end-of-defun, tcl-mark-defun, tcl-indent-for-comment,
5135 tcl-submit-bug-report.
5136 (tcl-mode-syntax-table): Leave \f alone.
5137 (inferior-tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
5138 tcl-end-of-defun, tcl-submit-bug-report.
5139 (tcl-xemacs-menu): Fix up and pass it directly to easymenu.
5140 (tcl-add-emacs-menu): Remove.
5141 (tcl-fill-mode-map, tcl-fill-inferior-map): Moved into the defvar.
5142 (tcl-keyword-list): Add `chain'.
5143 (tcl-font-lock-syntactic-keywords): New variable.
5144 (tcl-pps-has-arg-6): Remove.
5145 (tcl-internal-beginning-of-defun, tcl-internal-end-of-defun)
5146 (tcl-internal-mark-defun): Remove.
5147 (tcl-set-proc-regexp, tcl-set-font-lock-keywords): Use regexp-opt.
5148 (tcl-mode): Use define-derived-mode. Simplify.
5149 Set comment-indent-function.
5150 (tcl-indent-command): Use line-beginning-position and comment-indent.
5151 (tcl-calculate-indent): Renamed from calculate-tcl-indent.
5152 (tcl-indent-line): Use tcl-calculate-indent.
5153 (tcl-indent-exp): Renamed from indent-tcl-exp. Use new names.
5154 (tcl-add-log-defun): Renamed from add-log-tcl-defun. Use match-string.
5155 (tcl-filter): Use with-current-buffer, simplify.
5156 (inferior-tcl-mode): Use define-derived-mode.
5157 (tcl-hairy-in-comment): Renamed tcl-in-comment.
5158 (tcl-simple-in-comment, tcl-in-comment): Removed.
5159 (tcl-files-alist): New function.
5160 (tcl-help-snarf-commands): Use it and return the result directly
5161 rather than through a global variable.
5162 (tcl-reread-help-files): Fix up the call to tcl-help-snarf-commands.
5163 (tcl-help-on-word): Provide the default value to completing-read.
5164 (tcl-hilit): Remove.
5165 (tcl-hashify-buffer, tcl-popup-menu): Simplify.
5166 (tcl-comment-indent): New function.
5167 (tcl-submit-bug-report): Remove.
5168 (tcl-uncomment-region, tcl-indent-for-comment, add-log-tcl-defun)
5169 (indent-tcl-exp, calculate-tcl-indent, tcl-beginning-of-defun)
5170 (tcl-end-of-defun, tcl-mark-defun, tcl-mark): Redefine as aliases.
5171
5172 2001-10-10 Miles Bader <miles@gnu.org>
5173
5174 * info.el (Info-insert-dir): Don't call `Info-fontify-menu-headers'.
5175 (Info-fontify-node): Don't fontify the node if it's already been done.
5176
5177 2001-10-10 Gerd Moellmann <gerd@gnu.org>
5178
5179 * international/iso-transl.el (iso-transl-e-caret)
5180 (iso-transl-i-caret, iso-transl-o-caret, iso-transl-u-caret):
5181 Fix duplicates. From Dave Love <d.love@dl.ac.uk>.
5182
5183 * simple.el (end-of-buffer): Fix code scrolling specially
5184 for the buffer end.
5185
5186 * startup.el (command-line-1): Bind tab-width to 8.
5187
5188 2001-10-10 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
5189
5190 * emulation/tpu-edt.el: Use defalias instead of fset for
5191 user-visible commands. From Rob Riepel
5192 <riepel@Networking.Stanford.EDU>.
5193
5194 2001-10-09 Gerd Moellmann <gerd@gnu.org>
5195
5196 * ruler-mode.el: New file.
5197
5198 2001-10-09 Miles Bader <miles@gnu.org>
5199
5200 * apropos.el (button): New require.
5201
5202 * help-funs.el: New file, contents mostly from `help.el'.
5203 (describe-variable): Use `condition-case' instead of `ignore-errors'.
5204
5205 * help-mode.el: New file, contents mostly from `help.el'.
5206
5207 * help.el: Don't require `view' when compiling.
5208 (help-with-tutorial, describe-function, describe-function-1)
5209 (variable-at-point, describe-variable, locate-library):
5210 Functions moved into `help-funs.el'.
5211 (help-manyarg-func-alist): Variable moved into `help-funs.el'.
5212 (help-mode, help-mode-setup, help-mode-finish, help-button-action)
5213 (help-setup-xref, help-xref-following, help-make-xrefs)
5214 (help-xref-button, help-insert-xref-button, help-xref-interned)
5215 (help-xref-go-back, help-go-back, help-do-xref, help-follow)
5216 (help-xref-on-pp): Functions moved into `help-mode.el'
5217 (help-mode-map, help-xref-stack, help-xref-stack-item)
5218 (help-highlight-p, help-highlight-face, help-back-label)
5219 (help-xref-symbol-regexp, help-xref-mule-regexp)
5220 (help-xref-info-regexp): Variables moved into `help-mode.el'.
5221 (help-symbol, help-back, help-info, help-customize-variable)
5222 (help-function-def, help-variable-def):
5223 Button-types moved into `help-mode.el'.
5224 (load-symbol-file-load-history, symbol-file):
5225 Functions moved into `subr.el'.
5226 (symbol-file-load-history-loaded): Variable moved into `subr.el'.
5227 (view-lossage): Call `help-setup-xref' instead of doing it manually.
5228
5229 * subr.el (symbol-file-load-history-loaded)
5230 (load-symbol-file-load-history, symbol-file): Moved from `help.el'.
5231
5232 * loadup.el ("button"): Load removed.
5233
5234 * button.el (define-button-type): Respect any `supertype' property.
5235 (button-type-subtype-p, button-has-type-p): New functions.
5236
5237 * rfn-eshadow.el (rfn-eshadow-regexp): Deal correctly with escaped
5238 dollar-signs.
5239
5240 * comint.el (comint-insert-previous-argument): New function.
5241 (comint-mode-map): Bind `C-c .' to `comint-input-previous-argument'.
5242 (comint-insert-previous-argument-last-start-pos)
5243 (comint-insert-previous-argument-last-index): New variables.
5244
5245 * apropos.el (apropos-next-label-button): Use the presence of a
5246 `apropos-label' property to detect label buttons.
5247
5248 2001-10-08 Miles Bader <miles@gnu.org>
5249
5250 * button.el (next-button, previous-button): Remove N and WRAP
5251 parameters. Don't pay attention to `skip' properties.
5252 (forward-button): Implement wrapping, iterating, and skipping here
5253 instead.
5254 (button-activate): USE-MOUSE-ACTION is optional.
5255 (button-nop): Function removed.
5256 (default-button): Use `ignore' as default button action.
5257
5258 * apropos.el (apropos-next-label-button): Update arguments to
5259 `next-button'.
5260 (apropos-symbol): Add `skip' property.
5261 (apropos-function, apropos-macro, apropos-command)
5262 (apropos-variable, apropos-face, apropos-group, apropos-widget)
5263 (apropos-plist): New button types.
5264 (apropos-label-properties): Variable removed.
5265 (apropos-print): Pass button-type to apropos-print-doc, rather
5266 than help function and label text.
5267 (apropos-print-doc): Remove ACTION and STR args, add TYPE arg.
5268 Get button label from TYPE.
5269
5270 2001-10-07 Stefan Monnier <monnier@cs.yale.edu>
5271
5272 * help.el (help-mode): Use define-derived-mode.
5273 (describe-mode): Add optional `buffer' arg.
5274 Use it instead of going through help-xref-mode.
5275 Avoid doubling the word `minor' when prettifying.
5276 (describe-function-1): List the corresponding key bindings.
5277 (describe-variable): Say if the var is automatically buffer-local.
5278 If the source is `loaddefs.el', look for the real source.
5279 (help-xref-mode): Remove.
5280
5281 * emacs-lisp/bytecomp.el (byte-compile-file): Return success when
5282 the file says no-byte-compile.
5283
5284 2001-10-08 Miles Bader <miles@gnu.org>
5285
5286 * button.el (next-button, previous-button): Respect `skip' property.
5287
5288 2001-10-07 Miles Bader <miles@gnu.org>
5289
5290 * woman.el (woman-mode-map): Copy button-buffer-map instead of
5291 making a new keymap. Don't bind mouse-2. Bind M-mouse-2 to
5292 `woman-follow-word' instead of `woman-mouse-2'.
5293 (woman-follow-word): Renamed from `woman-mouse-2'.
5294 Follow current unconditionally, since this function is now only
5295 bound to M-mouse-2. Use accessor functions.
5296 (WoMan-highlight-references): Use `make-text-button'.
5297 (woman-xref): New button type.
5298
5299 * loadup.el ("faces"): Move load before loading "loaddefs.el".
5300 ("button"): New load, just before "help" (which uses it).
5301
5302 * help.el (help-mode-map): Make button-buffer-map our parent.
5303 Don't bind mouse events or tab/backtab.
5304 (help-function, help-variable, help-face, help-coding-system)
5305 (help-input-method, help-character-set, help-back, help-info)
5306 (help-customize-variable, help-function-def, help-variable-def):
5307 New button types.
5308 (help-button-action): New function.
5309 (describe-function-1): Pass help button-types to
5310 `help-xref-button' rather than help function and help-echo string.
5311 Don't put multiple help-function args in a list to pass them to
5312 help-xref-button, just pass them as multiple arguments.
5313 Use `help-insert-xref-button' to make [back]-button, rather than
5314 `help-xref-button'.
5315 (help-xref-button): Take a button-type TYPE as a parameter rather
5316 than a function. Remove HELP-ECHO parameter. Remove DATA parameter
5317 and add a &rest parameter ARGS to serve the same purpose.
5318 Use `make-text-button' to add the button.
5319 (help-insert-xref-button): Use `insert-text-button' to add the button.
5320 (help-follow-mouse, help-next-ref, help-previous-ref):
5321 Functions removed.
5322 (help-do-xref): New function.
5323 (help-follow): Use `push-button' and `help-do-xref' to do most of
5324 the work.
5325
5326 * apropos.el (apropos-symbol, apropos-label): New button types.
5327 (apropos-symbol-button-display-help)
5328 (apropos-label-button-display-help, apropos-next-label-button):
5329 New functions.
5330 (apropos-mode-map): Make button-buffer-map our parent.
5331 Don't bind mouse events.
5332 (apropos-print, apropos-print-doc): Create buttons instead of text
5333 properties.
5334 (apropos-mouse-follow): Function removed.
5335 (apropos-follow): Use buttons.
5336
5337 * button.el: New file.
5338
5339 2001-10-07 Gerd Moellmann <gerd@gnu.org>
5340
5341 * emacs-lisp/cl.el (most-positive-fixnum, most-negative-fixnum):
5342 Remove.
5343
5344 2001-10-05 Richard M. Stallman <rms@gnu.org>
5345
5346 * add-log.el (add-change-log-entry): Skip copyright notice
5347 and copying permission notice at start of file, if any.
5348 Make use of terms "entry" and "item" accord with Emacs manual.
5349 Simplify the logic for moving point while entering or creating
5350 an entry and then an item.
5351 (add-change-log-entry-other-window): Doc fix.
5352
5353 2001-10-06 Miles Bader <miles@gnu.org>
5354
5355 * rfn-eshadow.el (read-file-name-electric-shadow): Autoload cookie
5356 removed; they apparently don't work with faces.
5357
5358 2001-10-05 Sam Steingold <sds@gnu.org>
5359
5360 * textmodes/sgml-mode.el (html-xhtml): New user option.
5361 (html-tag-alist, html-horizontal-rule, html-image, html-line)
5362 (html-ordered-list, html-unordered-list, html-list-item)
5363 (html-paragraph, html-checkboxes, html-radio-buttons): Use it.
5364 (sgml-skip-close-p): New function.
5365 (sgml-value): Use it.
5366
5367 2001-10-05 Sam Steingold <sds@gnu.org>
5368
5369 * calendar/diary-lib.el (diary-entry-compare): When times are
5370 identical, compare the entries lexicographically.
5371
5372 2001-10-06 Miles Bader <miles@gnu.org>
5373
5374 * rfn-eshadow.el (rfn-eshadow-update-overlay):
5375 Use `minibuffer-prompt-end'.
5376
5377 * simple.el (previous-matching-history-element): Fix misplaced
5378 parentheses.
5379
5380 2001-10-05 Miles Bader <miles@gnu.org>
5381
5382 * rfn-eshadow.el: New file.
5383
5384 2001-10-05 Miles Bader <miles@gnu.org>
5385
5386 * cus-face.el (custom-face-attributes): Make sure each attribute
5387 has a valid default value. Remove hacks that mapped `nil' to
5388 `off' and used nil to mean `unspecified'. Remove `unspecified'
5389 choices from all attributes (unspecified is handled by the parent
5390 checklist).
5391 * cus-edit.el (custom-face-edit-convert-widget)
5392 (custom-face-edit-deactivate, custom-face-edit-activate)
5393 (custom-face-edit-delete, custom-face-edit-attribute-tag):
5394 New functions.
5395 (custom-face-edit): Specify a custom :convert-widget.
5396 (custom-pre-filter-face-spec, custom-post-filter-face-spec):
5397 Don't pass in default filters that map between `nil' and `off' and
5398 `unspecified' and `nil'.
5399
5400 2001-10-05 Gerd Moellmann <gerd@gnu.org>
5401
5402 * progmodes/compile.el (compilation-buffer-name): New function.
5403 (compile-internal): Use it to determine the name of the
5404 compilation buffer.
5405
5406 2001-10-05 Miles Bader <miles@gnu.org>
5407
5408 * progmodes/compile.el (grep-use-null-device): New variable.
5409 (grep-command): Mention `grep-use-null-device'.
5410 (grep-compute-defaults): Compute `grep-use-null-device' if necessary.
5411 Make computation of `grep-command' respect `grep-use-null-device'.
5412 (grep): Respect `grep-use-null-device'.
5413 Call `grep-compute-defaults' even if grep-command is set, if
5414 grep-use-null-device is still tentative.
5415
5416 * subr.el (call-process-shell-command): New function.
5417
5418 2001-10-05 Miles Bader <miles@gnu.org>
5419
5420 * simple.el (previous-matching-history-element)
5421 (next-history-element, next-complete-history-element): Use
5422 `minibuffer-' functions instead of calling `field-' functions directly.
5423 (minibuffer-prompt-end, minibuffer-contents):
5424 (minibuffer-contents-no-properties, delete-minibuffer-contents):
5425 Functions removed (now subrs).
5426 (minibuffer-prompt-width): Use `minibuffer-prompt-end'.
5427
5428 * minibuf-eldef.el (minibuf-eldef-setup-minibuffer)
5429 (minibuf-eldef-update-minibuffer): Use `minibuffer-' functions
5430 instead of calling `field-' functions directly.
5431 (minibuf-eldef-setup-minibuffer): Remove unused variable `prompt'.
5432
5433 2001-10-05 Gerd Moellmann <gerd@gnu.org>
5434
5435 * files.el (find-file-noselect): If file's read-only status has
5436 changed on disk, ask if buffer's read-only status should be
5437 changed, unless NOWARN is set.
5438
5439 * emacs-lisp/cl-macs.el (define-setf-expander): Make it an
5440 alias for define-setf-method.
5441
5442 * bindings.el: Remove no-byte-compile from file local variables
5443 to enable bootstrapping.
5444
5445 2001-10-04 Andrew Innes <andrewi@gnu.org>
5446
5447 * faces.el (face-font-registry-alternatives) [windows-nt]:
5448 Make gb2312 an alias for gb2312.1980.
5449
5450 2001-10-04 Stefan Monnier <monnier@cs.yale.edu>
5451
5452 * uniquify.el (uniquify-get-proposed-name): Don't assume dirsep is /.
5453 (uniquify-reverse-components): Remove.
5454
5455 * emacs-lisp/bytecomp.el (byte-recompile-directory):
5456 Make sure the file is readable.
5457 (byte-compile-file): Don't compile if `no-byte-compile' is set.
5458 (byte-compile-defvar): Update to reflect the change in Fdefvar.
5459 (batch-byte-recompile-directory): Pass arg=0.
5460
5461 * progmodes/perl-mode.el (perl-indent-continued-arguments): New var.
5462 (perl-calculate-indent): Use it.
5463 (perl-backward-to-noncomment): Use forward-comment.
5464
5465 * derived.el (define-derived-mode, derived-mode-make-docstring):
5466 Allow `parent' to be nil.
5467
5468 * textmodes/nroff-mode.el (nroff-mode-abbrev-table, nroff-mode):
5469 Use define-derived-mode.
5470 (nroff-mode-map, nroff-mode-syntax-table): Massage.
5471
5472 * mail/mailabbrev.el (mail-abbrev-in-expansion-header-p): Simplify.
5473
5474 * emacs-lisp/lselect.el: Use facep iso find-face.
5475
5476 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
5477 Use regexp-opt.
5478 (doc-string-elt): Set symbols' prop. Copied from autoload.el.
5479 (lisp-font-lock-syntactic-face-function): New function.
5480 (lisp-mode-variables): Use it. Make arg optional.
5481 (emacs-lisp-mode): Don't pass an arg to lisp-mode-variables.
5482 (lisp-mode): Don't pass an arg to lisp-mode-variables.
5483 Set comment-start-skip.
5484
5485 * emacs-lisp/lisp-mnt.el (lm-history-header): Accept `ChangeLog'.
5486
5487 * emacs-lisp/cl-macs.el (frame-parameter): Add a setf method.
5488 (ignore-errors): Don't bother using a `err' symbol.
5489
5490 * emacs-lisp/autoload.el (autoload-ensure-default-file)
5491 (autoload-insert-section-header, autoload-before-p)
5492 (autoload-remove-section): New functions.
5493 (generate-file-autoloads): Use them.
5494 (update-file-autoloads): Use them. Return FILE if there's no cookie.
5495 Make sure the autoload file is properly formatted when creating it.
5496 (update-autoloads-from-directories): Use them as well.
5497 Only update autoloads for files whose timestamp has changed.
5498 Add a dummy entry to remember the files which had no autoload cookies.
5499
5500 * timer.el (timer-relative-time): Fix computation for negative `micro'.
5501
5502 * subr.el (define-key-after): Allow `key' to be longer than 1.
5503 (make-local-hook): Make obsolete.
5504 (add-hook, remove-hook): Don't use make-local-hook any more.
5505 (make-syntax-table): Inherit all chars from s-s-t.
5506
5507 2001-10-04 Gerd Moellmann <gerd@gnu.org>
5508
5509 This is a fix for a report saying that resuming a search with C-s
5510 C-s doesn't use the case-fold-search setting of the previous
5511 search (C-s ... M-c ... then C-s C-s).
5512
5513 * isearch.el (isearch-last-case-fold-search): New variable.
5514 (isearch-mode): Remember value of isearch-case-fold-search
5515 in isearch-last-case-fold-search.
5516 (isearch-done): Quote value of isearch-case-fold-search.
5517 (isearch-repeat): When resuming a search, restore
5518 isearch-case-fold-search from isearch-last-case-fold-search.
5519
5520 Added to NEWS.
5521
5522 * startup.el (inhibit-startup-buffer-menu): New user-option.
5523 (command-line-1): If inhibit-startup-buffer-menu is set, don't
5524 display the buffer menu. From Simon Josefsson <jas@extundo.com>.
5525
5526 This allows upto 99999 messages in the summary without screwing up
5527 the summary sorting. Previously 9999 was the maximum. Added to NEWS.
5528
5529 * mail/rmailsum.el (rmail-make-summary-line)
5530 (rmail-make-summary-line-1, rmail-summary-next-same-subject)
5531 (rmail-summary-goto-msg, rmail-summary-goto-msg):
5532 Allow 5-digit message ids instead of 4.
5533
5534 This adds expansion of environment variables in the value
5535 specified with M-x setenv. Added to NEWS.
5536
5537 * env.el (substitute-env-vars): New function.
5538 (setenv): Add parameter SUBSTITUTE-ENV-VARS. If set, substitute
5539 environment variables in VALUE. Return VALUE.
5540
5541 2001-10-04 Gerd Moellmann <gerd@gnu.org>
5542
5543 * Branch for 21.1.
5544
5545 2001-10-03 Stefan Monnier <monnier@cs.yale.edu>
5546
5547 * pcvs-util.el (cvs-prefix-define): Typo cons->concat.
5548
5549 2001-10-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
5550
5551 * emulation/tpu-edt.el: Make messages match original TPU/edt
5552 editor. From riepel@Stanford.EDU (Rob Riepel).
5553
5554 2001-10-03 Eli Zaretskii <eliz@is.elta.co.il>
5555
5556 * rect.el: Update maintainer's email address.
5557
5558 2001-10-02 Andreas Schwab <schwab@suse.de>
5559
5560 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 227 and 228 for Long
5561 and Extended Passive Mode, resp.
5562
5563 2001-10-01 Eli Zaretskii <eliz@is.elta.co.il>
5564
5565 These changes add support for Calendar-related items in the
5566 menu bar on tty's as well:
5567
5568 * calendar/calendar.el (calendar-mode-map): Require cal-menu
5569 unconditionally.
5570 (calendar-mode): Set up activate-menubar-hook unconditionally.
5571
5572 * calendar/cal-menu.el (cal-menu-x-popup-menu): New function,
5573 calls x-popup-menu only if popup menus are supported.
5574 (calendar-mouse-insert-hebrew-diary-entry)
5575 (calendar-mouse-insert-islamic-diary-entry)
5576 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
5577 (calendar-mouse-view-other-diary-entries)
5578 (calendar-mouse-print-dates, calendar-mouse-2-date-menu)
5579 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
5580 Call cal-menu-x-popup-menu instead of x-popup-menu.
5581
5582 2001-10-01 Gerd Moellmann <gerd@gnu.org>
5583
5584 * gs.el (gs-set-ghostview-window-prop): Fix args of `elt'.
5585
5586 * emacs-lisp/edebug.el (rx): Add def-edebug-spec.
5587
5588 * emacs-lisp/rx.el: New file.
5589
5590 2001-10-01 Eli Zaretskii <eliz@is.elta.co.il>
5591
5592 * help.el (help-for-help): Doc fix. From Pavel@Janik.cz (Pavel Janik).
5593
5594 2001-09-30 Eli Zaretskii <eliz@is.elta.co.il>
5595
5596 * frame.el (select-frame-by-name, other-frame): Doc fix.
5597
5598 2001-09-29 Eli Zaretskii <eliz@is.elta.co.il>
5599
5600 * play/snake.el (snake-score-file): Use temporary-file-directory
5601 instead of a literal "/tmp". Suggested by Robert
5602 <robert@chezmarshall.freeserve.co.uk>.
5603
5604 * play/tetris.el (tetris-score-file): Ditto.
5605
5606 2001-09-28 Eli Zaretskii <eliz@is.elta.co.il>
5607
5608 * apropos.el (apropos-print): Make the directions inserted at the
5609 beginning of the *Apropos* buffer more clear.
5610
5611 2001-09-27 Michael Kifer <kifer@cs.sunysb.edu>
5612
5613 * ediff-mult.el (ediff-get-meta-info): Installed Gerd's changes.
5614 Added comments.
5615
5616 2001-09-27 Stefan Monnier <monnier@cs.yale.edu>
5617
5618 * newcomment.el (comment-normalize-vars): Use " \t" rather than
5619 "\\s-" when defining comment-end-skip.
5620
5621 2001-09-27 Gerd Moellmann <gerd@gnu.org>
5622
5623 * mail/feedmail.el (feedmail-queue-send-edit-prompt-help):
5624 Call get-buffer-window first second arg `visible'.
5625
5626 * international/mule-diag.el (list-input-methods-1):
5627 Output something that's independent of Emacs' version.
5628
5629 * tar-mode.el (tar-mode-write-file): Don't signal an error by
5630 calling byte-to-position with a nil tar-header-offset.
5631
5632 2001-09-27 Simon Josefsson <jas@extundo.com>
5633
5634 * mail/sendmail.el (send-mail-function): Doc fix.
5635 (mail-do-fcc): Error if header-end is not a marker.
5636 (mail-do-fcc): Add a comment.
5637 (mail-reply-to): Doc fix.
5638 (mail-signature): Make ATPOINT optional.
5639 (mail-yank-original): Use cond instead of nestled if.
5640
5641 2001-09-26 Stefan Monnier <monnier@cs.yale.edu>
5642
5643 * info.el (Info-on-current-buffer): Default arg to "Top".
5644
5645 2001-09-25 Eli Barzilay <eli@barzilay.org>
5646
5647 * calculator.el (calculator-copy-displayer): New user-option.
5648 (calculator-displayer-prev, calculator-displayer-next):
5649 Renamed from calculator-displayed-{left,right}.
5650 (calculator, calculator-standard-displayer)
5651 (calculator-num-to-string, calculator-update-display)
5652 (calculator-copy, calculator-put-value): Bug and display fixes.
5653
5654 2001-09-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5655
5656 * ebnf2ps.el: Eliminate make-local-hook calls. Doc fix.
5657 (ebnf-version): New version (3.6.1).
5658
5659 * ebnf-bnf.el: Fix character range regexp. Doc fix.
5660 (ebnf-bnf-non-terminal-chars): New internal const.
5661 (ebnf-bnf-lex): Fix code.
5662
5663 * ebnf-iso.el: Fix character range regexp. Doc fix.
5664 (ebnf-iso-non-terminal-chars): New internal const.
5665 (ebnf-iso-lex): Fix code.
5666
5667 * ebnf-yac.el: Fix character range regexp. Doc fix.
5668 (ebnf-yac-skip-chars): New internal const.
5669 (ebnf-yac-skip-code): Fix code.
5670
5671 2001-09-24 Stefan Monnier <monnier@cs.yale.edu>
5672
5673 * vc.el (vc-checkin): Use vc-delete-automatic-version-backups.
5674
5675 * pcvs-parse.el (cvs-parse-commit): Expand the file name before
5676 passing it to VC.
5677
5678 * vc-hooks.el (vc-delete-automatic-version-backups): Handle the
5679 case where the file is relative.
5680
5681 2001-09-24 Gerd Moellmann <gerd@gnu.org>
5682
5683 * xml.el (xml-parse-attlist): Quotes around attributes must be the
5684 same on each side. Make sure we properly handle simple quotes.
5685 From Daiki Ueno <ueno@unixuser.org>.
5686
5687 2001-09-23 Eli Zaretskii <eliz@is.elta.co.il>
5688
5689 * mail/sendmail.el (mail-mode): Doc fix. From Simon Josefsson
5690 <jas@extundo.com>.
5691
5692 * menu-bar.el (top-level): Minor fixes for text of help-echo in
5693 some items of the Options menu.
5694
5695 2001-09-22 Stefan Monnier <monnier@cs.yale.edu>
5696
5697 * pcvs-parse.el (cvs-parse-commit): Remove the temp files used by VC.
5698
5699 * vc-hooks.el (vc-delete-automatic-version-backups):
5700 Don't fail if the directory doesn't exist.
5701
5702 * diff-mode.el (diff-default-read-only): New var.
5703 (diff-mode): Use it.
5704
5705 2001-09-22 Eli Zaretskii <eliz@is.elta.co.il>
5706
5707 * hexl.el (hexl-mode-map): Fix the change of 2001-08-23:
5708 Use make-keymap instead of copy-keymap, since copying the global
5709 keymap messes up the menu bar.
5710
5711 * info.el (Info-goto-node, Info-menu): Doc fix. Suggested by
5712 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
5713
5714 2001-09-21 Eli Zaretskii <eliz@is.elta.co.il>
5715
5716 * dired.el (dired-build-subdir-alist): Accept optional arg SWITCHES.
5717
5718 * dired-aux.el (dired-insert-subdir): Pass switches to
5719 dired-build-subdir-alist.
5720
5721 2001-09-21 Stephen Gildea <gildea@stop.mail-abuse.org>
5722
5723 * time-stamp.el (time-stamp-string-preprocess): Fix bug that
5724 caused %#a and %#b to be mis-formatted.
5725
5726 2001-09-20 Eli Zaretskii <eliz@is.elta.co.il>
5727
5728 * info.el (Info-file-list-for-emacs): Add elements for ada-mode,
5729 ccmode, emacs-mime, and eudc manuals.
5730
5731 2001-09-19 Sam Steingold <sds@gnu.org>
5732
5733 w32 find cannot be used with `grep-find'.
5734 * progmodes/compile.el (find-program): New variable.
5735 (grep-compute-defaults): Use it to set `grep-find-command'.
5736
5737 2001-09-19 Gerd Moellmann <gerd@gnu.org>
5738
5739 * ps-bdf.el (bdf-read-bitmap): Initialize returned values to defaults.
5740
5741 2001-09-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5742
5743 * ebnf2ps.el: Replace "Prologue" by "Prolog" in PostScript
5744 programming. Doc fix.
5745 (ebnf-version): New version (3.6).
5746 (ebnf-eps-begin): Data fix.
5747 (ebnf-begin-file): Code fix.
5748
5749 * ebnf-bnf.el: Doc fix.
5750 (ebnf-bnf-lex): Fix regexp for non-terminal and terminal tokens.
5751
5752 * ebnf-iso.el, ebnf-otz.el, ebnf-yac.el: Doc fix.
5753
5754 2001-09-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5755
5756 * ps-print.el: Better face mapping for black/white PostScript printers.
5757 Check if mark is active when printing a region. Doc fix.
5758 (ps-print-version): New version number (6.5.5).
5759 (ps-print-color-p): Customization fix.
5760 (ps-black-white-faces): New option.
5761 (ps-black-white-faces-alist): New internal var.
5762 (ps-count-lines-preprint, ps-print-preprint-region): New funs.
5763 (ps-print-region, ps-print-region-with-faces, ps-nb-pages-buffer)
5764 (ps-nb-pages-region): Interactive fix.
5765 (ps-extend-face-list, ps-extend-face, ps-setup, ps-begin-job)
5766 (ps-face-attributes, ps-generate-postscript-with-faces): Code fix.
5767
5768 2001-09-18 Eli Zaretskii <eliz@is.elta.co.il>
5769
5770 * dired.el (dired-move-to-filename-regexp): Allow one digit in the
5771 numeric month value, and allow the Kanji character after the it to
5772 be missing (happens with ls-lisp's output on Japanese versions of
5773 MS-Windows).
5774
5775 2001-09-18 Miles Bader <miles@gnu.org>
5776
5777 * diff-mode.el (diff-mode): Don't make the buffer read-only if
5778 it's empty (and thus probably a new patch file about to be edited).
5779
5780 2001-09-17 Gerd Moellmann <gerd@gnu.org>
5781
5782 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
5783 Check for '(' in column 0 of doc string.
5784
5785 * gs.el (gs-set-ghostview-window-prop): Use `elt' instead
5786 of `nth' so that using a vector as bounding-box works.
5787 From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
5788
5789 2001-09-17 Andre Spiegel <spiegel@gnu.org>
5790
5791 * vc.el (vc-annotate): Use current workfile version explicitly as
5792 a default, suggested by Gustav H\e,Ae\e(Bllberg <gustav@virtutech.se>.
5793
5794 2001-09-16 Eli Zaretskii <eliz@is.elta.co.il>
5795
5796 * ps-bdf.el (bdf-cache-file) <ms-dos>: Use _bdfcache.el, since
5797 convert-standard-filename doesn't guarantee that the .el extension
5798 is preserved.
5799
5800 * dos-fns.el (convert-standard-filename): Replace invalid
5801 characters only after converting dash/underscore to a period.
5802 (original-make-auto-save-file-name): New.
5803 (make-auto-save-file-name): New function, overrides the definition
5804 on files.el and calls the original function via
5805 original-make-auto-save-file-name.
5806
5807 * mail/rmail.el (top-level): Require mule-utils when compiling.
5808 (rmail-decode-babyl-format): Use detect-coding-with-priority
5809 instead of detect-coding-region, to favor detection of emacs-mule
5810 encoded Babyl files written by rmailout.el etc. Suggested by
5811 Kenichi Handa <handa@etl.go.jp>.
5812
5813 2001-09-14 Eli Zaretskii <eliz@is.elta.co.il>
5814
5815 * eshell/em-unix.el (eshell-shuffle-files, eshell-shuffle-files):
5816 Use `equal', not `=', since the device number can be a cons cell.
5817
5818 2001-09-14 Gerd Moellmann <gerd@gnu.org>
5819
5820 * simple.el: Comment out change of 2001-09-13.
5821
5822 2001-09-13 Milan Zamazal <pdm@zamazal.org>
5823
5824 * progmodes/compile.el (grep-compute-defaults): Don't set
5825 grep-command/grep-find-command when it is already non-nil.
5826 (grep-command): Make it a user option.
5827 (grep-find-command): Likewise.
5828
5829 2001-09-13 Michael Kifer <kifer@cs.sunysb.edu>
5830
5831 * viper-cmd.el (viper-replace-char-subr, viper-envelop-ESC-key):
5832 inhibit quit.
5833
5834 2001-09-13 Eli Zaretskii <eliz@is.elta.co.il>
5835
5836 * files.el (make-auto-save-file-name): If long file names are not
5837 supported on MS-DOS, truncate the file name to DOS 8+3 limits before
5838 generating an auto-save file name from it.
5839
5840 2001-09-13 Gerd Moellmann <gerd@gnu.org>
5841
5842 * ps-print.el (ps-print-region, ps-print-region-with-faces)
5843 (ps-nb-pages-region): Signal an error if called interactively
5844 and the mark is not active.
5845
5846 * simple.el (minibuffer-prompt-modification)
5847 (minibuffer-prompt-insertion): New functions.
5848 (minibuffer-prompt-properties): Use `modification-hooks' and
5849 `insert-in-front-hooks'.
5850
5851 2001-09-12 Richard M. Stallman <rms@gnu.org>
5852
5853 * textmodes/outline.el (outline-regexp): Doc fix.
5854 Initialize it in the defcustom, the usual way.
5855
5856 2001-09-12 Gerd Moellmann <gerd@gnu.org>
5857
5858 * ediff-mult.el (ediff-get-meta-info): Take into account that data
5859 from `ediff-meta-info' properties need not be an overlay.
5860 From David Ponce <dponce@voila.fr>.
5861
5862 * isearch.el (isearch-intersects-p): Fix end checks.
5863
5864 2001-09-11 Eli Zaretskii <a34785@is.elta.co.il>
5865
5866 * gud.el (dbx) <gud-dbx-use-stopformat-p>: Move this case into the
5867 `t' branch of `cond', since Irix 6.1 and up is a special case of
5868 the standard dbx interface.
5869
5870 2001-09-11 Miles Bader <miles@gnu.org>
5871
5872 * comint.el (comint-send-input): When waiting for echoed input,
5873 don't save the expected end position in `echo-end', so that things
5874 work properly even if the buffer is modified elsewhere at the same
5875 time [this happens if `comint-truncate-buffer' is used].
5876
5877 2001-09-11 Gerd Moellmann <gerd@gnu.org>
5878
5879 * textmodes/outline.el (outline-mode): Use `^' and a shy group
5880 when constructing imenu-generic-expression from outline-regexp.
5881
5882 2001-09-10 Eli Zaretskii <eliz@is.elta.co.il>
5883
5884 * eshell/em-unix.el (eshell-shuffle-files): Compare inodes with
5885 `equal' instead of `=', since they can be cons cells. From Nils
5886 Goesche <cartan@cartan.de>.
5887
5888 2001-09-10 Andre Spiegel <spiegel@gnu.org>
5889
5890 * vc.el (vc-annotate): Rewrote doc string.
5891
5892 2001-09-10 Eli Zaretskii <eliz@is.elta.co.il>
5893
5894 * time-stamp.el: Update Stephen Gildea's email address.
5895
5896 2001-09-10 Gerd Moellmann <gerd@gnu.org>
5897
5898 * mail/sendmail.el (mail-send): Obey mail-send-nonascii when
5899 enable-multibyte-characters = nil. From Hallvard B Furuseth
5900 <h.b.furuseth@usit.uio.no>.
5901
5902 2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
5903
5904 * ediff-init.el (ediff-highest-priority): Bug fix.
5905
5906 * viper-cmd.el (viper-special-read-and-insert-char): New function
5907 that reads a character and uses the current input method or
5908 iso-accents when appropriate.
5909
5910 * viper.el and all others: Corrections to the comment blocks at
5911 the top.
5912
5913 2001-09-09 Eli Zaretskii <eliz@is.elta.co.il>
5914
5915 * info.el (Info-goto-node): Doc fix.
5916
5917 2001-09-07 Gerd Moellmann <gerd@gnu.org>
5918
5919 * isearch.el (isearch-intersects-p): New function.
5920 (isearch-close-unnecessary-overlays): Renamed from *unecessary*,
5921 use isearch-intersects-p, and clean up.
5922
5923 2001-09-07 Eli Zaretskii <eliz@is.elta.co.il>
5924
5925 * textmodes/ispell.el (ispell-dictionary-alist-4): Add "german"
5926 and "german8", for the new German orthography dictionaries,
5927 (ispell-dictionary-alist-5, ispell-dictionary-alist-6): Rearrange
5928 the entries, to keep the line length balanced for loaddefs.el.
5929
5930 2001-09-07 Dr Francis J. Wright <F.J.Wright@qmw.ac.uk>
5931
5932 * comint.el (comint-send-input): Handle comint-process-echoes
5933 differently.
5934
5935 2001-09-07 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
5936
5937 * locate.el (locate-insert-header): Remove unnecessary whitespace.
5938
5939 2001-09-07 Eli Zaretskii <eliz@is.elta.co.il>
5940
5941 * arc-mode.el (archive-dostime): Fix a typo in minutes' computation.
5942
5943 2001-09-07 Gerd Moellmann <gerd@gnu.org>
5944
5945 * server.el (server-switch-buffer):
5946 * textmodes/refer.el (refer-find-entry-internal):
5947 * term/sup-mouse.el (sup-pos-to-window):
5948 * term/bg-mouse.el (bg-window-from-x-y):
5949 * emacs-lisp/edebug.el (edebug-window-live-p):
5950 Use get-window-with-predicate.
5951
5952 * window.el (get-window-with-predicate): Renamed from some-window.
5953 (some-window): Make it an alias.
5954
5955 2001-09-06 Gerd Moellmann <gerd@gnu.org>
5956
5957 * simple.el (undo): Remove positions from buffer-undo-list up to
5958 the next undo boundary only.
5959
5960 2001-09-06 Eli Zaretskii <eliz@is.elta.co.il>
5961
5962 * makefile.nt (install): Don't copy sc.el. Reported by Richard
5963 Kim <ryk@dspwiz.com>
5964
5965 * cus-edit.el (custom-buffer-create-internal): Remove "100%" from
5966 the message "Creating customization items...done".
5967
5968 2001-09-05 Gerd Moellmann <gerd@gnu.org>
5969
5970 * font-lock.el (toplevel): Require `jit-lock' only if
5971 font-lock-support-mode is set to jit-lock-mode.
5972
5973 2001-09-05 Eli Zaretskii <eliz@is.elta.co.il>
5974
5975 * international/quail.el (quail-use-package, quail-inactivate)
5976 (quail-activate): Mention the hooks these functions run in their
5977 doc strings.
5978
5979 2001-09-05 Edward M. Reingold <reingold@iit.edu>
5980
5981 * cal-menu.el (calendar-mouse-view-other-diary-entries): Fix name
5982 of file in header of menu.
5983
5984 2001-09-04 Gerd Moellmann <gerd@gnu.org>
5985
5986 * env.el (setenv): Interactively, if VARIABLE has a current value,
5987 add that to the front of the history, as the doc string says.
5988
5989 * comint.el (comint-send-input): Change help-echo.
5990 From "Dr Francis J. Wright" <F.J.Wright@qmw.ac.uk>.
5991
5992 * bookmark.el (bookmark-write-file): Bind print-length and
5993 print-level to nil. From Tom Capey <tomc@edina.co.uk>.
5994
5995 * obsolete/uncompress.el: Moved there from lisp/.
5996
5997 * comint.el (comint-insert-clicked-input): Goto point-max before
5998 deleting previous input. From "Dr Francis J. Wright"
5999 <F.J.Wright@qmw.ac.uk>.
6000
6001 * simple.el (backward-word): Doc fix.
6002
6003 2001-09-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6004
6005 * emacs-lisp/levents.el, emacs-lisp/lucid.el, emacs-lisp/pp.el
6006 * uncompress.el, uniquify.el, vc.el, view.el, window.el
6007 * w32-fns.el: Add Keywords header.
6008
6009 2001-09-04 Eli Zaretskii <eliz@is.elta.co.il>
6010
6011 * menu-bar.el: Fix separators in the Edit menu. Bring "Fill" near
6012 "Text Properties". Suggested by Simon Marshall
6013 <Simon.Marshall@midas-kapiti.com>.
6014
6015 2001-09-04 Andrew Choi <akochoi@cse.cuhk.edu.hk>
6016
6017 * term/mac-win.el (mac-drag-n-drop): Decode file name by
6018 consulting the value of file-name-coding-system.
6019
6020 2001-09-03 Stefan Monnier <monnier@cs.yale.edu>
6021
6022 * help.el (describe-function-1): Save precomputed `file-name' rather
6023 than recomputing it (incorrectly) with `symbol-file'.
6024
6025 2001-09-03 Gerd Moellmann <gerd@gnu.org>
6026
6027 * international/isearch-x.el (isearch-exit-recursive-edit):
6028 Take three parameters, since it's used as an after-change-function.
6029
6030 * emacs-lisp/backquote.el (backquote-backquote-symbol)
6031 (backquote-unquote-symbol, backquote-splice-symbol): Remove `*'
6032 from doc strings.
6033
6034 2001-09-02 Milan Zamazal <pdm@zamazal.org>
6035
6036 * progmodes/glasses.el (glasses-convert-to-unreadable):
6037 Consider underscores as in `glasses-make-readable'.
6038
6039 2001-09-02 Eli Zaretskii <eliz@is.elta.co.il>
6040
6041 * progmodes/cmacexp.el (c-macro-preprocessor): Use "gcc -E" for
6042 MS-DOS, since cpp might not be available.
6043
6044 * menu-bar.el (menu-bar-edit-menu) <yank-menu, yank>:
6045 Mention "yank" in the help-echo text.
6046 Suggested by Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6047
6048 2001-09-01 Stefan Monnier <monnier@cs.yale.edu>
6049
6050 * newcomment.el (comment-indent): Insert spaces more carefully.
6051
6052 2001-08-31 Eli Zaretskii <eliz@is.elta.co.il>
6053
6054 * mail/emacsbug.el (report-emacs-bug): Make sure *Messages*
6055 exists. From Andy Petrusenco <andy@int.spb.ru>.
6056
6057 * hi-lock.el (hi-lock-unface-buffer): Don't call x-popup-menu if
6058 display-popup-menus-p returns nil. Suggested by Andy Petrusenco
6059 <andy@int.spb.ru>.
6060
6061 2001-08-31 Gerd Moellmann <gerd@gnu.org>
6062
6063 * isearch.el (isearch-mouse-2): Renamed from isearch-mouse-yank.
6064 Instead of running mouse-yank-at-click, see what the event is
6065 bound to outside Isearch and run that.
6066
6067 2001-08-31 Eli Zaretskii <eliz@is.elta.co.il>
6068
6069 * menu-bar.el (menu-bar-options-menu) <transient-mark-mode>:
6070 Fix the menu entry to mention transient-mark-mode.
6071
6072 2001-08-30 Gerd Moellmann <gerd@gnu.org>
6073
6074 * simple.el (eval-expression-print-level): Fix last change.
6075
6076 * bindings.el (mode-line-coding-system-map): New variable.
6077 (mode-line-mule-info): Give the "%Z" a local-map keymap.
6078
6079 * simple.el (eval-expression-print-level): Change the type
6080 of the defcustom to allow nil.
6081
6082 * emacs-lisp/find-gc.el: Moved here from lisp/.
6083
6084 * international/quail.el (quail-completion-1):
6085 Reverse the ((CHAR . DEFN) ...) list before processing it.
6086 From Kenichi Handa <handa@etl.go.jp>.
6087
6088 * obsolete/rsz-mini.el, obsolete/sun-curs.el, obsolete/sun-fns.el
6089 * obsolete/x-apollo.el, obsolete/x-menu.el: Moved here from lisp/.
6090
6091 2001-08-30 Eli Zaretskii <eliz@is.elta.co.il>
6092
6093 * toolbar/tool-bar.el (tool-bar-mode): Make it a no-op if images
6094 aren't supported. This avoids the annoying gray strip drawn by
6095 the Windows version instead of the missing tool bar.
6096
6097 2001-08-29 Gerd Moellmann <gerd@gnu.org>
6098
6099 * menu-bar.el (menu-bar-options-menu): Make option text, messages
6100 and tooltips more consistent. From "Marshall, Simon"
6101 <Simon.Marshall@midas-kapiti.com>.
6102
6103 * startup.el (fancy-splash-screens): Temporarily set
6104 minor-mode-map-alist to nil while displaying splash screens.
6105
6106 2001-08-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6107
6108 * buff-menu.el: Add Keywords header.
6109 Doc fix (C-x C-b is bound to list-buffers).
6110
6111 * dired-x.el: Add keyword files to get listed in finder.
6112 Remove confusing notes about GNU Emacs 19.
6113
6114 * dired.el, dired-aux.el: Add Keywords header.
6115
6116 2001-08-28 Andre Spiegel <spiegel@gnu.org>
6117
6118 * vc.el (vc-revert-file): Call the backend even if the FILE's
6119 contents can be reverted locally; pass new arg CONTENTS-DONE
6120 down to the backend.
6121
6122 * vc-cvs.el, vc-rcs.el, vc-sccs.el (vc-*-revert-file): Handle new
6123 optional arg CONTENTS-DONE.
6124
6125 2001-08-28 Andrew Innes <andrewi@gnu.org>
6126
6127 * makefile.nt (DONTCOMPILE): Sync list from makefile.w32-in.
6128
6129 2001-08-28 Eli Zaretskii <eliz@is.elta.co.il>
6130
6131 * makefile.nt (install): Copy more *.el files.
6132
6133 2001-08-28 Gerd Moellmann <gerd@gnu.org>
6134
6135 * dired.el (dired-mode-map): Bind `y' to dired-show-file-type
6136 instead of `w' which is already in use.
6137
6138 * gs.el (gs-load-image): Use sleep-for.
6139 From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
6140
6141 2001-08-28 Miles Bader <miles@gnu.org>
6142
6143 * replace.el (query-replace-regexp-eval): Return args from
6144 `interactive' form in correct order.
6145
6146 2001-08-28 Eli Zaretskii <eliz@is.elta.co.il>
6147
6148 * mouse.el (mouse-buffer-menu): If the buffer menu is split by
6149 major modes, don't create panes for modes for which
6150 mouse-buffer-menu-alist returns an empty alist.
6151
6152 2001-08-28 Thien-Thi Nguyen <ttn@gnu.org>
6153
6154 * progmodes/hideshow.el: Update first-line description.
6155 Sync comments w/ maintainer version 5.31.
6156
6157 (hs-isearch-open): Default value now `code'.
6158 Fix docstring to use "code blocks" vs "comment blocks",
6159 as opposed to "block" vs "comment".
6160 (hs-flag-region): Accept `hs-isearch-open' value
6161 of `block' as synonymous w/ `code'.
6162 (hs-hide-block-at-point): For code blocks, pass `code'
6163 to `hs-flag-region' instead of `block'.
6164
6165 2001-08-28 Miles Bader <miles@gnu.org>
6166
6167 * comint.el (comint-next-prompt): Don't loop infinitely if
6168 {next,previous}-single-char-property-change returns its input
6169 position when the search fails.
6170
6171 2001-08-27 Miles Bader <miles@gnu.org>
6172
6173 * comint.el (comint-get-old-input-default): Don't signal an error
6174 if point is not on an input field; instead, return the current
6175 line (using `comint-bol' to skip any prompt, in case we're not
6176 using fields at all).
6177
6178 * man.el (Man-mode-line-format): Variable removed.
6179 (Man-mode): Change `mode-line-buffer-identification' instead of
6180 `mode-line-format'.
6181
6182 2001-08-27 Gerd Moellmann <gerd@gnu.org>
6183
6184 * mail/sendmail.el (mail-send-hook): Remove a duplicate defcustom.
6185 From Simon Josefsson <jas@extundo.com>.
6186
6187 2001-08-26 Eli Zaretskii <eliz@is.elta.co.il>
6188
6189 * textmodes/texnfo-upd.el: Remove dots and exclams at end of error
6190 messages. From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6191
6192 * emacs-lisp/levents.el: Specify FSF as Maintainer. From Pavel
6193 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6194
6195 * emacs-lisp/lselect.el: Ditto.
6196
6197 * hexl.el (hexl-insert-multibyte-char, hexl-insert-char):
6198 Remove periods from the end of error message strings.
6199 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6200
6201 * progmodes/antlr-mode.el: Add Keywords header. From Pavel
6202 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6203
6204 * net/telnet.el: Ditto.
6205
6206 2001-08-26 Gerd Moellmann <gerd@gnu.org>
6207
6208 * hl-line.el (hl-line-mode): Add args INIT-VALUE, LIGHTER, and
6209 KEYMAP to the call to define-minor-mode.
6210
6211 2001-08-24 Eli Zaretskii <eliz@is.elta.co.il>
6212
6213 * term/internal.el (IT-character-translations) <hebrew-iso8859-8>:
6214 Replace some of the undefined characters with emulations of bidi
6215 formatting characters and Niqud as per SI 1311-1.
6216 (IT-unicode-translations): Ditto.
6217 (IT-display-table-setup, IT-setup-unicode-display):
6218 Fill characters without translations with dos-unsupported-char-glyph.
6219
6220 2001-08-24 Simon Josefsson <jas@extundo.com>
6221
6222 * hl-line.el (hl-line-mode): Don't be a global mode.
6223 (global-hl-line-mode): New function.
6224
6225 2001-08-24 Gerd Moellmann <gerd@gnu.org>
6226
6227 * gs.el (gs-load-image): Wait for GHOSTVIEW window property
6228 being reset by Ghostscript. Don't kill the gs process.
6229 From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
6230
6231 2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
6232
6233 * term/mac-win.el: Require scroll-bar.
6234
6235 2001-08-23 Stefan Monnier <monnier@cs.yale.edu>
6236
6237 * ebuff-menu.el (electric-buffer-list): Use list-buffers-noselect.
6238
6239 2001-08-23 Eli Zaretskii <eliz@is.elta.co.il>
6240
6241 * hexl.el (hexl-insert-multibyte-char) New function.
6242 (hexl-quoted-insert, hexl-self-insert-command)
6243 (hexl-insert-hex-char, hexl-insert-decimal-char)
6244 (hexl-insert-octal-char): Call it instead of hexl-insert-char.
6245 Fix the doc strings accordingly.
6246 (hexl-insert-char): Reject characters whose code is above 255.
6247 Doc fix.
6248 (hexl-mode-map): Copy the global keymap instead of creating a
6249 sparse keymap, and bind all self-inserting characters to
6250 hexl-self-insert-command.
6251
6252 2001-08-22 Stefan Monnier <monnier@cs.yale.edu>
6253
6254 * wid-edit.el (text): Re-order docstring correctly.
6255
6256 * mail/sendmail.el (mail-mode): Use adaptive-fill-regexp.
6257
6258 * textmodes/fill.el (adaptive-fill-regexp): Admit tabs as well.
6259
6260 2001-08-22 Eli Zaretskii <eliz@is.elta.co.il>
6261
6262 * simple.el (line-number-mode): Mention the variable
6263 line-number-display-limit-width in the doc string.
6264
6265 2001-08-22 Gerd Moellmann <gerd@gnu.org>
6266
6267 * bindings.el (mode-line-unbury-buffer): Add EVENT parameter.
6268 Temporarily select EVENT's window for switching buffers.
6269 (mode-line-bury-buffer): New function.
6270 (mode-line-buffer-identification-keymap): Use it instead of
6271 bury-buffer. Bind down-mouse events to prevent global down-mouse
6272 events from shining through.
6273
6274 2001-08-21 Stefan Monnier <monnier@cs.yale.edu>
6275
6276 * newcomment.el (comment-beginning): Make sure the comment-start
6277 we found isn't a comment-end (in cases where confusion is possible).
6278
6279 2001-08-22 Miles Bader <miles@gnu.org>
6280
6281 * emacs-lisp/bytecomp.el (byte-compile-file): Remove TARGET-FILE
6282 before writing it, so that hard-links don't see new version.
6283
6284 2001-08-21 Gerd Moellmann <gerd@gnu.org>
6285
6286 * gs.el (gs-set-ghostview-colors-window-prop):
6287 Call x-change-window-property with 3rd arg FRAME.
6288 (gs-load-image): Wait for a previous Ghostscript process
6289 to complete before starting a new one.
6290
6291 * image.el (image-type-regexps): Make sure that the TIFF
6292 pattern is only matched at the beginning of a string.
6293 From Markus Rost <rost@math.ohio-state.edu>.
6294
6295 * international/swedish.el: Pre-Mule file removed. From Jonas
6296 Oberg <jonas@gnu.org>.
6297
6298 2001-08-20 Rajesh Vaidheeswarran <rv@gnu.org>
6299
6300 * whitespace.el (whitespace-abort-on-error): Add custom variable
6301 to whitespace to abort a write-file if whitespace is detected in file.
6302
6303 * whitespace.el (whitespace-write-file-hook): Hook to be called
6304 when writing a file. If `whitespace-abort-on-error' is set, the
6305 write will abort on detecting whitespaces.
6306 If `whitespace-auto-cleanup' is set, the file will be cleaned
6307 automatically prior to writing.
6308
6309 * whitespace.el (whitespace-buffer-search): Let's not insert bogus
6310 whitespaces in the error output!
6311
6312 * whitespace.el (whitespace-check-indent-whitespace): Defaults to
6313 `indent-tabs-mode', since the latter notes user preferences on
6314 TABs anyway.
6315
6316 * whitespace.el (whitespace-version): 3.1. All of the above issues
6317 were raised by Fran\e,Ag\e(Bois Pinard, which led to the fixes described.
6318
6319 2001-08-20 Gerd Moellmann <gerd@gnu.org>
6320
6321 * textmodes/texnfo-upd.el (texinfo-every-node-update): Remove
6322 some spaces from a message. From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6323
6324 * whitespace.el (whitespace-global-mode): Add autoload cookie.
6325
6326 2001-08-20 Alex Schroeder <alex@gnu.org>
6327
6328 * sql.el (sql-db2): Doc change.
6329
6330 2001-08-20 Alex Schroeder <alex@gnu.org>
6331
6332 * sql.el (sql-postgres): Add the database at the end of the
6333 parameters instead of at the beginning.
6334 (sql-postgres-options): Doc change.
6335
6336 2001-08-17 Gerd Moellmann <gerd@gnu.org>
6337
6338 * custom.el (defcustom): Doc fix.
6339
6340 2001-08-16 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6341
6342 * ps-mule.el (find-composition): Check if (char-after POS)
6343 returns a valid character.
6344
6345 2001-08-16 Eli Zaretskii <eliz@is.elta.co.il>
6346
6347 * hexl.el (hexl-mode, hexl-mode-exit): Adjust hexl-max-address and
6348 original-point for extra CR characters that are added/removed when
6349 the buffer is written/read whose EOL type is -dos.
6350
6351 2001-08-16 Miles Bader <miles@gnu.org>
6352
6353 * simple.el (line-move): Undo previous change.
6354
6355 * comint.el (comint-send-input): Add `inhibit-line-move-field-capture'
6356 property to input-terminating `boundary' overlays to avoid
6357 line-move wierdness.
6358
6359 2001-08-16 Gerd Moellmann <gerd@gnu.org>
6360
6361 * lazy-lock.el (lazy-lock-fontify-region): Widen the current
6362 buffer in a save-restriction. Under one test case with Ediff,
6363 window-scroll-functions are run with a window start that's
6364 temporarily outside of the restriction.
6365
6366 2001-08-16 Robert J. Chassell <bug-texinfo@gnu.org>
6367
6368 * textmodes/texnfo-upd.el: Update copyright notice, fix minor typos.
6369 (texinfo-find-lower-level-node, texinfo-find-higher-level-node)
6370 (texinfo-menu-locate-entry-p, texinfo-start-menu-description)
6371 (texinfo-update-menu-region-beginning)
6372 (texinfo-update-menu-region-end, texinfo-find-pointer): Add new
6373 command, @ifnottex, to regexps, so it is found.
6374
6375 2001-08-16 Andrew Innes <andrewi@gnu.org>
6376
6377 * makefile.nt (DONTCOMPILE): Omit bindings.el.
6378 (DONTCOMPILE): Omit sc.el.
6379
6380 * makefile.w32-in (DONTCOMPILE): Omit bindings.el.
6381 (DONTCOMPILE): Omit sc.el.
6382
6383 2001-08-16 Gerd Moellmann <gerd@gnu.org>
6384
6385 * replace.el (occur): Bind inhibit-read-only to t.
6386
6387 2001-08-16 Miles Bader <miles@gnu.org>
6388
6389 * simple.el (line-move): Pass an ESCAPE-FROM-EDGE argument of t when
6390 calling `constrain-to-field', to avoid problems with comint prompts.
6391
6392 2001-08-15 Gerd Moellmann <gerd@gnu.org>
6393
6394 * emacs-lisp/cl-indent.el (lisp-indent-defmethod): New function.
6395 (toplevel): Set it as `common-lisp-indent-function' for `defmethod'.
6396
6397 * ediff-mult.el (ediff-get-meta-info): Fix the condition
6398 of a while-loop.
6399
6400 * Makefile.in (DONTCOMPILE): Remove sc.el.
6401
6402 * Makefile.in (finder_setwins): Renamed from nonobsolete_setwins.
6403 Don't include term/.
6404
6405 * mail/sc.el: Moved to obsolete/.
6406
6407 2001-08-14 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6408
6409 * ps-print.el: Change error function arguments to follow Emacs
6410 message convention. Doc fix.
6411 (ps-print-version): New version number (6.5.4).
6412 (coding-system-for-write): Change declaration position to avoid
6413 XEmacs compilation gripes.
6414 (coding-system-for-read, buffer-file-coding-system):
6415 Declarations to avoid XEmacs compilation gripes.
6416
6417 * ps-mule.el: Doc fix.
6418 (ps-mule-encode-header-string): If STRING is not a string, replace
6419 STRING by empty string.
6420
6421 2001-08-14 Eli Zaretskii <eliz@is.elta.co.il>
6422
6423 * frame.el (show-trailing-whitespace): Doc fix.
6424
6425 2001-08-13 Eli Zaretskii <eliz@is.elta.co.il>
6426
6427 * desktop.el (desktop-save): Insert the coding: tag before
6428 desktop-header.
6429
6430 2001-08-13 Gerd Moellmann <gerd@gnu.org>
6431
6432 * Makefile.in (TAGS, TAGS-LISP): Remove "loaddefs.el" including
6433 its path from $els.
6434
6435 * image.el (image-jpeg-p): Fix call of substring.
6436
6437 2001-08-10 Gerd Moellmann <gerd@gnu.org>
6438
6439 * play/animate.el (animate-string): Doc fix. Use a buffer
6440 name with stars in it.
6441 (animate-sequence): New function.
6442 From Richard Stallman <rms@gnu.org>.
6443
6444 * frame.el (select-frame-set-input-focus): New function
6445 extracted from other-frame.
6446 (other-frame): Use it.
6447 (next-multiframe-window, previous-multiframe-window): Use it.
6448
6449 * isearch.el (isearch-other-meta-char): Don't switch to the
6450 buffer of a window clicked on, when the current buffer is
6451 in Isearch mode.
6452
6453 * image.el (image-jpeg-p): Test for APPn markers in the range
6454 #xe0..#xef.
6455
6456 2001-08-09 Gerd Moellmann <gerd@gnu.org>
6457
6458 * desktop.el (desktop-save): Don't use concat to form a file
6459 name, use expand-file-name.
6460
6461 * mouse.el (mouse-delete-window): Do nothing if frame has just
6462 one window.
6463
6464 * bindings.el (minor-mode-alist): Use mode-line-minor-mode-keymap
6465 for the minor mode name.
6466
6467 * view.el (toplevel): Use mode-line-minor-mode-keymap for the
6468 minor mode name.
6469
6470 * time.el (display-time-string-forms): Use make-mode-line-mouse-map
6471 instead of make-mode-line-mouse2-map.
6472
6473 * subr.el (add-minor-mode): Use mode-line-minor-mode-keymap for
6474 the minor mode name.
6475
6476 * emacs-lisp/easy-mmode.el (define-minor-mode):
6477 Use mode-line-minor-mode-keymap for the minor mode name.
6478
6479 * calendar/calendar.el (calendar-mode-line-format):
6480 Use make-mode-line-mouse-map instead of make-mode-line-mouse2-map.
6481
6482 * bindings.el (make-mode-line-mouse-map): Renamed from
6483 make-mode-line-mouse2-map. Take additional arg MOUSE.
6484 (mode-line-modified): Use mouse-3 instead of mouse-2.
6485 (mode-line-buffer-identification-keymap): Bind keys differently.
6486 (propertized-buffer-identification): Adapt help-echo to new bindings.
6487
6488 * bindings.el (mode-line-format): Specify help-echo for line
6489 number, column number and buffer-percent part of the mode-line.
6490
6491 * image.el (image-type-regexps): Allow whitespace at the start
6492 of the image data for XPM, XBM and Postscript, which are
6493 text files.
6494 (image-jpeg-p): Correct calculation of next field offset.
6495
6496 2001-08-08 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6497
6498 * battery.el: Fix typo.
6499
6500 2001-08-08 Gerd Moellmann <gerd@gnu.org>
6501
6502 * image.el (image-type-regexps): Allow predicates. Change the way
6503 JPEG images are recognized.
6504 (image-jpeg-p): New function.
6505 (image-type-from-data): Handle predicates in image-type-regexps.
6506
6507 * emacs-lisp/edebug.el (edebug-read-function): Fix handling of
6508 #:, #x, #o, and similar constructs.
6509
6510 2001-08-07 Gerd Moellmann <gerd@gnu.org>
6511
6512 * vc.el (vc-transfer-file): Fix malformed autoload cookie.
6513
6514 * emulation/viper-util.el (viper-file-checked-in-p): Use `and'
6515 instead of `progn'.
6516
6517 * tar-mode.el (tar-extract): Avoid generating a new buffer
6518 for each file visited. From Markus Rost <rost@math.ohio-state.edu>.
6519
6520 * textmodes/paragraphs.el (forward-sentence): Avoid building
6521 a regexp from sentence-end. From Kenichi Handa <handa@etl.go.jp>.
6522
6523 * progmodes/executable.el (executable-set-magic):
6524 If executable-find returns a quoted file name, unquote it before
6525 inserting it.
6526
6527 * image.el (image-type-regexps): For JPEG files, use a regexp
6528 derived from the JFIF spec.
6529
6530 * image.el (image-type-regexps): Use `\`' instead of `^' in
6531 most regular expressions.
6532
6533 2001-08-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6534
6535 * play/animate.el: Re-insert a reference to re-inserted function.
6536
6537 2001-08-06 Gerd Moellmann <gerd@gnu.org>
6538
6539 * help.el (describe-function-1): Use find-function-search-for-symbol
6540 instead of find-function-noselect because the latter follows aliases.
6541
6542 * play/animate.el (animate-birthday-present): Re-insert.
6543
6544 * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
6545 Handle old-style menu definitions.
6546
6547 2001-08-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6548
6549 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/page.el,
6550 * textmodes/text-mode.el, textmodes/two-column.el: Keywords added.
6551
6552 * play/studly.el, mail/unrmail.el, emacs-lisp/lucid.el,
6553 * emulation/pc-mode.el, diff.el, textmodes/fill.el, abbrev.el,
6554 * add-log.el, faces.el, mail/sc.el: Specify FSF as Maintainer.
6555
6556 2001-08-05 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6557
6558 * textmodes/tildify.el: Milan Zamazal has new address.
6559
6560 2001-08-03 Gerd Moellmann <gerd@gnu.org>
6561
6562 * custom.el (custom-set-variables): Don't test `custom-requests'
6563 properties, check the third element of the options passed to
6564 custom-set-variables instead.
6565
6566 * info.el (info-insert-file-contents): Use info-file-exists-p
6567 instead of file-exists-p.
6568
6569 * play/zone.el (zone-pgm-stress): Use unwind-protect to make sure
6570 the mode-line face is restored. Fix several bugs.
6571
6572 * replace.el (perform-replace): Doc fix.
6573
6574 2001-08-02 Francesco Potorti` <pot@gnu.org>
6575
6576 * uniquify.el (uniquify-ref-base, uniquify-ref-filename)
6577 (uniquify-ref-buffer, uniquify-ref-proposed): New functions.
6578 (uniquify-fix-item-base, uniquify-fix-item-filename)
6579 (uniquify-fix-item-buffer, uniquify-fix-item-proposed): Deleted.
6580 Callers changed.
6581 (uniquify-set-proposed): Changed to work with a vector item.
6582 (uniquify-rationalize-file-buffer-names): Use a list of arrays for
6583 the fix list, and a list of strings for the non-file buffer
6584 names. Both changes reduce consing.
6585 (uniquify-rationalize-a-list): Local variable renaming.
6586 (uniquify-rationalize-conflicting-sublist): Use member instead of
6587 assoc.
6588 (uniquify-rename-buffer): Use unless instead of if not.
6589
6590 2001-08-02 Gerd Moellmann <gerd@gnu.org>
6591
6592 * recentf.el (recentf-dump-variable): Handle a value of nil correctly.
6593
6594 * custom.el (custom-set-variables): Set options with :require
6595 clauses last.
6596
6597 * custom.el (defcustom): Doc fix.
6598
6599 * Makefile.in (TAGS, TAGS-LISP): Exclude loaddefs.el.
6600
6601 2001-08-01 Eli Zaretskii <eliz@is.elta.co.il>
6602
6603 * man.el (man): Mention Man-switches in the doc string.
6604 (Man-switches): Mention -a in the doc string.
6605
6606 * textmodes/ispell.el (ispell-alternate-dictionary):
6607 Add /usr/share/lib/dict/words, for Irix.
6608
6609 * bindings.el: Bind shifted and control-shifted kp-* keys to the
6610 corresponding non-kp keys. Suggested by Stephen Gildea
6611 <gildea@stop.mail-abuse.org>.
6612
6613 2001-08-01 Francesco Potorti` <pot@gnu.org>
6614
6615 * uniquify.el: These changes correct a corner case that the old
6616 code managed correctly.
6617 (uniquify-fix-item-proposed): Renamed from
6618 uniquify-fix-item-min-proposed.
6619 (uniquify-set-proposed): New function.
6620 (uniquify-rationalize-file-buffer-names): Code reshuffled for
6621 clarity and speed.
6622 (uniquify-item-greaterp): Substitutes uniquify-item-lessp.
6623 This is equivalent to what the old code did.
6624 (uniquify-rationalize-a-list): Never recompute the proposed
6625 name. Sort the conflicting sublist before rationalising it: this
6626 is equivalent to what the old code did, but one directory element
6627 at a time, and only when necessary.
6628 (uniquify-rationalize-conflicting-sublist): Recompute here the
6629 proposed name.
6630
6631 2001-08-01 Gerd Moellmann <gerd@gnu.org>
6632
6633 * play/animate.el: Add Keywords and Maintainer. Remove a
6634 reference to a removed function.
6635
6636 * play/animate.el (animate-string): Handle case that the string is
6637 longer than the window is wide.
6638
6639 2001-07-31 Gerd Moellmann <gerd@gnu.org>
6640
6641 * desktop.el (desktop-save): Bind coding-system-for-write to
6642 `emacs-mule' for write-region.
6643
6644 * delsel.el (delete-selection-pre-hook): Don't set this-command
6645 to `ignore' if the region is empty.
6646
6647 * international/mule.el (set-keyboard-coding-system):
6648 Set keyboard-coding-system.
6649
6650 * smerge-mode.el (smerge-mode): Check if `font-lock-mode' is bound
6651 before accessing it.
6652
6653 2001-07-30 Andreas Schwab <schwab@suse.de>
6654
6655 * menu-bar.el (toggle-highlight-paren-mode):
6656 Use `(show-paren-mode)' as body.
6657
6658 2001-07-30 Andre Spiegel <spiegel@gnu.org>
6659
6660 * vc.el (vc-checkout-hook): New hook.
6661 (vc-checkout): Run it.
6662
6663 2001-07-30 Eli Zaretskii <eliz@is.elta.co.il>
6664
6665 * progmodes/make-mode.el (makefile-macroassign-regex):
6666 Recognize the ?= operator. From Jonathan Kamens <jik@curl.com>.
6667
6668 2001-07-30 Gerd Moellmann <gerd@gnu.org>
6669
6670 * vc.el (vc-switch-backend): Fix autoload cookie.
6671
6672 * desktop.el (desktop-save): Add `-*- coding: emacs-mule -*-' to
6673 the desktop file.
6674
6675 2001-07-30 Simon Josefsson <jas@extundo.com>
6676
6677 * mail/mail-utils.el (mail-strip-quoted-names): Replace text
6678 literally. Reported by Sean Rima <sean@**Delete**.tcob1.net>.
6679
6680 2001-07-27 Gerd Moellmann <gerd@gnu.org>
6681
6682 * emacs-lisp/lisp-mode.el (last-sexp-setup-props): New function.
6683 (last-sexp-toggle-display): Renamed from last-sexp-print.
6684 (last-sexp-toggle-display, eval-last-sexp-1):
6685 Use last-sexp-setup-props.
6686
6687 * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button):
6688 New user-options.
6689 (mouse-wheel-change-button): New function.
6690 (mouse-wheel-mode): Use mouse-wheel-{up,down}-button.
6691 (mwheel-scroll): Ditto.
6692
6693 2001-07-26 Gerd Moellmann <gerd@gnu.org>
6694
6695 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Don't search for
6696 `...', compare with unabbreviated printed representation instead.
6697 (last-sexp-print): Bind print-length and print-level to nil.
6698
6699 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Look for a `...'
6700 before assigning text properties. Make properties rear-nonsticky.
6701
6702 * emacs-lisp/lisp-mode.el (last-sexp-print): New function.
6703 (eval-last-sexp-1): Give printed text a `keymap' property and bind
6704 <mouse-2> and <RET> in that map to a function printing the
6705 unabbreviated value.
6706
6707 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): If standard-output
6708 is a buffer, put a text property `printed-value' on the printed
6709 representation, with the Lisp object printed as value.
6710
6711 2001-07-25 Eli Zaretskii <eliz@is.elta.co.il>
6712
6713 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-defun):
6714 Mention the effect of eval-expression-print-length and
6715 eval-expression-print-level in the doc strings. Suggested by
6716 Kevin Gallagher <kevingal@onramp.net>.
6717
6718 2001-07-25 Gerd Moellmann <gerd@gnu.org>
6719
6720 * xt-mouse.el (xterm-mouse-event): Recognize control sequences
6721 for buttons > 3.
6722 (xterm-mouse-translate): Handle the case that we don't get a
6723 down-event.
6724
6725 * emacs-lisp/find-func.el (find-function-regexp):
6726 Add easy-mmode-define-global-mode to the regexp. Allow newlines
6727 in front of the function name.
6728
6729 * isearch.el (isearch-other-meta-char): Fix last change.
6730
6731 * isearch.el (isearch-other-meta-char): Don't modify mode-line and
6732 similar events for which fake prefix keys are generated. It's no
6733 longer necessary since read_key_sequence doesn't modify these
6734 events for internal purposes anymore.
6735
6736 * files.el (auto-mode-alist): Use nroff-mode for files ending
6737 in `.9'. From Assar Westerlund <assar@stacken.kth.se>.
6738
6739 2001-07-24 Eli Zaretskii <eliz@is.elta.co.il>
6740
6741 * avoid.el (mouse-avoidance-too-close-p): If the frame lacks a
6742 tool-bar-lines parameter, behave as if its value were zero.
6743 (mouse-avoidance-set-pointer-shape): Don't do anything if
6744 x-pointer-shape is not boundp.
6745
6746 2001-07-23 Francesco Potorti` <pot@gnu.org>
6747
6748 * uniquify.el: Overall speedup changes when using many buffers.
6749 (uniquify-fix-item-base, uniquify-fix-item-filename)
6750 (uniquify-fix-item-buffer): Changed defmacro to defalias (cosmetic).
6751 (uniquify-fix-item-unrationalized-buffer): Deleted: was the fourth
6752 place in the item, but was never used.
6753 (uniquify-fix-item-min-proposed): New defalias: the fourth place
6754 in the item is now used as cache for the proposed name.
6755 (uniquify-rationalize-file-buffer-names): Move computation made on
6756 newbuffile out of the loop, in the newbuffile-nd local var.
6757 Use dolist (cosmetic change). Compute the proposed name for the most
6758 common case and cache it in the fourth place in the item.
6759 (uniquify-rationalize-file-buffer-names): Used to return a a list
6760 of buffer whose name was changed, but that return value was never used.
6761 (uniquify-item-lessp): Replaces uniquify-filename-lessp, works on
6762 the cached proposed name, does much less consing and is quicker.
6763 (uniquify-filename-lessp): Deleted.
6764 (uniquify-rationalize-a-list): Use dolist (cosmetic change).
6765 Do not bind locally the uniquify-possibly-resolvable flag. Use the
6766 cached proposed name is possible.
6767 (uniquify-get-proposed-name): Arguments changed, callers changed.
6768 (uniquify-rationalize-conflicting-sublist): Explicitely reset the
6769 uniquify-possibly-resolvable flag, which is no more bound locally.
6770 (uniquify-rename-buffer): Do not set the old unrationalised-buffer
6771 flag, which does not exist any more.
6772
6773 2001-07-23 Eli Zaretskii <eliz@is.elta.co.il>
6774
6775 * term/internal.el (IT-unicode-translations): Fix the appearance of
6776 "6`".
6777
6778 * progmodes/compile.el (compile-internal): If EMACS is already
6779 defined in the environment, don't override its value.
6780
6781 2001-07-23 Gerd Moellmann <gerd@gnu.org>
6782
6783 * play/fortune.el: Undo change of 2001-07-13.
6784 Fix autoload cookies. Add types to defcustoms.
6785 (fortune) <defgroup>: Add :link.
6786 (fortune-from-region): Use eq, not eql.
6787 From Dave Love <fx@gnu.org>.
6788
6789 * play/animate.el (animate-birthday-present): Function removed.
6790
6791 * play/animate.el: New file.
6792
6793 2001-07-22 Eli Zaretskii <eliz@is.elta.co.il>
6794
6795 * startup.el (normal-top-level-add-subdirs-to-load-path):
6796 On Windows, put into normal-top-level-add-subdirs-inode-list the
6797 canonicalized names of the directories instead of inode numbers.
6798
6799 2001-07-21 Michael Kifer <kifer@cs.sunysb.edu>
6800
6801 * ediff-util.el: Copyright years.
6802 (ediff-choose-syntax-table): New function.
6803 (ediff-setup): Use ediff-choose-syntax-table.
6804 (ediff-file-checked-out-p,ediff-file-checked-in-p): Check if
6805 vc-state is available.
6806 (ediff-make-temp-file): Use ediff-coding-system-for-write.
6807
6808 * ediff-init.el (ediff-with-syntax-table): New macro, uses
6809 with-syntax-table.
6810 (ediff-coding-system-for-read): From ediff-diff.el
6811 (ediff-coding-system-for-write): New variable.
6812 (ediff-highest-priority): Fixed the bug having to do with disappearing
6813 overlays.
6814 (ediff-file-remote-p): Use file-remote-p, if available.
6815 (ediff-listable-file): New function.
6816 (ediff-file-attributes): Use ediff-listable-file.
6817
6818 * ediff-mult.el (ediff-meta-insert-file-info1):
6819 Use ediff-listable-file.
6820
6821 * ediff-ptch.el (ediff-prompt-for-patch-file):
6822 Use ediff-coding-system-for-read.
6823 (ediff-patch-file-internal): Use ediff-coding-system-for-write.
6824
6825 * ediff-diff.el (ediff-coding-system-for-read): Moved to ediff-init.el.
6826 (ediff-match-diff3-line,ediff-get-diff3-group): Improved pattern.
6827
6828 * ediff.el: Date of last update, copyright years.
6829
6830 * ediff-wind (ediff-setup-control-frame): Nill->nil.
6831
6832 * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
6833 of Scott Bronson.
6834 (ex-cmd-assoc,ex-compile,ex-cmd-one-letr): New functions.
6835 (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
6836 Deleted functions.
6837 (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
6838 ex-token-list.
6839 (viper-get-ex-address-subr): Convert registers to char data type.
6840
6841 * viper-util.el (viper-int-to-char,viper-char-equal): New functions.
6842 (viper-memq-char): Use viper-int-to-char.
6843 (viper-file-checked-in-p): Use vc-locking-user, if vc doesn't have
6844 vc-locking-state.
6845 (viper-read-key): Use viper-read-key-sequence.
6846
6847 * viper.el (viper-major-mode-modifier-list):
6848 Added inferior-emacs-lisp-mode.
6849 (this-major-mode-requires-vi-state): New function that uses simple
6850 heuristics to decide if vi state is appropriate.
6851 (set-viper-state-in-major-mode): Use this-major-mode-requires-vi-state.
6852 (viper-non-hook-settings): Don't advise read-key-sequence.
6853 (viper-read-key-sequence): New function that replaces the
6854 previously used advice to read-key-sequence.
6855
6856 * viper-cmd.el (viper-test-com-defun,viper-exec-change)
6857 (viper-exec-Change,viper-execute-com,viper-insert,viper-append)
6858 (viper-Append,viper-Insert,viper-open-line,viper-Open-line)
6859 (viper-open-line-at-point,viper-substitute,viper-overwrite)
6860 (viper-replace-char-subr,viper-forward-word,viper-forward-Word):
6861 Got rid of the negative character hack.
6862 (viper-escape-to-state,viper-replace-state-exit-cmd):
6863 Use viper-read-key-sequence.
6864 (viper-envelop-ESC-key): No need for ad-get-orig-definition.
6865 (viper-minibuffer-standard-hook,viper-read-string-with-history):
6866 Don't override existing minibuffer-setup-hook.
6867 (viper-mark-point,viper-goto-mark-subr,viper-brac-function):
6868 Convert registers to char data type.
6869 (viper-autoindent): Use viper-indent-line.
6870
6871 * viper-keym.el: Use viper-exec-key-in-emacs.
6872
6873 2001-07-20 Stefan Monnier <monnier@cs.yale.edu>
6874
6875 * server.el (server-visit-files): Fix variable name typo.
6876
6877 2001-07-20 Gerd Moellmann <gerd@gnu.org>
6878
6879 * simple.el (delete-trailing-whitespace): Save match data
6880 around looking-at. From Markus Rost <rost@math.ohio-state.edu>.
6881
6882 2001-07-19 Stefan Monnier <monnier@cs.yale.edu>
6883
6884 * progmodes/compile.el (compilation-parse-errors): `linenum' might
6885 return a this-error using the alternative format (a pair of markers).
6886
6887 2001-07-19 Gerd Moellmann <gerd@gnu.org>
6888
6889 * font-lock.el (c++-keywords): Add Standard C++ operator names.
6890
6891 * mail/mh-utils.el (mh-find-progs): Also search in `lib'.
6892 From Mats Bengtsson <mats.bengtsson@s3.kth.se>,
6893
6894 2001-07-17 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6895
6896 * international/iso-transl.el: Fix typo in the header of the file.
6897
6898 * textmodes/picture.el (picture): Doc fix.
6899
6900 * international/ja-dic-cnv.el (skkdic-convert): Some fixes to
6901 follow coding conventions in generated files.
6902
6903 2001-07-17 Eli Zaretskii <eliz@is.elta.co.il>
6904
6905 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
6906 (tool-bar-add-item): Don't call image-related primitives if the
6907 display doesn't support images.
6908
6909 * frame.el (display-images-p): New function.
6910
6911 2001-07-17 Gerd Moellmann <gerd@gnu.org>
6912
6913 * server.el (server-visit-files): Handle the case the specified
6914 column number is <= 0.
6915
6916 2001-07-17 Jan Nieuwenhuizen <jan@netland.nl>
6917
6918 * startup.el (command-line-1): Add support for +LINE:COLUMN
6919 command line argument.
6920
6921 2000-07-17 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6922
6923 * server.el (server-process-filter, server-visit-files):
6924 Add support for +LINE:COLUMN style emacsclient calls.
6925
6926 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6927
6928 * emacs-lisp/easy-mmode.el: Add Keywords header.
6929
6930 * play/pong.el: Author has new address.
6931
6932 * play/landmark.el: Author is no more reachable.
6933
6934 * play/handwrite.el: Author is no more reachable.
6935
6936 2001-07-17 Stefan Monnier <monnier@cs.yale.edu>
6937
6938 * term/sun.el (ignore-key, sun-esc-bracket, meta-flag): Remove.
6939 (sun-raw-prefix): Replace t3, t4, t6, and t7 with f3, f4, f6 and f7.
6940 Complete bindings for F<1..12> keys.
6941 (global-map): Remove `undo' binding (already in the default).
6942 Replace `t<n>' bindings with `f<n>' bindings.
6943
6944 2001-07-16 Stefan Monnier <monnier@cs.yale.edu>
6945
6946 * progmodes/tcl.el (tcl-fill-mode-map): Use tcl-indent-exp.
6947 (tcl-mode): Use tcl-add-log-defun.
6948 (tcl-indent-line): Use tcl-calculate-indent.
6949 (tcl-calculate-indent): Renamed from calculate-tcl-indent.
6950 (tcl-indent-exp): Renamed from indent-tcl-exp.
6951 (tcl-add-log-defun): Renamed from add-log-tcl-defun.
6952 (tcl-indent-for-comment): Call comment-indent-function properly
6953 and handle the case where it returns nil.
6954
6955 2001-07-16 Gerd Moellmann <gerd@gnu.org>
6956
6957 * calendar/cal-islam.el (calendar-goto-islamic-date):
6958 Remove autoload cookie.
6959
6960 * calendar/calendar.el (calendar-goto-islamic-date):
6961 Add call to autoload.
6962
6963 2001-07-16 Stefan Monnier <monnier@cs.yale.edu>
6964
6965 * progmodes/ada-mode.el (ada-mode): Avoid unneeded version checks.
6966 Don't change compile-auto-highlight globally.
6967 Don't bother with `font-lock-defaults' property since XEmacs
6968 also understands the `font-lock-defaults' variable.
6969 Use make-local-variable rather than make-variable-buffer-local.
6970 Don't `defconst' comment-indent-function: keep the default.
6971 Call easy-menu-add unconditionally.
6972 (ada-create-keymap): Use [(shift tab)] so it works on both Emacsen.
6973 (ada-create-menu): Use :included for Emacs as well.
6974
6975 * vc.el (vc-do-command): Autoload.
6976
6977 * progmodes/ada-xref.el (ada-xref-initialize): Fix call to add-hook.
6978
6979 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6980
6981 * ps-print.el: Fix Author: header.
6982
6983 2001-07-16 Gerd Moellmann <gerd@gnu.org>
6984
6985 * mouse-sel.el (mouse-sel-bindings): Instead of unbinding
6986 mouse-1 etc., bind them to `ignore'.
6987
6988 * eshell/esh-mode.el (eshell-send-invisible): Renamed from
6989 send-invisible, which is already defined in Comint.
6990 (eshell-watch-for-password-prompt): Use it.
6991
6992 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
6993
6994 * which-func.el (which-func-mode): Doc fix.
6995
6996 * align.el, apropos.el, autorevert.el, battery.el, bookmark.el,
6997 * calculator.el, calendar/todo-mode.el, complete.el, cus-dep.el,
6998 * cus-edit.el, cus-face.el, delim-col.el, dos-fns.el, double.el,
6999 * edmacro.el, elide-head.el, emacs-lisp/autoload.el,
7000 * emacs-lisp/checkdoc.el, emacs-lisp/cl-compat.el,
7001 * emacs-lisp/cl-specs.el, emacs-lisp/copyright.el,
7002 * emacs-lisp/cust-print.el, emacs-lisp/easy-mmode.el,
7003 * emacs-lisp/elint.el, emacs-lisp/ewoc.el, emacs-lisp/find-func.el,
7004 * emacs-lisp/pp.el, emacs-lisp/re-builder.el, emacs-lisp/shadow.el,
7005 * emacs-lisp/sregex.el, emerge.el, emulation/edt-lk201.el,
7006 * emulation/edt-mapper.el, emulation/edt-pc.el,
7007 * emulation/edt-vt100.el, emulation/edt.el, emulation/pc-select.el,
7008 * emulation/tpu-edt.el, emulation/tpu-extras.el,
7009 * emulation/tpu-mapper.el, emulation/vip.el, expand.el, finder.el,
7010 * foldout.el, follow.el, format.el, forms-d2.el, forms.el,
7011 * generic.el, hi-lock.el, hilit-chg.el, hippie-exp.el, info-look.el,
7012 * international/isearch-x.el, international/iso-cvt.el,
7013 * international/ogonek.el, international/quail.el,
7014 * international/utf-8.el, jit-lock.el, language/devan-util.el,
7015 * language/devanagari.el, language/ethio-util.el,
7016 * language/ethiopic.el, language/european.el, language/indian.el,
7017 * language/romanian.el, language/tibet-util.el, language/tibetan.el,
7018 * mail/feedmail.el, mail/footnote.el, mail/mail-hist.el,
7019 * mail/mailheader.el, mail/mspools.el, mail/supercite.el,
7020 * mouse-sel.el, net/browse-url.el, net/net-utils.el,
7021 * net/quickurl.el, net/snmp-mode.el, net/webjump.el,
7022 * net/zone-mode.el, pcomplete.el, progmodes/antlr-mode.el,
7023 * progmodes/autoconf.el, progmodes/cmacexp.el,
7024 * progmodes/cperl-mode.el, progmodes/cpp.el, progmodes/cwarn.el,
7025 * progmodes/delphi.el, progmodes/ebnf-bnf.el, progmodes/ebnf-iso.el,
7026 * progmodes/ebnf-otz.el, progmodes/ebnf-yac.el,
7027 * progmodes/ebnf2ps.el, progmodes/executable.el,
7028 * progmodes/fortran.el, progmodes/idlw-shell.el,
7029 * progmodes/idlw-toolbar.el, progmodes/idlwave.el,
7030 * progmodes/m4-mode.el, progmodes/mantemp.el,
7031 * progmodes/meta-mode.el, progmodes/octave-inf.el,
7032 * progmodes/ps-mode.el, progmodes/scheme.el, progmodes/simula.el,
7033 * progmodes/tcl.el, ps-bdf.el, ps-mule.el, ps-print.el, recentf.el,
7034 * rect.el, regi.el, rsz-mini.el, s-region.el, scroll-all.el,
7035 * shadowfile.el, speedbar.el, term/AT386.el, term/internal.el,
7036 * term/iris-ansi.el, term/mac-win.el, term/tvi970.el,
7037 * textmodes/artist.el, textmodes/flyspell.el, textmodes/ispell.el,
7038 * textmodes/page-ext.el, textmodes/refer.el, textmodes/texinfmt.el,
7039 * textmodes/texinfo.el, textmodes/texnfo-upd.el,
7040 * textmodes/two-column.el, time-stamp.el, timezone.el,
7041 * toolbar/tool-bar.el, vc-rcs.el, vc-sccs.el, view.el, w32-fns.el,
7042 * which-func.el, whitespace.el, wid-browse.el, widget.el,
7043 * windmove.el, woman.el, xt-mouse.el: Some fixes to follow coding
7044 conventions.
7045
7046 2001-07-16 Gerd Moellmann <gerd@gnu.org>
7047
7048 * simple.el (set-variable): Require 'cus-edit' instead of
7049 `wid-edit', so that the Custom widgets get defined.
7050
7051 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7052
7053 * allout.el: A fix to follow coding conventions.
7054
7055 * find-lisp.el: A fix to follow coding conventions.
7056
7057 * term/w32-win.el: A fix to follow coding conventions.
7058
7059 * textmodes/sgml-mode.el: A fix to follow coding conventions.
7060
7061 * term/xterm.el: A fix to follow coding conventions.
7062
7063 * term/news.el: A fix to follow coding conventions.
7064
7065 * emulation/vi.el: A fix to follow coding conventions, Maintainer:
7066 header line fixed.
7067
7068 * sun-curs.el: Fix Maintainer: header line.
7069
7070 * emacs-lisp/easymenu.el: Address of the author added.
7071
7072 2001-07-16 Gerd Moellmann <gerd@gnu.org>
7073
7074 * dired.el (dired-insert-set-properties): Fix invalid mouse-face
7075 property.
7076
7077 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7078
7079 * play/5x5.el, play/decipher.el, play/dunnet.el, play/fortune.el,
7080 * play/gamegrid.el, play/handwrite.el, play/landmark.el,
7081 * play/morse.el, play/pong.el, play/snake.el, play/tetris.el:
7082 Some fixes to follow coding conventions.
7083
7084 2001-07-16 Gerd Moellmann <gerd@gnu.org>
7085
7086 * which-func.el (which-func-mode): Doc fix.
7087
7088 2001-07-15 Stefan Monnier <monnier@cs.yale.edu>
7089
7090 * net/rcompile.el (remote-compile): Use make-local-variable.
7091
7092 * progmodes/hideshow.el (hs-minor-mode): Use make-local-variable.
7093
7094 * progmodes/make-mode.el (makefile-browse): Use make-local-variable.
7095
7096 * mail/reporter.el (reporter-submit-bug-report):
7097 Don't abuse make-variable-buffer-local. Fix call to add-hook.
7098
7099 2001-07-15 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7100
7101 * calendar/cal-china.el, calendar/cal-coptic.el,
7102 * calendar/cal-dst.el, calendar/cal-french.el,
7103 * calendar/cal-hebrew.el, calendar/cal-islam.el,
7104 * calendar/cal-iso.el, calendar/cal-julian.el,
7105 * calendar/cal-mayan.el, calendar/cal-persia.el,
7106 * calendar/cal-tex.el, calendar/calendar.el, calendar/diary-lib.el,
7107 * calendar/lunar.el, calendar/solar.el, ediff-diff.el,
7108 * ediff-help.el, ediff-hook.el, ediff-init.el, ediff-merg.el,
7109 * ediff-ptch.el, ediff-util.el, ediff-vers.el, ediff-wind.el,
7110 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
7111 * net/eudc-vars.el, net/ldap.el, pcvs-defs.el, pcvs-info.el,
7112 * pcvs-parse.el, pcvs-util.el, pcvs.el, progmodes/ada-mode.el,
7113 * progmodes/ada-prj.el, progmodes/ada-stmt.el,
7114 * progmodes/ada-xref.el, progmodes/cc-align.el,
7115 * progmodes/cc-bytecomp.el, progmodes/cc-cmds.el,
7116 * progmodes/cc-defs.el, progmodes/cc-engine.el,
7117 * progmodes/cc-langs.el, progmodes/cc-menus.el,
7118 * progmodes/cc-styles.el, progmodes/cc-vars.el,
7119 * textmodes/reftex-auc.el, textmodes/reftex-cite.el,
7120 * textmodes/reftex-dcr.el, textmodes/reftex-global.el,
7121 * textmodes/reftex-index.el, textmodes/reftex-parse.el,
7122 * textmodes/reftex-ref.el, textmodes/reftex-sel.el,
7123 * textmodes/reftex-toc.el, textmodes/reftex-vars.el,
7124 * textmodes/reftex.el: Some fixes to follow coding
7125 conventions in Elisp files with known maintainers.
7126
7127 * emulation/viper.el: A fix to follow coding conventions.
7128
7129 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el,
7130 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el,
7131 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el,
7132 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el,
7133 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el,
7134 * eshell/em-xtra.el, eshell/esh-arg.el, eshell/esh-cmd.el,
7135 * eshell/esh-ext.el, eshell/esh-io.el, eshell/esh-maint.el,
7136 * eshell/esh-mode.el, eshell/esh-module.el, eshell/esh-opt.el,
7137 * eshell/esh-proc.el, eshell/esh-test.el, eshell/esh-util.el,
7138 * eshell/esh-var.el, eshell/eshell.el: Some fixes to follow coding
7139 conventions in Elisp files.
7140
7141 * composite.el, diff.el, emacs-lisp/levents.el,
7142 * emacs-lisp/lmenu.el, emacs-lisp/lselect.el, emacs-lisp/lucid.el,
7143 * emulation/pc-mode.el, emulation/viper-cmd.el,
7144 * emulation/viper-ex.el, emulation/viper-init.el,
7145 * emulation/viper-keym.el, emulation/viper-macs.el,
7146 * emulation/viper-mous.el, emulation/viper-util.el,
7147 * emulation/viper.el, forms-pass.el, international/ccl.el,
7148 * international/characters.el, international/encoded-kb.el,
7149 * international/fontset.el, international/ja-dic-cnv.el,
7150 * international/ja-dic-utl.el, international/kinsoku.el,
7151 * international/kkc.el, international/mule-cmds.el,
7152 * international/mule-diag.el, international/mule-util.el,
7153 * international/mule.el, international/titdic-cnv.el,
7154 * language/china-util.el, language/chinese.el,
7155 * language/cyril-util.el, language/cyrillic.el, language/english.el,
7156 * language/greek.el, language/hebrew.el, language/japan-util.el,
7157 * language/japanese.el, language/korea-util.el, language/korean.el,
7158 * language/lao-util.el, language/lao.el, language/misc-lang.el,
7159 * language/slovak.el, language/thai-util.el, language/thai.el,
7160 * language/viet-util.el, language/vietnamese.el, mail/mh-comp.el,
7161 * mail/mh-e.el, mail/mh-funcs.el, mail/mh-mime.el, mail/mh-pick.el,
7162 * mail/mh-seq.el, mail/mh-utils.el, mail/sc.el, mail/unrmail.el,
7163 * midnight.el, patcomp.el, pcmpl-cvs.el, pcmpl-gnu.el,
7164 * pcmpl-linux.el, pcmpl-rpm.el, pcmpl-unix.el, play/studly.el,
7165 * play/zone.el, replace.el, select.el, subr.el, talk.el, term.el,
7166 * term/apollo.el, term/bobcat.el, term/linux.el, term/lk201.el,
7167 * term/vt102.el, term/vt125.el, term/vt200.el, term/vt201.el,
7168 * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el,
7169 * term/vt400.el, term/vt420.el, x-apollo.el, x-menu.el: Some fixes
7170 to follow coding conventions in files without maintainer or in files
7171 with clear maintainer (but without Maintainer header stating so).
7172
7173 * emacs-lisp/elp.el: A fix to follow coding conventions.
7174
7175 * gnus/binhex.el, gnus/binhex.el, gnus/earcon.el,
7176 * gnus/gnus-agent.el, gnus/gnus-art.el, gnus/gnus-audio.el,
7177 * gnus/gnus-logic.el, gnus/gnus-ml.el, gnus/gnus-mlspl.el,
7178 * gnus/gnus-setup.el, gnus/gnus-srvr.el, gnus/gnus-sum.el,
7179 * gnus/gnus-uu.el, gnus/gnus-vm.el, gnus/ietf-drums.el,
7180 * gnus/mail-parse.el, gnus/mail-prsvr.el, gnus/mail-source.el,
7181 * gnus/mm-bodies.el, gnus/mm-decode.el, gnus/mm-encode.el,
7182 * gnus/mm-partial.el, gnus/mm-util.el, gnus/mm-uu.el,
7183 * gnus/mm-view.el, gnus/mml.el, gnus/nnimap.el, gnus/nnoo.el,
7184 * gnus/parse-time.el, gnus/rfc1843.el, gnus/rfc2045.el,
7185 * gnus/rfc2047.el, gnus/rfc2104.el, gnus/rfc2231.el,
7186 * gnus/time-date.el, gnus/uudecode.el: Some fixes to follow coding
7187 conventions in files from Gnus.
7188
7189 * abbrevlist.el, array.el, buff-menu.el, calendar/appt.el,
7190 * case-table.el, cdl.el, cmuscheme.el, compare-w.el, completion.el,
7191 * custom.el, derived.el, dired-aux.el, disp-table.el, dos-vars.el,
7192 * echistory.el, electric.el, emacs-lisp/authors.el,
7193 * emacs-lisp/backquote.el, emacs-lisp/byte-opt.el,
7194 * emacs-lisp/bytecomp.el, emacs-lisp/float.el, emacs-lisp/gulp.el,
7195 * emacs-lisp/helper.el, emacs-lisp/lisp-mode.el,
7196 * emacs-lisp/regexp-opt.el, emulation/mlconvert.el,
7197 * emulation/mlsupport.el, env.el, fast-lock.el, find-dired.el,
7198 * float-sup.el, frame.el, gnus/gnus-mule.el, gnus/pop3.el, gs.el,
7199 * gud.el, help-macro.el, hexl.el, imenu.el, info.el, informat.el,
7200 * international/codepage.el, international/iso-ascii.el,
7201 * international/iso-insert.el, international/iso-transl.el,
7202 * international/swedish.el, isearch.el, jka-compr.el, kermit.el,
7203 * lazy-lock.el, ledit.el, loadup.el, lpr.el, ls-lisp.el, macros.el,
7204 * mail/blessmail.el, mail/emacsbug.el, mail/mail-extr.el,
7205 * mail/mailabbrev.el, mail/mailpost.el, mail/rmail.el,
7206 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmsc.el,
7207 * mail/rmailout.el, mail/rmailsort.el, mail/rmailsum.el,
7208 * mail/vms-pmail.el, man.el, map-ynp.el, menu-bar.el, misc.el,
7209 * msb.el, net/ange-ftp.el, net/goto-addr.el, novice.el,
7210 * obsolete/auto-show.el, obsolete/hilit19.el, obsolete/ooutline.el,
7211 * obsolete/rnews.el, obsolete/rnewspost.el, options.el, paren.el,
7212 * paths.el, play/dissociate.el, play/doctor.el, play/hanoi.el,
7213 * play/meese.el, progmodes/compile.el, progmodes/ebrowse.el,
7214 * progmodes/hideif.el, progmodes/modula2.el, register.el, rot13.el,
7215 * saveplace.el, scroll-bar.el, server.el, sort.el, soundex.el,
7216 * term/bg-mouse.el, term/pc-win.el, term/sup-mouse.el,
7217 * term/tty-colors.el, terminal.el, textmodes/bib-mode.el,
7218 * textmodes/makeinfo.el, textmodes/page.el, textmodes/paragraphs.el,
7219 * textmodes/picture.el, textmodes/scribe.el, textmodes/spell.el,
7220 * textmodes/tex-mode.el, textmodes/text-mode.el,
7221 * textmodes/underline.el, thingatpt.el, time.el, timer.el,
7222 * unused.el, vcursor.el, version.el, vms-patch.el, vmsproc.el,
7223 * vt100-led.el, window.el: Some fixes to follow coding conventions in
7224 files maintained by FSF.
7225
7226 2001-07-13 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7227
7228 * arc-mode.el: A fix to follow coding conventions.
7229
7230 * bindings.el: Ditto.
7231
7232 * cdl.el: Ditto.
7233
7234 * comint.el: Ditto.
7235
7236 * cus-start.el: Ditto.
7237
7238 * shell.el: Ditto.
7239
7240 * skeleton.el: Ditto.
7241
7242 2001-07-13 Stefan Monnier <monnier@cs.yale.edu>
7243
7244 * info.el (Info-build-node-completions):
7245 Make Info-current-file-completions buffer local.
7246
7247 2001-07-13 Gerd Moellmann <gerd@gnu.org>
7248
7249 * which-func.el (which-func-mode, which-func-ff-hook)
7250 (which-function-mode): Remove references to which-func-mode-global.
7251
7252 * calendar/cal-islam.el (calendar-goto-islamic-date):
7253 Add autoload cookie.
7254
7255 * play/fortune.el: Add types to defcustoms.
7256
7257 2001-07-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7258
7259 * language/czech.el: A fix to follow coding conventions.
7260
7261 2001-07-11 Eli Zaretskii <eliz@is.elta.co.il>
7262
7263 * speedbar.el (speedbar-supported-extension-expressions): Add .g
7264 to the extension list, for antlr-mode. From Christoph Wedler
7265 <Christoph.Wedler@sap.com>.
7266
7267 2001-07-11 Stefan Monnier <monnier@cs.yale.edu>
7268
7269 * vc.el (vc-prefix-map): Moved back to vc-hooks.el.
7270 (vc-dired-mode-map): Fix the madness.
7271
7272 * vc-hooks.el (vc-mode): Dummy function for doc purposes.
7273 (vc-prefix-map): Moved back from vc.el.
7274
7275 2001-07-11 Gerd Moellmann <gerd@gnu.org>
7276
7277 * mail/mail-extr.el (mail-extr-all-top-level-domains):
7278 Increase the size of the obarray.
7279 (mail-extr-all-top-level-domains): Add more toplevel domains,
7280 add more long names.
7281 From: Per Starback <starback@ling.uu.se>.
7282
7283 2001-07-11 Eli Zaretskii <eliz@is.elta.co.il>
7284
7285 * progmodes/ada-prj.el: Say that the file _is_ part of Emacs.
7286 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7287
7288 * progmodes/ada-mode.el: Ditto.
7289
7290 * progmodes/ada-xref.el: Ditto.
7291
7292 2001-07-11 Miles Bader <miles@gnu.org>
7293
7294 * finder.el (finder-insert-at-column): Also move to the next line
7295 if exactly at COLUMN.
7296
7297 2001-07-10 Gerd Moellmann <gerd@gnu.org>
7298
7299 * help.el (describe-function-1): When printing FUNCTION's
7300 documentation, don't assume FUNCTION is a symbol.
7301
7302 * startup.el (normal-top-level): Don't operate on the initial
7303 frame if we failed to create one.
7304
7305 2001-07-10 Martin Stjernholm <bug-cc-mode@gnu.org>
7306
7307 * cc-cmds.el (c-indent-exp): Keep the indentation of the block
7308 itself, i.e. only indent the contents in it.
7309
7310 2001-07-10 Markus Rost <rost@math.ohio-state.edu>
7311
7312 * mail/rmail.el (rmail-show-message): Show beginning of message in
7313 all windows containing it.
7314
7315 2001-07-10 Eli Zaretskii <eliz@is.elta.co.il>
7316
7317 * term/tty-colors.el: Fix the header line and copyright years.
7318
7319 2001-07-09 Gerd Moellmann <gerd@gnu.org>
7320
7321 * emacs-lisp/advice.el (ad-make-advised-definition): If the
7322 original definition has an interactive form, but is Elp
7323 instrumented, use the interactive form of the function called by
7324 elp-wrapper.
7325
7326 * winner.el (winner-equal): Make it a defun. Don't compare Winner
7327 configurations with compare-window-configuration; they aren't
7328 window configurations.
7329
7330 * net/ange-ftp.el (ange-ftp-file-modtime): Check a 213 response
7331 from the server for the format we expect. Don't use it if it
7332 doesn't look like what the Internet draft for FTP extensions specifies.
7333
7334 * toolbar/*.pbm: Cleaned up.
7335 From Luis Fernandes <elf@ee.ryerson.ca>.
7336
7337 2001-07-09 Martin Stjernholm <bug-cc-mode@gnu.org>
7338
7339 * cc-cmds.el: Extended the kludge to interoperate with the
7340 delsel and pending-del packages wrt to the new function
7341 `c-electric-delete-forward'.
7342
7343 2001-07-08 Stefan Monnier <monnier@cs.yale.edu>
7344
7345 * emacs-lisp/easy-mmode.el (define-minor-mode): Use eval-after-load
7346 to delay the call to <mode> for global minor modes.
7347 (easy-mmode-define-navigation): Only recenter if interactive.
7348
7349 2001-07-06 Gerd Moellmann <gerd@gnu.org>
7350
7351 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind TAB
7352 to lisp-indent-line.
7353
7354 * net/ange-ftp.el (ange-ftp-file-modtime): Ignore 226 responses
7355 from the server. Call encode-time only when we are sure that we
7356 got a 213 response.
7357
7358 2001-07-06 Simon Josefsson <jas@extundo.com>
7359
7360 * mail/sendmail.el (mail-specify-envelope-from): Doc fix.
7361 (mail-envelope-from): New user option.
7362 (sendmail-send-it): Use it.
7363
7364 2001-07-06 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7365
7366 * ps-print.el: Use locale dependant date to print date in header.
7367 Doc fix.
7368 (ps-print-version): New version number (6.5.3).
7369 (ps-right-header, ps-right-footer): Initialization and doc fix.
7370 (ps-time-stamp-locale-default): New fun.
7371
7372 2001-07-06 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
7373
7374 * mail/rmailout.el (rmail-output): Fix duplicate MIME-Version:
7375 field problem with MIME-mode.
7376
7377 * mail/rmailout.el (rmail-output): Fix bug in MIME-mode.
7378
7379 2001-07-06 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
7380
7381 * mail/rmail.el (rmail-reply): Don't forget to narrow header in
7382 MIME-mode.
7383
7384 2001-07-06 Eli Zaretskii <eliz@is.elta.co.il>
7385
7386 * bindings.el (mode-line-mule-info): Don't show the tip with
7387 buffer-file-coding-system if that is nil.
7388
7389 2001-07-05 Gerd Moellmann <gerd@gnu.org>
7390
7391 * calendar/todo-mode.el (todo-top-priorities): Use delete-region
7392 instead of kill-line.
7393
7394 * play/pong.el: Fix first line. From Pavel Jan\e,Bm\e(Bk
7395 <Pavel@Janik.cz>.
7396
7397 * battery.el (battery-update): Add help-echo. From Pavel Jan\e,Bm\e(Bk
7398 <Pavel@Janik.cz>.
7399
7400 2001-07-04 Gerd Moellmann <gerd@gnu.org>
7401
7402 * font-lock.el (c-font-lock-keywords-3): When matching something
7403 like `struct X Y', finish with point after Y.
7404
7405 2001-07-04 Simon Josefsson <jas@extundo.com>
7406
7407 * mail/sendmail.el (sendmail-send-it): Look at `sendmail-program'
7408 in caller buffer.
7409
7410 2001-07-03 Eli Zaretskii <eliz@is.elta.co.il>
7411
7412 * find-file.el (ff-find-the-other-file): Use file-name-nondirectory
7413 instead of string-match to find the basename of the file.
7414 From Pascal Obry <p.obry@wanadoo.fr>.
7415
7416 * net/browse-url.el (browse-url-default-windows-browser):
7417 Support the MS-DOS port when it runs on Windows.
7418 (browse-url-browser-function) [ms-dos]: Default to
7419 browse-url-default-windows-browser.
7420
7421 * help.el (locate-library): Enable code that looks for compressed
7422 libraries if auto-compression-mode is on.
7423
7424 2001-07-02 Stefan Monnier <monnier@cs.yale.edu>
7425
7426 * info.el (Info-clone-buffer-hook): Really unconditionally copy marker.
7427
7428 2001-07-02 Gerd Moellmann <gerd@gnu.org>
7429
7430 * emacs-lisp/cl-macs.el (cl-do-arglist): Revert change of 2000-10-15.
7431
7432 2001-07-02 Eli Zaretskii <eliz@is.elta.co.il>
7433
7434 * allout.el: Fix the header line, so that finder.el recognizes it.
7435 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
7436
7437 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Doc fix.
7438 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
7439
7440 2001-06-29 Eli Zaretskii <eliz@is.elta.co.il>
7441
7442 * term/w32-win.el (x-colors): Add colors from the recent rgb.txt file.
7443
7444 * ps-bdf.el (bdf-directory-list): Use the value relative to
7445 installation-directory for MS-Windows as well.
7446
7447 2001-06-29 Richard M. Stallman <rms@gnu.org>
7448
7449 * wid-edit.el (widget-color-sample-face-get):
7450 Return ((foreground-color . COLOR)) instead of constructing a face.
7451
7452 2001-06-29 Eli Zaretskii <eliz@is.elta.co.il>
7453
7454 * faces.el (region): Change the background color for the
7455 light-background color display to lightgoldenrod2, to make it
7456 visible on some laptops.
7457
7458 2001-06-28 Richard M. Stallman <rms@gnu.org>
7459
7460 * mail/rmail.el (rmail-reformat-message): Bind inhibit-read-only to t.
7461 (rmail-msg-restore-non-pruned-header): Likewise.
7462 If point was in the old pruned header, put it at the top.
7463 (rmail-msg-prune-header): If point was at the top, keep it there.
7464
7465 * mail/rmail.el (rmail-narrow-to-non-pruned-header): New function.
7466 (rmail-retry-failure): Use rmail-narrow-to-non-pruned-header.
7467
7468 2001-06-28 Stefan Monnier <monnier@cs.yale.edu>
7469
7470 * info.el (Info-clone-buffer-hook): Unconditionally copy marker.
7471
7472 2001-06-28 Karl Fogel <kfogel@red-bean.com>
7473
7474 * saveplace.el: Update maintainer email address.
7475
7476 2001-06-27 Francesco Potorti` <pot@gnu.org>
7477
7478 * uniquify.el: (uniquify-rationalize-file-buffer-names):
7479 Undo previous change.
7480
7481 2001-06-27 Francesco Potorti` <pot@gnu.org>
7482
7483 * uniquify.el (uniquify-rationalize-file-buffer-names): Do a
7484 preliminary quick reordering. Can speed things up dramatically.
7485
7486 2001-06-26 Richard M. Stallman <rms@gnu.org>
7487
7488 * dired.el (dired-get-filename): A file name starting with ~
7489 is not absolute in this context.
7490
7491 * which-func.el (which-func-maxout): Increase default to 500000.
7492 (which-function-mode): This is now the "real" name of the function.
7493 (which-func-mode): Now an alias.
7494 (which-func-mode-global): Name deleted.
7495
7496 * progmodes/hideshow.el (hs-minor-mode-map): Use mouse-2, not
7497 button-2, when binding hs-mouse-toggle-hiding.
7498
7499 2001-06-26 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
7500
7501 * mail/rmail.el (rmail-msg-restore-non-pruned-header): New function.
7502 (rmail-msg-prune-header): Likewise.
7503 (rmail-toggle-header): Use `rmail-msg-restore-non-pruned-header'
7504 and `rmail-msg-prune-header'.
7505
7506 2001-06-25 Stefan Monnier <monnier@cs.yale.edu>
7507
7508 * textmodes/fill.el (fill-region-as-paragraph): Don't look further
7509 back than LINEBEG.
7510
7511 2001-06-25 Eli Zaretskii <eliz@is.elta.co.il>
7512
7513 * xt-mouse.el (xterm-mouse-event): If the buffer displayed in the
7514 window where they clicked the mouse has a header line, adjust
7515 vertical movement by one.
7516
7517 2001-06-25 Milan Zamazal <pdm@zamazal.org>
7518
7519 * progmodes/glasses.el (glasses-make-readable): Consider underscores
7520 too when separating a parenthesis.
7521
7522 2001-06-24 Eli Zaretskii <eliz@is.elta.co.il>
7523
7524 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
7525 (bookmark-bmenu-hide-filenames): Add help-echo to
7526 mouse-highlighted text.
7527 (bookmark-bmenu-show-filenames): Remove help-echo property from
7528 the whitespace.
7529
7530 2001-06-23 Eli Zaretskii <eliz@is.elta.co.il>
7531
7532 * files.el (auto-mode-alist): Add configure.ac (autoconf).
7533 From Karl Eichwalder <ke@suse.de>.
7534
7535 2001-06-23 Richard M. Stallman <rms@gnu.org>
7536
7537 * emacs-lisp/lisp-mode.el (eval-last-sexp): Doc fix.
7538
7539 * progmodes/cc-styles.el (c-set-style): Don't specify initial
7540 contents for completing-read.
7541
7542 2001-06-22 Richard M. Stallman <rms@gnu.org>
7543
7544 * menu-bar.el (menu-bar-make-toggle): Construct the
7545 function's doc string from HELP, not DOC, and make it accurate by
7546 adding "Toggle whether to " at the front and downcasing the initial.
7547 Change the HELP arg in some calls to make it fit this usage.
7548
7549 * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error):
7550 Undo previous change.
7551
7552 2001-06-22 Eli Zaretskii <eliz@is.elta.co.il>
7553
7554 * indent.el (indent-relative-maybe, indent-relative): Doc fix.
7555
7556 * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error): Doc fix.
7557
7558 2001-06-21 Eli Zaretskii <eliz@is.elta.co.il>
7559
7560 * toolbar/tool-bar.el (tool-bar-setup): Remove the EXIT button.
7561
7562 * dabbrev.el (dabbrev--select-buffers): Fix last change.
7563
7564 2001-06-20 Richard M. Stallman <rms@gnu.org>
7565
7566 * dabbrev.el (dabbrev--make-friend-buffer-list): New function,
7567 broken out from dabbrev--find-expansion. Handle minibuffer
7568 specially here.
7569 (dabbrev--find-expansion): Simplify code in various ways.
7570 Don't treat minibuffers specially.
7571 Call dabbrev--make-friend-buffer-list.
7572 (dabbrev--select-buffers): Don't treat minibuffers specially. Simplify.
7573 (dabbrev--scanning-message): Do nothing when minibuffer is current.
7574
7575 2001-06-19 John Wiegley <johnw@gnu.org>
7576
7577 * eshell/eshell.el: Don't load in esh-util if it's already loaded.
7578 Also, added a comment describing how to greatly speedup Eshell
7579 loadup time, by concatenating together all of Eshell's .elc files.
7580
7581 2001-06-19 John Wiegley <johnw@gnu.org>
7582
7583 * eshell/esh-mode.el: Disabled a test that often yields false failures.
7584
7585 2001-06-19 Eli Zaretskii <eliz@is.elta.co.il>
7586
7587 * woman.el (WoMan-highlight-references): Add help-echo to
7588 mouse-highlighted text.
7589
7590 2001-06-18 Stefan Monnier <monnier@cs.yale.edu>
7591
7592 * textmodes/sgml-mode.el (sgml-mode-map): Fix thinko.
7593
7594 2001-06-18 Gerd Moellmann <gerd@gnu.org>
7595
7596 * international/quail.el (quail-start-conversion):
7597 Reset quail-translating to nil.
7598
7599 * antlr-mode.el (antlr-mode): Check that `c-Java-access-key' is
7600 bound. Suggested by David B. Malkovsky <David.Malkovsky@sas.com>.
7601
7602 2001-06-18 Eli Zaretskii <eliz@is.elta.co.il>
7603
7604 * bs.el (bs--get-name, bs--get-file-name): Add help-echo to
7605 mouse-highlighted text.
7606
7607 * dired.el (dired-mark-pop-up): Fix last change.
7608
7609 2001-06-17 Eli Zaretskii <eliz@is.elta.co.il>
7610
7611 * calendar/calendar.el (generate-calendar-month): Add help-echo to
7612 mouse-highlighted text.
7613
7614 * net/quickurl.el (quickurl-url-file): Run through
7615 convert-standard-filename.
7616 (quickurl-list-populate-buffer): Add help-echo to
7617 mouse-highlighted text.
7618 (top-level): Update Dave's URL.
7619
7620 * textmodes/tex-mode.el (tex-validate-buffer): Add help-echo to
7621 mouse-highlighted text.
7622
7623 * textmodes/page-ext.el (pages-copy-header-and-position):
7624 Add help-echo to mouse-highlighted text.
7625
7626 * tar-mode.el (tar-header-block-summarize): Add help-echo to
7627 mouse-highlighted text.
7628
7629 * replace.el (occur): Add help-echo to mouse-highlighted text.
7630
7631 * progmodes/sh-script.el (sh-mark-line): Add help-echo to
7632 mouse-highlighted text.
7633
7634 * progmodes/cpp.el (cpp-make-button): Add help-echo to
7635 mouse-highlighted text.
7636
7637 * progmodes/compile.el (compile-reinitialize-errors):
7638 Add help-echo to mouse-highlighted messages.
7639 (compilation-forget-errors): Remove help-echo property as well.
7640
7641 * play/landmark.el (lm-plot-square, lm-init-display):
7642 Add help-echo to mouse-highlighted text.
7643
7644 * play/gomoku.el (gomoku-plot-square, gomoku-init-display):
7645 Add help-echo to mouse-highlighted text.
7646
7647 * dired.el (dired-insert-set-properties): Add help-echo to
7648 mouse-highlighted text.
7649 (dired-mark-pop-up): Remove help-echo property from the file name.
7650
7651 * comint.el (comint-send-input): Add help-echo to
7652 mouse-highlighted text.
7653
7654 * buff-menu.el (list-buffers-noselect): Add help-echo to
7655 mouse-highlighted text.
7656
7657 * arc-mode.el (archive-summarize-files): Add help-echo to
7658 mouse-highlighted text.
7659
7660 * ffap.el (ffap-machine-p): Always return nil if
7661 open-network-stream is not fboundp.
7662
7663 2001-06-17 Stefan Monnier <monnier@cs.yale.edu>
7664
7665 * textmodes/sgml-mode.el: Move `provide' to the end. Update copyright.
7666 (sgml-mode-map): Use `make-keymap' rather than make the keymap by hand.
7667 Bind the latin-1 charset-char to sgml-maybe-name-self rather than
7668 incorrectly binding chars between 128 and 256 to it.
7669 (sgml-maybe-name-self): Handle latin-1 chars properly.
7670 (sgml-tags-invisible): Bind buffer-file-name to nil.
7671 Use unwind-protect and restore-buffer-modified-p.
7672 (sgml-point-entered): Use buffer-substring-no-properties.
7673 (html-tag-alist): Add `div' and `span' and fix backquote/unquote typos.
7674 (html-mode): Don't force `imenu-sort-function'.
7675
7676 2001-06-15 Eli Zaretskii <eliz@is.elta.co.il>
7677
7678 * tar-mode.el: Fix the copyright notice.
7679
7680 * font-lock.el (font-lock-comment-face): For tty's with dark
7681 background, use "red1", since "lightred" is not one of the colors
7682 recognized by tty-colors.el.
7683
7684 * tar-mode.el (tar-extract): Call generate-new-buffer-name to
7685 create a buffer for extracted file, in case there's more than one
7686 file by that name in an archive, possibly in different
7687 directories. From Kevin Rodgers <kevinr@ihs.com>.
7688
7689 * format.el (format-alist): Doc fix. Suggested by Alex Schroeder
7690 <alex@gnu.org>.
7691
7692 2001-06-15 Miles Bader <miles@gnu.org>
7693
7694 * textmodes/texinfmt.el (texinfo-format-syntax-table):
7695 Revert previous change.
7696
7697 2001-06-14 Richard M. Stallman <rms@gnu.org>
7698
7699 * replace.el (keep-lines-read-args): Return just a regexp.
7700 Provide nil for the region args.
7701 (keep-lines, flush-lines, how-many):
7702 Calculate the defaults for the region here, when args are nil.
7703
7704 2001-06-14 Eli Zaretskii <eliz@is.elta.co.il>
7705
7706 * rot13.el (rot13-other-window): Some more doc fix.
7707
7708 2001-06-14 Per Starback <starback@ling.uu.se>
7709
7710 * replace.el (case-replace, query-replace-from-history-variable)
7711 (query-replace-to-history-variable, keep-lines-read-args)
7712 (occur-revert-function, query-replace-help): Dox fix.
7713
7714 2001-06-14 Eli Zaretskii <eliz@is.elta.co.il>
7715
7716 * rot13.el (rot13-other-window): Doc fix.
7717
7718 2001-06-14 Miles Bader <miles@gnu.org>
7719
7720 * textmodes/texinfo.el (texinfo-mode-syntax-table): Change syntax
7721 of " and \ to "." (punctuation).
7722 * textmodes/texinfmt.el (texinfo-format-syntax-table): Likewise.
7723
7724 2001-06-13 Richard M. Stallman <rms@gnu.org>
7725
7726 * emacs-lisp/backquote.el (backquote-process): Handle `[,@SYMBOL].
7727
7728 * simple.el (shell-command-on-region): Never kill the
7729 *Shell Command Output* buffer.
7730
7731 2001-06-13 Stefan Monnier <monnier@cs.yale.edu>
7732
7733 * diff-mode.el (diff-font-lock-keywords): Fix unanchored regexp.
7734
7735 2001-06-10 Stefan Monnier <monnier@cs.yale.edu>
7736
7737 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
7738 New var, to recognize ${ $' and PODs.
7739 (perl-font-lock-syntactic-face-function): New function.
7740 (perl-mode): Use them.
7741 (perl-continuation-line-p): New function, from perl-calculate-indent.
7742 (perl-calculate-indent): Use it, to properly handle continuation
7743 lines of continuation lines.
7744
7745 2001-06-10 Eli Zaretskii <eliz@is.elta.co.il>
7746
7747 * server.el (server-process, server-buffer-clients): Doc fix.
7748 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
7749
7750 2001-06-09 John Wiegley <johnw@gnu.org>
7751
7752 * eshell/esh-cmd.el (eshell-exit-success-p): Use a string-match to
7753 test if the last command was Lisp or not.
7754 (eshell-rewrite-if-command): "if" syntax is "if A B C", not "if A
7755 B x C".
7756
7757 2001-06-08 Eli Zaretskii <eliz@is.elta.co.il>
7758
7759 * dos-w32.el (grep-regexp-alist): Remove definition, since the
7760 general one on compile.el supports drive letters.
7761
7762 2001-06-08 Carsten Dominik <dominik@strw.leidenuniv.nl>
7763
7764 * textmodes/reftex-ref.el (reftex-select-label-help): Add "z"
7765 key description.
7766
7767 * textmodes/reftex-sel.el (reftex-select-jump): New command.
7768
7769 * textmodes/reftex-toc.el (reftex-toc-help): Add "z" key description.
7770 (reftex-toc-jump): New command.
7771
7772 * textmodes/reftex-cite.el (reftex-parse-bibitem): Regexp changed
7773 to parse international characters as well.
7774
7775 * textmodes/reftex.el: Add autoloads for `reftex-varioref-vref',
7776 `reftex-fancyref-fref', `reftex-fancyref-Fref'.
7777
7778 * textmodes/reftex-vars.el: Protect single backslash in docstrings.
7779
7780 * textmodes/reftex-dcr.el (reftex-view-crossref): Add SPACE and
7781 TAB to the key separators.
7782
7783 2001-06-07 Eli Zaretskii <eliz@is.elta.co.il>
7784
7785 * international/mule.el (auto-coding-alist): Remove redundant
7786 up-cased versions of the extensions (auto-coding-alist-lookup is
7787 case-insensitive where needed). Recognize .gz, .Z, .bz, .bz2, and
7788 .gpg files as binary. Suggested by Karl Berry <karl@gnu.org>.
7789
7790 2001-06-05 Eli Zaretskii <eliz@is.elta.co.il>
7791
7792 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Add a doc string.
7793
7794 2001-06-01 Richard M. Stallman <rms@gnu.org>
7795
7796 * help.el (describe-variable): Put value on same line
7797 with preceding text, if it is short enough to look good that way.
7798
7799 2001-06-01 Eli Zaretskii <eliz@is.elta.co.il>
7800
7801 * term/internal.el (IT-unicode-translations): New variable.
7802 (IT-setup-unicode-display): New function.
7803
7804 2001-06-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7805
7806 * ps-print.el: Handle before-string and after-string overlay properties
7807 in ps-print-*-with-faces commands. Doc fix.
7808 (ps-print-version): New version number (6.5.2).
7809 (ps-e-overlay-end): Alias for overlay-end to avoid compilation gripes
7810 for XEmacs.
7811 (ps-prefix-quote): Doc fix.
7812 (ps-setup, ps-print-quote, ps-generate-postscript-with-faces): Code fix.
7813 (ps-basic-plot-str, ps-plot-string): New funs.
7814
7815 2001-05-31 Stefan Monnier <monnier@cs.yale.edu>
7816
7817 * progmodes/etags.el (tags-compression-info-list): Fix docstring
7818 and :type spec.
7819
7820 2001-05-31 Gerd Moellmann <gerd@gnu.org>
7821
7822 * international/mule-cmds.el (inactivate-input-method):
7823 Set input-method-function to nil.
7824
7825 * xml.el (xml-parse-tag): The document may contain invalid characters.
7826 From ShengHuo ZHU <zsh@cs.rochester.edu>
7827
7828 2001-05-31 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
7829
7830 * mail/rmailsum.el (rmail-message-subject-p): Don't call
7831 `rmail-summary-line-decoder' if the message does not have
7832 a Subject: field.
7833
7834 * mail/rmail.el (rmail-revert): Modify to work in rmail-view-buffer.
7835
7836 * mail/rmail.el (rmail-insert-mime-resent-message-function):
7837 New variable.
7838 (rmail-resend): Modify to work in `rmail-view-buffer'; call
7839 `rmail-insert-mime-resent-message-function' if `rmail-enable-mime'
7840 is non-nil.
7841
7842 2001-05-30 Stefan Monnier <monnier@rum.cs.yale.edu>
7843
7844 * textmodes/tex-mode.el (latex-find-indent): Handle the BOBP case.
7845
7846 2001-05-29 Sam Steingold <sds@gnu.org>
7847
7848 * faces.el (face-valid-attribute-values): Bind `valid' directly
7849 instead of using `setq'.
7850
7851 * textmodes/tex-mode.el (tex-feed-input, tex-display-shell):
7852 Use `tex-shell-buf'.
7853 (tex-shell-proc): Use `tex-shell-running'.
7854 (tex-shell-buf-no-error): New function.
7855 (tex-send-tex-command): Use it.
7856 (tex-shell-running): Kill tex-shell when the buffer is dead for w32.
7857 (tex-kill-job): Check the process before calling `quit-process'.
7858
7859 2001-05-29 Gerd Moellmann <gerd@gnu.org>
7860
7861 * international/utf-8.el (ccl-decode-mule-utf-8): Handle invalid
7862 UTF-8 sequences.
7863
7864 2001-05-28 Miles Bader <miles@gnu.org>
7865
7866 * comint.el (comint-carriage-motion): Renamed from
7867 `comint-cr-magic'. Operate on the buffer instead of the string
7868 (for use as a comint post-output filter, instead of as a
7869 pre-output filter). Handle backspaces too. Add to the
7870 `comint-output-filter-functions' hook instead of
7871 `comint-preoutput-filter-functions'.
7872
7873 2001-05-28 Gerd Moellmann <gerd@gnu.org>
7874
7875 * language/japan-util.el (japanese-hankaku): Prefer the charset
7876 `jisx0201' when the optional argument `ascii-only' is not specified.
7877 (japanese-hankaku-region): Ditto.
7878 From Katsumi Yamaoka <yamaoka@jpl.org>
7879
7880 2001-05-28 Stefan Monnier <monnier@cs.yale.edu>
7881
7882 * textmodes/outline.el (outline-mode): Fix font-lock-defaults.
7883 (outline-invisible-p): New function.
7884 (hide-leaves): Save excursion.
7885 (hide-other): Stop looping when reaching bobp.
7886
7887 2001-05-28 Eli Zaretskii <eliz@is.elta.co.il>
7888
7889 * cus-edit.el (custom-file): Fix last change.
7890
7891 2001-05-27 Stefan Monnier <monnier@cs.yale.edu>
7892
7893 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload): Use the
7894 same definition in byte-compile-function-environment as `autoload'
7895 would put in `symbol-function'.
7896
7897 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Complete Dave's
7898 patch to correct the error message as well.
7899
7900 2001-05-27 Eli Zaretskii <eliz@is.elta.co.il>
7901
7902 * cus-edit.el (custom-file): Don't assume we were invoked with -q
7903 unless ~/.emacs exists.
7904
7905 * novice.el (enable-command): If user-init-file is nil or does not
7906 exist, default to "~/.emacs" (~/_emacs on DOS and, maybe, Windows).
7907
7908 2001-05-25 Stefan Monnier <monnier@cs.yale.edu>
7909
7910 * textmodes/tex-mode.el (tex-mode-syntax-table): Add ^.
7911 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
7912 Allow spaces around macro arguments.
7913 (tex-mode-map): Inherit from text-mode-map, but rebind \t to
7914 indent-for-tab-command.
7915 (latex-mode-map, plain-tex-mode-map): New keymaps.
7916 Inherit from tex-mode-map.
7917 (tex-common-initialization): Don't setup the keymap any more
7918 since it's now done right by define-derived-mode.
7919 (latex-mode): Set skeleton-end-hook to nil.
7920 (latex-skeleton-end-hook): Remove.
7921 (tex-latex-block, latex-insert-item): Simplify.
7922 (latex-syntax-after): Use following-char rather than char-after.
7923 (tex-discount-args-cmds, tex-count-words): New functions.
7924
7925 * textmodes/tildify.el (tildify-ignored-environments-alist):
7926 Recognize \verb* as well.
7927
7928 * progmodes/perl-mode.el (perl-mode): Use define-derived-mode.
7929 (perl-comment-indent): Simplify to let newcomment.el do its job.
7930 (perl-electric-terminator, perl-calculate-indent, perl-indent-exp)
7931 (perl-mark-function): Cleanup the namespace.
7932 (perl-calculate-indent): Don't be fooled by nested functions.
7933
7934 * speedbar.el (speedbar-find-selected-file): RE-quote the filename.
7935
7936 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
7937 Fix the arg of `load'. From Dave Love <fx@gnu.org>.
7938
7939 2001-05-25 Andrew Choi <akochoi@i-cable.com>
7940
7941 * international/titdic-cnv.el (ctlau-gb-converter): `\' should
7942 actually be `\\'.
7943 (ctlau-b5-converter): Likewise.
7944
7945 2001-05-24 Andrew Choi <akochoi@i-cable.com>
7946
7947 * international/titdic-cnv.el (quail-misc-package-ext-info):
7948 Change CTLauB.el to CTLau-b5.el.
7949
7950 2001-05-23 Stefan Monnier <monnier@cs.yale.edu>
7951
7952 * gud.el (gud-gdb-run-command-fetch-lines): Use forward-line
7953 rather than beginning-of-line to avoid problems with fields.
7954 (gud-perldb-massage-args): Use unless and push.
7955 (gud-chdir-before-run): New var.
7956 (gud-common-init): Use it.
7957
7958 2001-05-24 Andrew Choi <akochoi@i-cable.com>
7959
7960 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
7961 delete entries for chinese-ctlau and chinese-ctlaub.
7962 (quail-misc-package-ext-info): Add entries for chinese-ctlau and
7963 chinese-ctlaub.
7964 (ctlau-converter, ctlau-gb-converter, ctlau-b5-converter):
7965 New functions.
7966
7967 2001-05-22 Gerd Moellmann <gerd@gnu.org>
7968
7969 * cus-edit.el (custom-comment-show): Remove debug code.
7970
7971 * language/japan-util.el (japanese-symbol-table): Fix handling of
7972 Japanese long tone sign. From Kenichi Handa <handa@etl.go.jp>.
7973
7974 2001-05-21 Stefan Monnier <monnier@cs.yale.edu>
7975
7976 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly):
7977 Renamed by removing the silly `-flag' suffix.
7978 (diff-mode, diff-minor-mode, diff-find-source-location): Update.
7979
7980 2001-05-20 Stefan Monnier <monnier@cs.yale.edu>
7981
7982 * replace.el (keep-lines-read-args): Use `copy-marker'.
7983 (how-many): Save excursion properly.
7984 (occur-mode): Use define-derived-mode.
7985 (perform-replace): Use with-current-buffer.
7986
7987 2001-05-20 Richard M. Stallman <rms@gnu.org>
7988
7989 * play/landmark.el (lm): Use "p" not "P" for interactive spec.
7990
7991 * mail/rmail.el (rmail-retry-failure): Do save-window-excursion.
7992
7993 * info.el (Info-read-subfile): Widen before finding the
7994 desired node in the subfile.
7995
7996 * startup.el (command-line-1): When >2 files visited,
7997 leave the last one visible, and make that the selected window.
7998
7999 2001-05-20 Gerd Moellmann <gerd@gnu.org>
8000
8001 * font-lock.el (lisp-font-lock-keywords-1): Add `defvaralias'.
8002
8003 2001-05-20 Eli Zaretskii <eliz@is.elta.co.il>
8004
8005 * international/ccl.el (define-ccl-program): Fix a typo.
8006 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8007
8008 * international/mule.el (decode-char): Fix a typo. From Pavel
8009 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8010
8011 * textmodes/artist.el (artist-mode): Fix a typo. From Pavel
8012 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8013
8014 * frame.el (automatic-hscrolling): Fix a typo. From Pavel
8015 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8016
8017 2001-05-18 Sam Steingold <sds@gnu.org>
8018
8019 * pcvs-defs.el (cvs-mode-map): Bind "z" to `kill-this-buffer'
8020 and [RET] to `cvs-mode-find-file'.
8021
8022 2001-05-18 John Wiegley <johnw@gnu.org>
8023
8024 * eshell/esh-ext.el (eshell-explicit-command-char): A new
8025 configuration variable, which determines the initial character
8026 that forces use of an external version of a command. The default
8027 is *, but may be set to \, for example.
8028
8029 * eshell/esh-ext.el (eshell-explicit-command):
8030 Use `eshell-explicit-command-char' instead of ?*.
8031
8032 * eshell/esh-cmd.el (eshell/which):
8033 Use `eshell-explicit-command-char' instead of ?*.
8034
8035 * eshell/em-cmpl.el (eshell-completion-command-name)
8036 (eshell-complete-commands-list): Use `eshell-explicit-command-char'
8037 instead of ?*.
8038
8039 2001-05-18 Gerd Moellmann <gerd@gnu.org>
8040
8041 * net/ange-ftp.el (ange-ftp-fix-name-for-vms): Reverse args of
8042 subst-char-in-string.
8043 (ange-ftp-after-parse-ls-hook): New variable.
8044 (ange-ftp-ls): Run that hook.
8045 From Peter Milliken <Peter.Milliken@GTECH.COM>.
8046
8047 * tmm.el (tmm-get-keymap): Fix handling of :filter.
8048 (tmm-add-prompt): Bind buffer-read-only to nil when inserting
8049 text into *Completions*.
8050
8051 * net/goto-addr.el (goto-address-at-point): Deal with URLs
8052 part of which look like email addresses.
8053
8054 2001-05-18 Andrew Innes <andrewi@gnu.org>
8055
8056 * makefile.w32-in (compile-files-CMD, bootstrap-clean-CMD):
8057 Use . instead of absolute path for lisp dir, to avoid bug in W2K
8058 cmd.exe's handling of FOR loops.
8059 (autoloads): Set find-file-suppress-same-file-warnings to t to
8060 avoid slew of spurious messages.
8061
8062 2001-05-18 Simon Josefsson <simon@josefsson.org>
8063
8064 * mail/smtpmail.el (maybe-append-domain): Renamed to
8065 `smtpmail-maybe-append-domain'.
8066 (smtpmail-via-smtp): Use the new name.
8067
8068 * net/browse-url.el (browse-url-browser-function): Add kde.
8069 (browse-url-kde-program, browse-url-kde-args): New variables.
8070 (browse-url-kde): New function.
8071
8072 2001-05-18 Miles Bader <miles@gnu.org>
8073
8074 * simple.el (delete-horizontal-space, just-one-space):
8075 Use `constrain-to-field' instead of `field-end'/`field-beginning',
8076 because it's more efficient for large files.
8077
8078 2001-05-17 Gerd Moellmann <gerd@gnu.org>
8079
8080 * mail/rmail.el (rmail-require-mime-maybe): New function.
8081 (rmail): Use it.
8082 (rmail-mode): Handle the case of finding Rmail files.
8083
8084 * emacs-lisp/elp.el (elp-instrument-function): Handle advised
8085 functions.
8086
8087 2001-05-17 Stefan Monnier <monnier@cs.yale.edu>
8088
8089 * jit-lock.el (jit-lock-after-change): Check the font-lock-multiline
8090 text-property after moving to the beginning of line and regardless
8091 of the value of font-lock-multiline.
8092
8093 2001-05-17 Gerd Moellmann <gerd@gnu.org>
8094
8095 * startup.el (fancy-splash-screens): Ignore events on the mode-line.
8096
8097 * net/ange-ftp.el (ange-ftp-write-region): Make sure to record the
8098 last coding system used before calling set-buffer-modified-p
8099 because that function changes last-coding-system.
8100
8101 2001-05-17 Eli Zaretskii <eliz@is.elta.co.il>
8102
8103 * files.el (switch-to-buffer-other-window)
8104 (switch-to-buffer-other-frame): Add an xref to display-buffer in
8105 the doc string.
8106
8107 2001-05-17 Gerd Moellmann <gerd@gnu.org>
8108
8109 * language/slovak.el, language/czech.el: New maintainer.
8110
8111 2001-05-16 Sam Steingold <sds@gnu.org>
8112
8113 * emacs-lisp/cl-indent.el (toplevel): Indent the :method
8114 sub-form of `defgeneric' correctly.
8115
8116 2001-05-16 Gerd Moellmann <gerd@gnu.org>
8117
8118 * tooltip.el (tooltip) <defgroup>: Put it in `gud' group instead
8119 of `c'.
8120
8121 * textmodes/outline.el (outline-font-lock-level): Remove the
8122 condition-case, test what outline-level returns instead, to
8123 ease debugging.
8124
8125 * international/mule.el (auto-coding-regexp-alist): New user-option.
8126 (auto-coding-from-file-contents): New function.
8127 (set-auto-coding): Use it to determine a coding system.
8128
8129 2001-05-15 Gerd Moellmann <gerd@gnu.org>
8130
8131 * mouse.el (mouse-delete-other-windows): Doc fix.
8132
8133 * emacs-lisp/lisp-mode.el (lisp-mode):
8134 Make font-lock-keywords-case-fold-search a buffer-local variable with
8135 make-local-variable before setting it.
8136
8137 2001-05-14 Eli Zaretskii <eliz@is.elta.co.il>
8138
8139 * emacs-lisp/elp.el (elp-instrument-package): Don't allow empty
8140 prefixes.
8141
8142 2001-05-14 Gerd Moellmann <gerd@gnu.org>
8143
8144 * hexl.el (hexl-current-address): Print a message when called
8145 interactively.
8146
8147 2001-05-11 Stefan Monnier <monnier@cs.yale.edu>
8148
8149 * gud.el (gud-jdb-build-source-files-list): Fix paren typo.
8150
8151 * pcvs-defs.el (cvs-mode-map): Don't rebind `undo'.
8152
8153 * files.el (auto-mode-alist): Add *.perl and fix the *.<rev> case.
8154
8155 2001-05-11 Gerd Moellmann <gerd@gnu.org>
8156
8157 * startup.el (command-line): If parameters have been changed in
8158 the init files which influence font selection, clear the face
8159 cache so that faces get realized with the new parameters.
8160
8161 * Makefile.in (compile-files): Redirect output of chmod to /dev/null.
8162
8163 2001-05-10 Stefan Monnier <monnier@cs.yale.edu>
8164
8165 * smerge-mode.el (smerge-mode): Force font-lock-multiline to t.
8166
8167 2001-05-10 Eli Zaretskii <eliz@is.elta.co.il>
8168
8169 * mail/emacsbug.el (report-emacs-bug): Don't switch the buffer to
8170 unibyte. Suggested by Kenichi Handa <handa@etl.go.jp>.
8171
8172 2001-05-10 Gerd Moellmann <gerd@gnu.org>
8173
8174 * net/browse-url.el (browse-url-filename-alist): Allow UNC file
8175 names for MS-Windows and MS-DOS. From Dan Holmsand <dan@eyebee.com>.
8176
8177 2001-05-09 John Wiegley <johnw@gnu.org>
8178
8179 * eshell/esh-util.el (eshell-convert-numeric-arguments):
8180 Annotated the documentation string to tell users about
8181 `eshell-no-numeric-conversions'.
8182
8183 * eshell/esh-cmd.el (eshell-lisp-command): Don't perform numeric
8184 conversions if a Lisp function has the property
8185 `eshell-no-numeric-conversions' set to a non-nil value.
8186
8187 * eshell/em-dirs.el, eshell/em-ls.el, eshell/em-script.el,
8188 eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-cmd.el: Set the
8189 property `eshell-no-numeric-conversions' on the following
8190 functions (which all deal with filesystem entities, and never Lisp
8191 numerical values): eshell/cd, eshell/pushd, eshell/popd,
8192 eshell/ls, eshell/source, eshell/., eshell/man, eshell/rm,
8193 eshell/mkdir, eshell/rmdir, eshell/mv, eshell/cp, eshell/ln,
8194 eshell/cat, eshell/make, eshell/diff, eshell/locate, eshell/occur,
8195 eshell/which, eshell/addpath.
8196
8197 2001-05-09 John Wiegley <johnw@gnu.org>
8198
8199 * eshell/esh-arg.el (eshell-parse-argument-hook): If a number is
8200 encountered as an argument, don't convert it right away, but tag
8201 the first character of the string with the text properties
8202 `number', which signifies to `eshell-lisp-command' that the
8203 argument should be passed through `string-to-number' if it is
8204 actually used in the call to a Lisp function.
8205
8206 * eshell/esh-cmd.el (eshell-lisp-command): Before calling a Lisp
8207 function, convert any string arguments that have been tagged as
8208 "numbers", by calling string-to-number.
8209
8210 * eshell/esh-util.el (eshell-number-regexp): Now that number
8211 conversions only happen for Lisp function calls, the number regexp
8212 should now match all integer and floating point forms.
8213
8214 * eshell/esh-proc.el: Disable `eshell-stop-process' and
8215 `eshell-continue-process', since they are both nonfunctional at
8216 the moment.
8217 (eshell-proc-initialize): Don't bind keys for
8218 `eshell-stop-process' or `eshell-continue-process'.
8219
8220 * eshell/em-unix.el (eshell-shuffle-files):
8221 Apply `directory-file-name' before calling `file-name-directory'.
8222
8223 * eshell/em-hist.el (eshell-add-to-history): Reference to
8224 `eshell-history-ring' needed to be `eshell-history-index'.
8225
8226 * calendar/timeclock.el (timeclock-find-discrep):
8227 Initialize `elapsed' to 0.
8228 (timeclock-find-discrep): Set `timeclock-last-event-workday' if
8229 it's still nil.
8230
8231 2001-05-09 Stefan Monnier <monnier@cs.yale.edu>
8232
8233 * arc-mode.el (archive-int-to-mode): Construct the string directly.
8234 (archive-mode): Use capitalize.
8235 (archive-unique-fname): Use make-temp-file.
8236
8237 2001-05-09 Gerd Moellmann <gerd@gnu.org>
8238
8239 * emacs-lisp/lisp-mode.el (lisp-interaction-mode): Doc fix.
8240
8241 2001-05-09 Eli Zaretskii <eliz@is.elta.co.il>
8242
8243 * tar-mode.el (tar-extract): Pay attention to the value of
8244 coding-system-for-read, if it is non-nil.
8245
8246 * calendar/holidays.el (holidays): Add an autoload cookie.
8247 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8248
8249 2001-05-08 John Wiegley <johnw@gnu.org>
8250
8251 * calendar/timeclock.el (timeclock-workday-remaining):
8252 Changed logic for determining how much time is remaining.
8253 (timeclock-workday-elapsed): Don't accept a "relative" argument
8254 for the current day's elapsed time. What could that have meant?
8255 (timeclock-workday-elapsed-string): No "relative" argument anymore.
8256 (timeclock-when-to-leave): Changed logic, similarly to what was
8257 done for `timeclock-workday-remaining'.
8258 (timeclock-find-discrep): Removed "today-only" argument, which had
8259 no meaning. Fixed some more math problems. The function now
8260 returns a three member list: (TOTAL-TIME-DISCREPANCY
8261 TODAYS-TIME-DISCREPANCY TODAYS-ELAPSED-TIME).
8262
8263 2001-05-08 Eli Zaretskii <eliz@is.elta.co.il>
8264
8265 * w32-fns.el (convert-standard-filename): Start replacing slashes
8266 from the beginning of the file name, not from where the last
8267 invalid character was. From "Andrew Maguire (SWW)"
8268 <Andrew.Maguire@Smallworld.co.uk>
8269
8270 2001-05-07 MORIOKA Tomohiko <tomo@m17n.org>
8271
8272 The following changes are to provide infrastructure for handling
8273 MIME messages to rmail. They don't affect the original behaviour
8274 if rmail-enable-mime is nil.
8275
8276 * mail/rmail.el (rmail-insert-mime-forwarded-message-function)
8277 (rmail-search-mime-message-function)
8278 (rmail-search-mime-header-function): New variables.
8279 (rmail-expunge-and-save): Be sure to set-buffer to the Rmail buffer.
8280 (rmail-quit, rmail-get-new-mail): Bury `rmail-buffer' after
8281 `rmail-view-buffer' is hidden.
8282 (rmail-toggle-header): Likewise. If rmail-enable-mime is non-nil,
8283 call rmai-show-mime-function.
8284 (rmail-display-labels): If rmail-enable-mime is non-nil, update
8285 mode-line-process of rmail-view-buffer.
8286 (rmail-set-attribute): Be sure to set-buffer to the Rmail buffer.
8287 (rmail-show-message): Be sure to call rmail-auto-file in the Rmail
8288 buffer.
8289 (rmail-next-message, rmail-next-undeleted-message): Be sure to
8290 set-buffer to the Rmail buffer.
8291 (rmail-message-regexp-p): If rmail-enable-mime is non-nil, call
8292 rmail-search-mime-header-function.
8293 (rmail-search-message): New function.
8294 (rmail-search): Call rmail-search-message to check if a message
8295 matches REGEXP, lastly update point after calling
8296 rmail-show-message.
8297 (rmail-undelete-previous-message, rmail-expunge-confirmed)
8298 (rmail-only-expunge): Be sure to set-buffer to the Rmail buffer.
8299 (rmail-reply): If rmail-enable-mime is non-nil, don't narrow to
8300 header region, refer to rmail-msgref-vector while setting the
8301 current buffer to rmail-buffer temporarily.
8302 (rmail-forward): Be sure to bind forward-buffer to the Rmail buffer.
8303 If rmail-enable-mime is non-nil, call
8304 rmail-insert-mime-forwarded-message-function instead of inserting
8305 forwarded message by itself.
8306
8307 * mail/rmailkwd.el (rmail-read-label): Be sure to work in the
8308 Rmail buffer.
8309 (rmail-set-label, rmail-next-labeled-message): Likewise.
8310
8311 * mail/rmailout.el (rmail-output-read-rmail-file-name): Be sure to
8312 set-buffer to the Rmail buffer.
8313 (rmail-output-to-rmail-file): Likewise.
8314 (rmail-output): Likewise.
8315
8316 * mail/rmailsum.el (rmail-message-subject-p): Process the result
8317 of mail-fetch-field by rmail-summary-line-decoder.
8318 (rmail-new-summary): Be sure to go to the Rmail buffer.
8319 If rmail-enable-mime is non-nil, set rmail-summary-buffer of
8320 rmail-view-buffer to nil.
8321 (rmail-summary-undelete): If rmail-enable-mime is non-nil, pop to
8322 rmail-view-buffer.
8323 (rmail-summary-scroll-msg-up): Handle rmail-view-buffer, not
8324 rmail-buffer.
8325 (rmail-summary-scroll-msg-down): Likewise.
8326 (rmail-summary-beginning-of-message): Likewise.
8327 (rmail-summary-wipe): Likewise.
8328 (rmail-summary-toggle-header): Use save-window-excursion, not
8329 save-excursion. Update point in rmail-view-buffer, not in
8330 rmail-buffer.
8331 (rmail-summary-reply): Before calling rmail-reply, set buffer to
8332 rmail-view-buffer, not rmail-buffer.
8333
8334 2001-05-07 Gerd Moellmann <gerd@gnu.org>
8335
8336 * cus-edit.el (custom-file): Signal an error if user-init-file is
8337 nil (running -q).
8338
8339 * mail/rmailedit.el (rmail-edit-mode-hook): Add :version.
8340
8341 * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
8342 Add :version.
8343
8344 * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
8345 New option.
8346 (smtpmail-via-smtp): Print warnings about unknown SMTP extensions
8347 only if smtpmail-warn-about-unknown-extensions is set.
8348
8349 * mail/rmail.el (rmail-mode-map): Use rmail-sort-by-labels
8350 instead of rmail-sort-by-keywords.
8351
8352 * mail/rmailsort.el (rmail-sort-by-labels): Renamed from
8353 rmail-sort-by-keywords.
8354
8355 * mail/rmailsum.el (rmail-summary-sort-by-labels): Renamed from
8356 rmail-summary-sort-by-keywords. Doc fix.
8357 (rmail-summary-mode): Doc fix.
8358
8359 * mail/rmail.el (rmail-edit): New Custom group.
8360
8361 * mail/rmailedit.el (rmail-edit-mode): Doc fix.
8362 (rmail-edit-mode-hook): New user-option.
8363
8364 2001-05-05 Richard M. Stallman <rms@gnu.org>
8365
8366 * help.el (help-xref-symbol-regexp): Recognize "source of"
8367 and friends, meaning make a link to the source file.
8368 (help-make-xrefs): Handle "source of" and friends
8369 by constructing a link that visits the source file.
8370
8371 * dabbrev.el (dabbrev-select-buffers-function): Doc fix.
8372
8373 2001-05-04 Stefan Monnier <monnier@cs.yale.edu>
8374
8375 * progmodes/cperl-mode.el (cperl-font-lock-keywords)
8376 (cperl-font-lock-keywords-1, cperl-font-lock-keywords-2):
8377 Renamed from perl-font-lock-keywords to avoid clashes.
8378 (cperl-mode, cperl-load-font-lock-keywords, cperl-init-faces)
8379 (cperl-load-font-lock-keywords-1, cperl-load-font-lock-keywords-2):
8380 Updated correspondingly.
8381
8382 * diff-mode.el (diff-nonexistent-face, diff-font-lock-keywords):
8383 Typo `nonexistant' -> `nonexistent'.
8384
8385 2001-05-04 Martin Stjernholm <bug-cc-mode@gnu.org>
8386
8387 * cc-cmds.el (c-electric-delete, c-electric-delete-forward):
8388 Split `c-electric-delete' into two functions where
8389 `c-electric-delete-forward' always deletes forward and
8390 `c-electric-delete' only contains the code necessary for XEmacs to
8391 choose between backward and forward deletion.
8392
8393 * cc-mode.el: `c-electric-delete-forward' is now bound to C-d to
8394 get the electric behavior on that key too.
8395 (c-fill-paragraph): Fixed bogus direct use of
8396 c-comment-prefix-regexp, which caused an error when it's a list.
8397
8398 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
8399
8400 * dired-aux.el (dired-diff): Doc fix.
8401
8402 * dired.el (dired-diff): Likewise.
8403
8404 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
8405
8406 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
8407
8408 2001-05-02 Stefan Monnier <monnier@cs.yale.edu>
8409
8410 * vc.el (vc-next-action-on-file): Only force buffer+file to writable
8411 if both the buffer and the file are read-only.
8412
8413 * progmodes/sh-script.el (sh-prev-line): Look for sh-heredoc-face
8414 rather than font-lock-string-face.
8415 (sh-get-indent-info): Treat heredocs like strings.
8416
8417 2001-05-02 Gerd Moellmann <gerd@gnu.org>
8418
8419 * textmodes/texinfmt.el (texinfo-format-parse-args): Don't consume
8420 a newline following `}'.
8421 (texinfo-format-email): New function.
8422 (toplevel): Use texinfo-format-email for @email.
8423 (texinfo-format-kbd-regexp, texinfo-format-kbd-end-regexp):
8424 Add `display'.
8425 (texinfo-sort-region): Goto point-min before sorting.
8426 (texinfo-set): Remove leading white space from value.
8427 From yagi@is.titech.ac.jp.
8428
8429 * replace.el (query-replace-regexp-eval): Doc fix.
8430
8431 2001-05-01 Stefan Monnier <monnier@cs.yale.edu>
8432
8433 * diff-mode.el (diff-nonexistant-face): New face.
8434 (diff-font-lock-keywords): Use it.
8435
8436 2001-04-30 Eli Zaretskii <eliz@is.elta.co.il>
8437
8438 * font-lock.el (font-lock-mode): Doc fix.
8439
8440 * dired-aux.el (dired-do-rename-regexp, dired-do-copy-regexp)
8441 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
8442
8443 2001-04-30 Gerd Moellmann <gerd@gnu.org>
8444
8445 * progmodes/sh-script.el (sh-font-lock-heredoc): Allow optional
8446 backslash at the start of the here-document delimiter.
8447 (sh-font-lock-syntactic-keywords): Likewise.
8448
8449 * mail/rmail.el (rmail-message-regexp-p): Yet another fix.
8450
8451 2001-04-29 Eli Zaretskii <eliz@is.elta.co.il>
8452
8453 * term/tty-colors.el (tty-color-define, tty-color-off-gray-diag)
8454 (tty-color-translate, tty-color-by-index, tty-color-values)
8455 (tty-color-desc): Doc fix.
8456
8457 2001-04-27 Eli Zaretskii <eliz@is.elta.co.il>
8458
8459 * dired-aux.el (dired-do-create-files, dired-do-copy)
8460 (dired-do-symlink, dired-do-hardlink, dired-do-rename):
8461 Mention dired-dwim-target in the doc string.
8462
8463 2001-04-28 Miles Bader <miles@gnu.org>
8464
8465 * dabbrev.el (dabbrev--ignore-buffer-p): New function.
8466 (dabbrev--find-expansion): Use it.
8467 (dabbrev--select-buffers): Don't select ignored buffers.
8468
8469 2001-04-27 Gerd Moellmann <gerd@gnu.org>
8470
8471 * mail/rmail.el (rmail-message-regexp-p): Don't match before headers.
8472
8473 2001-04-26 Richard M. Stallman <rms@gnu.org>
8474
8475 * dabbrev.el: Add doc strings for some functions.
8476 (dabbrev--eliminate-newlines): New variable.
8477 (dabbrev--substitute-expansion): Convert newlines to spaces
8478 if dabbrev--eliminate-newlines is set.
8479 If abbrev and expansion are both all-lower-case,
8480 leave dabbrev--last-case-pattern nil.
8481
8482 2001-04-26 Gerd Moellmann <gerd@gnu.org>
8483
8484 * mail/rmail.el (rmail-message-regexp-p): Use rfc822-goto-eoh
8485 if necessary, like in rmail-show-message.
8486
8487 2001-04-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8488
8489 * ps-print.el: Color specified by number is forced to be float number.
8490 (ps-print-version): New version number (6.5.1.1).
8491 (ps-header-frame-alist, ps-footer-frame-alist): Adjust color
8492 initialization.
8493 (ps-prefix-quote): New internal var.
8494 (ps-print-quote): New fun.
8495 (ps-setup, ps-output-frame-properties, ps-float-format)
8496 (ps-format-color): Code fix.
8497 (ps-plot-region): Eliminate redundant foreground color text setting.
8498
8499 2001-04-26 Eli Zaretskii <eliz@is.elta.co.il>
8500
8501 * dabbrev.el (dabbrev--select-buffers): Add a doc string.
8502
8503 2001-04-25 Gerd Moellmann <gerd@gnu.org>
8504
8505 * faces.el (tty-handle-reverse-video): Don't set inverse-video.
8506
8507 2001-04-25 Eli Zaretskii <eliz@is.elta.co.il>
8508
8509 * info.el (Info-additional-directory-list): Doc fix.
8510
8511 * find-lisp.el (find-lisp-find-dired-filter)
8512 (find-lisp-find-dired-subdirectories, find-lisp-find-dired):
8513 Add autoload cookies. From Richard Y. Kim <ryk@dspwiz.com>.
8514
8515 2001-04-25 Stefan Monnier <monnier@cs.yale.edu>
8516
8517 * progmodes/make-mode.el (makefile-font-lock-keywords):
8518 Rationalize the rules for includes and conditionals and use the
8519 keyword face for them.
8520
8521 * faces.el (modify-face): Add compatibility for non-interactive use.
8522
8523 2001-04-24 John Wiegley <johnw@gnu.org>
8524
8525 * eshell/esh-cmd.el (eshell-find-alias-function): Corrected the
8526 fix from last night, since it wasn't finding eshell/cd.
8527
8528 2001-04-24 Gerd Moellmann <gerd@gnu.org>
8529
8530 * rect.el (string-rectangle): Revert to 20.x behaviour.
8531 (replace-rectangle): Make it an alias for string-rectangle.
8532 (string-insert-rectangle): New function.
8533
8534 2001-04-23 John Wiegley <johnw@gnu.org>
8535
8536 * eshell/em-unix.el (eshell/diff): Fixed problems that were
8537 occurring with Emacs 21's diff.el/compile.el interaction layer.
8538
8539 2001-04-23 Colin Walters <walters@cis.ohio-state.edu>
8540
8541 * eshell/esh-cmd.el (eshell-find-alias-function): Return t in the
8542 case where the function was defined in a file, but not part of an
8543 eshell module.
8544
8545 2001-04-23 John Wiegley <johnw@gnu.org>
8546
8547 * eshell/em-smart.el (eshell-smart-redisplay): Added some safety
8548 code to work around a redisplay problem I've been having.
8549
8550 2001-04-23 John Wiegley <johnw@gnu.org>
8551
8552 * calendar/timeclock.el (timeclock-day-required): If the time
8553 required for a particular day is not set, use `timeclock-workday'.
8554 (timeclock-find-discrep): Added some sample code in a comment.
8555
8556 * eshell/eshell.el (eshell-command): Made a few changes so that
8557 `eshell-command' could be called programmatically.
8558
8559 * eshell/esh-mode.el (eshell-non-interactive-p): Moved to eshell.el.
8560
8561 * eshell/eshell.el (eshell-non-interactive-p): Moved from esh-mode.el.
8562
8563 2001-04-23 John Wiegley <johnw@gnu.org>
8564
8565 * calendar/timeclock.el: Updated copyright.
8566 (timeclock-generate-report): Don't report the daily or two-week
8567 total, if no time has been worked in that period.
8568 (timeclock-find-discrep): Moved call to `file-readable-p'; removed
8569 final computational form, which was unnecessary; corrected a
8570 parsing problem when timeclock-relative was nil.
8571
8572 2001-04-23 Kahlil Hodgson <kahlil@discus.anu.edu.au>
8573
8574 * calendar/timeclock.el (timeclock-modeline-display): Check if
8575 `list-entry' is null.
8576 (timeclock-use-display-time): The first argument to `set-variable'
8577 must be a symbol.
8578
8579 2001-04-23 Eli Zaretskii <eliz@is.elta.co.il>
8580
8581 * calendar/calendar.el (diary-entry-marker)
8582 (calendar-today-marker, calendar-holiday-marker):
8583 Use display-color-p instead of window-system.
8584 (calendar-mode-map, calendar-mode): Use display-popup-menus-p
8585 instead of window-system.
8586 (calendar-hide-window): Use display-multi-frame-p instead of
8587 window-system.
8588
8589 * calendar/cal-x.el (calendar-two-frame-setup)
8590 (calendar-only-one-frame-setup, calendar-one-frame-setup):
8591 Use display-multi-frame-p instead of window-system.
8592
8593 2001-04-23 Gerd Moellmann <gerd@gnu.org>
8594
8595 * play/fortune.el (fortune-from-region): Use `eq' instead of `eql'.
8596
8597 * textmodes/ispell.el, emacs-lisp/checkdoc.el,
8598 * progmodes/ebrowse.el, play/fortune.el: Fix autoload cookies.
8599
8600 2001-04-23 Alex Schroeder <alex@gnu.org>
8601
8602 * goto-addr.el: Instead of defining line-beginning-position and
8603 line-end-position a defalias is used for point-at-bol and point-at-eol.
8604
8605 2001-04-23 Alex Schroeder <alex@gnu.org>
8606
8607 * goto-addr.el: Added XEmacs compatibility code.
8608 (goto-address-highlight-keymap): Made keybindings XEmacs compatible.
8609
8610 2001-04-22 Eli Zaretskii <eliz@is.elta.co.il>
8611
8612 * textmodes/paragraphs.el (sentence-end): Doc fix.
8613
8614 2001-04-20 Alex Schroeder <alex@gnu.org>
8615
8616 * sql.el (sql-escape-newlines-and-send): New function.
8617 (sql-db2): Set comint-input-sender to sql-escape-newlines-and-send.
8618
8619 2001-04-20 Alex Schroeder <alex@gnu.org>
8620
8621 * sql.el (sql-db2-program): New option.
8622 (sql-db2-options): New option.
8623 (sql-db2): New function.
8624
8625 2001-04-20 Alex Schroeder <alex@gnu.org>
8626
8627 * sql.el (sql-mode-menu): Added highlighting entries.
8628 (sql-highlight-oracle-keywords): New function.
8629 (sql-highlight-postgres-keywords): New function.
8630 (sql-highlight-ansi-keywords): New function.
8631
8632 2001-04-20 Alex Schroeder <alex@gnu.org>
8633
8634 * sql.el (sql-help): Doc change.
8635
8636 2001-04-19 Karl Fogel <kfogel@collab.net>
8637
8638 * saveplace.el (save-place-alist-to-file): Removed no-effect code
8639 that inserted file content only to delete it immediately.
8640 Probably a cut-and-paste bug. Thanks to Juanma Barranquero
8641 <lektu@uol.com.br> for the patch.
8642
8643 2001-04-19 Stefan Monnier <monnier@cs.yale.edu>
8644
8645 * emacs-lisp/easy-mmode.el (easy-mmode-defsyntax): Unquote `doc'.
8646
8647 2001-04-18 Gerd Moellmann <gerd@gnu.org>
8648
8649 * emacs-lisp/cl-indent.el (toplevel): Comment out the spec
8650 for defmethod.
8651
8652 * comint.el (comint-cr-magic): New function.
8653 (toplevel): Add it to comint-preoutput-filter-functions.
8654
8655 2001-04-18 Andrew Innes <andrewi@gnu.org>
8656
8657 * makefile.w32-in (EMACSLOADPATH): Define.
8658 (custom-deps, autoloads, .el.elc, compile-files-CMD, compile-files-SH)
8659 (recompile): Remove stuff to set EMACSLOADPATH.
8660
8661 2001-04-18 Gerd Moellmann <gerd@gnu.org>
8662
8663 * language/slovak.el ("Slovak"): Add tutorial entry.
8664
8665 * net/browse-url.el (browse-url-new-window-flag): Renamed from
8666 browse-url-new-window-p.
8667
8668 2001-04-17 Eli Zaretskii <eliz@is.elta.co.il>
8669
8670 * info.el (Info-menu-update): When there are no menus and/or no
8671 cross references in the node, make the respective items of the
8672 Info menu-bar menu inactive.
8673
8674 2001-04-17 Gerd Moellmann <gerd@gnu.org>
8675
8676 * indent.el (indent-for-tab-command): Call indent-line-function
8677 with no argument if PREFIX-ARG is non-nil.
8678
8679 * frame.el (delete-other-frames): Handle minibuffer-only frames.
8680
8681 2001-04-17 Eli Zaretskii <eliz@is.elta.co.il>
8682
8683 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Don't invoke CVS as
8684 an async subprocess if start-process is unavailable. Suggested by
8685 Tim Van Holder <tim.van.holder@pandora.be>.
8686
8687 2001-04-15 Eli Zaretskii <eliz@is.elta.co.il>
8688
8689 * info.el (Info-additional-directory-list): Doc fix. Suggested by
8690 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>.
8691
8692 2001-04-14 Eli Zaretskii <eliz@is.elta.co.il>
8693
8694 * info.el (Info-file-list-for-emacs): Add an entry for the "info"
8695 manual.
8696
8697 2001-04-13 Stefan Monnier <monnier@cs.yale.edu>
8698
8699 * pcvs-defs.el (cvs-mode-map): Bind C-o like in dired.
8700 (cvs-menu): Add a few entries.
8701
8702 * pcvs.el (cvs-addto-collection): Don't merge MESSAGE fileinfos.
8703 (cvs-update-filter): Only advertise `cvs-mode-delete-lock' if the
8704 lock file appears to be reachable from Emacs.
8705 (cvs-mode-mark-on-state, cvs-mode-display-file): New functions.
8706 (cvs-mode-find-file): Look for cvs-header-face rather than
8707 cvs-dirname-face (which doesn't exist).
8708 (cvs-mode-find-file): Allow `other' to be set to `dont-select'.
8709
8710 * pcvs-parse.el (cvs-parse-run-table): Remove misleading text.
8711
8712 2001-04-13 Eli Zaretskii <eliz@is.elta.co.il>
8713
8714 * emulation/pc-select.el (pc-selection-mode): Don't turn on
8715 normal-erase-is-backspace on a tty. Instead, bind some keys such
8716 as [delete] directly, like pc-select.el did before
8717 normal-erase-is-backspace was invented.
8718
8719 2001-04-12 Eli Zaretskii <eliz@is.elta.co.il>
8720
8721 * ls-lisp.el (ls-lisp-format): Leave a blank before "root".
8722
8723 2001-04-11 John Wiegley <johnw@gnu.org>
8724
8725 * eshell/em-ls.el (eshell-ls-insert-directory):
8726 Set font-lock-defaults to nil, to prevent fontification in dired
8727 buffers, if Eshell's ls is being used.
8728
8729 2001-04-11 John Wiegley <johnw@gnu.org>
8730
8731 * calendar/timeclock.el (timeclock-completing-read): New function.
8732 (timeclock-ask-for-project, timeclock-ask-for-reason):
8733 Call `timeclock-completing-read'.
8734
8735 * eshell/em-alias.el (eshell-command-aliased-p): `assoc' was
8736 required where `member' was being used.
8737
8738 2001-04-11 Colin Walters <walters@cis.ohio-state.edu>
8739
8740 * eshell/em-hist.el (eshell-previous-matching-input):
8741 Don't display "History item" if the minibuffer is active.
8742
8743 2001-04-11 Gerd Moellmann <gerd@gnu.org>
8744
8745 * startup.el (command-line): Output a newline after printing
8746 an error from loading the window system's init file.
8747
8748 2001-04-11 Eli Zaretskii <eliz@is.elta.co.il>
8749
8750 * textmodes/texinfo.el (texinfo-font-lock-keywords):
8751 Add fontification for @value, @dfn, @dmn, @acronym, @anchor, and
8752 @inforef. Add an OVERRIDE of `keep' to highlight specs of
8753 keywords whose arguments routinely include @@.
8754
8755 2001-04-10 Gerd Moellmann <gerd@gnu.org>
8756
8757 * emacs-lisp/advice.el (ad-make-advised-definition):
8758 Construct advice for subrs differently.
8759
8760 * textmodes/paragraphs.el (forward-sentence): Put the sentence-end
8761 regexp in parentheses when building the regexp for searching backwards.
8762
8763 * simple.el (completion-list-mode-finish): New function.
8764 (toplevel): Add completion-list-mode-finish to temp-buffer-show-hook.
8765
8766 * language/european.el ("Polish"): Change sample text.
8767 From jsbien@mimuw.edu.pl (Janusz S. Bie\e,Bq\e(B).
8768
8769 * progmodes/sh-script.el (sh-indent-line): Add optional PREFIX-ARG
8770 parameter.
8771
8772 * faces.el (menu): Doc fix.
8773
8774 2001-04-10 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8775
8776 * ps-print.el: Footer implementation. Doc fix.
8777 (ps-print-version): New version number (6.5.1).
8778 (ps-header-frame-alist): New customization var for header frame
8779 properties.
8780 (ps-line-number-color): New customization var for line number color.
8781 (ps-footer-offset, ps-footer-line-pad, ps-print-footer)
8782 (ps-print-footer-frame, ps-footer-frame-alist, ps-footer-lines)
8783 (ps-footer-font-family, ps-footer-font-size, ps-left-footer)
8784 (ps-right-footer): New customization vars for footers.
8785 (ps-footer-pad, ps-footer-font-size-internal): New internal vars for
8786 footers.
8787 (ps-setup, ps-get-page-dimensions, ps-generate-header-line)
8788 (ps-generate-header, ps-begin-file, ps-begin-job, ps-begin-page):
8789 Code fix.
8790 (ps-prologue-file): Indentation fix.
8791 (ps-print-quote): Fun eliminated.
8792 (ps-value, ps-get, ps-put, ps-del): New funs for alist handling.
8793 (ps-output-frame-properties): New fun.
8794 (ps-fonts, ps-font-number, ps-rgb-color, ps-end-page, ps-next-page)
8795 (ps-skip-newline): Replace defun by defsubst.
8796
8797 2001-04-10 Colin Walters <walters@cis.ohio-state.edu>
8798
8799 * eshell/eshell.el (eshell-command): Needed a "%s" format
8800 specifier, in case the buffer contains percent characters.
8801
8802 2001-04-10 John Wiegley <johnw@gnu.org>
8803
8804 * calendar/timeclock.el (timeclock-generate-report): Added a
8805 missing insert of the project name.
8806
8807 2001-04-09 Gerd Moellmann <gerd@gnu.org>
8808
8809 * obsolete/profile.el: Moved from emacs-lisp/.
8810
8811 * Makefile.in (nonobsolete_setwins): New macro.
8812 (finder-data): Use it instead of `setwins'.
8813 From: Dave Love <fx@gnu.org>.
8814
8815 * server.el (server-visit-files): Set server-existing-buffer correctly.
8816 (server-visit-files): Run server-visit-hook after going to
8817 line 1 so that the hook can set point as it sees fit.
8818
8819 * bindings.el (mode-line-modified): Unify help messages.
8820
8821 2001-04-07 Eli Zaretskii <eliz@is.elta.co.il>
8822
8823 * dos-fns.el (dos-8+3-filename): Rename from dos-truncate-to-8+3.
8824 All callers changed.
8825
8826 2001-04-06 Eli Zaretskii <eliz@is.elta.co.il>
8827
8828 * international/titdic-cnv.el (miscdic-convert): For MS-DOS, if
8829 long file names aren't supported, truncate the file names in
8830 quail-misc-package-ext-info to 8+3 before matching them against
8831 FILENAME.
8832
8833 * dos-fns.el (dos-truncate-to-8+3): New function.
8834
8835 * progmodes/compile.el (grep-compute-defaults): Use null-device
8836 instead of literal /dev/null. Reported by Jens Schmidt
8837 <schmidt@mathematik.uni-kl.de>.
8838
8839 * simple.el (normal-erase-is-backspace-mode): Doc fix.
8840
8841 2001-04-06 Stefan Monnier <monnier@cs.yale.edu>
8842
8843 * textmodes/sgml-mode.el: Add unknown maintainer.
8844 (sgml-tag): Pass `str' explicitly through skeleton-transformation.
8845 (html-mode-map): Use set-keymap-parent.
8846
8847 2001-04-06 Dave Love <fx@gnu.org>
8848
8849 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
8850 Remove redundant string-to-list.
8851
8852 2001-04-05 Stefan Monnier <monnier@cs.yale.edu>
8853
8854 * composite.el (reference-point-alist): Doc fix.
8855
8856 2001-04-05 Sam Steingold <sds@gnu.org>
8857
8858 * font-lock.el (font-lock-keywords-case-fold-search):
8859 Make buffer-local. This fixes a very annoying bug when loading a Lisp
8860 file made font-lock case-insensitive.
8861
8862 2001-04-05 Gerd Moellmann <gerd@gnu.org>
8863
8864 * faces.el (defface menu): Doc fix.
8865
8866 * wid-edit.el (widget-color-sample-face-get): Don't make
8867 faces for undefined colors.
8868
8869 * version.el (emacs-version): Include LessTif/Motif version info.
8870
8871 2001-04-04 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8872
8873 * ps-mule.el: Eliminate cl package dependence.
8874 (char-valid-p, multibyte-string-p, string-make-multibyte): Define funs
8875 if they aren't defined yet.
8876 (ps-mule-encode-header-string, ps-mule-header-string-charsets):
8877 Eliminate cl package dependence.
8878
8879 2001-04-04 Stefan Monnier <monnier@cs.yale.edu>
8880
8881 * progmodes/cc-cmds.el (c-outline-level):
8882 Bind buffer-invisibility-spec. Originally from Dave Love, but
8883 got lost when incorporating version 5.26.
8884
8885 2001-04-04 Eli Zaretskii <eliz@is.elta.co.il>
8886
8887 * emulation/pc-select.el (pc-selection-mode):
8888 Call normal-erase-is-backspace-mode instead of binding
8889 keys individually.
8890
8891 * cus-load.el (normal-erase-is-backspace): Use it instead of
8892 delete-key-deletes-forward.
8893
8894 * startup.el (command-line): Use normal-erase-is-backspace and
8895 normal-erase-is-backspace-mode.
8896
8897 * simple.el (normal-erase-is-backspace): Rename from
8898 delete-key-deletes-forward. Doc fix.
8899 (normal-erase-is-backspace-mode): Rename from
8900 delete-key-deletes-forward-mode. Doc fix.
8901 Run normal-erase-is-backspace-hook.
8902
8903 * dired.el (dired-move-to-filename-regexp): Support file sizes in
8904 ``human-readable'' format produced by GNU `ls'.
8905 (dired-move-to-filename-regexp): Recognize ISO format dates.
8906 From Paul Eggert <eggert@twinsun.com>.
8907
8908 2001-04-04 Gerd Moellmann <gerd@gnu.org>
8909
8910 * emacs-lisp/lisp-mnt.el (lm-keywords-list, lm-keywords-finder-p):
8911 New functions.
8912 (lm-verify): Check keywords.
8913 From Eric M. Ludlam <eric@siege-engine.com>.
8914
8915 2001-04-03 Eric M. Ludlam <eric@siege-engine.com>
8916
8917 * speedbar.el (speedbar-insert-image-button-maybe): Check for
8918 `xemacs' feature instead of for the function `set-extent-property'.
8919
8920 2001-04-03 Stefan Monnier <monnier@cs.yale.edu>
8921
8922 * mail/mh-utils.el (mh-folder-hist): New var.
8923 (mh-prompt-for-folder): Use it and pass `default' to completing-read.
8924
8925 2001-04-03 Eli Zaretskii <eliz@is.elta.co.il>
8926
8927 * hexl.el (hexl-scroll-up): If scrolling gets outside the hexl
8928 region, position point on the first or last 16-byte group.
8929 (hexl-mode-map): Bind C-Home and C-End to hexl-beginning-of-buffer
8930 and hexl-end-of-buffer. Bind End and Home to hexl-end-of-line and
8931 hexl-beginning-of-line.
8932
8933 2001-04-03 Gerd Moellmann <gerd@gnu.org>
8934
8935 * icomplete.el (icomplete-mode): Treat an argument like other
8936 modes do.
8937
8938 * startup.el (fancy-splash-head): Use splash8.xpm for color
8939 depth 8.
8940
8941 * emacs-lisp/checkdoc.el (checkdoc-common-verbs-wrong-voice):
8942 Add an antry for ``converts''.
8943
8944 * language/slovak.el ("Slovak"): Add documentation string.
8945 From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk).
8946
8947 * language/czech.el ("Czech"): Add documentation string.
8948 From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk).
8949
8950 * ps-mule.el (ps-mule-font-info-database-bdf): Change `isci24-etl.bdf'
8951 to `isci24-mule.bdf'. From: Kenichi Handa <handa@etl.go.jp>.
8952
8953 2001-04-02 Stefan Monnier <monnier@cs.yale.edu>
8954
8955 * mail/mail-extr.el (mail-extr-delete-char, mail-extr-safe-move-sexp)
8956 (mail-extr-skip-whitespace-forward, mail-extr-nuke-char-at)
8957 (mail-extr-skip-whitespace-backward, mail-extr-undo-backslash-quoting):
8958 Use `defsubst' rather than a macro to ease debugging.
8959 (mail-extr-last): Remove (use `last' instead).
8960 (mail-extract-address-components): Properly reset the syntax-table
8961 after parsing an address. Use `last' rather than mail-extr-last.
8962 Make sure the end marker stays at the very end.
8963
8964 2001-04-02 Eli Zaretskii <eliz@is.elta.co.il>
8965
8966 * international/titdic-cnv.el (miscdic-convert): Fix a typo in the
8967 last change.
8968
8969 2001-04-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8970
8971 * ps-print.el: Line and paragraph spacing feature. Region to cut
8972 out when printing. Doc fix.
8973 (ps-print-version): New version number (6.5).
8974 (ps-line-spacing, ps-paragraph-spacing, ps-paragraph-regexp):
8975 New vars. Line and paragraph spacing feature.
8976 (ps-begin-cut-regexp, ps-end-cut-regexp): New vars. Region to cut
8977 out when printing.
8978 (ps-setup, ps-nb-pages, ps-get-page-dimensions, ps-begin-file)
8979 (ps-get-font-size, ps-begin-job, ps-continue-line)
8980 (ps-plot-region): Code fix.
8981 (ps-print-prologue-2): Var eliminated.
8982 (ps-line-spacing-internal, ps-paragraph-spacing-internal):
8983 New internal vars.
8984 (ps-get-size): New fun.
8985 (ps-output-string-prim, ps-init-output-queue, ps-print-page-p)
8986 (ps-next-line): Replace defun by defsubst.
8987 (ps-mule-plot-string): Autoload doc fix.
8988
8989 * ps-bdf.el: XEmacs compatibility. Doc fix.
8990 (installation-directory, coding-system-for-read): Declare vars if
8991 it's not declared yet.
8992 (bdf-read-font-info, bdf-read-bitmap, bdf-get-bitmaps): Code fix.
8993
8994 * ps-mule.el: XEmacs compatibility. Doc fix.
8995 (leading-code-private-22): Declare var if it's not declared yet.
8996 (charset-bytes, charset-dimension, charset-id, charset-width)
8997 (find-charset-region, split-char, char-width, chars-in-region)
8998 (forward-point, decompose-composite-char, encode-coding-string)
8999 (coding-system-p, ccl-execute-on-string, define-ccl-program):
9000 Define funs if not defined yet.
9001 (encode-composition-rule, find-composition): Define funs if not
9002 loaded yet.
9003 (ps-mule-prologue): PostScript code fix.
9004
9005 2001-04-02 Kenichi Handa <handa@etl.go.jp>
9006
9007 * ps-mule.el (ps-mule-generate-font): New arg HEADER-P. If it is
9008 non-nil, generate font for the header strings.
9009 (ps-mule-prepare-font): Likewise.
9010 (ps-mule-generate-glyphs): Likewise.
9011 (ps-mule-string-encoding): Likewise.
9012 (ps-mule-header-charsets): New variable.
9013 (ps-mule-encode-header-string): New function.
9014 (ps-mule-header-string-charsets): New function.
9015 (ps-mule-begin-job): Check charsets in the header strings. If there
9016 are non-ASCII and non-Latin1 charsets, prepare fonts for them.
9017
9018 * ps-print.el (ps-generate-header-line): Encode the header string by
9019 ps-mule-encode-header-string.
9020 (ps-mule-encode-header-string): Declare autoload.
9021
9022 2001-04-02 Gerd Moellmann <gerd@gnu.org>
9023
9024 * frame.el (cursor-in-non-selected-windows):
9025 Replaces show-cursor-in-non-selected-windows.
9026
9027 2001-03-31 Kenichi Handa <handa@etl.go.jp>
9028
9029 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
9030 Delete entries for "chinese-py" and "chinese-ziranma".
9031 (quail-misc-package-ext-info): New variable.
9032 (tsang-quick-converter): New function.
9033 (tsang-b5-converter, quick-b5-converter, tsang-cns-converter)
9034 (quick-cns-converter, py-converter, ziranma-converter)
9035 (miscdic-convert, batch-miscdic-convert): New functions.
9036
9037 2001-03-30 Kenichi Handa <handa@etl.go.jp>
9038
9039 * international/utf-8.el (ccl-encode-mule-utf-8): Fix handling of
9040 eight-bit-control chars.
9041
9042 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
9043 Reduce making temporary vector (suggested by Dave Love).
9044
9045 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
9046
9047 * simple.el (transient-mark-mode): Mention ESC ESC ESC in the doc
9048 string as well.
9049
9050 2001-03-30 Andreas Schwab <schwab@suse.de>
9051
9052 * files.el (backup-directory-alist): Fix typo.
9053
9054 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
9055
9056 * time-stamp.el (time-stamp-format): Doc fix. From Paul Eggert
9057 <eggert@twinsun.com>.
9058
9059 2001-03-30 Dave Love <fx@gnu.org>
9060
9061 * progmodes/fortran.el (fortran-comment-region): Fix typo.
9062
9063 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
9064
9065 * simple.el (transient-mark-mode): Mention C-g in the doc string.
9066
9067 2001-03-30 Miles Bader <miles@gnu.org>
9068
9069 * subr.el (interactive-form): Fix paren typo.
9070
9071 2001-03-29 Eli Zaretskii <eliz@is.elta.co.il>
9072
9073 * emacs-lisp/profile.el: Say that it's obsolete in the header
9074 line, so that finder.el puts that into its data-base.
9075 Suggested by Alex Schroeder <alex@gnu.org>.
9076
9077 2001-03-29 Paul Eggert <eggert@twinsun.com>
9078
9079 * mail/emacsbug.el (report-emacs-bug): Report LC_COLLATE,
9080 LC_MESSAGES, LC_MONETARY, LC_NUMERIC, and LC_TIME as well.
9081
9082 2001-03-29 Stefan Monnier <monnier@cs.yale.edu>
9083
9084 * generic.el (generic-mode-set-comments): Use "" rather than nil
9085 for comment-end.
9086
9087 2001-03-29 Gerd Moellmann <gerd@gnu.org>
9088
9089 * emacs-lisp/advice.el (ad-make-advised-definition):
9090 Call interactive-form to obtain the interactive spec of subrs.
9091
9092 * subr.el (interactive-form): New function.
9093
9094 2001-03-29 Andre Spiegel <spiegel@gnu.org>
9095
9096 * vc-sccs.el (vc-sccs-register): Use relative file names.
9097
9098 2001-03-28 Gerd Moellmann <gerd@gnu.org>
9099
9100 * bookmark.el (bookmark-get-bookmark): Handle case that
9101 BOOKMARK is not a string.
9102
9103 * image.el (image-type-regexps): Change type for PS files
9104 to `postscript'.
9105
9106 * subr.el (read-passwd): Clear command history after each
9107 character entered. From: Stephen Gildea
9108 <gildea@stop.mail-abuse.org>.
9109
9110 2001-03-27 Kenichi Handa <handa@etl.go.jp>
9111
9112 * international/kkc.el (kkc-save-init-file): Locally bind
9113 print-length to nil.
9114
9115 2001-03-26 Gerd Moellmann <gerd@gnu.org>
9116
9117 * textmodes/flyspell.el: Some doc fixes.
9118 (flyspell-maybe-correct-transposition)
9119 (flyspell-maybe-correct-doubling): Use a temporary buffer
9120
9121 * textmodes/ispell.el (ispell-parse-output): Doc fix.
9122
9123 * emacs-lisp/byte-opt.el (byte-optimize-while)
9124 (byte-optimize-form-code-walker): Diagnose too few arguments
9125 for `if' and `while'.
9126
9127 2001-03-26 Kenichi Handa <handa@etl.go.jp>
9128
9129 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
9130 Prepend `\' to "\<quail-translation-docstring>".
9131
9132 2001-03-26 Gerd Moellmann <gerd@gnu.org>
9133
9134 * autorevert.el (global-auto-revert-non-file-buffers):
9135 Remove duplicate defcustom.
9136
9137 2001-03-26 Miles Bader <miles@gnu.org>
9138
9139 * international/latin1-disp.el (latin1-char-displayable-p):
9140 Add leading "-" for X font pattern.
9141
9142 2001-03-26 Kenichi Handa <handa@etl.go.jp>
9143
9144 * international/mule-diag.el (describe-coding-system):
9145 For raw-text and emacs-mule, don't add anymore text about what
9146 charsets they can encode.
9147
9148 2001-03-25 Eli Zaretskii <eliz@is.elta.co.il>
9149
9150 * help.el (view-lossage): Mention open-dribble-file in the doc
9151 string. Suggested by Riku Saikkonen <rjs@lloke.dna.fi>.
9152
9153 2001-03-23 Stefan Monnier <monnier@cs.yale.edu>
9154
9155 * skeleton.el (skeleton-internal-list): Fix bogus logic.
9156 (skeleton-pair-insert-maybe): Don't pair after a backslash.
9157
9158 2001-03-23 Kenichi Handa <handa@etl.go.jp>
9159
9160 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
9161 Call ccl-execute-on-string directly so that CCL program handling
9162 multibyte sequence can work correctly.
9163 (encoded-kbd-setup-keymap): Fix the default value of `valid-codes'
9164 property of the coding system.
9165
9166 2001-03-23 Stefan Monnier <monnier@cs.yale.edu>
9167
9168 * textmodes/fill.el (fill-individual-paragraphs-prefix):
9169 Fix transcription typo.
9170
9171 2001-03-22 Rajesh Vaidheeswarran <rv@gnu.org>
9172
9173 * whitespace.el: Add buffer local variables to toggle testing of
9174 whitespaces in buffers without affecting the default values.
9175 Bump version to 3.0 to account for a few other changes.
9176 (whitespace-toggle-ateol-check, whitespace-toggle-leading-check)
9177 (whitespace-toggle-trailing-check, whitespace-toggle-indent-check)
9178 (whitespace-toggle-spacetab-check): New functions.
9179
9180 2001-03-21 Stefan Monnier <monnier@cs.yale.edu>
9181
9182 * obsolete/cplus-md.el: Moved from progmodes/cplus-md.el.
9183
9184 2001-03-21 Gerd Moellmann <gerd@gnu.org>
9185
9186 * bs.el (bs-cycle-next, bs-cycle-previous): Fix handling of
9187 bs-cycle-configuration-name. From Juanma Barranquero
9188 <lektu@uol.com.br>.
9189
9190 * Makefile.in, makefile.w32-in (COMPILE_FIRST): Add cc-mode.el
9191 and cc-vars.el.
9192
9193 * mail/sendmail.el (sendmail-send-it): Don't parse Resent-*
9194 headers. Always invoke sendmail with option -t.
9195
9196 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9197
9198 * Release of cc-mode 5.28.
9199
9200 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9201
9202 * cc-mode.el, cc-vars.el (c-common-init, c-default-style):
9203 Removed the hardcoded switch to "java" style in Java mode.
9204 It's instead taken care of by the default value for c-default-style.
9205
9206 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9207
9208 * cc-align.el (c-lineup-math): Fix bug where lineup was
9209 triggered by equal signs in string literals.
9210
9211 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9212
9213 * cc-cmds.el (c-fill-paragraph): Fixed bug in the paragraph
9214 limit detection when at the ends of the buffer.
9215
9216 * cc-engine.el (c-guess-basic-syntax): Removed bogus check for
9217 "for" statement clause in case 7F; a better one is done
9218 earlier in case 7D anyway.
9219
9220 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9221
9222 * cc-cmds.el (c-guess-fill-prefix): Improved the heuristics
9223 somewhat more and did a small optimization.
9224
9225 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9226
9227 * cc-cmds.el (c-beginning-of-statement, c-end-of-statement):
9228 Use the limit argument only to limit the syntactic context
9229 search, not to limit the actual movement.
9230
9231 * cc-cmds.el (c-beginning-of-statement): Move by sentence
9232 inside multiline strings, just like in comments. Also various
9233 fixes to the paragraph and comment prefix recognition, block
9234 comment ender handling etc.
9235
9236 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9237
9238 * cc-cmds.el (c-fill-paragraph): Take more care to preserve
9239 the relative position of the point.
9240
9241 * cc-cmds.el (c-electric-continued-statement): New function to
9242 use as abbrev hook to reindent for keywords such as "else"
9243 that continues an earlier statement.
9244
9245 * cc-menus.el (cc-imenu-c++-generic-expression): Treat structs
9246 like classes.
9247
9248 * cc-mode.el (c-mode, c++-mode, java-mode, objc-mode)
9249 (pike-mode): Populate the default abbrev tables to reindent for
9250 keywords such as "else" that can continue earlier statements.
9251 Abbrev mode is therefore turned on by default now. (Note that
9252 this doesn't apply to idl-mode, since IDL afaik doesn't have
9253 statements at all.)
9254
9255 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9256
9257 * cc-engine.el (c-inside-bracelist-p): Fix for handling
9258 bracelists where the declaration contains template arguments.
9259
9260 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9261
9262 * cc-cmds.el (c-comment-indent):
9263 Use `c-get-syntactic-indentation' to correctly calculate the
9264 syntactic indentation. Fixes bug with lineup functions that
9265 return vectors.
9266
9267 * cc-engine.el (c-get-syntactic-indentation): Split the
9268 indentation sum calculation from `c-indent-line' to a separate
9269 function.
9270
9271 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9272
9273 * cc-cmds.el (c-beginning-of-statement, c-comment-indent):
9274 Fixed places where it was assumed that preprocessor directives
9275 have to start in column zero.
9276
9277 * cc-engine.el (c-beginning-of-member-init-list): Handle C++
9278 template arguments after a class identifier properly.
9279
9280 * cc-engine.el (c-guess-basic-syntax): Treat initializer brace
9281 lists for `new Foo[]' constructs in Java as expressions and
9282 not top level definition brace lists on the top level, so that
9283 they'll get indented consistently with the same type of
9284 expression in a normal block.
9285
9286 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9287
9288 * cc-cmds.el (c-fill-paragraph): The kludge that checks
9289 whether the adaptive filling package fails to keep the comment
9290 prefix is now kludged further to check for filladapt-mode
9291 which doesn't have that problem. This is really icky, but it's
9292 the only way that works with the current misfeatures/bugs in
9293 both adaptive-fill-mode and filladapt-mode.
9294
9295 * cc-cmds.el (c-fill-paragraph): Made the way the paragraph
9296 around point is recognized more robust.
9297
9298 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9299
9300 * cc-cmds.el, cc-engine.el, cc-lobotomy.el (c-state-cache)
9301 (c-in-literal-cache, c-auto-fill-prefix, c-lit-limits)
9302 (c-lit-type): Fixed all internal variables used dynamically so
9303 that they are always bound.
9304
9305 * cc-cmds.el, cc-engine.el: Improved recovery of syntactic
9306 errors:
9307
9308 (c-indent-region): Fixed reporting of syntactic errors so that
9309 the region is fully reindented even when an error occurs.
9310 The last syntactic error is printed afterwards. Also cleanup up a
9311 whole lot of code that tried to optimize indentation of whole
9312 sexps but in reality accomplishes nothing.
9313
9314 (c-indent-sexp): Use c-indent-region.
9315
9316 (c-parsing-error): Changed this variable to hold the message
9317 for any syntactic error that is discovered.
9318
9319 (c-parse-state): Search backward from point instead of the bod
9320 position when the latter is invalid. This makes CC Mode
9321 recover faster when there are unbalanced close braces.
9322
9323 (c-backward-to-start-of-if): Use c-parsing-error to report
9324 dangling "else" clauses instead of throwing an error, and fall
9325 back to a reasonable position.
9326
9327 (c-indent-line): Added argument to avoid reporting syntactic errors.
9328
9329 (c-show-syntactic-information): Don't report any syntactic errors.
9330
9331 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9332
9333 * cc-cmds.el (c-beginning-of-statement): Fixed bugs with
9334 paragraph recognition when moving by sentence in literals.
9335
9336 * cc-langs.el (c-Java-javadoc-paragraph-start): Modified paragraph
9337 start regexp for javadoc to recognize javadoc markup in general instead
9338 of a specific set of keywords, to be more future-safe.
9339
9340 (c-Pike-pikedoc-paragraph-start)
9341 (c-Pike-pikedoc-paragraph-separate): New regexps to recognize
9342 pikedoc markup.
9343
9344 * cc-mode.el: Fixed initialization and use of c-current-comment-prefix.
9345
9346 (pike-mode): Initialize paragraph settings pikedoc recognition.
9347
9348 * cc-vars.el (c-default-style): Made a nicer Customize widget.
9349
9350 (c-comment-prefix-regexp): Made it possible to use an
9351 association list on this to specify mode specific regexps.
9352 The default value now use a special regexp in Pike mode to
9353 recognize pikedoc markup.
9354
9355 (c-current-comment-prefix): New variable containing the actual
9356 regexp from c-comment-prefix-regexp for the current buffer.
9357
9358 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9359
9360 * cc-cmds.el (c-electric-brace): Fixed check for special brace
9361 lists: We can't look at the syntax, since a brace list can get
9362 recognized as a plain statement-cont.
9363
9364 * cc-engine.el (c-guess-basic-syntax): Fixed bug where a
9365 special brace list opener broken over two lines got recognized
9366 as a statement on the second line. Case 9A changed.
9367
9368 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9369
9370 * cc-cmds.el (c-electric-brace): Fixed bug in c-state-cache
9371 adjustment after line is reindented.
9372
9373 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9374
9375 * cc-defs.el (c-point): Added optional argument for position
9376 to use instead of the current point.
9377
9378 * cc-defs.el, cc-engine.el (c-add-class-syntax): Do not add
9379 the in-expression block symbols when the construct starts at
9380 boi, to avoid the extra level of indentation in that case.
9381 Cases 4, 16A and 17E affected.
9382
9383 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9384
9385 * cc-cmds.el: Use `indent-according-to-mode' instead of direct
9386 calls to `c-indent-line', to adhere better to Emacs conventions.
9387
9388 * cc-engine.el (c-indent-line): Use the syntax already bound
9389 to `c-syntactic-context', if there is any.
9390
9391 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9392
9393 * cc-engine.el (c-get-offset): Fixed bug where the indentation
9394 wasn't added up correctly when a lineup function returned nil.
9395
9396 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9397
9398 * cc-engine.el (c-collect-line-comments): Fixed bug where
9399 empty lines were ignored when collecting line comments backwards.
9400
9401 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9402
9403 * cc-align.el (c-lineup-dont-change): Return an absolute
9404 indentation column to work correctly in the case when several
9405 syntactic elements are processed for the same line.
9406
9407 * cc-engine.el, cc-styles.el, cc-vars.el (c-evaluate-offset)
9408 (c-get-offset, c-indent-line, c-valid-offset, c-read-offset)
9409 (c-set-offset): Added absolute indentation column settings by
9410 using the vector type.
9411
9412 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9413
9414 * cc-cmds.el, cc-vars.el (c-electric-paren, c-cleanup-list):
9415 Implemented two new cleanups `space-before-funcall' and
9416 `compact-empty-funcall'.
9417
9418 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9419
9420 * cc-defs.el (c-paren-re, c-identifier-re): Two new macros for
9421 helping building regexps.
9422
9423 * cc-engine.el (c-on-identifier): New function for detecting
9424 identifiers. It takes keywords into account.
9425
9426 * cc-langs.el, cc-mode.el: Added regexps for complete keyword
9427 lists. `c-keywords' is set to a regexp matching all keywords
9428 in the current language.
9429
9430 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9431
9432 * cc-engine.el (c-beginning-of-statement-1): Added '#' to the
9433 list of characters to skip backwards over at the beginning of
9434 a statement, since it can precede string literals in Pike.
9435
9436 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9437
9438 * cc-cmds.el (c-guess-fill-prefix): Fixed bug with prefix
9439 recognition when standing on the last line in a C++ comment
9440 with nothing but whitespace after the prefix.
9441
9442 * cc-engine.el (c-backward-to-start-of-if): Fixed bug when
9443 given no limit argument.
9444
9445 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9446
9447 * cc-engine.el (c-inside-bracelist-p): Fixed brace list
9448 recognition for the `[]= operator symbol in Pike.
9449
9450 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9451
9452 * cc-bytecomp.el (cc-eval-when-compile): New macro that works
9453 around a bug in `eval-when-compile' in the byte compiler.
9454
9455 * cc-engine.el (c-forward-token-1): Fixed bug with return
9456 value when count is zero and there's no token start within the limit.
9457
9458 (c-guess-basic-syntax): Don't add 'comment-intro to lines with
9459 "prefix comments", i.e. comments which are followed by code on
9460 the same line.
9461
9462 * cc-mode-19.el: Fixes so that checks that must be done at
9463 compile time also are done then.
9464
9465 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9466
9467 * cc-defs.el: Make sure cc-mode-19 is loaded both at compile
9468 time and at runtime, and only when it's needed.
9469
9470 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9471
9472 Major cleanup for less error prone and more warning free
9473 compilation, including some fixes for bugs due to different
9474 compilation orders. Thanks to Martin Buchholz for providing
9475 the basis for all this.
9476
9477 * cc-bytecomp.el: New file that provides some byte compilation
9478 features: It ensures that files always are loaded from the
9479 current source directory during compilation, and it provides a
9480 set of macros to turn off specific compiler warnings for
9481 specific symbols. (It's not CC Mode specific in any way.)
9482
9483 Fixed a nearly acyclic dependency tree (both runtime and
9484 compile-time) between all files.
9485
9486 * cc-defs.el: Separated all macros before the inline functions,
9487 to ensure correct compilation.
9488
9489 * cc-defs.el, cc-engine.el: Moved c-beginning-of-macro to from
9490 cc-defs.el to cc-engine.el and made it a function instead.
9491
9492 * cc-mode-19.el: Patch the byte compiler in Emacs 19 not to warn
9493 about char-after.
9494
9495 * cc-vars.el: Cope even when there isn't a custom package
9496 containing defcustom available.
9497
9498 * cc-make.el: Removed since it's no longer necessary.
9499
9500 README: Updated installation instructions.
9501
9502 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9503
9504 * cc-cmds.el, cc-langs.el, cc-mode.el: Moved around things to
9505 improve the modularity: Moved all mode init stuff from
9506 cc-langs.el to cc-mode.el, including the keymap
9507 initialization; cc-langs now only contains the various
9508 variables for configuring the language syntax.
9509
9510 * cc-engine.el, cc-styles.el (c-evaluate-offset)
9511 (c-get-offset): Moved from cc-styles to cc-engine since file
9512 dependency analysis suggests they belong there (which also
9513 makes more sense). Thanks to Martin Buchholz for doing the analysis.
9514
9515 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9516
9517 * cc-cmds.el (c-fn-region-is-active-p): New function that
9518 wraps the corresponding macro, for use in places that aren't
9519 compiled. Thanks to Martin Buchholz for pointing out this.
9520
9521 * cc-langs.el (c-mode-menu): Use c-fn-region-is-active-p.
9522
9523 * cc-mode.el (c-prepare-bug-report-hooks): Hook variable to
9524 add things to the bug report.
9525
9526 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9527
9528 * cc-cmds.el (c-guess-fill-prefix): Fixed bug where the
9529 returned prefix could contain a newline when the search for a
9530 good prefix line failed.
9531
9532 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9533
9534 * cc-cmds.el (c-toggle-auto-state, c-toggle-hungry-state)
9535 (c-toggle-auto-hungry-state): Made the argument optional, as
9536 the documentation says it is.
9537
9538 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
9539
9540 * cc-engine.el (c-guess-basic-syntax): Don't treat the Pike
9541 multiline string syntax, #"...", as a cpp macro.
9542
9543 2001-03-21 Paul Eggert <eggert@twinsun.com>
9544
9545 * international/mule-cmds.el (set-locale-environment):
9546 Set system-messages-locale and system-time-locale, but only if the
9547 caller specifies a non-nil locale name.
9548
9549 2001-03-20 Gerd Moellmann <gerd@gnu.org>
9550
9551 * pcvs-util.el (cvs-bury-buffer): Bodiless `if' statements cause
9552 problems for the interpreter. From: John Wiegley <johnw@gnu.org>
9553
9554 2001-03-20 Gerd Moellmann <gerd@gnu.org>
9555
9556 * follow.el (follow-avoid-tail-recenter): Doc fix.
9557
9558 * custom.el (custom-set-variables): Avoid reversing the list
9559 of args needlessly.
9560
9561 * startup.el (fancy-splash-head): Don't change the colors of the
9562 XPM image on a dark background.
9563
9564 * comint.el (comint-exec-1): Set columns of the terminal to
9565 window-width instead of frame-width.
9566
9567 * info.el (Info-scroll-down): Add missing WINDOW arg for
9568 pos-visible-in-window-p.
9569
9570 * ehelp.el (electric-help-mode-hook): Add defcustom.
9571
9572 * mail/sendmail.el (mail-mode): Activate case-folding in
9573 font-lock-defaults.
9574
9575 2001-03-19 Stefan Monnier <monnier@cs.yale.edu>
9576
9577 * bindings.el (mode-line-mode-menu): `glasses-mode' might be unbound.
9578 (completion-ignored-extensions): Remove duplicate ".class".
9579
9580 2001-03-19 Andreas Schwab <schwab@suse.de>
9581
9582 * textmodes/reftex-dcr.el (reftex-view-crossref): Doc fix.
9583 From Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
9584
9585 2001-03-19 Gerd Moellmann <gerd@gnu.org>
9586
9587 * language/european.el ("Latin-5", "Latin-4"): Use postfix input
9588 methods since there are not prefix input methods.
9589
9590 2001-03-19 Kenichi Handa <handa@etl.go.jp>
9591
9592 * international/mule-cmds.el (read-input-method-name):
9593 Locally bind enable-recursive-minibuffers to t.
9594
9595 2001-03-18 Stefan Monnier <monnier@cs.yale.edu>
9596
9597 * emacs-lisp/lmenu.el (add-menu): Re-added (was erroneously removed).
9598
9599 2001-03-17 Michael Kifer <kifer@cs.sunysb.edu>
9600
9601 * ediff-util.el: Copyright years.
9602 (ediff-choose-syntax-table): New function.
9603 (ediff-setup): Use ediff-choose-syntax-table.
9604
9605 * ediff-init.el (ediff-with-syntax-table): New macro, uses
9606 with-syntax-table.
9607
9608 * ediff.el: Date of last update, copyright years.
9609
9610 * ediff-wind (ediff-setup-control-frame): Nill->nil.
9611
9612 * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
9613 of Scott Bronson.
9614 (ex-cmd-assoc,ex-cmd-one-letr): New functions.
9615 (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
9616 Deleted functions.
9617 (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
9618 ex-token-list.
9619
9620 * viper-util.el: Spaces, indentation.
9621
9622 * viper.el: Changed version, modification time.
9623
9624 2001-03-16 John Wiegley <johnw@gnu.org>
9625
9626 * calendar/timeclock.el (timeclock-workday-remaining):
9627 Check whether `discrep' is non-null before using it.
9628
9629 2001-03-16 John Wiegley <johnw@gnu.org>
9630
9631 * calendar/timeclock.el (timeclock-reread-log): Fixed problem with
9632 first-time checkins.
9633 (timeclock-log-data): Fixed problem with reading timelog log file.
9634 Resulting data in the "day list" was incorrect.
9635 (timeclock-find-discrep): Check if `timeclock-file' is readable
9636 before opening it.
9637 (timeclock-time-less-p): New function.
9638 (timeclock-day-base): New function.
9639 (timeclock-geometric-mean): New function.
9640 (timeclock-generate-report): Generate a summary report based on
9641 the contents of the log file. This uses `timeclock-log-data', and
9642 is an example of writing a timelog manipulation function.
9643 (timeclock-visit-timelog): A quick command for opening the timelog
9644 file.
9645 (timeclock-log-data): Bound the variable event.
9646
9647 2001-03-16 Kenichi Handa <handa@etl.go.jp>
9648
9649 * international/mule-cmds.el (select-safe-coding-system):
9650 Fix typo: symbol-name -> symbol-value.
9651
9652 * mail/rmail.el (rmail-insert-inbox-text): Call expand-file-name
9653 before substitute-in-file-name to handle double slashes in FILE
9654 correctly.
9655
9656 2001-03-15 Gerd Moellmann <gerd@gnu.org>
9657
9658 * textmodes/ispell.el (ispell-dictionary-alist-6): Add support
9659 for Slovak. From Pavel.Janik@suse.cz (Pavel Jan\e,Bm\e(Bk ml.).
9660
9661 2001-03-14 Gerd Moellmann <gerd@gnu.org>
9662
9663 * bindings.el (features): Add `md5' and `overlay' to the list.
9664
9665 * scroll-bar.el (toplevel): Test if `x-toolkit-scroll-bars' is
9666 bound before using it. It's not bound when configured without X,
9667 for instance.
9668
9669 2001-03-13 Thien-Thi Nguyen <ttn@gnu.org>
9670
9671 * progmodes/hideshow.el: Update copyright.
9672 (hs-minor-mode-map): Change bindings to use `C-c @' prefix.
9673 (hs-minor-mode-hook): Include `:version' in defcustom form.
9674
9675 2001-03-13 Gerd Moellmann <gerd@gnu.org>
9676
9677 * help.el (string-key-binding): Don't call event-start on
9678 a non-list.
9679
9680 2001-03-13 Eli Zaretskii <eliz@is.elta.co.il>
9681
9682 * startup.el (fancy-splash-tail, command-line-1): Fix the
9683 copyright year.
9684
9685 2001-03-13 Kenichi Handa <handa@etl.go.jp>
9686
9687 * term.el: These changes are based on a patch sent from Yong Lu
9688 <lyongu@yahoo.com>.
9689 (term-set-escape-char): Bind M-x to execute-extended-command in
9690 term-raw-escape-map.
9691 (term-move-columns): Don't try to move to negagive column.
9692 (term-emulate-terminal): Insert a string before deleting a text to
9693 overwrite.
9694
9695 2001-03-12 Gerd Moellmann <gerd@gnu.org>
9696
9697 * play/life.el (life): Rearrange code so that all calls to
9698 life-display-generation are in a catch-form.
9699
9700 * progmodes/etags.el (tags-loop-continue): Don't change point in a
9701 file that isn't interesting. In an interesting file, push the old
9702 value of point on the mark ring.
9703
9704 * mail/rmailsum.el (rmail-summary-override-mail-send-and-exit):
9705 New function.
9706 (rmail-summary-mail, rmail-summary-reply, rmail-summary-forward):
9707 Use it.
9708
9709 * emacs-lisp/autoload.el (generate-file-autoloads):
9710 Remove warning about line lengths.
9711
9712 2001-03-12 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be>
9713
9714 * progmodes/etags.el (tags-compression-info-list): New variable.
9715 (find-tag-in-order): Use it to deal with compressed source files.
9716 (tag-file-name-match-p): New function.
9717 (etags-recognize-tags-table): Use it for better match of file names.
9718
9719 2001-03-12 Kenichi Handa <handa@etl.go.jp>
9720
9721 * international/mule-cmds.el (register-input-method): Doc fix.
9722
9723 * international/quail.el (quail-translate-key): Fix condition to
9724 check if there's another breaking point in the current key.
9725
9726 2001-03-11 Eli Zaretskii <eliz@is.elta.co.il>
9727
9728 * mail/rmailout.el (rmail-output-to-rmail-file): When writing the
9729 Babyl header to the newly-created output file, bind
9730 coding-system-for-write to either rmail-file-coding-system or
9731 emacs-mule-unix.
9732
9733 2001-03-11 Stefan Monnier <monnier@cs.yale.edu>
9734
9735 * textmodes/texnfo-upd.el (texinfo-update-menu-lower-regexps):
9736 Fix the name and regexp used for subsubsections.
9737
9738 2001-03-10 Dave Love <fx@gnu.org>
9739
9740 * toolbar/tool-bar.el (tool-bar-setup): Don't suppress write-file
9741 and save-buffer if buffer-file-name non-nil. From rms.
9742
9743 2001-03-10 Andre Spiegel <spiegel@gnu.org>
9744
9745 * vc.el (vc-do-command): If the destination buffer is already
9746 current, don't set it up and don't erase it. Updated doc string
9747 to reflect that.
9748 (vc-version-diff): When doing a single file diff, don't switch to the
9749 *vc-diff* buffer before the command. This is to preserve local
9750 variable bindings that might affect the diff command.
9751 (vc-print-log): Don't switch to the *vc* buffer before the
9752 command, so that local variable bindings are preserved.
9753
9754 * vc-{cvs,rcs,sccs}.el (vc-*-print-log): Output to buffer *vc*,
9755 not the current buffer.
9756 (vc-*-diff): Output to buffer *vc-diff*, not the current buffer.
9757
9758 * vc-cvs.el (vc-cvs-checkin): When removing the sticky tag,
9759 make output go to buffer *vc*, not the current buffer.
9760
9761 2001-03-09 Stefan Monnier <monnier@cs.yale.edu>
9762
9763 * hi-lock.el (hi-lock-line-face-buffer): Wrap the regexp in a group
9764 so ^, $, *, ? and + are interpreted correctly.
9765
9766 2001-03-09 Gerd Moellmann <gerd@gnu.org>
9767
9768 * help.el (string-key-binding): Renamed from
9769 mode-line-key-binding. Handle any event on a string.
9770 Check for `keymap' properties as well as `local-map' properties.
9771
9772 * comint.el (comint-insert-clicked-input): Use the last key
9773 from this-command-keys to lookup the global key definition.
9774
9775 2001-03-09 Kenichi Handa <handa@etl.go.jp>
9776
9777 * international/characters.el: Add category `j' for
9778 katakana-jisx0201. Fix syntaxes of katakana-jisx0201.
9779
9780 * international/mule-conf.el (no-conversion): Fix docstring.
9781 (raw-text): Fix docstring.
9782
9783 2001-03-08 Gerd Moellmann <gerd@gnu.org>
9784
9785 * simple.el (choose-completion-string): When not leaving the
9786 minibuffer, raise the minibuffer frame when minibuffer-auto-raise
9787 is set.
9788
9789 * window.el (shrink-window-if-larger-than-buffer): Handle frame
9790 parameter `(minibuffer . t)'.
9791
9792 2001-03-07 Stefan Monnier <monnier@cs.yale.edu>
9793
9794 * progmodes/sh-script.el (sh-st-symbol): New symbol.
9795 (sh-font-lock-syntactic-keywords): Use it and fix bogus comment regexp.
9796 (sh-mode): Remove `make-local-variable' for unused var
9797 `font-lock-unfontify-region-function'.
9798
9799 2001-03-07 Richard M. Stallman <rms@gnu.org>
9800
9801 * info.el (Info-scroll-down): Fix previous change.
9802
9803 * mail/rmail.el (rmail-toggle-header): Use a window which
9804 is showing the Rmail buffer, rather than the selected window.
9805
9806 2001-03-07 Dave Love <fx@gnu.org>
9807
9808 * imenu.el (imenu--create-keymap-2): Revert use of menu-item for
9809 now, to avoid problems with binding imenu directly to a mouse event.
9810
9811 2001-03-07 Gerd Moellmann <gerd@gnu.org>
9812
9813 * info.el (Info-scroll-down): Call pos-visible-in-window-p with
9814 second arg t.
9815
9816 2001-03-07 Stefan Monnier <monnier@cs.yale.edu>
9817
9818 * log-edit.el (log-edit-common-indent): New var.
9819 (log-edit-set-common-indentation): Renamed from
9820 log-edit-delete-common-indentation. Use the new var.
9821 (log-edit-insert-changelog, log-edit-done-hook): Use the new name.
9822
9823 * pcvs.el (cvs-ignore-marks-modif): Use `rassoc' rather than `member*'.
9824 (cvs-mode-add-change-log-entry-other-window):
9825 Don't presume change-log-default-name is defined.
9826
9827 * pcvs-util.el (cvs-bury-buffer): In doubt, don't delete window.
9828
9829 * pcvs-defs.el (cvs-buffer-name-alist): Use *cvs-info* for
9830 the "tree" operation as well.
9831
9832 * pcvs-parse.el (cvs-parse-table): Add another ignored message.
9833
9834 * textmodes/fill.el (fill-context-prefix): Allow first-line-prefix
9835 to match paragraph-start.
9836
9837 * textmodes/sgml-mode.el (sgml-mode-common): Correct value of
9838 comment-start-skip and set comment-end-skip as well.
9839 (sgml-comment-indent): Fix for new value of comment-start-skip.
9840 (html-autoview-mode): Don't bother using make-local-hook.
9841
9842 2001-03-07 Gerd Moellmann <gerd@gnu.org>
9843
9844 * cus-edit.el (custom-save-delete): Move in front of local
9845 variables, otherwise long Custom entries would make them ineffective.
9846
9847 * uniquify.el: Set maintainer to FSF.
9848
9849 2001-03-07 Eli Zaretskii <eliz@is.elta.co.il>
9850
9851 * dired-aux.el (dired-do-shell-command): Doc fix.
9852
9853 2001-03-06 Stefan Monnier <monnier@cs.yale.edu>
9854
9855 * emulation/viper.el (viper-vi-state-mode-list): Add cperl-mode.
9856
9857 * which-func.el (which-func-modes): Add cperl-mode.
9858 (which-func-mode-global): Use define-minor-mode.
9859
9860 * info-look.el: Docstring fixes and dead code eliminated.
9861 (cperl-mode): Add support.
9862 (emacs-lisp-mode): List all entries from elisp manual, whether
9863 or not they are currently (f)bound or not. Update regexp.
9864
9865 * add-log.el (add-log-current-defun): Accept `cperl-mode' as well.
9866
9867 * progmodes/cperl-mode.el (cperl-mode): Set major-mode to cperl-mode
9868 so that C-h m shows the correct information.
9869 Use make-local-variable rather than make-variable-buffer-local.
9870 (cperl-info-buffer, cperl-setup-tmp-buf):
9871 Use make-local-variable rather than make-variable-buffer-local.
9872 (cperl-msb-fix, cperl-get-help-defer):
9873 Check major-mode for `cperl-mode' as well.
9874
9875 * progmodes/cperl-mode.el: Updated to author version 4.23.
9876 (cperl-electric-pod): SYNOPSIS was misspelled.
9877 (cperl-find-pods-heres): @if ? a : b was considered a REx.
9878 (cperl-after-expr-p): Make true after __END__.
9879
9880 2001-03-06 Gerd Moellmann <gerd@gnu.org>
9881
9882 * bookmark.el (bookmark-get-bookmark): Use assoc-ignore-case if
9883 bookmark-completion-ignore-case is t.
9884
9885 * term/x-win.el (x-handle-xrm-switch): Accept more than one -xrm
9886 switch, like xterm, and concat resource strings, with a newline
9887 between them.
9888
9889 2001-03-06 Eli Zaretskii <eliz@is.elta.co.il>
9890
9891 * international/codepage.el (cp770-decode-table)
9892 (cp773-decode-table, cp774-decode-table): New variables.
9893
9894 * man.el (Man-hyphenated-reference-regexp): New variable.
9895 (Man-build-references-alist): Use it to search for referenced
9896 manpages. If hyphenated is non-nil, record a concatenated word in
9897 Man-refpages-alist only if it matches Man-reference-regexp.
9898 Update word's length when it is concatenated. Reverse the list,
9899 to get the first manpage at the head.
9900 (Man-possibly-hyphenated-word): New function.
9901 (Man-follow-manual-reference): Use it instead of current-word to
9902 find a manpage at point, in a way that accounts for hyphenated
9903 references.
9904
9905 2001-03-06 Alex Schroeder <alex@gnu.org>
9906
9907 * sql.el (sql-interbase): New function.
9908 (sql-interbase-program): New option.
9909 (sql-interbase-options): New option.
9910 And some typos fixed: "customise" to "customize".
9911
9912 2001-03-06 Dave Love <fx@gnu.org>
9913
9914 * textmodes/flyspell.el (flyspell-region):
9915 Set up flyspell-local-mouse-map.
9916
9917 2001-03-05 Richard M. Stallman <rms@gnu.org>
9918
9919 * mail/rmail.el (rmail-retry-failure):
9920 Don't call rmail-beginning-of-message.
9921 Don't discard From: field. Do discard Received: field.
9922 Use unwind-protect to re-prune.
9923 (rmail-retry-ignored-headers): Discard X-Authentication-Warning field.
9924
9925 2001-03-06 Kenichi Handa <handa@etl.go.jp>
9926
9927 * international/quail.el (quail-title): Add autoload cookie.
9928
9929 2001-03-05 Dave Love <fx@gnu.org>
9930
9931 * emacs-lisp/cl.el (dotimes, dolist): Undef prior to autoloading
9932 new defs.
9933
9934 2001-03-05 Kenichi Handa <handa@etl.go.jp>
9935
9936 * language/ethio-util.el (ethio-toggle-space):
9937 Update current-input-method-title if necessary.
9938 (ethio-toggle-punctuation): Likewise.
9939
9940 * international/quail.el (quail-title): Fix for the case that a
9941 title of an input method is specified by a list of the same form
9942 as used in mode-line-format.
9943
9944 * international/mule-cmds.el (activate-input-method):
9945 If current-input-method-title is set by activating INPUT-METHOD,
9946 respect that value.
9947
9948 2001-03-05 Gerd Moellmann <gerd@gnu.org>
9949
9950 * play/dunnet.el (dun-mode): Set major-mode to `dun-mode'.
9951
9952 2001-03-05 Alex Schroeder <alex@gnu.org>
9953
9954 * sql.el (sql-sybase): Fix typo (was: query user about server two
9955 times instead of server and database).
9956
9957 * sql.el (sql-sybase): Doc change.
9958 (sql-mysql): Doc change.
9959 (sql-postgres): Doc change.
9960
9961 2001-03-05 Kenichi Handa <handa@etl.go.jp>
9962
9963 * international/mule-conf.el (emacs-mule, raw-text):
9964 Docstring modified.
9965
9966 2001-03-04 Eli Zaretskii <eliz@is.elta.co.il>
9967
9968 * term/internal.el: Update copyright notice.
9969
9970 * term/pc-win.el: Update copyright notice.
9971
9972 2001-03-02 Dave Love <fx@gnu.org>
9973
9974 * files.el (insert-file-contents-literally):
9975 Bind inhibit-file-name-handlers and inhibit-file-name-operation,
9976 not jka-compr-compression-info-list.
9977
9978 2001-03-02 Stefan Monnier <monnier@cs.yale.edu>
9979
9980 * newcomment.el (comment-normalize-vars): Use [ \t] for the trailing
9981 spaces in default comment-start-skip settings rather than \s-.
9982
9983 2001-03-02 Eli Zaretskii <eliz@is.elta.co.il>
9984
9985 * term/pc-win.el (msdos-handle-reverse-video): Look for reverse in
9986 default-frame-alist as well.
9987
9988 2001-03-01 Dave Love <fx@gnu.org>
9989
9990 * textmodes/reftex.el (defvar): Wrap some defvars in
9991 eval-when-compile. From Markus Rost <rost@math.ohio-state.edu>.
9992
9993 * subr.el (event-basic-type): Doc fix.
9994
9995 * international/quail.el: Doc fixes.
9996
9997 * international/utf-8.el: Doc fixes.
9998
9999 * international/mule-cmds.el: Doc fixes.
10000 (leim-list-header): Fix header text.
10001
10002 * international/mule.el (coding-system-category): Doc fix.
10003
10004 * international/ccl.el (ccl-compile): Doc fix.
10005
10006 2001-03-01 Stefan Monnier <monnier@cs.yale.edu>
10007
10008 * font-lock.el (save-buffer-state): Use inhibit-modification-hooks
10009 rather than (before|after)-change-functions.
10010
10011 2001-03-01 Gerd Moellmann <gerd@gnu.org>
10012
10013 * ediff-util.el (ediff-scroll-horizontally): Arrange for
10014 scroll-left and scroll-right being called interactively so that
10015 they set the window's min_hscroll.
10016
10017 2001-03-01 Eli Zaretskii <eliz@is.elta.co.il>
10018
10019 * info.el (info-insert-file-contents-1): Accept an additional
10020 argument `lfn': if it is non-nil, concatenate `filename' and
10021 `suffix'; otherwise use the complicated MS-DOS code.
10022 All callers changed.
10023 (info-insert-file-contents, Info-find-node): If the MS-DOS port
10024 can access long file names, try the long file-name version of
10025 `info-insert-file-contents-1', then the short file-name version.
10026
10027 2001-02-28 TAKAHASHI Naoto <ntakahas@m17n.org>
10028
10029 * language/ethio-util.el (setup-ethiopic-environment-internal):
10030 Change bindings of functions keys to conform to "Emacs Lisp Coding
10031 Convention".
10032
10033 * language/ethiopic.el ("Ethiopic"): Add documentation.
10034
10035 2001-02-28 Kenichi Handa <handa@etl.go.jp>
10036
10037 * international/utf-8.el (mule-utf-8): Set coding-category
10038 property to coding-category-utf-8.
10039
10040 2001-02-27 Richard M. Stallman <rms@gnu.org>
10041
10042 * lpr.el (lpr-page-header-switches, print-region-1):
10043 Undo 2000-07-06 change.
10044 (lpr-add-switches): Default to t on gnu/linux.
10045
10046 2001-02-27 Gerd Moellmann <gerd@gnu.org>
10047
10048 * bs.el (bs-attributes-list): Doc fix.
10049
10050 2001-02-26 Gerd Moellmann <gerd@gnu.org>
10051
10052 * help.el (describe-project): Display the file THE-GNU-PROJECT.
10053
10054 * help.el (view-order-manuals): Use goto-address.
10055
10056 * startup.el (command-line-1): Add info about ordering manuals
10057 to the not so fancy splash screens.
10058
10059 2001-02-26 Andre Spiegel <spiegel@gnu.org>
10060
10061 * vc.el (vc-default-workfile-unchanged-p)
10062 (vc-default-latest-on-branch-p): Add missing BACKEND argument.
10063
10064 2001-02-26 Gerd Moellmann <gerd@gnu.org>
10065
10066 * lazy-lock.el (lazy-lock-fontify-after-idle): Make sure to
10067 fontify in the right buffer.
10068
10069 * allout.el (outline-flag-region): Move macro in front of first
10070 use to avoid a run-time error.
10071
10072 2001-02-24 Andrew Innes <andrewi@gnu.org>
10073
10074 * makefile.w32-in: Fix copyright notice.
10075
10076 2001-02-24 Kenichi Handa <handa@etl.go.jp>
10077
10078 * international/utf-8.el (mule-utf-8): Set correct value for
10079 valid-codes property.
10080
10081 * international/fontset.el (x-complement-fontset-spec): In the
10082 case that we use ASCII font for the other charsets, use only
10083 family and registry part of it.
10084
10085 2001-02-23 Eli Zaretskii <eliz@is.elta.co.il>
10086
10087 * window.el (fit-window-to-buffer, window-safely-shrinkable-p)
10088 (shrink-window-if-larger-than-buffer): Doc fix.
10089
10090 2001-02-23 Stefan Monnier <monnier@cs.yale.edu>
10091
10092 * hi-lock.el (hi-lock-unface-buffer): Use nil rather than t for
10093 predicate passed to completing-read.
10094
10095 2001-02-23 Eli Zaretskii <eliz@is.elta.co.il>
10096
10097 * startup.el (command-line): Fix last change.
10098
10099 2001-02-23 Jason Rumney <jasonr@gnu.org>
10100
10101 * startup.el (tool-bar-originally-present): New variable.
10102 (command-line): Set it if the tool-bar is switched on at startup.
10103
10104 * frame.el (frame-notice-user-settings): Only adjust frame height
10105 for no tool-bar case if tool-bar was originally switched on.
10106 From E. Jay Berkenbilt.
10107
10108 2001-02-22 Stefan Monnier <monnier@cs.yale.edu>
10109
10110 * server.el (server-switch-buffer): Only switch window if the
10111 current one is dedicated.
10112
10113 * textmodes/fill.el (fill-region-as-paragraph): Skip spaces backward
10114 rather than using (match-beginning 0) when searching for break point.
10115
10116 2001-02-22 Eli Zaretskii <eliz@is.elta.co.il>
10117
10118 * textmodes/texinfmt.el (texinfo-format-scan): Signal an error if
10119 @ follows an accent command such as @'. Support optional braces
10120 in commands that insert accents, like makeinfo does.
10121
10122 2001-02-22 Gerd Moellmann <gerd@gnu.org>
10123
10124 * startup.el (fancy-splash-text): Add a line for ordering
10125 manuals. Reverse order of splash screens shown.
10126 (use-fancy-splash-screens-p): Adapt to the text line added.
10127
10128 * menu-bar.el (menu-bar-help-menu): Add an item for ordering
10129 manuals from the FSF.
10130
10131 * help.el (view-order-manuals): New function.
10132 (toplevel): Bind C-h C-m to this function.
10133
10134 2001-02-21 Stefan Monnier <monnier@cs.yale.edu>
10135
10136 * newcomment.el (comment-forward): Skip the comment-start before
10137 searching for the comment-end.
10138
10139 2001-02-21 Dave Love <fx@gnu.org>
10140
10141 * custom.el (custom-initialize-changed, defcustom): Doc fix.
10142
10143 * international/mule-cmds.el, international/mule.el: Doc fixes.
10144
10145 2001-02-21 Gerd Moellmann <gerd@gnu.org>
10146
10147 * startup.el (fancy-splash-screens): Use display-hourglass
10148 instead of display-busy-cursor.
10149
10150 * frame.el (display-hourglass): Renamed from busy-cursor.
10151 (hourglass-delay): Renamed from busy-cursor-delay-seconds.
10152 (show-cursor-in-non-selected-windows): Doc fix.
10153
10154 2001-02-20 Dave Love <fx@gnu.org>
10155
10156 * international/utf-8.el: Doc and commentary fixes.
10157
10158 2001-02-20 Eli Zaretskii <eliz@is.elta.co.il>
10159
10160 * ehelp.el (with-electric-help): Doc fix.
10161
10162 2001-02-20 Gerd Moellmann <gerd@gnu.org>
10163
10164 * msb.el (msb-mode): Call the update-buffers function explicitly
10165 with a FORCE argument.
10166
10167 * menu-bar.el (menu-bar-update-buffers): Add optional parameter
10168 FORCE. If set, update the menu even if frame-or-buffer-changed-p
10169 returns nil.
10170
10171 2001-02-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10172
10173 * ps-print.el: Timestamp package replacement. Some enhancements.
10174 Some XEmacs compatibility. Doc fix.
10175 (ps-print-version): New version number (6.4).
10176 (ps-printer-name): Initialization fix.
10177 (ps-zebra-stripe-follow): Funcionality enhancement.
10178 (ps-prologue-file): Code enhancement.
10179 (ps-right-header): Timestamp package replacement.
10180 (ps-setup, ps-face-bold-p, ps-face-italic-p)
10181 (ps-get-page-dimensions)
10182 (ps-generate-header, ps-begin-file, ps-begin-job)
10183 (ps-generate-postscript-with-faces, ps-do-despool): Code fix.
10184 (ps-time-stamp-mon-dd-yyyy, ps-time-stamp-hh:mm:ss): New funs.
10185 (ps-zebra-stripe-full-p, ps-zebra-stripe-alist): New vars.
10186 (coding-system-for-write): Var declaration (XEmacs compatibility).
10187
10188 2001-02-20 Miles Bader <miles@gnu.org>
10189
10190 * image-file.el (image-file-name-extensions): Add "tif".
10191
10192 2001-02-19 Gerd Moellmann <gerd@gnu.org>
10193
10194 * wid-edit.el (widget-button-click): Save the selected window
10195 around the code handling clicks on buttons.
10196
10197 2001-02-18 Dave Love <fx@gnu.org>
10198
10199 * imenu.el (imenu--generic-function): Use mapc to iterate over
10200 syntax characters.
10201
10202 2001-02-17 Richard M. Stallman <rms@gnu.org>
10203
10204 * progmodes/fortran.el (fortran-strip-sqeuence-nos): Doc fix.
10205
10206 * uniquify.el (uniquify-buffer-name-style): Doc fix.
10207
10208 2001-02-16 Gerd Moellmann <gerd@gnu.org>
10209
10210 * mouse.el (mouse-save-then-kill): If the distance from the new
10211 point to the mark is equal to the distance of point from the new
10212 point, move point instead of the mark.
10213
10214 2001-02-16 Dave Love <fx@gnu.org>
10215
10216 * textmodes/flyspell.el (flyspell-get-word): Return string without
10217 properties.
10218
10219 2001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
10220
10221 * generic.el (generic-find-file-regexp): Doc fix.
10222 (generic-ignore-files-regexp): New defcustom.
10223 (generic-mode-find-file-hook): If the file's name matches the
10224 regexp in `generic-ignore-files-regexp', don't enter
10225 default-generic-mode. Doc fix.
10226
10227 2001-02-16 Gerd Moellmann <gerd@gnu.org>
10228
10229 * textmodes/flyspell.el (flyspell-region, flyspell-buffer):
10230 Add autoload cookies.
10231
10232 * calendar/cal-tex.el (cal-tex-weekly4-box): Respect setting
10233 of cal-tex-24.
10234
10235 2001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
10236
10237 * simple.el (kill-region, kill-line, kill-ring-save): Doc fix.
10238
10239 * progmodes/compile.el (grep-regexp-alist): Remove the blank from
10240 the character class after the (optional) drive, to support file
10241 names with embedded blanks.
10242
10243 2001-02-15 Sam Steingold <sds@gnu.org>
10244
10245 * textmodes/tex-mode.el (tex-shell-running):
10246 Check the process buffer too.
10247
10248 2001-02-15 Dave Love <fx@gnu.org>
10249
10250 * battery.el (battery-status-function): Fix doc, :type.
10251
10252 * calendar/timeclock.el (timeclock-get-workday-function): Fix :type.
10253
10254 2001-02-15 Gerd Moellmann <gerd@gnu.org>
10255
10256 * subr.el (read-passwd): Clear Lisp memory holding password.
10257
10258 2001-02-15 Miles Bader <miles@gnu.org>
10259
10260 * info.el (Info-copy-current-node-name): New function.
10261 (Info-mode-menu): Add it to the menu.
10262
10263 2001-02-14 Richard M. Stallman <rms@theobromine.ai.mit.edu>
10264
10265 * international/mule-cmds.el (toggle-input-method): Doc fix.
10266
10267 2001-02-13 Stefan Monnier <monnier@cs.yale.edu>
10268
10269 * replace.el (occur): Stop at end of buffer.
10270
10271 2001-02-13 Eli Zaretskii <eliz@is.elta.co.il>
10272
10273 * international/mule-cmds.el (set-input-method): Another doc fix.
10274
10275 2001-02-13 David M. Koppelman <koppel@ee.lsu.edu>
10276
10277 * hi-lock.el (hi-lock-find-patterns): Don't activate font-lock-mode.
10278
10279 2001-02-13 Miles Bader <miles@gnu.org>
10280
10281 * faces.el (set-face-background, set-face-foreground)
10282 (set-face-stipple): Treat a value of nil as being `unspecified'.
10283
10284 2001-02-12 Dave Love <d.love@dl.ac.uk>
10285
10286 * international/latin1-disp.el: Doc fixes.
10287 (latin1-display) <defgroup>: Add :link.
10288 (latin1-display) <function>: Set variable latin1-display.
10289
10290 2001-02-12 Eli Zaretskii <eliz@is.elta.co.il>
10291
10292 * international/mule-cmds.el (set-input-method): Doc fix.
10293
10294 2001-02-12 Eric M. Ludlam <zappo@choochoo.ultranet.com>
10295
10296 * speedbar.el (speedbar-frame-parameters): No toolbar lines.
10297 (speedbar-line-file): Return nil if not a file.
10298 (speedbar-buffers-line-path): Return file for tags, and dir for files.
10299
10300 2001-02-12 Michael Kifer <kifer@cs.sunysb.edu>
10301
10302 * ediff-diff.el (ediff-make-diff2-buffer): Removed bogus checks
10303 for remote files.
10304 (ediff-coding-system-for-read): Replaced the no-conversion default
10305 with raw-text.
10306
10307 * ediff-init.el: Removed :version from defcustom vars.
10308
10309 * ediff-util.el (ediff-compute-custom-diffs-maybe):
10310 Better handling of the diff mode.
10311
10312 * ediff.texi: Added ediff-coding-system-for-read.
10313
10314 * viper.texi: Fix typos.
10315
10316 2001-02-11 Dave Love <fx@gnu.org>
10317
10318 * shadowfile.el: Doc fixes.
10319 (shadow) <defgroup>: Add :link.
10320 (shadowfile-unload-hook): New function.
10321 (shadow-initialize): Use defalias, not fset.
10322 (shadow-define-cluster, shadow-define-literal-group)
10323 (shadow-define-regexp-group, shadow-initialize): Add autoload cookie.
10324
10325 * international/mule.el: Doc and message fixes.
10326
10327 * international/ccl.el (define-ccl-program): Doc fix.
10328
10329 2001-02-11 Kenichi Handa <handa@etl.go.jp>
10330
10331 * faces.el (mode-line): Set :line-width property to -1.
10332
10333 2001-02-10 Richard M. Stallman <rms@gnu.org>
10334
10335 * complete.el (partial-completion-mode): Doc fix.
10336
10337 * simple.el (delete-key-deletes-forward-mode):
10338 Change `let' to `let*' to fix gross bug in last change.
10339
10340 * repeat.el (repeat): Don't let execute-kbd-macro alter
10341 real-last-command.
10342
10343 2001-02-10 Eli Zaretskii <eliz@is.elta.co.il>
10344
10345 * simple.el (eval-expression): Doc fix.
10346
10347 2001-02-09 Dave Love <fx@gnu.org>
10348
10349 * imenu.el (imenu-generic-expression): Doc fix.
10350
10351 * emacs-lisp/re-builder.el (reb-mode): Quote the hook name.
10352 From Juanma Barranquero.
10353
10354 * emacs-lisp/authors.el (authors): Expand `root' before running find.
10355
10356 2001-02-09 Kenichi Handa <handa@etl.go.jp>
10357
10358 * faces.el (set-face-attribute): Describe the case of a negative
10359 value specified for :line-width.
10360
10361 2001-02-08 Stefan Monnier <monnier@cs.yale.edu>
10362
10363 * which-func.el (which-func-mode): Invert which-func-mode-global.
10364 From Juanma Barranquero <lektu@uol.com.br>.
10365
10366 2001-02-08 Dave Love <fx@gnu.org>
10367
10368 * wid-edit.el (widget-plist-convert-widget): Replace binding of
10369 widget-plist-value-type.
10370 (widget-alist-convert-widget): Replace binding of
10371 widget-alist-value-type.
10372
10373 * textmodes/paragraphs.el (sentence-end): Doc fix.
10374
10375 * eshell/em-rebind.el (eshell-cannot-leave-input-list):
10376 Remove `backward-line'.
10377
10378 * play/pong.el (pong-blank-color, pong-bat-color)
10379 (pong-ball-color, pong-border-color, pong-left-key)
10380 (pong-right-key, pong-up-key, pong-down-key, pong-quit-key)
10381 (pong-pause-key, pong-resume-key, pong-timer-delay):
10382 * mail/mh-comp.el (mh-compose-letter-function):
10383 * eshell/esh-mode.el (eshell-skip-prompt-function):
10384 * emulation/viper-ex.el (ex-unix-type-shell-options):
10385 * recentf.el (recentf-menu-filter):
10386 * ps-print.el (ps-print-region-function):
10387 * lpr.el (print-region-function):
10388 * forms.el (forms-mode-hooks):
10389 * dirtrack.el (dirtrack-directory-change-hook):
10390 * cus-start.el (temp-buffer-show-function, display-buffer-function):
10391 * textmodes/spell.el (spell-filter):
10392 * textmodes/fill.el (adaptive-fill-function):
10393 * textmodes/bibtex.el (bibtex-autokey-before-presentation-function):
10394 * progmodes/etags.el (find-tag-default-function):
10395 * progmodes/dcl-mode.el (dcl-calc-command-indent-function):
10396 * progmodes/ada-mode.el (ada-popup-key): Fix :type.
10397
10398 2001-02-07 Eli Zaretskii <eliz@is.elta.co.il>
10399
10400 * emulation/viper-init.el (viper-fast-keyseq-timeout)
10401 (viper-translate-all-ESC-keysequences): Doc fix. From Jim
10402 Meyering <jim@meyering.net>.
10403
10404 * loadup.el: Revert last change.
10405
10406 2001-02-07 Kenichi Handa <handa@etl.go.jp>
10407
10408 * international/mule.el (transform-make-coding-system-args):
10409 Make it work also for coding systems not using CCL.
10410
10411 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
10412
10413 * simple.el (previous-matching-history-element)
10414 (next-matching-history-element): Doc fix.
10415
10416 * loadup.el: Load ccl before utf-8; don't load ccl in the ms-dos
10417 specific part.
10418
10419 2001-02-06 Dave Love <fx@gnu.org>
10420
10421 * add-log.el (add-log-current-defun-function)
10422 (add-log-buffer-file-name-function, add-log-file-name-function):
10423 Fix :type.
10424 (change-log-mode) <font-lock-defaults>: Set SYNTAX-BEGIN.
10425
10426 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
10427
10428 * info.el (info-initialize): Remove the test for system-type when
10429 invocation-directory is non-nil.
10430
10431 * progmodes/make-mode.el (makefile-mode): Set SYNTAX-BEGIN member
10432 of `font-lock-defaults' to `backward-paragraph' rather than nil.
10433
10434 2001-02-06 Andrew Innes <andrewi@gnu.org>
10435
10436 * makefile.w32-in (EMACS): Use $(THISDIR) to make emacs.exe path
10437 absolute.
10438
10439 2001-02-06 David M. Koppelman <koppel@ee.lsu.edu>
10440
10441 * hi-lock.el (hi-lock-mode): Toggling hi-lock-mode now affects all
10442 buffers. When hi-lock turned on rather than only checking current
10443 buffer for regexps, all buffers are checked. Moved activation of
10444 font-lock to hi-lock-refontify. When font-lock turned off rather
10445 than removing added highlighting just in current buffer, remove it
10446 in all buffers. Changed edit menu text from "Automatic
10447 Highlighting" to "Regexp Highlighting" Documentation for
10448 highlighting phrases, minor documentation changes.
10449 (hi-lock-set-file-patterns): Execute only if there are new or
10450 existing file patterns.
10451 (hi-lock-refontify): Assume font-lock-fontify-buffer will first
10452 unfontify and, if a support mode is active, will not refontify the
10453 whole buffer. If necessary, turn on font lock. (Removed
10454 font-lock-unfontify and font-lock support-mode-specific calls,
10455 such as lazy-lock-fontify-window.)
10456 (hi-lock-find-patterns): Do not turn on hi-lock-mode even if
10457 patterns are found. Not useful now since find-file-hook is removed
10458 if hi-lock is off, but may be needed for per-buffer hi-lock activation.
10459 (hi-lock-face-phrase-buffer): New function. Also added related
10460 menu item and keybinding.
10461 (highlight-phrase): New alias, to hi-lock-face-phrase-buffer.
10462 (hi-lock-process-phrase): New function.
10463 (hi-lock-line-face-buffer): Doc fixes.
10464 (hi-lock-face-buffer): Doc fixes.
10465 (hi-lock-unface-buffer): Doc fixes.
10466
10467 2001-02-06 Gerd Moellmann <gerd@gnu.org>
10468
10469 * dabbrev.el (dabbrev-ignored-buffer-regexps): Renamed from
10470 dabbrev-ignored-regexps.
10471
10472 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
10473
10474 * simple.el (kill-line): Doc fix.
10475
10476 2001-02-05 Dave Love <fx@gnu.org>
10477
10478 * loadup.el: Revert last two changes -- bootstrapping works with
10479 regenerated loaddefs.
10480
10481 2001-02-05 Eli Zaretskii <eliz@is.elta.co.il>
10482
10483 * isearch.el (isearch-forward): Doc fix.
10484
10485 * textmodes/nroff-mode.el (nroff-mode): Set the SYNTAX-BEGIN part
10486 of font-lock-defaults to backward-paragraph.
10487
10488 2001-02-05 Gerd Moellmann <gerd@gnu.org>
10489
10490 * mail/rmail.el (rmail-ignored-headers): Add X-Trace,
10491 X-Complaints-To, NNTP-Posting-Date, and User-Agent.
10492
10493 2001-02-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10494
10495 * ebnf2ps.el: Eliminate time-stamp functions.
10496 (ebnf-version): New version (3.5).
10497 (ebnf-eps-finish-and-write): Replace time-stamp functions by
10498 format-time-string.
10499
10500 2001-02-05 Gerd Moellmann <gerd@gnu.org>
10501
10502 * simple.el (next-line): Goto end-of-line before inserting a newline.
10503
10504 2001-02-05 Miles Bader <miles@gnu.org>
10505
10506 * image-file.el (insert-image-file): When visiting an image, also
10507 set `truncate-lines' to t so that any fringe arrow looks correct.
10508
10509 2001-02-05 Kenichi Handa <handa@etl.go.jp>
10510
10511 * isearch.el (isearch-forward): Add description about input method
10512 in the docsting.
10513
10514 2001-02-04 Stefan Monnier <monnier@cs.yale.edu>
10515
10516 * skeleton.el (skeleton-internal-1): Always push the mark for @.
10517
10518 2001-02-02 Eli Zaretskii <eliz@is.elta.co.il>
10519
10520 * info.el (info-initialize): If installation-directory is nil, for
10521 DOS/Windows systems try looking in a sibling of invocation-directory.
10522
10523 2001-02-02 Gerd Moellmann <gerd@gnu.org>
10524
10525 * wid-edit.el (widget-button-click): Fix last change.
10526
10527 * frame.el (frame-notice-user-settings): When resizing the initial
10528 frame because the tool bar is off, also change the frame's top
10529 position if a negative top position was specified.
10530
10531 2001-02-02 Miles Bader <miles@gnu.org>
10532
10533 * image-file.el (insert-image-file): When visiting an image,
10534 suppress the cursor in the image buffer.
10535
10536 2001-02-01 Dave Love <fx@gnu.org>
10537
10538 * progmodes/f90.el (f90-mode): Remove startup message.
10539
10540 * vc-cvs.el: Remove autoloads. Require vc when compiling.
10541
10542 2001-02-01 Gerd Moellmann <gerd@gnu.org>
10543
10544 * startup.el (command-line): Fix code determining whether or not
10545 to use delete-key-deletes-forward-mode.
10546
10547 2001-02-01 Andre Spiegel <spiegel@gnu.org>
10548
10549 * vc.el (vc-diff-switches): New user option.
10550 (vc-version-diff): Use it.
10551 (vc-diff-switches-list): New macro.
10552
10553 * vc-{rcs,cvs,sccs}.el: (vc-BACKEND-diff-switches):
10554 New customization options.
10555 (vc-BACKEND-diff): Use new options via vc-diff-switches-list.
10556
10557 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Return correct status.
10558
10559 2001-02-01 Gerd Moellmann <gerd@gnu.org>
10560
10561 * msb.el (toplevel): Quote hook symbols.
10562
10563 2001-02-01 Kenichi Handa <handa@etl.go.jp>
10564
10565 * international/mule.el (make-coding-system): Add description
10566 about recognized properties in the docstring.
10567
10568 * international/mule-conf.el: Remove unused charsets
10569 mac-roman-lower and mac-roman-upper.
10570
10571 2001-01-31 Gerd Moellmann <gerd@gnu.org>
10572
10573 * textmodes/fill.el (set-fill-prefix): Cancel fill prefix if point
10574 is in front of the left-margin, if any.
10575
10576 * simple.el (delete-key-deletes-forward-mode): Treat `kp-delete'
10577 like `delete'.
10578
10579 * bindings.el: Define `kp-delete' like `delete' in function-key-map.
10580
10581 * term/w32-win.el (mouse-set-font): Doc fix.
10582
10583 2001-01-31 Stefan Monnier <monnier@cs.yale.edu>
10584
10585 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer): Doc fix.
10586 (hi-lock-find-patterns): Turn on font-lock-mode, if it is not
10587 on already.
10588
10589 2001-01-31 Markus Rost <rost@math.ohio-state.edu>
10590
10591 * files.el (save-buffer): Don't give message if (buffer-file-name)
10592 returns nil.
10593
10594 2001-01-31 Eli Zaretskii <eliz@is.elta.co.il>
10595
10596 * toolbar/tool-bar.el (tool-bar-add-item): Doc fix.
10597
10598 * emacs-lisp/re-builder.el (reb-update-modestring): Don't use
10599 concat for integers. From Juanma Barranquero <lektu@uol.com.br>.
10600
10601 * term/w32-win.el (redisplay-dont-pause): Set to t to alleviate
10602 display problems.
10603
10604 2001-01-31 Kenichi Handa <handa@etl.go.jp>
10605
10606 * international/mule.el (charset-info): Fix docstring.
10607
10608 * international/mule-diag.el (describe-character-set): Check final
10609 char valid before printing it.
10610
10611 2001-01-30 Gerd Moellmann <gerd@gnu.org>
10612
10613 * lpr.el (lpr-windows-system, lpr-lp-system): Add autoload cookies.
10614
10615 * frame.el (frame-notice-user-settings): Do the tool-bar
10616 stuff only for graphical displays. Fix a braino.
10617
10618 * frame.el (frame-initialize): Create initial frame visible.
10619 (frame-notice-user-settings): When tool-bar has been switched off,
10620 correct the frame size and sync tool-bar-mode.
10621
10622 * startup.el (command-line): Remove manipulation of frame
10623 height for tool bars.
10624
10625 2001-01-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10626
10627 * lpr.el: Compatibility with XEmacs and doc fixes.
10628 (lpr-windows-system, lpr-lp-system): New vars.
10629 (lpr-printer-switch): New defcustom.
10630 (printer-name, lpr-command): Customization fix.
10631 (print-region-1): Code fix.
10632 (print-region-new-buffer, printify-region): Indentation fix.
10633 (lpr-eval-switch, lpr-flatten-list, lpr-flatten-list-1):
10634 New functions.
10635
10636 2001-01-29 Gerd Moellmann <gerd@gnu.org>
10637
10638 * msb.el (toplevel): Fix the eval-after-load.
10639
10640 2001-01-29 Dave Love <fx@gnu.org>
10641
10642 * eshell/esh-ext.el (eshell-windows-shell-file): Fix :type.
10643
10644 * eshell/em-ls.el (eshell-ls-exclude-regexp): Fix :type.
10645
10646 * progmodes/tcl.el (outline, dabbrev, add-log): Require when compiling.
10647 (tcl-using-emacs-19-23): Consider Emacs 21+.
10648 (tcl-help-directory-list, tcl-command-switches): Fix :type.
10649 (tcl-add-emacs-menu): Supply menu name.
10650 (tcl-beginning-of-defun, tcl-end-of-defun): Defalias, don't fset.
10651
10652 2001-01-29 Gerd Moellmann <gerd@gnu.org>
10653
10654 * simple.el (delete-trailing-whitespace): Don't delete formfeeds.
10655
10656 2001-01-29 Stefan Monnier <monnier@cs.yale.edu>
10657
10658 * pcvs.el (cvs-mark-fis-dead): New function.
10659 (cvs-mode-add): Use it.
10660 (cvs-mode-add-change-log-entry-other-window):
10661 Rebind change-log-default-name to itself rather than to nil.
10662
10663 2001-01-29 Sam Steingold <sds@gnu.org>
10664
10665 * vc-cvs.el: Replaced (require 'vc) with a bunch of
10666 `autoload' statements.
10667
10668 2001-01-29 Eli Zaretskii <eliz@is.elta.co.il>
10669
10670 * files.el (confirm-kill-emacs): Doc fix.
10671
10672 * frame.el (frame-initialize): Doc fix.
10673
10674 * time-stamp.el (time-stamp-string): Doc fix.
10675
10676 * woman.el (WoMan-log-1): Make the log buffer writable.
10677 From Markus Rost <rost@math.ohio-state.edu>.
10678
10679 2001-01-29 Gerd Moellmann <gerd@gnu.org>
10680
10681 * imenu.el (imenu-syntax-alist): Add autoload cookie for
10682 the `make-variable-buffer-local'.
10683
10684 2001-01-29 Dave Love <fx@gnu.org>
10685
10686 * ansi-color.el (ansi-color-for-comint-mode): Add :version.
10687 (ansi-color-for-comint-mode-on, ansi-color-process-output):
10688 Add autoload cookie.
10689 (ansi-color-apply-sequence): Fix typo.
10690
10691 2001-01-29 Gerd Moellmann <gerd@gnu.org>
10692
10693 * menu-bar.el (menu-bar-files-menu): Add menu items for
10694 Postscript printing in black and white.
10695
10696 * mail/rmail.el (rmail-ignored-headers): Add X-Sign, X-BeenThere,
10697 X-Mailman-Version, Precedence, List-Help, List-Post,
10698 List-Subscribe, List-Id, List-Unsubscribe, List-Archive,
10699 Content-Type, Content-Length.
10700
10701 2001-01-29 Dave Love <fx@gnu.org>
10702
10703 * elide-head.el (elide-head): Make overlay evaporate.
10704
10705 * international/mule-conf.el (chinese-big5-1, chinese-big5-2): Doc fix.
10706
10707 2001-01-28 Eli Zaretskii <eliz@is.elta.co.il>
10708
10709 * isearch.el (isearch-highlight): Don't punt if the display
10710 doesn't support colors, since isearch faces are defined for
10711 monochrome displays as well.
10712
10713 2001-01-27 Sam Steingold <sds@gnu.org>
10714
10715 * shell.el (shell-write-history-on-exit): Make sure that we are in
10716 the shell buffer (M-x tex-file RET inserted the error message into
10717 the TeX buffer).
10718
10719 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
10720
10721 * simple.el (transient-mark-mode): Doc fix.
10722
10723 2001-01-27 Gerd Moellmann <gerd@gnu.org>
10724
10725 * progmodes/etags.el (find-tag-noselect): Don't bind tags-file-name.
10726
10727 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
10728
10729 * shell.el (shell-unquote-argument): If the shell is one of the
10730 mentioned in shell-dumb-shell-regexp, don't treat a backslash as a
10731 quote character.
10732 (shell-dumb-shell-regexp): Document that the shells which match
10733 this regexp are supposed to not treat a backslash as a quote character.
10734
10735 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Undo the change
10736 from 2001-01-12. It is not needed, since backspace is mapped into DEL.
10737
10738 2001-01-27 Richard M. Stallman <rms@gnu.org>
10739
10740 * dabbrev.el (dabbrev--substitute-expansion):
10741 Treat a one-capital-letter abbrev as "not all upper case",
10742 so as to force preservation of the expansion's pattern
10743 if the expansion starts with a capital letter.
10744
10745 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
10746
10747 * facemenu.el (facemenu-set-face, facemenu-set-face-from-menu):
10748 Doc fix.
10749
10750 * simple.el (transient-mark-mode): Document the fact that many
10751 commands act on the region when mark is active.
10752
10753 2001-01-27 Kenichi Handa <handa@etl.go.jp>
10754
10755 * international/quail.el (quail-setup-completion-buf): Make the
10756 multibyteness of current buffer inherited to Quail completion buffer.
10757 (quail-show-guidance-buf): Make the multibyteness of current
10758 buffer inherited to Quail guidance buffer.
10759 (quail-help): Make the multibyteness of current buffer inherited
10760 to Quail help buffer.
10761
10762 2001-01-26 Dave Love <fx@gnu.org>
10763
10764 * time-stamp.el: Doc fixes.
10765
10766 * progmodes/delphi.el (delphi-comment-face, delphi-string-face)
10767 (delphi-keyword-face, delphi-other-face): Fix :type.
10768
10769 * textmodes/flyspell.el: Doc fixes. Add :version to new options.
10770
10771 * mail/feedmail.el (feedmail): Add :link.
10772 (feedmail-send-it): Doc fix.
10773
10774 * mail/sendmail.el: Doc fixes.
10775 (sendmail-send-it): Fix the non-ASCII regexp and use
10776 rfc2047-encode-string.
10777
10778 * dired.el, dired-aux.el: Revert last change.
10779
10780 2001-01-26 Gerd Moellmann <gerd@gnu.org>
10781
10782 * makefile.w32-in (DONTCOMPILE): Add various term files.
10783
10784 2001-01-26 Dave Love <fx@gnu.org>
10785
10786 * Makefile.in (DONTCOMPILE): Add various term files.
10787
10788 2001-01-26 Gerd Moellmann <gerd@gnu.org>
10789
10790 * man.el (Man-default-man-entry, Man-mode): Doc fix.
10791
10792 * startup.el (display-startup-echo-area-message): Make sure
10793 the echo area is resized to fit the size of the startup message.
10794
10795 * gud.el (gud-perldb-massage-args): Avoid nreverse'ing a list
10796 part of which is a constant.
10797
10798 2001-01-26 Eli Zaretskii <eliz@is.elta.co.il>
10799
10800 * loadup.el (Top-level) [ms-dos]: Don't load international/ccl twice.
10801
10802 2001-01-26 Richard M. Stallman <rms@gnu.org>
10803
10804 * simple.el (next-line): Don't let `newline' expand abbrevs.
10805 Simplify slightly.
10806 (open-line): Don't let `newline' expand abbrevs.
10807
10808 2001-01-25 John Wiegley <johnw@gnu.org>
10809
10810 * eshell/esh-util.el (eshell-ange-ls-uids): Changed use of `alist'
10811 to `repeat' in the :type field.
10812
10813 * pcomplete.el (pcomplete-file-ignore): Changed a :type field to
10814 allow a choice of regexp or nil.
10815 (pcomplete-dir-ignore): Same.
10816
10817 * eshell/em-unix.el (eshell/occur): Fixed bug causing `occur' (as
10818 a command) to always fail.
10819
10820 2001-01-25 Gerd Moellmann <gerd@gnu.org>
10821
10822 * iswitchb.el (iswitchb-make-buflist): When nconc'ing lists, don't
10823 discard the result.
10824 (iswitchb-to-end): Likewise.
10825
10826 2001-01-25 Sam Steingold <sds@gnu.org>
10827
10828 * vc-cvs.el (vc-cvs-mode-line-string): Doc & comment fix.
10829 Require vc.
10830
10831 2001-01-25 Stefan Monnier <monnier@cs.yale.edu>
10832
10833 * smerge-mode.el (smerge-font-lock-keywords): Relax submatch 1.
10834
10835 * emacs-lisp/easy-mmode.el (define-minor-mode): Docstring fix.
10836
10837 2001-01-25 Dave Love <fx@gnu.org>
10838
10839 * lisp/international/mule-diag.el (describe-char-after): Doc fix.
10840 (describe-coding-system): Tweak the English text.
10841
10842 * loadup.el: Preload international/ccl for utf-8.
10843
10844 2001-01-25 Eli Zaretskii <eliz@is.elta.co.il>
10845
10846 * mail/rmail.el (rmail-redecode-body): Doc fix.
10847
10848 2001-01-25 Kenichi Handa <handa@etl.go.jp>
10849
10850 * international/mule-cmds.el (reset-language-environment):
10851 Reset coding-category-utf-8 to mule-utf-8.
10852
10853 * international/mule-conf.el (coding-category-utf-8):
10854 Initialize to mule-utf-8.
10855
10856 * loadup.el: Preload international/utf-8.
10857
10858 * international/utf-8.el: New file.
10859
10860 2001-01-24 Stefan Monnier <monnier@cs.yale.edu>
10861
10862 * diff-mode.el (diff-mode): Disable preliminary support for `compile'.
10863
10864 2001-01-24 Sam Steingold <sds@gnu.org>
10865
10866 * dired.el (dired-replace-in-string): Removed.
10867 (dired-sort-toggle): Use `replace-regexps-in-string'
10868 instead of `dired-replace-in-string'.
10869
10870 * dired-aux.el (dired-shell-stuff-it, dired-rename-subdir)
10871 (dired-rename-subdir-2, dired-insert-subdir-doinsert): Ditto.
10872
10873 * gs.el (gs-replace-in-string): Removed.
10874 (gs-options): Use `replace-regexps-in-string'
10875 instead of `gs-replace-in-string'.
10876
10877 2001-01-24 Eli Zaretskii <eliz@is.elta.co.il>
10878
10879 * mail/emacsbug.el (report-emacs-bug): Mention the fact that the
10880 bug report is mailed to an email list and posted to a news group.
10881
10882 2001-01-24 Gerd Moellmann <gerd@gnu.org>
10883
10884 * comint.el (comint-replace-by-expanded-history-before-point):
10885 Fix change of 2000-08-03 to move point to the start of the line again.
10886
10887 * startup.el (tool-bar-images-pixel-height): New variable.
10888 (command-line): After loading the user's init file, when
10889 tool-bar-mode is on, increase the frame's size by some lines for
10890 the tool-bar.
10891
10892 * frame.el (frame-initialize): Create the initial frame invisible.
10893
10894 2001-01-24 ShengHuo ZHU <zsh@cs.rochester.edu>
10895
10896 * language/chinese.el (chinese-iso-8bit): MIME:GB2312.
10897 (chinese-big5): MIME:Big5.
10898
10899 2001-01-24 Gerd Moellmann <gerd@gnu.org>
10900
10901 * international/mule-cmds.el (universal-coding-system-argument):
10902 Handle commands with prefix args.
10903
10904 2001-01-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10905
10906 * calendar/diary-lib.el (diary-float): Fix case of MONTH
10907 being a list of numbers.
10908 (diary-mail-entries): Rewritten.
10909
10910 2001-01-23 Dave Love <fx@gnu.org>
10911
10912 * international/mule.el (make-coding-system): Fix typo.
10913
10914 * textmodes/outline.el (outline-mode) <font-lock-defaults>:
10915 Add backward-paragraph as font-lock-beginning-of-syntax-function.
10916
10917 2001-01-23 Eli Zaretskii <eliz@is.elta.co.il>
10918
10919 * font-lock.el (font-lock-mode): Doc fix.
10920
10921 2001-01-23 Kenichi Handa <handa@etl.go.jp>
10922
10923 * international/mule.el (make-translation-table): Fix docstring.
10924
10925 2001-01-22 Eli Zaretskii <eliz@is.elta.co.il>
10926
10927 * mail/rmail.el (rmail-redecode-body): New function.
10928
10929 * icomplete.el (icomplete-minibuffer-setup-hook): Doc fix.
10930
10931 2001-01-22 Gerd Moellmann <gerd@gnu.org>
10932
10933 * isearch.el (isearch-lazy-highlight-case-fold-search)
10934 (isearch-lazy-highlight-regexp): New variables.
10935 (isearch-lazy-highlight-cleanup): Update lazy highlight if
10936 case-fold search or regexp search has been toggled.
10937
10938 * wid-edit.el (widget-button-click): Avoid a save-excursion
10939 around running a global binding.
10940
10941 * isearch.el (isearch-lazy-highlight-initial-delay): Set default
10942 to 0.25.
10943
10944 2001-01-20 Miles Bader <miles@gnu.org>
10945
10946 * cus-edit.el (custom-face-save): Do post-processing on the face's
10947 new value like `custom-face-set' does.
10948
10949 2001-01-19 Eli Zaretskii <eliz@is.elta.co.il>
10950
10951 * mail/emacsbug.el (report-emacs-bug): Report the value of
10952 LC_CTYPE, not LC_TYPE.
10953
10954 * isearch.el (isearch-forward): Add isearch-toggle-case-fold,
10955 isearch-toggle-regexp and isearch-edit-string to doc string.
10956
10957 2001-01-19 Gerd Moellmann <gerd@gnu.org>
10958
10959 * textmodes/texinfo.el (texinfo-mode): Use backward-paragraph
10960 as font-lock-beginning-of-syntax-function in font-lock-defaults.
10961
10962 * jit-lock.el (jit-lock-fontify-now): Don't bind
10963 font-lock-beginning-of-syntax-function to nil.
10964
10965 2001-01-19 Eli Zaretskii <eliz@is.elta.co.il>
10966
10967 * mail/emacsbug.el (report-emacs-bug): Report values of
10968 locale-coding-system, default-enable-multibyte-characters, and the
10969 environment variables LC_ALL, LC_TYPE, and LANG.
10970
10971 2001-01-19 Gerd Moellmann <gerd@gnu.org>
10972
10973 * font-lock.el (font-lock-default-fontify-region): Fix last change.
10974
10975 * font-lock.el (font-lock-multiline): Default to nil.
10976 (font-lock-default-fontify-region): If font-lock-multiline is
10977 nil, don't check the property `font-lock-multiline'.
10978
10979 * jit-lock.el (jit-lock-after-change): If font-lock-multiline
10980 is nil, don't check the `font-lock-multiline' text property.
10981
10982 2001-01-19 Michael Kifer <kifer@cs.sunysb.edu>
10983
10984 * viper.el: Call initial-major-mode on startup.
10985
10986 * ediff.el (ediff-patch-file): Use better defaults.
10987
10988 * ediff-vers.el: Fix for 8+3 DOS file systems.
10989
10990 2001-01-19 Colin Walters <walters@cis.ohio-state.edu>
10991
10992 * ediff-util.el (ediff-compare-custom-diffs-maybe): Put diff in
10993 diff mode, if available.
10994
10995 2001-01-19 Michael Kifer <kifer@cs.sunysb.edu>
10996
10997 * ediff-hook.el (ediff-xemacs-init-menus): Fixed add-menu-button.
10998
10999 * ediff-init.el (subst-char-in-string): Define and use it, unless
11000 it's already defined.
11001
11002 2001-01-18 Gerd Moellmann <gerd@gnu.org>
11003
11004 * tooltip.el (tooltip-hide-delay): New user-option.
11005 (tooltip-show): Use tooltip-hide-delay instead of the default.
11006
11007 2001-01-18 Kenichi Handa <handa@etl.go.jp>
11008
11009 * mail/sendmail.el (mail-setup): Call set-buffer-multibyte because
11010 kill-local-variable doesn't work for enable-multibyte-characters.
11011
11012 2001-01-17 Dave Love <fx@gnu.org>
11013
11014 * ediff-init.el (ediff-before-setup-hook)
11015 (ediff-merge-filename-prefix): Add :version.
11016
11017 * international/latin1-disp.el: Require disp-table.
11018 (latin1-display): Fix :set.
11019
11020 * net/eudc-vars.el (eudc-server, eudc-protocol): Fix :type.
11021
11022 2001-01-17 Gerd Moellmann <gerd@gnu.org>
11023
11024 * isearch.el (isearch-lazy-highlight-initial-delay)
11025 (isearch-lazy-highlight-interval): Default to 0.
11026
11027 2001-01-17 Bob Glickstein <bobg@zanshin.com>
11028
11029 * isearch.el (isearch-highlight): Set isearch-overlay priority to
11030 1 here rather than each time through
11031 isearch-lazy-highlight-new-loop.
11032 (isearch-lazy-highlight-max): Variable deleted.
11033 (isearch-lazy-highlight-max-at-a-time): New user variable, like
11034 isearch-lazy-highlight-max but controls a single invocation of
11035 isearch-lazy-highlight-update.
11036 (isearch-lazy-highlight-wrapped): Variable recreated.
11037 (isearch-lazy-highlight-window-start): New variable.
11038 (isearch-lazy-highlight-cleanup): Restored to behavior of
11039 before 2-Jan.
11040 (isearch-lazy-highlight-remove-overlays): Function deleted;
11041 behavior folded into isearch-lazy-highlight-cleanup. "Keep"
11042 behavior removed.
11043 (isearch-lazy-highlight-new-loop): Restore old behavior of calling
11044 isearch-lazy-highlight-update in a loop rather than just once.
11045 Test isearch-invalid-regexp here and decide not to start a new
11046 loop, rather than testing it each time through
11047 isearch-lazy-highlight-update.
11048 (isearch-lazy-highlight-search): Function restored.
11049 (isearch-lazy-highlight-update): Get called in a timer loop again,
11050 but this time highlight more than one match each time through.
11051 Only highlight matches in the visible part of the window.
11052 Start at point, move in the direction of the search, and wrap around at
11053 the edge of the window. Use sit-for to force redisplay and ensure
11054 window-start is credible. "Face suppressing" behavior removed;
11055 overlay priorities should make it unnecessary, right?
11056 (isearch-highlight): Face suppressing behavior removed.
11057 (isearch-dehighlight): Face suppressing behavior removed.
11058 (isearch-set-lazy-highlight-faces-at): Removed.
11059
11060 2001-01-17 Kenichi Handa <handa@etl.go.jp>
11061
11062 * language/european.el ("Latin-1"): Make the format of description
11063 about additional language environments same as that of Latin-2.
11064
11065 2001-01-16 Dave Love <fx@gnu.org>
11066
11067 * isearch.el (isearch-lazy-highlight): Add :version.
11068
11069 * simple.el (backward-delete-char-untabify-method)
11070 (next-line-add-newlines): Add :version.
11071
11072 2001-01-16 Gerd Moellmann <gerd@gnu.org>
11073
11074 * bindings.el: Bind <backspace> and <delete> via function-key-map.
11075 Don't bind <delete> otherwise.
11076
11077 * simple.el (delete-key-deletes-forward-mode): Bind <backspace>
11078 and <delete> via function-key-map.
11079
11080 * textmodes/flyspell.el (mail-mode-flyspell-verify): Check in
11081 Subject line only if point is after the `Subject:'.
11082
11083 2001-01-16 Kenichi Handa <handa@etl.go.jp>
11084
11085 * language/japanese.el ("Japanese"): Add japanese-jisx0213-1 and
11086 japanese-jisx0213-2 in `charset' property of this lang. env.
11087
11088 * language/european.el ("Latin-1"): Add description for Dutch and
11089 Spanish lang. env.
11090
11091 * international/mule.el (decode-char): Fix conditions.
11092 (encode-char): Handle eight-bit-control too.
11093 (transform-make-coding-system-args): New function.
11094 (make-coding-system): Accept XEmacs style arguments for CCL base
11095 coding system.
11096
11097 2001-01-15 Gerd Moellmann <gerd@gnu.org>
11098
11099 * progmodes/etags.el (find-tag-noselect): Save the value of
11100 tags-file-name before switching buffers, for the case it has a
11101 buffer-local value.
11102
11103 2001-01-15 Alex Schroeder <alex@gnu.org>
11104
11105 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
11106 From Dave Love <fx@gnu.org>.
11107 (ansi-color-for-comint-mode): Fix :version.
11108
11109 2001-01-15 Alex Schroeder <alex@gnu.org>
11110
11111 * ansi-color.el (ansi-color-unfontify-region): Doc change.
11112
11113 2001-01-14 Eli Zaretskii <eliz@is.elta.co.il>
11114
11115 * dired.el (dired-insert-directory): If file-system-info fails,
11116 remove the " free " part, but don't signal an error.
11117
11118 2001-01-12 Sam Steingold <sds@gnu.org>
11119
11120 * bookmark.el (bookmark-maybe-historicize-string):
11121 Use new backquote syntax.
11122
11123 2001-01-12 Richard M. Stallman <rms@gnu.org>
11124
11125 * subr.el (last): Handle a list that doesn't end in nil.
11126
11127 2001-01-12 Sam Steingold <sds@gnu.org>
11128
11129 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind `backspace'
11130 to `backward-delete-char-untabify'.
11131
11132 2001-01-12 Dave Love <fx@gnu.org>
11133
11134 * cus-edit.el (customize-menu-create): Fix the :filter following
11135 easymenu change.
11136
11137 * wid-edit.el (function): Add :match-alternatives.
11138 (widget-color-action): Doc fix.
11139
11140 2001-01-12 Gerd Moellmann <gerd@gnu.org>
11141
11142 * calendar/calendar.el (calendar-basic-setup): Doc fix.
11143
11144 2001-01-12 Kenichi Handa <handa@etl.go.jp>
11145
11146 * international/mule-cmds.el (prefer-coding-system): Fix docstring.
11147
11148 * international/ccl.el (define-ccl-program): Fix docstring.
11149
11150 2001-01-11 Dave Love <fx@gnu.org>
11151
11152 * international/mule-cmds.el (standard-display-european-internal):
11153 Set display table for 2208 as for 160.
11154
11155 * progmodes/ada-mode.el (ada-popup-key): Fix last change.
11156
11157 * progmodes/fortran.el (fortran-mode-map): Modify Customization
11158 entry for custom-menu-create change.
11159 (fortran-strip-sqeuence-nos): Make arg optional. Fix regexp and
11160 don't cons it in the search loop.
11161
11162 * imenu.el (imenu--truncate-items): Revert last change.
11163
11164 2001-01-11 Eli Zaretskii <eliz@is.elta.co.il>
11165
11166 * info.el (Info-setup-header-line): If the node header includes
11167 either Next: or Prev: links, don't show the File: and Node: parts
11168 in the header line.
11169
11170 2001-01-11 Gerd Moellmann <gerd@gnu.org>
11171
11172 * comint.el (comint-goto-process-mark): Don't print a message
11173 when running in batch mode.
11174
11175 * isearch.el (isearch-search): In the condition-case handler for
11176 `error', set isearch-invalid-regexp to the whole error message.
11177
11178 * subr.el (eval-after-load): Call load-symbol-file-load-history to
11179 ensure that eval-after-load works for files dumped with Emacs.
11180
11181 * help.el (load-symbol-file-load-history): New function extracted
11182 from function symbol-file.
11183 (symbol-file): Use it.
11184
11185 * toolbar/save.xpm, toolbar/undo.xpm: Use the same colors as exit.xpm.
11186
11187 2001-01-11 Eli Zaretskii <eliz@is.elta.co.il>
11188
11189 * progmodes/etags.el (find-tag-interactive): If last-tag is nil,
11190 behave as if there were no prefix argument.
11191 (find-tag-noselect): If last-tag is nil, behave as if the NEXT-P
11192 argument were nil.
11193
11194 2001-01-11 Richard M. Stallman <rms@gnu.org>
11195
11196 * isearch.el (isearch-lazy-highlight-update):
11197 Don't look for more potential matches once maximum is exceeded.
11198 Use overlays-in to check correctly for overlap with current match.
11199 Ignore empty matches.
11200
11201 2001-01-11 Miles Bader <miles@gnu.org>
11202
11203 * textmodes/ispell.el (ispell-adjusted-window-height): New function.
11204 (ispell-overlay-window, ispell-help, ispell-show-choices)
11205 (ispell-command-loop): Use it instead of `window-height'.
11206
11207 2001-01-10 Gerd Moellmann <gerd@gnu.org>
11208
11209 * files.el (confirm-kill-emacs): New user-option.
11210 (save-buffers-kill-emacs): Ask for final confirmation before
11211 killing Emacs.
11212
11213 * isearch.el (isearch-done): Set isearch-lazy-highlight-start
11214 to nil.
11215
11216 2001-01-10 Dave Love <fx@gnu.org>
11217
11218 * progmodes/etags.el (tags-apropos-additional-actions): Fix :type.
11219
11220 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix doc, :type.
11221
11222 * hi-lock.el (hi-lock-exclude-modes): Fix :type.
11223
11224 * calculator.el (calculator-number-digits): Fix :type.
11225
11226 * vc-cvs.el (vc-cvs-header): Fix :type.
11227 * vc-rcs.el (vc-rcs-header): Fix :type.
11228 * vc-sccs.el (vc-sccs-header): Fix :type.
11229
11230 * progmodes/ada-mode.el (ada-popup-key): Fix :type.
11231
11232 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
11233
11234 * eshell/esh-util.el (eshell-ange-ls-uids): Fix :type.
11235
11236 2001-01-10 Gerd Moellmann <gerd@gnu.org>
11237
11238 * simple.el (set-variable): Force a thorough redisplay for the
11239 case that the variable has an effect on the display, like
11240 `tab-width' has.
11241
11242 2001-01-10 Andre Spiegel <spiegel@gnu.org>
11243
11244 * vc.el: Add documentation for backend interface.
11245
11246 2001-01-10 Kenichi Handa <handa@etl.go.jp>
11247
11248 * font-lock.el (c-font-lock-extra-types): Add "Lisp_Object".
11249
11250 * international/mule-conf.el (latin-extra-code-table): Set to t
11251 for \223 and \224.
11252
11253 2001-01-09 Kenichi Handa <handa@etl.go.jp>
11254
11255 * international/mule-cmds.el (locale-language-names): Map "es" to
11256 "Spanish" and "nl" to "Dutch".
11257
11258 2001-01-09 Gerd Moellmann <gerd@gnu.org>
11259
11260 * bindings.el (global-map): Bind <home> to beginning-of-line,
11261 <end> to end-of-line, C-<home> to beginning-of-buffer, and
11262 C-<end> to end-of-buffer.
11263
11264 * language/european.el: Add Dutch and Spanish language info
11265 to be able to use the appropriate tutorials.
11266
11267 2001-01-09 Alex Schroeder <alex@gnu.org>
11268
11269 * ansi-color.el (ansi-color-process-output): Use markers instead
11270 of positions for start and end of region.
11271 (ansi-color-apply-on-region): Rewrote code to make it more robust.
11272 Previously, occasional mistakes happend when fontifying many
11273 chunks of output (eg. ls --color=yes /dev). This happened
11274 whenever an overlay was created up to the end of the region, which
11275 coincided with the process-mark. New text would then be added
11276 within that overlay instead of after it.
11277 (ansi-color-make-extent): Overlays are created with the property
11278 `modification-hooks' set to '(ansi-color-freeze-overlay).
11279 (ansi-color-freeze-overlay): New function. When inserting text at
11280 the end of the overlay, the overlay will resize.
11281
11282 2000-01-09 Alex Schroeder <alex@gnu.org>
11283
11284 * ansi-color.el (ansi-color-process-output): Doc change.
11285 (ansi-color-unfontify-region): Doc change. No longer installed
11286 automatically in font-lock-unfontify-region-function.
11287 (ansi-color-apply): Doc change.
11288 (ansi-color-apply-on-region): Use extents or overlays instead of
11289 text-properties.
11290 (ansi-color-make-extent): New function.
11291 (ansi-color-set-extent-face): New function.
11292
11293 2000-01-09 Alex Schroeder <alex@gnu.org>
11294
11295 * ansi-color.el (ansi-color-process): Removed, Emacs and XEmacs
11296 both use ansi-color-process-output, now.
11297 (ansi-color-process-output): Doesn't return string anymore. It is
11298 installed in comint-output-filter-functions for both Emacs and
11299 XEmacs, now.
11300 (ansi-color-unfontify-region): Simplified code removing variables
11301 pos and start-ansi.
11302 (ansi-color-apply): Put text-property ansi-color before putting
11303 text-property face because ansi-color-unfontify-region is called
11304 immediately after the call to put-text-property.
11305 (ansi-color-context-region): Doc change.
11306 (ansi-color-filter-region): Simplified code.
11307 (ansi-color-apply-on-region): Changed start to start-marker, using
11308 a marker explicitly. Put text-property ansi-color before putting
11309 text-property face because ansi-color-unfontify-region is called
11310 immediately after the call to put-text-property.
11311
11312 2000-01-09 Alex Schroeder <alex@gnu.org>
11313
11314 * ansi-color.el (ansi-color-faces-vector): Doc change.
11315 (ansi-color-for-comint-mode): Changed :type property to choice.
11316 (ansi-color-last-context): Removed.
11317 (ansi-color-process-output): Don't use ansi-color-last-context, as
11318 the main functions will store their context now.
11319 (ansi-color-context): Doc change.
11320 (ansi-color-filter-apply): Rewrote it based on ansi-color-apply.
11321 Uses ansi-color-context such that repeated calls will strip
11322 partial escape sequences, too.
11323 (ansi-color-apply): Simplified code. Colorize end of string if
11324 face is not null. Store context in new (FACE STRING) format, such
11325 that repeated calls will strip partial escape sequences, too.
11326 Append faces to face property using ansi-color-apply-sequence such
11327 that cumulative mode actually works.
11328 (ansi-color-context-region): New variable.
11329 (ansi-color-filter-region): Rewrote it based on
11330 ansi-color-apply-on-region. Uses ansi-color-context-region such
11331 that repeated calls will strip partial escape sequences, too.
11332 (ansi-color-apply-on-region): Simplified code. Colorize end of
11333 region if face is not null. Store context in new (FACE POS)
11334 format, such that repeated calls will strip partial escape
11335 sequences, too. Append faces to face property using
11336 ansi-color-apply-sequence such that cumulative mode actually works.
11337 (ansi-color-apply-sequence): New function.
11338 (ansi-color-get-face): When the default face is added to the list
11339 of faces, all previous settings are discarded and the list of
11340 faces is set to '(default).
11341
11342 2000-01-09 Alex Schroeder <alex@gnu.org>
11343
11344 * ansi-color.el (ansi-color-faces-vector): Use nil for the default
11345 face, such that ansi-color-apply and ansi-color-apply-on-region
11346 will do the right thing.
11347 (ansi-color-apply): Do the right thing, ie. if ansi-color-get-face
11348 returns nil, set the list of faces back to nil instead of
11349 appending the result of ansi-color-get-face to the front of the list.
11350
11351 2000-01-09 Alex Schroeder <alex@gnu.org>
11352
11353 * ansi-color.el (ansi-color-for-comint-mode): Doc change.
11354 (ansi-color-process): Doc change.
11355 (ansi-color-last-context): New buffer-local variable.
11356 (ansi-color-process-output): New function. It is automatically
11357 added to comint-output-filter-functions if this is XEmacs.
11358 (ansi-color-unfontify-region): New optional parameter for XEmacs
11359 compatibility. Check wether font-lock-syntactic-keywords is
11360 boundp before removing the syntax table text property, as XEmacs
11361 doesn't have it.
11362 (ansi-color-filter-region): Doc change.
11363 (ansi-color-apply-on-region): Doc change.
11364 (ansi-color-make-face): New function. Compatibility layer for
11365 XEmacs. Return temporary faces instead of cons cells for XEmacs.
11366 (ansi-color-make-color-map): Use ansi-color-make-face.
11367 (ansi-color-get-face): Avoid face text property '(nil) as results
11368 in an errow for XEmacs.
11369
11370 2000-01-09 Alex Schroeder <alex@gnu.org>
11371
11372 * ansi-color.el (ansi-color-unfontify-region): New function.
11373 Uses text-property ansi-color in order to preserve fontification by
11374 ansi-color. When the package is loaded, a lambda expression is
11375 put onto font-lock-mode-hook. This lambda expression will check
11376 font-lock-unfontify-region-function and replace
11377 font-lock-default-unfontify-region with ansi-color-unfontify-region.
11378 (ansi-color-apply): Add text-property ansi-color in addition to
11379 text-property face.
11380 (ansi-color-apply-on-region): Add text-property ansi-color in
11381 addition to text-property face.
11382 (save-buffer-state): Copy of the macro that is also used by
11383 lazy-lock and font-lock.
11384
11385 (ansi-color-for-comint-mode): New option.
11386 (ansi-color-for-comint-mode-on): Set ansi-color-for-comint-mode.
11387 (ansi-color-for-comint-mode-off): Ditto.
11388 (ansi-color-for-comint-mode-filter): Ditto.
11389 (ansi-color-process): New function. Uses ansi-color-for-comint-mode to
11390 decide what to do. This function is added to
11391 comint-preoutput-filter-functions when the package is loaded.
11392
11393 (ansi-color-for-shell-mode-set): Removed.
11394 (ansi-color-for-shell-mode): Removed.
11395
11396 2000-01-09 Alex Schroeder <alex@gnu.org>
11397
11398 * ansi-color.el (ansi-color-for-shell-mode-set): New function with
11399 the lambda expression from the ansi-color-for-shell-mode :set
11400 property. Additionally, modify shell-mode-hook to enable or
11401 disable font-lock-mode for future shell buffers.
11402 (ansi-color-for-shell-mode): The :set property calls
11403 ansi-color-for-shell-mode-set instead of a lambda expression.
11404
11405 2000-01-09 Alex Schroeder <alex@gnu.org>
11406
11407 * ansi-color.el (ansi-color-for-shell-mode): Doc change.
11408 (ansi-color-context): New variable.
11409 (ansi-color-apply): Save context between calls.
11410
11411 2001-01-09 Eli Zaretskii <eliz@is.elta.co.il>
11412
11413 * isearch.el (isearch, isearch-lazy-highlight-face):
11414 New definitions for face colors and attributes.
11415
11416 * wid-edit.el (widget-choose): Call display-popup-menus-p instead
11417 of display-mouse-p.
11418
11419 2001-01-09 Kenichi Handa <handa@etl.go.jp>
11420
11421 * international/mule.el (make-coding-system): If the coding system
11422 accepts extra latin codes, register such codes as safe for the
11423 coding system.
11424
11425 2001-01-08 Richard M. Stallman <rms@gnu.org>
11426
11427 * emacs-lisp/bytecomp.el (byte-compile-log-1): In non-batch case,
11428 don't mention the file name or the date here, because they are
11429 logged at the start of the file.
11430
11431 2001-01-08 Richard M. Stallman <rms@gnu.org>
11432
11433 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
11434 Change screen-width to frame-width.
11435
11436 2001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
11437
11438 * info.el (Info-search): Print the default as part of the prompt.
11439
11440 2001-01-08 Andre Spiegel <spiegel@gnu.org>
11441
11442 * vc.el (vc-default-latest-on-branch-p): New function, replaces
11443 constant implementations in backends.
11444
11445 * vc-cvs.el (vc-cvs-latest-on-branch-p): Removed.
11446 (vc-cvs-checkout): Renamed arg WRITABLE to EDITABLE.
11447
11448 * vc-rcs.el (vc-rcs-checkout, vc-rcs-cancel-version): Renamed arg
11449 WRITABLE to EDITABLE.
11450
11451 * vc-sccs.el (vc-sccs-latest-on-branch-p): Removed.
11452 (vc-sccs-checkout, vc-sccs-cancel-version): Renamed arg WRITABLE
11453 to EDITABLE.
11454
11455 2001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
11456
11457 * emacs-lisp/copyright.el (copyright-current-year): Now a defvar.
11458 (copyright, copyright-update): Compute the current year at run time.
11459
11460 2001-01-08 Gerd Moellmann <gerd@gnu.org>
11461
11462 * isearch.el (isearch-old-signal-hook): Removed.
11463 (isearch-mode): Add isearch-done to kbd-macro-termination-hook
11464 instead of setting signal-hook-function.
11465 (isearch-done): Remove isearch-done from kbd-macro-termination-hook.
11466
11467 2001-01-08 Kevin Gallagher <kevingal@onramp.net>
11468
11469 * emulation/edt.el: Update to version 4.0. Provide support for
11470 EDT scroll margins at top and bottom of the window. Provide an
11471 emulation of the EDT SUBS command (bound to GOLD-Enter, by
11472 default). Enhance edt-quit, bound to GOLD-q by default, to warn
11473 user when file-related buffer modifications exist.
11474 Provide support for running EDT Emulation in XEmacs.
11475 Provide customize access to some user updatable variables.
11476 Add Commentary section to file header.
11477 Fixed a few minor bugs and cleaned up some code.
11478
11479 * emulation/edt-mapper.el: Update to version 4.0. Provide support
11480 for detecting a keypress that generates an ASCII key sequence.
11481 (Previously, only a keypress that generates a vector was
11482 recognized.) Embed Window Manager name into name of the generated
11483 EDT Emulation initialization file since the initialization file is
11484 Window Manager specific. Add Commentary section to file header.
11485
11486 2001-01-07 Eli Zaretskii <eliz@is.elta.co.il>
11487
11488 * mail/sendmail.el (mail-mode): Doc fix.
11489
11490 * info.el (Info-goto-emacs-command-node): Doc fix.
11491 (Info-goto-emacs-key-command-node): Doc fix.
11492
11493 2001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
11494
11495 * ediff-vers.el (noninteractive): Don't load generic-sc on MS-DOS
11496 systems without long file-name support.
11497
11498 2001-01-06 Andrew Innes <andrewi@gnu.org>
11499
11500 * makefile.w32-in (custom-deps): Set EMACSLOADPATH explicitly.
11501
11502 2001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
11503
11504 * isearch.el (isearch-lazy-highlight-remove-overlays): Doc fix.
11505 (isearch-lazy-highlight-update): Doc fix.
11506
11507 * ffap.el (ffap-bindings): Doc fix.
11508
11509 * dired-x.el (dired-virtual-guess-dir): Doc fix.
11510
11511 2001-01-05 Dave Love <fx@gnu.org>
11512
11513 * emacs-lisp/cl-seq.el (remove, remq): Remove.
11514
11515 2001-01-05 Gerd Moellmann <gerd@gnu.org>
11516
11517 * mouse-drag.el (mouse-drag-safe-scroll):
11518 Bind scroll-preserve-screen-position to nil.
11519
11520 * isearch.el (isearch-old-signal-hook): New variable.
11521 (isearch-mode): Set signal-hook-function to isearch-done.
11522 (isearch-done): Restore old signal-hook-function.
11523
11524 * info.el (Info-fontify-node): Mark one more char as intangible.
11525
11526 2000-01-05 Kenichi Handa <handa@etl.go.jp>
11527
11528 * composite.el (compose-last-chars): New argument COMPONENTS.
11529 If it is non-nil, compose preceding characters by compose-region with
11530 COMPONENTS.
11531
11532 * international/quail.el (quail-input-string-to-events): New function.
11533 (quail-input-method): Convert input string to events here.
11534 (quail-start-translation): Return input string, not event list.
11535 (quail-start-conversion): Likewise.
11536
11537 2001-01-04 Gerd Moellmann <gerd@gnu.org>
11538
11539 * tooltip.el (tooltip-cancel-delayed-tip)
11540 (tooltip-start-delayed-tip): Renamed from tooltip-disable-timeout
11541 and tooltip-add-timeout.
11542 (tooltip-show): Set border color from faces's foreground.
11543 (tooltip-show-help-function): If called with the same help string
11544 as last time, do nothing.
11545 (tooltip-help-tips): Don't set tooltip-help-message to nil.
11546
11547 * startup.el (fancy-splash-screens): Don't bind show-help-function
11548 to nil.
11549
11550 * tooltip.el (tooltip-frame-parameters): Remove colors.
11551 (tooltip): New face
11552 (tooltip-set-param): New function.
11553 (tooltip-show): Set up color frame parameters from face `tooltip'.
11554 Display the tooltip text in face `tooltip'.
11555
11556 2001-01-04 Dave Love <fx@gnu.org>
11557
11558 * whitespace.el (whitespace-global-mode): Fix typo.
11559
11560 * hilit19.el, mail/rnewspost.el, mail/rnews.el: Moved to obsolete.
11561
11562 2001-01-04 Eli Zaretskii <eliz@is.elta.co.il>
11563
11564 * help.el (help-for-help): Fix a typo in a doc string.
11565 From kwzh@gnu.org (Karl Heuer).
11566
11567 2001-01-03 Dave Love <fx@gnu.org>
11568
11569 * dired-x.el: Doc fixes. Maintainer change.
11570 (dired-guess-shell-gnutar, dired-guess-shell-znew-switches): Fix :type.
11571 (dired-guess-shell-alist-default): Don't use xloadimage for PNG.
11572 (dired-guess-shell-alist-user): Customize.
11573 (dired-x-help-address): Set to bug-gnu-emacs.
11574 (dired-x-maintainer, dired-x-file, dired-x-version): Deleted.
11575 (dired-default-directory): Renamed from default-directory.
11576
11577 * hl-line.el (hl-line): Doc fix.
11578
11579 2001-01-03 Karl Fogel <kfogel@red-bean.com>
11580
11581 * mail/mail-hist.el (mail-hist-text-too-long-p): Doc fix.
11582
11583 2001-01-02 Richard M. Stallman <rms@gnu.org>
11584
11585 * isearch.el (isearch-lazy-highlight-cleanup): Arg now says
11586 to remove all the current alternative-match highlighting.
11587 If nil, remove only what's outside the current window.
11588 (isearch-lazy-highlight-remove-overlays): Take optional
11589 region within which NOT to remove them.
11590 (isearch-lazy-highlight-new-loop): Greatly simplified.
11591 (isearch-lazy-highlight-update): Find all the other occurrences
11592 visible in the window, in just one call.
11593 (isearch-lazy-highlight-start): Now holds start of region to scan.
11594 (isearch-lazy-highlight-end): Now holds end of region to scan.
11595 (isearch-lazy-highlight-wrapped): Variable deleted.
11596 (isearch-lazy-highlight-search): Function deleted.
11597
11598 2000-01-02 Andrew Innes <andrewi@gnu.org>
11599
11600 * w32-fns.el (convert-standard-filename): Do length check on name
11601 before aref.
11602
11603 2001-01-02 Dave Love <fx@gnu.org>
11604
11605 * progmodes/cperl-mode.el (cperl-invalid-face): Don't double-quote
11606 value.
11607 (cperl-init-faces): Allow cperl-invalid-face to be a normal face.
11608
11609 * ls-lisp.el (ls-lisp) <defgroup>: Add :version.
11610
11611 * net/browse-url.el (browse-url-filename-alist): Avoid backquote
11612 read syntax.
11613
11614 * calendar/todo-mode.el (todo): Add :link, :version.
11615 (todo-save-top-priorities): Remove autoload cookie.
11616 (todo-add-category, todo-add-item-non-interactively)
11617 (todo-insert-item, todo-mode, todo-cp, todo-show): Fix autoload cookie.
11618
11619 2001-01-02 Gerd Moellmann <gerd@gnu.org>
11620
11621 * comint.el (comint-input-history-ignore): New variable.
11622 (comint-read-input-ring): Ignore entries matching
11623 comint-input-history-ignore.
11624
11625 2001-01-02 Eric M. Ludlam <zappo@gnu.org>
11626
11627 * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): New Variable.
11628 (lm-copyright-mark): New function.
11629 (lm-crack-copyright): New function.
11630 (lm-verify): Check that the file has a copyright.
11631 Check that the file is copyright Free Software Foundation.
11632
11633 2000-12-30 Kenichi Handa <handa@etl.go.jp>
11634
11635 * international/mule-diag.el (print-fontset): Indent font name by
11636 24 columns, not 25.
11637
11638 2000-12-29 Gerd Moellmann <gerd@gnu.org>
11639
11640 * textmodes/flyspell.el (mail-mode-flyspell-verify): Spell-check
11641 in Subject line.
11642
11643 * mail/mailabbrev.el (mail-abbrevs-enable, mail-abbrevs-disable):
11644 Use mail-mode-hook instead of mail-setup-hook.
11645 Otherwise continuing an interrupted message with C-u C-x m for
11646 instance, winds up in Mail mode without abbrevs.
11647
11648 2000-12-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11649
11650 * ps-print.el: Handle form feed better when ps-zebra-stripe-follow is
11651 non-nil. Adding almost all customization variables on ps-setup.
11652 Doc fix.
11653 (ps-print-version): New version number (6.3.3).
11654 (ps-end-with-control-d): Initialization fix.
11655 (ps-lines-printed): New var.
11656 (ps-skip-newline): New fun.
11657 (ps-setup, ps-prologue-file, ps-begin-job, ps-begin-page)
11658 (ps-next-line, ps-continue-line, ps-plot-region)
11659 (ps-generate-postscript-with-faces, ps-end-job): Code fix.
11660
11661 2000-12-29 Kenichi Handa <handa@etl.go.jp>
11662
11663 * international/fontset.el (x-complement-fontset-spec):
11664 Resolve ASCII font name so that the same family name is used for fonts
11665 registered in x-font-name-charset-alist.
11666 (create-fontset-from-fontset-spec): Adjusted for the above change.
11667 The name of fontset alias should be a unresolved ASCII font name.
11668
11669 2000-12-28 Gerd Moellmann <gerd@gnu.org>
11670
11671 * simple.el (delete-key-deletes-forward-mode): Bind backspace
11672 and delete in isearch-mode-map.
11673
11674 2000-12-28 Richard M. Stallman <rms@gnu.org>
11675
11676 * dired-x.el (dired-guess-shell-alist-default):
11677 Use xpdf instead of acroread.
11678
11679 2000-12-28 Kenichi Handa <handa@etl.go.jp>
11680
11681 * textmodes/artist.el (artist-butlast): Deleted.
11682 (artist-ellipse-mirror-quadrant): Use butlast instead of
11683 artist-butlast.
11684
11685 * subr.el (butlast, nbutlast): Moved from cl.el to here.
11686
11687 * emacs-lisp/cl.el (butlast, nbutlast): Moved to subr.el.
11688
11689 2000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
11690
11691 From Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>:
11692
11693 * ls-lisp.el: Better support for the Mac and MS-Windows.
11694 (ls-lisp): New defgroup.
11695 (ls-lisp-emulation, ls-lisp-ignore-case, ls-lisp-dirs-first)
11696 (ls-lisp-verbosity, ls-lisp-use-insert-directory-program)
11697 (ls-lisp-support-shell-wildcards): New defcustoms.
11698 (ls-lisp-parse-symlink): New function.
11699 (insert-directory): Code to convert switches to a list and set up
11700 the wildcard argument copied from ls-lisp-insert-directory.
11701 (ls-lisp-insert-directory): New argument TIME-INDEX. Add support
11702 for -C and -R switches.
11703 (ls-lisp-column-format): New function.
11704 (ls-lisp-delete-matching, ls-lisp-handle-switches)
11705 (ls-lisp-format-time): Add doc strings.
11706 (ls-lisp-handle-switches): Handle -U, -S, -X, and -F switches.
11707 Support ls-lisp-dirs-first.
11708 (ls-lisp-classify, ls-lisp-extension): New functions.
11709 (ls-lisp-format): Optionally support emulation of symlinks.
11710 Support -i, -s, and -G switches.
11711
11712 2000-12-27 Gerd Moellmann <gerd@gnu.org>
11713
11714 * textmodes/texinfo.el (texinfo-mode): Set fill-column to 70.
11715
11716 * version.el (emacs-version): Print X scroll bar information.
11717
11718 * scroll-bar.el (toplevel): Check for x-toolkit-scroll-bars
11719 instead of x-toolkit-scroll-bars-p.
11720
11721 * loadup.el (toplevel): Check for x-toolkit-scroll-bars instead
11722 of x-toolkit-scroll-bars-p.
11723
11724 2000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
11725
11726 * ffap.el (ffap-bindings): Make interactive and add an autoload cookie.
11727 (ffap-bindings): Doc fix, to reflect the above change.
11728
11729 2000-12-27 Kenichi Handa <handa@etl.go.jp>
11730
11731 * term.el (term-char-mode): Define all non-ascii self-inserting
11732 characters to 'term-send-raw in term-raw-map.
11733
11734 2000-12-25 Michael Kifer <kifer@cs.sunysb.edu>
11735
11736 * viper-init (viper-restore-cursor-type): Added condition-case guard.
11737
11738 * ediff-init.el (ediff-quit-hook,ediff-suspend-hook):
11739 Changed initialization; use add-hook.
11740 (ediff-file-remote-p): Use file-local-copy.
11741
11742 * ediff-ptch.el (ediff-prompt-for-patch-buffer): Improved defaults.
11743
11744 * ediff.el (ediff-patch-buffer): Bug fix.
11745 (ediff-revision): Allow selection of the file at the prompt.
11746
11747 2000-12-23 Stefan Monnier <monnier@cs.yale.edu>
11748
11749 * subr.el (combine-run-hooks): Remove.
11750
11751 * emacs-lisp/edebug.el (define-minor-mode): Improve the spec
11752 and remove the rogue second spec.
11753
11754 2000-12-23 Gerd Moellmann <gerd@gnu.org>
11755
11756 * progmodes/compile.el (compilation-forget-errors): Fix indentation.
11757
11758 2000-12-22 Stefan Monnier <monnier@cs.yale.edu>
11759
11760 * smerge-mode.el (smerge-basic-map): Use `=' rather than `d'.
11761 Use minibuffer menu prompt for the `=' prefix.
11762 (smerge-command-prefix): Change default to C-^.
11763 (smerge-mode): Don't assume font-lock doesn't move point.
11764
11765 * skeleton.el (skeleton-internal-1): Make sure the first line of
11766 the region is also re-indented.
11767 (skeleton-end-newline): New var.
11768 (skeleton-end-hook): Use it.
11769
11770 2000-12-22 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
11771
11772 * comint.el (comint-password-prompt-regexp): Support CVS.
11773
11774 2000-12-22 Gerd Moellmann <gerd@gnu.org>
11775
11776 * simple.el (delete-key-deletes-forward-mode): Simplify.
11777 Also backspace key combinations, depending on
11778 delete-key-deletes-forward.
11779
11780 * bindings.el ([C-backspace]): Bind C-backspace to kill-word.
11781
11782 * simple.el (delete-key-deletes-forward): Doc fix.
11783
11784 2000-08-22 Emmanuel Briot <briot@gnat.com>
11785
11786 * xml.el (top level comment): Updated to reflect the fact that
11787 white spaces are relevant in the XML file.
11788 (xml-parse-file): Do not kill an existing Emacs buffer if the file
11789 to parse was already edited. This allows for on-the-fly analysis
11790 of XML files.
11791 (xml-parse-tag): Check that the casing is the same in the start
11792 tag and end tag, since XML is case-sensitive. Allows for spaces
11793 in the end tag, after the name of the tag.
11794 (xml-parse-attlist): Allow for the character '-' in the name of
11795 attributes, as in the standard http-equiv attribute Do not save
11796 the properties in the XML tree, since they are not relevant.
11797
11798 2000-12-21 Stefan Monnier <monnier@cs.yale.edu>
11799
11800 * generic.el (generic-read-type): Undo last change, inline into
11801 `generic-mode' and then remove.
11802 (generic-mode): Inline generic-read-type.
11803 (define-generic-mode): Push the symbol name rather than the symbol
11804 onto generic-mode-list.
11805
11806 2000-12-21 Gerd Moellmann <gerd@gnu.org>
11807
11808 * generic.el (generic-read-type): Build an alist for
11809 completing-read as in 20.7.
11810
11811 * play/landmark.el (lm): Use interactive spec `P'.
11812 (toplevel): Don't set debug-on-error.
11813
11814 * server.el (server-switch-buffer): Choose a window on a visible frame.
11815
11816 2000-12-21 Dave Pearson <davep@davep.org>
11817
11818 * quickurl.el: Commentry change, I've moved my web site.
11819
11820 2000-12-21 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11821
11822 * ebnf2ps.el: Fix a problem with skip-chars-forward: it doesn't accept
11823 ranges like \177-\237, but accepts the character sequence from \177 to
11824 \237. Doc fix.
11825 (ebnf-version): New version (3.4).
11826 (ebnf-setup): Code fix.
11827 (ebnf-range-regexp): New fun.
11828 (ebnf-8-bit-chars): Const fix.
11829
11830 * ebnf-bnf.el: Fix the same problem as described on ebnf2ps.el log
11831 entry. Doc fix.
11832 (ebnf-bnf-lex): Code fix.
11833 (ebnf-bnf-comment-chars): Const fix.
11834
11835 * ebnf-iso.el: Fix the same problem as described on ebnf2ps.el log
11836 entry. Doc fix.
11837 (ebnf-iso-comment-chars): Const fix.
11838
11839 * ebnf-otz.el: Doc fix.
11840
11841 * ebnf-yac.el: Fix the same problem as described on ebnf2ps.el log
11842 entry. Doc fix.
11843 (ebnf-yac-skip-code): Code fix.
11844 (ebnf-yac-comment-chars): Const fix.
11845
11846 2000-12-21 Eli Zaretskii <eliz@is.elta.co.il>
11847
11848 * files.el (insert-directory-safely): New function.
11849 (recover-file): Use it instead of insert-directory.
11850 From Markus Rost <markus.rost@mathematik.uni-regensburg.de>
11851
11852 2000-12-21 Kenichi Handa <handa@etl.go.jp>
11853
11854 * international/mule-cmds.el (select-safe-coding-system):
11855 Check coding-category-list more rigidly. Improve help message.
11856
11857 * dired.el (dired-move-to-filename-regexp): Fix previous change.
11858
11859 2000-12-21 Miles Bader <miles@gnu.org>
11860
11861 * mail/sendmail.el (mail-mode): Set `comment-start' to the yank prefix.
11862
11863 2000-12-21 Kenichi Handa <handa@etl.go.jp>
11864
11865 * international/mule-diag.el (describe-char-after): Make *Help*
11866 buffer inherit multibyteness of the current buffer.
11867
11868 * international/mule.el (make-char): Docstring adjusted for the
11869 change of make-char-internal.
11870
11871 2000-12-20 Stefan Monnier <monnier@cs.yale.edu>
11872
11873 * international/iso-cvt.el: Docstrings fix.
11874
11875 2000-12-20 Dave Love <fx@gnu.org>
11876
11877 * subr.el (eval-after-load): Doc fix.
11878
11879 2000-12-20 Kenichi Handa <handa@etl.go.jp>
11880
11881 * jka-compr.el (jka-compr-partial-uncompress): Don't use `concat'
11882 for numbers.
11883
11884 2000-12-20 Miles Bader <miles@gnu.org>
11885
11886 * international/quail.el (quail-help): Resize the help window
11887 again after it has all its contents. Remove unneeded progn.
11888
11889 2000-12-19 Gerd Moellmann <gerd@gnu.org>
11890
11891 * pcmpl-linux.el: Fix copy/paste error.
11892
11893 2000-12-19 Andrew Innes <andrewi@gnu.org>
11894
11895 * simple.el (delete-key-deletes-forward-mode): Fix typo in docstring.
11896
11897 2000-12-19 Carsten Dominik <dominik@strw.leidenuniv.nl>
11898
11899 * progmodes/idlw-rinfo.el: Fixed copyright notice.
11900
11901 * progmodes/idlw-toolbar.el: Fixed copyright notice.
11902
11903 * progmodes/idlw-shell.el: Fixed copyright notice.
11904
11905 * progmodes/idlwave.el: Fixed copyright notice.
11906
11907 * textmodes/reftex-dcr.el (reftex-view-crossref): Added SPACE and
11908 TAB as key separators.
11909
11910 2000-12-19 Alex Schroeder <alex@gnu.org>
11911
11912 * sql.el (sql-sybase-options): New option.
11913 (sql-sybase): Use it. Add sql-database to the list of parameters
11914 provided for login. The options -w 2048 -n are not used any more.
11915 (sql-postgres-options): Changed default from "--pset" to "-P".
11916 (sql-mysql-options): Doc change.
11917 (sql-stop): Doc change.
11918
11919 2000-12-19 Kenichi Handa <handa@etl.go.jp>
11920
11921 * international/quail.el (quail-input-method): Always hide
11922 the guidance buffer on exiting.
11923
11924 2000-12-18 Gerd Moellmann <gerd@gnu.org>
11925
11926 * tooltip.el (tooltip-mode): Signal an error if x-show-tip
11927 isn't fboundp.
11928
11929 * server.el (server-buffer-done): Bury the buffer before
11930 killing it.
11931
11932 * faces.el (face-spec-set): Interpret a nil in specs for
11933 foreground and background colors as `unspecified', for
11934 compatibility with 20.x.
11935
11936 2000-12-18 Dave Love <fx@gnu.org>
11937
11938 * simple.el (mail-user-agent): Doc fix.
11939 (input-mode-8-bit): Removed.
11940
11941 * international/mule.el (set-keyboard-coding-system): Doc fix.
11942 (keyboard-coding-system): New option.
11943
11944 * mail/sendmail.el (send-mail-function): Customize.
11945
11946 2000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
11947
11948 * international/codepage.el (cp866-decode-table): New table.
11949
11950 2000-12-18 Gerd Moellmann <gerd@gnu.org>
11951
11952 * version.el (emacs-version): Remove `%a' from the time format
11953 because the weekday doesn't fit well into each locale.
11954
11955 2000-12-18 Miles Bader <miles@gnu.org>
11956
11957 * image-file.el (image-file-name-extensions): Add "pgm" and "ppm".
11958
11959 * textmodes/artist.el (artist-replace-chars, artist-replace-char):
11960 Check that emacs-major-version is `=' to 20, not `>='.
11961 (artist-replace-chars): Use `make-string' instead of a loop.
11962
11963 2000-12-17 Stefan Monnier <monnier@cs.yale.edu>
11964
11965 * pcvs.el (cvs-diff-backup-extractor): Return full-path for file.
11966 (cvs-execute-single-file): Don't change directory.
11967 Patch from Per Cederqvist.
11968
11969 2000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
11970
11971 * textmodes/ispell.el (check-ispell-version):
11972 If `ispell-program-name' is "aspell", pass it the -v switch instead
11973 of -vv.
11974
11975 2000-12-16 Kenichi Handa <handa@etl.go.jp>
11976
11977 * international/mule-diag.el (mule-diag): Insert information about
11978 configure options, multibyte awareness, language env.
11979
11980 * international/ja-dic-cnv.el (skkdic-get-candidate-list): Fix the
11981 regexp to search for candidates.
11982
11983 2000-12-15 Eli Zaretskii <eliz@is.elta.co.il>
11984
11985 * info.el (Info-forward-node): If the node has an
11986 Info-header-line, widen the buffer before searching for "next:"
11987 and "up:" pointers, and set the search limit to stay in the
11988 current node.
11989
11990 2000-12-16 Miles Bader <miles@gnu.org>
11991
11992 * simple.el (delete-trailing-whitespace): Remove extraneous let.
11993
11994 2000-12-15 Miles Bader <miles@gnu.org>
11995
11996 * comint.el (comint-send-string, comint-send-region): Also accept
11997 a buffer, buffer-name, or nil for PROCESS, for compatibility with
11998 process-send-string/region.
11999
12000 2000-12-15 Gerd Moellmann <gerd@gnu.org>
12001
12002 * isearch.el (isearch-lazy-highlight-max): New user-option.
12003 (isearch-lazy-highlight-update): Don't highlight more than
12004 isearch-lazy-highlight-max matches.
12005
12006 * mail/mh-utils.el (mh-find-path): Set read-mail-command.
12007
12008 2000-12-15 Richard M. Stallman <rms@gnu.org>
12009
12010 * sort.el (sort-columns): Fix error message.
12011
12012 * dabbrev.el (dabbrev--last-case-pattern): Value is now
12013 `upcase' or `downcase' or nil.
12014 (dabbrev-expand): Don't do anything with dabbrev--last-case-pattern.
12015 Pass new record-case-pattern arg to dabbrev--substitute-expansion.
12016 (dabbrev--substitute-expansion): New arg record-case-pattern.
12017 If it is non-nil, set dabbrev--last-case-pattern.
12018 If ABBREV is " ", use dabbrev--last-case-pattern to change EXPANSION.
12019
12020 * dabbrev.el (dabbrev--find-expansion): Remove extra nreverse.
12021
12022 2000-12-15 Miles Bader <miles@gnu.org>
12023
12024 * paths.el (Info-default-directory-list): Don't delete
12025 configure-info-directory from the list of standard info
12026 directories when appending it to the end -- their order is important.
12027
12028 * faces.el (read-face-attribute): If there's no entry for the
12029 user's input in VALID, just use it as-is (this will often result
12030 in an error, but it may be OK for e.g. colors using hexadecimal
12031 notation, and at least will yield a better error message).
12032
12033 * window.el (mode-line-window-height-fudge): Function removed.
12034 (height-affecting-face-attributes, mode-line-window-height-fudge):
12035 Variables removed.
12036 * textmodes/ispell.el (ispell-overlay-window): Ensure that the new
12037 window is really the right size. Use vertical-motion
12038 rather than forward-line.
12039 (ispell-help): Don't use ispell-mode-line-window-height-fudge.
12040 (ispell-command-loop, ispell-show-choices): Use the variable
12041 ispell-choices-win-default-height, rather than the function.
12042 (ispell-choices-win-default-height): Function removed.
12043 (ispell-mode-line-window-height-fudge): Function removed.
12044
12045 2000-12-14 Stefan Monnier <monnier@cs.yale.edu>
12046
12047 * add-log.el (add-change-log-entry): Only expand-file-name if non-nil.
12048
12049 2000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
12050
12051 * paths.el (Info-default-directory-list):
12052 If configure-info-directory is not one of the standard directories,
12053 put it first in the list; otherwise put it last. Doc string
12054 changed accordingly.
12055
12056 * info.el (Info-directory-list): Change doc string to reflect the
12057 change in Info-default-directory-list.
12058
12059 * simple.el (delete-key-deletes-forward-mode): Treat ms-dos and
12060 windows-nt as windowed environments, even under -nw.
12061
12062 * startup.el (command-line): Don't call x-backspace-delete-keys-p
12063 if not fboundp. Switch delete-forward mode for the <delete> key
12064 on all PC platforms, even under -nw.
12065
12066 * term/internal.el ([M-delete]): Remap to M-d.
12067
12068 2000-12-14 Gerd Moellmann <gerd@gnu.org>
12069
12070 * emacs-lisp/lisp-mnt.el: Change maintainer to FSF.
12071
12072 2000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
12073
12074 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
12075
12076 2000-12-14 Gerd Moellmann <gerd@gnu.org>
12077
12078 * startup.el (command-line): Call delete-key-deletes-forward-mode,
12079 if appropriate.
12080
12081 * simple.el (delete-key-deletes-forward): New user-option.
12082 (delete-key-deletes-forward-mode): New function.
12083
12084 * bindings.el: Bind `delete' to backward-delete-char.
12085
12086 * emacs-lisp/easymenu.el (easy-menu-current-active-maps):
12087 Test if symbol is bound before getting its value.
12088
12089 * tooltip.el (tooltip-show): If an error is signaled in
12090 x-show-tip, display that error, and display the help in the
12091 echo area.
12092
12093 2000-12-14 Kenichi Handa <handa@etl.go.jp>
12094
12095 * international/ja-dic-cnv.el (skkdic-set-okuri-nasi):
12096 Show "... entries" messages for every 10000 entries, not 10.
12097
12098 2000-12-13 Karl Fogel <kfogel@red-bean.com>
12099
12100 * bookmark.el: Provide a generic exit hook, as suggested by
12101 Ovidiu Predescu <ovidiu@cup.hp.com>:
12102 (bookmark-exit-hook): New var.
12103 (bookmark-exit-hook-internal): New func, replaces
12104 old raw lambda form in `kill-emacs-hook', and runs new
12105 `bookmark-exit-hooks'. No longer tests for the bookmark feature,
12106 as logically that feature must have been provided if this function
12107 is running.
12108 Removed ;;;###autoload before the `add-hook' call.
12109
12110 2000-12-13 Stefan Monnier <monnier@cs.yale.edu>
12111
12112 * emacs-lisp/easymenu.el (easy-menu-define): Setup indentation.
12113 (easy-menu-current-active-maps): New function.
12114 (easy-menu-get-map): Use it.
12115 Make a proper menu entry when creating a new keymap.
12116
12117 2000-12-13 Kenichi Handa <handa@etl.go.jp>
12118
12119 * international/characters.el: Fix cases and syntaxes for
12120 mule-unicode-0100-24ff.
12121
12122 * dired.el (dired-move-to-filename-regexp): Fixed for the case
12123 that a Japanese character is not appended after day and year.
12124
12125 * info.el (Info-suffix-list): Change format for a command that
12126 requires arguments.
12127 (info-insert-file-contents): Adjusted for the above change.
12128
12129 2000-12-12 Andreas Schwab <schwab@suse.de>
12130
12131 * tar-mode.el (tar-extract): Base the name of the subfile buffer
12132 on the name of the tar buffer. Verify that the existing buffer is
12133 visiting the same subfile.
12134
12135 2000-12-12 Dave Love <fx@gnu.org>
12136
12137 * subdirs.el: Add obsolete.
12138
12139 2000-12-12 Gerd Moellmann <gerd@gnu.org>
12140
12141 * mail/rmailsum.el (rmail-summary-expunge)
12142 (rmail-summary-expunge-and-save): Use rmail-expunge-confirmed
12143 instead of rmail-confirm-expunge.
12144
12145 * replace.el (perform-replace): Don't use an empty match adjacent
12146 to a non-empty match when computing the next match before the
12147 replacement is performed.
12148
12149 2000-12-12 Milan Zamazal <pdm@freesoft.cz>
12150
12151 * progmodes/glasses.el: Use `define-minor-mode' for the minor mode
12152 definition (patch by Stefan Monnier).
12153 (glasses-mode): Use jit-lock instead of `after-change-functions'
12154 (patch by Stefan Monnier).
12155
12156 2000-12-12 Miles Bader <miles@gnu.org>
12157
12158 * info.el (Info-last-preorder): Don't barf on nodes without a prev.
12159 (Info-scroll-down): Respect `Info-scroll-prefer-subnodes'.
12160
12161 2000-12-12 Andrew Choi <akochoi@i-cable.com>
12162
12163 * term/mac-win.el: Remove load for ls-lisp.
12164
12165 * loadup.el: Load ls-lisp for system-type `macos'.
12166
12167 2000-12-12 Miles Bader <miles@gnu.org>
12168
12169 * simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter.
12170 Respect field end too.
12171 (just-one-space): Respect fields as `delete-horizontal-space'.
12172 (newline-and-indent, reindent-then-newline-and-indent):
12173 Use `delete-horizontal-space'.
12174
12175 2000-12-11 Stefan Monnier <monnier@cs.yale.edu>
12176
12177 * newcomment.el (comment-indent-new-line): Use delete-horizontal-space
12178 (so as to obey the field property in the minibuffer).
12179
12180 * obsolete/c-mode.el: Moved from lisp/progmodes.
12181 * obsolete/auto-show.el: Moved from lisp.
12182 * obsolete/ooutline.el: Moved from lisp/textmodes.
12183
12184 2000-12-11 Carsten Dominik <dominik@strw.leidenuniv.nl>
12185
12186 * progmodes/idlwave.el: Updated to IDLWAVE version 4.7. Too many
12187 changes to list them here.
12188
12189 * progmodes/idlw-shell.el: Updated to IDLWAVE version 4.7.
12190 Too many changes to list them here.
12191
12192 * progmodes/idlw-rinfo.el: Updated to IDLWAVE version 4.7.
12193 Too many changes to list them here.
12194
12195 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version 4.7.
12196
12197 2000-12-11 Gerd Moellmann <gerd@gnu.org>
12198
12199 * simple.el (kill-new): Don't try to setcar kill-ring if it is nil.
12200
12201 * cus-edit.el (custom-save-variables, custom-save-faces):
12202 Comment fix.
12203
12204 * hscroll.el: Moved to `obsolete' subdir.
12205
12206 2000-12-11 Miles Bader <miles@gnu.org>
12207
12208 * window.el (window-text-height): Function removed (now in C).
12209
12210 2000-12-10 Stefan Monnier <monnier@cs.yale.edu>
12211
12212 * log-edit.el (log-edit-parent-buffer): New var.
12213 (log-edit): Set it. Add BUFFER argument.
12214 (log-edit-done): Use char-before.
12215 Don't bother checking validity of vc-comment-ring.
12216 Only bury the buffer if log-edit popped it up.
12217
12218 * pcvs.el: Update references to CVS-Edit (now Log-Edit).
12219 (cvs-mode-diff-help): Remove.
12220 (cvs-mode-commit): Use the new `log-edit' BUFFER argument.
12221 (cvs-mode-marked): Set up the default for CMD manually.
12222
12223 * pcvs-defs.el (cvs-mode-diff-map): Use minibuffer menu prompt.
12224 Remove binding for ? now made unnecessary.
12225
12226 2000-12-10 Carsten Dominik <dominik@strw.leidenuniv.nl>
12227
12228 * textmodes/reftex.el (reftex-scanning-info-available-p): New function.
12229 (reftex-TeX-master-file): Check for `tex-main-file' early enough.
12230
12231 * textmodes/reftex-global.el (reftex-create-tags-file): Fixed bug
12232 when master file is not open.
12233
12234 2000-12-09 Stefan Monnier <monnier@cs.yale.edu>
12235
12236 * progmodes/ada-stmt.el: Update `maintainer'.
12237
12238 2000-12-09 Stephen Gildea <gildea@stop.mail-abuse.org>
12239
12240 * time-stamp.el (time-stamp-old-format-warn): Reorder custom
12241 choices to match documentation string.
12242
12243 2000-12-09 Miles Bader <miles@gnu.org>
12244
12245 * minibuf-eldef.el: New file.
12246
12247 * window.el (fit-window-to-buffer): Don't pass last argument to
12248 pos-visible-in-window-p, now that its meaning is inverted.
12249
12250 2000-12-08 Eli Zaretskii <eliz@is.elta.co.il>
12251
12252 * image.el (create-image): Doc fix; spotted by Per Cederqvist
12253 <ceder@lysator.liu.se>.
12254
12255 2000-12-08 Stefan Monnier <monnier@cs.yale.edu>
12256
12257 * autoinsert.el (auto-insert-alist): Add missing final \n.
12258
12259 * pcvs-defs.el (cvs-menu): Move. Make submenu for diff commands.
12260 (cvs-menu-map): Remove.
12261 * pcvs.el (cvs-menu): Use `cvs-menu' rather than `cvs-menu-map'.
12262 (cvs-mode-quit): Turn it back into a plain function.
12263
12264 * textmodes/texnfo-upd.el (texinfo-chapter-level-regexp)
12265 (texinfo-filter): Remove (move to texinfo.el).
12266
12267 * textmodes/texinfo.el: Move the (require 'cl) to the front of the
12268 file where it's more visible.
12269 (texinfo-filter, texinfo-chapter-level-regexp): New variables
12270 moved from texnfo-upd.el (for AUCTeX's compatibility, originally).
12271 (texinfo-mode): Use texinfo-chapter-level-regexp for page-delimiter.
12272 (texinfo-inside-macro-p): Only catch `scan-error's.
12273 (texinfo-inside-env-p): Make better use of the match info.
12274 (texinfo-insert-quote): Collapse calls to `texinfo-inside-macro-p'.
12275 (texinfo-insert-@end): Slight re-organization.
12276 Also remove useless `looking-at' call.
12277
12278 2000-12-08 Andrew Innes <andrewi@gnu.org>
12279
12280 * w32-fns.el: Add clipboard support from term/w32-win.el, so it is
12281 accessible in -nw mode.
12282
12283 * term/w32-win.el: Remove stuff about selection timeout, which is
12284 irrelevant on Windows. Move clipboard support to w32-fns.el, so
12285 it is accessible in -nw mode.
12286
12287 2000-12-08 Dave Love <fx@gnu.org>
12288
12289 * emacs-lisp/lisp-mode.el (lisp-mode):
12290 Set font-lock-keywords-case-fold-search.
12291
12292 2000-12-08 Gerd Moellmann <gerd@gnu.org>
12293
12294 * textmodes/ispell.el (ispell): Doc fix.
12295
12296 2000-12-08 Kenichi Handa <handa@etl.go.jp>
12297
12298 * international/quail.el (quail-insert-decode-map): Check the
12299 frame width of a window displaying the current buffer, not that of
12300 the selected frame.
12301 (quail-help): Make sure that the help buffer has window before
12302 inserting text in it.
12303
12304 2000-12-07 Sam Steingold <sds@gnu.org>
12305
12306 * loadup.el: Load emacs-lisp/backquote instead of autoloading.
12307 Backquote is used in isearch.el, so autoloading saves nothing.
12308
12309 2000-12-07 Eli Zaretskii <eliz@is.elta.co.il>
12310
12311 * startup.el (normal-top-level-add-subdirs-to-load-path):
12312 Ignore the CVS and RCS subdirectories case-insensitively.
12313
12314 * dired.el (dired-insert-directory): If file-system-info is
12315 fboundp, call it instead of invoking dired-free-space-program.
12316
12317 2000-12-07 Gerd Moellmann <gerd@gnu.org>
12318
12319 * server.el (server-visit-files): Push files on file-name-history.
12320
12321 * progmodes/cc-langs.el: Update copyright.
12322
12323 * progmodes/idlw-shell.el, progmodes/idlwave.el: Update copyright.
12324
12325 * bindings.el (mode-line-mode-menu): Add glasses-mode.
12326
12327 * bindings.el (mode-line-mode-menu): Reverse the order
12328 of define-keys so that the menu appears in alphabetical order.
12329
12330 2000-12-07 Milan Zamazal <pdm@freesoft.cz>
12331
12332 * progmodes/glasses.el (glasses-mode): Update mode line at the end
12333 of the function.
12334
12335 2000-12-07 Dave Love <fx@gnu.org>
12336
12337 * jka-compr.el (jka-compr-compression-info-list): Fix :type.
12338
12339 * facemenu.el (facemenu-unlisted-faces): Fix value.
12340
12341 2000-12-07 Stefan Monnier <monnier@cs.yale.edu>
12342
12343 * font-lock.el (font-lock-default-fontify-region):
12344 Include the terminating \n (off-by-one error).
12345 (font-lock-set-defaults): Use dolist.
12346
12347 * derived.el (define-derived-mode): Don't use combine-run-hooks.
12348
12349 2000-12-07 Kenichi Handa <handa@etl.go.jp>
12350
12351 * international/mule-cmds.el (describe-language-environment):
12352 Fix for the case that an input method title is not string but a list.
12353
12354 * ps-bdf.el (bdf-read-font-info): Modify the kludgy code for fonts
12355 of wrong SIZE record.
12356
12357 2000-12-06 Dave Love <fx@gnu.org>
12358
12359 * newcomment.el (comment-region, comment-dwim): Doc fix.
12360
12361 * textmodes/texinfo.el: Require tex-mode when compiling.
12362 (texinfo-update-node): Doc fix.
12363 (texinfo-imenu-generic-expression): Add @anchor.
12364 (texinfo-font-lock-keywords): Add @uref.
12365 (texinfo-inside-macro-p): Don't use ignore-errors.
12366 (texinfo-insert-quote): Match more contexts.
12367
12368 * international/mule.el (decode-char, encode-char): Doc fix.
12369 (auto-coding-alist): Customize.
12370
12371 * files.el (load-file): Fix change of 2000-03-12.
12372
12373 * wid-edit.el (widget-text-keymap): Doc fix.
12374
12375 2000-12-06 Andrew Innes <andrewi@gnu.org>
12376
12377 * makefile.w32-in (lisp): Set to an absolute directory, namely
12378 $(CURDIR).
12379
12380 2000-12-06 Eli Zaretskii <eliz@is.elta.co.il>
12381
12382 * emacs-lisp/autoload.el (update-file-autoloads): Use raw-text to
12383 read generated-autoload-file, and set buffer-file-coding-system to
12384 raw-text-unix after reading the file.
12385
12386 * international/mule-conf.el (file-coding-system-alist):
12387 Use raw-text for reading loaddefs.el and raw-text-unix for writing it.
12388
12389 2000-12-06 Gerd Moellmann <gerd@gnu.org>
12390
12391 * replace.el (occur): Make line-number-width 1 smaller for the
12392 colon following the line number.
12393
12394 * startup.el (fancy-splash-text, command-line-1):
12395 Use `File' for the menu name instead of `Files'.
12396
12397 * tmm.el: Update copyright.
12398
12399 * cus-start.el: Add entry for even-window-heights.
12400
12401 2000-12-06 Miles Bader <miles@gnu.org>
12402
12403 * faces.el (frame-set-background-mode): Avoid stomping on
12404 locally modified faces.
12405
12406 2000-12-06 Kenichi Handa <handa@etl.go.jp>
12407
12408 * international/fontset.el: Correct the font registries for
12409 japanese-jisx0213-1 and japanese-jisx0213-2.
12410
12411 2000-12-05 Gerd Moellmann <gerd@gnu.org>
12412
12413 * textmodes/reftex-toc.el (reftex-toc-menu): Fix typo.
12414
12415 * iswitchb.el: Update customization commentary.
12416
12417 2000-12-05 Rob Riepel <riepel@Stanford.EDU>
12418
12419 * emulation/tpu-edt.el (tpu-help): Fixed previous screen logic.
12420 (tpu-search-highlight): Fixed comparison of overlay end positions.
12421 (tpu-trim-line-ends): Implemented trimming logic locally.
12422
12423 * emulation/tpu-extras.el (tpu-write-file-hook)
12424 (tpu-set-cursor-bound): Replaced picture-clean with tpu-trim-line-ends.
12425
12426 2000-12-05 Kenichi Handa <handa@etl.go.jp>
12427
12428 * language/chinese.el (chinese-iso-8bit): Change mime-charset name
12429 to cn-gb.
12430 (cn-gb, gb2312): New aliases for chinese-iso-8bit.
12431
12432 2000-12-04 Dave Love <fx@gnu.org>
12433
12434 * emacs-lisp/cl-indent.el: Remove erroneous spec for condition-case.
12435
12436 2000-12-04 Gerd Moellmann <gerd@gnu.org>
12437
12438 * mail/rmailsum.el (rmail-summary-expunge)
12439 (rmail-summary-expunge-and-save): Ask for confirmation with
12440 rmail-expunge-confirmed.
12441
12442 * mail/rmail.el (rmail-expunge-confirmed): New function.
12443 (rmail-expunge): Use it.
12444
12445 2000-12-04 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be>
12446
12447 * progmodes/etags.el (tag-partial-file-name-match-p): New function.
12448 (etags-recognize-tags-table, find-tag-in-order):
12449 New functionality: interpret file names as tags.
12450
12451 2000-12-04 Eli Zaretskii <eliz@is.elta.co.il>
12452
12453 * info.el (Info-scroll-prefer-subnodes): New defcustom.
12454 (Info-scroll-up): If Info-scroll-prefer-subnodes is nil, don't visit
12455 the first subnode until the bottom of the current node is visible.
12456
12457 2000-12-04 Gerd Moellmann <gerd@gnu.org>
12458
12459 * format.el (format-decode): Don't change buffer's undo list.
12460
12461 2000-12-04 Kenichi Handa <handa@etl.go.jp>
12462
12463 * faces.el (face-font-registry-alternatives): Add entries for CJK
12464 fonts. Doc-string adjusted for the actual usage of this data.
12465
12466 * international/fontset.el: Change the font registries for CJK
12467 fonts in the default fontset. Don't append '*' to registries.
12468
12469 2000-12-03 Stefan Monnier <monnier@cs.yale.edu>
12470
12471 * emacs-lisp/easy-mmode.el (define-derived-mode)
12472 (easy-mmode-derived-mode-p): Remove (moved to derived.el).
12473
12474 * derived.el (define-derived-mode): Revived, moved from easy-mmode.el.
12475 (derived-mode-p): New function.
12476 (derived-mode-make-docstring): Add `docstring' argument.
12477 Use it if available and complete it if necessary.
12478
12479 2000-12-03 Andreas Schwab <schwab@suse.de>
12480
12481 * type-break.el (type-break): Don't make parent of itself.
12482
12483 2000-12-03 Miles Bader <miles@gnu.org>
12484
12485 * simple.el (delete-trailing-whitespace): Don't delete newlines too.
12486
12487 2000-12-02 Stefan Monnier <monnier@cs.yale.edu>
12488
12489 * textmodes/tex-mode.el (tex-start-shell): Obey shell-file-name.
12490 (tex-main-file, tex-file): Simplify.
12491 (tex-generate-zap-file-name): Use subst-char-in-string.
12492 (tex-strip-dots): Remove.
12493
12494 * tmm.el (tmm-get-keymap): Eval the menu name in `menu-item'.
12495
12496 * textmodes/ispell.el (check-ispell-version): Don't use match-beginning
12497 to check if the match succeeded.
12498
12499 2000-12-02 Gerd Moellmann <gerd@gnu.org>
12500
12501 * startup.el (use-fancy-splash-screens-p): New function.
12502 (command-line-1): Use it to determine whether or not to use
12503 a fancy splash screen.
12504
12505 2000-12-02 Andreas Schwab <schwab@suse.de>
12506
12507 * emacs-lisp/eldoc.el (eldoc): Don't make parent of itself.
12508
12509 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
12510
12511 * international/mule.el (make-char): Fix last change.
12512
12513 * textmode/texinfo.el (texinfo-open-quote, texinfo-close-quote):
12514 New defcustoms.
12515 (texinfo-insert-quote): Don't call tex-insert-quote, to avoid
12516 autoloading tex-mode; instead, do the same manually.
12517 Use texinfo-open-quote and texinfo-close-quote. Insert literal quote
12518 with numeric argument. Docstring fix.
12519 (toplevel): Require cl when compiling.
12520
12521 * international/mule.el (make-char): Doc fix.
12522
12523 2000-12-02 Jason Rumney <jasonr@gnu.org>
12524
12525 * term/w32-win.el (x-select-enable-clipboard): Customize (as per
12526 the Emacs Lisp manual)
12527
12528 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
12529
12530 * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
12531
12532 * term/pc-win.el (x-select-enable-clipboard): Customize (as per
12533 the Emacs Lisp manual).
12534
12535 2000-12-02 Gerd Moellmann <gerd@gnu.org>
12536
12537 * simple.el (next-line-add-newlines): Change default to nil.
12538
12539 2000-12-01 Eli Zaretskii <eliz@is.elta.co.il>
12540
12541 * files.el (revert-buffer, recover-file):
12542 Bind coding-system-for-read to emacs-mule-unix, not to no-conversion.
12543
12544 2000-12-01 Gerd Moellmann <gerd@gnu.org>
12545
12546 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
12547
12548 2000-12-01 Miles Bader <miles@gnu.org>
12549
12550 * window.el (fit-window-to-buffer): Handle non-nil `truncate-lines'.
12551
12552 2000-12-01 Kenichi Handa <handa@etl.go.jp>
12553
12554 * international/mule-diag.el (describe-char-after): Fix typo.
12555 (describe-character-set, non-iso-charset-alist): Fix typo.
12556
12557 2000-12-01 Miles Bader <miles@gnu.org>
12558
12559 * image-file.el (image-file-name-regexp): Automatically add
12560 upper-case variants of each filename extension in
12561 `image-file-name-extensions', since they seem to be common.
12562
12563 * simple.el (minibuffer-contents)
12564 (minibuffer-contents-no-properties, delete-minibuffer-contents):
12565 New functions.
12566 * filecache.el (file-cache-directory-name)
12567 (file-cache-minibuffer-complete): Ignore the minibuffer prompt.
12568
12569 2000-12-01 Milan Zamazal <Milan.Zamazal@qbizm.com>
12570
12571 * filecache.el (file-cache-minibuffer-complete): Don't try to
12572 delete the minibuffer prompt.
12573
12574 2000-11-30 Dave Love <fx@gnu.org>
12575
12576 * cus-start.el: Fix read-buffer-function type.
12577
12578 2000-11-30 Gerd Moellmann <gerd@gnu.org>
12579
12580 * md5.el: Removed. There's a built-in function, now.
12581
12582 2000-11-30 Markus Rost <rost@math.ohio-state.edu>
12583
12584 * mail/rmail.el (rmail-set-message-counters): Don't use "D"
12585 as dummy 0-th char of rmail-deleted-vector.
12586
12587 2000-11-30 Eli Zaretskii <eliz@is.elta.co.il>
12588
12589 * ps-print.el (ps-end-job): Bind case-fold-search only after
12590 switching to ps-spool-buffer.
12591
12592 2000-11-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12593
12594 * ps-print.el: Line number font customization. PostScript: Lines and
12595 PageCount are initialized on each page. Doc Fix.
12596 (ps-print-version): New version number (6.3.2).
12597 (ps-lpr-switches, ps-font-info-database, ps-font-size)
12598 (ps-header-font-size, ps-header-title-font-size, ps-left-header)
12599 (ps-right-header): Customization fix.
12600 (ps-setup, ps-select-font, ps-begin-file, ps-header-sheet, ps-end-job):
12601 Fix code.
12602 (ps-end-with-control-d, ps-line-number-font, ps-line-number-font-size):
12603 New vars.
12604
12605 2000-11-30 Gerd Moellmann <gerd@gnu.org>
12606
12607 * bs.el: Fix typos and spelling errors.
12608 (bs-appearance) <defgroup>: Renamed from bs-appearence.
12609 (bs-configuration): Doc fix.
12610
12611 * bs.el: Undo mistaken change of 2000-11-28. Update copyright.
12612
12613 2000-11-30 Rob Riepel <riepel@Stanford.EDU>
12614
12615 * emulation/tpu-edt.el (tpu-version): New version.
12616 (tpu-search-overlay, tpu-replace-overlay): New initial range.
12617 (tpu-original-mode-line): Variable deleted.
12618 (tpu-mark-flag): New initial value.
12619 (tpu-set-mode-line): Don't redefine mode-line-format.
12620 Add tpu-mark-flag to minor-mode-alist.
12621 (tpu-update-mode-line): New mark flag logic.
12622 (tpu-get): Use find-file-wildcards.
12623 (tpu-search-highlight): Move overlay less, reset overlay properly.
12624 (tpu-unselect): Deactivate mark.
12625 (tpu-lm-replace): Reset overlay properly.
12626 (tpu-forward-line): Use forward-visible-line.
12627 (tpu-edt-on): Set transient mark mode. ispell autoloads deleted.
12628
12629 * emulation/tpu-extras.el (tpu-forward-line): Use forward-visible-line.
12630
12631 2000-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
12632
12633 * cus-edit.el (custom-face-value-create): Always emphasize tag.
12634
12635 2000-11-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
12636
12637 * calendar/diary-lib.el (diary-entry-time): Anchor pattern correctly
12638 and skip whitespace and newlines.
12639
12640 2000-11-30 Stefan Monnier <monnier@cs.yale.edu>
12641
12642 * emacs-lisp/cl.el (third...tenth): Really undo change of 2000-08-05.
12643
12644 2000-11-29 Gerd Moellmann <gerd@gnu.org>
12645
12646 * help.el (describe-function-1): Regexp-quote function name
12647 when used as part of a regexp.
12648
12649 * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
12650 Use face-attribute instead of face-foreground and face-background.
12651 (tool-bar-add-item): Likewise, and handle unspecified colors.
12652
12653 * enriched.el (enriched-face-ans): Use face-attribute instead
12654 of face-foreground and face-background.
12655
12656 * faces.el (face-foreground, face-background, face-stipple):
12657 Return nil if attribute is unspecified, for backward compatibility.
12658
12659 * files.el (auto-mode-alist): Add an entry for antlr-mode.
12660
12661 * play/5x5.el: Remove version info.
12662
12663 * toolbar/tool-bar.el (tool-bar-mode): Doc fix.
12664
12665 * frame.el (blink-cursor-mode): Doc fix.
12666
12667 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
12668
12669 * antlr-mode.el: New commands to run ANTLR from within Emacs and
12670 to create Makefile rules.
12671 (antlr-tool-command): New user option.
12672 (antlr-ask-about-save): New user option.
12673 (antlr-makefile-specification): New user option.
12674 (antlr-file-formats-alist): New variable.
12675 (antlr-special-file-formats): New variable.
12676 (antlr-unknown-file-formats): New user option.
12677 (antlr-help-unknown-file-text): New variable.
12678 (antlr-help-rules-intro): New variable.
12679 (antlr-mode-map): Add [C-c C-r] for `antlr-run-tool'.
12680 (antlr-mode-menu): Add entries.
12681 (antlr-file-dependencies): New function.
12682 (antlr-directory-dependencies): New function.
12683 (antlr-superclasses-glibs): New function.
12684 (antlr-run-tool): New command.
12685 (antlr-makefile-insert-variable): New function.
12686 (antlr-insert-makefile-rules): New function.
12687 (antlr-show-makefile-rules): New command.
12688
12689 * antlr-mode.el: More Emacs/XEmacs stuff.
12690 (antlr-no-action-keywords): New constant with value nil.
12691 (antlr-font-lock-keywords-alist): Use it. Old value would break
12692 syntax highlighting in Emacs-21.0.
12693 (antlr-default-directory): Emacs/XEmacs dependend function.
12694 (antlr-read-shell-command): Ditto.
12695 (antlr-with-displaying-help-buffer): Ditto.
12696
12697 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
12698
12699 * antlr-mode.el: imenu, parsing and highlighting changes.
12700 (antlr-imenu-create-index-function): Don't create extra submenus
12701 for definitions in different grammar classes. It is not necessary
12702 for the menu and would make command `imenu' awkward to use.
12703 (antlr-skip-file-prelude): With ANTLR-2.7+, you can specify named
12704 header actions and more than one.
12705 (antlr-font-lock-tokendef-face): Changed color.
12706 (antlr-font-lock-tokenref-face): Changed color.
12707 (antlr-font-lock-additional-keywords): Also highlight lowercase.
12708 (antlr-mode-syntax-table): New variable.
12709 (antlr-mode): Populate and use it instead `java-mode-syntax-table'.
12710 (antlr-with-syntax-table): Don't copy syntax table.
12711
12712 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
12713
12714 * antlr-mode.el: Minor changes: language setting.
12715 (antlr-language-alist): The value for file option "language" can
12716 be both an identifier and a string.
12717 Reported by Rajesh Radhakrishnan <radhakrs@email.uc.edu>.
12718 (antlr-language-limit-n-regexp): Change accordingly.
12719
12720 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
12721
12722 * antlr-mode.el: Minor changes: tabs, hiding.
12723 (antlr-tab-offset-alist): Set `indent-tabs-mode' to nil instead t.
12724 (antlr-action-visibility): Also allow value nil to also hide the
12725 braces. Renamed from `antlr-tiny-action-length'.
12726 Suggested by Jay@aol.com.
12727 (antlr-hide-actions): Change accordingly. Hide line if completely
12728 hidden action is on a line of its own.
12729
12730 2000-11-29 Stefan Monnier <monnier@cs.yale.edu>
12731
12732 * subr.el (combine-run-hooks): Only run-hooks if there's a hook to run.
12733
12734 * sort.el (sort-columns): Don't concat strings with numbers.
12735
12736 2000-11-29 Dave Love <fx@gnu.org>
12737
12738 * cus-edit.el (face): Fix :format.
12739
12740 * mail/feedmail.el: Require smtpmail when compiling.
12741 (mail-do-fcc): Autoload.
12742 (feedmail) <defgroup>: Fix :link.
12743 (feedmail-nuke-body-in-fcc): Fix :type.
12744 (feedmail-send-it): Add autoload cookie.
12745
12746 2000-11-29 Stefan Monnier <monnier@cs.yale.edu>
12747
12748 * newcomment.el (comment-indent): Save excursion around call to
12749 comment-indent-function.
12750
12751 2000-11-29 Miles Bader <miles@gnu.org>
12752
12753 * subr.el (member-ignore-case): Return the tail of the list who's
12754 car matches, like `member', not the matching element itself.
12755
12756 2000-11-29 Kenichi Handa <handa@etl.go.jp>
12757
12758 * xml.el (xml-parse-tag): Fix finding opening tag. A tag name
12759 should not contain `\n'.
12760
12761 2000-11-28 Gerd Moellmann <gerd@gnu.org>
12762
12763 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
12764
12765 * hscroll.el: Add hints to `automatic-hscrolling' to doc strings.
12766
12767 * dired-aux.el (dired-do-create-files): Construct default file
12768 name for dired-mark-read-file-name so that when the user enters
12769 just RET, the target file will end up in the target directory.
12770
12771 * abbrev.el (prepare-abbrev-list-buffer): Get the value of
12772 local-abbrev-table before changing buffers because it might
12773 have a buffer-local binding.
12774
12775 2000-11-28 Miles Bader <miles@gnu.org>
12776
12777 * simple.el (delete-horizontal-space): Handle fields more generally.
12778
12779 2000-11-28 Gerd Moellmann <gerd@gnu.org>
12780
12781 * simple.el (delete-horizontal-space): Handle minibuffer prompt.
12782
12783 2000-11-28 Dave Love <fx@gnu.org>
12784
12785 * progmodes/ps-mode.el (ps-mode): Set comment-start and
12786 comment-start-skip locally.
12787
12788 * progmodes/fortran.el (fortran-mode): Don't set
12789 fortran-comment-line-start-skip. Set comment-start to
12790 fortran-comment-line-start.
12791 (fortran-fill-paragraph) <non-empty-comment>: Remove regexp group.
12792 (fortran-comment-line-start-skip): Simplify slightly.
12793
12794 2000-11-28 Gerd Moellmann <gerd@gnu.org>
12795
12796 * play/5x5.el: Remove RCS keyword.
12797
12798 * bs.el: Mistaken commit, undone 2000-11-30.
12799
12800 2000-11-28 Milan Zamazal <pdm@freesoft.cz>
12801
12802 * textmodes/tildify.el (tildify-string-alist):
12803 Add `plain-tex-mode' here.
12804
12805 2000-11-28 Colin Walters <walters@cis.ohio-state.edu>
12806
12807 * chistory.el (Command-history-setup): Remove extraneous `keymap'
12808 reference.
12809
12810 2000-11-28 Miles Bader <miles@gnu.org>
12811
12812 * cus-face.el (custom-face-attributes): Add post-filter function
12813 for :box. Make pre-filter function for :box handle all cases.
12814
12815 * wid-edit.el (widget-choose): Make sure pop-up window is large
12816 enough to display all the choices, as there's no way to scroll it.
12817
12818 2000-11-28 Kenichi Handa <handa@etl.go.jp>
12819
12820 * international/mule-conf.el: Make the coding system no-conversion
12821 safe for all characters.
12822
12823 2000-11-27 Dave Love <fx@gnu.org>
12824
12825 * net/ldap.el (ldap) <defgroup>: Add :version.
12826
12827 * tooltip.el (tooltip-use-echo-area): Doc fix.
12828
12829 * cus-start.el <minibuffer-prompt-properties>: Add version.
12830 <read-buffer-function>: Add.
12831
12832 * apropos.el (apropos-print): Add help-echo to active text.
12833
12834 * term/x-win.el (x-select-enable-clipboard): Customize (per lispref).
12835
12836 2000-11-27 Gerd Moellmann <gerd@gnu.org>
12837
12838 * mail/rmail.el (rmail-automatic-folder-directives): Add a custom
12839 type, group and version.
12840
12841 2000-11-27 Eli Zaretskii <eliz@is.elta.co.il>
12842
12843 * select.el (x-get-selection): Docstring fix.
12844
12845 2000-11-27 Dave Pearson <davep@hagbard.demon.co.uk>
12846
12847 * play/5x5.el (5x5-play-solution): Bind hinhibit-quit to t.
12848
12849 2000-11-27 Andrew Innes <andrewi@gnu.org>
12850
12851 * makefile.nt (.SUFFIXES): Add .SUFFIXES.
12852
12853 * makefile.w32-in (.SUFFIXES): Add .SUFFIXES.
12854
12855 2000-11-27 Miles Bader <miles@gnu.org>
12856
12857 * dired.el (dired-get-filename): Return filename verbatim if
12858 LOCALP is `verbatim'.
12859 * dired-aux.el (dired-add-entry): Call `dired-get-filename' with
12860 `verbatim' so that we don't inadvertently delete a non-existant
12861 directory name.
12862
12863 2000-11-27 Kenichi Handa <handa@etl.go.jp>
12864
12865 * international/characters.el: Specify cases and syntaxes for
12866 mule-unicode-0100-24ff.
12867
12868 2000-11-27 Gerd Moellmann <gerd@gnu.org>
12869
12870 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Handle case
12871 that foreground and/or background colors of the face `tool-bar'
12872 are unspecified.
12873
12874 2000-11-27 Miles Bader <miles@gnu.org>
12875
12876 * wid-edit.el (widget-field-buffer, widget-field-start)
12877 (widget-field-end): Handle widget field `pseudo-overlays'.
12878 (widget-field-value-delete): Delete WIDGET from `widget-field-new'
12879 if it's there instead of in `widget-field-list'.
12880
12881 * help.el (help-manyarg-func-alist): Correct entry for `vconcat'.
12882 (help-make-xrefs): Delete extraneous newlines at the end of the
12883 docstring.
12884
12885 2000-11-25 Jason Rumney <jasonr@gnu.org>
12886
12887 * startup.el (command-line): Call set-locale-environment after
12888 Window System init file is read, as it can result in a call to
12889 redraw-frame.
12890
12891 2000-11-25 Eli Zaretskii <eliz@is.elta.co.il>
12892
12893 * simple.el (shell-command): Mention the effect of the prefix
12894 argument in the doc string.
12895
12896 2000-11-25 Miles Bader <miles@gnu.org>
12897
12898 * cus-face.el (custom-face-attributes): Add "None" choice to :stipple.
12899
12900 * wid-edit.el (widget-field-value-delete): Don't try to delete
12901 overlay when it's the `pseudo-overlay' that exists at some points.
12902
12903 2000-11-24 Jason Rumney <jasonr@gnu.org>
12904
12905 * international/mule-cmds.el (locale-language-names): Add "jp" as
12906 a non-standard alternative for Japanese.
12907
12908 2000-11-24 Andre Spiegel <spiegel@gnu.org>
12909
12910 * vc-hooks.el: Require 'cl during compilation.
12911
12912 2000-11-24 Gerd Moellmann <gerd@gnu.org>
12913
12914 * faces.el (face-set-after-frame-default): Let face attributes
12915 specified for new frames override frame parameters.
12916
12917 * startup.el (command-line): Fix computation of the source file
12918 for user-init-file when user-init-file is a compiled file.
12919
12920 2000-11-24 Miles Bader <miles@gnu.org>
12921
12922 * cus-edit.el (custom-filter-face-spec, custom-pre-filter-face-spec)
12923 (custom-post-filter-face-spec): New functions.
12924 (custom-face-set, custom-face-value-create): Filter the face spec
12925 before and after customization.
12926 (custom-face-set): If VALUE specifies a null face, pass a
12927 non-null-but-otherwise-ignored face-spec instead to `face-spec-set'.
12928 * cus-face.el (custom-face-attributes): Remove SET and GET
12929 functions. Add some IN-FILTER and OUT-FILTER functions in the few
12930 cases they're needed.
12931
12932 * wid-edit.el (checkbox): Add a small `X' to the :on-glyph, so
12933 that it's distinguishable from the :off-glyph on dark-background
12934 displays. Set its background color too.
12935
12936 * cus-start.el (all): Restore entry for `mode-line-inverse-video',
12937 so that people can easily turn it off.
12938
12939 2000-11-24 Michael Kifer <kifer@cs.sunysb.edu>
12940
12941 * ediff-diff.el: Moved variables around to have it compile under NT.
12942
12943 * ediff-help.el (ediff-use-long-help-message): Made it customizable.
12944
12945 * ediff-init.el (ediff-abbrev-jobname): Use capitalize.
12946
12947 * ediff-wind.el (ediff-skip-unsuitable-frames): Deleted the
12948 redundant skip-small-frames test.
12949
12950 * viper-cmd.el (viper-change-state-to-vi): Disable overwrite mode.
12951 (viper-downgrade-to-insert): Protect against errors in hooks.
12952
12953 * viper-init.el (viper-vi-state-hook,viper-insert-state-hook)
12954 (viper-replace-state-hook,viper-emacs-state-hook): Do cursor handling.
12955 (viper-restore-cursor-type,viper-set-insert-cursor-type):
12956 New functions.
12957
12958 * viper-util.el (viper-memq-char): Bug fixes.
12959
12960 * viper.el (viper-mode): Fix cursor handling.
12961
12962 2000-11-24 Kenichi Handa <handa@etl.go.jp>
12963
12964 * international/mule-diag.el (list-iso-charset-chars):
12965 For two-byte charset, fix the `while' condition.
12966 (list-non-iso-charset-chars): Fix the `while' condition.
12967
12968 2000-11-23 Stefan Monnier <monnier@cs.yale.edu>
12969
12970 * subr.el (add-hook, remove-hook): Don't call make-local-hook
12971 if the variable is make-variable-buffer-local.
12972
12973 * progmodes/ada-stmt.el (ada-template-map):
12974 Initialize and bind it to C-c t in ada-mode-map.
12975 (ada-stmt-mode-hook): New function extracted from old code.
12976 Only change the buffer-local side of skeleton-*.
12977 (ada-mode-hook): Use it.
12978
12979 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
12980
12981 * iswitchb.el (iswitchb-minibuf-depth): New variable.
12982 (iswitchb-read-buffer): Record in iswitchb-minibuf-depth the value
12983 we expect to be returned by minibuffer-depth once we prompt the
12984 user in the minibuffer.
12985 (iswitchb-entryfn-p): If minibuffer-depth returns the same value
12986 as recorded in iswitchb-minibuf-depth, return non-nil.
12987
12988 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
12989
12990 * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode)
12991 (hscroll-window-maybe): Docstring fix.
12992
12993 2000-11-23 Dave Love <fx@gnu.org>
12994
12995 * rect.el (string-rectangle): Don't test delete-selection-mode.
12996
12997 2000-11-23 Gerd Moellmann <gerd@gnu.org>
12998
12999 * avoid.el (mouse-avoidance-too-close-p): Return nil if mouse
13000 is in the tool bar.
13001
13002 * dired-aux.el (dired-add-entry): Don't call dired-get-filename
13003 with `no-dir'; we want the directory part to be able to remove it.
13004
13005 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
13006
13007 * textmodes/outline.el (outline-flag-region):
13008 Don't bind inhibit-read-only since we don't modify the buffer.
13009 (outline-isearch-open-invisible): Don't jump to overlay-start
13010 since we're trying to unhide text around point.
13011 (outline-discard-overlays): Use dolist.
13012
13013 * autoinsert.el (auto-insert-alist): Add `provide' to elisp skeleton.
13014
13015 2000-11-22 Gerd Moellmann <gerd@gnu.org>
13016
13017 * mail/rmail.el (rmail-confirm-expunge): Default to y-or-n-p.
13018
13019 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
13020
13021 * textmodes/tex-mode.el (tex-font-lock-keywords-1):
13022 Fix ARG regexp to skip quoted braces.
13023 (tex-font-lock-keywords-2): Fix ARG regexp to skip quoted braces.
13024 Remove `bf' and `it' from `bold' and `italic' (they were wrong and
13025 are (correctly) handled separately).
13026 Remove `caption' and `footnote' from `citations': they contain text.
13027 Don't highlight `textmd', `texttt' and `textrm' with bold-italic.
13028 (latex-skeleton-end-hook): New function.
13029 (latex-mode): Use it.
13030 (tex-start-tex-marker): Remove.
13031 (tex-send-tex-command): Don't set tex-start-tex-marker.
13032 (tex-error-parse-syntax-table): New var.
13033 (tex-compilation-parse-errors): Use it.
13034 Ignore tex-start-tex-marker. Don't bother with marker-position.
13035 (tex-validate-buffer): Don't bother with marker-position.
13036
13037 * textmodes/flyspell.el (flyspell-prog-text-faces): New var.
13038 (flyspell-generic-progmode-verify): Use it.
13039
13040 2000-11-22 Sam Steingold <sds@gnu.org>
13041
13042 * simple.el (delete-trailing-whitespace): New interactive function.
13043
13044 * progmodes/ada-mode.el (ada-mode): Use it instead of
13045 `ada-remove-trailing-spaces'.
13046 (ada-remove-trailing-spaces): Removed.
13047
13048 * textmodes/two-column.el (2C-merge): Recommend it in the doc.
13049
13050 * textmodes/picture.el (picture-clean): Removed.
13051 (picture-mode-exit): Call it instead of `picture-clean'.
13052
13053 2000-11-22 Gerd Moellmann <gerd@gnu.org>
13054
13055 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
13056
13057 * hi-lock.el (hi-lock-refontify): Don't call non-existent
13058 jit-lock-fontify-buffer; it should anyway be unneccessary to
13059 do anything special when jit-lock is active.
13060 (hi-yellow, hi-pink, hi-green, hi-blue): Fix defface specs.
13061
13062 2000-11-22 Dave Love <fx@gnu.org>
13063
13064 * calendar/todo-mode.el (todo-top-priorities): Use
13065 todo-tmp-buffer-name. From Milan Zamazal <Milan.Zamazal@qbizm.com>.
13066
13067 * language/chinese.el, language/cyrillic.el:
13068 * language/devanagari.el, language/ethiopic.el, language/greek.el:
13069 * language/hebrew.el, language/indian.el, language/japanese.el:
13070 * language/korean.el, language/lao.el, language/misc-lang.el:
13071 * language/thai.el, language/tibetan.el, language/vietnamese.el:
13072 Use provide.
13073
13074 * cus-edit.el (custom-buffer-create-internal): Save some consing.
13075 (custom-variable-set): Improve validation error mesage.
13076
13077 * rect.el (string-rectangle): Revert last change.
13078 (string-rectangle-line): New arg DELETE.
13079 (string-rectangle): Check delete-selection-mode.
13080
13081 * emacs-lisp/edebug.el (edebug-version)
13082 (edebug-maintainer-address): Deleted.
13083 (edebug-submit-bug-report): Just alias to report-emacs-bug.
13084 (edebug-read-function): Account for other `'#' read forms.
13085 (edebug-mode-menus): Make some items toggles.
13086 (edebug-outside-unread-command-event, unread-command-event):
13087 Remove these to avoid warnings.
13088
13089 2000-11-22 David Ponce <david@dponce.com>
13090
13091 * recentf.el (recentf-menu-items-for-commands)
13092 (recentf-make-menu-items, recentf-make-menu-item)
13093 (recentf-filter-changer): Added :help and :active menu-item properties.
13094
13095 (recentf-build-dir-rules, recentf-dump-variable)
13096 (recentf-edit-list, recentf-open-files-item)
13097 (recentf-open-files): Replaced unnecessary `mapcar' with new
13098 built-in `mapc'.
13099
13100 2000-11-23 Miles Bader <miles@gnu.org>
13101
13102 * faces.el (menu): Make inverse-video on ttys too.
13103
13104 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
13105
13106 * simple.el (comment-line-break-function): Use the new name
13107 indent-new-comment-line -> comment-indent-new-line.
13108 (clone-indirect-buffer): Don't ignore NORECORD.
13109 (next-completion): Properly handle the case where items are adjacent.
13110
13111 * mouse.el (popup-menu): Stupid typo.
13112
13113 2000-11-22 Gerd Moellmann <gerd@gnu.org>
13114
13115 * emacs-lisp/authors.el: Remove autoload cookies, add author,
13116 maintainer, keywords tags.
13117
13118 * rect.el (replace-rectangle): Don't call string-rectangle-line
13119 with too many arguments.
13120
13121 2000-11-22 Andre Spiegel <spiegel@gnu.org>
13122
13123 * ediff-util.el (ediff-file-checked-out-p)
13124 (ediff-file-checked-in-p): Call vc-state instead of
13125 vc-locking-user, which no longer exists.
13126
13127 * emulation/viper-util.el (viper-file-checked-in-p): Same as above.
13128
13129 2000-11-22 Dave Love <fx@gnu.org>
13130
13131 * md5.el (md5): Provide.
13132 (md5): Fix error call.
13133
13134 2000-11-22 Miles Bader <miles@gnu.org>
13135
13136 * textmodes/refill.el (refill-adjust-ignorable-overlay)
13137 (refill-fill-paragraph-at): Remove debugging code.
13138
13139 * calendar/calendar.el (generate-calendar-window): When we don't
13140 call `fit-window-to-buffer', make sure the top line is fully visible.
13141
13142 * image-file.el (insert-image-file): Don't make `read-only'
13143 property rear-nonsticky.
13144
13145 * isearch.el (isearch-original-minibuffer-message-timeout): New var.
13146 (isearch-mode): Set `minibuffer-message-timeout' to nil, after
13147 stashing away its original value.
13148 (isearch-edit-string): Temporarily restore `minibuffer-message-timeout'
13149 in the recursive edit.
13150 Bind `isearch-original-minibuffer-message-timeout' to protect it.
13151 (isearch-done): Restore `minibuffer-message-timeout'.
13152
13153 * cus-start.el: Remove entry for `mode-line-inverse-video'.
13154
13155 2000-11-21 Stefan Monnier <monnier@cs.yale.edu>
13156
13157 * progmodes/ada-mode.el (ada-mode): `set '' -> `setq'.
13158
13159 * find-lisp.el (find-lisp-find-files-internal):
13160 Use dolist, when and file-name-as-directory.
13161
13162 * emacs-lisp/edebug.el (edebug-form-spec prop): Use dolist.
13163 (define-derived-mode, define-minor-mode): Add specs.
13164
13165 * window.el: General comment and spacing fixes.
13166 (save-selected-window): Use backquotes.
13167 (window-safely-shrinkable-p): New function.
13168 (shrink-window-if-larger-than-buffer): Use it.
13169
13170 * subr.el (make-local-hook): Docstring fix.
13171
13172 * shell.el (shell-mode): Use define-derived-mode.
13173
13174 * newcomment.el (comment-indent): Insert comment before calling
13175 comment-indent-function. Don't insert in column 0.
13176 (comment-dwim): Indent before inserting comment.
13177
13178 * isearch.el (isearch-mode-map): Fix docstring. Init in defvar.
13179 (minibuffer-local-isearch-map): Init in defvar. Use inheritance.
13180 (isearch-clean-overlays, isearch-range-invisible, isearch-unread):
13181 Use mapc rather than map.
13182
13183 * files.el (find-buffer-visiting): Compare all attributes before
13184 declaring two files identical (rather than just their inode-no).
13185 (auto-mode-alist): Use \' rather than $.
13186
13187 * which-func.el: Update maintainer line.
13188
13189 * pcvs.el (uniquify-buffer-file-name): Remove advice.
13190 * uniquify.el (uniquify-list-buffers-directory-modes): New var.
13191 (uniquify-buffer-file-name): Use it.
13192
13193 2000-11-22 Miles Bader <miles@gnu.org>
13194
13195 * cus-start.el: Add entry for `minibuffer-prompt-properties'.
13196 * simple.el (minibuffer-avoid-prompt): New function.
13197
13198 2000-11-21 Gerd Moellmann <gerd@gnu.org>
13199
13200 * Makefile.in (.SUFFIXES): Add .SUFFIXES.
13201
13202 2000-11-21 Miles Bader <miles@gnu.org>
13203
13204 * emacs-lisp/advice.el (ad-special-forms): Correct the conditional
13205 inclusion of `track-mouse'.
13206
13207 * textmodes/refill.el (refill-ignorable-overlay): New variable.
13208 (refill-adjust-ignorable-overlay): New function.
13209 (refill-fill-paragraph-at): Use `refill-ignorable-overlay' to fill
13210 only the paragraph's tail if possible.
13211 Update `refill-ignorable-overlay'.
13212 (refill-mode): Initialize/cleanup `refill-ignorable-overlay'.
13213
13214 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
13215 point inside the fill-prefix.
13216
13217 * textmodes/refill.el (refill-post-command-function): Don't reset
13218 refill-doit in the case where a self-insertion command doesn't
13219 case a refill. Use `refill-fill-paragraph-at', getting position
13220 from `refill-doit'.
13221 (refill-after-change-function): Set `refill-doit' to END.
13222 (refill-fill-paragraph-at): New function, mostly from old
13223 refill-fill-paragraph.
13224 (refill-fill-paragraph): Use `refill-fill-paragraph-at'.
13225 (refill-pre-command-function): New function.
13226 (refill-mode): Add it to `pre-command-hook'.
13227
13228 2000-11-20 Gerd Moellmann <gerd@gnu.org>
13229
13230 * textmodes/artist.el (artist-mode): Fix autoload cookie.
13231
13232 * font-lock.el (java-keywords): Add MATCH-HIGHLIGHT part for
13233 javadoc tags.
13234
13235 2000-11-20 Andre Spiegel <spiegel@gnu.org>
13236
13237 * vc.el, vc-hooks.el: Undo prev change (moved functions back to
13238 vc.el).
13239
13240 * vc-rcs.el (vc-rcs-state): Before calling vc-workfile-unchanged-p,
13241 require vc.
13242
13243 * vc-cvs.el (vc-cvs-checkout): Fix bug that broke C-x v ~-style
13244 checkouts.
13245
13246 2000-11-20 Dave Love <fx@gnu.org>
13247
13248 * Makefile.in (DONTCOMPILE): Omit bindings.el.
13249
13250 2000-11-20 Eli Barzilay <eli@www.barzilay.org>
13251
13252 * calculator.el (calculator-paste): Use `if' instead of `and'
13253 and `or'.
13254 (calculator-help): Don't use electric-describe-mode for XEmacs.
13255
13256 2000-11-19 Gerd Moellmann <gerd@gnu.org>
13257
13258 * info.el (info-menu-5): Doc fix.
13259
13260 * textmodes/artist.el: New file.
13261
13262 2000-11-19 Andre Spiegel <spiegel@gnu.org>
13263
13264 * vc-rcs.el (vc-rcs-state): Call vc-workfile-unchanged-p only here,
13265 and differentiate according to checkout model.
13266 (vc-rcs-fetch-master-state): Don't call vc-workfile-unchanged-p,
13267 since this function is only concerned with master state.
13268
13269 * vc-hooks.el (vc-workfile-unchanged-p)
13270 (vc-default-workfile-unchanged-p): Moved here from vc.el.
13271
13272 * vc.el (vc-workfile-unchanged-p)
13273 (vc-default-workfile-unchanged-p): See above.
13274
13275 2000-11-19 Miles Bader <miles@gnu.org>
13276
13277 * image-file.el (insert-image-file): Make `intangible' and
13278 `read-only' properties rear-nonsticky too.
13279
13280 2000-11-18 Gerd Moellmann <gerd@gnu.org>
13281
13282 * ps-print.el: Update copyright notice.
13283
13284 * tooltip.el (tooltip-x-offset, tooltip-y-offset): New user-options.
13285 (tooltip-show): Use the offsets.
13286
13287 * bindings.el (mode-line-modified): Fix a typo.
13288 (mode-line-toggle-modified, mode-line-widen)
13289 (mode-line-abbrev-mode, mode-line-auto-fill-mode): Fix typos.
13290
13291 2000-11-17 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13292
13293 * ps-print.el (toplevel): Test for find-coding-system being
13294 fboundp before calling ps-x-find-coding-system.
13295
13296 2000-11-16 Stefan Monnier <monnier@cs.yale.edu>
13297
13298 * vc.el (vc-version-diff): Bind inhibit-read-only when inserting text.
13299 (vc-version-backup-file): Docstring fix.
13300
13301 2000-11-16 Gerd Moellmann <gerd@gnu.org>
13302
13303 * files.el (basic-save-buffer): Don't add a newline if
13304 find-file-literally is non-nil.
13305 (find-file-literally): Extend doc string.
13306
13307 * sort.el (sort-columns): If sort-fold-case it non-nil, invoke
13308 sort(1) with the `-f' argument.
13309
13310 2000-11-16 Andre Spiegel <spiegel@gnu.org>
13311
13312 * vc.el: Updated backend documentation.
13313 (vc-default-check-headers): New function.
13314
13315 * vc-{cvs,rcs,sccs}.el: Functions reordered.
13316
13317 * vc.el (vc-revert-buffer): Ask for confirmation if file seems
13318 up-to-date.
13319 (vc-do-command): In the asynchronous case, output messages only if
13320 the minibuffer is not active.
13321
13322 * vc-cvs.el (vc-cvs-revert): Use `cvs unedit' only if
13323 `vc-cvs-use-edit' is on.
13324 (vc-cvs-checkout): When this is used for reverting the workfile,
13325 make a backup of the original contents and revert to that in case
13326 of error.
13327 (vc-cvs-print-log, vc-cvs-diff): Use asynchronous mode only for
13328 remote repositories.
13329
13330 * vc.el (vc-annotate): Changed handling of prefix arg; now asks
13331 for both version and ratio in the minibuffer.
13332
13333 * vc-cvs.el (vc-cvs-annotate-command): New optional arg VERSION.
13334 Use vc-do-command to perform the annotation, not call-process.
13335
13336 2000-11-16 Kenichi Handa <handa@etl.go.jp>
13337
13338 * international/quail.el (quail-start-translation): Don't call
13339 `message' before reading key sequence.
13340
13341 2000-11-16 Miles Bader <miles@lsi.nec.co.jp>
13342
13343 * net/ange-ftp.el (ange-ftp-file-modtime): Don't use `caddr'.
13344
13345 2000-11-16 Kenichi Handa <handa@etl.go.jp>
13346
13347 * window.el (fit-window-to-buffer): Be sure to acquire at least
13348 one text line even if the buffer is empty.
13349
13350 2000-11-16 Gerd Moellmann <gerd@gnu.org>
13351
13352 * net/ange-ftp.el (ange-ftp-file-writable-p)
13353 (ange-ftp-file-readable-p, ange-ftp-file-executable-p):
13354 Bind ange-ftp-process-verbose to nil.
13355
13356 2000-11-15 Dave Love <fx@gnu.org>
13357
13358 * wid-edit.el (widget-specify-field, widget-specify-button):
13359 If :help-echo is a function, set help-echo of overlay to
13360 widget-mouse-help.
13361 (widget-mouse-help): New function.
13362 (widget-echo-help): Rewritten for :help-echo functions only taking
13363 a widget arg.
13364
13365 * net/eudc-bob.el (eudc-bob-can-display-inline-images):
13366 Use display-graphic-p.
13367 (eudc-bob-display-jpeg) <!eudc-xemacs-p>: Test create-image bound
13368 and that JPEG is available.
13369 (eudc-bob-toggle-inline-display): Avoid non-existent `imagep'.
13370
13371 * international/mule-cmds.el (locale-charset-language-names):
13372 Match @euro.
13373
13374 2000-11-15 Gerd Moellmann <gerd@gnu.org>
13375
13376 * faces.el (face-set-after-frame-default):
13377 If `inhibit-default-face-x-resources' is bound, don't intialize the
13378 default face from X resources.
13379
13380 2000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
13381
13382 * Makefile.in (custom-deps, finder-data, autoloads, recompile):
13383 Don't set EMACSLOADPATH.
13384
13385 2000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
13386
13387 * textmodes/texinfo.el (texinfo-insert-@uref): Renamed from
13388 texinfo-insert-@url.
13389 (texinfo-insert-@url): A defalias for texinfo-insert-@uref.
13390 (texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref.
13391
13392 2000-11-14 Stefan Monnier <monnier@cs.yale.edu>
13393
13394 * emacs-lisp/checkdoc.el (checkdoc-minor-mode) <defvar>: Remove.
13395 (checkdoc-minor-mode-map): New map, replaces checkdoc-minor-keymap.
13396 (checkdoc-minor-keymap): Backward compatibility.
13397 (checkdoc-minor-menu): Don't bother checking checkdoc-minor-keymap.
13398 (checkdoc-minor-mode) <defun>: Use easy-mmode-define-minor-mode.
13399 (checkdoc-this-string-valid-engine): Be a bit more strict
13400 to avoid matching substrings of `...' quoted vars/funs.
13401 (checkdoc-defun-info): Only look for `interactive' if alone.
13402 (debug-ignored-errors): Add "arg doesn't appear in docstring".
13403
13404 * progmodes/compile.el (grep): `tag-default' can be nil.
13405
13406 * newcomment.el (comment-indent): Paren typo.
13407
13408 2000-11-14 Dave Love <fx@gnu.org>
13409
13410 * calculator.el: New maintainer version.
13411
13412 * diff-mode.el (diff-imenu-generic-expression): Modify unidiff pattern.
13413
13414 * cmuscheme.el: Doc fixes.
13415 (cmuscheme) <defgroup>: Use `scheme' as parent.
13416 (cmuscheme-program-name): Remove. Change uses to scheme-program-name.
13417
13418 * xscheme.el (scheme-program-name): Don't define here.
13419
13420 * progmodes/scheme.el (scheme-program-name): New variable
13421 (originally in cmuscheme).
13422
13423 2000-11-14 Miles Bader <miles@gnu.org>
13424
13425 * window.el (fit-window-to-buffer): Handle windows without mode-lines.
13426 Handle header-lines. Don't loop forever if we can't enlarge the
13427 window anymore. Simplify a bit.
13428
13429 2000-11-14 Kenichi Handa <handa@etl.go.jp>
13430
13431 * window.el (fit-window-to-buffer): Don't check
13432 window-text-height. Assure that the last line is fully visible.
13433
13434 * international/quail.el (quail-show-guidance-buf):
13435 Call fit-window-to-buffer to assure the enough height of the guidance
13436 buffer.
13437 (quail-update-guidance): Avoid making the guidance buffer shorter.
13438
13439 2000-11-14 Stefan Monnier <monnier@cs.yale.edu>
13440
13441 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Use `keep'
13442 rather than `prepend' and add an interesting comment.
13443 (tex-math-face, tex-font-lock-syntactic-face-function):
13444 New face and function to use it.
13445 (tex-define-common-keys, tex-mode-map): Use menu-item rather
13446 than `menu-enable' symbol property.
13447 (tex-mode-map): Bind {, (, [ and $ to skeleton-pair-insert-maybe.
13448 (tex-mode): Add some latex-mode commands for auto-selection.
13449 Use tex-font-lock-syntactic-face-function.
13450 (tex-insert-quote): Simplify.
13451 (tex-shell): New mode.
13452 (tex-start-shell): Use it.
13453 (tex-shell-proc, tex-shell-buf): New functions.
13454 (tex-send-command): Use it.
13455 (tex-main-file): Fix the meaning of the new arg REALFILE.
13456 (tex-send-tex-command): New function split from `tex-start-tex'.
13457 Set compilation-last-buffer and compilation-parsing-end.
13458
13459 * newcomment.el (comment-indent-default): Stick \s<\s< to the left
13460 when it follows non-comment text on the line.
13461
13462 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13463 Set font-lock-defaults.
13464 (lisp-mode-shared-map): Init inside the defvar.
13465 (emacs-lisp-mode, lisp-mode, lisp-interaction-mode):
13466 Use define-derived-mode.
13467
13468 2000-11-14 Miles Bader <miles@lsi.nec.co.jp>
13469
13470 * faces.el (header-line): Use `:box nil' for color/gs displays too.
13471
13472 2000-11-14 Gerd Moellmann <gerd@gnu.org>
13473
13474 * emacs-lisp/byte-opt.el (byte-compile-unfold-lambda):
13475 Don't recursively optimize body because that can lead to infinite
13476 recursion; see comment there.
13477
13478 2000-11-13 Eli Zaretskii <eliz@is.elta.co.il>
13479
13480 * faces.el (face-spec-set-match-display): Revert the change from
13481 2000-10-24. Add a FIXME for after v21.1.
13482
13483 2000-11-13 Miles Bader <miles@gnu.org>
13484
13485 * textmodes/fill.el (skip-line-prefix): New function.
13486 (fill-region-as-paragraph, fill-region): Return the fill-prefix.
13487 (fill-paragraph): Don't leave point inside the fill-prefix.
13488 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
13489 point inside the fill-prefix.
13490
13491 2000-11-13 Miles Bader <miles@lsi.nec.co.jp>
13492
13493 * calendar/calendar.el (generate-calendar-window):
13494 Use `fit-window-to-buffer'.
13495
13496 2000-11-12 Stefan Monnier <monnier@cs.yale.edu>
13497
13498 * gud.el (gud-minor-mode): New var.
13499 (gud-symbol, gud-val): New functions.
13500 (gud-find-file): Copy gud-minor-mode to the new buffer.
13501 (gud-menu-map): Include entries for commands that are not always
13502 available, using :enable to (de)activate them.
13503 (gud-minor-mode-map): New map. Add it to minor-mode-map-alist.
13504 (gud-mode-map): New map.
13505 (gud-gdb-find-file, gud-sdb-find-file, gud-dbx-find-file)
13506 (gud-xdb-find-file, gud-perldb-find-file, gud-pdb-find-file):
13507 Don't set up gud's menu (it's done by the minor-mode).
13508 (gud-minibuffer-local-map): New.
13509 Replace gdb-minibuffer-local-map and pdb-minibuffer-local-map.
13510 (gud-query-cmdline): New function.
13511 (gdb, sdb, dbx, xdb, perldb, pdb, jdb): Use it. Set gud-minor-mode.
13512 (gud-mode): Use define-derived-mode.
13513 Don't set up gud's menu (it's done by the minor-mode).
13514 (gud-chop-words): Remove.
13515 (gud-common-init): Use split-string instead.
13516 (gud-new-keymap, gud-make-debug-menu): Eradicate.
13517
13518 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
13519 Add keyword arg :name.
13520
13521 * diff-mode.el (diff-mode-menu): Add entry for applying hunk.
13522 (diff-count-matches, diff-split-hunk): New functions.
13523 (diff-mode-map): Bind C-c C-s to diff-split-hunk.
13524
13525 * pcvs-info.el (cvs-fi-conflict-face): New var.
13526
13527 * progmodes/sh-script.el (sh-mode-syntax-table) <defvar>:
13528 Make it into a simple syntax-table, shared among all submodes.
13529 (sh-heredoc-face): Re-introduce.
13530 (sh-font-lock-syntactic-face-function): New function.
13531 (sh-mode): Use it. Also use define-derived-mode.
13532 Remove old bogus setting of indent-region-function.
13533 (sh-set-shell): Don't set the syntax-table any more.
13534 (sh-mode-syntax-table) <defun>: Remove.
13535
13536 2000-11-12 Miles Bader <miles@gnu.org>
13537
13538 * textmodes/flyspell.el (flyspell-mode-on): Only output welcome
13539 message if interactive.
13540
13541 2000-11-12 Dave Love <fx@gnu.org>
13542
13543 * mail/feedmail.el: Fix header,
13544 (feedmail) <defgroup>: Add :link.
13545
13546 * view.el: Use local-map property, not keymap on mode-line string.
13547
13548 * scroll-all.el (scroll-all-mode): Customize variable.
13549 Add autoload cookie to function.
13550
13551 * lazy-lock.el: Remove compatibility code.
13552
13553 * finder.el (finder-known-keywords): Add `files', remove `vms'.
13554 (finder-help-echo): New variable.
13555 (finder-mouse-face-on-line): Add help-echo stuff.
13556 (finder-list-keywords, finder-list-matches): Use mapc.
13557
13558 * faces.el (face-font-registry-alternatives): Add :version.
13559
13560 * progmodes/etags.el (visit-tags-table-buffer): Beware of `t' in
13561 tags-table-list.
13562
13563 * net/browse-url.el (browse-url-browser-function): Update :version.
13564
13565 * mail/sendmail.el (mail-font-lock-keywords): Use [:alpha:], not a-z.
13566 (mail-mode): Use [:alnum:] in some regexps.
13567
13568 2000-11-10 Dave Love <fx@gnu.org>
13569
13570 * ediff.el (ediff-regions-internal, ediff-documentation):
13571 * ediff-vers.el (rcs-ediff-view-revision): Put temp buffer into
13572 fundamental mode.
13573
13574 * ediff-util.el (ediff-status-info, ediff-debug-info): Put temp
13575 buffer into fundamental mode.
13576 (ediff-set-difference): Use copy-sequence if available.
13577
13578 * ediff-ptch.el (ediff-dispatch-file-patching-job):
13579 Check ediff-patch-map non-nil.
13580 (ediff-fixup-patch-map, ediff-fixup-patch-map)
13581 (ediff-fixup-patch-map, ediff-patch-file-internal): Put temp
13582 buffer into fundamental mode.
13583
13584 * ediff-merg.el (state-or-merge): Defvar when compiling.
13585
13586 2000-11-10 Jason Rumney <jasonr@gnu.org>
13587
13588 * w32-fns.el (w32-add-charset-info): New function.
13589 (w32-charset-info-alist): Use it.
13590
13591 2000-11-10 Gerd Moellmann <gerd@gnu.org>
13592
13593 * faces.el (face-font-registry-alternatives): New user-option.
13594
13595 2000-11-10 Stefan Monnier <monnier@cs.yale.edu>
13596
13597 * textmodes/texinfo.el (texinfo-block-default): New var.
13598 (texinfo-insert-block): Use it. Insert a newline if needed.
13599
13600 * textmodes/fill.el (fill-indent-according-to-mode): New var.
13601 (fill-region-as-paragraph): Use it.
13602
13603 * textmodes/tex-mode.el (standard-latex-block-names): Add "math".
13604 (latex-mode): Tweak tex-*-(head|trail)er regexps.
13605 Tweak paragraph regexps to allow a leading [ \t]*.
13606 (tex-latex-block): Insert a newline if necessary.
13607 (latex-insert-item): Only insert a newline if necessary.
13608 (tex-guess-main-file): New function.
13609 (tex-main-file): Use it. Add arg `realfile'. Trim `.tex'.
13610 Set tex-main-file if TeX-master is provided.
13611 (tex-latex-indent-syntax-table): Map ( and ) to punctuation.
13612
13613 2000-11-10 Gerd Moellmann <gerd@gnu.org>
13614
13615 * startup.el (command-line): Set the default tooltip-mode
13616 to t for graphical displays which implement x-show-tip.
13617
13618 * tooltip.el (tooltip-mode): Add a comment about startup.el
13619 setting the default value of this user-option.
13620
13621 2000-11-09 Stefan Monnier <monnier@cs.yale.edu>
13622
13623 * font-lock.el (font-lock-*-face) <defvar>: Move.
13624 (font-lock-defaults-alist): Mark obsolete.
13625 (font-lock-mode, font-lock-mode-hook) <defvar>: Remove.
13626 (font-lock-mode): Use define-minor-mode.
13627 (font-lock-support-mode): Tweak type to default to jit-lock-mode.
13628 (font-lock-turn-off-thing-lock): Be more explicit.
13629 (font-lock-apply-syntactic-highlight): Use string-to-syntax after eval.
13630 (font-lock-syntactic-face-function): New var.
13631 (font-lock-fontify-syntactically-region): Use it.
13632 (font-lock-doc-face): New.
13633
13634 * pcvs.el (cvs-enabledp): Ignore errors.
13635 (cvs-commit-filelist): Never query.
13636 (cvs-mode-insert): Always add a terminating / in the initial prompt.
13637 (cvs-mode-diff-backup): Use cvs-partition rather than delete-if-not.
13638 (cvs-do-removal): Use cvs-partition rather than delete-if.
13639 Use cvs-insert-strings, cvs-pop-to-buffer-same-frame and
13640 cvs-bury-buffer.
13641
13642 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
13643 Allow `next' to jump to after the end of the last match.
13644
13645 2000-11-09 Gerd Moellmann <gerd@gnu.org>
13646
13647 * simple.el (byte-compiling-files-p): New function.
13648
13649 * textmodes/ispell.el (toplevel): Use byte-compiling-files-p
13650 if it is there.
13651
13652 * emacs-lisp/bytecomp.el (byte-compile-current-file): Bind it to
13653 nil again.
13654
13655 * textmodes/ispell.el (ispell-library-path): Don't call
13656 check-ispell-version when byte-compiling because that starts
13657 an ispell process, and ispell might not be installed.
13658 (toplevel): Don't set up a menu when byte-compiling.
13659
13660 * emacs-lisp/bytecomp.el (byte-compile-current-file): Don't bind
13661 it, so that a boundp test can be used to determine if we're
13662 currently byte-compiling.
13663
13664 2000-11-09 Dave Love <fx@gnu.org>
13665
13666 * pcvs.el (uniquify-buffer-file-name): Wrap advice in eval-after-load.
13667
13668 2000-11-09 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13669
13670 * ps-print.el: Patch for variable initialization when spooling.
13671 Doc fix.
13672 (ps-output-list): Fun eliminated.
13673 (ps-begin-file, ps-begin-job): Code fix.
13674
13675 2000-11-08 Dave Love <fx@gnu.org>
13676
13677 * ediff-wind.el (ediff-control-frame-parameters): Zero tool-bar-lines.
13678
13679 2000-11-08 Gerd Moellmann <gerd@gnu.org>
13680
13681 * simple.el (shell-command, display-message-or-buffer)
13682 (shell-command-on-region): Mention resize-mini-windows in the doc
13683 string.
13684 (display-message-or-buffer): Take the value of resize-mini-windows
13685 into account.
13686
13687 2000-11-07 Gerd Moellmann <gerd@gnu.org>
13688
13689 * macros.el (insert-kbd-macro): Print semi-colons as `?\;'.
13690
13691 * dired.el (dired-between-files): Add `^. find' as an alternative
13692 to the regular expression, for find-dired.
13693
13694 2000-11-06 Stefan Monnier <monnier@cs.yale.edu>
13695
13696 * textmodes/texnfo-upd.el: Require texinfo.
13697 (defmacro, defgroup): Remove.
13698 (texinfo-section-to-generic-alist): Remove.
13699 Use texinfo-section-list instead (i.e. level is changed string->int).
13700 (texinfo-filter): New function.
13701 (texinfo-chapter-level-regexp, texinfo-subsubsection-level-regexp)
13702 (texinfo-subsection-level-regexp, texinfo-section-level-regexp):
13703 Use it. And use regexp-opt.
13704 (texinfo-find-higher-level-node, texinfo-hierarchic-level)
13705 (texinfo-update-menu-region-beginning)
13706 (texinfo-update-menu-higher-regexps, texinfo-update-menu-lower-regexps)
13707 (texinfo-update-the-node, texinfo-sequentially-update-the-node)
13708 (texinfo-update-menu-same-level-regexps): Update.
13709 (texinfo-update-node, texinfo-every-node-update)
13710 (texinfo-sequential-node-update): Remove autoload cookie.
13711
13712 * textmodes/texinfo.el (texinfo-section-list): Change majorheading.
13713 (texinfo-font-lock-syntactic-keywords): Use syntax-strings.
13714 (texinfo-chapter-level-regexp): Remove.
13715 (texinfo-mode): Hard code texinfo-chapter-level-regexp.
13716
13717 2000-11-06 Dave Love <fx@gnu.org>
13718
13719 * autoinsert.el (auto-insert-alist) <latex-mode>: Use \documentclass.
13720
13721 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
13722 Match defun*.
13723
13724 2000-11-06 Kenichi Handa <handa@etl.go.jp>
13725
13726 * composite.el (composition-function-table): Variable declaration
13727 moved to src/composite.c.
13728 (compose-chars-after): New optional arg object.
13729
13730 2000-11-06 Gerd Moellmann <gerd@gnu.org>
13731
13732 * bindings.el (mode-line-toggle-read-only)
13733 (mode-line-toggle-modified, mode-line-widen)
13734 (mode-line-abbrev-mode, mode-line-auto-fill-mode): New functions.
13735 (make-mode-line-mouse2-map): Rewritten.
13736 (mode-line-modified, mode-line-format, minor-mode-alist): Use new
13737 functions so that C-h k can show something with a doc string.
13738
13739 * startup.el (fancy-splash-delay): Set to 10 seconds.
13740 (fancy-splash-max-time): New user-option.
13741 (fancy-splash-stop-time): New variable.
13742 (fancy-splash-screens): Set it. Catch `stop-splashing'.
13743 (fancy-splash-screens-1): Throw `stop-splashing' when current
13744 time is greater than fancy-splash-stop-time.
13745
13746 2000-11-06 Stefan Monnier <monnier@cs.yale.edu>
13747
13748 * vc-hooks.el (vc-insert-file): Don't assume byte==char.
13749
13750 * pcvs.el (cvs-mode-marked): New arg `noquery'.
13751 Prompt user for a file rather than raising an error.
13752 (cvs-enabledp): Fix call to cvs-mode-marked.
13753 (cvs-insert-file): New function (extracted from cvs-mode-insert).
13754 (cvs-mode-insert): Use it. Change the init prompt' value.
13755 (cvs-mode-tree): Use cvs-status-cvstrees instead of cvs-status-trees.
13756
13757 * emacs-lisp/ewoc.el (ewoc-goto-prev, ewoc-goto-next):
13758 Don't pass default arg to ewoc-locate.
13759 (ewoc-collect): Return result in the right order.
13760
13761 * log-edit.el (log-edit-show-files): Use cvs-insert-strings.
13762
13763 * cvs-status.el (cvs-tree-merge): Use cvs-butlast (avoid CL).
13764 (cvs-status-get-tags): Fix regexp.
13765 (cvs-status-trees, cvs-status-cvstrees):
13766 Combine after change hooks and don't sit-for.
13767 (cvs-tree-use-jisx0208): Rename from cvs-tree-dstr-2byte-ready.
13768 (cvs-tree-char-*): Rename from cvs-tree-dstr-char-*.
13769 Use make-char rather than hard-coded cryptic data.
13770 (cvs-status-cvstrees): Convert the buffer to multibyte if necessary.
13771
13772 * pcvs-defs.el (cvs-menu): Add entries for tree and insert.
13773
13774 * pcvs-util.el (cvs-butlast, cvs-nbutlast): New (copied from CL).
13775 (cvs-insert-strings): New function.
13776
13777 2000-11-06 Miles Bader <miles@lsi.nec.co.jp>
13778
13779 * mwheel.el (mouse-wheel-scroll-amount): Renamed from
13780 `mwheel-scroll-amount'.
13781 (mouse-wheel-follow-mouse): Renamed from `mwheel-follow-mouse'.
13782 (mouse-wheel-mode): Use (featurep 'xemacs) instead of
13783 string-matching against the version string.
13784
13785 2000-11-06 Kenichi Handa <handa@etl.go.jp>
13786
13787 * language/thai.el ("Thai"): Set a lisp form that produces
13788 composed string in `sample-text' language info.
13789
13790 * language/tibetan.el ("Tibetan"): Set a lisp form that produces
13791 composed string in `sample-text' language info.
13792
13793 * international/mule-cmds.el (describe-language-environment):
13794 Eval `sample-text' data and insert the result.
13795
13796 * international/mule-conf.el (compound-text): Define this coding
13797 system here. Make x-ctext and ctext aliases of it.
13798
13799 * language/european.el (compound-text, ctext): Moved to
13800 international/mule-conf.el.
13801
13802 2000-11-05 Andrew Innes <andrewi@gnu.org>
13803
13804 * w32-fns.el (w32-version): New function.
13805
13806 2000-11-05 Stefan Monnier <monnier@cs.yale.edu>
13807
13808 * progmodes/awk-mode.el: Update copyright.
13809 (awk-mode-abbrev-table): Remove.
13810 (awk-font-lock-keywords): Use regexp-opt.
13811 (awk-mode): Use define-derived-mode.
13812
13813 * emacs-lisp/regexp-opt.el (regexp-opt-group): Sort the strings
13814 when extracting a suffix.
13815
13816 2000-11-04 Andre Spiegel <spiegel@gnu.org>
13817
13818 * vc-hooks.el (vc-insert-file): Rewritten. Don't bother about
13819 auto-save-mode.
13820
13821 2000-11-04 Jason Rumney <jasonr@gnu.org>
13822
13823 * language/european.el (decode-mac-roman): Test against r1 not r0.
13824
13825 2000-11-03 Stefan Monnier <monnier@cs.yale.edu>
13826
13827 * progmodes/icon.el (icon-mode-map): Don't rebind \t.
13828 (icon-mode): Define indent-line-function.
13829 (icon-comment-indent): Simplify.
13830 (icon-font-lock-keywords-2): Use the `words' arg to regexp-opt.
13831
13832 * emacs-lisp/find-func.el (find-function-do-it): Quote the hook.
13833
13834 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
13835 Bind change-log-default-mode to defeat the caching done on it.
13836 Don't bother saving excursion any more.
13837
13838 * menu-bar.el (minibuffer maps): Use dolist rather than mapcar.
13839
13840 * frame.el (after-setting-font-hook): Rename hooks -> hook.
13841 (set-frame-font): Use the new name (and the old for compatibility).
13842
13843 * toolbar/tool-bar.el (tool-bar-mode):
13844 * time.el (display-time-mode):
13845 * recentf.el (recentf-mode):
13846 * paren.el (show-paren-mode):
13847 * mwheel.el (mouse-wheel-mode):
13848 * msb.el (msb-mode):
13849 * jka-compr.el (auto-compression-mode):
13850 * image-file.el (auto-image-file-mode):
13851 * hl-line.el (hl-line-mode):
13852 * delsel.el (delete-selection-mode):
13853 * autoinsert.el (auto-insert-mode):
13854 * complete.el (partial-completion-mode): Drop unneeded positional args.
13855
13856 * info.el (Info-mode):
13857 * comint.el (comint-mode): Don't bother with make-local-hook.
13858
13859 * log-edit.el (log-edit-menu): New menu.
13860
13861 2000-11-03 Miles Bader <miles@gnu.org>
13862
13863 * wid-edit.el (widget-end-of-line): Reinstate, with a new
13864 definition, so that trailing spaces are handled properly.
13865 (widget-field-keymap, widget-text-keymap): Likewise C-e binding.
13866
13867 2000-11-03 Gerd Moellmann <gerd@gnu.org>
13868
13869 * startup.el (fancy-splash-text, fancy-splash-text): Use a single
13870 tab character.
13871 (fancy-splash-screens): Set tab-width to 20.
13872
13873 2000-11-03 Dave Love <fx@gnu.org>
13874
13875 * comint.el (comint-completion-addsuffix): Fix custom type.
13876
13877 2000-11-02 Stefan Monnier <monnier@cs.yale.edu>
13878
13879 * font-lock.el (font-lock-buffers): Remove.
13880 (font-lock-global-modes): Define with easy-mmode-define-global-mode.
13881 (font-lock-change-major-mode): Remove.
13882 (turn-on-font-lock-if-enabled): Only apply to the current buffer.
13883 (font-lock-default-fontify-region): Extend the multiline
13884 fontification to whole lines.
13885 (font-lock-fontify-anchored-keywords)
13886 (font-lock-fontify-keywords-region): If matching just one
13887 line (with \n) only mark the \n as multiline.
13888
13889 * emacs-lisp/easy-mmode.el (define-minor-mode): Remove :toggle arg.
13890 Correctly handle the case where several :group args are supplied.
13891 Allow :extra-args.
13892 (easy-mmode-define-global-mode): Allow :extra-args.
13893 Correctly handle the case where several :group args are supplied.
13894
13895 2000-11-02 Miles Bader <miles@gnu.org>
13896
13897 * calendar/calendar.el (diary-face, calendar-today-face)
13898 (holiday-face): Remove dependency on `window-system'.
13899
13900 2000-11-02 Ken Raeburn <raeburn@gnu.org>
13901
13902 * Makefile.in (emacs): Set EMACSLOADPATH always.
13903 (update-authors, .el.elc, compile-files): Don't do it explicitly here.
13904 (compile-files): Bomb out if compilation of a file fails.
13905
13906 2000-11-02 Dave Love <fx@gnu.org>
13907
13908 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup.
13909
13910 2000-11-02 Eli Zaretskii <eliz@is.elta.co.il>
13911
13912 * mail/emacsbug.el (report-emacs-bug): Fix whitespace and
13913 punctuation in the warning inserted into the *mail* buffer.
13914
13915 2000-11-02 Gerd Moellmann <gerd@gnu.org>
13916
13917 * emacs-lisp/authors.el (authors-public-domain-files): New variable.
13918 (authors-public-domain-p): New function.
13919 (authors-print): Use it.
13920
13921 * help.el (view-emacs-news): Use ONEWS.* instead of NEWS.* files.
13922
13923 * mail/mh-e.el, mail/mh-comp.el: Change maintainer.
13924
13925 2000-11-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13926
13927 * ps-print.el: Extension for even/odd printing. Doc fix.
13928 (ps-print-version): New version number (6.3.1).
13929 (ps-even-or-odd-pages): Customization fix.
13930 (ps-print-page-p, ps-begin-file, ps-begin-job, ps-page-number)
13931 (ps-header-sheet, ps-header-page, ps-end-job): Code fix.
13932 (ps-page-count): Var replaced by `ps-page-column'.
13933 (ps-page-column, ps-page-sheet, ps-page-printed): New vars.
13934 (ps-print-sheet-p): New fun.
13935
13936 2000-11-02 Miles Bader <miles@lsi.nec.co.jp>
13937
13938 * tooltip.el (tooltip-gud-tips-setup): New function.
13939 (tooltip-gud-tips-p): Add :set to call tooltip-gud-tips-setup.
13940 (tooltip-mode): Call tooltip-gud-tips-setup.
13941 (tooltip-gud-tips): Use `gud-basic-call' instead of
13942 process-send-string, so the prompt gets frobbed appropriately.
13943 Handle nil return value from `tooltip-gud-print-command'.
13944
13945 2000-11-01 Eric M. Ludlam <zappo@ultranet.com>
13946
13947 * comint.el (comint-add-to-input-history): New function.
13948 (comint-send-input): Use `comint-add-to-input-history'.
13949
13950 2000-11-02 Miles Bader <miles@lsi.nec.co.jp>
13951
13952 * info.el (info-menu-header): New face.
13953 (Info-fontify-menu-headers): New function.
13954 (Info-fontify-node, Info-insert-dir): Call `Info-fontify-menu-headers'.
13955
13956 * info.el (Info-insert-dir): Don't include blank lines at
13957 beginning of additional dir files (one is added automatically).
13958
13959 2000-11-01 Stefan Monnier <monnier@cs.yale.edu>
13960
13961 * emacs-lisp/easy-mmode.el (define-minor-mode):
13962 Revert the latest changes.
13963 Allow the three positional arguments to be skipped and replaced
13964 by keyword arguments.
13965 Add a :toggle argument to determine whether a nil arg means toggle
13966 or means turn-on. The default is unchanged.
13967 Add a call to force-mode-line-update.
13968
13969 2000-11-01 Dave Love <fx@gnu.org>
13970
13971 * emacs-lisp/elp.el (elp-restore-function): Remove autoload cookie.
13972
13973 2000-11-01 Miles Bader <miles@lsi.nec.co.jp>
13974
13975 * calendar/calendar.el (diary-face, holiday-face):
13976 Add dark-background variants.
13977
13978 2000-10-31 Sam Steingold <sds@gnu.org>
13979
13980 * textmodes/tex-mode.el (tex-file): Use `default-directory' when
13981 `tex-main-file' does not have directory in it.
13982
13983 2000-10-31 Stefan Monnier <monnier@cs.yale.edu>
13984
13985 * cus-edit.el (custom-mode-map): Switch back to a sparse keymap.
13986
13987 2000-10-31 Thien-Thi Nguyen <ttn@gnu.org>
13988
13989 * ediff-init.el (ediff-prepare-buffer-hook): Expand docstring, no
13990 functional change.
13991
13992 2000-10-31 Gerd Moellmann <gerd@gnu.org>
13993
13994 * files.el (find-file-noselect): When we expand a wildcard, return
13995 a list of buffers, as we should do according to the doc string.
13996
13997 2000-10-31 Ken Raeburn <raeburn@gnu.org>
13998
13999 * loadup.el (top level): Adjust load path if program name is
14000 "../src/bootstrap-emacs", in case it's not dumped and thus the
14001 load path adjustment hasn't already been done.
14002
14003 2000-10-31 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14004
14005 * ps-print.el: Fix bug on selected pages for printing.
14006 Use `color-values' for Emacs 21. Ensure fontification when jit-lock
14007 is on. Try to avoid warning messages when compiling. Doc Fix.
14008 (ps-print-version): New version number (6.3).
14009 (ps-color-device): Use `color-values' to determine if device
14010 supports color.
14011 (ps-color-values): Try to use `x-color-values' when using XEmacs.
14012 (ps-print-page-p): Changed from defsubst to defun.
14013 (ps-page-number): Changed from defmacro to defun.
14014 (ps-header-sheet, ps-header-page): Fix bug on selected pages for
14015 printing.
14016 (ps-print-ensure-fontified): Ensure fontification when jit-lock is on.
14017 (ps-end-file, ps-dummy-page): Funs eliminated.
14018 (ps-print-color-scale): Changed default value.
14019 (ps-page-n-up, ps-print-page-p): New internal vars.
14020 (ps-print-preprint, ps-output, ps-begin-file, ps-begin-page)
14021 (ps-plot-region, ps-generate, ps-end-job): Code fix.
14022
14023 * delim-col.el: Little programming improvement.
14024 (delimit-columns-str): New macro.
14025 (delimit-columns-region, delimit-columns-rectangle): Code fix.
14026
14027 2000-10-31 Kenichi Handa <handa@etl.go.jp>
14028
14029 * term/mac-win.el (decode-mac-roman, encode-mac-roman, mac-roman):
14030 Moved to european.el.
14031 (ccl-encode-mac-roman-font, fontset-mac): Modified for
14032 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
14033 (mac-roman-kbd-insert, mac-roman-kbd-mode): These functions deleted.
14034 (mac-roman-kbd-mode, mac-roman-kbd-mode-map): These variables deleted.
14035
14036 2000-10-30 Dave Love <fx@gnu.org>
14037
14038 * progmodes/cc-menus.el (imenu-generic-expression)
14039 (imenu-progress-message): Only defvar when compiling.
14040
14041 * emacs-lisp/elp.el (elp-unload-hook): New function.
14042
14043 * loadhist.el (unload-feature): Call elp-restore-function,
14044 checking for symbols; don't use elp-restore-all.
14045 (loadhist-hook-functions): Doc fix.
14046
14047 2000-10-30 Stefan Monnier <monnier@cs.yale.edu>
14048
14049 * log-edit.el (log-edit-confirm): Fix the default.
14050
14051 2000-10-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14052
14053 * delim-col.el: Little fix: replace delimit-columns-align-columns by
14054 delimit-columns-format.
14055 (delimit-columns-region, delimit-columns-rectangle): Code fix.
14056
14057 2000-10-30 Miles Bader <miles@lsi.nec.co.jp>
14058
14059 * comint.el (comint-replace-by-expanded-history): Don't use
14060 comint-get-old-input (we're not looking at *old* input).
14061 (comint-get-old-input-default): If using fields, signal an error
14062 when the point is not in an input field.
14063
14064 2000-10-30 Kenichi Handa <handa@etl.go.jp>
14065
14066 * international/mule-conf.el: New charsets mule-unicode-2500-33ff
14067 and mule-unicode-e000-ffff.
14068
14069 * international/mule.el (decode-char, encode-char): New functions.
14070 (make-coding-system): Accept a symbol of translation table as a
14071 value of property `safe-chars'.
14072
14073 * international/mule-cmds.el (encode-coding-char): Check property
14074 safe-chars instead of safe-charsets.
14075
14076 * international/fontset.el (fontset-default): Modified for
14077 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
14078 (x-font-name-charset-alist): Likewise.
14079 (ccl-encode-unicode-font): New CCL program. Record it in
14080 font-ccl-encoder-alist to be used for fonts "ISO10646-1".
14081
14082 * language/european.el (mac-roman-decoder, mac-roman-encoder):
14083 New translation tables.
14084 (decode-mac-roman, encode-mac-roman): Definition of these CCL
14085 programs are modified and moved from mac-win.el.
14086 (mac-roman): Definition of this coding system is modified and
14087 moved from mac-win.el.
14088
14089 2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
14090
14091 * ediff-wind.el (ediff-setup-control-frame): Enclose
14092 face-attribute in condition-case to avoid errors in older emacsen.
14093
14094 2000-10-29 Miles Bader <miles@gnu.org>
14095
14096 * custom.el (custom-add-to-group): Allow multiple entries for a
14097 given value OPTION, as long as their widget types are different.
14098 * cus-edit.el (custom-face-value-create): If face name doesn't end
14099 with "face", add such here (similar to custom group widgets).
14100
14101 * comint.el (comint-highlight-prompt): Add :type.
14102
14103 2000-10-28 John Wiegley <johnw@gnu.org>
14104
14105 * calendar/timeclock.el (timeclock-log): Doc fix.
14106 (timeclock-last-event): Doc fix.
14107 (timeclock-log): Kill the timelog buffer after appending a new event.
14108 (timeclock-find-discrep): Use a temp buffer to read in the
14109 timelog, instead of visiting the file.
14110 (timeclock-log-data): A new function, along with a host of helper
14111 functions, for the purpose of making timelog data accessible to
14112 programmers.
14113
14114 * eshell/esh-mode.el (window-height test): Make certain that
14115 `eshell-stringify-t' is non-nil.
14116 (eshell-password-prompt-regexp): Changed to a much simpler
14117 password regexp.
14118 (eshell-send-input): If `eshell-invoke-directly' returns t,
14119 directly invoke the parsed command using `eval'. This improves
14120 turn-around time on simple commands by a factor of three or
14121 greater, such as cd, ls, pwd, etc. -- which get used very often.
14122 It also conserves thousands of cons cells per call (since
14123 `eshell-do-eval' consumes memory like a Cookie Monster set loose
14124 in the Pacific Cookie Company).
14125
14126 * eshell/esh-test.el (eshell-test): Whitespace fix.
14127
14128 * eshell/em-ls.el (eshell-ls-insert-directory):
14129 Make `eshell-ls-initial-args' nil when inserting directory contents.
14130
14131 * eshell/em-script.el (eshell-script-initialize): Add names to
14132 `eshell-complex-commands, since `source' and `.' are complex.
14133
14134 * eshell/esh-cmd.el (eshell-rewrite-for-command)
14135 (eshell-rewrite-while-command): Use `eshell-protect' instead of
14136 `eshell-copy-handles'.
14137 (eshell-rewrite-if-command): Use `eshell-protect' to wrap the call
14138 bodies.
14139 (eshell-separate-commands): Whitespace fix.
14140 (eshell-complex-commands): Added a new list of names, for
14141 determining whether a given command is as simple as it looks.
14142 (eshell-invoke-directly): New function. Returns t if a command
14143 should be invoked directly (using `eval'), rather than indirectly
14144 using `eshell-do-eval'.
14145 (eshell-do-eval): Whitespace fix.
14146
14147 * eshell/em-unix.el (eshell-default-target-is-dot): New variable,
14148 which provides an emulation of the DOS shell behavior of assuming
14149 that cp/mv/ln should copy/move/link to the current directory.
14150 (eshell-remove-entries): Added a doc string.
14151 (eshell-shuffle-files): Removed the check for `target' being null.
14152 (eshell-mvcp-template, eshell-mvcpln-template): Renamed
14153 `eshell-mvcp-template' to `eshell-mvcpln-template', and extended
14154 it to do a smarter check of whether a destination was provided.
14155 (eshell/mv, eshell/cp): Enable `:preserve-args'.
14156 (eshell/ln): Enable `:preserve-args', and use
14157 `eshell-mvcpln-template' to implement the body of the function.
14158 (eshell/cat, eshell/make, eshell-poor-mans-grep, eshell-grep)
14159 (eshell/du, eshell/diff, eshell/locate): Stringify the argument
14160 list after flattening it. This makes it possible to cat files
14161 with numerical names.
14162 (eshell-unix-initialize): Added several names to
14163 `eshell-complex-commands.
14164 (eshell-unix-command-complex-p): Return t if a given command name
14165 may result in external processes being invoked.
14166
14167 * eshell/em-glob.el (eshell-glob-show-progress): Make this
14168 variable nil by default, since it slows down glob processing by a
14169 factor of two or more, and increases memory consumption.
14170
14171 * eshell/em-smart.el: Added a note about how memory consumptive
14172 smart display mode can be (at least this is true in Emacs 21).
14173 (eshell-smart-initialize): Whitespace fix.
14174 (eshell-refresh-windows): Use `if' instead of `when'.
14175 (eshell-smart-scroll-window): Calling `save-current-buffer' was
14176 not necessary.
14177 (eshell-currently-handling-window): Added a missing global variable.
14178
14179 * eshell/em-ls.el (eshell-do-ls): Code simplification.
14180 (eshell-ls-sort-entries, eshell-ls-entries, eshell-ls-dir):
14181 Whitespace fix.
14182 (eshell-ls-exclude-hidden): Added this variable in addition to
14183 `eshell-ls-exclude-regexp'. This one prevents files beginning
14184 with . from even being read, which can improve memory consumption
14185 quite a bit.
14186 (eshell-ls-dir): If `eshell-ls-exclude-hidden' is non-nil, do not
14187 read file entries beginning with a dot. In home directories with
14188 lots of hidden files, fully two-thirds of the time spent in ls is
14189 used to read directory entries that are immediately thrown away.
14190 (eshell-ls-initial-args): Added back this configuration variable,
14191 for specifying default initial arguments to every call to ls.
14192 Much faster than using an alias to do the same thing.
14193 (eshell-do-ls): Use `eshell-ls-initial-args', if set.
14194 (eshell-ls-dir): Whitespace change.
14195
14196 * eshell/em-dirs.el (eshell/pwd): Small code simplification.
14197
14198 * eshell/esh-util.el: Don't require `ange-ftp' if it's not available.
14199 (eshell-stringify-t): Added a customization variable, to indicate
14200 whether `t' should be rendered as a string at all. If not, one
14201 can still determine if the result of an expression is true using
14202 "file-exists-p FILE && echo true".
14203 (eshell-stringify): If `eshell-stringify-t' is nil, don't
14204 stringify t!
14205
14206 * eshell/esh-module.el: Whitespace fix.
14207
14208 * eshell/em-alias.el (eshell-alias-initialize):
14209 Added `eshell-command-aliased-p' to `eshell-complex-commands'.
14210 (eshell-command-aliased-p): New function that returns t if a
14211 command name names an aliased.
14212
14213 2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
14214
14215 * viper-cmd.el (viper-preserve-cursor-color): New test that avoids
14216 redrawing the screen when changing cursor color.
14217 (viper-insert-state-pre-command-sentinel)
14218 (viper-replace-state-pre-command-sentinel)
14219 (viper-replace-state-post-command-sentinel):
14220 Use viper-preserve-cursor-color.
14221 Many functions changed to use viper= instead of = when comparing
14222 characters.
14223 * viper-util.el (viper-memq-char,viper=): New functions for
14224 working with characters.
14225 (viper-change-cursor-color): Fixed buglet.
14226 Many functions changed to use viper= instead of = when comparing
14227 characters.
14228 * viper.el (viper-insert-state-mode-list): Added eshell.
14229
14230 * ediff-init.el (ediff-before-setup-hook): New hook.
14231 Several typos fixed in various docstrings.
14232 * ediff-merg.el (ediff-show-clashes-only): Docstring typo fixed.
14233 * ediff-nult.el (ediff-before-session-group-setup-hooks): New hook.
14234 (ediff-show-meta-buffer): Run ediff-before-session-group-setup-hooks.
14235 * ediff-util.el (ediff-setup): Run ediff-before-setup-hook.
14236 (ediff-other-buffer): Use selected buffers if in Buffer-menu buffer.
14237 (ediff-get-selected-buffers): New function.
14238 * ediff-vers.el (ediff-vc-internal,ediff-rcs-internal)
14239 (ediff-vc-merge-internal,ediff-rcs-merge-internal):
14240 Use save-window-excursion.
14241 * ediff-wind.el (ediff-skip-unsuitable-frames): More robust
14242 termination check in while loop.
14243 * ediff.el (ediff-get-default-file-name): Better defaults when in
14244 dired buffer.
14245 (ediff-files,ediff-merge-files,ediff-files3)
14246 (ediff-merge-files-with-ancestor): Use ediff-get-default-file-name.
14247
14248 2000-10-28 Dave Love <fx@gnu.org>
14249
14250 * info.el (Info-fontify-node): Add help-echo for menu items.
14251
14252 2000-10-28 Eli Zaretskii <eliz@is.elta.co.il>
14253
14254 * startup.el (normal-top-level): If the value of $TERM indicates
14255 we are running from xterm or one of its work-alikes, default to a
14256 light background mode.
14257
14258 Support for -fg, -bg, and -rv command-line arguments for TTYs:
14259 * faces.el (tty-handle-reverse-video): New function.
14260 (tty-create-frame-with-faces): Call it.
14261
14262 * frame.el (frame-notice-user-settings): Don't apply
14263 default-frame-alist and initial-frame-alist to MS-DOS frames.
14264 Call tty-handle-reverse-video, frame-set-background-mode, and
14265 face-set-after-frame-default for non-MS-DOS frames.
14266
14267 * startup.el (tty-long-option-alist): New variable.
14268 (tty-handle-args): New function.
14269 (command-line): Call tty-handle-args.
14270
14271 * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove;
14272 startup.el now does that for all character-terminal frames.
14273
14274 2000-10-28 Miles Bader <miles@gnu.org>
14275
14276 * emacs-lisp/easy-mmode.el (define-minor-mode):
14277 Generate `turn-on-MODE' and `turn-off-MODE' functions unless the mode
14278 is global. If :global is followed by a non-nil but non-t value,
14279 make the mode buffer-local, but also generate a `global-MODE'
14280 version using `easy-mmode-define-global-mode'.
14281 Add :conditional-turn-on keyword argument.
14282
14283 2000-10-28 Dave Love <fx@gnu.org>
14284
14285 * international/latin1-disp.el (latin1-char-displayable-p):
14286 Don't use window-system.
14287
14288 2000-10-27 Eli Zaretskii <eliz@is.elta.co.il>
14289
14290 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
14291 Don't call find-buffer-file-type-coding-system. Instead, just
14292 set eol-type to -unix if inhibit-eol-conversion is in effect, or
14293 if the file is on an untranslated filesystem.
14294 (add-untranslated-filesystem): Use "D" instead of "f" inside
14295 interactive.
14296
14297 2000-10-27 Dave Love <fx@gnu.org>
14298
14299 * textmodes/refill.el (refill-late-fill-paragraph-function): New var.
14300 (refill-mode): Use it.
14301
14302 2000-10-27 Stefan Monnier <monnier@cs.yale.edu>
14303
14304 * international/quail.el (quail-activate): Don't make-local-hook.
14305
14306 2000-10-27 Andre Spiegel <spiegel@gnu.org>
14307
14308 * vc-hooks.el (vc-version-backup-file-name): Use file.~<rev>~ for
14309 manual backups and file.~<rev>.~ for automatic ones.
14310 (vc-make-version-backup): Don't do it on MS-DOS without long file
14311 names.
14312
14313 * vc.el (vc-version-other-window): If an automatic backup of the
14314 desired version exists, rename it instead of copying it.
14315
14316 * vc-cvs.el (vc-cvs-checkin): Check both status and error message
14317 after command. If there's an unexpected error, signal it instead
14318 of being silent.
14319 (vc-cvs-merge-news): Be prepared for no news at all.
14320
14321 2000-10-27 Miles Bader <miles@lsi.nec.co.jp>
14322
14323 * shell.el (shell): Add BUFFER argument.
14324 * comint.el (make-comint-in-buffer): New function.
14325 (make-comint): Use it.
14326
14327 * faces.el (face-spec-choose): Change syntax so that the list of
14328 attribute-value pairs is now the cdr of each clause, not the cadr.
14329 Detect old-style entries, and handle them. Use pop.
14330
14331 2000-10-26 Stefan Monnier <monnier@cs.yale.edu>
14332
14333 * cus-edit.el (custom-mode-map): Use a sparse map.
14334 (custom-mode): Don't bother with make-local-hook.
14335
14336 * wid-edit.el (widget-add-change): Don't bother with make-local-hook.
14337
14338 * vc.el (vc-start-entry): Only erase the buffer if comment is set.
14339
14340 2000-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14341
14342 * ps-print.el: Avoid compilation gripes.
14343 (ps-print-version): New version number (6.2.1).
14344
14345 2000-10-26 Dave Love <fx@gnu.org>
14346
14347 * menu-bar.el: Modify some menu item help strings.
14348 (menu-bar-help-menu): Add link to MORE.STUFF.
14349
14350 * cus-edit.el (custom-mode): Add `special' mode-class property.
14351
14352 * wid-browse.el (widget-browse-mode): Likewise.
14353
14354 * wid-edit.el (widget-specify-field): Revert to using local-map
14355 property, not keymap.
14356
14357 2000-10-26 Miles Bader <miles@lsi.nec.co.jp>
14358
14359 * wid-edit.el (widget-field-end): When checking for a `boundary'
14360 field, do so in the correct buffer.
14361
14362 * simple.el (undo): Correctly distinguish between numeric and
14363 non-numeric prefix args in non-transient-mark-mode, as per the doc
14364 string. When in transient-mark-mode, treat all prefix-args as
14365 numeric.
14366
14367 * simple.el (previous-matching-history-element): Miscellaneous cleanup.
14368 Position point on match. Handle N == 0 correctly.
14369
14370 * comint.el (comint-mode): Locally set `next-line-add-newlines' to nil.
14371 (comint-mode-map): Reverse order of `comint-write-output' and
14372 `comint-append-output-to-file'.
14373 (comint-append-output-to-file): Reinstate this function, for the
14374 benefit of the menu.
14375
14376 2000-10-25 Stefan Monnier <monnier@cs.yale.edu>
14377
14378 * vc.el (vc-version-other-window): Bind `file'.
14379
14380 2000-10-25 Gerd Moellmann <gerd@gnu.org>
14381
14382 * Makefile.in (update-authors): New target for maintenance purposes.
14383
14384 * emacs-lisp/authors.el (batch-update-authors): New function.
14385 (authors-fixed-entries): New defconst.
14386 (authors-add-fixed-entries): New function.
14387 (authors): Call it.: Don't process lispref/.
14388
14389 2000-10-25 Jason Rumney <jasonr@gnu.org>
14390
14391 * cus-edit.el (custom-button-face, custom-button-pressed-face):
14392 Merge x w32 and mac definitions.
14393
14394 2000-10-25 Gerd Moellmann <gerd@gnu.org>
14395
14396 * menu-bar.el (menu-bar-options-menu): Add a help string for
14397 `uniquify'.
14398
14399 2000-10-25 Stephen Gildea <gildea@stop.mail-abuse.org>
14400
14401 * time-stamp.el (time-stamp-string-preprocess):
14402 Fix a wrong type argument error.
14403
14404 2000-10-25 Miles Bader <miles@gnu.org>
14405
14406 * recentf.el (recentf-mode): Variable removed.
14407 (recentf-mode): Use `define-minor-mode'.
14408
14409 * mwheel.el (mouse-wheel-mode): New global minor mode.
14410 (mwheel-install): Use `mouse-wheel-mode'.
14411
14412 2000-10-25 Dave Love <fx@gnu.org>
14413
14414 * progmodes/cperl-mode.el (cperl-mode):
14415 Set normal-auto-fill-function correctly.
14416
14417 * wid-edit.el (widget-field-keymap, widget-text-keymap):
14418 Don't inherit from global-map and don't nullify menu-bar and tool-bar
14419 bindings.
14420
14421 2000-10-25 Miles Bader <miles@lsi.nec.co.jp>
14422
14423 * wid-edit.el (widget-field-at): New function.
14424 (widget-at, widget-field-activate): Use it.
14425 (widget-tabable-at): Use `widget-at'.
14426 (widget-specify-field): If the terminating character of the widget
14427 field (which is read-only) is a newline, put it into a special
14428 `boundary' field so that C-n/C-p act more naturally.
14429 (widget-field-end): Also don't subtract one if a special
14430 `boundary' field has been added after the widget field.
14431
14432 * comint.el (comint-output-filter, comint-send-input):
14433 Don't bother adding stickiness fields to overlays to fool the field
14434 code, since it should notice the overlay insertion-types now.
14435
14436 * wid-edit.el (widget-beginning-of-line, widget-end-of-line):
14437 Replace with aliases of the normal emacs b-o-l/e-o-l functions.
14438 (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e.
14439
14440 2000-10-24 Gerd Moellmann <gerd@gnu.org>
14441
14442 * emacs-lisp/authors.el (authors-aliases): Add some more aliases.
14443 (authors): Set file coding system to iso-2022-7bit.
14444 Add file-local variables to output buffer.
14445
14446 * files.el (after-find-file): Don't print any warnings if
14447 WARN is nil.
14448
14449 2000-10-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14450
14451 * ps-print.el (ps-generate): Fix odd/even pages printing bug.
14452
14453 * delim-col.el: Now there is a column formatting mechanism.
14454 Modified to customization mechanisms convention. Doc fix.
14455 (columns): New group for delim-col.
14456 (delimit-columns-before, delimit-columns-after)
14457 (delimit-columns-format, delimit-columns-extra, delimit-columns-start)
14458 (delimit-columns-end): New vars.
14459 (delimit-columns-customize, delimit-columns-format): New funs.
14460 (delimit-columns-region, delimit-columns-rectangle)
14461 (delimit-columns-rectangle-line): Modified to support column
14462 formatting.
14463
14464 2000-10-24 Dave Love <fx@gnu.org>
14465
14466 * log-edit.el (log-edit): Add :version and a :group for vc.
14467
14468 2000-10-24 Gerd Moellmann <gerd@gnu.org>
14469
14470 * files.el (after-find-file): Don't print a message ``New file''
14471 if WARN is nil.
14472
14473 * wid-edit.el (widget-field-keymap, widget-text-keymap):
14474 Define the tool-bar map as nil, as for the menu-bar. Otherwise, we'll
14475 get duplicate tool-bar entries because we'll see the global ones
14476 on more than one path through keymaps.
14477
14478 * emacs-lisp/lisp.el (defun-prompt-regexp): Doc fix.
14479
14480 * progmodes/cmacexp.el: Change Francesco's email address.
14481
14482 2000-10-24 Kenichi Handa <handa@etl.go.jp>
14483
14484 * window.el (fit-window-to-buffer): Adjust point of the window
14485 buffer, not that of the current buffer.
14486
14487 2000-10-24 Eli Zaretskii <eliz@is.elta.co.il>
14488
14489 * progmodes/cmacexp.el: Update the euthor's email address.
14490
14491 2000-10-24 Miles Bader <miles@lsi.nec.co.jp>
14492
14493 * faces.el (face-spec-set-match-display): Add `graphic' display
14494 type (the inverse of `tty'). Use `display-graphic-p' instead of
14495 the window-system variable.
14496
14497 2000-10-24 Kenichi Handa <handa@etl.go.jp>
14498
14499 * international/isearch-x.el (isearch-with-input-method):
14500 Call input-method-function with the first event in
14501 unread-command-events.
14502
14503 2000-10-24 Miles Bader <miles@lsi.nec.co.jp>
14504
14505 * faces.el (face-default-spec, face-user-default-spec): Make defsubsts.
14506
14507 2000-10-24 Andrew Choi <akochoi@i-cable.com>
14508
14509 * international/mule-conf.el (mac-roman-lower, mac-roman-upper):
14510 New charsets.
14511
14512 * term/mac-win.el: Remove definitions of mac-roman-lower and
14513 mac-roman-upper, require dired, and define instead of set
14514 mac-ready-for-drag-n-drop to avoid compilation error.
14515
14516 2000-10-23 Andrew Innes <andrewi@gnu.org>
14517
14518 * files.el (make-backup-file-name-1) [windowsnt, ms-dos]:
14519 Remove superfluous calls to subst-char-in-string; instead apply
14520 expand-file-name after convert-standard-filename to ensure
14521 expected directory separators are used.
14522
14523 2000-10-23 Eli Zaretskii <eliz@is.elta.co.il>
14524
14525 * info.el (Info-file-list-for-emacs): Add an entry for Eshell.
14526
14527 2000-10-23 Dave Love <fx@gnu.org>
14528
14529 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
14530 (tool-bar-add-item): Set foreground and background for XBM icons.
14531
14532 * international/latin1-disp.el (latin1-char-displayable-p):
14533 New function (from Handa).
14534 (latin1-display-check-font): Use it.
14535
14536 * imenu.el (imenu--create-keymap-2): Build menu with menu-item
14537 using :key-sequence, making it much more usable.
14538 Use nconc, not append.
14539 (imenu--create-keymap-1): Avoid append.
14540
14541 * textmodes/refill.el: Remove bits redundant with define-minor-mode.
14542
14543 2000-10-23 Miles Bader <miles@lsi.nec.co.jp>
14544
14545 [the following changes fix a bug where `define-minor-mode' didn't
14546 correctly generate :require clauses for defcustoms in compiled files]
14547 * emacs-lisp/bytecomp.el (byte-compile-last-logged-file): New variable.
14548 (byte-compile-log-file, byte-compile-log-1): Don't set
14549 `byte-compile-current-file' to nil. Instead set
14550 `byte-compile-last-logged-file' to it. Test whether
14551 byte-compile-current-file equals byte-compile-last-logged-file
14552 instead of whether its nil.
14553 (byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
14554
14555 2000-10-23 Stefan Monnier <monnier@cs.yale.edu>
14556
14557 * textmodes/refill.el: Fix var names in doc.
14558 (refill-mode): Don't bother with make-local-hook anymore.
14559
14560 2000-10-23 Miles Bader <miles@lsi.nec.co.jp>
14561
14562 * faces.el (face-user-default-spec, face-default-spec): New functions.
14563 (face-spec-choose, face-spec-set): Document nil-SPEC behavior.
14564 (frame-set-background-mode, face-set-after-frame-default):
14565 Use `face-user-default-spec'. Simplify code slightly.
14566
14567 * woman.el (woman-italic-face, woman-bold-face)
14568 (woman-unknown-face): Add dark-background variants.
14569 (woman-default-faces): Renamed from `woman-colour-faces'.
14570 Set using the stored defaults, rather than using hard-wired colors.
14571 (woman-monochrome-faces): Renamed from `woman-black-faces'.
14572 Just make the foreground `unspecified' rather than "black".
14573 (woman-menu): Rename menu entries accordingly.
14574
14575 * faces.el (header-line): Make more reasonable on mono/grayscale
14576 displays.
14577
14578 2000-10-23 Andrew Choi <akochoi@i-cable.com>
14579
14580 * cus-edit.el (custom-button-face): Use 3D look for mac.
14581 (custom-button-pressed-face): Likewise.
14582
14583 * faces.el (set-face-attributes-from-resources): Handle mac frames
14584 in the same way as x and w32 frames.
14585 (face-valid-attribute-values): Likewise.
14586 (read-face-attribute): Likewise.
14587 (defined-colors): Likewise.
14588 (color-defined-p): Likewise.
14589 (color-values): Likewise.
14590 (display-grayscale-p): Likewise.
14591 (face-set-after-frame-default): Likewise.
14592 (mode-line): Same default face as for x and w32.
14593 (tool-bar): Likewise.
14594
14595 * frame.el: Remove call to frame-notice-user-settings at end of
14596 the file.
14597
14598 * info.el (Info-fontify-node): Make underlines invisible for mac
14599 as for x, pc, and w32 frame types.
14600
14601 * term/mac-win.el: New file.
14602
14603 2000-10-22 Dave Love <fx@gnu.org>
14604
14605 * textmodes/refill.el: New file.
14606
14607 2000-10-22 Andre Spiegel <spiegel@gnu.org>
14608
14609 * vc-hooks.el (vc-version-backup-file-name): New optional args
14610 MANUAL and REGEXP.
14611 (vc-delete-automatic-version-backups, vc-make-version-backup):
14612 New functions.
14613 (vc-before-save): Use the latter.
14614 (vc-default-make-version-backups-p): Added `-p' suffix to avoid
14615 confusion.
14616
14617 * vc-cvs.el (vc-cvs-make-version-backups-p): Added `-p' suffix as
14618 expected by vc[-hooks].el.
14619
14620 * vc.el (vc-checkout): Added `-p' suffix in call to
14621 vc-make-version-backups-p; use vc-make-version-backup to actually
14622 make the backup.
14623 (vc-version-other-window, vc-version-backup-file): Handle both
14624 automatic and manual backups.
14625 (vc-revert-file): Use vc-delete-automatic-version-backups to get rid
14626 of all of them.
14627
14628 2000-10-22 Miles Bader <miles@gnu.org>
14629
14630 * comint.el (comint-highlight-input, comint-highlight-prompt):
14631 Renamed, `-face' at end removed.
14632 (comint-send-input, comint-output-filter): Use renamed faces.
14633
14634 * window.el (fit-window-to-buffer): Change defaulting of
14635 MAX-HEIGHT slightly.
14636
14637 * faces.el (color-values, color-defined-p): Use `member', not
14638 `memq', because it works correctly for strings.
14639 (frame-set-background-mode): Actually, "unspecified-fg" and
14640 "unspecified-bg" *are* strings. Use `member', not `memq', and
14641 `equal', not `eq', when a string value is possible.
14642
14643 2000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
14644
14645 * info.el (Info-file-list-for-emacs): Add an entry for Speedbar.
14646
14647 2000-10-21 Stefan Monnier <monnier@cs.yale.edu>
14648
14649 * progmodes/sh-script.el (sh-mode-map): Remove bindings for
14650 sh-electric-rparen, sh-electric-less and sh-electric-hash.
14651 (sh-st-punc, sh-here-doc-syntax): Use string-to-syntax.
14652 (sh-font-lock-heredoc, sh-font-lock-paren): New funs.
14653 (sh-font-lock-syntactic-keywords): Use them.
14654 (sh-heredoc-face, sh-st-face, sh-special-syntax): Remove.
14655 (sh-mkword-regexp, sh-electric-rparen-needed-here): Remove.
14656 (sh-mode): Don't override font-lock-unfontify-region-function.
14657 Use a copy of sh-font-lock-syntactic-keywords.
14658 (sh-set-shell): Don't set sh-electric-rparen-needed-here.
14659 Don't call sh-scan-buffer since font-lock does it on the fly.
14660 (sh-get-indent-info): Use `face' rather than `syntax-table'
14661 text-property to detect here-documents.
14662 Replace sh-special-syntax with sh-st-punc.
14663 (sh-prev-line): Use `face' rather than `syntax-table'
14664 text-property to skip over here-documents.
14665 (sh-font-lock-unfontify-region-function, sh-check-paren-in-case)
14666 (sh-set-char-syntax, sh-electric-rparen, sh-electric-hash)
14667 (sh-electric-less, sh-set-here-doc-region)
14668 (sh-remove-our-text-properties, sh-search-word, sh-scan-case)
14669 (sh-scan-buffer, sh-rescan-buffer): Remove.
14670
14671 2000-10-21 Andrew Innes <andrewi@gnu.org>
14672
14673 * w32-fns.el (make-auto-save-file-name): Don't apply conversion to
14674 remote (ange-ftp) file names.
14675
14676 2000-10-21 Miles Bader <miles@gnu.org>
14677
14678 * window.el (fit-window-to-buffer): New function.
14679 (shrink-window-if-larger-than-buffer): Use it.
14680 (window-text-height): Don't expect minibuffers to have mode-lines.
14681
14682 * help.el (resize-temp-buffer-window): Use `fit-window-to-buffer'.
14683 * international/quail.el (quail-update-guidance):
14684 Use `fit-window-to-buffer' instead of `set-window-text-height'.
14685
14686 * international/quail.el (quail-show-guidance-buf): Make sure
14687 guidance window really has enough room.
14688 (quail-update-guidance): If quail-guidance-win is already shown,
14689 make sure its height is OK.
14690
14691 * window.el (window-text-height, set-window-text-height):
14692 New functions.
14693 (shrink-window-if-larger-than-buffer): Use `window-text-height'
14694 instead of `window-height' & `mode-line-window-height-fudge'.
14695 (mode-line-window-height-fudge): Add FACE parameter.
14696 * help.el (resize-temp-buffer-window): Use `set-window-text-height'
14697 instead of `enlarge-window' & `mode-line-window-height-fudge'.
14698
14699 2000-10-20 Miles Bader <miles@gnu.org>
14700
14701 * window.el (height-affecting-face-attributes): Use `defconst'.
14702
14703 * textmodes/ispell.el (ispell-mode-line-window-height-fudge):
14704 New function, conditionally aliased to `mode-line-window-height-fudge'.
14705 (ispell-help): Use it.
14706 (ispell-choices-win-default-height): Don't include mode-line fudge.
14707 (ispell-choices-win-default-height): New function.
14708 (ispell-show-choices, ispell-command-loop): Use function
14709 `ispell-choices-win-default-height' instead of variable.
14710
14711 2000-10-20 Miles Bader <miles@lsi.nec.co.jp>
14712
14713 * window.el (mode-line-window-height-fudge): New variable.
14714 (height-affecting-face-attributes): New variable.
14715 (mode-line-window-height-fudge): New function.
14716 (shrink-window-if-larger-than-buffer): Use it.
14717 * help.el (resize-temp-buffer-window): Likewise.
14718
14719 * info.el (Info-fontify-node): Add support for @subsubsection
14720 titles, which use `Info-title-4-face'.
14721 (Info-title-4-face): New face.
14722 (Info-title-3-face): Inherit from Info-title-4-face instead of
14723 variable-pitch.
14724
14725 2000-10-19 Jason Rumney <jasonr@gnu.org>
14726
14727 * dired.el (dired-insert-directory): Do not let errors signalled by
14728 attempt to run dired-free-space-program prevent dired from working.
14729
14730 2000-10-19 Stefan Monnier <monnier@cs.yale.edu>
14731
14732 * diff-mode.el (diff-find-file-name): Fix regex subgroup number.
14733
14734 2000-10-19 Gerd Moellmann <gerd@gnu.org>
14735
14736 * dirtrack.el (dirtrack): Fix call to run-hooks.
14737
14738 * cmuscheme.el (cmuscheme-program-name): Renamed from
14739 scheme-program-name because xscheme.el contains a defcustom with
14740 the same name. As a consequence, customizing group `cmuscheme'
14741 loaded `xscheme' which redefined run-scheme.
14742 (run-scheme): Use cmuscheme-program-name.
14743
14744 * ps-print.el (ps-print-emacs-type): Move into the eval-and-compile.
14745
14746 * play/doctor.el (doctor-death): Update the Samaritans'
14747 anonymous address, and add a website for Befrienders International.
14748
14749 2000-10-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14750
14751 * ps-print.el: Even/odd pages fix. Fix little bug on XEmacs.
14752 Avoid compilation gripes. Doc fix.
14753 (ps-print-version): New version number (6.2).
14754 (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
14755 (ps-x-color-name, ps-x-color-specifier-p, ps-x-copy-coding-system)
14756 (ps-x-device-class, ps-x-extent-end-position, ps-x-extent-face)
14757 (ps-x-extent-priority, ps-x-extent-start-position)
14758 (ps-x-face-font-instance, ps-x-find-coding-system)
14759 (ps-x-font-instance-properties, ps-x-make-color-instance)
14760 (ps-x-map-extents): Alias for functions without the prefix `ps-x-', to
14761 avoid compilation gripes without defining functions.
14762 (ps-e-find-composition): Alias for function find-composition, to have a
14763 suitable function depending on Emacs version.
14764 (ps-color-device, ps-color-values, ps-face-foreground-name)
14765 (ps-face-background-name, ps-face-bold-p, ps-face-italic-p, ps-mapper)
14766 (ps-extent-sorter, ps-xemacs-face-kind-p, ps-xemacs-color-name)
14767 (ps-print-ensure-fontified): Function definitions surrounded by
14768 `eval-and-compile' to avoid compilation gripes.
14769 (ps-font-lock-face-attributes): `font-lock-face-attributes' evaluated
14770 by symbol-value to avoid compilation gripes.
14771 (ps-end-file, ps-header-sheet, ps-plot-region): Even/odd pages fix.
14772 (ps-generate-postscript-with-faces): Fix little bug on XEmacs.
14773
14774 2000-10-19 Miles Bader <miles@lsi.nec.co.jp>
14775
14776 * startup.el (normal-top-level): Call `frame-set-background-mode'
14777 after `frame-notice-user-settings' because the latter doesn't call
14778 the former on a tty.
14779
14780 * faces.el (frame-set-background-mode): `unspecified' &c are
14781 symbols, not strings.
14782
14783 2000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
14784
14785 * term/tty-colors.el (color-name-rgb-alist): Add a comment explaining
14786 why some "light*" colors are deliberately absent from the alist.
14787
14788 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face):
14789 Change colors for tty's, as suggested by Miles Bader.
14790
14791 2000-10-19 Kenichi Handa <handa@etl.go.jp>
14792
14793 * international/fontset.el: Use registry "MuleTibetan-2" for Tibetan.
14794 (ccl-encode-mule-unicode-0100-24ff): New CCL program. Register it
14795 for ISO10646-1 fonts.
14796 (x-font-name-charset-alist): Add an entry for "iso10646-1".
14797
14798 2000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
14799
14800 * faces.el (frame-set-background-mode): If a tty frame defines a
14801 background color, use that to compute the background mode, instead
14802 of always defaulting to "dark".
14803
14804 2000-10-19 Miles Bader <miles@lsi.nec.co.jp>
14805
14806 * comint.el (comint-write-output): New function.
14807 (comint-mode-map): Add it to the menu.
14808 Bind `C-c C-s' to comint-write-output.
14809
14810 2000-10-18 Gerd Moellmann <gerd@gnu.org>
14811
14812 * startup.el (fancy-splash-screens): Set buffer-undo-list to t.
14813 Use fancy-splash-delay.
14814
14815 2000-10-18 Alex Schroeder <alex@gnu.org>
14816
14817 * progmodes/sql.el (sql-sybase-options): New option.
14818 (sql-sybase): Use it. Add sql-database to the list of parameters
14819 provided for login. The options -w 2048 -n are not used any more.
14820
14821 * comint.el (comint-read-input-ring): Bugfix such that the first
14822 and the last entry of the input ring file are not lost.
14823
14824 2000-10-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14825
14826 * ps-print.el: Internal variable changes to defcustom,
14827 make-local-hook changes to defvar. Doc fix.
14828 (ps-print-version): New version number (6.1).
14829 (ps-setup, ps-do-despool): Code fix.
14830 (ps-printer-name): Customization fix.
14831 (ps-printer-name-option): Now is a defcustom instead of an
14832 internal variable.
14833 (ps-print-hook, ps-print-begin-sheet-hook, ps-print-begin-page-hook)
14834 (ps-print-begin-column-hook): Now are defvar instead of
14835 make-local-hook.
14836
14837 2000-10-18 Miles Bader <miles@gnu.org>
14838
14839 * comint.el (comint-delete-output): Renamed from `comint-kill-output'.
14840 (comint-kill-output): Changed into an alias for `comint-delete-output',
14841 and made obsolete.
14842 (comint-mode-map): Rename references to comint-kill-output.
14843
14844 2000-10-18 Eli Zaretskii <eliz@is.elta.co.il>
14845
14846 * diff-mode.el (diff-header-face, diff-file-header-face)
14847 (diff-changed-face): Add bold and italic attributes to tty faces.
14848 (diff-function-face): New face.
14849 (diff-font-lock-keywords): Use it.
14850
14851 2000-10-18 Miles Bader <miles@lsi.nec.co.jp>
14852
14853 * comint.el (comint-output-filter): Fixup comint-last-input-end too.
14854 Remove commented-out call to force-mode-line-update.
14855 (comint-kill-output): Use `forward-line 0' instead of
14856 beginning-of-line to make sure we get past the prompt.
14857
14858 2000-10-17 Stefan Monnier <monnier@cs.yale.edu>
14859
14860 * diff-mode.el (diff-header-face, diff-file-header-face):
14861 Add specific setting for dark background.
14862 (diff-context-face): Renamed from diff-comment-face.
14863 Set explicitly rather than inheriting from font-lock-comment-face.
14864
14865 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
14866
14867 * startup.el (command-line): Move the code which sets the default
14868 TTY colors to before before-init-hook.
14869
14870 2000-10-17 Gerd Moellmann <gerd@gnu.org>
14871
14872 * jit-lock.el (jit-lock-stealth-time): Doc fix.
14873
14874 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
14875
14876 * files.el (auto-mode-alist): Add .dif and .pat as diff-mode
14877 extensions, for MS-DOS.
14878
14879 * diff-mode.el (diff-header-face, diff-file-header-face)
14880 (diff-changed-face): Define tty-specific colors.
14881
14882 2000-10-17 Gerd Moellmann <gerd@gnu.org>
14883
14884 * startup.el (fancy-splash-text): Realign the text.
14885
14886 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
14887
14888 * font-lock.el (font-lock-comment-face): Define a separate default
14889 for dark-background tty's.
14890
14891 2000-10-17 Miles Bader <miles@gnu.org>
14892
14893 * help.el (resize-temp-buffer-window): Add hack to avoid last line
14894 being obscured by whizzy mode-lines on graphics displays.
14895
14896 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
14897
14898 * info.el (Info-title-1-face, Info-title-2-face)
14899 (Info-title-3-face): Define colors for tty's.
14900 (info-header-node): Remove unneeded tty-specific definition.
14901
14902 2000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
14903
14904 * term/pc-win.el (msdos-handle-reverse-video): Don't remove
14905 reverse from the frame parameters, and don't invert foreground and
14906 background colors.
14907
14908 2000-10-16 Miles Bader <miles@gnu.org>
14909
14910 * info.el (Info-set-mode-line): Use `%b' instead of hardwired
14911 string "*Info*". Call propertized-buffer-identification to spruce
14912 up the result.
14913
14914 2000-10-16 Gerd Moellmann <gerd@gnu.org>
14915
14916 * help.el: Provide `help' for the sake of define-minor-mode
14917 which generates defcustoms with requires.
14918
14919 * jit-lock.el (jit-lock-after-change): If we're in text that
14920 matches a multi-line font-lock pattern, make sure the whole text
14921 will be redisplayed.
14922
14923 * emacs-lisp/authors.el (authors-add): Don't add an entry if
14924 author's name is unknown.
14925
14926 * eshell/esh-var.el, eshell/esh-util.el, eshell/esh-test.el,
14927 * eshell/esh-proc.el, eshell/esh-opt.el, eshell/esh-mode.el,
14928 * eshell/esh-maint.el, eshell/esh-io.el, eshell/esh-ext.el,
14929 * eshell/esh-cmd.el, eshell/esh-arg.el, eshell/em-xtra.el,
14930 * eshell/em-unix.el, eshell/em-term.el, eshell/em-smart.el,
14931 * eshell/em-script.el, eshell/em-rebind.el, eshell/em-prompt.el,
14932 * eshell/em-pred.el, eshell/em-ls.el, eshell/em-hist.el,
14933 * eshell/em-glob.el, shell/em-dirs.el, eshell/em-cmpl.el,
14934 * eshell/em-basic.el, eshell/em-banner.el, eshell/em-alias.el:
14935 Add author information.
14936
14937 2000-10-16 Miles Bader <miles@lsi.nec.co.jp>
14938
14939 * toolbar/up_arrow.xpm, toolbar/right_arrow.xpm:
14940 * toolbar/left_arrow.xpm, toolbar/home.xpm: Re-convert from
14941 full-color version (using the Gimp) to eliminate dithering artifacts.
14942
14943 2000-10-15 Stefan Monnier <monnier@cs.yale.edu>
14944
14945 * font-lock.el (font-lock-syntactic-keywords): Fix docstring.
14946
14947 * simple.el (syntax-flag-table, string-to-syntax): Remove.
14948
14949 2000-10-15 Dave Love <fx@gnu.org>
14950
14951 * progmodes/sh-script.el: Require skeleton and comint when compiling.
14952
14953 * pcomplete.el (pcomplete) <defgroup>: Add :version.
14954
14955 * whitespace.el: Doc fixes.
14956 (top-level): Don't add hooks here.
14957 (whitespace-running-emacs): Deleted.
14958 (timer): Don't require.
14959 (whitespace): Add back :version conditional on xemacs test.
14960 (whitespace-spacetab-regexp, whitespace-indent-regexp)
14961 (whitespace-ateol-regexp, whitespace-modes): Fix custom type.
14962 (whitespace-force-mode-line-update, whitespace-refresh-rescan-list)
14963 (whitespace-tickle-timer, whitespace-rescan-files-in-buffers):
14964 Avoid specific xemacs test.
14965 (whitespace-global-mode): New option.
14966 (whitespace-global-mode): New command.
14967 (whitespace-unload-hook): New function.
14968
14969 * info.el (Info-mouse-follow-nearest-node): Use mouse-set-point.
14970 (Info-fontify-node, Info-goto-node, Info-mode-menu)
14971 (Info-fontify-node): `Goto' goes to `Go to'.
14972 (Info-fontify-node): Add help-echo to xref links.
14973
14974 2000-10-15 Eli Zaretskii <eliz@is.elta.co.il>
14975
14976 * eshell/em-unix.el (eshell-du-prefer-over-ange): Doc fix.
14977
14978 2000-10-15 Stefan Monnier <monnier@cs.yale.edu>
14979
14980 * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
14981 Use plist-get and allow :inherit.
14982
14983 * emacs-lisp/cl-macs.el (cl-do-arglist):
14984 Use plist-get and plist-member instead of memq.
14985
14986 * emacs-lisp/ewoc.el (ewoc-location): New function.
14987 (ewoc-enter-after, ewoc-enter-before): Document return value.
14988 * pcvs.el (cvs-make-cvs-buffer, cvs-run-process):
14989 Don't need make-local-hook any more.
14990 (cvs-addto-collection): Return the new tin.
14991 (cvs-mode-insert): Jump to the new line.
14992
14993 * jit-lock.el (jit-lock-fontify-buffer): Remove.
14994
14995 * arc-mode.el (archive-zoo-summarize): Fix from gnu.emacs.bug.
14996
14997 * font-lock.el (font-lock-syntactically-fontified): New var.
14998 (font-lock-fontify-syntactic-keywords-region): Use it.
14999 (font-lock-mode): Fix docstring. Don't need make-local-hook anymore.
15000
15001 * diff-mode.el (diff-find-file-name): Fix regexp.
15002
15003 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
15004 (cl-builtin-clrhash, cl-builtin-maphash): Add for byte-compatibility.
15005
15006 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix.
15007 (sh-mode-syntax-table): Add punctuation syntax for < and >.
15008 (sh-mode): Don't make all vars local here.
15009 (sh-kw): Reformat.
15010 (sh-set-shell): Use dolist. Don't set indent-region-function.
15011 (sh-mode-syntax-table): Use pop.
15012 (sh-remember-variable): Use push.
15013 (sh-help-string-for-variable): Use memq.
15014 (sh-safe-backward-sexp): Remove.
15015 (sh-safe-forward-sexp): Add ARG.
15016 (sh-get-indent-info, sh-prev-stmt): Use it.
15017 (sh-prev-line): Simplify by using forward-comment.
15018 (sh-this-is-a-continuation): Simplify.
15019 (sh-learn-buffer-indent): Use dolist.
15020 (sh-do-nothing): Remove.
15021 (sh-set-char-syntax, sh-set-here-doc-region):
15022 Use inhibit-modification-hooks.
15023 (sh-name-style): Use mapcar and push.
15024 (sh-load-style): Use dolist.
15025 (sh-save-styles-to-buffer): Use with-current-buffer and pp.
15026 (sh-case, sh-while-getopts): Use propertize directly rather
15027 than sh-electric-rparen.
15028
15029 2000-10-14 Stefan Monnier <monnier@cs.yale.edu>
15030
15031 * textmodes/tex-mode.el: Require CL when compiling.
15032 (tex-mode-syntax-table): Init immediately.
15033 (tex-mode-map): Bind M-RET to latex-insert-item.
15034 (latex-mode): Set indent-line-function to latex-indent.
15035 (tex-common-initialization): Don't setup the syntax-table any more.
15036 (latex-insert-item): New skeleton.
15037 (tex-next-unmatched-end): Fix copy/paste braino.
15038 (latex-syntax-after, latex-skip-close-parens, latex-down-list)
15039 (latex-indent, latex-find-indent): New functions.
15040 (tex-indent-allhanging, tex-indent-arg, tex-latex-indent-syntax-table)
15041 (tex-indent-item, tex-indent-item-re, tex-indent-basic): New vars.
15042 (tex-compilation-parse-errors): Use with-syntax-table.
15043
15044 2000-10-15 Miles Bader <miles@gnu.org>
15045
15046 * font-lock.el (font-lock-comment-face): Change dark-background,
15047 color, non-tty, default to `chocolate1'.
15048
15049 2000-10-13 John Wiegley <johnw@gnu.org>
15050
15051 * eshell/esh-util.el (require): Added a missing `require' form,
15052 needed when compiling (for an ange-ftp macro definition).
15053
15054 2000-10-13 Dave Love <fx@gnu.org>
15055
15056 * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch.
15057
15058 2000-10-13 Gerd Moellmann <gerd@gnu.org>
15059
15060 * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc fix.
15061
15062 * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace
15063 transparent -colors 8).
15064
15065 2000-10-13 Stephen Gildea <gildea@stop.mail-abuse.org>
15066
15067 * time-stamp.el (time-stamp): Fixed bug in new multi-line code
15068 that breaks with old list format timestamps.
15069 (time-stamp-warn-inactive, time-stamp-old-format-warn)
15070 (time-stamp-count, time-stamp-conversion-warn): Improved doc strings.
15071
15072 2000-10-13 John Wiegley <johnw@gnu.org>
15073
15074 * align.el, pcomplete.el, calendar/timeclock.el,
15075 eshell/esh-module.el, eshell/eshell.el: Removed URL reference.
15076
15077 * calendar/timeclock.el (timeclock-find-discrep): A fix to some
15078 faulty math, where holiday hours were being computing as seconds.
15079
15080 2000-10-13 John Wiegley <johnw@gnu.org>
15081
15082 * desktop.el (desktop-buffer-modes-to-save): Added a global for
15083 specifying what "other" kinds of buffers should be saved.
15084 This used to be hard-coded.
15085 (desktop-buffer-misc-functions): A global for specifying how
15086 auxiliary data should be determined for special buffer types.
15087 (desktop-save-buffer-p): Use `desktop-buffer-modes-to-save',
15088 instead of hard-coding the special buffer types.
15089 (desktop-save): Run `desktop-buffer-misc-functions' to gather
15090 auxiliary data, instead of hard-coding for Info buffers and dired.
15091 (desktop-buffer-info-misc-data): Aux function for determining Info
15092 buffer auxiliary info.
15093 (desktop-buffer-dired-misc-data): Likewise, but for dired buffers.
15094 (desktop-buffer-info): Changed this function to use the info
15095 gathered above.
15096 (desktop-create-buffer): Be a little more careful about what
15097 `minor-mode' means before calling it. This is important for some
15098 buffer types.
15099
15100 2000-10-13 John Wiegley <johnw@gnu.org>
15101
15102 * eshell/esh-util.el: Added a global form which declares an
15103 autoload for `parse-time-string', if that function is not already
15104 defined, and if parse-time.el is available on the user's system.
15105
15106 * eshell/em-ls.el (eshell-ls-applicable): Extended this function
15107 to be aware of ange-ftp user info.
15108 (eshell-do-ls): Bind `ange-cache'. Also, use `eshell-file-attributes'.
15109 (eshell-ls-annotate): Use `eshell-file-attributes'.
15110 (eshell-ls-file): Made the user-id printing code a bit smarter.
15111
15112 * eshell/esh-util.el (eshell-ange-ls-uids): Added variable, to
15113 allow identification of alias user ids in remote directories.
15114 It's manual, but there's no other way to know when the current user
15115 on the local machine, is also the owning user on the remote machine.
15116 (fboundp): Bind `ange-cache'.
15117 (eshell-directory-files-and-attributes): Re-organized the logic a
15118 bit to use `eshell-file-attributes' instead of `file-attributes'.
15119 The former is more sensitive to directories that are read via FTP,
15120 and knows how to use ange-ftp to determine full attribute
15121 information, instead of just the name and last modtime.
15122 (eshell-current-ange-uids): Return the current user id when in a
15123 remote directory.
15124 (eshell-parse-ange-ls): Parse a full directory listing that has
15125 been returned by ange-ftp.
15126 (eshell-file-attributes): This beefed up version of
15127 `file-attributes' is only special if the user is currently in a
15128 remote directory, in which case it does a lot of work to find out
15129 what the real attributes of a file are, as they appear on the
15130 remote machine. This makes usage of remote directories (i.e.,
15131 ange-ftp pathnames) much more useful. You can now use Eshell as a
15132 full-fledged FTP client, with much more manipulation ability than
15133 most other clients.
15134
15135 * eshell/em-unix.el (eshell-du-prefer-over-ange): Added a new
15136 variable, which means that Eshell's du should always be preferred
15137 in remote directories.
15138 (eshell-shuffle-files): Use `eshell-file-attributes', rather than
15139 just `file-attributes'.
15140 (eshell-mvcp-template): Bind `ange-cache', to improve performance
15141 when reading remote directories. This is an Eshell-specific
15142 variable (not part of ange-ftp).
15143 (eshell/ln): Bind `ange-cache'.
15144 (eshell/du): Added some extra logic for determining when to use
15145 Eshell's du (which is slow), and when to use the external version
15146 (which may or may not exist).
15147
15148 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
15149 Call `eshell-interactive-process', rather than using
15150 `get-buffer-process', since backgrounded processes don't count in
15151 the context of this function's logic.
15152
15153 * eshell/esh-arg.el (eshell-parse-double-quote): Moved a call to
15154 `forward-char', so that null strings are parsed correctly.
15155
15156 2000-09-13 John Wiegley <johnw@gnu.org>
15157
15158 * eshell/em-pred.el (eshell-pred-file-type)
15159 (eshell-pred-file-links, eshell-pred-file-size):
15160 Use `eshell-file-attributes'. This is more correct over ange-ftp.
15161
15162 * eshell/em-glob.el (eshell-extended-glob): Bind `ange-cache', so
15163 that remote file globbing is more efficient.
15164
15165 * eshell/em-ls.el (eshell-ls-dir): Use `expand-file-name' when
15166 gathering the files and attributes within a directory.
15167
15168 * eshell/em-unix.el (eshell/cat): If any of the files passed on
15169 the command line is a special file (not a regular file, directory
15170 or symlink), always attempt to call the external version of cat.
15171
15172 2000-09-13 John Wiegley <johnw@gnu.org>
15173
15174 * eshell/esh-mode.el (eshell-find-tag): Corrections to the
15175 Eshell-friendly version of find-tag.
15176
15177 2000-10-13 Miles Bader <miles@lsi.nec.co.jp>
15178
15179 * image-file.el (image-file-name-extensions)
15180 (image-file-name-regexps): Add autoload cookies.
15181
15182 2000-10-13 Kenichi Handa <handa@etl.go.jp>
15183
15184 * international/mule-cmds.el (select-safe-coding-system): If FROM
15185 is string, show it in *Warning* buffer.
15186
15187 2000-10-13 Eli Zaretskii <eliz@is.elta.co.il>
15188
15189 * startup.el (normal-top-level): Use display-popup-menus-p instead
15190 of window-system.
15191 (command-line): Use display-graphic-p instead of window-system.
15192 (command-line-1): Use display-popup-menus-p and display-mouse-p
15193 instead of window-system.
15194
15195 2000-10-12 Sam Steingold <sds@gnu.org>
15196
15197 * tooltip.el (tooltip-use-echo-area): New user variable.
15198 (tooltip-show): Use it to choose between `x-show-tip' and `message'.
15199
15200 2000-10-12 Dave Love <fx@gnu.org>
15201
15202 * recentf.el: Maintainer's checkdoc fixes.
15203
15204 * startup.el (normal-top-level-add-subdirs-to-load-path):
15205 Use character class, not ASCII when matching file names.
15206 (fancy-splash-head): Add trailing slash to URL.
15207 (command-line): Don't require XPM support for toolbar.
15208
15209 * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix.
15210 (cperl-invalid-face): Revert last change.
15211 (cperl-init-faces): Quote cperl-invalid-face.
15212
15213 2000-10-12 Kenichi Handa <handa@etl.go.jp>
15214
15215 * startup.el (fancy-splash-text): Remove superfluous quote.
15216
15217 2000-10-12 Gerd Moellmann <gerd@gnu.org>
15218
15219 * startup.el (fancy-splash-screens): Don't add a pre-command hook.
15220 (fancy-splash-pre-command, fancy-splash-pending-command): Removed.
15221 (command-line-1): Don't use fancy-splash-pending-command.
15222 (fancy-splash-screens-1): Goto point-min after inserting text.
15223
15224 * calendar/diary-lib.el (diary-cyclic): Doc fix from Ed Reingold.
15225
15226 * progmodes/scheme.el (scheme-mode-map): Use lisp-mode-shared-map
15227 instead of shared-lisp-mode-map.
15228
15229 2000-10-12 Miles Bader <miles@lsi.nec.co.jp>
15230
15231 * faces.el (header-line): Change tty-variant to use underlining.
15232
15233 * isearch.el (isearch-set-lazy-highlight-faces-at): New function.
15234 (isearch-highlight): Restore lazy-isearch face properties at old
15235 position, and suppress them at new position.
15236 (isearch-dehighlight): Restore lazy-isearch face properties.
15237 (isearch-lazy-highlight-update): Add lazy-isearch overlays even
15238 over the real isearch overlay, but in that case, don't give it a
15239 face property. Use `push'.
15240
15241 2000-10-12 Kenichi Handa <handa@etl.go.jp>
15242
15243 * man.el (Man-getpage-in-background): Fix previous change.
15244 Decode the process output only when we are in multibyte mode.
15245
15246 2000-10-11 Dave Love <fx@gnu.org>
15247
15248 * info.el (Info-mode-menu): Fix some help.
15249 (info-tool-bar-map): Add entry for Info-last.
15250
15251 * toolbar/cancel.xpm, toolbar/jump_to.xpm, toolbar/right_arrow.xpm:
15252 * toolbar/close.xpm, toolbar/left_arrow.xpm, toolbar/save.xpm:
15253 * toolbar/copy.xpm, toolbar/mail.xpm, toolbar/saveas.xpm:
15254 * toolbar/cut.xpm, toolbar/mail_compose.xpm:
15255 * toolbar/search-replace.xpm, toolbar/exit.xpm:
15256 * toolbar/mail_send.xpm, toolbar/search.xpm, toolbar/fld_open.xpm:
15257 * toolbar/new.xpm, toolbar/spell.xpm, toolbar/help.xpm:
15258 * toolbar/open.xpm, toolbar/undo.xpm, toolbar/home.xpm:
15259 * toolbar/paste.xpm, toolbar/up_arrow.xpm, toolbar/index.xpm:
15260 * toolbar/preferences.xpm, toolbar/info.xpm, toolbar/print.xpm:
15261 Reduce colour requirements to 25 overall. (Probably wants
15262 revisiting from the originals to reduce further.)
15263
15264 2000-10-11 Eli Zaretskii <eliz@is.elta.co.il>
15265
15266 * hexl.el (hexlify-buffer): Bind coding-system-for-write to
15267 buffer-file-coding-system, instead of raw-text.
15268 (dehexlify-buffer): Bind coding-system-for-read to
15269 buffer-file-coding-system, instead of raw-text.
15270
15271 2000-10-11 Sam Steingold <sds@gnu.org>
15272
15273 * progmodes/cperl-mode.el (cperl-invalid-face): Double-quote
15274 `underline' - fixes the bug introduced on 2000-09-21.
15275
15276 2000-10-11 Dave Love <fx@gnu.org>
15277
15278 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
15279 Avoid compiler warnings.
15280 (scheme-mode): Doc fix.
15281 (scheme-font-lock-keywords-1): Match `define-syntax'.
15282
15283 2000-10-11 Miles Bader <miles@lsi.nec.co.jp>
15284
15285 * faces.el (frame-set-background-mode): Pay attention to saved
15286 face specs as well as default ones. Only do anything if the
15287 bg-mode or display-type has actually changed. Use `dolist'.
15288 (region): Make dark-background `region' face less in-your-face.
15289
15290 2000-10-10 Sam Steingold <sds@gnu.org>
15291
15292 * chistory.el, ielm.el, ledit.el:
15293 * progmodes/inf-lisp.el, progmodes/scheme.el:
15294 Use `lisp-mode-shared-map' instead of `shared-lisp-mode-map'.
15295
15296 2000-10-10 Stefan Monnier <monnier@cs.yale.edu>
15297
15298 * textmodes/texinfo.el: Update copyright and fix typo.
15299
15300 * desktop.el (desktop-modes-not-to-save): New var.
15301 (desktop-save-buffer-p): Use it.
15302 Also, obey desktop-buffers-not-to-save even for non-file buffers.
15303 (desktop-buffer-file): Use pop-to-buffer if switch-to-buffer fails.
15304
15305 2000-10-10 Dave Love <fx@gnu.org>
15306
15307 * toolbar/tool-bar.el (tool-bar-add-item)
15308 (tool-bar-add-item-from-menu): Don't favour XPM icons on mono display.
15309
15310 * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm:
15311 * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm:
15312 * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm:
15313 * toolbar/index.pbm, toolbar/info.pbm, toolbar/jump_to.pbm:
15314 * toolbar/left_arrow.pbm, toolbar/mail.pbm, toolbar/mail_compose.pbm:
15315 * toolbar/mail_send.pbm, toolbar/new.pbm, toolbar/open.pbm:
15316 * toolbar/paste.pbm, toolbar/preferences.pbm, toolbar/print.pbm:
15317 * toolbar/right_arrow.pbm, toolbar/save.pbm, toolbar/saveas.pbm:
15318 * toolbar/search-replace.pbm, toolbar/search.pbm, toolbar/spell.pbm:
15319 * toolbar/undo.pbm, toolbar/up_arrow.pbm: New files straight from
15320 the .xpms; probably need retouching.
15321
15322 2000-10-10 Miles Bader <miles@lsi.nec.co.jp>
15323
15324 * subr.el (add-to-list): Add optional argument APPEND.
15325 * battery.el (display-battery): Use `add-to-list'.
15326
15327 2000-10-09 Thien-Thi Nguyen <ttn@gnu.org>
15328
15329 * play/zone.el (zone-timer, zone-wc-tbl): Rework these vars as symbol
15330 properties.
15331 (zone, zone-when-idle, zone-leave-me-alone)
15332 (zone-pgm-whack-chars): Use new symbol properties.
15333
15334 * battery.el (display-battery): Doc spelling fix.
15335
15336 * vc.el (with-vc-file, edit-vc-file): Specify `indent-function'
15337 property.
15338
15339 2000-10-09 Dave Love <fx@gnu.org>
15340
15341 * toolbar/tool-bar.el (tool-bar-mode): Check whether tool-bar-map
15342 has been initialized before calling tool-bar-setup.
15343 (tool-bar-add-item-from-menu): Add autoload cookie.
15344
15345 2000-10-09 Eli Zaretskii <eliz@is.elta.co.il>
15346
15347 * menu-bar.el (send-mail-item-name): New function.
15348 (menu-bar-tools-menu) <compose-mail>: Use it to display the value
15349 of mail-user-agent in the menu. Don't display the "Send Mail"
15350 item if mail-user-agent is nil or its value is ignore.
15351 (menu-bar-tools-menu) <rmail>: Don't display the "Read Mail" item
15352 if read-mail-command is nil or its value is ignore.
15353
15354 * mouse.el ([header-line mouse-1]): Bind to mouse-select-window.
15355
15356 2000-10-09 Miles Bader <miles@gnu.org>
15357
15358 * toolbar/up_arrow.xpm: Flip to put highlight in correct place.
15359 Correct image size.
15360 * toolbar/left_arrow.xpm: Correct image size.
15361
15362 * jka-compr.el: Don't call `jka-compr-install' when loading (it
15363 will be done by the definition of `auto-compression-mode' if
15364 necessary. Move code to uninstall existing file-name handler
15365 before definition of `auto-compression-mode'.
15366
15367 * image-file.el (auto-image-file-mode): Move to the end of the
15368 file, because `define-minor-mode' actually calls the mode-function
15369 if the associated variable is non-nil, which requires that all
15370 needed functions be already defined.
15371
15372 * mouse.el (popup-menu): Balance parens.
15373
15374 2000-10-08 Stefan Monnier <monnier@cs.yale.edu>
15375
15376 * mouse.el (popup-menu): Move the command call outside the loop
15377 so that popup-menu returns whatever the command returns.
15378
15379 * progmodes/etags.el: Docstring fixes. Maintainer line updated.
15380 (initialize-new-tags-table): Use run-hook-with-args-until-success.
15381 (find-tag): Use pop-to-buffer if switch-to-buffer failed.
15382 (tags-table-format-functions): Renamed from tags-table-format-hooks.
15383
15384 * vc.el (vc-version-diff): diff-switches can be a list.
15385 Use relative filenames for prettier output.
15386
15387 * pcvs.el (cvs-append-to-ignore, cvs-vc-command-advice)
15388 (vc-post-command-functions): Remove old-VC compatibility code.
15389
15390 * newcomment.el (comment-indent-default): Autoload.
15391
15392 * font-lock.el (font-lock-defaults): Make buffer-local.
15393 (font-lock-turn-on-thing-lock): Use jit-lock-refontify.
15394 (font-lock-choose-keywords):
15395 Ignore LEVEL unless KEYWORDS is a list of syms.
15396 (c-keywords, c++-keywords, objc-keywords, java-keywords):
15397 Don't wrap regexp-opt things in \(...\) unnecessarily.
15398
15399 * jit-lock.el: Don't require font-lock any more.
15400 (jit-lock-functions): Make buffer-local.
15401 (jit-lock-saved-fontify-buffer-function): Remove.
15402 (jit-lock-mode): Remove autoload cookie.
15403 Remove font-lock specific code.
15404 (jit-lock-unregister): Don't bother handling complex hooks any more.
15405 (jit-lock-refontify): New function.
15406 (jit-lock-fontify-buffer): Use it.
15407 (jit-lock-function-1): Replaced by jit-lock-fontify-now.
15408 (jit-lock-fontify-now): Renamed from jit-lock-function-1.
15409 Add optional args START and END.
15410 Never call font-lock-fontify-region directly.
15411 (jit-lock-function, jit-lock-stealth-fontify): Use it.
15412
15413 * emacs-lisp/regexp-opt.el (regexp-opt): Add \<...\> if PAREN=`words'.
15414
15415 2000-10-08 Dave Love <fx@gnu.org>
15416
15417 * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
15418
15419 * progmodes/icon.el (icon-mode-map): Add name to menu-bar keymap.
15420
15421 * play/studly.el (studlify-region, studlify-word): Add autoload
15422 cookie.
15423
15424 * play/morse.el (morse-region, unmorse-region): Add autoload
15425 cookie.
15426
15427 * play/spook.el (spook-phrases-file): Use expand-file-name, not
15428 concat.
15429
15430 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Don't
15431 insist on symbols starting with word syntax.
15432 (lisp-mode-shared-map): Renamed from shared-lisp-mode-map.
15433 (eval-defun-1): Doc fix.
15434 (indent-sexp): Use nconc to build up indent-stack.
15435
15436 * mail/sendmail.el: Byte-compile-dynamic since it gets loaded by
15437 Gnus with little use.
15438 (mail-setup-hook): Add mail-abbrevs-setup to options.
15439
15440 * recentf.el: Doc fixes.
15441
15442 * vcursor.el (vcursor-cs-binding): Remove compatibility code.
15443 Clean up remainder.
15444
15445 * timezone.el (timezone-parse-date): Doc fix. Fix regexps for (5)
15446 without timezone and (8) with timezone to enforce some whitespace.
15447 Simplify code somewhat.
15448
15449 * options.el (list-options): Doc that you should use customize.
15450
15451 * iswitchb.el (iswitchb-mode): Add :require.
15452
15453 * info.el (Info-goto-node, Info-menu): Doc fix.
15454 (Info-mode-menu): Bind beginning-of-buffer, Info-edit
15455 (info-tool-bar-map): New variable.
15456 (Info-mode): Use it.
15457 (Info-edit-map): Define all in defvar.
15458 (speedbar-attached-frame): Avoid compiler warning.
15459
15460 * toolbar/tool-bar.el (tool-bar-map): Define it empty.
15461 (global-map): Bind [tool-bar] to a filtered map.
15462 (tool-bar-add-item): Remove MAP arg. Allow PBM icons.
15463 (tool-bar-add-item-from-menu): Use tool-bar-map, not tb-map.
15464 Allow PBM icons.
15465 (tool-bar-setup): Adjust calls of tool-bar-add-item.
15466
15467 * toolbar/index.xpm, toolbar/jump_to.xpm, toolbar/attach.xpm:
15468 * toolbar/up_arrow.xpm, toolbar/left_arrow.xpm, toolbar/home.xpm:
15469 * toolbar/right_arrow.xpm: New files. Renamed from tigert's
15470 icons, except up_arrow, which is left-arrow rotated.
15471
15472 * imenu.el (imenu-add-to-menubar): Fix last change.
15473
15474 2000-10-08 Peter Breton <pbreton@ne.mediaone.net>
15475
15476 * generic-x.el (rul-generic-mode): Remove eval-when-compile
15477 statements. Suggested by Stefan Monnier <monnier@cs.yale.edu>.
15478
15479 2000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
15480
15481 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Fix
15482 typos in doc strings.
15483
15484 * font-lock.el (font-lock-mode, global-font-lock-mode): Mention in
15485 the doc strings how to customize Font Lock faces.
15486
15487 * mouse.el (mouse-drag-mode-line-1): Fix an off-by-one error in
15488 computing growth when dragging the header line.
15489
15490 2000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
15491
15492 * simple.el (kill-line): Doc fix.
15493
15494 2000-10-08 Miles Bader <miles@gnu.org>
15495
15496 * faces.el (secondary-selection): Make foreground visible on tty.
15497
15498 * jka-compr.el (auto-compression-mode): Move to the end of the
15499 file, because `define-minor-mode' actually calls the mode-function
15500 if the associated variable is non-nil, which requires that all
15501 needed functions be already defined.
15502 (with-auto-compression-mode): Add autoload cookie.
15503
15504 2000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
15505
15506 * files.el (find-backup-file-name) [ms-dos]: If support for long
15507 file names is not available, behave as if version-control were set
15508 to never.
15509
15510 2000-10-07 Dave Love <fx@gnu.org>
15511
15512 * net/browse-url.el (browse-url-gnome-moz-arguments): New option.
15513 (browse-url-gnome-moz): New function.
15514 (browse-url-browser-function): Use it.
15515 Suggested by Colin Walters <walters@cis.ohio-state.edu>.
15516
15517 2000-10-07 Stefan Monnier <monnier@cs.yale.edu>
15518
15519 * indent.el (tab-always-indent): New var.
15520 (indent-for-tab-command): Use it.
15521
15522 * files.el (set-auto-mode): Ignore unknown -*- mode -*- rather than
15523 raise an error. This way it can still default to a sane value.
15524
15525 2000-10-06 Stefan Monnier <monnier@cs.yale.edu>
15526
15527 * startup.el (fancy-splash-screens): Use local rather than global map.
15528 Don't use `update-menu-bindings' any more.
15529 Get rid of assumptions about keymap representation.
15530
15531 2000-10-06 Dave Love <fx@gnu.org>
15532
15533 * textmodes/fill.el (sentence-end-double-space)
15534 (sentence-end-without-period): Doc fix.
15535 (adaptive-fill-regexp): Purecopy.
15536 (unjustify-current-line): Use line-end-position.
15537 (fill-individual-paragraphs-prefix): Use line-beginning-position.
15538
15539 * net/eudc-vars.el (eudc): Add :version, :link.
15540
15541 * international/mule-conf.el (file-coding-system-alist): Use \', not $.
15542
15543 * emacs-lisp/find-func.el (find-function-regexp): Remove spurion.
15544 Fix for define-minor-mode.
15545 (function-at-point): Alias to function-called-at-point.
15546
15547 * custom.el (custom-declare-variable, custom-set-variables): Use mapc.
15548
15549 * simple.el (backward-word): Doc fix.
15550
15551 * image-file.el (image-file-name-regexp): image-file-regexps ->
15552 image-file-name-regexps.
15553 (image-file-name-extensions): Add pbm.
15554
15555 2000-10-06 Stefan Monnier <monnier@cs.yale.edu>
15556
15557 * smerge-mode.el (smerge-diff): Setup the buffer's default-directory
15558 and add filename to the names so that diff-mode can jump to source.
15559
15560 * font-lock.el (font-lock-defaults-alist): Remove the TeX entries.
15561 (tex-font-lock-keywords, tex-font-lock-keywords-2)
15562 (tex-font-lock-keywords-1): Remove.
15563 (font-lock-turn-on-thing-lock): Use jit-lock-register.
15564 (font-lock-turn-off-thing-lock): Use jit-lock-unregister.
15565 (font-lock-default-fontify-region):
15566 Expand beg..end correctly when just following a multiline region.
15567 (font-lock-fontify-anchored-keywords):
15568 Include the anchor text as part of the multiline.
15569
15570 2000-10-06 Gerd Moellmann <gerd@gnu.org>
15571
15572 * loadup.el (toplevel): Load `loaddefs' before `help' because the
15573 latter needs the autoloaded define-minor-mode macro during the
15574 bootstrap.
15575
15576 * startup.el (command-line): For now, activate tool-bar-mode only
15577 if XPM images are supported.
15578
15579 * mouse.el (mouse-drag-header-line): Don't allow resizing a
15580 window by dragging a header-line at the top of the frame; that's
15581 confusing because the header-line doesn't move.
15582 (mouse-drag-mode-line-1): Use event-* and posn-* functions instead
15583 of treating the event as a list. Some cleanup.
15584
15585 2000-10-06 Miles Bader <miles@gnu.org>
15586
15587 * simple.el (display-message-or-buffer): New function.
15588 (shell-command-on-region): Use `display-message-or-buffer'.
15589
15590 * emacs-lisp/easy-mmode.el (define-derived-mode): Tweak generated
15591 docstring parts.
15592
15593 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
15594 (smbclient-prompt-regexp): Add usage note to doc string.
15595 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Removed.
15596 (ftp-mode, smbclient-mode): Don't set `font-lock-defaults'.
15597 Use add-hook for adding the comint filter function, and only do so
15598 if it's not already in the global hook list.
15599 (ftp-mode, smbclient-mode, nslookup-mode): Remove redundant calls
15600 to `make-local-variable'.
15601 (nslookup-font-lock-keywords): Remove prompt entry.
15602 (nslookup): Don't set the process-filter.
15603 (finger): Exit the loop correctly when the regexps list runs out.
15604 (ftp, smbclient, smbclient-list-shares):
15605 Set the real major mode immediately, not after execing.
15606 Use `pop-to-buffer' instead of `switch-to-buffer-other-window'.
15607
15608 * comint.el (comint-watch-for-password-prompt): Use STRING as a prompt.
15609
15610 2000-10-05 Stefan Monnier <monnier@cs.yale.edu>
15611
15612 * progmodes/compile.el (compile-collect-regexps): Use dolist and push.
15613
15614 * which-func.el (which-func-format): Remove spurious space.
15615 (which-func-mode): Don't make it permanent-local.
15616 (which-func-ff-hook): Allow which-func-maxout to be nil.
15617 (which-func-update): Simplify a bit. Only run if which-func-mode is t.
15618 (which-func-mode): Simplify.
15619 Use post-command-idle-hook rather than post-command-hook.
15620 Go through all buffers and update their state.
15621 (which-function): Also try add-log-current-defun-function.
15622
15623 * vc.el (with-vc-properties): Use conses rather than length-2 lists.
15624 (vc-checkout, vc-finish-steal, vc-checkin, vc-revert-file):
15625 Update call to with-vc-properties accordingly.
15626 (vc-comment-search-reverse, vc-comment-search-forward): Docstring fix.
15627 (vc-revert-buffer): More careful about window selection and deletion.
15628 (vc-switch-backend): Slight reorg to avoid calling `registered' twice.
15629
15630 * pcvs.el (cvs-ediff-exit-hook): Expect delete-window to fail.
15631 (cvs-retrieve-revision): Reuse a pre-existing buffer.
15632 (cvs-dired-action): Change the default to quickdir.
15633
15634 * newcomment.el (comment-indent): Delegate to indent-according-to-mode
15635 if comment-indent-function returns nil.
15636 (comment-indent-default): New function.
15637 (comment-indent-function): Use it and document the new semantics.
15638
15639 * image-file.el: Docstring fixes.
15640
15641 * help.el (help-xref-on-pp): Use match-string.
15642 (describe-variable): New arg BUFFER.
15643 Store the current buffer in the help-xref-stack.
15644 (temp-buffer-resize-mode): Use define-minor-mode.
15645
15646 * jit-lock.el (jit-lock-mode): Use jit-lock-defer-contextually
15647 consistently with its docstring.
15648 Set jit-lock-first-unfontify-pos in an idempotent way.
15649 (jit-lock-register): Autoload and add arg CONTEXTUAL.
15650
15651 2000-10-05 Alex Schroeder <alex@gnu.org>
15652
15653 * sql.el (sql-mysql-options): New variable.
15654 (sql-mysql): Use it.
15655
15656 2000-10-05 Miles Bader <miles@lsi.nec.co.jp>
15657
15658 * image.el (image): New group.
15659
15660 * smerge-mode.el (smerge-mine-face, smerge-other-face)
15661 (smerge-base-face, smerge-markers-face): Add dark-background variants.
15662
15663 2000-10-04 Peter Breton <pbreton@ne.mediaone.net>
15664
15665 * net/net-utils.el (nslookup-font-lock-keywords)
15666 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
15667 Ignore the value of wqindow-system; always define keywords
15668
15669 2000-10-05 Kenichi Handa <handa@etl.go.jp>
15670
15671 * startup.el (fancy-splash-screens): Remove the code for
15672 debugging; `(trace-to-stderr "EXITTT\n")'.
15673
15674 2000-10-05 Miles Bader <miles@gnu.org>
15675
15676 * diff-mode.el (diff-goto-source): Update call to
15677 `diff-hunk-status-msg' to reflect new REV variable.
15678
15679 2000-10-04 Stefan Monnier <monnier@cs.yale.edu>
15680
15681 * progmodes/icon.el (icon-mode):
15682 Don't gratuitously override the default for comment-column.
15683
15684 * vc-hooks.el (vc-mode-line): Fix interactive spec.
15685
15686 * jit-lock.el (with-buffer-unmodified): Use unwind-protect.
15687 (jit-lock-mode): Make sure font-lock-keywords-only is bound before use.
15688 (jit-lock-functions): New var.
15689 (jit-lock-function-1): Use it if non-nil.
15690 Don't switch the syntax-table. Don't set parse-sexp-lookup-properties.
15691 Set the `fontified' property before doing the fontification to avoid
15692 repeatedly going through the same error.
15693 Don't turn errors into messages.
15694 (jit-lock-register, jit-lock-unregister): New functions.
15695
15696 * dired.el (dired-mark-pop-up): Turn comment into docstring.
15697 Use with-current-buffer.
15698
15699 * dired-aux.el (dired-do-create-files, dired-kill-tree):
15700 Turn comment into docstring.
15701
15702 * apropos.el (apropos-mode): Use define-derived-mode.
15703
15704 2000-10-04 Gerd Moellmann <gerd@gnu.org>
15705
15706 * startup.el (fancy-splash-pending-command): New variable.
15707 (fancy-splash-pre-command): New function.
15708 (fancy-splash-screens): Rewritten.
15709 (command-line-1): If fancy-splash-pending-command is set, call it
15710 interactively.
15711
15712 2000-10-04 Dave Love <fx@gnu.org>
15713
15714 * toolbar/tool-bar.el (tool-bar-setup): New function.
15715 (tool-bar-mode): Use it.
15716
15717 * subr.el (substitute-key-definition): Doc fix.
15718 (play-sound-file): New command.
15719
15720 2000-10-04 Andre Spiegel <spiegel@gnu.org>
15721
15722 * vc-hooks.el (vc-before-save, vc-default-make-version-backups,
15723 vc-version-backup-file-name): New functions.
15724
15725 * files.el (basic-save-buffer): Call vc-before-save before saving.
15726
15727 * vc-cvs.el (vc-cvs-make-version-backups): Return t if
15728 vc-cvs-stay-local-p.
15729
15730 * vc.el (vc-revert-buffer): Handle empty diff properly.
15731 (vc-version-backup-file): New function.
15732 (vc-checkout): Create a version backup if necessary.
15733 (vc-checkin): If a version backup file exists, delete it.
15734 (vc-version-diff): Diff locally using version backups, if available.
15735 (vc-revert-file): If there's a version backup, revert locally.
15736 (vc-transfer-file): Use version backup for base version, if
15737 available. If not, ask for confirmation whether to get it from the
15738 server. Update mode line before check-in.
15739
15740 2000-10-04 Dave Love <fx@gnu.org>
15741
15742 * toolbar/tool-bar.el (tool-bar-setup): New function.
15743 (tool-bar-mode): Use it.
15744
15745 2000-10-04 Peter Breton <pbreton@ne.mediaone.net>
15746
15747 * net/net-utils.el (nslookup-font-lock-keywords)
15748 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
15749 Only set if window-system is non-nil
15750 (net-utils-run-program): Returns buffer.
15751 (network-connection-reconnect): Added this function.
15752
15753 * generic.el:
15754 Incorporates extensive cleanup and docfixes by
15755 Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu).
15756 Uses cl compile-time macros.
15757 (generic-mode-name, generic-comment-list)
15758 (generic-keywords-list, generic-font-lock-expressions)
15759 (generic-mode-function-list, generic-mode-syntax-table):
15760 Removed variables.
15761 (generic-mode-alist): Renamed to generic-mode-list.
15762 (generic-find-file-regexp): Default changed to "^#".
15763 (generic-read-type): Uses completing read on generic-mode-list.
15764 (generic-mode-sanity-check): removed this function.
15765 (generic-add-to-auto-mode): Removed this function
15766 (generic-mode-internal): Bind mode-specific definitions
15767 into function instead of putting them in alist.
15768 (generic-mode-set-comments): Reworked extensively.
15769 (generic-mode-find-file-hook): Simplified regexp searching
15770 (generic-make-keywords-list): Omit extra pair of parens
15771
15772 * find-lisp.el (find-lisp-find-files-internal):
15773 Make sure directory name ends with "/".
15774
15775 * generic-x.el (apache-conf-generic-mode):
15776 Regexp now allows leading whitespace.
15777 (rc-generic-mode): Added eval-when-compile
15778 around generic-make-keywords-list.
15779 Deleted duplicate regexp
15780 (rul-generic-mode): Added eval-when-compile
15781 around generic-make-keywords-list.
15782 (etc-fstab-generic-mode): New generic mode.
15783 (rul-generic-mode): Removed one eval-when-compile
15784 which caused a max-specpdl-size exceeded error.
15785
15786 2000-10-04 Miles Bader <miles@gnu.org>
15787
15788 * simple.el (minibuffer-temporary-goal-position): New variable.
15789 (next-history-element): Try to keep the position of point in the
15790 input string constant.
15791
15792 * dired-aux.el (dired-mark-read-file-name): Add optional arg DEFAULT.
15793 (dired-do-create-files): If there's only one file, pass it in as
15794 the DEFAULT arg to dired-mark-read-file-name.
15795
15796 2000-10-03 Stefan Monnier <monnier@cs.yale.edu>
15797
15798 * diff-mode.el (diff-font-lock-keywords): Minor regex fix.
15799 (diff-goto-source): Be smarter when choosing REVERSE or not.
15800
15801 * textmodes/texinfo.el (texinfo-heading-face): Forgot the var def.
15802 (texinfo-mode-menu): Add an explicit shortcut for update all.
15803
15804 2000-10-03 Andre Spiegel <spiegel@gnu.org>
15805
15806 * vc.el (vc-transfer-file, vc-default-receive-file): Rewritten to
15807 factorize backend-specific code cleanly (this was essentially
15808 conceived by Stefan Monnier).
15809 (vc-unregister): Function removed.
15810 (vc-revert-file): New function.
15811 (vc-revert-buffer): Delegate some of the work to it.
15812
15813 * vc-rcs.el (vc-rcs-fetch-master-state): Parse and remember
15814 default branch unconditionally.
15815 (vc-rcs-set-default-branch): New function.
15816 (vc-rcs-cancel-version, vc-rcs-checkin, vc-rcs-checkout): Use it.
15817 (vc-rcs-checkin): If an appropriate default branch has been set,
15818 force creation of that branch.
15819 (vc-rcs-receive-file): Rewritten to contain only backend-specific
15820 code (as suggested by Stefan Monnier).
15821
15822 2000-10-02 Gerd Moellmann <gerd@gnu.org>
15823
15824 * isearch.el (isearch-lazy-highlight-update): Don't put a lazy
15825 highlighting overlay with a different face over the overlay
15826 isearch uses to highlight the current match because that can lead
15827 to bad face combinations.
15828
15829 * loadup.el (toplevel): Load faces before isearch.
15830
15831 * isearch.el (isearch-faces): New custom group.
15832 (isearch): New defface; was already tested for in the code.
15833 (isearch-lazy-highlight-face): Changed to defface from defcustom.
15834 (isearch-highlight): Always use face `isearch'.
15835
15836 2000-10-02 Dave Love <fx@gnu.org>
15837
15838 * emacs-lisp/byte-opt.el (byte-optimize-lapcode): Don't bind
15839 unused vars. Treat byte-constant2 like byte-constant. Fix bogus
15840 comparison of opcode with operand.
15841
15842 2000-10-03 Miles Bader <miles@gnu.org>
15843
15844 * play/yow.el (yow): Don't display multi-line quotations in a *Help*
15845 buffer, since the echo area will now grow to accommodate them.
15846
15847 2000-10-02 Andre Spiegel <spiegel@gnu.org>
15848
15849 * vc-hooks.el (vc-registered): If FILE used to be registered under
15850 a certain backend, try that one first.
15851
15852 * vc.el (vc-responsible-backend): Undo the previous change in the
15853 argument list. Handle multiple backends correctly.
15854 (vc-find-new-backend): Function removed.
15855 (vc-register): Use vc-responsible-backend, as before.
15856 (vc-next-action-on-file): Do use vc-registered, not vc-backend.
15857
15858 2000-10-02 Gerd Moellmann <gerd@gnu.org>
15859
15860 * startup.el (fancy-splash-head): Change message below the
15861 logo.
15862
15863 2000-10-02 Miles Bader <miles@lsi.nec.co.jp>
15864
15865 * diff-mode.el (diff-goto-source): Emit a status message.
15866 (diff-test-hunk, diff-apply-hunk): Remove unneeded `let'.
15867 (diff-test-hunk): Fix doc string.
15868 (diff-apply-hunk): Only advance if `diff-advance-after-apply-hunk'.
15869 (diff-advance-after-apply-hunk): New variable.
15870 (diff-apply-hunk): Don't return a value.
15871
15872 2000-10-01 Stefan Monnier <monnier@cs.yale.edu>
15873
15874 * vc.el (vc-editable-p): Minor optimization.
15875 (edit-vc-file, vc-next-action-on-file): Don't use find-file.
15876 (vc-find-new-backend): New function split from vc-responsible-backend.
15877 (vc-register): Use it.
15878 (vc-responsible-backend): Remove REGISTER arg and add BACKENDS arg.
15879 (vc-unregister): Drop BACKEND arg (it doesn't work anyway).
15880 (vc-default-unregister, vc-revert-buffer): Docstring fix.
15881 (vc-clear-headers): Don't use find-file.
15882 (vc-revert-buffer): Use `and' again (must have been a braino).
15883 (vc-switch-backend): Only prompt if requested.
15884 Short circuit if nothing is to be done.
15885 Don't use vc-resynch-buffer which could lose unsaved editing.
15886 (vc-default-receive-file): Update call to vc-unregister.
15887 (with-vc-file, vc-next-action-on-file):
15888 Use vc-backend rather than vc-registered.
15889 (vc-next-action-on-file): Use intern-soft.
15890 Deal with read-only *vc-diff* buffer.
15891 (vc-transfer-file): Docstring fix.
15892
15893 * vc-rcs.el (vc-rcs-unregister): Keep a backup of the master file.
15894 (vc-rcs-receive-file): Avoid with-vc-properties.
15895 Update call to vc-unregister.
15896 Use constant `RCS' rather than (dynamically bound) var `backend'.
15897
15898 2000-10-01 Andre Spiegel <spiegel@gnu.org>
15899
15900 * vc.el (vc-next-action-on-file): Update mode line only if file
15901 is visited.
15902 (vc-start-entry): New argument initial-contents. Don't visit the file
15903 if it isn't already visited. Brought documentation up-to-date.
15904 (vc-next-action, vc-register): Updated calls to vc-start-entry.
15905 (vc-checkin): New optional arg initial-contents, which is passed to
15906 vc-start-entry.
15907 (vc-finish-logentry): Make sure to bury log buffer only if there
15908 really is one. Call `vc-resynch-buffer' on log-file, not
15909 buffer-file-name.
15910 (vc-default-comment-history, vc-default-wash-log): New functions.
15911 (vc-index-of): Removed.
15912 (vc-transfer-file): Make do without the above.
15913 (vc-default-receive-file): Call comment-history unconditionally. Pass
15914 the resulting string to vc-checkin, instead of inserting it into the
15915 comment ring.
15916
15917 * vc-rcs.el (vc-rcs-receive-file): Call comment-history
15918 unconditionally. Use the comments as initial contents of the log
15919 entry buffer. Document the trick to force branch creation with no
15920 changes.
15921
15922 2000-10-01 Miles Bader <miles@gnu.org>
15923
15924 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Call
15925 `recenter' with an arg to prevent redrawing the display.
15926
15927 2000-09-30 Stefan Monnier <monnier@cs.yale.edu>
15928
15929 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Prettier.
15930
15931 * emacs-lisp/lisp.el (lisp-complete-symbol): Only jump 2 not 3 levels.
15932
15933 * progmodes/c-mode.el (c-mode):
15934 Don't gratuitously override the default for comment-column.
15935
15936 * textmodes/tex-mode.el (latex-metasection-list): New var.
15937 (latex-imenu-create-index): Use it.
15938 Move the regexp construction outside loops (and use push).
15939 (tex-font-lock-keywords-1, tex-font-lock-keywords-2)
15940 (tex-font-lock-keywords): Moved from font-lock.el.
15941 (tex-comment-indent): Remove.
15942 (tex-common-initialization): Don't set comment-indent-function.
15943 (latex-block-default): New var.
15944 (tex-latex-block): Use it to provide a default choice.
15945 Add any unknown choice to latex-block-names.
15946 Insert [...] after {...}.
15947 (tex-last-unended-begin): Simplify regexp.
15948 (tex-goto-last-unclosed-latex-block, latex-backward-sexp-1)
15949 (latex-forward-sexp-1, latex-forward-sexp): New functions.
15950 (latex-mode): Set forward-sexp-function.
15951
15952 * textmodes/texinfo.el (texinfo-font-lock-syntactic-keywords):
15953 Add regexp for @ignore ... @end ignore.
15954 (texinfo-heading-face): New face.
15955 (texinfo-font-lock-keywords): Use it.
15956 (texinfo-mode-menu): New menu.
15957 (texinfo-inside-macro-p, texinfo-inside-env-p, texinfo-insert-quote):
15958 New functions.
15959 (texinfo-mode-map): Bind " to insert-quote and M-RET to insert-@item.
15960 (texinfo-section-types-regexp, texinfo-section-level-regexp)
15961 (texinfo-subsection-level-regexp, texinfo-subsubsection-level-regexp):
15962 Remove declaration.
15963 (texinfo-show-structure): Use outline-regexp and texinfo-section-list.
15964
15965 * delsel.el (delete-selection-mode): Use define-minor-mode.
15966
15967 * emacs-lisp/regexp-opt.el (regexp-opt-group): Put more parenthesis.
15968
15969 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
15970
15971 * dired.el (dired-map-over-marks): Use modern backquotes and docstring.
15972
15973 2000-09-30 Gerd Moellmann <gerd@gnu.org>
15974
15975 * replace.el (keep-lines-read-args): New function.
15976 (keep-lines, flush-lines, how-many): Use keep-lines-read-args to
15977 read arguments interactively. Add parameters RSTART and REND.
15978 Operate on the active region in Transient Mark mode.
15979
15980 * files.el (auto-mode-alist): Add pattern for `#*mail*...'.
15981
15982 * emacs-lisp/authors.el (authors-obsolete-file-p): New function.
15983 (authors-obsolete-files-regexps): New variable.
15984 (authors-add): Don't record changes in obsolete files.
15985
15986 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
15987
15988 * autoinsert.el (auto-insert-mode): Use define-minor-mode.
15989
15990 * newcomment.el (comment-indent-function): Use 0 for ;;; and %%%.
15991 (comment-indent): Make sure there's a space between code and comment.
15992 Shift comments left to avoid going past fill-column.
15993
15994 2000-09-29 Gerd Moellmann <gerd@gnu.org>
15995
15996 * startup.el (startup-echo-area-message): New function.
15997 (display-startup-echo-area-message): Use it.
15998 (fancy-splash-screens): Rewritten to use keymaps and a timer.
15999 (fancy-splash-default-action): New function.
16000 (fancy-splash-screens-1): New function.
16001 (fancy-splash-head): Put a help-echo and a keymap under the image.
16002
16003 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
16004
16005 * diff-mode.el (diff-add-log-file-name): Remove.
16006 (diff-mode): Use add-log-buffer-file-name-function.
16007
16008 * add-log.el (find-change-log): New arg BUFFER-FILE.
16009 (add-log-file-name): Obey add-log-file-name-function.
16010 (add-log-buffer-file-name-function): New var.
16011 (add-change-log-entry): Use it.
16012
16013 2000-09-29 Miles Bader <miles@gnu.org>
16014
16015 * image-file.el (image-file-name-extensions): New variable.
16016 (image-file-name-regexps): Renamed from `image-file-regexps'.
16017 New default value is nil. Call `auto-image-file-mode'.
16018 (image-file-name-regexp): New function.
16019 (auto-image-file-mode): New minor mode.
16020 (insert-image-file): Don't make conditional on the image-file
16021 handler being enabled.
16022 (image-file-handler): Make the call here conditional instead.
16023 (set-image-file-handler-enabled, enable-image-file-handler)
16024 (disable-image-file-handler): Functions removed.
16025
16026 * emacs-lisp/authors.el (authors-print): Rephrase many-files
16027 string.
16028
16029 2000-09-29 Gerd Moellmann <gerd@gnu.org>
16030
16031 * textmodes/tex-mode.el (latex-outline-regexp): Don't use `list*';
16032 it's a function from CL.
16033 (latex-imenu-create-index): Replace eval-when-compile with progn
16034 because latex-section-alist is not bound while compiling.
16035
16036 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
16037
16038 * textmodes/outline.el (outline-minor-mode): Use define-minor-mode.
16039 (outline-mode): Use define-derived-mode.
16040
16041 * progmodes/perl-mode.el (perl-mode):
16042 * progmodes/awk-mode.el (awk-mode):
16043 * progmodes/asm-mode.el (asm-mode):
16044 Don't gratuitously override the default for comment-column.
16045
16046 * emacs-lisp/lisp.el (lisp-complete-symbol):
16047 Distinguish the let-binding case from the funcall case.
16048 (forward-sexp-function): New variable.
16049 (forward-sexp): Use it.
16050
16051 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Autoload.
16052 (easy-mmode-defmap): Remove the now useless autoload.
16053
16054 * time.el (display-time-mode): Use define-minor-mode.
16055
16056 * subr.el (add-minor-mode): Don't eval NAME.
16057 Don't depend on the presence of TOGGLE-FUN for any special behavior.
16058 Use if rather than cond.
16059
16060 * simple.el (read-expression-map): Define more properly.
16061 (comment-indent-hook): Remove.
16062 (string-to-syntax): Bug fix.
16063
16064 * pcvs.el (cvs-ediff-exit-hook): Kill buffer before window.
16065 (cvs-ediff-diff): Fix typo.
16066 (cvs-revert-if-needed): Don't bother preserving read-only.
16067
16068 * paren.el (show-paren-mode): Use define-minor-mode.
16069
16070 * jka-compr.el (auto-compression-mode): Use define-minor-mode.
16071 (toggle-auto-compression): Remove.
16072 (jka-compr-build-file-regexp): Remove useless grouping.
16073
16074 * diff-mode.el (diff-mode-map, diff-minor-mode-prefix):
16075 Avoid user-reserved bindings.
16076 (diff-mode, diff-minor-mode): Drop make-local-hook (done by add-hook).
16077 (diff-header-face): Revert to grey85.
16078
16079 * cvs-status.el (cvs-status-entry-leader-re): Minor fix.
16080
16081 * complete.el (partial-completion-mode) <defcustom>: Remove.
16082 (partial-completion-mode): Use define-minor-mode.
16083 (PC-do-completion): Understand `completion-auto-help = delay'
16084 to mean to popup the completion buffer only the second time.
16085 (PC-include-file-all-completions, PC-include-file-all-completions)
16086 (PC-include-file-all-completions): Don't quote lambda.
16087
16088 * comint.el (comint-mode-hook): Docstring fix.
16089 (comint-mode): Use define-derived-mode.
16090 (comint-mode-map): Remove obsolete comment.
16091 (make-comint): Minor stylistic change.
16092 (comint-insert-clicked-input): Be more careful to find the overlay.
16093 Use this-command-keys rather than hardcoding mouse-2.
16094
16095 * font-lock.el: Replace confusing (,@ with ,
16096 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
16097 Don't use regexp-opt-depth. Spice up the regexp for args.
16098 Don't distinguish between cmds that can take an opt arg or not.
16099 Use `append' and `prepend' rather than `keep'.
16100
16101 * textmodes/tex-mode.el (latex-imenu-indent-string): Add a space.
16102 (latex-outline-regexp): New var.
16103 (latex-outline-level): New fun.
16104 (latex-section-alist): New var.
16105 (latex-imenu-create-index): Use it. Use `push' as well.
16106 (tex-shell-map): Initialize it properly.
16107 (tex-mode): Minor stylistic change.
16108 (plain-tex-mode): Use define-derived-mode.
16109 (latex-mode): Use define-derived-mode.
16110 Construct the paragraph regexps in a more readable way.
16111 Set the buffer-local outline-{level,regexp} vars.
16112 (slitex-mode): Derive from latex-mode.
16113 (tex-common-initialization): Don't kill-all-vars anymore.
16114 Add setting for comment-add and font-lock-defaults.
16115 (tex-start-shell): Use with-current-buffer and don't re-init keymap.
16116 (tex-main-file): New fun. Obey TeX-master as well and remove `.tex'.
16117 (tex-start-tex): New arg DIR (and send a chdir command for it).
16118 Also display the shell buffer and save it in tex-last-buffer-texed.
16119 (tex-region): Use expand-file-name rather than concat.
16120 Remove code made useless by changes in tex-start-tex.
16121 (tex-file): Use tex-main-file and adapt to new tex-start-tex.
16122
16123 * map-ynp.el (map-y-or-n-p): Fix missing backquotes.
16124
16125 2000-09-28 Dave Love <fx@gnu.org>
16126
16127 * eshell/eshell.el (eshell) <defgroup>: Add :version.
16128
16129 2000-09-28 Gerd Moellmann <gerd@gnu.org>
16130
16131 * emacs-lisp/authors.el (authors-add): Use `nconc' instead of
16132 `append'.
16133
16134 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
16135
16136 * info.el (Info-extract-pointer): Undo last change.
16137 Instead, fix the position of the `bound' arg to re-search-backward.
16138
16139 2000-09-27 Stefan Monnier <monnier@cs.yale.edu>
16140
16141 * info.el (Info-extract-pointer):
16142 Widen more carefully, to avoid finding pointers in other nodes.
16143 (Info-index): Use push.
16144
16145 2000-09-27 Gerd Moellmann <gerd@gnu.org>
16146
16147 * frame.el (set-frame-font): Remove call to obsolete function
16148 frame-update-faces.
16149 (set-foreground-color, set-background-color): Likewise for
16150 frame-update-face-colors.
16151
16152 2000-09-27 Miles Bader <miles@gnu.org>
16153
16154 * image-file.el: New file.
16155
16156 2000-09-27 Gerd Moellmann <gerd@gnu.org>
16157
16158 * frame.el (frame-notice-user-settings): Don't call
16159 frame-update-faces, which is a no-op now.
16160
16161 * ediff-wind.el (ediff-control-frame-parameters): Add zero
16162 tool-bar-lines.
16163
16164 2000-09-27 Dave Love <fx@gnu.org>
16165
16166 * mouse.el: Fix last change.
16167
16168 2000-09-27 Miles Bader <miles@lsi.nec.co.jp>
16169
16170 * toolbar/tool-bar.el (tool-bar-help): Use `mouse-pixel-position'.
16171
16172 2000-09-22 Kenichi Handa <handa@etl.go.jp>
16173
16174 * international/quail.el (quail-help): The output message is
16175 improved.
16176
16177 2000-09-26 Dave Love <fx@gnu.org>
16178
16179 * mouse.el (popup-menu): If POSITION is nil, set it using
16180 mouse-position.
16181
16182 2000-09-25 Sam Steingold <sds@gnu.org>
16183
16184 * net/browse-url.el (browse-url-file-url): Check for null maps.
16185
16186 2000-09-26 Gerd Moellmann <gerd@gnu.org>
16187
16188 * frame.el (frame-notice-user-settings): Don't add a
16189 tool-bar-lines frame parameter to default-frame-alist in batch mode.
16190
16191 * frame.el (frame-notice-user-settings):
16192 Make tool-bar-mode and default-frame-alist consistent.
16193
16194 * toolbar/tool-bar.el (tool-bar-help): New function.
16195
16196 2000-09-25 Gerd Moellmann <gerd@gnu.org>
16197
16198 * bytecomp.el (byte-compile-defvar-or-defconst): Only cons onto
16199 current-load-list in top-level forms. Else this leaks a cons cell
16200 every time a defun is called.
16201
16202 * mail/mail-utils.el (rmail-dont-reply-to): Fix last change.
16203
16204 2000-09-25 Dave Love <fx@gnu.org>
16205
16206 * startup.el (fancy-splash-head): Check XPM is available.
16207
16208 * autoinsert.el (auto-insert): Doc fix.
16209 (auto-insert-alist): Following GNU notices, don't say `copyright
16210 _by_'. Use line-beginning-position.
16211 (auto-insert): Check buffer-file-name is non-nil before use.
16212
16213 2000-09-25 Gerd Moellmann <gerd@gnu.org>
16214
16215 * textmodes/texinfo.el (texinfo-mode): Prevent filling lines
16216 starting with `@def' or `@multitable', in addition to ones
16217 specified by the user in auto-fill-inhibit-regexp.
16218
16219 2000-09-25 Markus Rost <rost@math.ohio-state.edu>
16220
16221 * mail/mail-utils.el (rmail-dont-reply-to): Avoid infinite loop if
16222 rmail-dont-reply-to-names matches the empty string.
16223
16224 2000-09-25 Gerd Moellmann <gerd@gnu.org>
16225
16226 * startup.el (command-line-1, fancy-splash-text): Change the
16227 text to sound more friendly.
16228
16229 2000-09-23 Thien-Thi Nguyen <ttn@gnu.org>
16230
16231 * progmodes/hideshow.el: Update author email address.
16232 Generally, sync w/ maintainer version 5.22.
16233 (hs-hide-all-non-comment-function): New var.
16234 (hs-hide-hook, hs-show-hook, hs-minor-mode): Update docstrings.
16235 (hs-hide-all): Use `hs-hide-all-non-comment-function'.
16236 (hs-show-region): Delete this command.
16237 (hs-minor-mode-map): Change bindings to leave "C-c LETTER" alone.
16238
16239 2000-09-22 Dave Love <fx@gnu.org>
16240
16241 * hl-line.el (hl-line-overlay): Don't make it buffer-local.
16242 (hl-line-highlight): Specify buffer when moving overlay.
16243
16244 * progmodes/fortran.el (fortran-mode): Locally set
16245 normal-auto-fill-function.
16246 (fortran-auto-fill-mode): Just alias to auto-fill-mode.
16247 (fortran-mode-map): Adjust auto-fill menu entry.
16248
16249 2000-09-22 Gerd Moellmann <gerd@gnu.org>
16250
16251 * vc-rcs.el (toplevel): Require `vc' when compiling.
16252
16253 * startup.el (fancy-splash-head): Use splash.pbm instead of splash.xbm.
16254
16255 2000-09-22 Andre Spiegel <spiegel@gnu.org>
16256
16257 * vc.el (vc-switch-backend): Signal an error if the file is not
16258 registered under the new backend.
16259
16260 * vc-rcs.el (vc-rcs-checkin): Fix bug that prevented check-in
16261 without explicit revision number.
16262
16263 2000-09-21 Stefan Monnier <monnier@cs.yale.edu>
16264
16265 * diff-mode.el (diff-file-header-face): Reset to its previous value.
16266 (diff-hunk-text): Correctly use offsets rather than buffer-positions.
16267 (diff-xor): New function.
16268 (diff-find-source-location): Use it. Fix a stupid name clash.
16269 (diff-hunk-status-msg): New function.
16270 (diff-apply-hunk): Drop args OTHER-FILE, DRY-RUN, POPUP and NOERROR.
16271 (diff-test-hunk): Use diff-find-source-location.
16272 (diff-goto-source): Favor the `reverse'.
16273 (diff-hunk-text): Properly handle one-sided context diffs.
16274 (diff-apply-hunk): When done, advance to the next hunk.
16275
16276 2000-09-21 Gerd Moellmann <gerd@gnu.org>
16277
16278 * startup.el (command-line): If frame was created with a non-zero
16279 tool-bar-lines parameter, switch tool-bar-mode on.
16280
16281 * add-log.el (change-log-date-face, change-log-name-face)
16282 (change-log-email-face, change-log-file-face)
16283 (change-log-list-face, change-log-conditionals-face)
16284 (change-log-function-face, change-log-acknowledgement-face):
16285 New faces, inheriting from font-lock faces.
16286 (change-log-font-lock-keywords): Use them.
16287
16288 2000-09-21 Dave Love <fx@gnu.org>
16289
16290 * progmodes/cperl-mode.el (top-level): Clean up
16291 `eval-when-compile's and assorted defvars.
16292 (cperl-invalid-face): Don't double-quote value. Change custom
16293 type.
16294 (cperl-mode): Set normal-auto-fill-function and don't zap
16295 auto-fill-function.
16296 (cperl-imenu--function-name-regexp-perl): Renamed from
16297 imenu-example--function-name-regexp-perl.
16298 (cperl-imenu--create-perl-index): Renamed from
16299 imenu-example--create-perl-index.
16300 (cperl-xsub-scan): Don't require cl.
16301
16302 * msb.el (msb-mode-map): Use substitute-key-definition.
16303 (msb-mode): Use msb-mode-map.
16304
16305 2000-09-21 Andre Spiegel <spiegel@gnu.org>
16306
16307 * vc.el (vc-index-of, vc-transfer-file, vc-default-receive-file):
16308 New functions.
16309 (vc-next-action-on-file): Call vc-transfer-file at appropriate places.
16310 (vc-switch-backend): New function.
16311 (vc-prefix-map): Bind `vc-switch-backend' to `b'.
16312 (vc-register): Fix prompt.
16313 (vc-unregister, vc-default-unregister): New functions.
16314 (vc-version-diff): Handle empty buffer in sentinel.
16315
16316 * vc-rcs.el (vc-rcs-workfile-is-newer): New function.
16317 (vc-rcs-state-heuristic): Use it to guess the state of files with
16318 non-strict locking.
16319 (vc-rcs-find-most-recent-rev): Handle the case when a branch has
16320 been set with -b, but not created yet.
16321 (vc-rcs-fetch-master-state): With non-strict locking, compare file
16322 contents in order to find the state.
16323 (vc-rcs-checkin): Allow creation of branches with no changes.
16324 (vc-rcs-unregister, vc-rcs-receive-file)
16325 (vc-rcs-set-non-strict-locking): New functions.
16326
16327 * vc-hooks.el (vc-name): Force correct computation of the value
16328 in case it is missing.
16329
16330 2000-09-21 Gerd Moellmann <gerd@gnu.org>
16331
16332 * startup.el (fancy-splash-tail): Use a different foreground
16333 color on a dark frame background.
16334
16335 2000-09-21 Miles Bader <miles@lsi.nec.co.jp>
16336
16337 * info.el: Use the correct capitalization when making Info-mode
16338 and Info-edit-mode `special' modes.
16339
16340 2000-09-20 Stefan Monnier <monnier@cs.yale.edu>
16341
16342 * diff-mode.el (diff-add-log-file-name, diff-current-defun): New funs.
16343 (diff-mode): Add support for add-log.el.
16344 (diff-hunk-text): Use char offsets rather than line offsets.
16345 (diff-find-source-location): Replace LINE with line-offset (nil
16346 if not found) and always set POS to a meaningful position.
16347 Adapt to the new char-offsets.
16348 (diff-apply-hunk): Drop support for the unused `select' POPUP.
16349 Adapt to the new diff-find-source-location.
16350 (diff-goto-source): Adapt to the new diff-find-source-location.
16351
16352 * add-log.el (add-log-file-name): New function (split out of
16353 add-change-log-entry).
16354 (add-change-log-entry): Use it.
16355 Call add-log-file-name-function with the changelog file name if
16356 the current buffer is not associated with any file.
16357 Avoid find-file if the selected window is dedicated.
16358
16359 * diff-mode.el (diff-find-source-location):
16360 Move code from diff-apply-hunk. Return buffer rather than file.
16361 (diff-apply-hunk): Use the new result from diff-find-source-location.
16362 (diff-goto-source): Use the new diff-find-source-location.
16363
16364 2000-09-20 Dave Love <fx@gnu.org>
16365
16366 * iswitchb.el: Some doc fixes.
16367 (iswitchb-mode-map): Define completely initially. Inherit
16368 minibuffer-local-map.
16369 (iswitchb-completion-help) <!iswitchb-xemacs>: Use
16370 fundamental-mode.
16371 (iswitchb-global-map): New variable.
16372 (iswitchb-summaries-to-end): Amalgamate regexps.
16373 (iswitchb-mode): New.
16374 (iswitchb-mode-hook): New variable.
16375 (iswitchb) <defgroup>: Add URL link. Use group `completion', not
16376 `extensions'.
16377
16378 2000-09-20 Gerd Moellmann <gerd@gnu.org>
16379
16380 * ehelp.el (electric-help): New defgroup.
16381 (electric-help-shrink-window): New user-option.
16382 (with-electric-help): Use it.
16383
16384 * window.el (shrink-window-if-larger-than-buffer): If face
16385 `mode-line' has a :box, and we're on a graphical frame, add 1
16386 to the needed window height.
16387
16388 * frame.el (frame-notice-user-settings): Add a last parameter nil
16389 to a call to `append', because the last list passed to `append' is
16390 not copied, and so subsequent calls to assq-delete-all will modify
16391 default-frame-alist.
16392
16393 * startup.el (fancy-splash-image): Change :type.
16394 (fancy-splash-head): Use an XBM image if appropriate.
16395 (command-line-1): Show splash screens in more cases.
16396
16397 * startup.el (fancy-splash-text): Don't quote faces.
16398
16399 * dired.el (dired-font-lock-keywords): Undo last change.
16400 (dired-readin): Bind indent-tabs-mode to nil.
16401
16402 * startup.el (fancy-splash-head): If frame's background mode
16403 is `dark', change the black background of the image to gray.
16404 (fancy-splash-screens): Display startup echo area message.
16405 (display-startup-echo-area-message): New function.
16406
16407 2000-09-20 Miles Bader <miles@lsi.nec.co.jp>
16408
16409 * faces.el (mode-line, tool-bar): Merge entries for `x' and `w32'.
16410
16411 * info.el (info-header-node): Tweak for color ttys.
16412
16413 * faces.el (face-valid-attribute-values): Make sure directories we
16414 search for stipples both exist and are readable before trying to
16415 search them.
16416
16417 * diff-mode.el (diff-apply-hunk): Jump to the correct line offset
16418 in the dry-run case.
16419
16420 * jka-compr.el (with-auto-compression-mode): New macro.
16421
16422 * cus-edit.el (custom-face-tag-face, custom-group-tag-face-1)
16423 (custom-group-tag-face, custom-variable-tag-face): Use relative
16424 :height and inherit from `variable-pitch' face instead of
16425 hardwiring :family.
16426 * hi-lock.el (hi-black-hb): Likewise.
16427
16428 Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
16429 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Like in
16430 toolbar-add-item, if image doesn't have a mask add a `:mask
16431 heuristic'.
16432
16433 2000-09-19 Stefan Monnier <monnier@cs.yale.edu>
16434
16435 * diff-mode.el: Docstring fixes.
16436 (diff-header-face, diff-comment-face): New faces.
16437 (diff-font-lock-keywords): Highlight a bit differently.
16438 (diff-find-source-location): Don't return SPAN any more.
16439 (diff-hunk-text): Don't bother erasing the temp buffer.
16440 (diff-find-text): Drop argument LINE.
16441 (diff-apply-hunk): Update calls to diff-find-text.
16442 (diff-goto-source): Use pop-to-buffer again and don't raise an error.
16443
16444 * calendar/calendar.el: Docstring fixes.
16445 (calendar-make-alist): Don't quote lambda.
16446 (calendar-star-date): Use make-local-variable.
16447
16448 2000-09-19 Dave Love <fx@gnu.org>
16449
16450 * toolbar/tool-bar.el: Renamed from toolbar.el.
16451 Change `toolbar' to `tool-bar' generally in symbols.
16452 Make some items invisible in `special' major modes.
16453 (tool-bar-add-item-from-menu): Renamed from toolbar-like-menu-item.
16454 Add arg PROPS.
16455
16456 * startup.el (fancy-splash-screen) <defgroup>: Fix syntax.
16457 Add :version here.
16458 (fancy-splash-delay, fancy-splash-image): Remove :version here.
16459
16460 2000-09-19 Gerd Moellmann <gerd@gnu.org>
16461
16462 * progmodes/sh-script.el (sh-search-word): Remove call to `debug'.
16463
16464 * files.el (find-file-suppress-same-file-warnings): New user-option.
16465 (find-file-noselect): Use it.
16466
16467 * startup.el (fancy-splash-delay, fancy-splash-image): Add :version.
16468 (fancy-splash-screen): Defgroup.
16469
16470 * add-log.el (change-log-font-lock-keywords): Match names
16471 more exactly for the case that font-lock-constant-face is
16472 underlined.
16473
16474 2000-09-19 Richard M. Stallman <rms@gnu.org>
16475
16476 * progmodes/sh-script.el (sh-search-word): Rewritten for speed.
16477
16478 2000-09-19 Andre Spiegel <spiegel@gnu.org>
16479
16480 * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
16481
16482 2000-09-19 Gerd Moellmann <gerd@gnu.org>
16483
16484 * gnus/: Update to emacs-21-branch of the Gnus CVS repository.
16485 * gnus/binhex.el, gnus/flow-fill.el, gnus/format-spec.el
16486 * gnus/gnus-ml.el, gnus/gnus-mlspl.el, gnus/ietf-drums.el,
16487 * gnus/imap.el, gnus/mail-parse.el, gnus/mail-prsvr.el,
16488 * gnus/mail-source.el, gnus/mailcap.el, gnus/mm-bodies.el,
16489 * gnus/mm-decode.el, gnus/mm-encode.el, gnus/mm-partial.el,
16490 * gnus/mm-util.el, gnus/mm-uu.el, gnus/mm-view.el,
16491 * gnus/mml.el, gnus/nnimap.el, gnus/nnslashdot.el,
16492 * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
16493 * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
16494 * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
16495 * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
16496
16497 * startup.el (fancy-splash-text): New variable.
16498 (fancy-splash-delay, fancy-splash-image): New user-options.
16499 (fancy-splash-insert, fancy-splash-head, fancy-splash-tail)
16500 (fancy-splash-screens): New functions.
16501 (command-line-1): If display has a `display' frame parameter, has
16502 colors, and we have XPM support, show more fancy splash screens.
16503
16504 2000-09-19 Dave Love <fx@gnu.org>
16505
16506 * map-ynp.el (map-y-or-n-p): Check use-dialog-box. Don't lose
16507 with null `help'. Use modern backquote syntax.
16508
16509 2000-09-19 Gerd Moellmann <gerd@gnu.org>
16510
16511 * font-lock.el (font-lock-mode): Change message telling the user
16512 that ``the buffer is too big''.
16513
16514 * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
16515 for instance for the case that tab-width is 2.
16516
16517 2000-09-18 Gerd Moellmann <gerd@gnu.org>
16518
16519 * toolbar/toolbar.el (toolbar-like-menu-item): Like in
16520 toolbar-add-item, if image doesn't have a mask add a `:mask
16521 heuristic'.
16522
16523 2000-09-18 Miles Bader <miles@lsi.nec.co.jp>
16524
16525 * diff-mode.el (diff-hunk-text): Add new optional arg LINE-OFFSET,
16526 and return a cons if it's non-nil.
16527 (diff-apply-hunk): Try to jump to the line in the source text
16528 corresponding to the position of point in the in the hunk.
16529
16530 * info.el (Info-title-3-face, Info-title-2-face)
16531 (Info-title-1-face): Use face inheritance and relative sizes
16532 instead of hard-wiring things.
16533
16534 * faces.el (secondary-selection): Make dark-background variant sane.
16535
16536 2000-09-16 Andrew Innes <andrewi@gnu.org>
16537
16538 * makefile.w32-in (compile-files-CMD): No need to make .elc files
16539 read-only, since they aren't under VC now.
16540
16541 2000-09-17 Dave Love <fx@gnu.org>
16542
16543 * tmm.el: Replace mapcar with mapc in several places.
16544
16545 * loadhist.el (unload-feature): Maybe call elp-restore-list and
16546 ad-unadvise.
16547
16548 * international/latin1-disp.el: New file.
16549
16550 * calendar/cal-move.el (scroll-calendar-left)
16551 (scroll-calendar-right): Make arg optional (for active mode line).
16552
16553 * calendar/calendar.el (calendar-mode-line-format): Make fields
16554 mouse-sensitive.
16555 (calendar-read-date, calendar-read-date, calendar-window-list):
16556 Unquote lambda.
16557 (calendar-month-name): Use aref, not sref.
16558
16559 * view.el (minor-mode-alist): Propertize the string.
16560
16561 * international/characters.el (standard-case-table): Add entries
16562 for Greek.
16563
16564 2000-09-18 Miles Bader <miles@gnu.org>
16565
16566 * info.el (info-node, info-xref): Add dark-background variants.
16567
16568 * faces.el (header-line): Change defaults to be less confusing
16569 when mixed with mode-lines.
16570
16571 * info.el (Info-fontify-node): Make a few cleanups.
16572 Add extra `help-echo' and `local-map' props to node xrefs.
16573 Use header-specific faces for node-names & xrefs.
16574 (Info-use-header-line): New variable.
16575 (info-header-xref, info-header-node): New faces.
16576 (Info-setup-header-line): New function.
16577 (Info-select-node): Call Info-setup-header-line when enabled.
16578 (Info-extract-pointer): Work even if the header line is hidden.
16579 (Info-header-line): New variable.
16580
16581 2000-09-16 Stefan Monnier <monnier@cs.yale.edu>
16582
16583 * vms-patch.el (print-region-function): Don't quote lambda.
16584
16585 * tempo.el (tempo-expand-if-complete): Quote paren in docstring.
16586
16587 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Cleanup the regexp.
16588 (lm-get-header-re): Allow spaces between the header and the colon.
16589 (lm-header): Allow $ in non-RCS headers.
16590 (lm-header-multiline): Put the strings back into order.
16591 Stop at an empty line. Don't require two space chars if the
16592 line is clearly not another header line.
16593
16594 * emacs-lisp/lmenu.el (popup-menu, popup-menu-internal)
16595 (popup-menu-popup): Remove.
16596
16597 2000-09-15 Gerd Moellmann <gerd@gnu.org>
16598
16599 * toolbar/toolbar.el (toolbar-add-item): Use the same image
16600 specification if or if not tool-bar item contains an `:enabled'
16601 property.
16602
16603 * menu-bar.el (menu-bar-files-menu): Disable ``Save'' if
16604 current buffer has no file name.
16605
16606 2000-09-15 Dave Love <fx@gnu.org>
16607
16608 * strokes.el: Sync with maintainer's current version with changes
16609 for Emacs, but avoid runtime cl and levents.
16610 (toplevel): Change autoloads and compilation requires.
16611 (strokes-version, strokes-bug-address, strokes-lift): Values
16612 changed.
16613 (strokes-xpm-header, strokes-insinuated): New variable.
16614 (strokes): Add :link.
16615 (strokes-mode): Customized.
16616 (strokes-while-inhibiting-garbage-collector): New macro.
16617 (strokes-remassoc): Avoid remove-if.
16618 (strokes-fix-button2-command): Don't use ad-do-it.
16619 (strokes-insinuate): New function.
16620 (strokes-button-press-event-p, strokes-button-release-event-p):
16621 New functions, used instead of non-`strokes-' versions..
16622 (strokes-mouse-event-p): Rewritten.
16623 (strokes-event-closest-point): Avoid event-point.
16624 (strokes-get-grid-position): Avoid cdadr, caadr
16625 (strokes-read-stroke, strokes-read-complex-stroke): Avoid levents
16626 functions.
16627 (strokes-help): Use with-output-to-temp-buffer.
16628 (strokes-window-configuration-changed-p): New function.
16629 (strokes-update-window-configuration): Use buffer-live-p,
16630 strokes-window-configuration-changed-p.
16631 (strokes-mode): Use strokes-insinuate. Alter mouse bindings.
16632 (strokes-char-face): New face.
16633 (strokes-char-table, strokes-base64-chars): New variable.
16634 (strokes-xpm-for-stroke, strokes-list-strokes)
16635 (strokes-xpm-char-on-p, strokes-xpm-char-bit-p)
16636 (strokes-xpm-encode-length-as-string, strokes-xpm-decode-char)
16637 (strokes-xpm-to-compressed-string, strokes-decode-buffer)
16638 (strokes-encode-buffer, strokes-xpm-for-compressed-string)
16639 (strokes-compose-complex-stroke, strokes-alphabetic-lessp): New
16640 functions.
16641
16642 2000-09-15 Gerd Moellmann <gerd@gnu.org>
16643
16644 * toolbar/toolbar.el (toolbar-add-item): Use image-mask-p.
16645
16646 * image.el (create-image): Doc fix.
16647
16648 * toolbar/toolbar.el (toolbar-add-item): Use `:mask heuristic'
16649 instead of `:heuristic-mask t'.
16650
16651 2000-09-14 Andrew Innes <andrewi@gnu.org>
16652
16653 * makefile.w32-in: Revert to Unix line endings.
16654
16655 2000-09-14 Andrew Innes <andrewi@gnu.org>
16656
16657 * makefile.w32-in: Add bootstrap support. Also copy lisp source
16658 when installing.
16659
16660 * makefile.nt (DONTCOMPILE): Fix typo.
16661
16662 * shell.el (shell-write-history-on-exit): New function.
16663 (shell-dumb-shell-regexp): New custom variable.
16664 (shell-mode): Make shell-write-history-on-exit the process
16665 sentinel if shell name matches shell-dumb-shell-regexp.
16666
16667 * w32-fns.el: Comment out before-init-hook function which resets
16668 source-directory based; this breaks bootstrap.
16669
16670 2000-09-14 Dave Love <fx@gnu.org>
16671
16672 * toolbar/cancel.xpm, toolbar/close.xpm, toolbar/copy.xpm,
16673 toolbar/cut.xpm, toolbar/exit.xpm, toolbar/fld_open.xpm,
16674 toolbar/help.xpm, toolbar/info.xpm, toolbar/mail.xpm,
16675 toolbar/mail_compose.xpm, toolbar/new.xpm, toolbar/open.xpm,
16676 toolbar/paste.xpm, toolbar/preferences.xpm, toolbar/print.xpm,
16677 toolbar/save.xpm, toolbar/saveas.xpm, toolbar/search-replace.xpm,
16678 toolbar/search.xpm, toolbar/spell.xpm, toolbar/undo.xpm: New.
16679 From Tuomas Kuosmanen <tigert@gimp.org>. (Gnome icons fetched
16680 from <URL:http://tigert.gimp.org/gnome/gnome-stock/>.)
16681
16682 * toolbar/toolbar.el: New.
16683
16684 * subdirs.el: Add toolbar.
16685
16686 2000-09-14 Gerd Moellmann <gerd@gnu.org>
16687
16688 * indent.el (indent-for-tab-command): Doc fix.
16689
16690 2000-09-14 Alex Schroeder <alex@gnu.org>
16691
16692 * ansi-color.el (ansi-colors): Doc change.
16693 (ansi-color-get-face): Simplified regexp.
16694 (ansi-color-faces-vector): Added more faces, doc change.
16695 (ansi-color-names-vector): Doc change.
16696 (ansi-color-regexp): Simplified regexp.
16697 (ansi-color-parameter-regexp): New regexp.
16698 (ansi-color-filter-apply): Doc change.
16699 (ansi-color-filter-region): Doc change.
16700 (ansi-color-apply): Use ansi-color-regexp and ansi-color-get-face,
16701 deal with zero length parameters.
16702 (ansi-color-apply-on-region): Doc change.
16703 (ansi-color-map): Doc change.
16704 (ansi-color-map-update): Removed debugging message.
16705 (ansi-color-get-face-1): Added condition-case to trap
16706 args-out-of-range errors.
16707 (ansi-color-get-face): Doc change.
16708 (ansi-color-make-face): Removed.
16709 (ansi-color-for-shell-mode): New option.
16710
16711 2000-09-13 Kenichi Handa <handa@etl.go.jp>
16712
16713 * international/quail.el (quail-start-translation): Translate KEY
16714 if necessary even if it doesn't have any mapping in the current
16715 input method.
16716 (quail-start-conversion): Likewise.
16717 (quail-help): The output message is improved.
16718
16719 2000-09-13 Miles Bader <miles@gnu.org>
16720
16721 * comint.el (comint-output-filter): Revert to using
16722 `insert-before-markers'. Add bletcherous hack to undo damage
16723 caused by `insert-before-markers'. Put `front-sticky' property on
16724 overlays created here so that the field code understands how the
16725 overlay works. Use a let when making comint-last-prompt-overlay,
16726 so that the code is easier to read.
16727
16728 2000-09-13 Dave Love <fx@gnu.org>
16729
16730 * wid-edit.el (widget-default-format-handler): DTRT when
16731 doc-property is a function.
16732
16733 2000-09-12 Francesco Potorti` <pot@gnu.org>
16734
16735 * mail/sendmail.el (mail-mode-fill-paragraph): Do not get the
16736 filed name if it's not there.
16737
16738 2000-09-12 Dave Love <fx@gnu.org>
16739
16740 * simple.el (read-mail-command): Doc fix.
16741 (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
16742
16743 * vc.el (vc-dired-listing-switches): Fix :version.
16744
16745 * vc-hooks.el: Doc fixes.
16746
16747 * subr.el (add-minor-mode): Use toggle-fun arg.
16748
16749 * speedbar.el: Add :version to several defcustoms.
16750
16751 * imenu.el (imenu--truncate-items, imenu--cleanup)
16752 (imenu--generic-function): Avoid mapcar.
16753 (imenu--replace-spaces): Function removed.
16754 (imenu--completion-buffer): Use subst-char-in-string.
16755 (imenu-add-to-menubar): Use keymap inheritance.
16756
16757 2000-09-12 Miles Bader <miles@gnu.org>
16758
16759 * diff-mode.el (diff-hunk-text): Use `with-temp-buffer'.
16760 (diff-mode-map): Bind `diff-test-hunk'.
16761 (diff-apply-hunk): Use `select-window' instead of `pop-to-buffer'.
16762
16763 2000-09-11 Gerd Moellmann <gerd@gnu.org>
16764
16765 * bytecomp.el (byte-compile-defvar): Undo last change
16766 because it breaks '(make-variable-buffer-local (defvar ...)'
16767 which is used at least in dired.
16768
16769 2000-09-12 Kenichi Handa <handa@etl.go.jp>
16770
16771 * international/quail.el (quail-define-package): Docstring
16772 modified.
16773
16774 2000-09-12 Kenichi Handa <handa@etl.go.jp>
16775
16776 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Add
16777 extra docstrings for "chinese-ccdospy", "chinese-ecdict",
16778 "chinese-etzy", "chinese-sw", and "chinese-ziranma". Modify the
16779 docstring of "chinese-py".
16780
16781 * international/quail.el (quail-translation-docstring): New
16782 variable.
16783 (quail-show-keyboard-layout): Docstring modified.
16784 (quail-select-current): Likewise.
16785 (quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
16786 infinite recursive call.
16787 (quail-help): Check quail-translation-docstring. Format of the
16788 output changed.
16789 (quail-help-insert-keymap-description): Adjusted for the above
16790 change.
16791
16792 2000-09-11 Gerd Moellmann <gerd@gnu.org>
16793
16794 * bytecomp.el (byte-compile-defvar): Only cons onto
16795 current-load-list in top-level forms. Else this leaks a cons cell
16796 every time a defun is called.
16797
16798 2000-09-11 Miles Bader <miles@lsi.nec.co.jp>
16799
16800 * diff-mode.el (diff-apply-hunk): Function basically rewritten.
16801 Now understands non-unified diffs. Some functionality moved into
16802 `diff-hunk-text' and `diff-find-text'. Add OTHER-FILE, DRY-RUN,
16803 POPUP, and NOERROR arguments. If DRY-RUN is true, don't actually
16804 modify anything. Only reposition point in the patched file if the
16805 patch succeeds. Only pop up another window if POPUP is true.
16806 Emit a message describing what happened if successful, and at what
16807 line-offset. Automatically detect reversed hunks and do something
16808 appropriate.
16809 (diff-hunk-text, diff-find-text): New functions.
16810 (diff-filter-lines): Function removed.
16811 (diff-test-hunk): New function.
16812 (diff-goto-source): Rewritten in terms of diff-apply-hunk.
16813
16814 2000-09-10 Dave Love <fx@gnu.org>
16815
16816 * textmodes/tildify.el: Minor doc/commentary fixes.
16817 (tildify) <defgroup>: Add :version.
16818
16819 * faces.el (face-x-resources): Make custom type more specific.
16820 (frame-background-mode): Use mapc.
16821 (region) <defcustom>: Add :version.
16822
16823 2000-09-08 Stefan Monnier <monnier@cs.yale.edu>
16824
16825 * vc-sccs.el (vc-sccs-register):
16826 * vc-rcs.el (vc-rcs-register):
16827 * vc-cvs.el (vc-cvs-register): Don't clear file's properties.
16828 * vc.el (vc-register): Clear file's properties.
16829
16830 2000-09-08 Gerd Moellmann <gerd@gnu.org>
16831
16832 * faces.el (face-spec-set): Only face-spec-reset-face when
16833 ATTRS is non-nil.
16834
16835 2000-09-08 Eli Zaretskii <eliz@is.elta.co.il>
16836
16837 * help.el (help-insert-xref-button): Fix a typo in doc string.
16838
16839 2000-09-07 Eli Zaretskii <eliz@is.elta.co.il>
16840
16841 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
16842 Fix doc strings of chinese-py-b5, chinese-py, and chinese-tonepy input
16843 methods.
16844
16845 * menu-bar.el (read-mail-item-name): New function.
16846 (menu-bar-tools-menu): Use it to compute and display the package
16847 used to read email.
16848 (menu-bar-tools-menu): Fix typo in GUD's help string.
16849
16850 2000-09-07 Dave Love <fx@gnu.org>
16851
16852 * diff-mode.el (diff-mouse-goto-source): New function.
16853
16854 * vc-sccs.el: Doc fixes.
16855 (vc-sccs-register-switches, vc-sccs-master-templates): Add :version.
16856
16857 * vc-rcs.el: Doc fixes.
16858 (vc-rcs-register-switches, vc-rcs-checkin-switches)
16859 (vc-rcs-checkout-switches, vc-rcs-header)
16860 (vc-rcs-master-templates): Add or change :version.
16861
16862 * vc-cvs.el: Doc fixes.
16863 (vc-cvs-register-switches, vc-cvs-header, vc-cvs-use-edit)
16864 (vc-cvs-stay-local): Add :version.
16865
16866 * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
16867
16868 2000-09-07 Kenichi Handa <handa@etl.go.jp>
16869
16870 * international/quail.el (quail-help): Fix previous change.
16871
16872 2000-09-07 Gerd Moellmann <gerd@gnu.org>
16873
16874 * faces.el (color-values): Doc fix.
16875
16876 * faces.el (frame-set-background-mode): Use frame-parameter
16877 instead of frame-parameters.
16878
16879 * frame.el (filtered-frame-list): Reduce consing.
16880 (frames-on-display-list): Call frame-parameter instead of
16881 frame-parameters.
16882
16883 2000-09-07 Kenichi Handa <handa@etl.go.jp>
16884
16885 * language/devan-util.el (devanagari-to-indian-region): In the
16886 loop, change the following char, not preceding char.
16887
16888 2000-09-07 Gerd Moellmann <gerd@gnu.org>
16889
16890 * menu-bar.el (menu-bar-update-buffers): Call frame-parameter
16891 instead of frame-parameters.
16892
16893 * faces.el (set-face-attribute): Simplify by calling
16894 internal-set-lisp-face-attribute with FRAME being 0.
16895
16896 * vc.el: Remove `Id' version control keyword.
16897
16898 2000-09-07 Kenichi Handa <handa@etl.go.jp>
16899
16900 * help.el (help-make-xrefs): Adjusted for the change of
16901 help-xref-mule-regexp.
16902 (help-insert-xref-button): New function.
16903
16904 * international/mule-cmds.el (help-xref-mule-regexp-template):
16905 Include the pattern for character set.
16906 (leim): New group.
16907
16908 * international/quail.el: Don't require face.
16909 (quail): New group.
16910 (quail-other-command): Dummy command to make quail-help work better.
16911 (quail-keyboard-layout-alist): Add Keyboard type "jp106".
16912 (quail-keyboard-layout-substitution): New variable.
16913 (quail-update-keyboard-layout): New function.
16914 (quail-keyboard-layout-type): New customizable variable.
16915 (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
16916 (quail-keyboard-translate): Pay attention to
16917 quail-keyboard-layout-substitution.
16918 (quail-insert-kbd-layout): New function.
16919 (quail-show-keyboard-layout): New function.
16920 (quail-get-translation): If the definition is a vector of length
16921 1, and the element is a string of length 1, return the character
16922 in that string.
16923 (quail-update-current-translations): Fix the case of
16924 relative-index out of range.
16925 (quail-build-decode-map, quail-insert-decode-map): New Functions.
16926 (quail-help): Show keyboard layout by quail-insert-kbd-layout.
16927 Show key sequences for all available characters.
16928 (quail-help-insert-keymap-description): Don't show such verbose
16929 key bindings as quail-self-insert-command.
16930
16931 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
16932 Format changed, and each element now have extra documentations.
16933 (tit-process-header): Delete invalid characters from TIT-PROMPT.
16934 Adjusted for the change of quail-cxterm-package-ext-info.
16935
16936 2000-09-06 Gerd Moellmann <gerd@gnu.org>
16937
16938 * vc-hooks.el (toplevel): Don't require `vc' during compilation;
16939 requiring it leads to a recursive loading of vc.el and vc-hooks.el
16940 during bootstrap.
16941
16942 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
16943
16944 * vc.el: (toplevel): Don't require `dired' at run-time.
16945 (vc-dired-resynch-file): Remove autoload cookie.
16946
16947 2000-09-05 Andre Spiegel <spiegel@gnu.org>
16948
16949 * vc.el: Made several backend functions optional.
16950 (vc-default-responsible-p): New function.
16951 (vc-merge): Use RET for first version to trigger merge-news, not
16952 prefix arg.
16953 (vc-annotate): Handle backends that do not support annotation.
16954 (vc-default-merge-news): Removed. The existence of a merge-news
16955 implementation is now checked on caller sites.
16956
16957 * vc-hooks.el (vc-default-mode-line-string): Removed CVS special
16958 case.
16959
16960 * vc-cvs.el (vc-cvs-mode-line-string): New function, handles the
16961 special case that has been removed from the default in vc-hooks.el.
16962
16963 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
16964
16965 * vc.el (vc-log-edit): Properly handle the case where FILE is nil.
16966
16967 2000-09-05 Andre Spiegel <spiegel@gnu.org>
16968
16969 * vc-hooks.el: Require vc during compilation.
16970 (vc-file-setprop): Use `vc-touched-properties' if bound by the new
16971 macro `with-vc-properties' in vc.el.
16972 (vc-file-getprop): Doc fix.
16973 (vc-after-save): Call `vc-dired-resynch-file' only if vc is loaded.
16974
16975 * vc.el: Require dired-aux during compilation.
16976 (vc-name-assoc-file): Moved to vc-sccs.el.
16977 (with-vc-properties): New macro.
16978 (vc-checkin, vc-checkout, vc-revert, vc-cancel-version,
16979 vc-finish-steal): Use it.
16980 (vc-cancel-version): Moved RCS-specific code to vc-rcs.el. The call
16981 to the backend-specific function is now supposed to do the checkout,
16982 too.
16983 (vc-log-edit): Handle FILE being nil and added a FIXME for log-edit.
16984
16985 * vc-cvs.el (vc-cvs-checkin, vc-cvs-checkout): Don't bother to
16986 set file properties; that gets done in the generic code now.
16987
16988 * vc-rcs.el (vc-rcs-uncheck): Renamed to `vc-rcs-cancel-version'.
16989 Changed parameter list, added code from vc.el that does the
16990 checkout, possibly with a double-take.
16991
16992 * vc-sccs.el (vc-sccs-name-assoc-file): Moved here from vc.el.
16993 (vc-sccs-add-triple, vc-sccs-rename-file, vc-sccs-lookup-triple): Use
16994 the above under the new name.
16995 (vc-sccs-uncheck): Renamed to `vc-sccs-cancel-version'. Changed
16996 parameter list, added checkout command.
16997 (vc-sccs-checkin, vc-sccs-checkout): Don't bother to set file
16998 properties; that gets done in the generic code now.
16999
17000 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
17001
17002 * vc.el: Docstring fixes (courtesy of checkdoc).
17003
17004 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
17005
17006 * vc.el (vc-checkout-writable-buffer-hook)
17007 (vc-checkout-writable-buffer): Remove.
17008 (vc-start-entry): Always call vc-log-edit, never vc-log-mode.
17009 (vc-log-mode): Make it into a clean derived major mode.
17010 (vc-log-edit): Mark buffer unmodified (as vc-log-mode did) and use
17011 vc-log-mode if log-edit is not available.
17012 (vc-dired-mode-map): Don't set-keymap-parent yet.
17013 (vc-dired-mode): Do set-keymap-parent here.
17014 (vc-dired-buffers-for-dir): Nop if dired is not loaded.
17015
17016 2000-09-05 Gerd Moellmann <gerd@gnu.org>
17017
17018 * faces.el (set-face-attribute, face-spec-reset-face)
17019 (face-spec-set): Avoid consing by removing calls to `apply'.
17020
17021 * frame.el (frame-parameter): Move to C code.
17022
17023 2000-09-05 Dave Love <fx@gnu.org>
17024
17025 * help.el (help-manyarg-func-alist): Add ml-prefix-argument-loop,
17026 insert-before-markers-and-inherit. Now checked systematically!
17027
17028 2000-09-05 Alex Schroeder <alex@gnu.org>
17029
17030 * sql.el (sql-postgres): Use sql-postgres-options.
17031 (sql-postgres-options): New variable.
17032
17033 2000-09-05 Alex Schroeder <alex@gnu.org>
17034
17035 * sql.el (sql-mode-menu): Work around missing variable mark-active
17036 in XEmacs.
17037 (sql-mode): Added call to easy-menu-add for XEmacs compatibility.
17038 (sql-interactive-mode): Added call to easy-menu-add for XEmacs
17039 compatibility.
17040
17041 2000-09-04 Gerd Moellmann <gerd@gnu.org>
17042
17043 * vc.el (vc-dired-resynch-file): Add autoload cookie.
17044
17045 * vc.el (toplevel): Require `dired' at run-time for dired-mode-map.
17046
17047 * Makefile.in (DONTCOMPILE): Fix typo in file name.
17048
17049 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17050
17051 * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we
17052 don't support anything else under SCCS yet.
17053
17054 * vc-hooks.el: Minor doc fixes.
17055
17056 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17057
17058 * vc.el (vc-next-action-on-file): Do not visit the file if it's
17059 not necessary. If verbose in state `needs-patch', do the same as
17060 under `up-to-date'. When NOT verbose and `needs-patch', check out
17061 latest version instead of `merge-news'.
17062 (vc-next-action-dired): Don't mess with default-directory here; it
17063 breaks other parts of dired. It is the job of the
17064 backend-specific functions to adjust it temporarily if they need it.
17065 (vc-next-action): Remove a special CVS case.
17066 (vc-clear-headers): New optional arg FILE.
17067 (vc-checkin, vc-checkout): Set properties vc-state and
17068 vc-checkout-time properly.
17069 (vc-finish-steal): Call steal-lock, not steal, which doesn't exist.
17070 (vc-print-log): Use new backend function `show-log-entry'.
17071 (vc-cancel-version): Do the checks in a different order. Added a
17072 FIXME concerning RCS-only code.
17073
17074 * vc-rcs.el (vc-rcs-show-log-entry): New function.
17075 (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties.
17076
17077 * vc-cvs.el (vc-cvs-show-log-entry): New function.
17078
17079 * vc-hooks.el (vc-default-mode-line-string): Show state
17080 `needs-patch' as a `-' too.
17081
17082 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17083
17084 * vc.el (vc-responsible-backend): New optional arg REGISTER.
17085 (vc-default-could-register): New function.
17086 (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions.
17087 (vc-resynch-buffer): Call vc-dired-resynch-file.
17088 (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use
17089 vc-resynch-buffer instead of vc-resynch-window.
17090 (vc-next-action-dired): Don't redisplay here, that gets done as a
17091 result of the individual file operations.
17092 (vc-retrieve-snapshot): Corrected prompt order.
17093
17094 * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file.
17095
17096 * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp
17097 as well.
17098 (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p. Handle
17099 hostname regexps. Updated all callers.
17100 (vc-cvs-responsible-p): Handle directories as well.
17101 (vc-cvs-could-register): New function.
17102 (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file
17103 properties up-to-date.
17104
17105 * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the
17106 user whether to create one.
17107
17108 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17109
17110 * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to
17111 check out a non-existing file.
17112
17113 * vc-cvs.el (vc-cvs-checkout): Do the right thing when the
17114 workfile does not exist.
17115
17116 * vc.el (vc-version-diff): Use `require' to check for existence of
17117 diff-mode.
17118
17119 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17120
17121 * vc-cvs.el (vc-cvs-registered): Use new function
17122 vc-cvs-parse-entry to do the actual work.
17123
17124 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17125
17126 * vc-hooks.el (vc-find-backend-function): If function doesn't
17127 exist, return nil instead of error.
17128 (vc-call-backend): Doc fix.
17129
17130 * vc.el (vc-do-command): Doc fix.
17131 (vc-finish-logentry): When checking in from vc-dired, choose the
17132 right backend for logentry check.
17133 (vc-dired-mode-map): Inherit from dired-mode-map.
17134 (vc-dired-mode): Local value of dired-move-to-filename-regexp
17135 simplified.
17136 (vc-dired-state-info): Removed, updated caller.
17137 (vc-default-dired-state-info): Use parentheses instead of hyphens.
17138 (vc-dired-hook): Use vc-BACKEND-dir-state, if available.
17139 (vc-dired-listing-switches): New variable.
17140 (vc-directory): Use it, instead of dired-listing-switches.
17141
17142 * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too.
17143 (vc-cvs-dir-state): New function.
17144 (vc-cvs-dir-state-heuristic): New function, subroutine of the above.
17145 (vc-cvs-parse-entry): New function, also to be used in
17146 vc-cvs-registered.
17147
17148 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17149
17150 * vc.el (vc-revert-buffer): Hide the frame for dedicated windows
17151 *or* single-window-frames.
17152
17153 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17154
17155 * vc.el (vc-update-changelog): Split into generic part and default
17156 implementation. Doc string adapted.
17157 (vc-default-update-changelog): New function. Call the `rcs2log'
17158 script in exec-directory, to fix a long-standing nuisance.
17159
17160 * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that
17161 simply signals an error.
17162
17163 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17164
17165 * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the
17166 control-flow more clear and to avoid running `cvs' twice.
17167
17168 * vc.el (vc-next-action-on-file): Doc fix.
17169 (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode.
17170 (vc-print-log): Eval `file' before constructing the continuation.
17171
17172 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17173
17174 * vc.el (vc-next-action-on-file): Corrected several messages.
17175 (vc-merge): Add prefix arg `merge-news'; handle it.
17176
17177 * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this
17178 is not reached. It is.
17179 (vc-cvs-merge): Set state to 'edited after merge.
17180 (vc-cvs-merge-news): Set workfile version to nil if not known.
17181 (vc-cvs-latest-on-branch-p): Recommented. Candidate for removal.
17182
17183 * vc-*.el (vc-*-checkout): Switch off coding systems for checkout
17184 via stdout. (Merge from main line.)
17185
17186 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17187
17188 * vc.el (vc-finish-logentry): Thinko in the "same comment"
17189 detection.
17190
17191 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17192
17193 * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them
17194 against kill-all-local-variables.
17195 (vc-log-edit): Don't save vc-parent-buffer any more.
17196 (vc-last-comment-match): Initialize to an empty string.
17197 (vc-post-command-functions): New hook.
17198 (vc-do-command): Run it.
17199 (vc-next-action-on-file): Remove unnecessary pop-to-buffer.
17200 (vc-finish-logentry): Only add the comment to the ring if it's
17201 different from the last comment entered.
17202 (vc-new-comment-index): New function.
17203 (vc-previous-comment): Use it. Make the minibuffer message
17204 slightly less terse.
17205 (vc-comment-search-reverse): Make it work forward as well. Don't
17206 set vc-comment-ring-index if no match is found. Use
17207 vc-new-comment-index.
17208 (vc-comment-search-forward): Use vc-comment-search-reverse.
17209 (vc-dired-mode-map): Don't inherit from dired-mode-map since
17210 define-derived-mode will do it for us. Bind `v' to a keymap that
17211 inherits from vc-prefix-map so that we can bind `vt' without
17212 binding C-x v t.
17213 (vc-retrieve-snapshot): Parenthesis typo.
17214
17215 * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0
17216 to 1. Make sure to switch to *vc* before looking for an error
17217 message. Use vc-parse-buffer.
17218
17219 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17220
17221 * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR
17222 and NAME.
17223 (vc-retrieve-snapshot): Split into two parts.
17224 (vc-default-retrieve-snapshot): New function.
17225
17226 * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME.
17227 (vc-cvs-retrieve-snapshot): New function (untested).
17228 (vc-cvs-stay-local): Default to t.
17229 (vc-cvs-remote-p): New function and property.
17230 (vc-cvs-state): Stay local only if the above is t.
17231 (vc-handle-cvs): Removed.
17232 (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be
17233 done via vc-handled-backends now.
17234 (vc-cvs-header): Escape Id.
17235
17236 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17237
17238 * vc.el (vc-do-command): Remove unused commands.
17239 (vc-version-diff): Make sure default-directory ends with a slash.
17240 Move the window commands into a vc-exec-after.
17241 (vc-print-log): Move more of the code into the `vc-exec-after'.
17242
17243 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17244
17245 * vc.el (vc-exec-after): Fix disassembly of previous sentinel.
17246 (vc-print-log): Search current revision from beginning of buffer.
17247 (vc-revert-buffer): Clear echo area after the diff is finished.
17248 (vc-prefix-map): Removed definition of "t" for terse display in vc
17249 dired.
17250 (vc-dired-mode-map): Inherit from dired-mode-map. Added
17251 definition of "vt" for terse display.
17252 (vc-dired-mode): Fix dired-move-to-filename-regexp.
17253
17254 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17255
17256 * vc.el (vc-exec-after): Avoid caddr.
17257
17258 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17259
17260 * vc.el (vc-exec-after): New function.
17261 (vc-do-command): Use it to add a termination message for async
17262 procs.
17263 (vc-checkout): Try to handle a missing-backend situation.
17264 (vc-version-diff): Use vc-exec-after to fix the behavior for diffs
17265 of a directory with a backend using async diffs.
17266 (vc-print-log): Use vc-exec-after and use log-view-goto-rev if
17267 present.
17268
17269 * vc-sccs.el (vc-sccs-state-heuristic): Use
17270 file-ownership-preserved-p.
17271
17272 * vc-rcs.el (vc-rcs-state-heuristic): Use
17273 file-ownership-preserved-p.
17274 (vc-rcs-checkout): Remove the error-handling for missing-rcs.
17275
17276 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17277
17278 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to
17279 vc-do-command.
17280
17281 * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert
17282 when there are no changes.
17283
17284 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17285
17286 * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p.
17287
17288 * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p.
17289
17290 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17291
17292 * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el.
17293
17294 * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move
17295 the `fset' outside of the defvar so that it works even if
17296 vc-prefix-map was already defined.
17297 (vc-setup-buffer): New function, split out of vc-do-command.
17298 (vc-do-command): Allow BUFFER to be t to mean `just use the
17299 current buffer without any fuss'.
17300 (vc-version-diff): Change the `diff' backend operation to just put
17301 the diff in the current buffer without erasing it. Always use
17302 *vc-diff* even for directory-diffs. Use vc-setup-buffer. Protect
17303 shrink-window-if-larger-than-buffer.
17304 (vc-print-log): Change the `print-log' backend operation to just
17305 put the log in the current buffer without erasing it. Protect
17306 shrink-window-if-larger-than-buffer.
17307 (vc-update-change-log): Fix setd typo.
17308
17309 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis.
17310 (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer.
17311
17312 * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer.
17313 (vc-rcs-diff): Insert in the current buffer and remove unused arg
17314 CMP.
17315
17316 * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use
17317 with-temp-file. Use the new BUFFER=t argument to vc-do-command.
17318 (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer.
17319
17320 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17321
17322 * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is
17323 not possible, use vc-BACKEND-workfile-unchanged-p.
17324 (vc-default-workfile-unchanged-p): New function. Delegates to a
17325 full vc-BACKEND-diff.
17326
17327 * vc-hooks.el (vc-simple-command): Removed.
17328
17329 * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command
17330 instead of vc-simple-command.
17331 (vc-rcs-fetch-master-state): Removed check for unlocked-changes to
17332 avoid doing a diff when opening a file.
17333 (vc-rcs-state): Added check for unlocked-changes.
17334 (vc-rcs-header): Escape Id.
17335 (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION.
17336 (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific
17337 version.
17338
17339 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten.
17340 (vc-sccs-diff): Remove optional arg CMP.
17341 (vc-sccs-state): Call vc-workfile-unchanged-p, not the
17342 SCCS-specific function.
17343
17344 * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of
17345 vc-simple-command.
17346
17347 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17348
17349 * vc.el (vc-editable-p): Renamed from vc-writable-p.
17350 (with-vc-file, vc-merge): Use vc-editable-p.
17351 (vc-do-command): Remove unused var vc-file and fix the
17352 doubly-defined `status' var. Add a user message when starting an
17353 async command.
17354 (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry)
17355 (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file):
17356 Use with-current-buffer.
17357 (vc-buffer-sync): Use unless.
17358 (vc-next-action-on-file): If the file is 'edited by read-only,
17359 make it read-write instead of trying to commit.
17360 (vc-version-diff, vc-update-change-log): Use `setq
17361 default-directory' rather than `cd'.
17362 (vc-log-edit): Don't forget to set default-directory in the
17363 buffer.
17364
17365 * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis.
17366 (vc-sccs-state-heuristic): Use file-writable-p instead of
17367 comparing userids.
17368 (vc-sccs-checkout): Use `unless'.
17369
17370 * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead
17371 of comparing userids.
17372 (vc-rcs-fetch-master-state): Handle the case where rcs is missing.
17373 Simplify the logic by eliminating unreachable code.
17374 (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and
17375 just do a recursive call if we need to retry.
17376 (vc-rcs-checkout): Handle the case where rcs is missing by making
17377 the buffer read-write if requested and re-signalling the error.
17378
17379 * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP.
17380
17381 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17382
17383 * vc-hooks.el (vc-handled-backends): Docstring change.
17384 (vc-ignore-vc-files): Mark obsolete.
17385 (vc-registered): Check vc-ignore-vc-files.
17386 (vc-find-file-hook, vc-file-not-found-hook): Don't check
17387 vc-ignore-vc-files.
17388
17389 * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs.
17390
17391 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17392
17393 * vc.el (vc-checkout): Don't do anything special for ange-ftp
17394 files since ange-ftp already has vc-registered return nil.
17395
17396 * vc-sccs.el (vc-sccs-state): Use with-temp-buffer.
17397 (vc-sccs-workfile-version): Use with-temp-buffer and new
17398 vc-parse-buffer and don't bother setting the property.
17399 (vc-sccs-add-triple): Use with-current-buffer and
17400 find-file-noselect.
17401 (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if.
17402
17403 * vc-rcs.el (vc-rcs-find-most-recent-rev): New function. The code
17404 derives from the old vc-parse-buffer but uses the revision number
17405 rather than the date (much easier to compare robustly).
17406 (vc-rcs-fetch-master-state): Use `with-temp-buffer'. Adapt to the
17407 new vc-parse-buffer (and vc-rcs-find-most-recent-rev). Find the
17408 locking-user more directly. Check strict locking and set
17409 checkout-model appropriately.
17410 (vc-rcs-parse-locks): Remove.
17411 (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the
17412 new vc-parse-buffer (and vc-rcs-find-most-recent-rev).
17413 (vc-rcs-system-release): Use with-current-buffer and
17414 vc-parse-buffer.
17415 (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer.
17416
17417 * vc-hooks.el (vc-parse-buffer): Lobotomize the monster.
17418 (vc-simple-command): Docstring fix.
17419 (vc-registered): Align the way the file-handler is called with the
17420 way the function itself works.
17421 (vc-file-owner): Remove.
17422
17423 * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer. Reorder
17424 extraction of fields and call to file-attributes because of a
17425 temporary bug in rcp.el.
17426 (vc-cvs-fetch-status): Use with-current-buffer.
17427
17428 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17429
17430 * vc.el (vc-do-command): Use file-relative-name.
17431 (vc-responsible-backend): Use vc-backend if possible.
17432 (vc-create-snapshot): Improve the `interactive' spec. Add support
17433 for branches and dispatch to backend-specific `create-snapshot'.
17434 (vc-default-create-snapshot): New function, containing the bulk of
17435 the old vc-create-snapshot.
17436 (vc-retrieve-snapshot): Improve the interactive spec.
17437
17438 * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el.
17439 (vc-backend-hook-functions): Remove.
17440 (vc-find-backend-function): Don't try to load vc-X-hooks anymore.
17441 (vc-backend): Reintroduce the test for `file = nil' now that I
17442 know why it was there (and added a comment to better remember).
17443
17444 * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in
17445 code from vc-sccs-hooks.el.
17446 (vc-sccs-release, vc-sccs-system-release): Remove. Don't require
17447 'vc anymore.
17448 (vc-sccs-responsible-p): Use expand-file-name instead of concat
17449 and file-directory-p instead of file-exists-p.
17450 (vc-sccs-check-headers): Simplify the regexp.
17451
17452 * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code
17453 from vc-rcs-hooks.el. Don't require 'vc anymore.
17454 (vc-rcs-responsible-p): Use expand-file-name instead of concat and
17455 file-directory-p instead of file-exists-p.
17456
17457 * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code
17458 from vc-cvs-hooks.el.
17459 (proto vc-cvs-registered): Require 'vc-cvs instead of
17460 'vc-cvs-hooks. Don't require 'vc anymore.
17461 (vc-cvs-responsible-p): Use expand-file-name instead of concat and
17462 file-directory-p instead of file-exists-p.
17463 (vc-cvs-create-snapshot): New function, replacing
17464 vc-cvs-assign-name.
17465 (vc-cvs-assign-name): Remove.
17466
17467 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17468
17469 * vc-cvs.el (vc-cvs-header): New var.
17470
17471 * vc-rcs.el (vc-rcs-exists): Remove.
17472 (vc-rcs-header): New var.
17473
17474 * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use
17475 `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'.
17476 (vc-sccs-header): New var.
17477
17478 * vc.el (vc-do-command): Get rid of the `last' argument.
17479 (vc-header-alist): Remove, replaced by vc-X-header.
17480 (vc-insert-headers): Use vc-X-header instead of vc-header-alist.
17481 (vc-dired-hook): Use expand-file-name instead of concat.
17482 (vc-directory): Use file-name-as-directory.
17483 (vc-snapshot-precondition, vc-create-snapshot)
17484 (vc-retrieve-snapshot): Allow the command to operate on any
17485 directory.
17486
17487 * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either
17488 just removing the 'WORKFILE argument or by removing the 'MASTER
17489 argument and replacing `file' with (vc-name file).
17490
17491 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17492
17493 * vc.el: Update Copyright and add a crude list of backend funs.
17494 (vc-writable-p): New function.
17495 (with-vc-file): Use vc-writable-p.
17496 (vc-next-action-on-file): Update call to vc-steal-lock and cleanup.
17497 (vc-register): Avoid vc-name.
17498 (vc-locking-user): Remove.
17499 (vc-steal-lock): Make the `owner' arg non-optional.
17500 (vc-merge): Use vc-writable-p instead of vc-locking-user and
17501 vc-checkout-model.
17502 (vc-default-dired-state-info): Use vc-state instead of
17503 vc-locking-user and return special strings for special states.
17504 (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user
17505 and get rid of one of the special CVS cases.
17506 (vc-cancel-version): prettify error message with \\[...].
17507 (vc-rename-master): New function.
17508 (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn
17509 use vc-rename-master) instead of vc-BACKEND-record-rename. Make
17510 the CVS special case generic.
17511 (vc-default-record-rename): Remove.
17512 (vc-file-tree-walk-internal): Only call FUNC for files that are
17513 under control of some VC backend and replace `concat' with
17514 expand-file-name.
17515 (vc-file-tree-walk): Update docstring.
17516 (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot)
17517 (vc-retrieve-snapshot): Update call to vc-file-tree-walk.
17518
17519 * vc-sccs.el (vc-sccs-rename-file): Renamed from
17520 vc-sccs-record-rename. Use `find-file-noselect' rather than
17521 `find-file' and call `vc-rename-master' to do the actual move.
17522 (vc-sccs-diff): Remove unused `backend' variable.
17523
17524 * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version
17525 to delay loading of vc-sccs until it is really used.
17526 (vc-sccs-master-templates): Preload.
17527 (vc-sccs-state): Update call to vc-sccs-parse-locks.
17528 (vc-sccs-project-dir): Remove (merged into
17529 vc-sccs-search-project-dir).
17530 (vc-sccs-search-project-dir): Rewrite using file name handling ops
17531 rather than `concat', make sure it is preloaded and don't bother
17532 to check that the file actually exists.
17533 (vc-sccs-parse-locks): Remove unused `file' argument, remove
17534 `locks' argument (use buffer's content instead) and eliminate n^2
17535 behavior.
17536
17537 * vc-rcs.el: Update Copyright.
17538 (vc-rcs-rename-file): New function.
17539 (vc-rcs-diff): Remove unused `backend' variable.
17540
17541 * vc-hooks.el: Update Copyright.
17542 (vc-backend): Don't accept a nil argument any more.
17543 (vc-up-to-date-p): Turn into a defsubst.
17544 (vc-possible-master): New function.
17545 (vc-check-master-templates): Use `vc-possible-master' and allow
17546 funs in vc-X-master-templates to return a non-existent file.
17547
17548 * vc-cvs.el: Update Copyright.
17549 (vc-cvs-diff): Remove unused `backend' variable.
17550 (vc-cvs-checkout): Only toggle read-only if the buffer is setup right.
17551
17552 * vc-cvs-hooks.el: Preload a proto vc-cvs-registered.
17553
17554 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17555
17556 * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version
17557 since it can be called from vc-rcs.el.
17558 (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior.
17559
17560 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17561
17562 * vc.el (vc-version-diff): Expand file name read from the
17563 minibuffer. Handle the case when a previous version number can't
17564 be guessed. Give suitable messages when there were no differences
17565 found.
17566 (vc-clear-headers): Call backend-specific implementation, if one
17567 exists.
17568 (vc-cancel-version): Made error checks generic. When done, clear
17569 headers generically, too.
17570
17571 * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here
17572 from vc-clear-headers in vc.el.
17573
17574 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer
17575 correctly.
17576 (vc-rcs-latest-on-branch-p): Made second argument VERSION
17577 optional. Handle the case when it's not there.
17578
17579 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17580
17581 * vc.el (vc-locking-user): Moved from vc-hooks.el.
17582
17583 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17584
17585 * vc-hooks.el (vc-loadup): Remove.
17586 (vc-find-backend-function): Use `require'. Also, handle the case
17587 where vc-BACKEND-hooks.el doesn't exist.
17588 (vc-call-backend): Cleanup.
17589
17590 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17591
17592 * vc-rcs-hooks.el (vc-rcs-templates-grabbed,
17593 vc-rcs-grab-templates)
17594 (vc-rcs-registered): Remove. The default function works as well.
17595 * vc-sccs-hooks.el (vc-sccs-templates-grabbed,
17596 vc-sccs-grab-templates)
17597 (vc-sccs-registered): Remove. The default function works as well.
17598
17599 * vc.el (vc-version-diff): Left out a vc- in call to
17600 vc-call-backend.
17601 (vc-default-dired-state-info, vc-default-record-rename)
17602 (vc-default-merge-news): Update for the new backend argument.
17603
17604 * vc-hooks.el (vc-find-backend-function): Return a cons cell if
17605 using the default function.
17606 (vc-call-backend): If calling the default function, pass it the
17607 backend as first argument. Update the docstring accordingly.
17608 (vc-default-state-heuristic, vc-default-mode-line-string): Update
17609 for the new backend argument.
17610 (vc-make-backend-sym): Renamed from vc-make-backend-function.
17611 (vc-find-backend-function): Use the new name.
17612 (vc-default-registered): New function.
17613
17614 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17615
17616 * vc.el (vc-merge): Use vc-find-backend-function.
17617
17618 * vc-hooks.el (vc-backend-functions): Remove.
17619 (vc-loadup): Don't setup 'vc-functions.
17620 (vc-find-backend-function): New function.
17621 (vc-call-backend): Use above fun and populate 'vc-functions
17622 lazily.
17623 (vc-backend-defines): Remove.
17624
17625 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17626
17627 * vc.el (vc-register): Put a FIXME note for a newly found bug.
17628 Call vc-call-backend without the leading vc-.
17629 (vc-responsible-backend, vc-finish-logentry, vc-annotate)
17630 (vc-check-headers): Call vc-call-backend without the leading vc-.
17631 (vc-annotate-time-span): Replace confusing use of `cond' with `or'.
17632 (vc-annotate-display): Replace confusing use of `cond' with `or'.
17633 Call vc-call-backend without the leading vc-.
17634
17635 * vc-cvs.el (tail): Provide vc-cvs.
17636 * vc-sccs.el (tail): Provide vc-sccs.
17637 * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check.
17638
17639 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions)
17640 (vc-make-backend-function, vc-call): Pass names without leading
17641 `vc-' to vc-call-backend so we can blindly prefix them with vc-BACKEND.
17642 (vc-loadup): Don't load vc-X-hooks if vc-X is requested.
17643 (vc-call-backend): Always try to load vc-X-hooks.
17644 (vc-registered): Remove vc- in call to vc-call-backend.
17645
17646 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17647
17648 * vc.el (vc-process-filter): New function.
17649 (vc-do-command): Setup `vc-process-filter' for the async process.
17650 (vc-maybe-resolve-conflicts): New function to reduce
17651 code-duplication. Additionally, it puts the buffer in
17652 `smerge-mode' if applicable.
17653 (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after
17654 calling `merge-news'.
17655 (vc-merge): Use `vc-maybe-resolve-conflicts' after calling `merge'.
17656 (vc-log-edit): New function. Replacement for `vc-log-mode' by
17657 interfacing to log-edit.el.
17658 (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if
17659 log-edit is available.
17660 (vc-resolve-conflicts): Delegate to `smerge-ediff' if available.
17661
17662 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17663
17664 * vc.el (vc-register): Remove `vc-buffer-backend' setup.
17665 (vc-log-mode-map): New name for vc-log-entry-mode and merge the
17666 defvar and the initialization.
17667 (vc-log-mode): Minor docstring fix and use vc-log-mode-map.
17668
17669 * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove.
17670 (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling.
17671
17672 * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a FIXME.
17673
17674 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17675
17676 * vc.el (vc-file-clear-masterprops): Removed.
17677 (vc-checkin, vc-revert-buffer): Removed calls to the above.
17678 (vc-version-diff): Use buffer-size without argument.
17679 (vc-register): Heed vc-initial-comment.
17680
17681 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for
17682 default branch.
17683
17684 * vc-rcs.el (vc-rcs-register): Parse command output to find master
17685 file name and workfile version.
17686 (vc-rcs-checkout): Removed call to vc-file-clear-masterprops.
17687
17688 * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to
17689 vc-file-clear-masterprops.
17690
17691 * vc-sccs.el (vc-sccs-checkout): Removed call to
17692 vc-file-clear-masterprops. If writable, set vc-state to 'edited
17693 rather than user login name.
17694
17695
17696 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17697
17698 * vc.el (vc-workfile-unchanged-p): Remove unused argument
17699 `want-differences-if-changed' and simplify.
17700 (vc-next-action-on-file) [needs-merge]: Resynch the buffer.
17701 (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status
17702 output (which is invalid for async vc-diff) to decide whether to
17703 do the revert silently or not.
17704
17705 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17706
17707 * vc-hooks.el (vc-loadup): Load files quietly.
17708 (vc-call-backend): Oops, brain fart.
17709
17710 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17711
17712 * vc-cvs.el (vc-cvs-state): Typo.
17713 (vc-cvs-merge-news): Return the status code rather than the error msg.
17714
17715 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17716
17717 * vc.el (with-vc-file, vc-next-action, vc-version-diff)
17718 (vc-dired-mark-locked): Replaced usage of vc-locking-user with
17719 vc-state or vc-up-to-date-p.
17720 (vc-merge): Use vc-backend-defines to check whether merging is
17721 possible. Set state to 'edited after successful merge.
17722
17723 * vc-hooks.el (vc-locking-user): If locked by the calling user,
17724 return that name. Redocumented.
17725
17726 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17727
17728 * vc.el (vc-recompute-state, vc-next-action-on-file): Update to
17729 new `vc-state' semantics.
17730 (vc-finish-steal): Set 'vc-state to 'edited rather than setting
17731 'vc-locking-user to the current user.
17732 (vc-merge): Inline vc-backend-merge. Comment out code that I
17733 don't understand and hence can't adapt to the new `vc-state' and
17734 `vc-locking-user' semantics.
17735 (vc-backend-merge): Remove.
17736
17737 * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state
17738 rather than 'vc-locking-user.
17739
17740 * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'.
17741
17742 * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit.
17743 (vc-state): Don't use 'reserved any more. Just use the same
17744 convention as the one used for vc-<backend>-state where the
17745 locking user (as a string) is returned.
17746 (vc-locking-user): Update, based on the above convention. The
17747 'vc-locking-user property has disappeared.
17748 (vc-mode-line, vc-default-mode-line-string): Adapt to new `vc-state'.
17749
17750 * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state
17751 with a heuristic one.
17752 (vc-cvs-merge-news): Just use 'edited for the case with conflicts.
17753 (vc-cvs-checkin): Do a trivial parse to set the state in case of
17754 error. That allows us to get to 'needs-merge even in the
17755 stay-local case. There's still no way to detect 'needs-patch in
17756 such a setup (or to force an update for that matter).
17757 (vc-cvs-logentry-check): Remove, the default works as well.
17758
17759 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17760
17761 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs asynchronously.
17762
17763 * vc.el (vc-do-command): kill-all-local-variables, to reset any
17764 major-mode in which the buffer might have been put earlier. Use
17765 `remove' and `when'. Allow `okstatus' to be `async' and use
17766 `start-process' in this case.
17767 (vc-version-diff): Handle the case where the diff looks empty
17768 because of the use of an async process.
17769
17770 2000-09-04 Andre Spiegel <spiegel@gnu.org>
17771
17772 * vc.el (vc-next-action-on-file): Removed optional parameter
17773 `simple'. Recompute state unconditionally.
17774 (vc-default-toggle-read-only): Removed.
17775
17776 * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only.
17777 (vc-toggle-read-only): Undid prev change.
17778
17779 * vc-cvs.el (vc-cvs-stay-local): Renamed from
17780 vc-cvs-simple-toggle. Redocumented.
17781 (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic.
17782 (vc-cvs-toggle-read-only): Removed.
17783
17784 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17785
17786 * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): Remove.
17787 (vc-prefix-map): Move from vc-hooks.el and make autoloaded.
17788 (vc-release-greater-or-equal-p): Move to vc-rcs.el.
17789 (vc-file-clear-masterprops): Braindead "fix". It was a nop and
17790 still is. So maybe it should be removed.
17791 (vc-head-version, vc-find-binary): Remove.
17792 (vc-recompute-state): Move from vc-hooks.el.
17793 (vc-next-action-on-file): Add a `simple' argument to allow
17794 avoiding the `recompute' step (use for vc-cvs-simple-toggle).
17795 (vc-default-toggle-read-only, vc-default-record-rename): New funs.
17796 (vc-next-action, vc-dired-hook): Use vc-state instead of vc-cvs-status.
17797 (vc-dired-mode-map): Properly defvar it.
17798 (vc-print-log): Call log-view-mode if available.
17799 (small-temporary-file-directory): defvar instead of use boundp.
17800 (vc-merge-news): Moved to vc-cvs.el.
17801 (vc-default-merge-news): New function.
17802
17803 * vc-sccs.el: Require 'vc and 'vc-sccs-hooks.
17804 (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks.
17805 (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the
17806 unknown `vc-latest-version' function. It should probably refer to
17807 vc-workfile-version or somesuch, but it's very unclear to me and I
17808 don't have SCCS to test things.
17809
17810 * vc-sccs-hooks.el: Provide 'vc-sccs-hooks.
17811 (vc-sccs-state-heuristic): Fix typo.
17812 (vc-sccs-workfile-unchanged-p): Add missing argument.
17813
17814 * vc-rcs.el: Require vc and vc-rcs-hooks.
17815 (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks.
17816 (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p).
17817 (vc-release-greater-or-equal-p): Move from vc.
17818 (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part,
17819 vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates.
17820 (vc-rcs-checkout): Add a missing `new-version' argument in the
17821 call to vc-rcs-latest-on-branch-p. Hopefully that was the right one.
17822
17823 * vc-rcs-hooks.el: Provide 'vc-rcs-hooks.
17824 (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el.
17825 (vc-rcs-latest-on-branch-p): Use the `version' argument rather
17826 than the apparently unbound `workfile-version'.
17827
17828 * vc-hooks.el (vc-master-templates): Def the obsolete var.
17829 (vc-file-prop-obarray): Use `make-vector'.
17830 (vc-backend-functions): Add new hookable functions
17831 vc-toggle-read-only, vc-record-rename and vc-merge-news.
17832 (vc-loadup): If neither backend nor default functions exist, use
17833 the backend function rather than nil.
17834 (vc-call-backend): If the function if not bound yet, try to load
17835 the non-hook file to see if it provides it.
17836 (vc-call): New macro plus use it wherever possible.
17837 (vc-backend-subdirectory-name): Use neither `vc-default-back-end'
17838 nor `vc-find-binary' since it's only called from
17839 vc-mistrust-permission which is only used once the backend is known.
17840 (vc-checkout-model): Fix parenthesis.
17841 (vc-recompute-state, vc-prefix-map): Move to vc.el.
17842
17843 * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler warnings).
17844 (vc-cvs-release, vc-cvs-system-release): Remove.
17845 (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables.
17846 (vc-cvs-dired-state-info): Use `cvs-state' and slightly different
17847 status symbols.
17848 (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el.
17849 (vc-cvs-toggle-read-only): First cut at a function to allow a
17850 cvs-status-free vc-toggle-read-only.
17851 (vc-cvs-merge-news): Move from cvs-merge-news in vc.el.
17852 (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of
17853 vc-cvs-status. Also set vc-state rather than vc-locking-user.
17854 (vc-cvs-checkout): Modify access rights directly if the user
17855 requested not to use `cvs edit'. And refresh the mode line.
17856
17857 * vc-cvs-hooks.el: Provide 'vc-cvs-hooks.
17858 (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el.
17859
17860 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
17861
17862 * vc-cvs.el (vc-cvs-checkout): Docstring fix. Added a `(if
17863 workfile' that got lost when the code was extracted from vc.el.
17864 And merged the tail with the rest of the code (not possible in the
17865 old vc.el where the tail was shared among all backends). And
17866 explicitly set the state to 'edited if `writable' is set.
17867
17868 * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name.
17869 (vc-cvs-state): Be careful to return the value from
17870 vc-cvs-parse-state.
17871 (vc-cvs-parse-status): Use expand-file-name. Don't set 'vc-state
17872 property but return it instead. Also be careful to handle a nil
17873 or "" `rev' when workfile is non-nil (it was handled properly when
17874 workfile was nil).
17875
17876 * vc.el: Removed those pesky unnecessary `(function' quotes.
17877 (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize
17878 directly in the defvar.
17879 (vc-do-command): Bind inhibit-read-only so as to properly handle
17880 the case where the destination buffer has been made read-only.
17881 (vc-diff): Delegate to vc-version-diff in all cases.
17882 (vc-version-diff): Setup the *vc-diff* buffer as was done in vc-diff.
17883 (vc-annotate-mode-variables): Removed (code moved partly to
17884 defvars and partly to vc-annotate-add-menu).
17885 (vc-annotate-mode): Turned into a derived-mode.
17886 (vc-annotate-add-menu): Moved in code in
17887 vc-annotate-mode-variables.
17888 (vc-update-change-log): Use make-temp-file if available.
17889
17890 2000-09-04 Martin Lorentzson <martinl@delysid.gnu.org>
17891
17892 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to
17893 `vc-checkout-model' updated to `vc-cvs-update-model'.
17894
17895 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
17896
17897 * vc.el (vc-next-action-on-file): Added handling of state
17898 `unlocked-changes'.
17899 (vc-checkout-carefully): Is now practically obsolete, unless the
17900 above is too slow to be enabled unconditionally.
17901 (vc-update-change-log): Fixed typo.
17902
17903 * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'.
17904
17905 * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten.
17906 Now handles state `unlocked-changes'.
17907 (vc-sccs-workfile-unchanged-p): New function, to support the above.
17908
17909 * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'.
17910
17911 * vc-rcs-hooks.el (vc-rcs-state): Fixed typo.
17912 (vc-rcs-fetch-master-state): Bug fixes. Recognize state
17913 `unlocked-changes'.
17914 (vc-rcs-workfile-unchanged-p): Renamed from
17915 `vc-rcs-workfile-unchanged'. This is not a real backend-specific
17916 function yet, but supposed to become one soon.
17917
17918 * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to
17919 `vc-steal-lock'.
17920 (vc-call-backend): Changed error message.
17921 (vc-state): Added description of state `unlocked-changes'.
17922
17923 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
17924
17925 * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to
17926 always return t in CVS-controlled directories.
17927
17928 * vc.el (vc-responsible-backend): New function.
17929 (vc-register): Largely rewritten.
17930 (vc-admin): Removed (implementation moved into vc-register).
17931 (vc-checkin): Redocumented.
17932 (vc-finish-logentry): If no backend defined yet (because we are in
17933 the process of registering), use the responsible backend.
17934
17935 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
17936 Updated function lists.
17937 (vc-call-backend): Fixed typo.
17938
17939 * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p):
17940 New functions.
17941 (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'.
17942 Removed query option. Redocumented.
17943
17944 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
17945
17946 * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'.
17947
17948 * vc.el: Updated callers of `vc-checkout-required' to use
17949 `vc-checkout-model'.
17950
17951 2000-09-04 Martin Lorentzson <martinl@gnu.org>
17952
17953 * vc-rcs.el (vc-rcs-backend-release-p): function added. other
17954 stuff updated to reference this function instead of the old
17955 `vc-backend-release-p'.
17956
17957 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
17958
17959 * vc-sccs-hooks.el (vc-uses-locking): Renamed to
17960 vc-checkout-model. Return appropriate values. Updated callers.
17961
17962 2000-09-04 Martin Lorentzson <martinl@gnu.org>
17963
17964 * vc.el (vc-backend-release, vc-backend-release-p): Moved to vc-rcs.el.
17965 (vc-backend-revert): Function moved into `vc-revert';
17966 `vc-next-action' must be updated to accomodate this change.
17967 (vc-backend-steal): Function moved into `vc-finish-steal'.
17968 (vc-backend-logentry-check): Function moved into
17969 `vc-finish-logentry'.
17970 (vc-backend-printlog): Function moved into `vc-print-log'.
17971 (vc-backend-uncheck): Function moved into `vc-cancel-version'.
17972 (vc-backend-assign-name): Function moved into
17973 `vc-create-snapshot'.
17974
17975 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
17976
17977 * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking):
17978 Rename to vc-checkout-model. Return appropriate values.
17979 Update callers.
17980
17981 * vc-hooks.el (vc-backend-hook-functions): Rename vc-uses-locking
17982 to vc-checkout-model.
17983 (vc-checkout-required): Rename to vc-checkout-model.
17984 Re-implement and re-comment.
17985 (vc-after-save): Use vc-checkout-model.
17986
17987 2000-09-04 Martin Lorentzson <martinl@gnu.org>
17988
17989 * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff):
17990 Update to use the vc-BACKEND-diff functions instead.
17991 `vc-diff' is now working.
17992
17993 * vc-rcs.el (vc-rcs-logentry-check): New function.
17994
17995 * vc-cvs.el (vc-cvs-logentry-check): New function.
17996
17997 * vc-sccs.el (vc-sccs-diff): Function changed name from
17998 `vc-backend-diff'. This makes `vc-diff' work.
17999
18000 * vc-hooks.el (vc-backend-functions): Add `vc-diff' to the list
18001 of functions possibly implemented in a vc-BACKEND library.
18002 (vc-checkout-required): Fix bug that caused an error to be
18003 signaled during `vc-after-save'.
18004
18005 * vc.el: Fix typo.
18006 This checkin is made with our new VC code base for the very first time.
18007 A simple `(vc-checkin (buffer-file-name))' was used to perform it.
18008
18009 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to
18010 `vc-checkout-required' updated to `vc-cvs-uses-locking'.
18011
18012 * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required'
18013 updated to `vc-uses-locking'.
18014 (vc-checkout-required): Call to backend function.
18015 `vc-checkout-required' updated to `vc-uses-locking' instead.
18016
18017 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to
18018 `vc-checkout-required' updated to `vc-rcs-uses-locking'.
18019
18020 * vc.el (vc-checkin): Merge with `vc-backend-checkin' and update
18021 to match the split into various backends.
18022 (vc-backend-checkin): Remove. Merge with `vc-checkin'.
18023 (vc-retrieve-snapshot): Bug fix.
18024
18025 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18026
18027 * vc-sccs.el (vc-sccs-release): Doc fix.
18028
18029 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18030
18031 * vc.el (vc-next-action-on-file): Bug found and fixed.
18032 (vc-checkout, vc-version-other-window, vc-retrieve-snapshot)
18033 (vc-cancel-version): Handle of vc-BACKEND-checkout updated.
18034
18035 * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version)
18036 (vc-rcs-checkout): Name space cleaned up. No more revision number
18037 crunching function names that are not prefixed with vc-rcs.
18038 (vc-rcs-checkout-model): Function added. References to
18039 `vc-checkout-model' replaced.
18040
18041 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18042
18043 * vc.el (vc-next-action-on-file): Rewritten for the new state model.
18044 (vc-backend-merge-news): Renamed to `vc-merge-news'. (Specific parts
18045 still need to be split, and implemented for RCS).
18046
18047 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18048
18049 * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed.
18050
18051 * vc-sccs.el (vc-sccs-admin): Added the query-only option as
18052 required by the vc.el file.
18053
18054 * vc-rcs.el (vc-rcs-admin): Added the query-only option as
18055 required by the vc.el file.
18056 (vc-rcs-exists): Function added.
18057
18058 * vc-cvs.el (vc-cvs-admin): Added the query-only option as
18059 required by the vc.el file.
18060
18061 * vc.el (vc-admin): Updated to handle selection of appropriate
18062 backend. Current implementation is crufty and need re-thinking.
18063
18064 * vc-hooks.el (vc-parse-buffer): Bug found and fixed.
18065
18066 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18067
18068 * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle
18069 beginning of annotate buffers correctly.
18070
18071 * vc.el (vc-annotate-get-backend, vc-annotate-display-default)
18072 (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate
18073 functionality updated quite a lot to support multiple backends.
18074 Variables `vc-annotate-mode', `vc-annotate-buffers',
18075 `vc-annotate-backend' added.
18076
18077 * vc-hooks.el (vc-backend-functions): `vc-annotate-command',
18078 `vc-annotate-difference' added to supported backend functions.
18079
18080 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18081
18082 * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout):
18083 Use with-temp-file instead of /bin/sh. Merged from mainline
18084
18085 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18086
18087 * vc-sccs-hooks.el (vc-sccs-registered): Updated.
18088
18089 * vc-rcs-hooks.el (vc-rcs-registered): Updated.
18090
18091 * vc-cvs-hooks.el (vc-cvs-registered): Updated.
18092
18093 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18094
18095 * vc-hooks.el: vc-state-heuristic added to
18096 vc-backend-hook-functions.
18097
18098 * vc-sccs-hooks.el (vc-sccs-registered): Bug fix.
18099
18100 * vc-rcs-hooks.el (vc-rcs-registered): Bug fix.
18101
18102 * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Rename
18103 `vc-uses-locking' to `vc-checkout-required'. Rename the `locked'
18104 state to `reserved'.
18105
18106 * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to
18107 `vc-checkout-required'. Rename the `locked' state to `reserved'.
18108
18109 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18110
18111 * vc-rcs-hooks.el: Implement new state model. Hardly anything
18112 untouched.
18113
18114 * vc-rcs.el (vc-rcs-latest-on-branch-p): Move to vc-rcs-hooks.el.
18115
18116 * vc.el (vc-update-change-log): Use small-temporary-file-directory,
18117 if defined. (Merged from main line, slightly adapted.)
18118
18119 * vc-cvs.el (vc-cvs-annotate-difference): Handle possible
18120 millenium problem (merged from mainline).
18121
18122 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18123
18124 * vc-cvs.el: Split the annotate feature into a BACKEND-specific
18125 part and moved the non-BACKEND stuff to vc.el.
18126
18127 * vc.el: Split the annotate feature into a BACKEND specific part
18128 and moved it from the vc-cvs.el file to this one.
18129
18130 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18131
18132 * vc-hooks.el: Implement new state model.
18133 (vc-state, vc-state-heuristic, vc-default-state-heuristic): New funs.
18134 (vc-locking-user): Simplify. Now only needed if the file is
18135 locked by somebody else.
18136 (vc-lock-from-permissions): Remove. Functionality is in
18137 vc-sccs-hooks.el and vc-rcs-hooks.el now.
18138 (vc-mode-line-string): New name for former vc-status. Adapted.
18139 (vc-mode-line): Adapt to use the above. Remove optional parameter.
18140
18141 * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New funs.
18142 Various simplifications and adaptations all over the place.
18143
18144 * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New funs.
18145 Simplify and adapt the rest.
18146
18147 * vc.el (vc-resynch-window): Add TODO comment: check for
18148 interaction with view mode according to recent RCS change.
18149 (vc-backend-merge-news): Merge "CMUP" patch from mainline.
18150
18151 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18152
18153 * vc.el: Convert the remaining function comments to docstrings.
18154
18155 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18156
18157 * vc.el (vc-backend-release, vc-release-greater-or-equal)
18158 (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part)
18159 (vc-minor-part, vc-previous-version): Functions that operate and
18160 compare revision numbers got proper documentation. Comments added
18161 about their possible removal.
18162
18163 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18164
18165 * vc.el (vc-latest-on-branch-p): Function removed and replaced in
18166 the vc-backend.el files.
18167
18168 * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added.
18169
18170 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p)
18171 (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part)
18172 (vc-rcs-previous-version): Functions added.
18173
18174 * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added.
18175
18176 * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed.
18177
18178 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18179
18180 * vc-hooks.el (vc-master-templates): Is really obsolete.
18181 Comment out the definition for now. What is the right procedure
18182 to get rid of it?
18183 (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely
18184 rewritten.
18185 (vc-default-registered): Remove.
18186 (vc-check-master-templates): New function; does mostly what the
18187 above did before.
18188 (vc-locking-user): Don't rely on the backend to set the property.
18189
18190 * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values.
18191 Rewrite documentation.
18192 (vc-rcs-templates-grabbed): New variable.
18193 (vc-rcs-grab-templates): New function.
18194 (vc-rcs-registered): Rewrite to use above mechanism.
18195
18196 * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values.
18197 Rewrite documentation.
18198 (vc-sccs-templates-grabbed): New variable.
18199 (vc-sccs-grab-templates): New function.
18200 (vc-sccs-registered): Rewrite to use above mechanism.
18201 (vc-sccs-search-project-dir): Rename from vc-search-sccs-project-dir.
18202 Don't throw the result, simply return it.
18203
18204 * vc-cvs-hooks.el (vc-cvs-master-templates): Remove.
18205 (vc-cvs-find-master): Remove. Code is now in vc-cvs-registered.
18206 (vc-cvs-registered): Does the check itself now. Simplify.
18207
18208 * vc-cvs.el (vc-cvs-revert): Merge and adapt "unedit" patch
18209 from main line.
18210
18211 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18212
18213 * vc-cvs.el (vc-cvs-diff): New function.
18214
18215 * vc-sccs.el (vc-sccs-diff): New function.
18216
18217 * vc-rcs.el (vc-rcs-diff): New function.
18218 (vc-rcs-checkout): Bug (typo) found and fixed.
18219 (vc-rcs-register-switches): New variable.
18220
18221 * vc.el (vc-backend-diff): Function removed and placed in the
18222 backend files.
18223
18224 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18225
18226 * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added.
18227
18228 * vc.el (vc-backend-checkout): Function removed and replaced in
18229 the vc-backend.el files.
18230
18231 * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'.
18232
18233 * vc.el (vc-backend-admin): Removed and replaced in the
18234 vc-backend.el files.
18235
18236 * vc.el (Martin): Removed all the annotate functionality since it
18237 is CVS backend specific.
18238
18239 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18240
18241 * spec.txt: Added specification of vc-state.
18242
18243 * vc-sccs-hooks.el (vc-sccs-master-properties):
18244 Remove handling of vc-latest-version and
18245 vc-your-latest-version. What used to be vc-latest-version, is now
18246 returned as vc-workfile-version.
18247 (vc-sccs-workfile-version): Adapt.
18248
18249 2000-09-04 Dave Love <fx@gnu.org>
18250
18251 * vc.el: [Merged from mainline.]
18252 (vc-dired-mode): Make the dired-move-to-filename-regexp
18253 regexp match the date, to avoid treating date as file size.
18254 Add YYYY S option to WESTERN/
18255
18256 2000-09-04 Dave Love <fx@gnu.org>
18257
18258 * vc.el: Require `compile' when compiling.
18259 (vc-logentry-check-hook): New option.
18260 (vc-steal-lock): Use compose-mail.
18261 (vc-dired-mode-map): Defvar when compiling.
18262 (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to
18263 vc-sccs.el and renamed. Callers changed.
18264 (vc-backend-checkout, vc-backend-logentry-check)
18265 (vc-backend-merge-news): Doc fix.
18266 (vc-default-logentry-check): New function.
18267 (vc-backend-checkin, vc-backend-revert, vc-backend-steal)
18268 (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name)
18269 (vc-backend-merge): Doc fix. Use backend functions.
18270 (vc-check-headers): Use backend functions.
18271
18272 * vc-cvs.el: Require vc when compiling.
18273 (vc-cvs-register-switches): Doc fix.
18274 (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type.
18275 (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge)
18276 (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin):
18277 New functions (code from vc.el).
18278 (vc-annotate-display-default): Fix interactive spec.
18279 (vc-annotate-time-span): Doc fix.
18280
18281 * vc-rcs.el: Require vc when compiling.
18282 (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge)
18283 (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert)
18284 (vc-rcs-checkin): New functions (code from vc.el).
18285 (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout):
18286 Doc fix.
18287 (vc-rcs-release): Deleted. (Duplicated vc-rcs-system-release).
18288
18289 * vc-sccs.el: Require vc when compiling.
18290 (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge)
18291 (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck)
18292 (vc-sccs-revert)
18293 (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code
18294 from vc.el).
18295 (vc-sccs-add-triple, vc-sccs-record-rename)
18296 (vc-sccs-lookup-triple): Moved from vc.el and renamed.
18297 (vc-sccs-admin): Doc fix.
18298
18299 2000-09-04 Martin Lorentzson <martinl@gnu.org>
18300
18301 * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part)
18302 (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release)
18303 (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions
18304 from vc.el.
18305
18306 * vc-sccs.el (vc-admin-sccs): Added from vc.el
18307
18308 * vc-cvs.el: Moved the annotate functionality from vc.el.
18309 (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el.
18310
18311 2000-09-04 Dave Love <fx@gnu.org>
18312
18313 * vc.el (vc-backend-release): Call vc-system-release.
18314
18315 * vc-sccs.el (vc-sccs-system-release):
18316 Renamed from vc-sccs-backend-release.
18317
18318 * vc-rcs.el (vc-rcs-system-release):
18319 Renamed from vc-rcs-backend-release.
18320
18321 * vc-cvs.el (vc-cvs-system-release):
18322 Renamed from vc-cvs-backend-release.
18323
18324 2000-09-04 Dave Love <fx@gnu.org>
18325
18326 * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to
18327 backend files.
18328 (vc-backend-release): Dispatch to backend functions.
18329 (vc-backend-release-p): Don't mention CVS, RCS. [The SCCS case
18330 probably needs attention.]
18331
18332 * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el.
18333 (vc-sccs-backend-release): New function.
18334
18335 * vc-cvs.el (vc-cvs-release): Moved from vc.el.
18336 (vc-cvs-backend-release): New function.
18337
18338 * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge):
18339 Doc fix.
18340 (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed.
18341 (vc-default-dired-state-info): New function.
18342 (vc-dired-state-info): Dispatch to backends.
18343 (vc-dired-hook): Doc fix. Simplify, pending removal of CVS specifics.
18344
18345 * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved
18346 from vc.el and renamed.
18347
18348 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18349
18350 * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p)
18351 (vc-version-other-window, vc-backend-assign-name): Removed
18352 references to vc-latest-version; sometimes changed into
18353 vc-workfile-version.
18354
18355 * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to
18356 vc-rcs-master-workfile-version.
18357 (vc-rcs-workfile-version): Use the above. Don't call
18358 vc-latest-version (that was unreachable code, anyway).
18359 (vc-rcs-fetch-master-properties): Doc fix.
18360
18361 * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed.
18362 (vc-backend-hook-functions): Removed them from this list, too.
18363 (vc-fetch-properties): Removed.
18364 (vc-workfile-version): Doc fix.
18365
18366 * vc-rcs-hooks.el (vc-rcs-consult-headers): New function.
18367 (vc-rcs-workfile-version, vc-rcs-locking-user)
18368 (vc-rcs-uses-locking): Use it.
18369
18370 * vc-hooks.el (vc-consult-rcs-headers):
18371 Moved into vc-rcs-hooks.el, under the name
18372 vc-rcs-consult-headers.
18373
18374 * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS
18375 headers.
18376 (vc-cvs-find-master): Use this name only; correct different
18377 versions of the name.
18378
18379 * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user):
18380 New functions.
18381 (vc-sccs-locking-user): Use the latter.
18382
18383 * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user):
18384 New functions.
18385
18386 * vc-hooks.el (vc-master-locks, vc-master-locking-user):
18387 Moved into both
18388 vc-rcs-hooks.el and vc-sccs-hooks.el. These properties and access
18389 functions are implementation details of those two backends.
18390
18391 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18392
18393 * vc-rcs-hooks.el (vc-rcs-fetch-master-properties)
18394 (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks.
18395
18396 * vc-sccs-hooks.el (vc-sccs-fetch-master-properties)
18397 (vc-sccs-parse-locks): SCCS-specific code moved here from
18398 vc-hooks.
18399
18400 * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific
18401 code moved here from vc-hooks.
18402
18403 * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split
18404 into back-end specific parts and removed. Callers not updated
18405 yet; because I guess these callers will disappear into back-end
18406 specific files anyway.
18407
18408 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18409
18410 * vc.el (with-vc-file, vc-next-action-on-file, vc-merge)
18411 (vc-backend-checkout): Changed calls to `vc-checkout-model' to
18412 `vc-uses-locking'.
18413
18414 * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking.
18415 Store yes/no in the property, and return t/nil. Updated all
18416 callers.
18417
18418 * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to
18419 vc-sccs-uses-locking. Don't set property.
18420 (vc-sccs-locking-user): Don't set property.
18421
18422 * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to
18423 vc-cvs-uses-locking. Don't set property here; leave that to
18424 vc-hooks.
18425 (vc-cvs-locking-user): Reflect above change. Streamlined.
18426
18427 * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to
18428 vc-rcs-uses-locking.
18429 (vc-rcs-locking-user): Reflect above change.
18430
18431 2000-09-04 Dave Love <fx@gnu.org>
18432
18433 * vc-sccs-hooks.el (vc-sccs-checkout-model): New function.
18434
18435 * vc-rcs-hooks.el (vc-rcs-checkout-model): New function.
18436
18437 * vc-hooks.el (vc-checkout-model): Punt to backends.
18438
18439 * vc-cvs-hooks.el (vc-cvs-checkout-model): New function.
18440
18441 * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status.
18442
18443 * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user):
18444 New functions.
18445
18446 * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user):
18447 New functions.
18448
18449 * vc-cvs-hooks.el (vc-handle-cvs): Doc fix.
18450 (vc-cvs-workfile-version, vc-cvs-locking-user): New functions.
18451
18452 * vc-hooks.el (vc-default-locking-user): New function.
18453 (vc-locking-user, vc-workfile-version): Punt to backends.
18454
18455 2000-09-04 Dave Love <fx@gnu.org>
18456
18457 * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff)
18458 (vc-master-workfile-version): Moved from vc-hooks.
18459
18460 * vc-rcs-hooks.el: Fix duplicate code in last change.
18461
18462 * vc-rcs-hooks.el: Require vc-hooks when compiling.
18463 (vc-rcs-master-templates): Improve :type.
18464 (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff,
18465 vc-master-workfile-version): Moved from vc-hooks.
18466
18467 * vc-sccs-hooks.el: Require vc-hooks when compiling.
18468 (vc-sccs-master-templates): Improve :type.
18469 (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file.
18470
18471 * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed.
18472
18473 * vc-cvs-hooks.el: Require vc-hooks when compiling.
18474 (vc-cvs-master-templates): Improve :type. Use
18475 vc-cvs-find-cvs-master.
18476 (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here
18477 from vc-hooks.
18478 (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master.
18479
18480 * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status):
18481 Moved to vc-cvs-hooks.
18482
18483 * vc-hooks.el: Add doc strings in various places. Simplify the
18484 minor mode setup.
18485 (vc-handled-backends): New user variable.
18486 (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor
18487 simplification.
18488
18489 2000-09-04 Dave Love <fx@gnu.org>
18490
18491 * vc.el: Some doc fixes for autoloaded and interactive functions.
18492 Fix compilation warnings from ediff stuff.
18493 (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix.
18494
18495 * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version.
18496
18497 * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version.
18498
18499 * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version.
18500
18501 2000-09-04 Dave Love <fx@gnu.org>
18502
18503 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
18504 New variable.
18505 (vc-make-backend-function, vc-loadup, vc-call-backend)
18506 (vc-backend-defines): New functions.
18507
18508 * vc-hooks.el: Various doc fixes.
18509 (vc-default-back-end, vc-follow-symlinks): Custom fix.
18510 (vc-match-substring): Function removed. Callers changed to use
18511 match-string.
18512 (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook):
18513 Simplify.
18514
18515 2000-09-04 Dave Love <fx@gnu.org>
18516
18517 * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom
18518 type.
18519 (vc-sccs-project-dir, vc-search-sccs-project-dir)
18520 (vc-sccs-registered): Doc fix.
18521
18522 * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type.
18523 (vc-cvs-registered): Doc fix.
18524
18525 * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type.
18526 (vc-rcs-registered): Doc fix.
18527
18528 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18529
18530 * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file.
18531
18532 * vc-hooks.el: vc-registered has been renamed
18533 vc-default-registered. Some functions have been moved to the
18534 backend specific files. they all support the
18535 vc-BACKEND-registered functions.
18536
18537 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
18538
18539 * vc-hooks.el: This is 1998-11-11T18:47:32Z!kwzh@gnu.org from the emacs sources
18540
18541 * vc.el: This is 1999-03-13T05:04:24Z!kwzh@gnu.org from the emacs sources
18542
18543 2000-09-04 Dave Love <fx@gnu.org>
18544
18545 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run
18546 menu-bar-update-hook.
18547
18548 * help.el (help-manyarg-func-alist): Add
18549 find-operation-coding-system.
18550
18551 * wid-edit.el (widget-sexp-validate): Fix garbled code.
18552
18553 * custom.el (custom-set-variables): Print message about errors in
18554 setting.
18555
18556 2000-09-03 Andrew Innes <andrewi@gnu.org>
18557
18558 * makefile.w32-in: Change to DOS line endings.
18559
18560 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
18561
18562 * mouse.el (mouse-popup-menubar): Supply the prompt string for
18563 minor-mode keymaps, if they don't have one.
18564
18565 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
18566
18567 * eshell/esh-module.el (eval-when-compile): Don't lose if
18568 esh-module.el's file name is truncated to DOS 8+3 limits.
18569
18570 2000-09-01 John Wiegley <johnw@gnu.org>
18571
18572 * pcomplete.el (pcomplete-dirs-or-entries): Added a missing
18573 predicate, which caused entries in the completion list to be
18574 doubled.
18575
18576 2000-08-30 John Wiegley <johnw@gnu.org>
18577
18578 * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct
18579 sending to subprocesses. Also, hook pre-command-hook if
18580 `eshell-send-direct-to-subprocesses' is non-nil.
18581 (eshell-send-direct-to-subprocesses): New config variable. If t,
18582 subprocess input is send immediately.
18583 (eshell-toggle-direct-send): New function.
18584 (eshell-self-insert-command): New function.
18585 (eshell-intercept-commands): New function.
18586 (eshell-send-input): If direct subprocess sending is enabled,
18587 don't echo any input to the Eshell buffer. Let the subprocess
18588 handle that. This requires "stty echo" in bash, for example.
18589
18590 2000-08-28 John Wiegley <johnw@gnu.org>
18591
18592 * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added
18593 completion function for Eshell's implementation of `unset'.
18594
18595 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
18596
18597 * info.el (Info-directory-list): Doc fix.
18598
18599 2000-08-31 Peter Breton <pbreton@ne.mediaone.net>
18600
18601 * filecache.el (file-cache-add-directory-using-find): Don't quote
18602 wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
18603
18604 2000-08-31 Kenichi Handa <handa@etl.go.jp>
18605
18606 * help.el (help-make-xrefs): Don't make hyperlinks for incorrect
18607 coding systems.
18608
18609 2000-08-30 Andrew Innes <andrewi@gnu.org>
18610
18611 * timer.el (run-with-idle-timer): Undo last change, so that timer
18612 is not activated immediately if Emacs is already idle. Some
18613 existing code relies on this behaviour.
18614
18615 2000-08-30 Miles Bader <miles@gnu.org>
18616
18617 * frame.el (set-frame-font): Do completion of font-name for
18618 interactive use.
18619
18620 2000-08-30 Kenichi Handa <handa@etl.go.jp>
18621
18622 * international/quail.el (quail-start-translation): Bind locally
18623 last-command-event, last-command, and this-command.
18624 (quail-start-conversion): Likewise.
18625 (quail-self-insert-command): Fix docstring.
18626
18627 2000-08-29 Gerd Moellmann <gerd@gnu.org>
18628
18629 * progmodes/executable.el
18630 (executable-make-buffer-file-executable-if-script-p): Check that
18631 buffer contains at least 2 characters.
18632
18633 2000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
18634
18635 * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix.
18636
18637 2000-08-29 Dave Love <fx@gnu.org>
18638
18639 * diff-mode.el (diff-mode) <defgroup>: Add :version.
18640 (diff-mode-shared-map): Bind mouse-2.
18641 (diff-imenu-generic-expression): New variable.
18642 (diff-mode): Use it.
18643
18644 * mouse.el (mouse-major-mode-menu): Use local-key-binding.
18645 (mouse-popup-menubar): Add minor mode menus.
18646 (popup-menu): Check for lookup-key returning number.
18647
18648 2000-08-29 Miles Bader <miles@gnu.org>
18649
18650 * comint.el (comint-send-input): Create overlays using the proper
18651 front/read-advance arguments.
18652
18653 2000-08-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
18654
18655 * ps-print.el: Even/odd pages printing. Doc fix.
18656 (ps-print-version): New version number (6.0).
18657 (ps-setup, ps-print-page-p, ps-background-text, ps-background-image)
18658 (ps-background, ps-begin-file, ps-begin-job): Code fix.
18659 (ps-print-duplex-feature): Variable eliminated.
18660 (ps-even-or-odd-pages): New variable.
18661
18662 * progmodes/ebnf2ps.el: Doc fix.
18663 (ebnf-version): New version (3.3).
18664 (ebnf-user-arrow): Change variable customization to sexp.
18665 (ebnf-user-arrow): Function eliminated.
18666 (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix.
18667
18668 2000-08-29 Kenichi Handa <handa@etl.go.jp>
18669
18670 * help.el (help-xref-mule-regexp): New variable.
18671 (help-make-xrefs): Handle help-xref-mule-regexp.
18672
18673 * international/mule-cmds.el (help-xref-mule-regexp-template): New
18674 variable.
18675 (describe-input-method): Temporarily activate the specfied input
18676 method to display the information.
18677 (describe-language-environment): Hyperlinks to mule related items.
18678
18679 * international/mule-diag.el (charset-multibyte-form-string): New
18680 function.
18681 (list-character-sets-1): Use charset-multibyte-form-string.
18682 (describe-character-set): New function.
18683 (describe-coding-system): Hyperlinks to safe character sets.
18684
18685 * international/quail.el (quail-help): New arg PACKAGE.
18686 Hyperlinks to mule related items.
18687 (quail-help-insert-keymap-description): Use
18688 substitute-command-keys instead of describe-bindings.
18689 (quail-translation-help): Hyperlinks to mule related items.
18690
18691 2000-08-28 John Wiegley <johnw@gnu.org>
18692
18693 * eshell/esh-util.el (eshell-flatten-list): It's not too wise to
18694 have a defsubst call itself. Made `eshell-flatten-list' back into
18695 a function again.
18696
18697 * eshell/em-smart.el (eshell-smart-redisplay): Added a safety
18698 catch, in case re-centering point at bottom messes up the display.
18699 This happens frequently in Emacs 21, due I believe to variable
18700 line heights.
18701
18702 * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order
18703 to call `find-tag-interactive'.
18704
18705 * eshell/em-dirs.el (eshell/cd): Use buffered printing to display
18706 the list of remember directories.
18707
18708 2000-08-28 John Wiegley <johnw@gnu.org>
18709
18710 * align.el: Test align-region-separate to see if it's a symbol.
18711
18712 2000-08-28 John Wiegley <johnw@gnu.org>
18713
18714 * eshell/esh-util.el (eshell-flatten-list): Made this function
18715 into a defsubst form. It gets used very frequently, although
18716 calls don't occur all that often.
18717
18718 * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
18719 examining it.
18720
18721 * eshell/esh-cmd.el (eshell-rewrite-while-command):
18722 (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
18723 `eshell-protect'.
18724 (eshell-copy-handles): Created a new macro for duplicating the
18725 current set of open handles. This is needed by the looping
18726 functions.
18727 (eshell-do-eval): Fixed while and if, so that the eshell-test-body
18728 is not incorrectly stomped on.
18729
18730 * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
18731 declaration for pcomplete-use-paring.
18732 (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
18733 value of eshell-cmpl-use-paring.
18734 * pcomplete.el (pcomplete-use-paring): New config variable, to
18735 indicate whether paring should be used.
18736 (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
18737 completion alternatives that have already been used.
18738
18739 * eshell/esh-mode.el (eshell-repeat-argument): Added function,
18740 bound to C-c C-y, which will repeat the previous N arguments
18741 (based on prefix argument).
18742 (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
18743
18744 * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
18745 if there is no *Help* buffer. This is for XEmacs, which renames
18746 its help buffers uniquely. TODO: Find out what the current buffer
18747 name to delete is.
18748
18749 * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
18750 first entry that correlates to a passwd/group number. Later
18751 entries (used for group/user name aliasing to multiple IDs) are
18752 ignored.
18753
18754 * eshell/em-xtra.el (eshell/expr):
18755 * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
18756 (eshell-grep, eshell/diff, eshell/locate):
18757 * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
18758 argument list, before passing it to the system command.
18759
18760 * eshell/esh-mode.el (eshell-find-tag): Added a special version of
18761 `find-tag' for use at final position in Eshell buffers (which
18762 otherwise triggers an error on Emacs 21).
18763 (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
18764 buffer, if it is currently bound to `find-tag'.
18765
18766 * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
18767 in the list of matched Makefile names.
18768 (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
18769 directory, prefer its contents to Makefile.
18770
18771 * eshell/em-dirs.el (eshell/cd): cd commands that look up
18772 directory parts (like "cd old new", or "cd =regexp"), are now case
18773 sensitive on non-Windows/DOS platforms.
18774
18775 * eshell/esh-mode.el (eshell-parse-command-input): When a user
18776 types RET after an open delimiter (like "), display a message
18777 indicating that Eshell is waiting for the closing delimiter.
18778
18779 * eshell/esh-var.el (eshell/unset): Added a command for unsetting
18780 environment variables.
18781
18782 * eshell/em-unix.el (eshell/diff): Added logic to fail more
18783 gracefully if the user enters incorrect arguments.
18784
18785 * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
18786 Eshell buffers.
18787
18788 * eshell/esh-var.el (eshell-interpolate-variable):
18789 * eshell/esh-mode.el (eshell-move-argument):
18790 * eshell/em-unix.el (eshell-du-sum-directory):
18791 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
18792 * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
18793 (not (= ...)).
18794
18795 * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
18796 to ensure the `preserve' flag gets propagated when doing recursive
18797 directory copies.
18798
18799 2000-08-28 Stefan Monnier <monnier@cs.yale.edu>
18800
18801 * eshell/em-hist.el (eshell-put-history, eshell-get-history):
18802 Don't convert \n into \0177 in memory.
18803 (eshell-read-history, eshell-write-history): Convert \n to \0177,
18804 and back again, when reading and writing.
18805
18806 2000-08-28 Eli Zaretskii <eliz@is.elta.co.il>
18807
18808 * eshell/esh-util.el (eshell-processp): Added to relieve constant
18809 testing of `fboundp' on `processp'.
18810
18811 * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
18812 (eshell/jobs): Don't call process-list if it is not bound.
18813 (eshell-gather-process-output): Support systems where async
18814 subprocesses aren't supported.
18815 (eshell-scratch-buffer, eshell-last-sync-output-start): New
18816 variables.
18817
18818 * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
18819 eshell-do-eval returns t.
18820 (eshell-do-pipelines-synchronously): New defmacro.
18821 (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
18822 when async subprocesses aren't supported.
18823 (eshell-do-eval): Use eshell-processp. Don't throw eshell-defer
18824 if async subprocesses aren't supported.
18825 (eshell-resume-command): Don't assume STATUS is a string.
18826
18827 * eshell/em-unix.el (eshell/rm): Use eshell-processp.
18828
18829 * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
18830 (eshell-close-target, eshell-get-target): Use eshell-processp.
18831 (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
18832 fix.
18833 (eshell-get-target, eshell-create-handles): Doc fix.
18834
18835 2000-08-28 Miles Bader <miles@lsi.nec.co.jp>
18836
18837 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the
18838 criterion to include commands that output something, as long as it
18839 leaves both the command and the end-of-buffer visible when the
18840 command has exited.
18841 (eshell-review-quick-commands): Adjust the help doc string
18842 accordingly.
18843
18844 2000-08-28 Peter Breton <pbreton@ne.mediaone.net>
18845
18846 * locate.el (locate): Cleaned up locate command's interactive prompting
18847 Thanks to Fran\e,Ag\e(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions.
18848
18849 * filecache.el (file-cache-case-fold-search): New variable
18850 (file-cache-assoc-function): New variable
18851 (file-cache-minibuffer-complete): Use file-cache-assoc-function.
18852 Use file-cache-case-fold-search variable
18853 (file-cache-add-file): Use file-cache-assoc-function
18854 (file-cache-delete-file): likewise
18855 (file-cache-directory-name): likewise
18856 (file-cache-debug-read-from-minibuffer): likewise
18857
18858 2000-08-28 Gerd Moellmann <gerd@gnu.org>
18859
18860 * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
18861 (abbrev-table-name): New function.
18862 (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
18863 If non-nil list local abbrev, only.
18864
18865 2000-08-28 Stanislav Shalunov <shalunov@internet2.edu>
18866
18867 * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*"
18868 from Gnus support code, and use special article copy buffer
18869 `(gnus-original-article-buffer)' instead. This allows to get rid
18870 of article-hide-headers usage (which breaks in the latest Gnus
18871 version). Thanks to Detlev Zundel.
18872
18873 2000-08-28 Kenichi Handa <handa@etl.go.jp>
18874
18875 * international/quail.el (quail-use-package): Hide "... loaded"
18876 message.
18877 (quail-start-translation, quail-start-conversion): Likewise.
18878
18879 * international/kkc.el (kkc-region): Hide "... loaded" message.
18880
18881 2000-08-27 Dave Love <fx@gnu.org>
18882
18883 * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
18884
18885 2000-08-27 Miles Bader <miles@gnu.org>
18886
18887 * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
18888
18889 2000-08-27 Kenichi Handa <handa@etl.go.jp>
18890
18891 * international/ja-dic-cnv.el (skkdic-convert): Insert (require
18892 'ja-dic-cnv), not (require 'skkdic-cnv).
18893
18894 2000-08-26 Miles Bader <miles@gnu.org>
18895
18896 * faces.el (face-x-resources): Add entry for :inherit.
18897 * cus-face.el (custom-face-attributes): Add support for :inherit
18898 attribute. Add support for relative face heights.
18899 (custom-face-attributes-get): Treat `nil' as being a default value
18900 for :inherit (as well as `unspecified').
18901
18902 * faces.el (set-face-attribute): Update doc string.
18903 (face-attribute-name-alist): Add :inherit.
18904 (face-valid-attribute-values): Handle :inherit.
18905 (face-read-string): Rephrase prompt to be less confusing.
18906 Assume that DEFAULT is a string, since we must return a string.
18907 (face-read-integer): Use `format' to turn DEFAULT into an
18908 acceptable default for face-read-string. Match NEW-VALUE against
18909 the string "unspecified", not the symbol `unspecified', since
18910 that's what face-read-string returns.
18911 (read-face-attribute): Lookup a name for old-value in valid, and
18912 use it as a default if we find one. Treat all values from
18913 face-read-string as strings. If the default is used, don't do any
18914 more processing on the value, just use the old value directly.
18915 (read-face-and-attribute, modify-face): Tweak prompt.
18916 (read-face-name): Don't assume prompt ends with a space.
18917
18918 * faces.el (describe-face): Add support for :inherit attribute.
18919
18920 2000-08-25 Kenichi Handa <handa@etl.go.jp>
18921
18922 * terminal.el (terminal-emulator): Fix args to `concat'. Now
18923 concat doesn't accept interger.
18924
18925 * international/kkc.el: Remove SKK from Keywords. Require
18926 ja-dic-utl instead of skkdic-utl.
18927
18928 * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
18929 Provide ja-dic-cnv instead of skkdic-cnv.
18930 (ja-dic-filename): Renamed from skkdic-filename. Referers changed
18931 (iso-2022-7bit-short): Add safe-charsets property.
18932 (skkdic-convert-postfix): Search Japanese chou-on character in
18933 addition to Hiragana character.
18934 (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
18935 (skkdic-convert): Change file names from skkdic.el to ja-dic.el
18936 (batch-skkdic-convert): Likewise.
18937
18938 * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
18939 Provide ja-dic-utl instead of skkdic-utl.
18940 (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
18941
18942 2000-08-24 Dave Love <fx@gnu.org>
18943
18944 * disp-table.el (standard-display-default): Make the test of `l'
18945 useful.
18946
18947 * language/european.el ("Latin-8", "Latin-9"): Add input methods,
18948 mod sample text.
18949
18950 * international/iso-ascii.el: Make pilcrow convenient string
18951 consistent with section.
18952 (iso-ascii-display): Set up multibyte characters as well as
18953 unibyte.
18954
18955 2000-08-24 Kenichi Handa <handa@etl.go.jp>
18956
18957 * international/mule-cmds.el (reset-language-environment): Set
18958 default-process-coding-system to '(undecided . iso-latin-1), which
18959 makes process I/O almost consistent with file I/O. Call this
18960 function when mule-cmds.el[c] is loaded.
18961
18962 2000-08-22 Andrew Innes <andrewi@gnu.org>
18963
18964 * makefile.w32-in: New file.
18965
18966 2000-08-22 Miles Bader <miles@lsi.nec.co.jp>
18967
18968 * comint.el (comint-output-filter): Compare end of
18969 comint-last-output-overlay with the start of the newly inserted
18970 text, not the end, when deciding whether to extend it.
18971 Set saved-point's insertion type to advance after insertion.
18972
18973 * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
18974 since this is now done independently of font-lock mode.
18975
18976 2000-08-21 Gerd Moellmann <gerd@gnu.org>
18977
18978 * server.el (server-kill-new-buffers): New user option.
18979 (server-existing-buffer): New buffer-local variable.
18980 (server-visit-files): When using an existing buffer, set
18981 server-existing-buffer to t.
18982 (server-buffer-done): If server-kill-new-buffers is t, kill the
18983 buffer, unless it was already present before visiting it with
18984 Emacs server.
18985
18986 2000-08-21 Eli Zaretskii <eliz@is.elta.co.il>
18987
18988 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
18989 even if the display doesn't support colors: some displays will
18990 support bold/underline faces.
18991
18992 2000-08-21 Gerd Moellmann <gerd@gnu.org>
18993
18994 * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
18995
18996 * startup.el (command-line): If user's init file had an error,
18997 add explanatory text to *Messages*.
18998
18999 2000-08-21 Kenichi Handa <handa@etl.go.jp>
19000
19001 * man.el (Man-getpage-in-background): Decode the process output by
19002 the system locale coding system.
19003
19004 2000-08-20 Dave Love <fx@gnu.org>
19005
19006 * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
19007 Don't test x-popup-menu.
19008 (function) <complete-function>: Complete only fbound symbols.
19009 <validate, value>: New.
19010 (variable) <complete-function>: Complete only bound symbols.
19011 (coding-system): Add :base-only, :complete-function, :validate,
19012 :value, :prompt-match.
19013 (widget-coding-system-prompt-value): Use read-coding-system and
19014 act on :base-only.
19015 (editable-field): Add :help-echo.
19016 (widget-push-button-gui, widget-push-button-cache)
19017 (widget-gui-action, widget-editable-list-gui): COmment out, along
19018 with uses.
19019 (widget-at): Make arg optional.
19020 (widget-echo-help): Adjust for current help-echo calling sequence.
19021 (widget-specify-field, widget-specify-button)
19022 (widget-specify-insert, widget-get-sibling, widget-image-find)
19023 (widget-convert, widget-insert, widget-leave-text)
19024 (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
19025 (widget-setup, widget-field-find, widget-before-change)
19026 (widget-after-change, widget-default-complete)
19027 (widget-default-create, widget-default-delete)
19028 (widget-push-button-value-create, editable-field)
19029 (widget-field-prompt-value, widget-field-validate)
19030 (widget-choice-value-create, widget-choice-action)
19031 (widget-choice-validate, widget-checklist-add-item)
19032 (widget-radio-add-item, widget-radio-chosen)
19033 (widget-radio-value-inline, widget-editable-list-value-create)
19034 (widget-editable-list-entry-create)
19035 (widget-documentation-link-add)
19036 (widget-documentation-string-value-create)
19037 (widget-regexp-validate, widget-file-complete)
19038 (widget-sexp-validate, widget-plist-convert-widget)
19039 (widget-plist-convert-widget, widget-alist-convert-widget)
19040 (widget-alist-convert-widget, widget-color-complete): Simplify,
19041 particularly to avoid bindings which aren't optimized out.
19042
19043 * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
19044 Doc fix.
19045 (down-list, backward-up-list, up-list, kill-sexp)
19046 (backward-kill-sexp, mark-sexp): Make arg optional.
19047 (lisp-complete-symbol): Add optional arg PREDICATE.
19048
19049 * cus-start.el: Add display-buffer-reuse-frames,
19050 file-coding-system-alist.
19051
19052 2000-08-20 Gerd Moellmann <gerd@gnu.org>
19053
19054 * startup.el (command-line): Clear realized faces after
19055 modifying TTY color mappings.
19056
19057 2000-08-20 Miles Bader <miles@gnu.org>
19058
19059 * faces.el (face-attr-match-p): Don't return true if ATTRS are
19060 merely a subset of FACE's attributes.
19061
19062 2000-08-19 Miles Bader <miles@gnu.org>
19063
19064 * comint.el (comint-output-filter): Save the point with a marker,
19065 not just a buffer position.
19066
19067 * international/mule.el (set-buffer-process-coding-system): Make
19068 interactive prompt less confusing.
19069
19070 2000-08-19 Gerd Moellmann <gerd@gnu.org>
19071
19072 * hilit-chg.el: General cleanup of doc strings, comments and
19073 code formatting.
19074
19075 2000-08-19 Miles Bader <miles@gnu.org>
19076
19077 * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
19078 Compiler macro removed; beginning-of-line is no longer always
19079 equivalent to forward-line, in the presence of fields.
19080
19081 * comint.el (comint-output-filter): Remove ad-hoc saving of
19082 restriction, and just use save-restriction, now that it works
19083 correctly. Don't adjust comint-last-input-start to account for
19084 our insertion; it shouldn't have moved because we don't use
19085 insert-before-markers anymore. Comment out call to
19086 `force-mode-line-update'; why is it here?
19087
19088 * gud.el (gud-basic-call): Temporarily widen gud comint buffer
19089 while checking for prompt to delete. Use `forward-line 0'
19090 instead of beginning-of-line.
19091 (gud-filter): Temporarily widen gud comint buffer while
19092 examining output.
19093
19094 2000-08-18 Stefan Monnier <monnier@cs.yale.edu>
19095
19096 * progmodes/sh-script.el: Big bag of typos.
19097
19098 * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
19099 check since ispell-process is not bound when ispell is not yet loaded.
19100
19101 2000-08-18 Dave Love <fx@gnu.org>
19102
19103 * image.el (find-image): Copy `spec' before using plist-put.
19104
19105 2000-08-18 Gerd Moellmann <gerd@gnu.org>
19106
19107 * textmodes/ispell.el (ispell-dictionary-alist-6): Add
19108 `portugues'.
19109
19110 * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
19111 backward-kill-sexp, analogous to kill-sexp.
19112
19113 * progmodes/icon.el (icon-indent-line)
19114 (icon-is-continuation-line): Handle comments specially.
19115
19116 2000-08-17 Ken Stevens <k.stevens@ieee.org>
19117
19118 * ispell.el: Set to standard author/maintainer/keyword fields.
19119 Fine tuning to menu map appearance and operation, and added help.
19120 Remove `start' and `end' error messages when compiling.
19121 (ispell-choices-win-default-height): Fixed comment string.
19122 (ispell-dictionary-alist-1): Fixed regexp in castellano and
19123 castellano8 dictionaries.
19124 (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
19125 (ispell-dictionary-alist-4): Fixed regexp in francais-tex
19126 dictionary, added italiano dictionary.
19127 (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
19128 word character
19129 (ispell-tex-skip-alists): Added psfig support.
19130 (ispell-skip-html): Renamed from ispell-skip-sgml.
19131 (ispell-begin-skip-region-regexp, ispell-skip-region)
19132 (ispell-minor-check): Improved html skipping support to skip across
19133 code, and recognize `&' commands without propper `;' syntax;
19134 (ispell-process-line): Fix alignment error when manually
19135 correcting spelling.
19136 (ispell): Fix comment string.
19137 (ispell-add-per-file-word-list): Always put word list on new line.
19138
19139 2000-08-17 Gerd Moellmann <gerd@gnu.org>
19140
19141 * format.el (format-encode-run-method): Fix error message to say
19142 `encode' instead of `decode'. Use save-window-excursion around
19143 shell-command-on-region as in format-decode-run-method because
19144 shell-command-on-region can display a buffer with error output.
19145 (format-decode): Don't record undo information for the decoding.
19146 (format-annotate-function): Add parameter FORMAT-COUNT. Make
19147 that number part of the temporary buffer name so that more than
19148 one decoding using a temporary buffer can happen safely.
19149
19150 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
19151 of `A-z' in the regexp.
19152
19153 * hilit-chg.el: Fix typos in commentary.
19154
19155 * help.el (view-emacs-news): Rewritten for new naming scheme
19156 for old NEWS files.
19157
19158 * startup.el (command-line): Pop to *Messages* in case an error
19159 is signaled while loading user-init-file.
19160
19161 2000-08-17 Andreas Schwab <schwab@suse.de>
19162
19163 * files.el (insert-directory): Don't lose original file name,
19164 undoing an undocumented change.
19165
19166 2000-08-17 Alex Schroeder <alex@gnu.org>
19167
19168 * sql.el (sql-magic-go): Use comint-bol.
19169 (sql-copy-column): Use comint-line-beginning-position.
19170 (comint-line-beginning-position): Define a replacement for
19171 comint-line-beginning-position if it is not fboundp.
19172
19173 2000-08-17 Alex Schroeder <alex@gnu.org>
19174
19175 * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
19176 it didn't have any effect anyway.
19177
19178 2000-08-17 Alex Schroeder <alex@gnu.org>
19179
19180 * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
19181 --pset and pager=off instead of sending \\o|cat at the beginning
19182 of the session.
19183
19184 2000-08-17 Miles Bader <miles@gnu.org>
19185
19186 * progmodes/octave-inf.el: Add compatibility definition of
19187 comint-line-beginning-position.
19188
19189 2000-08-17 Kenichi Handa <handa@etl.go.jp>
19190
19191 * startup.el (normal-top-level): Look in each dir in load-path for
19192 a leim-list.el file too. This assures of loading leim-list.el
19193 that is created at Emacs installation time even if a user have his
19194 own leim-list.el.
19195
19196 2000-08-17 Miles Bader <miles@gnu.org>
19197
19198 * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
19199 foreground color to black if the background is dark.
19200
19201 2000-08-16 Stefan Monnier <monnier@cs.yale.edu>
19202
19203 * loadhist.el (unload-feature): Typo.
19204
19205 * finder.el (finder-compile-keywords):
19206 * cus-dep.el (custom-make-dependencies): Add local-variable settings
19207 to the generated file.
19208
19209 * mail/mh-e.el (mh-make-local-vars):
19210 Replace make-variable-buffer-local with make-local-variable.
19211
19212 * play/landmark.el:
19213 * options.el (Edit-options-{set,toggle,t,nil}):
19214 * mail/mailabbrev.el (mail-abbrevs-mode):
19215 * textmodes/tex-mode.el (tex-expand-files):
19216 * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
19217
19218 * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
19219
19220 * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
19221 (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
19222 Allow going past the last element.
19223 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
19224 (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
19225 (cvs-mouse-toggle-mark): Don't move point.
19226 (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
19227
19228 * progmodes/compile.el (grep): Provide a default set of files.
19229 (next-error): Docstring fix.
19230 (compilation-find-file): Avoid find-file (fails in a dedicated window).
19231
19232 * emacs-lisp/easy-mmode.el (define-minor-mode):
19233 Use `symbol-value' to keep the byte-compiler quiet.
19234
19235 * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
19236 (diff-find-source-location): New fun, extracted from diff-goto-source.
19237 (diff-goto-source): Use it.
19238 (diff-next-complex-hunk, diff-filter-lines): New function.
19239 (diff-apply-hunk): New command.
19240
19241 * smerge-mode.el (smerge-mode-menu): Doc fix.
19242
19243 * msb.el (msb-mode): Define it in terms of define-minor-mode.
19244
19245 2000-08-16 Dave Love <fx@gnu.org>
19246
19247 * windmove.el (windmove) <defgroup>: Add :version.
19248
19249 * net/goto-addr.el: Don't require browse-url. Require thingatpt.
19250 (goto-address-fontify-p, goto-address-highlight-p)
19251 (goto-address-url-face, goto-address-url-mouse-face)
19252 (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
19253 (goto-address-url-regexp): Use thing-at-point-url-regexp.
19254 (goto-address-fontify, goto-address-at-mouse): Simplify,
19255 (goto-address-at-point): browse-url-url-at-point,
19256 goto-address-find-address-at-point can return nil.
19257 (goto-address-find-address-at-point): Return nil on failure.
19258
19259 * align.el (align) <defgroup>: Add :version.
19260
19261 * calculator.el (calculator): Add :version.
19262 (calculator): Use two lines for calculator window if `modeline'
19263 face is boxed.
19264
19265 * play/5x5.el: Doc fixes.
19266 (5x5) <defgroup>: Add :version.
19267
19268 * play/fortune.el (fortune) <defgroup>: Add :version.
19269 (fortune-append): Fix error message.
19270 (fortune-from-region): Doc fix.
19271
19272 * play/pong.el (pong): Doc fix.
19273
19274 * play/morse.el: Keywords, commentary, autoloads.
19275
19276 2000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
19277
19278 * desktop.el (desktop-save): Don't look at symbol-value of a
19279 member of minor-mode-alist, unless it is boundp.
19280
19281 2000-08-16 Sam Steingold <sds@gnu.org>
19282
19283 * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
19284 `while'; use `with-current-buffer' instead of `save-excursion'.
19285 Removed unnecessary kludges now that "*Buffer List*" is excluded.
19286
19287 2000-08-16 Kenichi Handa <handa@etl.go.jp>
19288
19289 * international/ccl.el (declare-ccl-program): Docstring modified.
19290 (ccl-execute-with-args): Likewise.
19291
19292 2000-08-16 Miles Bader <miles@gnu.org>
19293
19294 * progmodes/sql.el: Add compatibility definition of
19295 comint-line-beginning-position.
19296
19297 2000-08-15 Gerd Moellmann <gerd@gnu.org>
19298
19299 * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
19300 'buffer-menu' property.
19301 (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
19302 fails.
19303 (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
19304 buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
19305 wasn't killed.
19306
19307 * buff-menu.el (list-buffers-noselect): Don't display the
19308 *Buffer List* buffer.
19309
19310 * font-lock.el: Require jit-lock to prevent a very late
19311 `Loading jit-lock' message.
19312
19313 * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
19314 * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
19315 mail address.
19316
19317 2000-08-15 Miles Bader <miles@gnu.org>
19318
19319 * textmodes/ispell.el (ispell-graphic-p): New constant.
19320 (ispell-choices-win-default-height, ispell-help): Use
19321 `ispell-graphic-p' instead of `xemacsp'.
19322
19323 2000-08-15 Dave Love <fx@gnu.org>
19324
19325 * simple.el: Autoload widget-convert when compiling.
19326 (mail-user-agent): Doc fix.
19327
19328 * help.el (function-called-at-point, variable-at-point): Use
19329 with-syntax-table.
19330 (help-manyarg-func-alist): Add insert-and-inherit.
19331
19332 * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
19333
19334 * delsel.el (delsel-unload-hook): New function.
19335
19336 * find-file.el: Doc fixes. Move provide to end.
19337 (ff) <defgroup>: Add :link.
19338 (ff-goto-click): Deleted.
19339 (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
19340 Use mouse-set-point.
19341
19342 * textmodes/tildify.el: Doc fixes.
19343 (tildify) <defgroup>: Add:version.
19344
19345 * progmodes/glasses.el (glasses) <defgroup>: Add :version.
19346 (glasses-custom-set): Use set-default, not set.
19347 (minor-mode-alist): Propertize the lighter.
19348 (glasses-mode): Provide optional arg.
19349
19350 * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
19351 (global-cwarn-mode): Don't make it a user option. Unquote lambda.
19352 (cwarn-font-lock-feature-keywords-alist): Don't make it a user
19353 option. Provide :type.
19354 (cwarn-configuration): Provide :type.
19355 (cwarn-mode): Doc fix.
19356
19357 * add-log.el (change-log-merge): Doc fix.
19358 (change-log-redate): New command.
19359
19360 * net/browse-url.el (browse-url-filename-alist): Add a clause for
19361 Doze and Dog.
19362 (browse-url): Use dolist, not mapcar.
19363 (browse-url-at-point): Check for null url.
19364 (browse-url-event-buffer, browse-url-event-point): Functions
19365 deleted.
19366 (browse-url-at-mouse, browse-url-netscape): Simplify.
19367
19368 * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
19369 modes.
19370 (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
19371 Fix previous change to mapcan.
19372 (msb--init-file-alist, msb--add-separators)
19373 (msb--make-keymap-menu): Simplify.
19374 (msb--choose-file-menu): Use copy-sequence.
19375 (msb-mode-map): Add title to keymap.
19376 (msb-unload-hook): New function.
19377
19378 * bs.el: Fix indentation.
19379 (bs) <defgroup>: Add :links.
19380 (bs-show): Doc fix.
19381 (bs-apply-sort-faces): Don't use window-system.
19382 (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
19383
19384 2000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
19385
19386 * calendar/timeclock.el (timeclock-file): Run .timelog through
19387 convert-standard-filename.
19388
19389 2000-08-14 Gerd Moellmann <gerd@gnu.org>
19390
19391 * emacs-lisp/authors.el: New file.
19392
19393 * paren.el (show-paren-priority): New user option.
19394 (show-paren-function): Set overlay priorities to
19395 show-paren-priority.
19396
19397 2000-08-14 Miles Bader <miles@gnu.org>
19398
19399 * comint.el (comint-bol): Use `forward-line 0' instead of calling
19400 beginning-of-line with inhibit-field-text-motion bound.
19401
19402 2000-08-14 Gerd Moellmann <gerd@gnu.org>
19403
19404 * calendar/timeclock.el: New file.
19405
19406 2000-08-14 David Ponce <david@dponce.com>
19407
19408 * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
19409 `widget-button-click'. so that one can use left mouse button to
19410 click on dialog buttons.
19411
19412 2000-08-14 Emmanuel Briot <briot@gnat.com>
19413
19414 * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
19415 identifiers, since XML is case sensitive
19416
19417 2000-08-12 Miles Bader <miles@gnu.org>
19418
19419 * comint.el (comint-output-filter): Don't bother frobbing
19420 window-start, it doesn't seem to be necessary.
19421
19422 * comint.el (comint-send-string, comint-send-region): Make into
19423 real functions. Snapshot the prompt before sending.
19424
19425 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
19426
19427 * info.el (Info-find-emacs-command-nodes): Rewrite to use
19428 technique similar to Info-index, instead of relying on specific
19429 names of relevant Index nodes.
19430 (Info-goto-emacs-command-node): Bind Info-history to nil when
19431 going to the first node found by Info-find-emacs-command-nodes.
19432
19433 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
19434
19435 * menu-bar.el (menu-bar-help-menu): Add a :help string.
19436
19437 2000-08-10 Miles Bader <miles@gnu.org>
19438
19439 * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
19440
19441 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
19442
19443 * info.el (Info-file-list-for-emacs): More elements for the
19444 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
19445 and woman manuals.
19446
19447 2000-08-10 Miles Bader <miles@lsi.nec.co.jp>
19448
19449 * comint.el (comint-send-input): Make the newline boundary overlay
19450 rear-nonsticky. Use `insert' instead of `insert-before-markers'.
19451 (comint-output-filter): Use `insert' instead of
19452 `insert-before-markers'. Extend comint-last-output-overlay when
19453 necessary since we can't rely on insert-before-markers to do it.
19454 * gud.el (gud-filter): Use `with-current-buffer' instead of
19455 save-excursion when inserting the output, so that point gets
19456 updated correctly; the old method relied on a rather dodgy
19457 side-effect of comint-output-filter to avoid the effect of
19458 save-excursion.
19459
19460 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
19461
19462 * files.el (recover-file): Call insert-directory instead of
19463 invoking `ls' directly.
19464
19465 2000-08-10 Miles Bader <miles@gnu.org>
19466
19467 * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
19468 (comint-last-prompt-overlay): New variables.
19469 (comint-output-filter): Implement prompt highlighting.
19470 (comint-snapshot-last-prompt): New function.
19471 (comint-send-input): Snapshot the last prompt.
19472 Use comint-highlight-input-face.
19473 (comint-highlight-input-face): Renamed from `comint-highlight-face'.
19474 Use defface instead of defcustom.
19475 (send-invisible, comint-send-eof): Snapshot the last prompt.
19476 (comint-delchar-or-maybe-eof): Use comint-send-eof.
19477 (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
19478
19479 2000-08-09 Stefan Monnier <monnier@cs.yale.edu>
19480
19481 * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
19482 (regexp-opt-group): Use a list of chars for `letters'.
19483 (regexp-opt-charset): `chars' is now a list of chars.
19484 Use a char-table rather than a vector so it works for multibyte chars.
19485
19486 * pcvs.el (cvs-menu): Don't move point. Use popup-menu.
19487 Set cvs-minor-current-files to the selected fileinfo.
19488 (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
19489 (cvs-mode-insert): Manually macroexpand `ignore-errors'.
19490
19491 2000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
19492
19493 * files.el (insert-directory): Don't call access-file on
19494 directories on DOS and Windows.
19495
19496 2000-08-09 Kenichi Handa <handa@etl.go.jp>
19497
19498 * international/ccl.el (ccl-embed-data): Make ccl-program-vector
19499 longer if necessary.
19500 (ccl-embed-code): Call ccl-embed-data to store CODE in
19501 ccl-program-vector.
19502
19503 2000-08-09 Miles Bader <miles@gnu.org>
19504
19505 * comint.el (comint-output-filter): Properly handle the case where
19506 the text surrounded by comint-last-output-overlay was deleted.
19507
19508 2000-08-08 Gerd Moellmann <gerd@gnu.org>
19509
19510 * info.el (Info-insert-dir): Use Info-additional-directory-list if
19511 non-nil.
19512 (Info-file-list-for-emacs): Remove "info" from the list because
19513 that leads to trying to use the documentation from file `info'
19514 in various situations where it isn't appropriate, for instance
19515 C-h C-k C-h i.
19516
19517 * ffap.el (ffap-read-file-or-url-internal): Handle case that
19518 DIR and/or STRING are nil.
19519
19520 * progmodes/compile.el (compilation-setup): Make variable
19521 compilation-error-screen-columns buffer-local, as some comment
19522 in the code suggests it should be.
19523
19524 * files.el (auto-mode-interpreter-regexp): New variable.
19525 (set-auto-mode): Use it.
19526
19527 * indent.el (indent-for-tab-command): Doc fix.
19528
19529 * mouse-sel.el (mouse-sel-mode): Doc fix.
19530
19531 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
19532 labels.
19533
19534 * help.el (print-help-return-message): When
19535 display-buffer-reuse-frames is set, let the help window been quit,
19536 instead of deleting it, which might delete a reused frame.
19537
19538 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
19539
19540 * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
19541 rename a directory to a name that differs only by its letter case.
19542
19543 2000-08-08 Kenichi Handa <handa@etl.go.jp>
19544
19545 * international/quail.el (quail-define-rules): Handle Quail decode
19546 map correctly. Add code for supporting annotations.
19547 (quail-install-decode-map): New function.
19548 (quail-defrule-internal): New optional arguments decode-map and
19549 props.
19550 (quail-advice): New function.
19551
19552 2000-08-07 Sam Steingold <sds@gnu.org>
19553
19554 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
19555 `defconst', `define-condition', `with-slots'.
19556 * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
19557
19558 2000-08-03 Miles Bader <miles@gnu.org>
19559
19560 * comint.el (comint-use-prompt-regexp-instead-of-fields):
19561 New variable.
19562 (comint-prompt-regexp, comint-get-old-input): Document dependence on
19563 comint-use-prompt-regexp-instead-of-fields.
19564 (comint-send-input): Add `input' field property to stuff we send to
19565 the process, if comint-use-prompt-regexp-instead-of-fields is nil.
19566 (comint-output-filter): Add `output' field property to process
19567 output, if comint-use-prompt-regexp-instead-of-fields is nil.
19568 (comint-replace-by-expanded-history)
19569 (comint-get-old-input-default, comint-show-output)
19570 (comint-backward-matching-input, comint-forward-matching-input)
19571 (comint-next-prompt, comint-previous-prompt): Use field
19572 properties if comint-use-prompt-regexp-instead-of-fields is nil.
19573 (comint-line-beginning-position): New function.
19574 (comint-bol): Use comint-line-beginning-position. Make ARG optional.
19575 (comint-replace-by-expanded-history-before-point): Use
19576 comint-line-beginning-position and line-end-position.
19577 (comint-last-output-overlay): New variable.
19578 (comint-mode): Make `comint-last-output-overlay' buffer-local.
19579
19580 * shell.el (shell-prompt-pattern): Doc change.
19581 (shell-backward-command): Use line-beginning-position.
19582
19583 * gud.el (gud-gdb-complete-command): Use
19584 comint-line-beginning-position.
19585
19586 * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
19587 comint-bol doesn't actually go to the beginning of the line.
19588
19589 * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
19590 if comint-use-prompt-regexp-instead-of-fields is non-nil.
19591 (try-expand-line-all-buffers): Likewise.
19592
19593 * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
19594 explicitly matching comint-prompt-regexp.
19595 (sql-copy-column): Use comint-line-beginning-position instead of
19596 explicitly matching comint-prompt-regexp.
19597
19598 * progmodes/octave-inf.el (inferior-octave-complete): Use
19599 comint-line-beginning-position.
19600
19601 * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
19602
19603 * progmodes/idlw-shell.el (idlwave-shell-send-command): When
19604 looking for a prompt, use `forward-line 0' instead of
19605 `beginning-of-line', to avoid getting caught by an input field.
19606
19607 2000-08-07 Gerd Moellmann <gerd@gnu.org>
19608
19609 * files.el (shell-quote-wildcard-pattern): Make sure to return
19610 PATTERN, in the Unix case.
19611
19612 2000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
19613
19614 * play/zone.el (zone): Discard any pending input before running
19615 the randomly-chosen pgm.
19616
19617 2000-08-07 Kenichi Handa <handa@etl.go.jp>
19618
19619 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
19620 checking the existence of any multibyte characters.
19621
19622 2000-08-06 Gerd Moellmann <gerd@gnu.org>
19623
19624 * help.el (describe-mode): Test minor-mode symbol for being
19625 bound before testing its value for being nil.
19626
19627 * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
19628 `first', `second', and `third'.
19629
19630 * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
19631 (second): Make it an alias for `cadr'.
19632
19633 2000-08-06 Eli Zaretskii <eliz@is.elta.co.il>
19634
19635 * bs.el (bs-apply-sort-faces): Don't use window-system, since all
19636 types of display support faces now.
19637
19638 2000-08-05 Gerd Moellmann <gerd@gnu.org>
19639
19640 * pcvs.el (require): Require `cl' during compilation, only.
19641
19642 * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
19643 (toplevel): Remove `remq' and `remove' from autoloads.
19644 (cl-fake-autoloads): New variable. If set, arrange for an error
19645 when CL functions etc. are autoloaded.
19646
19647 2000-08-04 Eli Zaretskii <eliz@is.elta.co.il>
19648
19649 * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
19650
19651 * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
19652 popped up, but the user clicks outside the menu, return an empty
19653 regexp (that causes unhighlight-regexp to have no effect).
19654
19655 * menu-bar.el (menu-bar-games-menu): Add Zone.
19656
19657 * hi-lock.el (toplevel): Require font-lock.
19658
19659 2000-08-03 Vinicius Jose Latorre <vinicius@cpqd.com.br>
19660
19661 * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward.
19662 (ebnf-8-bit-chars): New var for bug fix.
19663 (ebnf-string): Bug fix.
19664
19665 2000-08-03 Sam Steingold <sds@gnu.org>
19666
19667 * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
19668 instead of `buffer-string'.
19669 (require 'cl): Always, not just when compiling.
19670 `ignore-errors' in `interactive', `list*', `defun*' &c make this
19671 necessary.
19672
19673 2000-08-03 Eli Zaretskii <eliz@is.elta.co.il>
19674
19675 * international/mule-cmds.el (select-safe-coding-system): Make
19676 the message text about selecting a safe coding system more clear.
19677
19678 2000-08-02 Gerd Moellmann <gerd@gnu.org>
19679
19680 * hi-lock.el: New file.
19681
19682 * play/zone.el: New file.
19683
19684 * replace.el (occur): Set tab-width in the *Occur* buffer to the
19685 value of tab-width in the original buffer. Choose a line number
19686 format that's a multiple of the original buffer's tab width, so
19687 that lines appear right.
19688
19689 * textmodes/ispell.el (ispell): New function, replacing an alias.
19690 Spell-check active region if in transient-mark-mode and mark
19691 is active; otherwise spell-check buffer.
19692
19693 2000-08-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
19694
19695 * ps-mule.el: Fix a customization problem on
19696 ps-mule-font-info-database-default.
19697
19698 2000-08-02 Eli Zaretskii <eliz@is.elta.co.il>
19699
19700 * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
19701 display-mouse-p instead of window-system.
19702 (ebrowse-member-mode-map): Ditto.
19703
19704 2000-08-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
19705
19706 * progmodes/ebnf2ps.el: Update ps-print functions call.
19707 Indentation fix. Doc fix.
19708 (ebnf-version): New version number (3.2).
19709 (ebnf-format-color, ebnf-begin-job): Code fix.
19710
19711 2000-08-01 Eli Zaretskii <eliz@is.elta.co.il>
19712
19713 * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
19714 font lock support on window-system.
19715 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
19716
19717 * textmodes/ispell.el (ispell-highlight-spelling-error): Use
19718 display-color-p, if fboundp, instead of window-system.
19719
19720 2000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
19721
19722 * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
19723 instead of window-system.
19724
19725 * wid-edit.el (widget-choose): Use display-mouse-p instead of
19726 window-system.
19727 (widget-choice-mouse-down-action): Use display-popup-menus-p
19728 instead of window-system.
19729
19730 * strokes.el (strokes-file): Run the file name through
19731 convert-standard-filename.
19732 (strokes-mode): Call display-mouse-p instead of looking at
19733 window-system. Change the error message accordingly.
19734
19735 * progmodes/cpp.el (toplevel): Support faces on tty's.
19736
19737 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
19738 (lm-plot-square, lm-init-display): Don't use window-system.
19739
19740 * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
19741 (gomoku-plot-square, gomoku-init-display): Don't use window-system.
19742
19743 * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
19744 instead of looking at window-system.
19745
19746 2000-07-30 Gerd Moellmann <gerd@gnu.org>
19747
19748 * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
19749 of testing if iswitchb-prepost-hooks is bound, because the
19750 latter will always be true when invoking a recursive minibuffer
19751 from an active Iswitchb buffer.
19752
19753 2000-07-30 Eli Zaretskii <eliz@is.elta.co.il>
19754
19755 * files.el (shell-quote-wildcard-pattern): New function.
19756 (insert-directory): Call it. Only prepend "\" to command on Unix
19757 and GNU/Linux systems.
19758
19759 2000-07-30 Gerd Moellmann <gerd@gnu.org>
19760
19761 * eshell/esh-groups.el: Change custom :link file names
19762 from `eshell.info' to `eshell'.
19763
19764 2000-07-30 Francis Wright <fjw@maths.qmw.ac.uk>
19765
19766 * dired.el (dired-build-subdir-alist): Expand subdirectory names
19767 correctly in recursive ange-ftp listings.
19768
19769 2000-07-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
19770
19771 * ps-print.el: Fix bug 1: if ps-font-size-internal,
19772 ps-header-font-size-internal and
19773 ps-header-title-font-size-internal variables are not set,
19774 ps-nb-pages and ps-line-lengths-internal crashes. Fix bug 2: if
19775 face text property is (foreground-color . COLOR) or
19776 `(background-color . COLOR)', ps-print crashes. Doc fix.
19777 (ps-print-version): New version number (5.2.4).
19778 (ps-plot-region): Code fix.
19779 (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
19780 (ps-face-attribute-list, ps-face-attributes, ps-face-background):
19781 Bug fix 2.
19782
19783 2000-07-30 Milan Zamazal <pdm@freesoft.cz>
19784
19785 * glasses.el (glasses-make-readable): Fix uncapitalization of
19786 identifiers like `myXMLDocument'.
19787
19788 2000-07-28 Karl Fogel <kfogel@red-bean.com>
19789
19790 * mail/mail-hist.el (mail-hist-previous-input)
19791 (mail-hist-next-input): Do the obvious code factorization.
19792 (mail-hist-retrieve-and-insert): New func, contains common
19793 code of above two.
19794 If inserting a message body, leave point at top.
19795
19796 2000-07-28 Sam Steingold <sds@gnu.org>
19797
19798 * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
19799 Use `<=', not `<' to compare times!
19800 (ange-ftp-ls): Remove.
19801
19802 2000-07-27 Gerd Moellmann <gerd@gnu.org>
19803
19804 * play/cookie1.el: Add explanation of how to make cookie.el
19805 compatible with strfile(1) to comment.
19806
19807 * subr.el (remove, remq): New functions.
19808
19809 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
19810 escape `*' in regexps.
19811 (midnight-find): Reverse order of arguments in the funcall of
19812 TEST.
19813
19814 * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
19815 and `.class'.
19816
19817 * play/meese.el: Add Commentary section.
19818
19819 2000-07-27 Alex Schroeder <alex@gnu.org>
19820
19821 * sql.el (sql-ms): Added autoload cookie.
19822 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
19823 (sql-oracle): Ditto.
19824 (sql-help): Doc change.
19825
19826 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
19827 types and exceptions.
19828
19829 2000-07-27 Alex Schroeder <alex@gnu.org>
19830
19831 * sql.el (sql-placeholder-history): New variable.
19832 (sql-query-placeholders-and-send): New function that will query
19833 the user and replace placeholders with user input.
19834 (sql-oracle): If running on NT, set comint-input-sender to
19835 sql-query-placeholders-and-send.
19836
19837 (sql-stop): If in the SQLi buffer, insert stop notification, else
19838 present it as a message.
19839
19840 2000-07-27 Alex Schroeder <alex@gnu.org>
19841
19842 * sql.el (sql-input-ring-separator): Doc change.
19843 (sql-input-ring-file-name): Doc change.
19844 (sql-interactive-mode): Use `sql-input-ring-separator' and
19845 `sql-input-ring-file-name' to set the comint-mode equivalents
19846 without making them local variables.
19847 (sql-stop): Don't bind `sql-input-ring-separator' and
19848 `sql-input-ring-file-name' dynamically to their comint-mode
19849 equivalents.
19850
19851 2000-07-27 Kenichi Handa <handa@etl.go.jp>
19852
19853 * international/mule.el (register-char-codings): New function.
19854 (make-coding-system): Handle `safe-chars' specification in the arg
19855 PROPERTY.
19856
19857 * international/mule-cmds.el
19858 (find-coding-systems-region-subset-p): This function deleted.
19859 (sort-coding-systems-predicate): New variable.
19860 (sort-coding-systems): New function.
19861 (find-coding-systems-region): Use
19862 find-coding-systems-region-internal.
19863 (find-coding-systems-string): Use find-coding-systems-region.
19864 (find-coding-systems-for-charsets): Check
19865 char-coding-system-table.
19866 (select-safe-coding-system-accept-default-p): New variable.
19867 (select-safe-coding-system): Mostly rewritten. New argument
19868 ACCEPT-DEFAULT-P.
19869 (select-message-coding-system): Call select-safe-coding-system
19870 with ACCEPT-DEFAULT-P arg.
19871 (reset-language-environment): Reset default-sendmail-coding-system
19872 to the default value iso-latin-1.
19873 (set-language-environment): Don't set the obsolete variable
19874 charset-origin-alist.
19875
19876 * international/codepage.el (cp-coding-system-for-codepage-1):
19877 Give `safe-chars' property to make-coding-system.
19878
19879 * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
19880 calling select-message-coding-system twice.
19881
19882 * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
19883 instead of `safe-charsets'.
19884 (cyrillic-alternativnyj): Likewise.
19885 (ccl-encode-alternativnyj): Don't check the charset
19886 cyrillic-iso8859-5.
19887
19888 2000-07-27 Kenichi Handa <handa@etl.go.jp>
19889
19890 * composite.el (compose-chars-after): Preserve match data.
19891
19892 2000-07-26 Sam Steingold <sds@gnu.org>
19893
19894 * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
19895 (ange-ftp-real-file-newer-than-file-p): New function.
19896 (ange-ftp-verify-visited-file-modtime): Use `float-time'.
19897 (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
19898
19899 * tooltip.el (tooltip-float-time): Removed (use `float-time').
19900 * midnight.el (midnight-float-time): Ditto.
19901
19902 2000-07-26 Andreas Schwab <schwab@suse.de>
19903
19904 * files.el (normal-backup-enable-predicate): Correct
19905 interpretation of the return value of compare-strings.
19906
19907 2000-07-26 Gerd Moellmann <gerd@gnu.org>
19908
19909 * isearch.el (isearch-resume): New function.
19910 (isearch-done): Add something to command-history to resume
19911 the search.
19912 (isearch-yank-line, isearch-yank-word): Use
19913 buffer-substring-no-properties instead of buffer-substring.
19914
19915 * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
19916 of flyspell-mouse-map.
19917
19918 * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
19919 duplicate definition.
19920 (makefile-mode): Remove duplicate setting of local-abbrev-table.
19921
19922 * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
19923 (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
19924
19925 2000-07-25 Sam Steingold <sds@gnu.org>
19926
19927 * net/ange-ftp.el: Get modtime over the net.
19928 (ange-ftp-file-modtime): New function.
19929 (ange-ftp-write-region, ange-ftp-insert-file-contents)
19930 (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
19931 Use it.
19932 (ange-ftp-dot-to-slash): New function.
19933 (ange-ftp-fix-name-for-vms): Use it.
19934
19935 * midnight.el (midnight-buffer-display-time): Use
19936 `with-current-buffer'.
19937
19938 2000-07-25 Gerd Moellmann <gerd@gnu.org>
19939
19940 * find-dired.el: Update copyright notice.
19941 (find-dired): Offer to kill a running `find'.
19942
19943 * enriched.el (enriched-face-ans): For a `foreground-color'
19944 property, return '(("x-color" COLOR))' so that COLOR will be
19945 output as a parameter of the x-color annotation. Likewise for the
19946 `background-color' property. In the case of normal face
19947 properties, don't return annotations for unspecified foreground
19948 and background face attributes.
19949
19950 2000-07-25 Kenichi Handa <handa@etl.go.jp>
19951
19952 * language/japan-util.el (japanese-katakana-region): Fix handling
19953 HANKAKU argument.
19954
19955 2000-07-25 Miles Bader <miles@gnu.org>
19956
19957 * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
19958 constrain-to-field. Pass nil ESCAPE-FROM-EDGE argument to
19959 constrain-to-field.
19960
19961 2000-07-24 Andrew Innes <andrewi@gnu.org>
19962
19963 * timer.el (timer-activate-when-idle): Add optional parameter
19964 DONT-WAIT. Update docstring.
19965 (run-with-idle-timer): Specify extra parameter to
19966 timer-activate-when-idle, so that timer will be activated
19967 immediately if Emacs is already idle.
19968
19969 * w32-fns.el (w32-using-nt): Fix docstring.
19970
19971 2000-07-24 Dave Love <fx@gnu.org>
19972
19973 * mouse.el (popup-menu): Set last-command-event.
19974 (mouse-major-mode-menu-prefix): Declare.
19975
19976 2000-07-24 Gerd Moellmann <gerd@gnu.org>
19977
19978 * textmodes/flyspell.el: Update to author's version 1.5d.
19979
19980 * progmodes/hideshow.el: Update copyright notice.
19981
19982 * vcursor.el: Set maintainer to FSF, since author cannot
19983 be reached.
19984
19985 2000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
19986
19987 * info.el (Info-goto-emacs-key-command-node): Leave a space after
19988 the prompt.
19989
19990 * mouse.el (popup-menu): Run the keymap through indirect-function,
19991 in case it was defined with define-prefix-key. If the menu is a
19992 list of keymaps, look up the binding of user's choice in each one
19993 of the keymaps.
19994 (mouse-popup-menubar): If the global and local menu-bar keymaps
19995 don't have a prompt string, create one and insert it into the
19996 keymap. Don't barf if current-local-map returns nil.
19997
19998 2000-07-24 Francis Wright <fjw@maths.qmw.ac.uk>
19999
20000 * dired.el (dired-sort-R-check): Added to allow recursive listing
20001 to be undone.
20002 (dired-sort-other): Use it.
20003
20004 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20005
20006 * Release of cc-mode 5.27
20007
20008 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20009
20010 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
20011 c-beginning-of-statement-1 that caused a bad case of recursion
20012 which could consume a lot of CPU in large classes in languages
20013 that have in-expression classes (i.e. Java and Pike).
20014
20015 * cc-engine.el (c-guess-basic-syntax): Check for in-expression
20016 statements before top level constructs (i.e. case 6 is moved
20017 before case 5 and is now case 4) to catch in-expression
20018 classes in top level expressions correctly.
20019
20020 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20021
20022 * cc-engine.el (c-guess-basic-syntax): Less naive handling of
20023 objc-method-intro. Case 4 removed and case 5I added.
20024
20025 * cc-langs.el (c-append-paragraph-start): New variable used by
20026 c-common-init to get paragraph-start correct.
20027 * cc-langs.el (c-common-init): Use c-append-paragraph-start to
20028 initialize paragraph-start to make it correct both with and
20029 without the javadoc special case.
20030
20031 * cc-mode.el (java-mode): Use c-append-paragraph-start to
20032 initialize paragraph-start for javadoc markup.
20033
20034 * cc-vars.el (c-style-variables-are-local-p): Incompatible
20035 change by defaulting this to t. It's motivated by the
20036 confusing behavior that otherwise arise from the style system
20037 when editing both java and non-java files at the same time
20038 (see the comments about style setting in c-common-init).
20039
20040 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20041
20042 * cc-cmds.el (c-indent-new-comment-line): Added a kludge
20043 similar to the one in c-fill-paragraph to check the fill
20044 prefix from the adaptive fill function for sanity.
20045
20046 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20047
20048 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
20049 defun block.
20050
20051 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20052
20053 * cc-align.el (c-lineup-multi-inher): Handle lines with
20054 leading comma nicely. Extended to handle member initializers
20055 too.
20056
20057 * cc-engine.el: (c-beginning-of-inheritance-list,
20058 c-guess-basic-syntax): Fixed recognition of inheritance lists
20059 when the lines begins with a comma.
20060
20061 * cc-vars.el (c-offsets-alist): Changed default for
20062 member-init-cont to c-lineup-multi-inher since it now handles
20063 member initializers and indents better for leading commas.
20064
20065 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20066
20067 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
20068 handling that caused class open lines to be recognized as
20069 statement-conts in some cases.
20070
20071 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
20072 guessed by the adaptive fill function unless point is on the
20073 first line of a block comment.
20074
20075 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
20076 when the buffer ends with a macro continuation char.
20077
20078 * cc-engine.el (c-guess-basic-syntax): Added support for
20079 function definitions as statements in Pike. The first
20080 statement in a lambda block is now labeled defun-block-intro
20081 instead of statement-block-intro.
20082
20083 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
20084 so that the class surrounding point is selected, not the one
20085 innermost in the state.
20086
20087 * cc-engine.el (c-guess-basic-syntax): Fixed bug in
20088 recognition of switch labels having hanging multiline
20089 statements.
20090
20091 * cc-engine.el (c-beginning-of-member-init-list): Broke out
20092 some code in c-guess-basic-syntax to a separate function.
20093 * cc-engine.el (c-just-after-func-arglist-p): Fixed
20094 recognition of member inits with multiple line arglists.
20095 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
20096 member-init-cont when the commas are in funny places.
20097
20098 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20099
20100 * cc-defs.el (c-auto-newline): Removed this macro since it's
20101 not used anymore.
20102
20103 * cc-engine.el (c-looking-at-bos): New helper function.
20104 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
20105 inexpr and toplevel classes apart in Pike.
20106
20107 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
20108 of case 9A.
20109
20110 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
20111 constant, since "class" can introduce an in-expression class
20112 in Pike nowadays.
20113
20114 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20115
20116 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
20117 indentation on cpp-macro lines.
20118
20119 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
20120 a syntax modifier like comment-intro, to make it possible to
20121 get syntactic indentation for preprocessor directives. It's
20122 incompatible wrt to lineup functions on cpp-macro, but it has
20123 no observable effect in the 99.9% common case where cpp-macro
20124 is set to -1000.
20125
20126 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20127
20128 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
20129 member-init-cont when the preceding arglist is several lines.
20130
20131 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20132
20133 * cc-styles.el (c-style-alist): The basic offset for the BSD
20134 style corrected to 8.
20135
20136 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20137
20138 * cc-styles.el (c-style-alist): Adjusted the indentation of
20139 brace list openers in the gnu style.
20140
20141 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20142
20143 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
20144
20145 * cc-cmds.el (c-electric-brace, c-electric-slash,
20146 c-electric-star, c-electric-semi&comma, c-electric-colon,
20147 c-electric-lt-gt, c-electric-paren): Don't reindent old lines
20148 when c-syntactic-indentation is nil.
20149
20150 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
20151 we were left at comments preceding the first statement when
20152 reaching the beginning of the buffer.
20153
20154 * cc-vars.el (c-syntactic-indentation): New variable to turn
20155 off all syntactic indentation.
20156
20157 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20158
20159 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
20160 between the text and the block comment ender when it hangs,
20161 depending on how many there are before the fill.
20162
20163 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20164
20165 * cc-engine.el (c-beginning-of-closest-statement): New helper
20166 function to go back to the closest preceding statement start,
20167 which could be inside a conditional statement.
20168 * cc-engine.el (c-guess-basic-syntax): Use
20169 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
20170
20171 * cc-engine.el (c-guess-basic-syntax): Better handling of
20172 arglist-intro, arglist-cont-nonempty and arglist-close when
20173 the arglist is nested inside parens. Cases 7A, 7C and 7F
20174 changed.
20175
20176 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
20177 up-to-date with javadoc 1.2.
20178
20179 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20180
20181 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
20182 multiline Pike type decls.
20183
20184 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20185
20186 * cc-cmds.el (c-indent-new-comment-line): Always break
20187 multiline comments in multiline mode, regardless of
20188 comment-multi-line.
20189
20190 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20191
20192 * cc-engine.el (c-guess-basic-syntax): Fixed bug with
20193 fully::qualified::names in C++ member init lists. Preamble in
20194 case 5D changed.
20195
20196 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20197
20198 * cc-langs.el (c-common-init): Handling of obsolete variables
20199 moved to c-initialize-cc-mode. More compatible style override
20200 when using global style variables.
20201 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
20202 variables moved here.
20203
20204 * cc-styles.el (c-make-styles-buffer-local): Flag style
20205 variable localness in c-style-variables-are-local-p to make
20206 the compatibility measure in c-common-init work well.
20207
20208 * cc-styles.el (c-set-style-1): c-special-indent-hook can no
20209 longer contain set-from-style.
20210 * cc-styles.el (c-initialize-builtin-style): Don't check for
20211 set-from-style on c-special-indent-hook.
20212 * cc-styles.el (c-copy-tree): Obsolete. The standard function
20213 copy-alist is sufficient now.
20214
20215 * cc-styles.el (c-set-style, c-set-style-1,
20216 c-get-style-variables): Fixes to variable initialization so
20217 that duplicate entries in styles have the same effect
20218 regardless of DONT-OVERRIDE.
20219
20220 * cc-styles.el (c-set-style-2): Fixed bug where the
20221 initialization of inheriting styles failed when the
20222 dont-override flag is set.
20223
20224 * cc-vars.el (c-special-indent-hook): Don't use set-from-style
20225 on this.
20226
20227 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
20228
20229 * cc-defs.el (c-forward-comment): Removed the workaround
20230 introduced in 5.38 since it had worse side-effects. If a line
20231 contains the string "//\"", it regarded the // as a comment
20232 start since the \ temporarily doesn't have escape syntax.
20233
20234 2000-07-17 Emmanuel Briot <briot@act-europe.fr>
20235
20236 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
20237 ada-xref.el before ada-prj.el, so that the Project menu is created
20238 when ada-prj tries to add to it.
20239 (ada-activate-keys-for-case): Suppress the characters that are not
20240 part of the Ada syntax. Better compatibility with else-mode
20241 (ada-adjust-case-interactive): When auto-casing is not active,
20242 correctly insert newlines (used to insert only ^M). Prevent the
20243 syntax table from being changed in case of an error
20244 (or '_' becomes part of a word and some commands are confused).
20245 Do nothing if ada-auto-case is nil.
20246 (ada-after-keyword-p): Ignore keywords that are also attributes
20247 (ada-batch-reformat): Update usage comment
20248 (ada-call-from-contextual-menu): New function
20249 (ada-case-read-exceptions): Reinitialize the casing exception list
20250 first to nil first, so that the casing exception file can be
20251 shared.
20252 (ada-check-defun-name): Handles "configure" keyword for gnatdist
20253 files.
20254 (ada-compile-goto-error): Fix regexp used to detect a file:line
20255 anywhere in the error message
20256 (ada-contextual-menu-last-point): New variable
20257 (ada-create-keymap): If the variable delete-key-deletes-forward is
20258 t on XEmacs, it means that DEL should delete one character
20259 forward.
20260 (ada-create-menu): Use :included instead of :visible for XEmacs.
20261 New submenu "Options".
20262 (ada-end-stmt-re): Correctly indent "select ... then abort"
20263 statements.
20264 (ada-fill-comment-paragraph): Correctly delete all leading '--'
20265 even if they don't match ada-fill-comment-prefix Fix handling of
20266 paragraphs on the first or last line of a file.
20267 (ada-format-paramlist): Fix handling of default parameter values.
20268 (ada-get-body-name): New function.
20269 (ada-get-current-indent): Optimized by searchling directly for an
20270 existing generic part or a statement outside of it. Handle
20271 ada-indent-align-comments when indenting comments Replaced some
20272 regexps by testing directly the next character. This results in a
20273 huge speedup on some files. New indentation scheme for renames
20274 statements. Stop looking for the 'while' or 'for' associated with
20275 a 'loop' at the first semicolon encountered. A "return" can also
20276 match an anonymous access subprogram declaration.
20277 (ada-get-indent-noindent): Ignore strings and comments when
20278 looking for the keywords "record" and "private".
20279 (ada-goto-matching-decl-start): When matching "if", make sure we
20280 are not in fact seeing "end if". Ignore "when" statements except
20281 when initial keyword was "begin". Fix handling of nested
20282 procedures. Add a recursive call to this function to skip over
20283 other 'end' statmts. Fix indentation for "when .. => begin"
20284 (ada-in-open-paren-p): Fix indentation for complex boolean
20285 expressions, where 'and then', 'or else' and parenthesis
20286 statements are mixed up.
20287 (ada-in-paramlist-p): Skip comments while searching for the
20288 beginning Fix handling of operator declarations.
20289 (ada-indent-align-comments): New variable
20290 (ada-indent-current): Change the syntax table only in the
20291 protected section, so that we are sure it is restored correctly.
20292 (ada-indent-on-previous-lines): Use ada-use-indent and
20293 ada-with-indent Correctly indent "select ... then"
20294 (ada-indent-region): Slight speedup.
20295 (ada-indent-renames): New variable.
20296 (ada-last-which-function-subprog, ada-last-which-function-line):
20297 New variables
20298 (ada-looking-at-semi-private): Correctly indent the 'private'
20299 keyword when it is the first word in a package declaration.
20300 (ada-loose-case-word): Stop searching if at the end of the buffer.
20301 (ada-loose-case-word, ada-capitalize-word): Recase the whole word
20302 even if point is not initially at the end of the word.
20303 (ada-matching-decl-start-re): Add "when".
20304 (ada-mode): Add support for abbrev-mode, outline-mode and
20305 which-func-mode Override the old find-file.el entry in
20306 ff-special-constructs since it is using the obsolete
20307 ada-spec-suffix variable
20308 (ada-no-auto-case): New function
20309 (ada-scan-paramlist): When parsing the argument type, accept
20310 spaces (as in "X 'Class", generated by Rational Rose).
20311 (ada-other-file-name): No longer loads the other file.
20312 (ada-popup-menu): Save and restore the current buffer and cursor
20313 position before and after displaying the menu.
20314 (ada-search-ignore-complex-boolean): New function.
20315 (ada-uncomment-region): Emacs21 already knows how to delete
20316 comments not starting in the first column.
20317 (ada-use-indent): New variable
20318 (ada-which-function): New function.
20319 (ada-with-indent): New variable
20320 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
20321 can be batch-compiled from the command line.
20322
20323 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
20324 Add to the menu when the file is loaded, not in ada-mode-hook.
20325 Add -toolbar to the default ddd command Switches moved from
20326 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
20327 ada-prj-default-comp-opt
20328 (ada-add-ada-menu): Remove the map and name parameters Add the Ada
20329 Reference Manual to the menu
20330 (ada-check-current): rewritten as a call to ada-compile-current
20331 (ada-compile): Removed.
20332 (ada-compile-application, ada-compile-current, ada-check-current):
20333 Set the compilation-search-path so that compile.el automatically
20334 finds the sources in src_dir. Automatic scrollong of the
20335 compilation buffer. C-uC-cC-c asks for confirmation before
20336 compiling
20337 (ada-compile-current): New parameter, prj-field
20338 (ada-complete-identifier): Load the .ali file before doing
20339 processing
20340 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
20341 conform to gnatmake's behavior.
20342 (ada-find-file-in-dir): New function
20343 (ada-find-references): Set the environment variables for gnatfind
20344 (ada-find-src-file-in-dir): New function.
20345 (ada-first-non-nil): Removed
20346 (ada-gdb-application): Add support for jdb, the java debugger.
20347 (ada-get-ada-file-name): Load the original-file first if not done
20348 yet.
20349 (ada-get-all-references): Handles the new ali syntax (parent types
20350 are found between <>).
20351 (ada-initialize-runtime-library): New function
20352 (ada-mode-hook): Always load a project file when a file is opened,
20353 so that the casing exceptions are correctly read.
20354 (ada-operator-re): Add all missing operators ("abs", "rem", "**").
20355 (ada-parse-prj-file): Use find-file-noselect instead of find-file
20356 to open the project file, since the latter does not work with
20357 speedbar Get default values before loading the prj file, or the
20358 default executable file name is wrong. Use the absolute value of
20359 src_dir to initialize ada-search-directories and
20360 compilation-search-path,... Add the standard runtime library to
20361 the search path for find-file.
20362 (ada-prj-default-debugger): Was missing an opening '{'
20363 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
20364 variables.
20365 (ada-prj-default-gnatmake-opt): New variable
20366 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
20367 buffers, the project file is the default one Save the windows
20368 configuration before displaying the menu.
20369 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
20370 (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
20371 ...) regexp-quote identifiers names to support operators +,
20372 -,... in regexps.
20373 (ada-remote): New function.
20374 (ada-run-application): Erase the output buffer before starting the
20375 run Support remote execution of the application. Use
20376 call-process, or the arguments are incorrectly parsed
20377 (ada-set-default-project-file): Reread the content of the active
20378 project file, not the one from the current buffer When a project
20379 file is set as the default project, all directories are
20380 automatically associated with it.
20381 (ada-set-environment): New function
20382 (ada-treat-cmd-string): New special variable ${current}
20383 (ada-treat-cmd-string): Revised. The substitution is now done for
20384 any ${...} substring
20385 (ada-xref-current): If no body was found, compiles the spec
20386 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the
20387 compiler to get rid of command line length limitations.
20388 (ada-xref-get-project-field): New function
20389 (ada-xref-project-files): New variable
20390 (ada-xref-runtime-library-specs-path)
20391 (ada-xref-runtime-library-ali-path): New variables
20392 (ada-xref-set-default-prj-values): Default run command now does a
20393 cd to the build directory. New field: main_unit Provide a default
20394 file name even if the current buffer has no prj file.
20395
20396 * ada-prj.el:
20397 Rewritten to show a tabbed-dialog.
20398 (ada-prj-add-ada-menu): Remove the map and name parameters.
20399 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
20400 New function
20401 (ada-prj-load-directory, ada-prj-subdirs-of): New functions
20402 (ada-prj-load-from-file): New function
20403 (ada-prj-save): Always save fields that depend on the current buffer
20404 (ada-prj-show-value): New function
20405
20406 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
20407 Ada mode. This will allow us to display the Ada menu in any buffer
20408 we want (for project items).
20409 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
20410 number of spaces in the header.
20411
20412 2000-07-24 Dave Love <fx@gnu.org>
20413
20414 * ediff-init.el (ediff-region-help-echo): Bind face-help.
20415
20416 2000-07-23 Noah Friedman <friedman@splode.com>
20417
20418 * type-break.el (type-break): perform autosave.
20419 Suggested by Stephen Gildea <gildea@stop.mail-abuse.org>.
20420 (type-break-do-query): Cancel query schedule while performing
20421 actual query, to avoid possibility of a second query being made
20422 while first one is already in progress.
20423 (type-break-time-stamp-format): New variable.
20424 (type-break-time-stamp): New function.
20425 (type-break-time-warning): Use it.
20426 (type-break-keystroke-warning): Use it.
20427 (type-break-noninteractive-query): Use it.
20428
20429 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
20430 cookie.
20431 Use add-minor-mode to set minor-mode-alist, if available.
20432 (eldoc-echo-area-use-multiline-p): New user option.
20433 (eldoc-echo-area-multiline-supported-p): New variable.
20434 (eldoc-docstring-format-sym-doc): Use them.
20435 (eldoc-mode): If not using idle timers, append to local post and
20436 pre command hooks. Suggested by David Byers <davby@ida.liu.se>.
20437 (eldoc-display-message-no-interference-p): Don't interfere with
20438 edebug.
20439 Add autoload cookie for eldoc-mode minor-mode-alist initialization.
20440 (eldoc-function-arglist): New function.
20441 (eldoc-function-argstring): Use it.
20442
20443 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
20444 auto save directory exists before calling directory-files.
20445
20446 2000-07-23 Dave Love <fx@gnu.org>
20447
20448 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
20449 ^o, ^u.
20450
20451 2000-07-21 Dave Love <fx@gnu.org>
20452
20453 * ediff-init.el (ediff-region-help-echo): Modify to use overlay
20454 now passed to the function. It now works properly.
20455
20456 * smerge-mode.el (smerge-mode-menu): Fill it out.
20457
20458 2000-07-20 Gerd Moellmann <gerd@gnu.org>
20459
20460 * info-look.el (info-lookup): If *info* is shown in another frame
20461 on the same display, select that frame, instead of switching to
20462 the Info buffer in another window of the selected frame.
20463
20464 * simple.el (universal-argument-map): Bind numeric keypad keys
20465 kp-0 to kp-9 and kp-subtract.
20466 (digit-argument): Handle these keys.
20467
20468 2000-07-20 Dave Love <fx@gnu.org>
20469
20470 * net/goto-addr.el (goto-address-fontify): Don't bother with
20471 buffer-modified and read-only stuff -- irrelevant with overlays.
20472 Put an extra property on the overlays and use it to clean up in
20473 case goto-address is re-run.
20474
20475 2000-07-19 Richard M. Stallman <rms@gnu.org>
20476
20477 * timer.el (run-with-idle-timer): Doc fix.
20478
20479 * mail/mail-utils.el (mail-strip-quoted-names):
20480 Handle case where <...> appears inside "...".
20481 Use replace-match to edit the string more simply.
20482 (rmail-dont-reply-to): Cope with an unmatched ".
20483
20484 2000-07-19 Dave Love <fx@gnu.org>
20485
20486 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
20487 implementation.
20488
20489 * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
20490 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
20491 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
20492
20493 2000-07-19 Gerd Moellmann <gerd@gnu.org>
20494
20495 * textmodes/refer.el: Correct maintainer's email address.
20496
20497 * progmodes/hideif.el: Correct author's email address.
20498 Fix typo in comment.
20499
20500 * xml.el: New file.
20501
20502 * mail/mailheader.el: Correct author's mail address.
20503
20504 * gnus/parse-time.el: Correct author's mail address.
20505
20506 2000-07-19 Colin Walters <walters@cis.ohio-state.edu>
20507
20508 * comint.el (comint-highlight-input, comint-highlight-face):
20509 New user options.
20510 (comint-input-ring-file-name): Change custom type.
20511 (comint-mode-map): Bind mouse-2.
20512 (comint-insert-clicked-input): New function.
20513 (comint-send-input): Handle input highlighting.
20514
20515 2000-07-18 Stefan Monnier <monnier@cs.yale.edu>
20516
20517 * mouse.el (popup-menu): New function.
20518 (mouse-major-mode-menu): Use it.
20519
20520 2000-07-18 Dave Love <fx@gnu.org>
20521
20522 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
20523 improvements.
20524
20525 2000-07-18 Gerd Moellmann <gerd@gnu.org>
20526
20527 * faces.el (face-font-selection-order)
20528 (face-font-family-alternatives): Add custom type.
20529
20530 2000-07-18 Dave Love <fx@gnu.org>
20531
20532 * cus-edit.el (custom-variable-reset-saved)
20533 (custom-variable-reset-standard): Remove unused bindings.
20534
20535 * rect.el (open-rectangle-line): Remove unused let.
20536
20537 * hl-line.el (hl-line-highlight): Check hl-line-mode.
20538
20539 2000-07-18 Gerd Moellmann <gerd@gnu.org>
20540
20541 * cdl.el: Fix `Maintainer' keyword.
20542
20543 * play/pong.el: Add author's email address.
20544
20545 2000-07-17 Sam Steingold <sds@gnu.org>
20546
20547 * files.el (insert-directory): Call `split-string' instead of
20548 re-implementing it.
20549
20550 2000-07-18 Gerd Moellmann <gerd@gnu.org>
20551
20552 * mail/vms-pmail.el: Change maintainer to FSF.
20553
20554 * net/goto-addr.el: Change maintainer to FSF.
20555
20556 * info.el (Info-title-face-alist): Removed.
20557
20558 2000-07-18 David Ponce <david@dponce.com>
20559
20560 * recentf.el (recentf-open-files): New command that works like
20561 `recentf-open-more-files', but shows the whole list of files (not just
20562 those omitted from the menu). Useful if you don't use a menu-bar!
20563 (recentf-open-more-files) Modified to use `recentf-open-files'.
20564
20565 (recentf-open-files, recentf-open-more-files)
20566 (recentf-edit-list): Dialogs use `recentf-dialog-mode'
20567
20568 (recentf-dialog-mode): New mode for dialogs. You can now just type
20569 "q" to cancel the dialogs.
20570
20571 2000-07-18 David Ponce <david@dponce.com>
20572
20573 * recentf.el: This is a major update of recentf.el. It adds new
20574 features to better organize the recentf menu and "More..." buffer.
20575
20576 Using new provided menu filtering functions you can now organize the
20577 recent files list:
20578
20579 - by major modes
20580 - by directories
20581 - by user defined rules
20582
20583 Finally, with the new `recentf-filter-changer' customizable filter you
20584 can define a ring of filters and dynamically (via the menu) cycle on
20585 each menu organization in the ring (a la msb).
20586
20587 2000-07-18 Eli Zaretskii <eliz@is.elta.co.il>
20588
20589 * eshell/eshell.el (eshell): Replace links to eshell.info with
20590 links to eshell, to avoid problems on systems where the manual is
20591 installed as `eshell'.
20592 * eshell/esh-cmd.el (eshell-cmd): Ditto.
20593 * eshell/em-smart.el (eshell-smart): Ditto.
20594 * eshell/em-banner.el (eshell-banner): Ditto.
20595 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
20596
20597 * eshell/em-unix.el (eshell-shuffle-files): Don't disable
20598 same-file check in the MS-DOS version (it does support inodes).
20599
20600 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
20601
20602 * eshell/eshell.el (eshell-directory-name):
20603 Run default directory name through convert-standard-filename.
20604
20605 2000-07-18 Kenichi Handa <handa@etl.go.jp>
20606
20607 * international/mule-cmds.el (select-safe-coding-system):
20608 Fix typo in the comment.
20609
20610 * language/european.el (compound-text):
20611 Force katakana-jisx0201 to be designated to G1.
20612
20613 * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
20614 Don't translate some national variant characters of latin-jisx0201.
20615 (x-ctext): Force katakana-jisx0201 to be designated to G1.
20616
20617 * international/kkc.el (kkc-after-update-conversion-functions):
20618 New variable.
20619 (kkc-update-conversion): Run functions in it at the tail.
20620
20621 2000-07-16 John Wiegley <johnw@gnu.org>
20622
20623 * lisp/align.el (align-newline-and-indent):
20624 Adding new function. for auto-aligning blocks of code on RET.
20625 (align-region): Fixed badly formatted minibuffer message.
20626
20627 2000-07-17 Kenichi Handa <handa@etl.go.jp>
20628
20629 * international/kkc.el (kkc-show-conversion-list-count): Customize it.
20630 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show
20631 the conversion list at first if appropriate.
20632 (kkc-next): Don't update kkc-next-count here.
20633 (kkc-prev): Don't update kkc-prev-count here.
20634 (kkc-show-conversion-list-update): Fix setting up of conversion
20635 list message.
20636
20637 2000-07-16 Stefan Monnier <monnier@cs.yale.edu>
20638
20639 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
20640
20641 2000-07-16 Dave Love <fx@gnu.org>
20642
20643 * cus-edit.el (custom-buffer-create-internal): Use a help-echo
20644 function to be more specific.
20645
20646 * wid-edit.el (widget-specify-field, widget-specify-button): Allow
20647 non-string help-echo.
20648 (widget-types-convert-widget): Defsubst it.
20649 (widget-echo-help): Try to cope with a help-echo function of two
20650 possible sorts.
20651
20652 2000-07-15 Jason Rumney <jasonr@gnu.org>
20653
20654 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
20655 Declare as obsolete.
20656
20657 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
20658
20659 2000-07-14 Gerd Moellmann <gerd@gnu.org>
20660
20661 * hilit-chg.el: Fix typo.
20662
20663 2000-07-14 Dave Love <fx@gnu.org>
20664
20665 * info.el (Info-mode-menu): Fix use of :help, :enable.
20666
20667 2000-07-14 Stefan Monnier <monnier@cs.yale.edu>
20668
20669 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
20670
20671 2000-07-13 Dave Love <fx@gnu.org>
20672
20673 * emacs-lisp/easymenu.el: Doc fixes.
20674 (easy-menu-remove): Defalias to ignore.
20675
20676 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
20677 Call throw correctly.
20678
20679 2000-07-13 Gerd Moellmann <gerd@gnu.org>
20680
20681 * faces.el (frame-background-mode): Doc fix.
20682
20683 * simple.el (eval-expression-print-length): Change custom type to
20684 allow entering nil as value.
20685
20686 2000-07-13 Dave Love <fx@gnu.org>
20687
20688 * progmodes/fortran.el (fortran-imenu-generic-expression):
20689 Change definition layout.
20690 (fortran-mode-menu): Reinstate customize entries.
20691
20692 * cus-edit.el (custom-group-menu-create, customize-menu-create):
20693 Use :filter, per old XEmacs code.
20694
20695 2000-07-12 Gerd Moellmann <gerd@gnu.org>
20696
20697 * term.el (term-send-raw-meta): Strip modifiers from the keyboard
20698 event when deciding what to send to the terminal.
20699
20700 2000-07-12 Dave Love <fx@gnu.org>
20701
20702 * cus-start.el: Add optional version as 4th element of specs and
20703 use it for several things new in v21. Remove load-path. Fix type
20704 of line-number-display-limit.
20705
20706 2000-07-11 Dave Love <fx@gnu.org>
20707
20708 * progmodes/fortran.el: Don't require easymenu.
20709 Use repeat counts in various regexps.
20710 (fortran-mode-syntax-table): Defvar directly.
20711 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
20712 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
20713 Use defvar, not defconst.
20714 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'.
20715 (fortran-mode): Set fortran-comment-line-start-skip,
20716 fortran-comment-line-start-skip, dabbrev-case-fold-search.
20717 (fortran-comment-indent): Use defsubst.
20718 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
20719 Use fortran-comment-indent, not fortran-comment-indent-function.
20720 (fortran-comment-region, fortran-electric-line-number): Simplify.
20721 (fortran-auto-fill): New function.
20722 (fortran-do-auto-fill): Deleted.
20723 (fortran-find-comment-start-skip):
20724 Check for non-null comment-start-skip.
20725 (fortran-auto-fill-mode, fortran-fill-statement):
20726 Use fortran-auto-fill.
20727 (fortran-fill): Use fortran-auto-fill. Check for null
20728 comment-start-skip. Simplify final clause and use end-of-line finally.
20729
20730 * widget.el (widget-plist-member): New alias.
20731
20732 2000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
20733
20734 * eshell/esh-module.el (toplevel): Reference
20735 byte-compile-current-file only if it is bound.
20736
20737 2000-07-10 Gerd Moellmann <gerd@gnu.org>
20738
20739 * dired.el: Don't require `dired-aux'.
20740
20741 2000-07-10 Miles Bader <miles@lsi.nec.co.jp>
20742
20743 * dired-aux.el (dired-show-file-type): New function.
20744 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
20745 (dired-show-file-type): Add autoload.
20746
20747 2000-07-10 Kenichi Handa <handa@etl.go.jp>
20748
20749 * international/mule-diag.el (describe-font): Adjusted for the
20750 change of fontset-info.
20751 (print-fontset): Likewise.
20752
20753 2000-07-09 Stefan Monnier <monnier@cs.yale.edu>
20754
20755 * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
20756
20757 2000-07-07 Gerd Moellmann <gerd@gnu.org>
20758
20759 * bindings.el: Bind `[delete]' to delete-char.
20760
20761 * dired.el (dired-find-alternate-file): New function.
20762 (dired-mode-map): Bind `a' to dired-find-alternate-file.
20763 (toplevel): Require dired-aux when compiling.
20764 (dired-buffers): Move defvar within file to avoid compiler warning.
20765
20766 * info.el (Info-last-search): Variable removed.
20767 (Info-search-history): New variable.
20768 (Info-search): New Info-search-history.
20769
20770 * battery.el, info-look.el: Change author's mail address.
20771
20772 2000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
20773
20774 * mail/rmail.el (rmail-clear-headers): Don't throw an error
20775 if rmail-ignored-headers is nil.
20776 (rmail-retry-failure): Bind rmail-ignored-headers and
20777 rmail-displayed-headers to nil.
20778
20779 2000-07-06 Gerd Moellmann <gerd@gnu.org>
20780
20781 * lpr.el (lpr-page-header-switches): Add `-h' switch.
20782 (print-region-1): Don't hard code `-h' here.
20783
20784 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
20785
20786 2000-07-01 Francesco Potorti` <pot@gnu.org>
20787
20788 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
20789 exim can use "your message" instead of "the message".
20790
20791 2000-07-06 Stefan Monnier <monnier@cs.yale.edu>
20792
20793 * facemenu.el: Docstrings fixes.
20794 (facemenu-get-face): Don't use internal-find-face.
20795 (facemenu-iterate): Rename arg to match the docstring.
20796
20797 * newcomment.el (uncomment-region): Be more careful when skipping
20798 backwards over `=' not to bump into BOBP.
20799
20800 2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
20801
20802 * ediff-diff.el (ediff-wordify): Use syntax table.
20803 * ediff-init.el (ediff-has-face-support-p): Use
20804 ediff-color-display-p.
20805 (ediff-color-display-p): Use display-color-p, changed to defun
20806 from defsubst.
20807 Got rid of special cases for NeXT and OS/2.
20808 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
20809 face.
20810
20811 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
20812
20813 * emacs-lisp/lucid.el: Require CL.
20814 (copy-tree, remprop): Remove, it's provided by CL.
20815 (map-keymap): Define in terms of cl-map-keymap.
20816 (extent-property, set-extent-end-glyph): New functions.
20817
20818 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
20819
20820 2000-07-05 Gerd Moellmann <gerd@gnu.org>
20821
20822 * Makefile.in (DONTCOMPILE): Add comment that the name may
20823 not be changed without changing the make-dist script.
20824
20825 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
20826 (cl-mapc): Use mapc instead of cl-old-mapc.
20827
20828 2000-07-05 Andrew Innes <andrewi@gnu.org>
20829
20830 * makefile.nt: Add support for `bootstrap' and related targets.
20831
20832 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
20833
20834 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
20835 (easy-menu-do-define): Use `menu-item' format.
20836 Handle case where easy-menu-create-menu returns a symbol.
20837 Manually call the potential top-level filter in the function binding.
20838 (easy-menu-filter-return): New arg NAME.
20839 Convert to a keymap if MENU is an XEmacs menu.
20840 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item.
20841 (easy-menu-converted-items-table, easy-menu-convert-item):
20842 New var and fun to memoize easy-menu-convert-item-1.
20843 (easy-menu-do-add-item): Use it.
20844 (easy-menu-create-menu): Use easy-menu-convert-item.
20845 Wrap easy-menu-filter-return around any :filter specification.
20846 Don't convert the menu if a filter was specified.
20847 Tell easy-menu-make-symbol not to check for MENU being an expression.
20848 (easy-menu-make-symbol): New arg NOEXP.
20849
20850 2000-07-05 Gerd Moellmann <gerd@gnu.org>
20851
20852 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
20853 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
20854 (eval-defun): If called with prefix arg, instrument code for
20855 Edebug.
20856
20857 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
20858 similar to that of eval-defun.
20859
20860 2000-07-04 Dave Love <fx@gnu.org>
20861
20862 * hl-line.el (hl-line-overlay): Make it permanent-local.
20863
20864 * calendar/todo-mode.el: Replaced with a working version, based on
20865 1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
20866
20867 2000-07-03 Miles Bader <miles@lsi.nec.co.jp>
20868
20869 * paths.el (prune-directory-list): New function.
20870 (Info-default-directory-list): Rewritten to more methodically
20871 enumerate a big list of possible info directories (based on the
20872 list used by the standalone info reader).
20873
20874 * info.el (info-initialize): Use prune-directory-list to remove
20875 non-existent directories from Info-directory-list.
20876
20877 * paths.el (Info-default-directory-list): Try a list of possible
20878 info-directories instead of a single one. Add the possible
20879 info directory "/usr/share/info".
20880
20881 * woman.el (woman-man.conf-path): Explicitly include the debian
20882 man-db config file "/etc/manpath.config".
20883 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
20884 are present in `manpath.config'.
20885 (woman-manpath): Include "/usr/share/man".
20886
20887 2000-07-03 Gerd Moellmann <gerd@gnu.org>
20888
20889 * frame.el (blink-cursor-mode): Don't hide cursor initially.
20890
20891 * startup.el (command-line): Initialize blink-cursor based
20892 on window-system.
20893
20894 * frame.el (blink-cursor): Default to nil if not running under
20895 a window-system.
20896
20897 * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
20898 (face-x-resources): Remove duplicate entry for :font.
20899
20900 * textmodes/refer.el (refer-find-entry-internal): Use some-window
20901 instead of cycling through windows with next-window.
20902
20903 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
20904 of cycling through windows with next-window.
20905
20906 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
20907 of cycling through windows with next-window.
20908
20909 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
20910 (edebug-get-displayed-buffer-points): Use walk-windows/some-window
20911 instead of cycling through windows with next-window.
20912
20913 * calendar/appt.el (appt-select-lowest-window): Use walk-windows
20914 instead of cycling through windows with next-window.
20915
20916 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
20917 of cycling through windows with next-window.
20918
20919 * terminal.el (te-process-output): Use walk-windows instead of
20920 cycling through windows with next-window.
20921
20922 * server.el (server-switch-buffer): Use some-window instead of
20923 cycling through windows with next-window.
20924
20925 * window.el (some-window): New function.
20926 (walk-windows): Remove reference to walk-windows-start.
20927
20928 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
20929
20930 2000-07-03 Richard Stallman <rms@gnu.org>
20931
20932 * window.el (walk-windows): Guarantee termination by keeping a list
20933 of all the windows already handled.
20934
20935 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
20936
20937 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
20938 window-system.
20939
20940 * man.el (Man-notify-when-ready): Don't use window-system. If
20941 Man-notify-method is newframe, and the display is not
20942 multi-frame, select the frame created for the man page.
20943 (Man-init-defvars): Doc fix.
20944
20945 2000-06-28 Gerd Moellmann <gerd@gnu.org>
20946
20947 * faces.el (region): Change background color for light background.
20948
20949 * ediff-wind.el (ediff-setup-control-frame): Remove :box
20950 attribute from mode-line face of Ediff control frame.
20951
20952 * replace.el (query-replace-map): Bind `e' like `E'.
20953
20954 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
20955
20956 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
20957 Change name to "Select All".
20958
20959 * dos-fns.el (convert-standard-filename): Fix last change.
20960
20961 2000-06-27 Gerd Moellmann <gerd@gnu.org>
20962
20963 * help.el (describe-variable): Don't insert a second `'s' in front
20964 of the string `value is shown below'. Since the syntax-table is
20965 set to emacs-lisp-mode-syntax-table, forward-sexp skips over
20966 an existing `'s', so that this won't be deleted.
20967
20968 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
20969 * pcmpl-unix.el: New files.
20970
20971 2000-06-26 Stefan Monnier <monnier@cs.yale.edu>
20972
20973 * wid-edit.el (widget-member): Use the new plist-member.
20974
20975 2000-06-26 Gerd Moellmann <gerd@gnu.org>
20976
20977 * replace.el (perform-replace): Undo change of 2000-04-04.
20978 Instead, move backward 1 character at the end of the loop when
20979 necessary.
20980
20981 * faces.el (fringe): Change face for different backgrounds.
20982
20983 * eshell/esh-module.el (toplevel): Load defgroup's differently;
20984 patch from John.
20985
20986 * eshell/*.el: Change spelling of the Free Software Foundation.
20987
20988 * eshell/esh-toggle.el: Removed.
20989
20990 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
20991
20992 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
20993 interactively.
20994
20995 2000-06-26 Alex Schroeder <alex@gnu.org>
20996
20997 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
20998 `define-key'; instead of checking `(emacs-version)' check for
20999 `set-keymap-parent' and `set-keymap-name' directly. Add entries
21000 for `;' and `o' which might be electric.
21001
21002 (sql-electric-stuff): New user option.
21003 (sql-magic-go): New function which uses `sql-electric-stuff'.
21004 (sql-magic-semicolon): New function which uses
21005 `sql-electric-stuff'.
21006
21007 (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
21008 is not fboundp.
21009
21010 (sql-oracle-options): New variable.
21011 (sql-oracle): Use it.
21012
21013 (sql-imenu-generic-expression): Doc change.
21014 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
21015 is used.
21016
21017 (sql-informix): Added command line parameter "-" to force
21018 sql-informix-program to use stdout.
21019
21020 2000-06-25 Eli Zaretskii <eliz@is.elta.co.il>
21021
21022 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
21023 (cp864-decode-table): Doc fix.
21024 (cp720-decode-table): New variable, supports the Arabic OEM
21025 codepage used by Windows.
21026 (cp737-decode-table): New, Greek OEM codepage used by Windows.
21027
21028 2000-06-23 Dave Love <fx@gnu.org>
21029
21030 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
21031 (font-lock-fontify-anchored-keywords): Use
21032 line-beginning-position.
21033 (global-font-lock-mode): Use mapc.
21034
21035 2000-06-23 Stefan Monnier <monnier@cs.yale.edu>
21036
21037 * eshell/esh-module.el: Require CL when compiling.
21038
21039 2000-06-23 Gerd Moellmann <gerd@gnu.org>
21040
21041 * comint.el (comint-substitute-in-file-name): Call replace-match
21042 with second and third arg t.
21043
21044 * cus-edit.el (custom-button-face, custom-button-pressed-face):
21045 Specify foreground color.
21046
21047 * faces.el (tool-bar, mode-line, header-line): Specify foreground
21048 color.
21049
21050 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
21051
21052 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
21053 cddr instead of cdddr.
21054
21055 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
21056 instead of copy-list.
21057
21058 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
21059 of copy-list.
21060
21061 * subdirs.el: Add eshell subdirectory.
21062
21063 * eshell: New subdirectory containing the Eshell package.
21064
21065 * pcomplete.el: New file.
21066
21067 2000-06-23 Paul Eggert <eggert@twinsun.com>
21068
21069 * mail/mailpost.el (post-mail-send-it): Make sure file has
21070 proper permissions from birth.
21071
21072 * files.el (basic-save-buffer-2): When temporarily setting
21073 file modes, set them to current modes plus 0200, not to 0777.
21074
21075 * emerge.el (emerge-make-temp-file): Make sure file has proper
21076 permissions from birth.
21077
21078 2000-06-22 Eli Zaretskii <eliz@is.elta.co.il>
21079
21080 * files.el (make-backup-file-name-1): On DOS/Windows, run the
21081 backup file name through convert-standard-filename.
21082
21083 * dos-fns.el (convert-standard-filename): Convert leading
21084 directories as well. When long file names are supported, convert
21085 characters that are invalid in Windows file names.
21086
21087 2000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
21088
21089 * ps-print.el: Fix bug: if ^L is the very first buffer character,
21090 ps-print crashes. New feature: page selection for printing. Create
21091 raw-text-unix coding system for XEmacs. Doc fix.
21092 (ps-print-version): New version number (5.2.3).
21093 (ps-plot-region): Bug fix.
21094 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
21095 (ps-header-sheet, ps-generate, ps-end-job): Code fix.
21096 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
21097 funs.
21098 (ps-selected-pages, ps-last-selected-pages, ps-first-page)
21099 (ps-last-page): New vars.
21100
21101 2000-06-21 Gerd Moellmann <gerd@gnu.org>
21102
21103 * progmodes/sh-script.el (sh-while-getopts): Fix handling of
21104 empty option string.
21105
21106 2000-06-21 Eli Zaretskii <eliz@is.elta.co.il>
21107
21108 * man.el (man): Doc fix.
21109
21110 2000-06-21 Kenichi Handa <handa@etl.go.jp>
21111
21112 * international/mule-cmds.el (set-language-info-alist): Docstring
21113 fixed.
21114
21115 2000-06-20 Gerd Moellmann <gerd@gnu.org>
21116
21117 * version.el (emacs-version): Use ISO date format.
21118
21119 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
21120 instead of `M-backspace'.
21121
21122 * simple.el (turn-off-auto-fill): New function.
21123
21124 2000-06-20 Stefan Monnier <monnier@cs.yale.edu>
21125
21126 * jit-lock.el (with-buffer-prepared-for-jit-lock):
21127 Renamed from with-buffer-prepared-for-font-lock and use
21128 inhibit-modification-hooks rather than setting *-change-functions.
21129 Update all functions to use the new name.
21130 (jit-lock-first-unfontify-pos): New semantics (and doc).
21131 (jit-lock-mode): Make non-interactive.
21132 Don't automatically turn on font-lock.
21133 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
21134 Always use jit-lock-after-change.
21135 Remove and restore font-lock-after-change-function.
21136 (turn-on-jit-lock, jit-lock-after-fontify-buffer)
21137 (jit-lock-after-unfontify-buffer): Remove.
21138 (jit-lock-stealth-fontify):
21139 Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
21140 (jit-lock-after-change): Set the `fontified' text-prop to nil.
21141
21142 2000-06-20 Sam Steingold <sds@gnu.org>
21143
21144 * emacs-lisp/cl-indent.el (toplevel): Indent
21145 `print-unreadable-object' properly. Untabify.
21146
21147 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
21148
21149 * textmodes/reftex.el (reftex-find-citation-regexp-format):
21150 Support for bibentry.
21151 (reftex-compile-variables): Fixed problem with end of section-re.
21152
21153 * texmodes/reftex-dcr.el (reftex-view-crossref,
21154 reftex-view-crossref-from-bibtex):
21155 Deal with changed `reftex-find-citation-regexp-format'.
21156 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
21157 Replaced `remprop' with `put'.
21158 (reftex-view-crossref, reftex-view-crossref-when-idle):
21159 Support for bibentry.
21160
21161 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
21162 New entry for bibentry package.
21163
21164 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
21165 Regexp also matches "\nobibliography".
21166
21167 * textmodes/reftex-global.el (reftex-renumber-simple-labels):
21168 Call `reftex-ensure-write-access' before doing anything.
21169 (reftex-ensure-write-access): New function.
21170
21171 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
21172
21173 * progmodes/idlwave.el: File re-installed (update to version 4.2)
21174
21175 * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
21176
21177 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
21178
21179 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
21180
21181
21182 2000-06-20 Dave Love <fx@gnu.org>
21183
21184 * faces.el (frame-background-mode): Use set-default, not set, in
21185 setter.
21186 (frame-update-faces, frame-update-face-colors): Define with
21187 defalias.
21188
21189 * enriched.el (enriched-decode-foreground)
21190 (enriched-decode-background): Don't use internal-find-face.
21191
21192 * apropos.el: Doc fixes.
21193
21194 * cus-edit.el (customize-changed-options): Check arg.
21195 (customize-version-lessp): Don't require decimal point.
21196
21197 * custom.el (defcustom, defgroup): Doc fix.
21198
21199 * newcomment.el (comment) <defgroup>: Add :version.
21200 (comment-multi-line): Doc fix.
21201
21202 * emulation/mlsupport.el (define-hooked-local-abbrev,
21203 define-hooked-global-abbrev): Fix, using define-abbrev.
21204
21205 2000-06-19 Gerd Moellmann <gerd@gnu.org>
21206
21207 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
21208 the whole buffer.
21209
21210 2000-06-19 Dave Love <fx@gnu.org>
21211
21212 * menu-bar.el (menu-bar-options-save): New function.
21213 (menu-bar-options-menu): Use it.
21214 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
21215 Simplify.
21216
21217 2000-06-19 Andreas Schwab <schwab@suse.de>
21218
21219 * progmodes/etags.el (tags-query-replace): Put new parameters
21220 START and END at the end, for backward compatibility.
21221
21222 2000-06-19 Kenichi Handa <handa@etl.go.jp>
21223
21224 * international/codepage.el:
21225 (cp-coding-system-for-codepage-1): Delete special codes for
21226 generating xxx-dos coding system because now a CCL based coding
21227 system can handle EOL conversion by default.
21228
21229 * international/mule.el (make-coding-system): Generate subsidiary
21230 coding systems for EOL handling variants even for a CCL based
21231 coding system.
21232
21233 2000-06-19 Kenichi Handa <handa@etl.go.jp>
21234
21235 * international/isearch-x.el (isearch-minibuffer-input-method)
21236 (isearch-minibuffer-input-method-function): These variables
21237 deleted.
21238 (isearch-with-input-method): Don't use the above variables.
21239 (isearch-process-search-multibyte-characters): Likewise. Call
21240 read-string with the arg INHERIT-INPUT-METHOD t.
21241
21242 2000-06-17 Stefan Monnier <monnier@cs.yale.edu>
21243
21244 * font-lock.el (font-lock-after-fontify-buffer)
21245 (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
21246
21247 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
21248 Use consistent make-local-variable style for font-lock-fontified.
21249 (jit-lock-fontify-buffer):
21250 Don't bother checking for font-lock-mode and jit-lock-mode.
21251
21252 * time.el: Remove trailing ^M that prevent CVS-merging.
21253
21254 2000-06-16 Gerd Moellmann <gerd@gnu.org>
21255
21256 * Makefile.in (distclean): New target.
21257
21258 2000-06-16 Stefan Monnier <monnier@cs.yale.edu>
21259
21260 * Makefile.in (srcdir): Define for update-subdirs.
21261
21262 2000-06-16 Gerd Moellmann <gerd@gnu.org>
21263
21264 * find-lisp.el: New file.
21265
21266 2000-06-16 Andrew Innes <andrewi@gnu.org>
21267
21268 * time.el (display-time-mail-function): New variable, to allow
21269 external packages to indicate when new mail is available.
21270 (display-time-update): Use it.
21271
21272 2000-06-16 Kenichi Handa <handa@etl.go.jp>
21273
21274 * international/mule.el (mule-version): Change version name to
21275 SAKAKI. AOI has already been used by Meadow.
21276
21277 * international/quail.el (quail-show-guidance-buf): To find the
21278 bottom window (but minibuffer), pay attention to the height of
21279 minibuffer.
21280
21281 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
21282
21283 * arc-mode.el (archive-mode-map): Use the new menu-item format for
21284 menu-bar menus. Add help strings. Don't remove the Edit menu
21285 from the menu bar, as the menu bar has enough space now.
21286
21287 * Makefile.in (SHELL): Make sure /bin/sh is used.
21288
21289 * woman.el (woman-man-buffer): Fix bold and underlined CJK
21290 characters, which use series of two ^H characters instead of one.
21291
21292 2000-06-15 Gerd Moellmann <gerd@gnu.org>
21293
21294 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
21295 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
21296 functions.
21297 (Info-find-node-2): Try a case-sensitive search first, then
21298 do a case-insensitive search.
21299
21300 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
21301 tutorials.
21302
21303 * complete.el (PC-env-vars-alist): New variable.
21304 (PC-complete-as-file-name): New function.
21305 (partial-completion-mode): Initialize PC-env-vars-alist from
21306 process-environment.
21307 (PC-do-completion): Handle completion of env vars.
21308
21309 * info.el (Info-set-mode-line): Show file name in mode line,
21310 use `*Info*' instead of `Info:'.
21311
21312 * startup.el (command-line-1): Change copyright messages to year
21313 2000.
21314
21315 2000-06-15 Dave Love <fx@gnu.org>
21316
21317 * net/goto-addr.el (goto-address-fontify): Use keymap property,
21318 not local-map.
21319
21320 2000-06-15 Kenichi Handa <handa@etl.go.jp>
21321
21322 * international/mule.el (set-buffer-file-coding-system): Almost
21323 rewritten to handle `undecided' as no-op.
21324
21325 2000-06-14 Gerd Moellmann <gerd@gnu.org>
21326
21327 * Makefile.in: New file.
21328
21329 * Makefile: Removed.
21330
21331 * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
21332 (goto-address-highlight-keymap): Bind C-c RET.
21333
21334 2000-06-14 Kenichi Handa <handa@etl.go.jp>
21335
21336 * mail/sendmail.el (sendmail-send-it): The temporary buffer
21337 inherits buffer-file-coding-system of the current buffer.
21338
21339 * tar-mode.el (tar-extract): For goto-char, use (point-min), not
21340 0. Give correct argument to set-auto-coding-function.
21341 (tar-expunge): For goto-char, use (point-min), not 0.
21342 (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
21343 (tar-subfile-save-buffer): Likewize.
21344
21345 * international/mule.el
21346 (after-insert-file-set-buffer-file-coding-system): Call
21347 set-buffer-file-coding-system with the arg FORCE t.
21348
21349 2000-06-13 Gerd Moellmann <gerd@gnu.org>
21350
21351 * mail/sendmail.el (mail-specify-envelope-from): Initialize to
21352 nil. Contemporary sendmails issue an X-Authentication-Warning if
21353 the sender is set with `-f'.
21354
21355 2000-06-13 Dave Love <fx@gnu.org>
21356
21357 * help.el (describe-function-1): Kluge around cases of functions
21358 fset to subrs whose doc doesn't match their symbol-name.
21359
21360 * image.el (insert-image): Default STRING to a space.
21361
21362 * info.el Doc fixes.
21363 (Info-build-node-completions): Match Ref tags.
21364
21365 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
21366
21367 * frame.el (display-multi-frame-p, display-multi-font-p): New
21368 defaliases for display-graphic-p.
21369
21370 * hl-line.el: Fixed a typo in commentary.
21371
21372 2000-06-13 Kenichi Handa <handa@etl.go.jp>
21373
21374 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
21375 fixed.
21376
21377 2000-06-12 Dave Love <fx@gnu.org>
21378
21379 * image.el (insert-image): Save a little consing.
21380
21381 2000-06-12 Kenichi Handa <handa@etl.go.jp>
21382
21383 * language/tibet-util.el: Convert all tibetan-1-column characters
21384 to the corresponding tibetan characters.
21385 (tibetan-add-components): Delete code for the special treatment of
21386 'a chung.
21387
21388 * language/tibetan.el (tibetan-composable-pattern): Fix previous
21389 change.
21390 (tibetan-vowel-transcription-alist): More rules added.
21391 (tibetan-composite-vowel-alist): New variable.
21392 (tibetan-precomposition-rule-alist): More rules added.
21393
21394 2000-06-12 Stefan Monnier <monnier@cs.yale.edu>
21395
21396 * startup.el (command-line): Only call menu-bar-mode if interactive.
21397
21398 * thingatpt.el (toplevel symbol-properties):
21399 * textmodes/makeinfo.el (makeinfo-compile):
21400 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
21401 * progmodes/hideif.el (hif-compress-define-list)
21402 (hide-ifdef-use-define-alist):
21403 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
21404 (ange-ftp-vms-add-file-entry):
21405 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
21406 * man.el (Man-build-man-command):
21407 * mail/rnewspost.el (news-reply-header-hook):
21408 * info.el (Info-insert-dir):
21409 * emulation/mlconvert.el (backward-word, forward-word, setq):
21410 * emacs-lisp/gulp.el (gulp-send-requests):
21411 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
21412 (byte-optimize-inline-handler, byte-optimize-form-code-walker)
21413 (byte-optimize-apply, end of file):
21414 * emacs-lisp/advice.el (ad-advice-class-completion-table)
21415 (ad-make-freeze-definition):
21416 * startup.el (command-line, command-line-1): Don't quote lambdas.
21417
21418 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
21419 (cvs-cleanup-removed): New function.
21420 (cvs-cleanup-functions): New var.
21421 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
21422 some flexibility in specifying additional entries to auto-cleanup.
21423 (cvs-quickdir): New function.
21424 (cvs-mode-insert): Use cvs-fileinfo-from-entries.
21425 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
21426 (cvs-mode-find-file): Check that we are on a filename or dirname
21427 when invoked through a mouse-click.
21428 (cvs-full-path): Remove.
21429 (cvs-dired-action): Re-introduced.
21430 (cvs-dired-noselect): Use it.
21431 (vc-post-command-functions): use this new hook if available.
21432
21433 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
21434 (cvs-status-map): Don't inherit from cvs-mode-map anymore.
21435 (cvs-filename-map, cvs-dirname-map): Remove.
21436 (cvs-default-action): Remove.
21437 (cvs-add-face): Use `keymap' rather than `local-map' property, and only
21438 if the arg is really a keymap.
21439 (cvs-fileinfo-pp): Don't use any special map for file and dir names.
21440 Don't hardcode the mapping from state (aka type) to face, but check
21441 the var cvs-fi-<type>-face instead.
21442 (cvs-fileinfo-from-entries): New function.
21443
21444 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
21445 Docstring fix.
21446 (cvs-find-file-and-jump): Change default to be safer.
21447 (cvs-mode-diff-map): Define it as a function as well.
21448 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
21449 Bind mouse-2 in this global map rather than with text-properties.
21450
21451 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
21452 file to resolve the ambiguity between C(conflict) and C(need-merge).
21453
21454 2000-06-12 Kenichi Handa <handa@etl.go.jp>
21455
21456 * international/mule.el (set-buffer-file-coding-system): If
21457 CODING-SYSTEM is nil, set buffer-file-coding-system to nil
21458 unconditionally.
21459
21460 2000-06-12 Dave Love <fx@gnu.org>
21461
21462 * wid-edit.el (widget-specify-button): Really suppress the face if
21463 required.
21464
21465 2000-06-11 Gerd Moellmann <gerd@gnu.org>
21466
21467 * term/x-win.el (x-colors): Add colors from recent rgb.txt.
21468
21469 2000-06-11 Stefan Monnier <monnier@cs.yale.edu>
21470
21471 * imenu.el (imenu-generic-expression): Docstring fix.
21472
21473 * composite.el (composition-function-table): Move the `put'
21474 below the autoload cookie so we can load the file before loaddefs.
21475
21476 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
21477
21478 * emacs-lisp/autoload.el (make-autoload): Use `cond'.
21479 Handle easy-mmode-define-global-mode.
21480 For complex macros like define-minor-mode that can generate
21481 several autoload entries, try to autoload entries in the
21482 macroexpanded code.
21483
21484 * emacs-lisp/easy-mmode.el (define-minor-mode):
21485 If KEYMAP is a symbol, just use it.
21486 Use byte-compile-current-file and load-file-name to infer the
21487 proper :require to pass to defcustom.
21488 Wrap the hook var into `progn' so as not to autoload it.
21489 Add a :autoload-end cookie.
21490 Be more careful about the evaluation of KEYMAP.
21491 (easy-mmode-define-global-mode): Add a :autoload-end cookie.
21492 (define-derived-mode): Move define-abbrev-table outside of defvar.
21493
21494 2000-06-10 Stefan Monnier <monnier@cs.yale.edu>
21495
21496 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
21497 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
21498 (backup-compiled-files): Ignore errors during `tar'.
21499 (bootstrap): Make autoloads before elc files.
21500
21501 2000-06-10 Kenichi Handa <handa@etl.go.jp>
21502
21503 * international/mule.el (set-buffer-file-coding-system): If one of
21504 undecided-XXX is specified, change only EOL conversion.
21505
21506 * international/mule-conf.el (unix): New alias for the coding
21507 system undecided-unix.
21508
21509 2000-06-09 Dave Love <fx@gnu.org>
21510
21511 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
21512
21513 * progmodes/executable.el: Byte compile dynamic.
21514 (executable-insert): Change custom type.
21515 (executable-find): Add autoload cookie.
21516 (executable-make-buffer-file-executable-if-script-p): New
21517 function. After Noah Friedman.
21518
21519 * files.el (after-save-hook): Customize, with
21520 executable-make-buffer-file-executable-if-script-p as an option.
21521
21522 2000-06-09 Kenichi Handa <handa@etl.go.jp>
21523
21524 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
21525 "tib24p-mule.bdf" for Tibetan.
21526
21527 * composite.el (decompose-composite-char): Declare it as obsolete.
21528
21529 * man.el (Man-fontify-manpage): Pay attention to underline and
21530 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
21531
21532 2000-06-08 Gerd Moellmann <gerd@gnu.org>
21533
21534 * thingatpt.el (forward-thing): Use functionp instead of fboundp.
21535 Set maintainer to FSF since author isn't reachable.
21536
21537 2000-06-08 Dave Love <fx@gnu.org>
21538
21539 * international/mule-cmds.el (select-safe-coding-system): If
21540 DEFAULT-CODING-SYSTEM is not specified, also check the most
21541 preferred coding-system if buffer-file-coding-system is
21542 `undecided'. From Handa.
21543
21544 2000-06-08 Kenichi Handa <handa@etl.go.jp>
21545
21546 * international/mule.el
21547 (after-insert-file-set-buffer-file-coding-system): If the buffer
21548 size is greater than INSERTED, judget that we are not visiting.
21549
21550 2000-06-07 Rajesh Vaidheeswarran <rv@gnu.org>
21551
21552 * whitespace.el (defgroup whitespace): Comment out `:version'.
21553 XEmacs 20.4 has problems defining the group with this present.
21554 We'll have this commented out till get resolve the problem.
21555
21556 2000-06-07 John Wiegley <johnw@gnu.org>
21557
21558 * align.el (align-dq-string-modes, align-sq-string-modes)
21559 (align-open-comment-modes): Add pyhton-mode.
21560 (align-rules-list): Use get-text-property instead of
21561 text-properties-at.
21562 (align-rules-list): Add python-assignment.
21563 (align-rules-list): Change perl-comma-delimiter to
21564 basic-comma-delimiter. Use if for Perl modes and python-mode.
21565 (align-rules-list): Add python-chain-logic and
21566 basic-line-continuation.
21567
21568 2000-06-07 Jari Aalto <jari.aalto@poboxes.com>
21569
21570 * apropos.el (apropos-mode-hook): New user variable.
21571 (apropos-mode): Run apropos-mode-hook.
21572
21573 2000-06-07 David Ponce <david@dponce.com>
21574
21575 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
21576 commands. Require `wid-edit' at run-time.
21577
21578 2000-06-07 David Ponce <david@dponce.com>
21579
21580 * recentf.el: Added some "Commentary".
21581 (recentf-open-more-files, recentf-edit-list): Minor changes to
21582 move the point at the top of the file list. This behaviour is
21583 consistent with the menu one when the list contains a lot of
21584 files.
21585 (recentf-cleanup): Now displays the number of items removed from
21586 the list.
21587 (recentf-relative-filter) New menu filter to show filenames
21588 relative to `default-directory'.
21589
21590 2000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
21591
21592 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size
21593 with/without giving an error if PostScript printer doesn't have this
21594 kind of page size. Zebra Stripe continues or restarts on next page.
21595 Manual/automatic paper feeding. Switch or not the header.
21596 (ps-print-version): New version number (5.2.2).
21597 (ps-windows-system): Include emx as a Windows system.
21598 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
21599 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
21600 (ps-background-text): Code fix.
21601 (ps-error-handler-message, ps-user-defined-prologue)
21602 (ps-print-prologue-header, ps-printer-name)
21603 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
21604 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
21605 (ps-use-face-background): Customization fix.
21606 (ps-n-up-database): Data fix.
21607 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
21608 (ps-switch-header): New vars.
21609 (ps-xemacs-color-name, ps-face-foreground-name)
21610 (ps-face-background-name, ps-boolean-constant): New funs.
21611
21612 2000-06-07 Dave Love <fx@gnu.org>
21613
21614 * allout.el: New version from Manheimer.
21615
21616 2000-06-07 Kenichi Handa <handa@etl.go.jp>
21617
21618 * textmodes/fill.el (fill-find-break-point): Check the validity of
21619 charset.
21620
21621 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
21622
21623 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
21624 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
21625 Call display-color-p and display-mouse-p instead of looking at
21626 window-system.
21627
21628 2000-06-06 Dave Love <fx@gnu.org>
21629
21630 * image.el (find-image): Doc fix. Return nil if image not found.
21631 (put-image, insert-image): Make STRING arg optional.
21632
21633 2000-06-06 Kenichi Handa <handa@etl.go.jp>
21634
21635 * language/vietnamese.el: Remove eval-when-compile.
21636 (viet-viscii-nonascii-translation-table): Define it as a
21637 translation table made from viet-viscii-decode-table.
21638 (viet-viscii-encode-table): Define it as a translation table made
21639 from the reverse map of above.
21640 (viet-vscii-nonascii-translation-table): Define it as a
21641 translation table made from viet-vscii-decode-table.
21642 (viet-vscii-encode-table): Define it as a translation table made
21643 from the reverse map of above.
21644 (ccl-decode-viscii): Use translate-character.
21645 (ccl-encode-viscii, ccl-encode-viscii-font)
21646 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
21647 Likewize.
21648
21649 * language/cyrillic.el: Remove eval-when-compile.
21650 (cyrillic-koi8-r-nonascii-translation-table): Define it as a
21651 translation table made from cyrillic-koi8-r-decode-table.
21652 (cyrillic-koi8-r-encode-table): Define it as a translation table
21653 made from the reverse map of above.
21654 (ccl-decode-koi8): Use translate-character.
21655 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
21656 (cyrillic-alternativnyj-nonascii-translation-table): Define it as
21657 a translation table made from cyrillic-alternativnyj-decode-table.
21658 (cyrillic-alternativnyj-encode-table): Define it as a translation
21659 table made from the reverse map of above.
21660 (ccl-decode-alternativnyj): Use translate-character.
21661 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
21662 Likewize
21663
21664 * international/mule-diag.el (non-iso-charset-alist): Specify
21665 translation table symbol instead of translation table itself.
21666 (list-block-of-chars): CHARSET may be a translation table symbol.
21667
21668 * international/mule.el (make-coding-system): If CODING-SYSTEM
21669 already exists, override it.
21670
21671 * international/fontset.el: Use family `proportional' for Tibetan
21672 fonts.
21673
21674 * international/ccl.el (ccl-compile-translate-character): Don't
21675 check if Rrr has property translation-table.
21676 (ccl-compile-map-multiple): Modified to avoid compiler warning.
21677
21678 2000-06-05 Gerd Moellmann <gerd@gnu.org>
21679
21680 * info.el: Bind case-fold-search to t when searching in case
21681 a user sets it to nil in a hook.
21682
21683 2000-06-05 Stefan Monnier <monnier@cs.yale.edu>
21684
21685 * autoarg.el (autoarg-mode, autoarg-kp-mode):
21686 * hl-line.el (hl-line-mode): Use the new :global key argument.
21687
21688 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
21689 (tar-clip-time-string): Prepend a space.
21690 (tar-grind-file-mode): Construct a string rather than modifying one.
21691 (tar-header-block-summarize): Fix docstring.
21692 Use `format' rather than an error-prone set of copy-loops.
21693
21694 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
21695 (diff-goto-source, diff-unified->context, diff-context->unified)
21696 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
21697 understand the format output by the `-p' argument to diff.
21698
21699 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
21700 (sh-re-done): Use defconst.
21701 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
21702 (sh-help-string-for-variable, sh-guess-basic-offset):
21703 Don't quote lambdas.
21704 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
21705 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
21706
21707 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
21708 (mh-letter-mode): Derive from text-mode.
21709 This implicitly means that it now calls kill-all-local-variables.
21710 Also remove the Emacs-18 compatibility code.
21711
21712 * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
21713 Make use of symbol-property doc-string-elt.
21714 Use memq rather than a sequence of eq.
21715 (doc-string-elt): Fix the wrong or missing previously unused values.
21716 (autoload-print-form): New function extracted from
21717 generate-file-autoloads to allow recursion when handling progn
21718 so that defvar's and defun's docstrings are properly printed.
21719 (generate-file-autoloads): Use it.
21720
21721 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
21722 Use find-file-hooks in the minor-mode function.
21723 Be careful not to loop indefinitely in the post-command-hook function.
21724
21725 2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
21726
21727 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
21728 tty's.
21729 * ediff-diff.el (ediff-exec-process): Use --binary for fine
21730 differences whenever appropriate.
21731 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
21732 * viper.el (find-file, find-file-other-window): Get viper to do
21733 wildcards.
21734
21735 2000-06-04 Stefan Monnier <monnier@cs.yale.edu>
21736
21737 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
21738 (jit-lock-fontify-buffer): New function for JIT refontification.
21739 (jit-lock-mode): Fix docstring.
21740 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
21741 Remove jit-lock-after-change from the _local_ hook.
21742 (jit-lock-function-1): Fix docstring.
21743
21744 * info.el (Info-on-current-buffer): Initialize info.
21745
21746 * newcomment.el (comment-indent): Ignore comment-indent-hook.
21747
21748 * progmodes/tcl.el (tcl-indent-for-comment):
21749 Ignore comment-indent-hook.
21750
21751 * emacs-lisp/easy-mmode.el: Require CL during compilation.
21752 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
21753 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
21754 and improve to use the lighter to guess the capitalization.
21755 (define-minor-mode): Inline code from easy-mmode-define-toggle.
21756 Add keyword arguments to specify global-ness or the custom group.
21757 Add local-map and help-echo properties to the lighter.
21758 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
21759 (easy-mmode-define-global-mode): New macro.
21760
21761 2000-06-02 Dave Love <fx@gnu.org>
21762
21763 * wid-edit.el: byte-compile-dynamic since we typically don't use
21764 all the widgets. Don't require cl or widget. Remove
21765 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
21766 (widget-read-event): Removed. Callers changed to use read-event.
21767 (widget-button-release-event-p): Renamed from
21768 button-release-event-p.
21769 (widget-field-add-space, widget-field-use-before-change):
21770 Uncustomize.
21771 (widget-specify-field): Use keymap property, not local-map.
21772 (widget-specify-button): Obey :suppress-face.
21773 (widget-specify-insert): Use modern backquote syntax.
21774 (widget-image-directory): Renamed from widget-glyph-directory.
21775 (widget-image-enable): Renamed from widget-glyph-enable.
21776 (widget-image-find): Replaces widget-glyph-find.
21777 (widget-button-pressed-face): Move defvar.
21778 (widget-image-insert): Replaces widget-glyph-insert.
21779 (widget-convert): Use keywordp.
21780 (widget-leave-text, widget-children-value-delete): Use mapc.
21781 (widget-keymap): Remove XEmacs stuff.
21782 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
21783 (widget-button-click): Don't set point at the click, but re-centre
21784 if we scroll out of window. Rewritten for images v. glyphs &c.
21785 (widget-tabable-at): Use POS arg, not point.
21786 (widget-beginning-of-line, widget-end-of-line)
21787 (widget-item-value-create, widget-sublist, widget-princ-to-string)
21788 (widget-sexp-prompt-value, widget-echo-help): Simplify.
21789 (widget-default-create): Use widget-image-insert; some rewriting.
21790 (widget-visibility-value-create)
21791 (widget-push-button-value-create, widget-toggle-value-create): Use
21792 widget-image-insert.
21793 (checkbox): Create on and off images dynamically.
21794 (documentation-link): Change :help-echo.
21795 (widget-documentation-link-echo-help): Remove.
21796
21797 2000-06-02 Stefan Monnier <monnier@cs.yale.edu>
21798
21799 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
21800
21801 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
21802 (easy-mmode-define-toggle, define-minor-mode): Use it.
21803 (easy-mmode-define-keymap): Docstring fix.
21804 (define-derived-mode): Default PARENT to fundamental-mode.
21805 Add the derived-mode-parent symbol-property.
21806 (easy-mmode-derived-mode-p): New function.
21807
21808 2000-06-02 Dave Love <fx@gnu.org>
21809
21810 * files.el (convert-standard-filename): Doc fix.
21811 (normal-backup-enable-predicate): New function.
21812 (backup-enable-predicate): Use it to replace the lambda form.
21813
21814 * calendar/todo-mode.el: [This needs more work on the outline
21815 stuff.] Doc fixes.
21816 (todo) <defgroup>: Add :version.
21817 (todo-add-category): Don't use pushnew.
21818 (todo-cmd-raise): Fix typo.
21819 (todo-top-priorities): Change temp buffer name.
21820 (todo-category-alist): Avoid redundant lambda.
21821 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
21822 Use outline-next-heading.
21823
21824 * autoarg.el: Rewritten to use define-minor-mode.
21825 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
21826 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
21827
21828 2000-06-02 Kenichi Handa <handa@etl.go.jp>
21829
21830 * isearch.el (isearch-other-meta-char): Fix previous change.
21831
21832 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
21833
21834 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
21835 (log-edit-done): Only add the comment to the ring if it's different
21836 from the last comment entered.
21837
21838 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
21839
21840 2000-06-01 Dave Love <fx@gnu.org>
21841
21842 * hl-line.el: Rewritten using define-minor-mode.
21843
21844 * help.el (describe-function-1): Distinguish special form from
21845 builtin function. Sanity-check presence of arglist for builtins.
21846
21847 2000-06-01 Kenichi Handa <handa@etl.go.jp>
21848
21849 * international/characters.el: Fix syntax/category setting of
21850 Tibetan characters.
21851
21852 * language/tibet-util.el (tibetan-add-components): Fixes for new
21853 encoding of Tibetan characters.
21854 (tibetan-decompose-precomposition-alist): New variable.
21855 (tibetan-decompose-region): Convert precomposed characters to
21856 non-precomposed characters.
21857 (tibetan-decompose-string): Likewise.
21858 (tibetan-composition-function): Fix args to
21859 thibetan-compose-string.
21860
21861 * language/tibetan.el (tibetan-composable-pattern): More
21862 characters included.
21863 (tibetan-consonant-transcription-alist): Rule for "R" added.
21864 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
21865 "+R" added.
21866 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
21867
21868 * language/lao-util.el (lao-composition-function): Fix args to
21869 compose-string.
21870
21871 * language/thai-util.el (thai-composition-function): Fix args to
21872 compose-string.
21873
21874 * isearch.el (isearch-update): Set disable-point-adjustment to t
21875 to prevent the point moving to the end of a composition when a
21876 part of a composition is searched.
21877 (isearch-other-meta-char): If the key invoking this command can be
21878 mapped by function-key-map to a printing char, call
21879 isearch-process-search-char directly.
21880
21881 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
21882
21883 * emacs-lisp/bytecomp.el:
21884 * frame.el:
21885 * international/mule-cmds.el:
21886 * international/mule-util.el:
21887 * international/mule.el:
21888 * mouse.el:
21889 * subr.el:
21890 * faces.el: Update calls to make-obsolete with a WHEN argument.
21891
21892 * byte-run.el (make-obsolete, make-obsolete-variable):
21893 Add an optional WHEN argument and change the format of the
21894 symbol-property information.
21895 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
21896 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
21897 new obsolete-symbol-property format and print WHEN if it is provided.
21898
21899 2000-05-31 Dave Love <fx@gnu.org>
21900
21901 * loadhist.el (loadhist-hook-functions): Remove
21902 before-change-function, after-change-function.
21903 (unload-feature): Deal with symbols which are both bound and
21904 fbound.
21905
21906 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
21907 before-change-function, after-change-function.
21908
21909 * simple.el (newline): Don't bind before-change-function,
21910 after-change-function.
21911
21912 2000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
21913
21914 * whitespace.el (whitespace-rescan-timer-time): Update interval
21915 set to 600 seconds (10 minutes) instead of 60 seconds since
21916 a large number of whitespace buffers causes emacs to `freeze'
21917 for a considerable amount of time.
21918
21919 * whitespace.el: Updated email address
21920
21921 2000-05-31 Dave Love <fx@gnu.org>
21922
21923 * add-log.el (change-log-font-lock-keywords) <function>: Add
21924 pattern for function of change.
21925 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
21926 acknowledgements patterns.
21927
21928 2000-05-31 Kenichi Handa <handa@etl.go.jp>
21929
21930 * isearch.el (isearch-printing-char): If keyboard coding system is
21931 being used, call isearch-process-search-multibyte-characters.
21932
21933 * international/isearch-x.el: Mostly rewritten.
21934
21935 * international/quail.el (quail-start-conversion): Don't include
21936 unhandled events in the returned events, but set them in
21937 unread-command-events. Exit if all inputs are deleted.
21938
21939 2000-05-30 Jason Rumney <jasonr@gnu.org>
21940
21941 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
21942
21943 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
21944 Reenable code to create initial fontsets.
21945 Use set-fontset-font in place of put-charset-property.
21946
21947 2000-05-30 Gerd Moellmann <gerd@gnu.org>
21948
21949 * progmodes/perl-mode.el (perl-indent-line): When looking for a
21950 label, ensure that the first colon isn't followed by another.
21951
21952 * paths.el (Info-default-directory-list): Doc fix.
21953
21954 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
21955 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
21956 send a query containing USER only, not USER@HOST.
21957
21958 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
21959 and rmail-msgend to compute the restriction at the end, instead of
21960 computing it.
21961
21962 2000-05-29 Gerd Moellmann <gerd@gnu.org>
21963
21964 * dabbrev.el (dabbrev-expand): Don't display messages in the
21965 echo area if the minibuffer window is active.
21966
21967 * jit-lock.el (jit-lock-mode): Add after change function to
21968 local hook.
21969
21970 2000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
21971
21972 * antlr-mode.el: New commands: hide/unhide actions,
21973 upcase/downcase literals.
21974 (antlr-tiny-action-length): New user option.
21975 (antlr-hide-actions): New command. Suggested by
21976 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
21977 (antlr-mode-map): New binding [C-c C-v].
21978 (antlr-mode-menu): New entries.
21979 (antlr-downcase-literals): New command.
21980 (antlr-upcase-literals): Ditto.
21981
21982 * antlr-mode.el: Minor changes: indendation, mode-name.
21983 (antlr-indent-line): Indent cpp directive at column 0.
21984 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
21985
21986 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
21987 (antlr-font-lock-additional-keywords): Workaround for intentional
21988 bug in XEmacs version of font-lock.
21989 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
21990 be used by a smarter version of `buffers-menu-grouping-function'.
21991
21992 2000-05-29 Gerd Moellmann <gerd@gnu.org>
21993
21994 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
21995 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
21996
21997 2000-05-29 Kenichi Handa <handa@etl.go.jp>
21998
21999 * international/encoded-kb.el
22000 (encoded-kbd-iso2022-designation-map): Pay attention to that
22001 charset-iso-final-char return -1 for eight-bit-control and
22002 eight-bit-graphic.
22003
22004 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
22005
22006 * speedbar.el (speedbar-use-images, speedbar-update-flag)
22007 (speedbar-easymenu-definition-base): Use display-graphic-p where
22008 available, instead of window-system.
22009
22010 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
22011
22012 * international/codepage.el (cp-coding-system-for-codepage-1): Add
22013 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
22014 coding systems.
22015
22016 2000-05-26 Dave Love <fx@gnu.org>
22017
22018 * disp-table.el (standard-display-underline): Don't use
22019 internal-find-face.
22020
22021 * mail/reporter.el: Maintainer change. Doc fixes.
22022 (reporter-version): Deleted.
22023
22024 * emacs-lisp/elp.el: Maintainer change.
22025 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
22026
22027 2000-05-26 Stefan Monnier <monnier@cs.yale.edu>
22028
22029 * add-log.el (add-change-log-entry): Merge the current entry with the
22030 previous one if the previous one is empty.
22031
22032 2000-05-26 Dave Love <fx@gnu.org>
22033
22034 * loadhist.el (unload-feature): Fix interactive spec [from
22035 lijnzaad@ebi.ac.uk].
22036
22037 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
22038 subr-arity to check primitives.
22039 (byte-compile-flush-pending, byte-compile-file-form-progn)
22040 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
22041 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
22042 mapcar.
22043
22044 2000-05-26 Kenichi Handa <handa@etl.go.jp>
22045
22046 * international/fontset.el: Set family names of non-latin charsets
22047 in default fontset to "*".
22048
22049 * international/mule-diag.el (print-fontset): Combine family part
22050 and registry part of the fontname by "-*-" instead of "-".
22051
22052 * international/mule-cmds.el (encode-coding-char): Make strings
22053 multibyte before calling encode-coding-string.
22054
22055 2000-05-25 Stefan Monnier <monnier@cs.yale.edu>
22056
22057 * derived.el: Fix keywords.
22058 (define-derived-mode): Only define if needed.
22059
22060 * simple.el (fill-comment, comment-column, comment-start)
22061 (comment-start-skip, comment-end, comment-indent-function)
22062 (block-comment-start, block-comment-end, indent-for-comment)
22063 (set-comment-column, kill-comment, comment-padding, comment-region)
22064 (comment-multi-line, indent-new-comment-line): Remove.
22065
22066 * bindings.el (esc-map): Change ; to comment-dwim and use the new
22067 function names for comment operations.
22068
22069 * newcomment.el: Add abundant autoload cookies.
22070 (comment-style): Don't depend on runtime data at compile-time.
22071 (comment-indent-hook): Remove.
22072 (comment-indent): Check if comment-indent-hook is bound.
22073 (comment-region): Docstring fix.
22074
22075 2000-05-25 Dave Love <fx@gnu.org>
22076
22077 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
22078 byte-code-function-p.
22079
22080 * mail/rmailsum.el: Add provide.
22081
22082 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
22083
22084 * smerge-mode.el (smerge-diff-switches): Don't use list* in
22085 defcustom.
22086
22087 2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
22088
22089 * ediff-diff.el (ediff-exec-process): delete --binary option from
22090 non-buffer ediff jobs.
22091
22092 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
22093
22094 * hilit-chg.el (highlight-changes-mode): Ask about color or
22095 grayscale support, not about window-system.
22096
22097 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
22098 window-system.
22099 (ffap-highlight): Always default to t.
22100
22101 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
22102 display-popup-menus-p instead of looking at window-system.
22103
22104 * disp-table.el (standard-display-g1, standard-display-graphic):
22105 Only refuse to use string glyphs on X and MS-Windows.
22106
22107 * avoid.el: Remove window-system from commentary, suggest to use
22108 display-*-p instead.
22109
22110 * apropos.el (apropos-print): Use display-mouse-p instead of
22111 window-system.
22112
22113 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
22114
22115 * international/codepage.el (cp-decoding-vector-for-codepage):
22116 Fill up unsupported characters with their own codes. From Kenichi
22117 Handa.
22118
22119 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
22120
22121 * international/mule-diag.el (describe-char-after): Use
22122 display-graphic-p instead of window-system, so that this function
22123 works on MS-DOS.
22124
22125 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
22126
22127 * international/codepage.el (cp-make-coding-systems-for-codepage):
22128 Remove the eight-bit-graphic and eight-bit-control charsets from
22129 the list of charsets which we convert into `?'.
22130
22131 2000-05-25 Kenichi Handa <handa@etl.go.jp>
22132
22133 * international/mule-conf.el: Specify CHARSET-ID explicitely for
22134 private charsets.
22135 (mule-unicode-0100-24ff, japanese-jisx0213-1,
22136 japanese-jisx0213-2): New charsets.
22137
22138 * international/fontset.el: Setup default fontset for new charsets.
22139
22140 2000-05-24 Dave Love <fx@gnu.org>
22141
22142 * info.el (Info-find-node-2): Restructure [following "Vadim
22143 S. Solomin" <sovs@uic.nnov.ru>].
22144
22145 * icomplete.el: Fix header for Finder.
22146
22147 2000-05-24 Eric M. Ludlam <zappo@ultranet.com>
22148
22149 * rmailout.el (rmail-output-to-rmail-file): Added optional param
22150 STAY.
22151
22152 * rmail.el (rmail-automatic-folder-directives): New user variable.
22153 (rmail-show-message): Add call to `rmail-auto-file' during
22154 display.
22155 (rmail-auto-file): New function.
22156
22157 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
22158
22159 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
22160 account.
22161 (ediff-test-utility,ediff-diff-mandatory-option)
22162 (ediff-reset-diff-options): Utilities for proper initialization of
22163 ediff-diff-options and ediff-diff3-options on Windows.
22164
22165 * ediff-init.el (ediff-merge-filename-prefix): New customizable
22166 variable.
22167
22168 * ediff-mult.el (ediff-filegroup-action): Use
22169 ediff-merge-filename-prefix.
22170
22171 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
22172
22173 * viper-ex.el (ex-write): Set selective display to nil.
22174
22175 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
22176
22177 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
22178 aliases for hebrew-iso-8bit.
22179
22180 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
22181
22182 * woman.el: New version from Francis J. Wright
22183 <F.J.Wright@Maths.QMW.ac.uk>.
22184 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
22185 names in environment variables regardless of the path separator.
22186 (woman-topic-all-completions-1): Don't call file-name-directory-p
22187 on all files, since woman-file-regexp already filters out any
22188 directories.
22189
22190 2000-05-24 Kenichi Handa <handa@etl.go.jp>
22191
22192 * international/quail.el (quail-start-translation): Don't change
22193 modified-p of the current buffer.
22194 (quail-start-conversion): Likewise.
22195
22196 * international/kkc.el (kkc-region): Don't change modified-p of
22197 the current buffer.
22198
22199 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
22200 conform to RFC1468.
22201 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
22202
22203 2000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
22204
22205 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
22206 (speedbar-insert-button): Invisible text property fix.
22207 (speedbar-directory-plus): Renamed from speedbar-directory-+
22208 (speedbar-directory-minus): Renamed from speedbar-directory--
22209 (speedbar-page-plus): Renamed from speedbar-file-+
22210 (speedbar-page-minus): Renamed from speedbar-file--
22211 (speedbar-page): Renamed from speedbar-file-
22212 (speedbar-tag): Renamed from speedbar-tag-
22213 (speedbar-tag-plus): Renamed from speedbar-tag-+
22214 (speedbar-tag-minus): Renamed from speedbar-tag--
22215 (speedbar-expand-image-button-alist): Use above renames.
22216
22217 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
22218 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
22219 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
22220 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
22221 * sb-pg.xpm: Renamed from sb-file.xpm
22222 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
22223 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
22224
22225 2000-05-24 Kenichi Handa <handa@etl.go.jp>
22226
22227 * international/quail.el (quail-show-guidance-buf): Set
22228 current-input-method of the guidance buffer to the name of the
22229 curren input method.
22230
22231 2000-05-23 Stefan Monnier <monnier@cs.yale.edu>
22232
22233 * progmodes/compile.el (compile-internal): Style typo.
22234
22235 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
22236 quote vars and functions in the docstring.
22237
22238 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
22239
22240 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
22241 Don't quote lambdas.
22242
22243 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
22244
22245 2000-05-23 Gerd Moellmann <gerd@gnu.org>
22246
22247 * startup.el (command-line): Determine source file of compiled
22248 user init file differently. Warn if compiled user init file
22249 is older than its source file.
22250
22251 * ffap.el (ffap-url-regexp): Add `https'.
22252
22253 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
22254
22255 * files.el (make-backup-file-name-1): Replace slashes with `!'
22256 rather than `|' (which is not allowed on Windows). Replace the
22257 drive letters with a string "drive_X".
22258
22259 2000-05-23 Gerd Moellmann <gerd@gnu.org>
22260
22261 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
22262
22263 * files.el (interpreter-mode-alist): Add `bash2'.
22264
22265 2000-05-22 Dave Love <fx@gnu.org>
22266
22267 * loadhist.el (feature-symbols, file-provides, file-requires): Use
22268 mapc.
22269 (feature-file): Avoid calling symbol-name. Doc fix.
22270 (file-set-intersect, file-dependents): Use dolist, not mapcar.
22271 (loadhist-hook-functions): Add mouse-position-function.
22272 (unload-feature): Change uses of mapcar.
22273
22274 * files.el (parse-colon-path): Doc fix.
22275 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
22276 (set-auto-mode): Use mapc.
22277
22278 * complete.el (PC-look-for-include-file): Use :alnum: character
22279 class.
22280 (partial-completion-mode): Add autoload cookie.
22281
22282 2000-05-22 Sam Steingold <sds@gnu.org>
22283
22284 * info.el (Info-fontify-node): Fixed the call to
22285 `add-text-properties' (bug introduced on 2000-05-18).
22286
22287 2000-05-22 Dave Love <fx@gnu.org>
22288
22289 * bindings.el: Remove debug-ignored-errors set in other files.
22290
22291 * progmodes/etags.el: Add to debug-ignored-errors.
22292 (visit-tags-table-buffer): Clear out buffers holding old tables
22293 when making a new list.
22294 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
22295 mapc.
22296
22297 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
22298 quote keywords.
22299 (cmpl-string-case-type): Use character classes.
22300
22301 * comint.el:
22302 * textmodes/ispell.el:
22303 * imenu.el:
22304 * mail/mh-e.el:
22305 * progmodes/compile.el: Add to debug-ignored-errors.
22306
22307 * dabbrev.el: Add to debug-ignored-errors.
22308 (dabbrev-completion): Use mapc.
22309
22310 2000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
22311
22312 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
22313 (woman-mapcan, woman-parse-man.conf)
22314 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
22315 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
22316 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
22317 path syntax better.
22318 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
22319 (woman-manpath): Call woman-parse-man.conf.
22320 (woman-emulation): New defcustom, defaults to nroff.
22321 (woman-font-support): New defconst.
22322 (woman-use-symbol-font): New defcustom.
22323 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
22324 "Emulation".
22325 Many functions: Doc fix.
22326
22327 2000-05-22 Kenichi Handa <handa@etl.go.jp>
22328
22329 * international/quail.el (quail-simple-translation-keymap): Map
22330 128..255 to quail-self-insert-command.
22331 (quail-keyboard-layout-alist): Add definition for "pc102-de".
22332
22333 2000-05-22 Stefan Monnier <monnier@cs.yale.edu>
22334
22335 * help.el (help-manyarg-func-alist): Typo.
22336
22337 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
22338 intervals which makes it heaps simpler.
22339
22340 * newcomment.el (comment-region-internal): Go back to BEG after quoting
22341 the nested comment markers.
22342
22343 * subr.el (remove-hook): Don't turn the hook's value into a list.
22344
22345 2000-05-21 Dave Love <fx@gnu.org>
22346
22347 * edmacro.el (edmacro-parse-keys): Return vector if any elements
22348 are invalid characters.
22349
22350 * international/mule-util.el (detect-coding-with-priority): Use
22351 mapc. Remove redundant lambda.
22352
22353 * international/mule-diag.el (list-non-iso-charset-chars)
22354 (describe-fontset): Remove redundant lambda.
22355
22356 * emulation/crisp.el (brief-mode): New alias.
22357
22358 * emacs-lisp/ring.el (ring-elements): New function.
22359
22360 * emacs-lisp/easymenu.el (easy-menu-create-menu)
22361 (easy-menu-do-add-item): Use keywordp.
22362
22363 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
22364
22365 * replace.el: Doc and error message fixes.
22366 (replace-highlight): Use facep, not internal-find-face.
22367
22368 2000-05-20 Stefan Monnier <monnier@cs.yale.edu>
22369
22370 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
22371
22372 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
22373 (log-edit-insert-changelog): Drop `:' as well.
22374
22375 * log-view.el: Fix file description.
22376 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
22377 available.
22378 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
22379 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
22380
22381 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
22382 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
22383 Print a status message if the toggle is called interactively.
22384 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
22385 for global minor modes and use `defcustom' for them.
22386 Use add-minor-mode.
22387 (easy-mmode-define-derived-mode): Remove.
22388 (define-derived-mode): Fancier default docstring.
22389 (easy-mmode-define-navigation): Signal an error rather than (ding).
22390
22391 * newcomment.el (comment-styles): New `box-multi'.
22392 (comment-normalize-vars): Better default for comment-continue to
22393 avoid whitespace-only continuations.
22394 (comment-search-forward): Always move even in the no-syntax case.
22395 (comment-padright): Only obey N if it's only obeyed for padleft.
22396 (comment-make-extra-lines): Better handling of empty continuations.
22397 Use `=' for the filler if comment-start has only one character.
22398 (uncomment-region): Try handling the special `=' filler.
22399 (comment-region): Allow LINES even if MULTI is nil.
22400 (comment-box): Choose box style based on comment-style.
22401
22402 2000-05-20 Kenichi Handa <handa@etl.go.jp>
22403
22404 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
22405 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
22406
22407 2000-05-20 Kenichi HANDA <handa@etl.go.jp>
22408
22409 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
22410 and insert, not subst-char-in-region.
22411
22412 * international/mule-diag.el (list-character-sets-1): Handle
22413 charsets eight-bit-control and eight-bit-graphic.
22414 (list-iso-charset-chars): Likewise.
22415 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
22416 charactes as is. Use indent-to to align characters.
22417
22418 * international/mule-cmds.el (find-multibyte-characters): Never
22419 exclude charsets eight-bit-control and eight-bit-graphic.
22420
22421 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
22422
22423 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
22424 Don't quote lambdas.
22425
22426 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
22427
22428 2000-05-19 Gerd Moellmann <gerd@gnu.org>
22429
22430 * gud.el (gud-jdb-directories): Doc fix.
22431
22432 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
22433
22434 * newcomment.el: New file.
22435
22436 2000-05-19 Gerd Moellmann <gerd@gnu.org>
22437
22438 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
22439
22440 2000-05-18 Andreas Schwab <schwab@suse.de>
22441
22442 * dired.el (dired-between-files): Also skip lines beginning with
22443 `used'.
22444
22445 2000-05-18 Gerd Moellmann <gerd@gnu.org>
22446
22447 * msb.el (msb-menu-cond): Add choice `user'.
22448
22449 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
22450
22451 * ps-print.el: Compatibility, customization and doc fix.
22452 (ps-printer-name-option): Replace defconst by defvar.
22453 (ps-postscript-code-directory): XEmacs compatibility.
22454 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
22455 fix.
22456 (ps-user-defined-prologue, ps-print-prologue-header)
22457 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
22458 compatibility and code fix.
22459 (ps-print-background-image, ps-print-background-text):
22460 Customization fix.
22461 (ps-line-number-start, ps-n-up-on): New vars.
22462
22463 2000-05-18 Espen Skoglund <esk@ira.uka.de>
22464
22465 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
22466 the indent-comment function to just return the appropriate indent.
22467
22468 2000-05-18 Eric M. Ludlam <zappo@ultranet.com>
22469
22470 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
22471 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
22472 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
22473
22474 2000-05-18 Dave Love <fx@gnu.org>
22475
22476 * info.el (Info-fontify-node): Add intangible property as well as
22477 invisible.
22478
22479 * calendar/appt.el (appt-make-list): Match all lines of entry.
22480 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
22481
22482 2000-05-18 Kenichi Handa <handa@etl.go.jp>
22483
22484 * international/mule-diag.el (describe-char-after): Call
22485 internal-char-font, not char-font. If internal-char-font returns
22486 nil, display "-- none --".
22487
22488 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
22489
22490 * image.el (image-type-available-p): Don't reference image-types
22491 if it isn't bound.
22492
22493 2000-05-17 Stefan Monnier <monnier@cs.yale.edu>
22494
22495 * autoarg.el (autoarg-mode): Typo in the :set argument.
22496
22497 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
22498
22499 * startup.el (command-line-1): Don't signal an error if the
22500 directory for auto-save-list files does not yet exist.
22501
22502 2000-05-17 Kenichi Handa <handa@etl.go.jp>
22503
22504 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
22505
22506 2000-05-16 Stefan Monnier <monnier@cs.yale.edu>
22507
22508 * subr.el (remove-hook): `setq' hook-value, not `set'.
22509
22510 2000-05-16 Sam Steingold <sds@gnu.org>
22511
22512 * info.el (debug-ignored-errors): More errors to ignore.
22513
22514 2000-05-16 Dave Love <fx@gnu.org>
22515
22516 * cus-edit.el: Don't require cl or easymenu.
22517 (custom-variable-prompt): Test standard-value property, not
22518 user-variable-p.
22519
22520 2000-05-16 Sam Steingold <sds@gnu.org>
22521
22522 * subr.el (add-hook): `setq' hook-value, not `set'.
22523
22524 2000-05-16 Gerd Moellmann <gerd@gnu.org>
22525
22526 * startup.el (command-line-1): Mention the FAQ in the startup
22527 message.
22528
22529 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
22530
22531 * progmodes/compile.el (compilation-parse-errors): Collect
22532 `nomessage' regexps last.
22533
22534 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
22535
22536 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
22537 to the function name.
22538
22539 2000-05-15 Dave Love <fx@gnu.org>
22540
22541 * speedbar.el (speedbar-recenter): Typo.
22542 (speedbar-expand-line): Make arg optional.
22543 (speedbar-mode): Avoid a compiler warning.
22544
22545 2000-05-15 Gerd Moellmann <gerd@gnu.org>
22546
22547 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
22548 user-specified option string is empty.
22549
22550 * mouse.el (mouse-yank-at-click): Doc fix.
22551
22552 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
22553
22554 * term/internal.el (IT-character-translations): More updates of
22555 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
22556 documents.
22557
22558 2000-05-15 Gerd Moellmann <gerd@gnu.org>
22559
22560 * env.el (getenv): New function, interactively callable.
22561 (setenv, getenv): Remove autoload cookies.
22562
22563 * loadup.el: Load `env'.
22564
22565 * progmodes/f90.el: Change author's mail address.
22566
22567 2000-05-14 Dave Love <fx@gnu.org>
22568
22569 * mail/rmail.el (rmail-show-message-hook): Customize and offer
22570 goto-addr as an option.
22571
22572 * help.el (help-xref-stack): Doc fix.
22573 (help-xref-following): New variable.
22574 (help-make-xrefs): Use it.
22575 (help-xref-go-back): Use position information from stack element.
22576 (help-follow): Make position in stack element a pair. Use
22577 help-xref-following.
22578
22579 * autoarg.el: New file.
22580
22581 * faces.el: Declare more functions obsolete.
22582
22583 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
22584 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
22585 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
22586 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
22587 Remove all the setup-...-environment functions.
22588
22589 2000-05-13 Eric M. Ludlam <zappo@ultranet.com>
22590
22591 * speedbar.el: Updated the commentary section. xemacs20p now uses
22592 >= when detecting. Require `defimage' safely.
22593 (speedbar-easymenu-definition-base): Add toggle for images.
22594 (speedbar-easymenu-definition-special): Add flush cache & expand.
22595 (speedbar-visiting-tag-hook): Set new defaults. Added options.
22596 (speedbar-reconfigure-keymaps-hook): New variable.
22597 (speedbar-frame-parameters): Updated documentation.
22598 (speedbar-use-imenu-flag): Updated custom tag
22599 (speedbar-dynamic-tags-function-list): New variable.
22600 (speedbar-tag-hierarchy-method): Updated doc & custom.
22601 (speedbar-indentation-width, speedbar-indentation-width) New
22602 variables.
22603 (speedbar-hide-button-brackets-flag): Customizable.
22604 (speedbar-vc-indicator): Doc update.
22605 (speedbar-ignored-path-expressions): Updated default value.
22606 (speedbar-supported-extension-expressions): Updated default value.
22607 (speedbar-syntax-table): Remove {} paren status.
22608 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
22609 as "+". Added overlay aliases.
22610 (speedbar-mode): Use `speedbar-mode-line-update' instead of
22611 `force-mode-line-update'.
22612 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
22613 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
22614 `mouse-set-point'
22615 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
22616 (speedbar-item-info-tag-helper): Revamped to handle a wider range
22617 of arbitrary text, and new helper functions.
22618 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
22619 filename finder.
22620 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
22621 (speedbar-directory-buttons): Update path search/expansion.
22622 (speedbar-make-tag-line): Pay attention to
22623 `speedbar-indentation-width'. Use more care w/ invisible
22624 properties.
22625 (speedbar-change-expand-button-char): Call
22626 `speedbar-insert-image-button-maybe'.
22627 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
22628 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
22629 (speedbar-trim-words-tag-hierarchy)
22630 (speedbar-simple-group-tag-hierarchy): New functions
22631 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
22632 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
22633 functions.
22634 (speedbar-mouse-set-point): New function
22635 (speedbar-power-click): Updated documentation.
22636 (speedbar-line-token, speedbar-goto-this-file): Handle more types
22637 of tag prefix text.
22638 (speedbar-expand-line, speedbar-contract-line): Make more robust
22639 to strange text.
22640 (speedbar-expand-line): Takes universal argument to flush the
22641 cache.
22642 (speedbar-flush-expand-line): New function.
22643 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
22644 Use new generator insertion method.
22645 (speedbar-fetch-dynamic-tags): New function.
22646 (speedbar-fetch-dynamic-imenu): Removed code now handled in
22647 `speedbar-fetch-dynamic-imenu'.
22648 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
22649 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
22650 "Revert Buffer" menu items.
22651 (speedbar-buffer-buttons-engine): Be smarter when creating a
22652 filename tag (for expansion purposes.).
22653 (speedbar-highlight-one-tag-line,
22654 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
22655 (speedbar-recenter): New functions.
22656 (defimage-speedbar): Image loading abstraction.
22657 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
22658 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
22659 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
22660 (speedbar-tag-type, speedbar-tag-mail): New images.
22661 (speedbar-expand-image-button-alist): New variable.
22662 (speedbar-insert-image-button-maybe): Insert an image over some
22663 buttons.
22664
22665 2000-05-13 Kenichi Handa <handa@etl.go.jp>
22666
22667 * international/mule-cmds.el (encode-coding-char): An ASCII
22668 character is always encodable.
22669
22670 * international/mule-conf.el: Add more information in descriptions
22671 of character sets.
22672
22673 * international/mule-diag.el (describe-char-after): New function.
22674 (describe-font-internal): Adjusted for the change of font-info.
22675 (describe-font): Likewise.
22676 (print-fontset): Rewritten for the new fontset implementation.
22677 (describe-fontset): Include fontset alias names in completion.
22678 (list-fontsets): Adjusted for the change of print-fontset.
22679
22680 * simple.el (what-cursor-position): If DETAIL is non-nil, call
22681 describe-char-after instead of displaying the detail in the echo
22682 area.
22683 (syntax-code-table): Format changed.
22684 (string-to-syntax): Adjusted for the above change.
22685
22686 2000-05-12 Stefan Monnier <monnier@cs.yale.edu>
22687
22688 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
22689
22690 2000-05-12 Dave Love <fx@gnu.org>
22691
22692 * calendar/todo-mode.el: Remove some compatibility stuff and CL
22693 dependence. Use line-{beginning,end}-position, not
22694 point-at{b,e}ol. Some doc fixes.
22695 (todo-position): New function. Fix callers of position to use it.
22696 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
22697
22698 2000-05-12 Gerd Moellmann <gerd@gnu.org>
22699
22700 * time.el (display-time-mail-icon): Use `:ascent center'.
22701
22702 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
22703 handling FTP security extensions.
22704
22705 2000-05-11 Dave Love <fx@gnu.org>
22706
22707 * calendar/todo-mode.el: New file.
22708
22709 2000-05-11 Gerd Moellmann <gerd@gnu.org>
22710
22711 * comint.el (comint-read-input-ring): Move reference to
22712 comint-input-ring-size outside of the save-excursion. It was
22713 causing the default value to be the only one ever seen.
22714
22715 * font-lock.el: Update copyright. Remove Simon Marshall's email
22716 address on request from him.
22717
22718 * subr.el (substitute-key-definition): Add comment describing
22719 the meaning of PREFIX.
22720
22721 2000-05-10 Stefan Monnier <monnier@cs.yale.edu>
22722
22723 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
22724
22725 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
22726 (add-minor-mode): Don't make the variable buffer-local and add a
22727 reference to define-minor-mode in the docstring.
22728
22729 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
22730 HEADER/FOOTER and fix bug with trailing empty directory.
22731 (cvs-append-to-ignore): Use vc-editable-p if available.
22732 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
22733 (vc-do-command): Tweak advice to handle the new VC.
22734
22735 * log-view.el (log-view-goto-rev): New function for the new VC.
22736 (log-view-minor-wrap): Use mark-active.
22737
22738 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
22739 (log-edit-changelog-full-paragraphs): New var.
22740 (log-edit-insert-changelog): Remove a lonely leading `* file'.
22741 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
22742 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
22743 (log-edit-changelog-ours-p, log-edit-changelog-entries)
22744 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
22745 Replace the `cvs' prefix with `log-edit'.
22746
22747 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
22748
22749 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
22750 (diff-font-lock-defaults): Explicitly turn off multiline.
22751 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
22752 (diff-ediff-patch): Fix call to ediff-patch-file.
22753 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
22754 Handle comments.
22755
22756 * frame.el (automatic-hscrolling): Typo.
22757
22758 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
22759
22760 2000-05-09 Sam Steingold <sds@goems.com>
22761
22762 * apropos.el (apropos-print): use `describe-face' instead of
22763 `customize-face-other-window'.
22764
22765 2000-05-09 Dave Love <fx@gnu.org>
22766
22767 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
22768
22769 * help.el (describe-variable): Have customize button pop the
22770 help-xref stack when invoked.
22771 (help-xref-symbol-regexp): Add `face'.
22772 (help-make-xrefs): Check for quoted face names and adapt regexp
22773 submatch numbers to cope.
22774 (help-xref-interned): Maybe insert face doc too. Separate
22775 sections with a line of hyphens.
22776
22777 * faces.el: Some doc fixes. Declare some functions obsolete.
22778 (describe-face): Add customize button. Return the help
22779 text. Fix prompt.
22780
22781 2000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
22782
22783 * term/internal.el (IT-character-translations): Fix last change.
22784
22785 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
22786
22787 * woman.el: New file
22788 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
22789
22790 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
22791
22792 * term/internal.el (IT-character-translations): Update ASCII
22793 simulations for greek-iso8859-7, add latin-iso8859-14 and
22794 latin-iso8859-15.
22795
22796 * international/mule-cmds.el (set-language-info-alist): Call
22797 define-prefix-command with 3 arguments, to make the map suitable
22798 for a menu.
22799
22800 2000-05-07 Dave Love <fx@gnu.org>
22801
22802 * time.el: Small doc fixes from Pavel Jan\e,Bm\e(Bk ml.
22803
22804 2000-05-05 Dave Love <fx@gnu.org>
22805
22806 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
22807 list in doc string. Don't quote keyword symbols.
22808 * emacs-lisp/cl.el: Likewise
22809 * emacs-lisp/cl-seq.el: Likewise
22810
22811 2000-05-05 Gerd Moellmann <gerd@gnu.org>
22812
22813 * abbrev.el (abbrev-mode): Make ARG optional.
22814
22815 2000-05-04 Gerd Moellmann <gerd@gnu.org>
22816
22817 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
22818
22819 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
22820
22821 * subr.el (substitute-key-definition): Clarify documentation.
22822
22823 2000-05-04 Milan Zamazal <pdm@freesoft.cz>
22824
22825 * glasses.el (glasses-convert-to-unreadable): Use
22826 `glasses-separator' instead of the hard-wired "_".
22827 (glasses-mode): Call `glasses-make-unreadable' only in a single
22828 place.
22829
22830 2000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
22831
22832 * term/internal.el (cjk-codepages-alist): Add associations for
22833 Chinese and Korean codepages. Remove FIXME comment.
22834
22835 2000-05-03 Dave Love <fx@gnu.org>
22836
22837 * time.el (display-time-mail-face, display-time-use-mail-icon):
22838 New option.
22839 (display-time-mail-icon): New variable.
22840 (display-time-string-forms): Use the above. Fix the local-map.
22841
22842 2000-05-03 Gerd Moellmann <gerd@gnu.org>
22843
22844 * replace.el (query-replace-map): Add binding for `E'.
22845 (query-replace-help): Extend help text.
22846 (perform-replace): Allow editing the replacement string.
22847
22848 * make-mode.el (makefile-mode-abbrev-table): New variable.
22849 (makefile-mode): Set local abbrev table to
22850 makefile-mode-abbrev-table.
22851 (makefile-font-lock-keywords): Fontify includes and conditionals.
22852
22853 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
22854 set TOGGLE's value.
22855
22856 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
22857 mail-interactive-insert-alias.
22858 (mail-abbrev-complete-alias): New command.
22859 (mail-mode-map): Bind it to `M-TAB'.
22860
22861 2000-05-03 Kenichi Handa <handa@etl.go.jp>
22862
22863 * language/lao-util.el (lao-compose-region): New function.
22864
22865 2000-05-02 Gerd Moellmann <gerd@gnu.org>
22866
22867 * files.el (recover-session): Make directories as necessary
22868 if they don't exist yet.
22869
22870 * calendar/cal-french.el
22871 (french-calendar-multibyte-special-days-array)
22872 (french-calendar-special-days-array): Change French text.
22873 (calendar-french-date-string): Change output.
22874 (calendar-goto-french-date): Likewise.
22875
22876 2000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
22877
22878 * wid-edit.el (widget-default-active): Obey `:always-active'.
22879 (widget-documentation-string-value-create): Set `:always-active'.
22880
22881 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
22882
22883 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
22884 default prefix to `~/_emacs.d/auto-save.list/_s'.
22885 (normal-top-level): Create the directory for auto-save files, if
22886 it doesn't already exist (in the ms-dos case only).
22887
22888 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
22889
22890 * international/mule-cmds.el (set-language-environment): Don't
22891 concat an integer (dos-codepage), use format instead.
22892
22893 2000-05-02 Dave Love <fx@gnu.org>
22894
22895 * help.el (help-xref-on-pp): Check for constant symbols.
22896
22897 2000-04-29 Gerd Moellmann <gerd@gnu.org>
22898
22899 * startup.el (normal-top-level): Put a condition-case around
22900 the code loading subdirs.el.
22901
22902 2000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
22903
22904 * ps-print.el: Upside-down and face background color printing,
22905 line number step, doc fix.
22906 (ps-print-version): New version number (5.2).
22907 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
22908 (ps-face-attribute-list, ps-plot-with-face): Code fix.
22909 (ps-spool-config): Var fix.
22910 (ps-printer-name-option): Const fix.
22911 (ps-print-upside-down, ps-use-face-background)
22912 (ps-line-number-step): New vars.
22913 (ps-window-system, ps-lp-system): New consts.
22914 (ps-face-background): New fun.
22915
22916 2000-04-28 Richard Stallman <rms@gnu.org>
22917
22918 * files.el (make-auto-save-file-name):
22919 Apply auto-save-file-name-transforms to visited file name
22920 before generating auto save file name.
22921 (auto-save-file-name-transforms): New variable.
22922
22923 * files.el (backup-enable-predicate):
22924 Correctly test for a file under a temporary directory.
22925
22926 2000-04-28 Gerd Moellmann <gerd@gnu.org>
22927
22928 * subr.el (add-minor-mode): Rewritten.
22929
22930 2000-04-28 Kenichi Handa <handa@etl.go.jp>
22931
22932 * mail/sendmail.el (sendmail-send-it): Set
22933 buffer-file-coding-system to the selected coding system for MIME
22934 header.
22935
22936 2000-04-27 Gerd Moellmann <gerd@gnu.org>
22937
22938 * dired.el (dired-move-to-filename-regexp): Allow format where
22939 YYYY is followed by two spaces.
22940
22941 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
22942 in the second character class of the regexp.
22943
22944 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
22945 mh-etc, too.
22946
22947 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
22948 nil.
22949
22950 * subr.el (add-minor-mode): Use `set' instead of `setq'.
22951
22952 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
22953 argument.
22954
22955 2000-04-27 Sen Nagata <sen@eccosys.com>
22956
22957 * emacs-lisp/crm.el (crm-completion-table): New variable.
22958 (crm-collection-fn, crm-test-completion)
22959 (completing-read-multiple): Use it.
22960
22961 2000-04-27 Dave Love <fx@gnu.org>
22962
22963 * help.el (locate-library): Use mapc.
22964 (help-manyarg-func-alist): Add call-process-region.
22965
22966 2000-04-26 Gerd Moellmann <gerd@gnu.org>
22967
22968 * subr.el (add-minor-mode): Make argument MAP optional.
22969
22970 * desktop.el (desktop-save): Save list of minor modes.
22971 (desktop-create-buffer): Restore minor modes.
22972 (desktop-minor-mode-table): New user-option.
22973
22974 * subr.el (add-minor-mode): New function.
22975
22976 * image.el (find-image): New function.
22977 (defimage): Rewritten to find image at load time.
22978
22979 * startup.el (normal-top-level-add-to-load-path): Handle
22980 case that the default directory is not in load-path.
22981
22982 * help.el: Old patch from Stefan Monnier.
22983 (help-xref-on-pp): New function.
22984 (describe-variable): Use it to display xrefs in a symbol's value.
22985
22986 2000-04-26 Stefan Monnier <monnier@cs.yale.edu>
22987
22988 * cus-edit.el (custom-face): Fix parenthesis.
22989
22990 2000-04-26 Kenichi Handa <handa@etl.go.jp>
22991
22992 * mail/rmail.el (rmail-expunge): When there are no deleted
22993 messages, do nothing.
22994
22995 2000-04-26 Dave Love <fx@gnu.org>
22996
22997 * international/mule-cmds.el (locale-translation-file-name):
22998 Defvar to nil.
22999 (set-locale-environment): Set it here (at runtime).
23000
23001 2000-04-25 Gerd Moellmann <gerd@gnu.org>
23002
23003 * replace.el (perform-replace): Add parameters START and END. Use
23004 them instead of the check for a region in Transient Mark mode.
23005 (query-replace-read-args): Return two more list elements for the
23006 start and end of the region in Transient Mark mode.
23007 (query-replace, query-replace-regexp, query-replace-regexp-eval)
23008 (map-query-replace-regexp, replace-string, replace-regexp): Add
23009 optional last arguments START and END and pass them to
23010 perform-replace.
23011
23012 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
23013 form with additional arguments for perform-replace.
23014
23015 * progmodes/etags.el (tags-query-replace): Add parameters START
23016 and END. Construct a form with additional arguments for
23017 perform-replace.
23018
23019 * simple.el (shell-command): Set default directory for "*Shell
23020 Command Output" buffer.
23021
23022 * language/european.el (iso-latin-4): Fix typo.
23023
23024 * emacs-lisp/crm.el: New file.
23025
23026 2000-04-24 Dave Love <fx@gnu.org>
23027
23028 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
23029 (Custom-reset-saved, Custom-reset-standard)
23030 (custom-group-value-create, custom-group-set, custom-group-save)
23031 (custom-group-reset-current, custom-group-reset-saved)
23032 (custom-group-reset-standard): Use mapc.
23033 (custom-buffer-create-internal): Disable undo when creating items.
23034 Use mapc.
23035 (custom-face): Avoid redundant lambda.
23036
23037 2000-04-24 Gerd Moellmann <gerd@gnu.org>
23038
23039 * startup.el (auto-save-list-file-prefix): Set default to
23040 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
23041
23042 2000-04-24 Sam Steingold <sds@gnu.org>
23043
23044 * time-stamp.el (time-stamp-string-preprocess): Always convert
23045 `field-result' to a string.
23046
23047 2000-04-24 Gerd Moellmann <gerd@gnu.org>
23048
23049 * frame.el (scrolling): New group.
23050 (automatic-hscrolling): New user-option.
23051
23052 * startup.el (command-line-x-option-alist): Add `-lsp' and
23053 `--line-spacing'.
23054
23055 2000-04-19 Dave Love <fx@gnu.org>
23056
23057 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
23058 (cl-mapc): Rename from mapc. Fix the funcall.
23059
23060 2000-04-19 Gerd Moellmann <gerd@gnu.org>
23061
23062 * simple.el (clone-indirect-buffer-other-window): New command.
23063 (clone-indirect-buffer): Add optional arg NORECROD.
23064 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
23065
23066 * help.el (resize-temp-buffer-window): Use count-screen-lines.
23067
23068 * window.el (count-screen-lines): New function.
23069 (shrink-window-if-larger-than-buffer): Use count-screen-lines
23070 instead of window-buffer-height.
23071
23072 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
23073 non-existing variable comint-input-sentinel.
23074 (inferior-lisp-args-to-list): Removed.
23075 (inferior-lisp): Use split-string instead of
23076 inferior-lisp-args-to-list.
23077
23078 * hexl.el (hexl-insert-hex-string): New command.
23079
23080 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
23081 instead of concat.
23082
23083 2000-04-18 Gerd Moellmann <gerd@gnu.org>
23084
23085 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
23086 at the start of an existing but empty folder.
23087
23088 2000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23089
23090 * ps-mule.el: Customization fix, doc fix.
23091 (ps-multibyte-buffer): Customization fix.
23092
23093 2000-04-17 Richard M. Stallman <rms@gnu.org>
23094
23095 * subr.el (read-passwd): Use read-char-exclusive.
23096
23097 2000-04-17 Gerd Moellmann <gerd@gnu.org>
23098
23099 * textmodes/texinfo.el (texinfo-insert-@email)
23100 (texinfo-insert-@emph, texinfo-insert-@quotation)
23101 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
23102 (texinfo-mode-map): Add key bindings for them.
23103
23104 * files.el (basic-save-buffer-2): Use a template with `$'
23105 instead of `#' for VMS.
23106
23107 * simple.el (clone-indirect-buffer): New function.
23108
23109 2000-04-16 Stephen Eglen <stephen@gnu.org>
23110
23111 * iswitchb.el (iswitchb-case): New function. If the user input
23112 contains any upper-case characters, the search is made
23113 case-sensitive.
23114
23115 2000-04-17 Stefan Monnier <monnier@cs.yale.edu>
23116
23117 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
23118 comment-end.
23119 (texinfo-font-lock-syntactic-keywords): New var.
23120 (texinfo-font-lock-keywords): Remove comment regexp.
23121 (texinfo-insert-block): New function.
23122 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
23123 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
23124 and font-lock-defaults. Use regexp-opt for outline-regexp.
23125 (texinfo-environments): New var.
23126 (texinfo-environment-regexp): Use regexp-opt and
23127 texinfo-environments.
23128
23129 * textmodes/ispell.el (ispell-menu-map-needed): Check that
23130 ispell-process is bound since this might be eval'd before ispell
23131 is loaded.
23132 (ispell-message): Use a tiny bit less magic and a bit more hard
23133 data to figure out what kind of sc-cite-regexp to use.
23134
23135 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
23136
23137 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
23138 (insert-cyclic-diary-entry): Unquote the lambda.
23139
23140 * gud.el (gud-jdb-build-source-files-list): Fix typo.
23141
23142 * files.el (backup-enable-predicate): Unquote the lambda.
23143
23144 * cus-edit.el (custom-face, face): Unquote the lambda.
23145
23146 2000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23147
23148 * ps-print.el: Check for line-beginning-position definition.
23149
23150 * ps-print.el: Fix counting lines in a region.
23151 (ps-print-version): New version number (5.1.5).
23152 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
23153 (ps-printing-region): Fun code fix.
23154
23155 2000-04-15 Gerd Moellmann <gerd@gnu.org>
23156
23157 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
23158 to file-directory-p.
23159
23160 2000-04-14 Gerd Moellmann <gerd@gnu.org>
23161
23162 * gud.el (gud-jdb-build-source-files-list): Check that directory
23163 exists before calling directory-files.
23164
23165 2000-04-13 Dave Love <fx@gnu.org>
23166
23167 * emacs-lisp/trace.el: Change maintainer. Use new backquote
23168 syntax.
23169
23170 * emacs-lisp/cl-specs.el: Remove when, unless.
23171
23172 * emacs-lisp/cl-extra.el: Don't quote keywords.
23173 (cl-old-mapc): New variable.
23174 (mapc): Use it.
23175 (cl-map-intervals): Use with-current-buffer. Don't check for
23176 next-property-change.
23177 (cl-map-overlays): Use with-current-buffer.
23178 (cl-expt): Remove.
23179 (copy-tree, remprop): Define unconditionally.
23180
23181 * emacs-lisp/cl-compat.el (keywordp): Remove.
23182
23183 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
23184 to use keywordp.
23185 (edebug-spec): Enable keywordp.
23186
23187 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
23188 string-lessp.
23189
23190 * cus-start.el: Use keywordp.
23191
23192 2000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
23193
23194 * diary-lib.el (include-other-diary-files): Fix the fix of
23195 2000-02-18 by doing a save-excursion.
23196
23197 2000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23198
23199 * ps-print.el: Customization fix, doc fix.
23200 (ps-print-version): New version number (5.1.4).
23201 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
23202 (ps-print-preprint): Adjust code.
23203 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
23204 (ps-print-prologue-header, ps-print-control-characters)
23205 (ps-spool-config): Customization fix.
23206
23207 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
23208
23209 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
23210 converted to the new menu-item format, names silightly changed,
23211 help strings added.
23212
23213 Support for spelling without async subprocesses:
23214
23215 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
23216 (ispell-session-buffer): New variables.
23217 (ispell-start-process, ispell-process-status,
23218 ispell-accept-output, ispell-send-string): New functions, for
23219 Ispell invocation when async subprocesses aren't supported.
23220 (ispell-word, ispell-pdict-save, ispell-command-loop,
23221 ispell-process-line, ispell-buffer-local-parsing): Replace calls
23222 to process-send-string with calls to ispell-send-string, and
23223 accept-process-output with ispell-accept-output.
23224 (ispell-init-process): Call ispell-process-status instead of
23225 process-status with.
23226 (ispell-init-process): Call ispell-start-process. Call
23227 ispell-accept-output and ispell-send-string. Don't call
23228 process-kill-without-query and kill-process if they are unbound.
23229 (ispell-async-processp): New function.
23230
23231 2000-04-12 Dave Love <fx@gnu.org>
23232
23233 * info.el: Add debug-ignored-errors.
23234 (Info-mode-menu): Add some items.
23235 (Info-directory): Add autoload cookie.
23236
23237 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
23238 Modify `truncate-lines'. Make `describe-language-environment'
23239 always visible and add help. Modify `describe-key' help. Invoke
23240 Info-directory from `info'. New entry `emacs-manual'.
23241
23242 2000-04-10 Gerd Moellmann <gerd@gnu.org>
23243
23244 * progmodes/ebrowse.el (ebrowse-tree-mode):
23245 Use propertized-buffer-identification.
23246 (ebrowse-update-member-buffer-mode-line): Likewise.
23247 (ebrowse--mode-strings): Removed.
23248 (ebrowse--mode-line-props): Removed.
23249
23250 * files.el (auto-mode-alist): Add `EBROWSE'.
23251
23252 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
23253 space before testing for end of buffer.
23254 (ebrowse-load): Removed.
23255 (ebrowse-revert-tree-buffer-from-file): Rewritten.
23256 (ebrowse-create-tree-buffer): Rewritten.
23257 (ebrowse-tree-mode): Read tree from buffer.
23258
23259 * progmodes/ebrowse-ffh.el: Removed.
23260
23261 2000-04-10 Kenichi Handa <handa@etl.go.jp>
23262
23263 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
23264
23265 2000-04-10 Gerd Moellmann <gerd@gnu.org>
23266
23267 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
23268 at the wrong place.
23269
23270 2000-04-09 Dave Love <fx@gnu.org>
23271
23272 * files.el (backup-enable-predicate):
23273 Use temporary-file-directory, small-temporary-file-directory.
23274 (make-backup-file-name-function, backup-directory-alist): New vars.
23275 (make-backup-file-name-1): New function.
23276 (make-backup-file-name): Use it.
23277 (find-backup-file-name): Likewise. Use format for clarity, not concat.
23278 (file-newest-backup): Use make-backup-file-name.
23279
23280 2000-04-09 Gerd Moellmann <gerd@gnu.org>
23281
23282 * progmodes/ebrowse-ffh.el: New file.
23283
23284 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn):
23285 Moved to ebrowse-ffh.el.
23286 (ebrowse-load): Add autoload.
23287
23288 * finder.el (finder-commentary): Add autoload cookie.
23289
23290 * mail/rfc2368.el: Correct author's email address.
23291
23292 * progmodes/ebrowse.el: New file.
23293
23294 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
23295 item help string.
23296 (easy-menu-do-add-item): Ditto.
23297 (easy-menu-define): Extend doc string.
23298
23299 * jit-lock.el (with-buffer-unmodified): Use restore-buffer-modified-p.
23300 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
23301 (jit-lock-function, jit-lock-stealth-fontify): Don't use
23302 with-buffer-unmodified.
23303
23304 2000-04-08 Dave Love <fx@gnu.org>
23305
23306 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
23307 unless, when.
23308
23309 2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
23310
23311 * viper-util.el (viper-put-on-search-overlay): New subroutine.
23312 (viper-flash-search-pattern): No operation when using Emacs
23313 doesn't support face.
23314 Use `viper-put-on-search-overlay'.
23315
23316 2000-04-04 Gerd Moellmann <gerd@gnu.org>
23317
23318 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
23319 like C-r.
23320
23321 * progmodes/make-mode.el: Some doc fixes.
23322 (makefile-mode-abbrev-table): New variable.
23323 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
23324 (makefile-font-lock-keywords): Fontify includes and conditionals.
23325 (toplevel): Require `dabbrev' and `add-log' when compiling.
23326
23327 * replace.el (perform-replace): Don't move forward one char
23328 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
23329 to do that because it leaves point 1 position after the last
23330 replacement, after everything has been replaced.
23331
23332 * jit-lock.el (with-buffer-unmodified): New macro.
23333 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
23334 modified state.
23335 (jit-lock-function-1): Extracted from jit-lock-function; not
23336 preserving buffer's modified state.
23337 (jit-lock-function, jit-lock-stealth-fontify):
23338 Call jit-lock-function-1.
23339
23340 * mail/rfc2368.el: Remove supernumerary copyright line.
23341
23342 2000-04-04 Milan Zamazal <pdm@freesoft.cz>
23343
23344 * glasses.el: Provide facilities for inserting space before left
23345 parentheses and uncapitalization of identifiers.
23346 (glasses-mode): Try to remove old overlays in all cases.
23347
23348 2000-04-03 Gerd Moellmann <gerd@gnu.org>
23349
23350 * progmodes/compile.el (compile-internal): Display the compilation
23351 buffer in a different frame, if it's already displayed there.
23352
23353 * mail/rfc2368.el: New file.
23354
23355 * simple.el (sendmail-user-agent-compose): Recognize a `body'
23356 header and insert its value as mail body.
23357
23358 * subr.el (member-ignore-case): New function.
23359
23360 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
23361 (dabbrev--find-expansion): Ignore buffers matching a regexp
23362 from dabbrev-ignored-regexps.
23363
23364 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
23365 to extensions handled by gzip.
23366
23367 2000-04-03 Richard M. Stallman <rms@gnu.org>
23368
23369 * files.el (insert-directory): List the total free space
23370 along with the used space.
23371
23372 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
23373 line is followed by one that matches CITATION-REGEXP, end the
23374 paragraph.
23375
23376 2000-04-03 Markus Rost <rost@delysid.gnu.org>
23377
23378 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
23379 (rmail-make-basic-summary-line): Use that option.
23380
23381 2000-04-03 Kenichi Handa <handa@etl.go.jp>
23382
23383 * international/mule-cmds.el (encoded-string-description):
23384 Rewritten. Try pretty description for ISO 2022 escape sequences
23385 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
23386 for hexadecimal format.
23387
23388 2000-04-01 Dave Love <fx@gnu.org>
23389
23390 * cpp.el: Change customization group to `c' from `C'.
23391
23392 * vcursor.el (vcursor-move): Use display-color-p.
23393
23394 * international/mule-util.el: Provide mule-utils.
23395 (string-to-sequence): Simplify and speed up.
23396
23397 * international/mule.el (make-coding-system): Purecopy doc-string.
23398
23399 * international/mule-cmds.el: Various menu changes.
23400 (describe-specified-language-support): Handle `Default'.
23401 (set-language-info): Purecopy `info'.
23402
23403 2000-03-31 Andrew Innes <andrewi@gnu.org>
23404
23405 * vc.el (vc-backend-diff): Return the correct status if we had to
23406 retry the rcsdiff command without the --brief option.
23407
23408 2000-03-31 Dave Love <fx@gnu.org>
23409
23410 * help.el (help-manyarg-func-alist): Correct several omissions.
23411
23412 * add-log.el: Don't require cl, fortran.
23413 (add-log-current-defun-function): Doc fix.
23414 (change-log-version-number-regexp-list): Remove SCCS part. Doc fix.
23415 (change-log-version-rcs): Function deleted.
23416 (change-log-version-number-search): Doc fix.
23417 Use vc-workfile-version. Avoid CL dolist.
23418 (add-change-log-entry): Just call add-log-current-defun to get
23419 defun. Simplify somewhat.
23420 (change-log-get-method-definition-1): Likewise.
23421 (add-log-current-defun): Return nil if calling
23422 add-log-current-defun-function does so. Move Fortran stuff to
23423 fortran.el. Return string without properties.
23424
23425 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
23426 and :alpha: char classes.
23427
23428 * mail/supercite.el: Defvar curline when compiling.
23429 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
23430 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
23431 rather than a-zA-Z0-9 to allow non-ASCII characters.
23432
23433 2000-03-31 Gerd Moellmann <gerd@gnu.org>
23434
23435 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
23436
23437 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
23438 Re-enable new code.
23439
23440 * lpr.el (print-region-1): Use -d to specify printer name for
23441 systems `usg-unix-v*, `dgux', `hpux', `irix'.
23442
23443 2000-03-31 Dave Love <fx@gnu.org>
23444
23445 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
23446 Look for function definition in symbol's function value slot first
23447 instead of first consulting byte-compile-function-environment.
23448
23449 2000-03-31 Kenichi Handa <handa@etl.go.jp>
23450
23451 * language/european.el ("Polish"): New language environment.
23452 (setup-polish-environment): New function.
23453
23454 2000-03-30 Gerd Moellmann <gerd@gnu.org>
23455
23456 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
23457 Disable new code.
23458
23459 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
23460 trying to `load' the symbol of an autoload instead of the file
23461 recorded in the autoload. Fix error messages.
23462
23463 2000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23464
23465 * ps-print.el: PostScript programming fix for ghostview, doc fix.
23466 (ps-print-version): New version number (5.1.3).
23467 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
23468 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
23469 (ps-generate-postscript-with-faces): Code fix.
23470 (ps-color-values): XEmacs compatibility.
23471 (ps-print-background-image, ps-print-background-text, ps-printer-name)
23472 (ps-default-fg, ps-default-bg): Adjust customization.
23473 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
23474 (ps-color-scale): Renaming old ps-color-value fun.
23475 (ps-print-headers): Replace ps-print-header group to avoid conflict
23476 with ps-print-header variable.
23477 (ps-print-miscellany): New group.
23478 (ps-format-color, ps-rgb-color): New funs.
23479 (ps-default-foreground): New var.
23480 (ps-printer-name-option): New const.
23481
23482 2000-03-30 Peter Breton <pbreton@ne.mediaone.net>
23483
23484 * net/net-utils.el:
23485 (network-connection-host, network-connection-service): New variables
23486 (network-connection-mode): New mode, derived from comint-mode
23487 (network-connection-mode-setup): New function, saves host and
23488 service information in local variables.
23489
23490 * lisp/locate.el:
23491 (locate-word-at-point): Added this function
23492 (locate): Default to using locate-word-at-point as input
23493 Run dired-mode-hook
23494
23495 2000-03-29 Dave Love <fx@gnu.org>
23496
23497 * calendar/appt.el: Doc fixes.
23498 (appt-check): Convert min-to-app to a string before passing to
23499 appt-disp-window-function or concat.
23500 (appt-delete-window): Remove test for frame-root-window.
23501 (appt-select-lowest-window, appt-convert-time): Simplify.
23502
23503 * emacs-lisp/bytecomp.el: Doc fixes.
23504 (byte-compile-file-form-autoload):
23505 Update byte-compile-function-environment.
23506
23507 2000-03-29 Andreas Schwab <schwab@suse.de>
23508
23509 * emacs-lisp/autoload.el: Also print defsubst doc string specially.
23510
23511 * dired.el (dired-insert-directory): If dired-free-space-program
23512 failed just delete its output.
23513
23514 2000-03-29 Dave Love <fx@gnu.org>
23515
23516 * international/iso-cvt.el: Move provide to end. Doc fixes.
23517 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
23518 (iso-iso2sgml, iso-sgml2iso): New functions.
23519 (iso-cvt-define-menu): Fix some entries and use backquote for
23520 clarity.
23521
23522 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
23523
23524 2000-03-28 Gerd Moellmann <gerd@gnu.org>
23525
23526 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
23527 ISO-DATE. If non-nil, return date in ISO 8601 format.
23528
23529 2000-03-26 Stefan Monnier <monnier@cs.yale.edu>
23530
23531 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
23532 if it ever becomes used.
23533 (log-edit-mode-hook): Default to vc-log-mode-hook.
23534 (log-edit-mode): Fix the docstring.
23535
23536 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
23537 the code.
23538
23539 2000-03-26 Dave Love <fx@gnu.org>
23540
23541 * net/browse-url.el (browse-url): Re-fix case of
23542 browse-url-browser-function being an alist.
23543 (browse-url): Add :link to defgroup.
23544
23545 * files.el: Doc fixes.
23546 (file-truename): Include `[' in wildcard characters.
23547 (automount-dir-prefix): Customize.
23548 (find-file-wildcards): Add :version.
23549 (find-file-noselect): Simplify a mapcar call.
23550
23551 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
23552 compatible with inf-lisp version.
23553 (eval-defun-1): Fix custom-declare-variable case.
23554
23555 2000-03-25 Stefan Monnier <monnier@cs.yale.edu>
23556
23557 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
23558
23559 2000-03-24 Gerd Moellmann <gerd@gnu.org>
23560
23561 * Makefile (COMPILE_FIRST): New macro.
23562 (compile-files): Compile files from COMPILE_FIRST first.
23563
23564 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new code.
23565
23566 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
23567 matching open parenthesis in column 0 to defun-prompt-regexp
23568 only if open-paren-in-column-0-is-defun-start is set.
23569
23570 * sun-curs.el: Require CL at compile-time only.
23571
23572 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
23573 instead of copy-list which is a function from CL.
23574 (msb--choose-menu, msb--mode-menu-cond)
23575 (msb--create-buffer-menu-2): Use dolist instead of mapc.
23576 (msb--init-file-alist): Use mapcar instead of mapcan.
23577 (msb--aggregate-alist): Use mapcar instead of mapcan.
23578 Fix `(' in column 0 in doc string.
23579 (msb--add-separators): Use mapcar instead of mapcan.
23580
23581 * cus-dep.el: Require CL at compile-time only.
23582
23583 2000-03-24 Stefan Monnier <monnier@cs.yale.edu>
23584
23585 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
23586 (byte-compile-warnings): New warning `noruntime'.
23587 (byte-compile-constants, byte-compile-variables): Fix docstring.
23588 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
23589 execute `eval-whenc-compile's body.
23590 (byte-compile-unresolved-functions): Fix docstring.
23591 (byte-compile-eval): New function.
23592 (byte-compile-callargs-warn): Check if the function will be available
23593 at runtime (via property `byte-compile-noruntime').
23594 (byte-compile-print-syms): New function.
23595 (byte-compile-warn-about-unresolved-functions): Also warn about
23596 `noruntime' functions (and use `byte-compile-print-syms').
23597 (byte-compile-file): Capitalize the message.
23598
23599 2000-03-24 Gerd Moellmann <gerd@gnu.org>
23600
23601 * mail/rmail.el (rmail-confirm-expunge): New user-option.
23602 (rmail-expunge): Ask for confirmation depending on the setting
23603 of rmail-confirm-expunge.
23604
23605 2000-03-23 Gerd Moellmann <gerd@gnu.org>
23606
23607 * Makefile (bootstrap-clean): If $(emacs) exists, build
23608 loaddefs.el first. A loaddefs.el that's not up-to-date might
23609 cause a bootstrap failure because things don't autoload as expected.
23610
23611 2000-03-23 Dave Love <fx@gnu.org>
23612
23613 * net/browse-url.el: Restore previous use of
23614 browse-url-maybe-new-window.
23615
23616 2000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23617
23618 * ps-print.el: Skip banner page fix.
23619 (ps-print-version): New version number (5.1.2).
23620 (ps-begin-file, ps-end-file, ps-generate): Code fix.
23621
23622 2000-03-23 Dave Pearson <davep@davep.org>
23623
23624 * net/quickurl.el Changed the type of parameter passed to the
23625 function defined by `quickurl-format-function'. Before only the
23626 text of the URL was passed. Now the whole URL structure is passed
23627 and the function is responsible for extracting the parts it requires.
23628 Changed the default of `quickurl-format-function' accordingly.
23629 (quickurl-insert): Changed the `funcall' of
23630 `quickurl-format-function' to match the above change.
23631 (quickurl-list-insert): Changed the `url' case so that it makes
23632 use of `quickurl-format-function', previous to this the format was
23633 hard wired.
23634
23635 2000-03-22 Gerd Moellmann <gerd@gnu.org>
23636
23637 * startup.el: Change some spellings for the X Window System.
23638
23639 2000-03-22 Stefan Monnier <monnier@cs.yale.edu>
23640
23641 * progmodes/make-mode.el (makefile-warn-suspicious-lines):
23642 Clean up the code and the regexp and make sure the cursor is
23643 temporarily moved to the suspicious line while querying the user.
23644
23645 2000-03-22 Jason Rumney <jasonr@gnu.org>
23646
23647 * w32-fns.el (w32-charset-info-alist): Initialize.
23648
23649 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23650
23651 * ps-print.el: N-up last page fix.
23652 (ps-print-version): New version number (5.1.1).
23653 (ps-end-file, ps-end-job, ps-generate): Code fix.
23654
23655 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
23656
23657 * files.el (find-file-run-dired): Update docstring.
23658 (find-directory-functions): New hook.
23659 (find-file-noselect): Run find-directory-functions rather than
23660 calling dired directly.
23661
23662 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
23663
23664 * pcvs.el: Add a minimal leading commentary.
23665 (cvs-make-cvs-buffer): Change the header part by removing the startup
23666 message and adding a `Module' entry. Also replace the FOOTER and
23667 HEADER special fileinfos with the new support in ewoc for updating
23668 its own footer and header.
23669 (cvs-update-header): Update to use the header/footer of the ewoc.
23670 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
23671 (cvs-is-within-p): New function.
23672 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
23673 to only examine some subset of the buffers.
23674
23675 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
23676 `format' instead of our own ad-hoc functions.
23677 Remove HEADER and FOOTER cases, now handled in the EWOC.
23678 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
23679
23680 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
23681 output to avoid scaring the user.
23682 (cvs-parse-table): Catch message for non-up-to-date commits.
23683
23684 * pcvs-defs.el (cvs-startup-message): Remove.
23685 (cvs-global-menu): New autoloaded menu.
23686
23687 * pcvs-util.el (cvs-string-fill): Remove.
23688
23689 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
23690 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
23691 PP part of it and also make it work for footers and headers.
23692 (ewoc-create): Drop POS and BUFFER arguments.
23693 Use the DLL's dummy node to store the end-of-footer position.
23694 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
23695 (ewoc-refresh): Remove unused `header' variable.
23696 (ewoc-(get|set)-hf): New functions.
23697
23698 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
23699 log-view-*-(message|file) and use easy-mmode-define-navigation.
23700 (log-view-message-re): Match SCCS format as well.
23701 And match the revision line rather than the dashed separator line.
23702 (log-view-mode): Use the new define-derived-mode.
23703 (log-view-current-tag): Fill in with an actual implementation.
23704
23705 * cvs-status.el (cvs-status-(prev|next)): Rename from
23706 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
23707 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
23708 to let the output "breathe" a little more (more readable).
23709 (cvs-status-mode): Use the new define-derived-mode.
23710
23711 * smerge-mode.el (smerge-auto-leave): New function and variable.
23712 (smerge-basic-map): Rename from smerge-basic-keymap.
23713 Change the bindings for smerge-diff-*.
23714 (smerge-*-map): Use easy-mmode-defmap.
23715 (smerge-(next|prev)): Use easy-mmode-define-navigation.
23716 (smerge-keep-*): Use smerge-auto-leave.
23717
23718 2000-03-21 Jason Rumney <jasonr@gnu.org>
23719
23720 * cus-edit.el (custom-button-face): Use 3D look for w32.
23721 (custom-button-pressed-face): Likewise.
23722
23723 2000-03-21 Gerd Moellmann <gerd@gnu.org>
23724
23725 * progmodes/etags.el (tags-case-fold-search): New user-option.
23726 (tags-loop-eval): New function. Bind case-fold-search around eval
23727 depending on the value of tags-case-fold-search.
23728 (tags-loop-continue): Use tags-loop-eval.
23729 (find-tag-in-order): Bind case-fold-search depending on the value
23730 of tags-case-fold-search.
23731
23732 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
23733
23734 * diff-mode.el (diff-mode-*-map): Use `easy-mmode-defmap'.
23735 (diff-end-of-hunk): Return the end position for use in
23736 `easy-mmode-define-navigation'.
23737 (diff-recenter): Remove.
23738 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
23739 of `easy-mmode-define-navigation'.
23740 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
23741 previous renaming) and fix to use new names.
23742 (diff-merge-strings): Use \n as separator: simpler, faster.
23743 (diff-mode): Use `define-derived-mode'.
23744
23745 * derived.el (define-derived-mode): Don't autoload anymore.
23746 Prefer the macro-only version provided by easy-mmode.el.
23747
23748 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
23749 `easy-mmode-define-derived-mode'. Use `combine-run-hooks'.
23750 (easy-mmode-define-navigation): New macro.
23751
23752 * subr.el (combine-run-hooks): New function.
23753
23754 2000-03-21 Kenichi HANDA <handa@etl.go.jp>
23755
23756 * term/x-win.el: Fontsets related initialization is simplified.
23757
23758 * international/mule-diag.el (describe-font): Don't refer to
23759 global-fontset-alist, instead call font-list.
23760 (describe-fontset, list-fontsets, mule-diag): Likewise.
23761 (print-fontset): Adjusted for the change of fontset implementation.
23762
23763 * international/fontset.el (x-charset-registries): Variable removed,
23764 instead the corresponding data is stored in the default fontset.
23765 (register-alternate-fontnames): Function removed.
23766 (resolved-ascii-font): Variable removed.
23767 (x-compose-font-name): Ignore the second argument REDOCE.
23768 (x-complement-fontset-spec): Complement only an ASCII font and
23769 element for those charsets than can use that ASCII font.
23770 (generate-fontset-menu): Don't refer to global-fontset-alist,
23771 instead call fontset-list.
23772 (uninstantiated-fontset-alist): Variable removed.
23773 (x-style-funcs-alist): Likewise.
23774 (fontset-default-styles): Likewise.
23775 (x-modify-font-name): Function removed.
23776 (create-fontset-from-fontset-spec): Ignore the argument STYLE-VARIANT.
23777 (create-fontset-from-ascii-font): Docsting adjusted for the above
23778 change.
23779 (instantiate-fontset, resolve-fontset-name): Functions removed.
23780 (fontset-list): Now implemented by C code.
23781
23782 * faces.el (read-face-font): Fix TABLE arg to completing-read.
23783 (describe-face): Include `font' attribute in the description.
23784
23785 2000-03-21 Kenichi Handa <handa@etl.go.jp>
23786
23787 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
23788
23789 2000-03-20 Gerd Moellmann <gerd@gnu.org>
23790
23791 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
23792 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
23793 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
23794
23795 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
23796 about behavior of set-buffer-modified-p wrt redisplay.
23797
23798 2000-03-19 Richard M. Stallman <rms@gnu.org>
23799
23800 * view.el (view-mode-disable): Kill local binding of view-read-only.
23801
23802 2000-03-18 Gerd Moellmann <gerd@gnu.org>
23803
23804 * font-lock.el (font-lock-apply-syntactic-highlight): If VALUE
23805 is a string, convert it to a syntax cell using string-to-syntax.
23806
23807 * simple.el (syntax-code-table, syntax-flag-table): New variables.
23808 (string-to-syntax): New function.
23809
23810 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
23811 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
23812 try to use passive ftp mode.
23813
23814 2000-03-17 Gerd Moellmann <gerd@gnu.org>
23815
23816 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
23817
23818 * simple.el (append-to-buffer): Update point of windows after
23819 insertion.
23820
23821 * abbrev.el (inverse-add-abbrev): Identify word by first moving
23822 forward then moving backward. Reindent.
23823
23824 * frame.el (other-frame): Call x-focus-frame only if
23825 focus-follows-mouse is off.
23826
23827 2000-03-17 Dave Love <fx@gnu.org>
23828
23829 * pcvs-util.el (cvs-strings->string): Rename replace-regexps-in-string.
23830
23831 2000-03-17 Stefan Monnier <monnier@cs.yale.edu>
23832
23833 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
23834 regexp for labels cannot span several lines.
23835
23836 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
23837 `(setq :<key> ':<key>)' to the macro expansion.
23838
23839 2000-03-16 Dave Love <fx@gnu.org>
23840
23841 * progmodes/f90.el (f90): Put custom group under `languages', not
23842 `fortran'.
23843 (f90-mode-hook): Customize.
23844 (f90-mode): Set add-log-current-defun-function.
23845 (f90-current-defun): New function.
23846
23847 2000-03-16 Gerd Moellmann <gerd@gnu.org>
23848
23849 * cus-edit.el (custom-variable-tag-face): Handle case that
23850 default face's height is not a number.
23851 (custom-face-tag-face, custom-group-tag-face-1)
23852 (custom-group-tag-face): Ditto.
23853 (custom-group-tag-face-1): Add :group.
23854
23855 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
23856
23857 2000-03-15 Gerd Moellmann <gerd@gnu.org>
23858
23859 * pcvs-defs.el (toplevel): Remove autoload cookie for form
23860 requiring easymenu.
23861
23862 2000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
23863
23864 * ps-print.el: PostScript user-defined prologue, PostScript error
23865 handler, doc fix.
23866 (ps-print-version): New version number (5.1).
23867 (ps-user-defined-prologue, ps-error-handler-message)
23868 (ps-print-prologue-0, ps-error-handler-alist): New vars.
23869 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
23870 (ps-insert-string): New function.
23871
23872 2000-03-15 Kenichi Handa <handa@etl.go.jp>
23873
23874 * international/ccl.el (ccl-compile-expression): Don't generate
23875 invalid self-assignment code.
23876
23877 2000-03-14 Dave Love <fx@gnu.org>
23878
23879 * subr.el (replace-regexp-in-string): Renamed from
23880 replace-regexps-in-string. Doc fix.
23881
23882 2000-03-12 Dave Love <fx@gnu.org>
23883
23884 * cus-edit.el: Doc fixes.
23885 (customize-set-variable, customize-save-variable): Rename args for doc.
23886 (custom-variable-tag-face, custom-face-tag-face)
23887 (custom-group-tag-face-1, custom-group-tag-face): Modify from
23888 style which user identify as hyperlink.
23889 (hook): Don't add undefined functions to the hook.
23890 (debug-ignored-errors): Transfer message from bindings.el.
23891
23892 2000-03-12 Gerd Moellmann <gerd@gnu.org>
23893
23894 * recentf.el (recentf-keep-non-readable-files-p):
23895 Remove double/nested definition.
23896
23897 2000-03-12 Dave Love <fx@gnu.org>
23898
23899 * facemenu.el (facemenu-get-face): Use display-color-p.
23900 * enriched.el (enriched-decode-foreground): Likewise.
23901 (enriched-decode-background): Likewise.
23902 * isearch.el (isearch-highlight): Likewise.
23903 * info-look.el (info-lookup): Likewise.
23904 * simple.el (completion-setup-function): Likewise.
23905
23906 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
23907 :options.
23908
23909 * bindings.el (mode-line-format): Fix line-number and
23910 column-number items. Add help-echo for the background.
23911 (mode-line-mule-info): Modify help-echo.
23912
23913 * avoid.el (mouse-avoidance-mode): Add autoload cookie to defcustom.
23914
23915 * files.el (load-file): Allow completion to .elc.
23916
23917 * man.el: Doc fixes.
23918 (Man-init-defvars): Use display-color-p to set fontification.
23919
23920 * play/hanoi.el (hanoi-internal): Don't use oddp.
23921
23922 2000-03-12 Gerd Moellmann <gerd@gnu.org>
23923
23924 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
23925
23926 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
23927
23928 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
23929
23930 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
23931 Fix comment.
23932
23933 2000-03-10 Stefan Monnier <monnier@cs.yale.edu>
23934
23935 * font-lock.el (font-lock-keywords): Fix the doc now that
23936 regexp-opt-depth is unnecessary.
23937 (save-buffer-state): Set an edebug spec.
23938 (font-lock-fontify-anchored-keywords): Properly handle the case when
23939 the matcher goes past the limit.
23940
23941 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
23942 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
23943
23944 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
23945 dll.el and cookie.el (from Elib) with heavy renaming and other
23946 massaging.
23947
23948 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
23949 Autoload the functions used.
23950 (easy-mmode-define-syntax): Fix CL typo.
23951 (easy-mmode-define-derived-mode): Improve the docstring generation.
23952
23953 2000-03-10 Gerd Moellmann <gerd@gnu.org>
23954
23955 * textmodes/texinfo.el (texinfo-version): Variable and function
23956 removed.
23957
23958 2000-03-09 Stefan Monnier <monnier@cs.yale.edu>
23959
23960 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
23961 allow more flexibility.
23962 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New fns.
23963 (easy-mmode-defmap, easy-mmode-defsyntax)
23964 (easy-mmode-define-derived-mode): New macros.
23965
23966 2000-03-09 Didier Verna <didier@xemacs.org>
23967
23968 * rect.el (replace-rectangle): New function.
23969
23970 2000-03-09 Dave Love <fx@gnu.org>
23971
23972 * progmodes/fortran.el (fortran-comment-line-start): Define as "C".
23973 (fortran-comment-line-start-skip): Don't match cpp stuff.
23974 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
23975 (fortran-mode-map): Remove over-eager custom-menu-create for now.
23976 (fortran-mode): Don't set fortran-comment-line-start-skip,
23977 fortran-comment-line-start here. Set comment-start,
23978 add-log-current-defun.
23979 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
23980 (fortran-current-defun): New function.
23981
23982 2000-03-09 Gerd Moellmann <gerd@gnu.org>
23983
23984 * emacs-lisp/re-builder.el: New file.
23985
23986 * mouse.el (mouse-drag-region): Don't run up-event handler
23987 if hscroll has changed.
23988
23989 * octave-mod.el (octave-font-lock-keywords): To font-lock the
23990 builtin operators, use `font-lock-builtin-face' for Emacs and
23991 `font-lock-preprocessor-face' otherwise.
23992
23993 * font-lock.el (lisp-font-lock-keywords-1): Highlight
23994 `(defun (setf foo)' differently.
23995
23996 2000-03-08 Stefan Monnier <monnier@cs.yale.edu>
23997
23998 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
23999 (regexp-opt): Update comment and adapt the code the new meaning of
24000 the `paren' argument of regex-opt-group for shy-groups.
24001 (regexp-opt-depth): Handle shy groups as well as backslashed
24002 backslashes.
24003 (regexp-opt-group): Turn the leading comment into a docstring.
24004 Allow `paren' to be a string (the string to use to open a group).
24005 Remove open-presuf and close-presuf. Instead of checking for `all
24006 one-char' and then later on check for `several one-char', handle
24007 both cases close together. Also apply a more generic algorithm
24008 for suffixes (the mirror image of the algorithm used for
24009 prefixes). Use shy-groups. Use nreverse rather than reverse.
24010 (regexp-opt-try-suffix): Removed.
24011
24012 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
24013 from comint-mode-map, so we can just inherit from it. Also, move
24014 the initialization into the `defvar' since there's no docstring
24015 anyway and it's fairly short.
24016 (inferior-scheme-mode): Define it as derived-mode: the code is
24017 shorter and this way we inherit from comint-mode-map rather than
24018 copying it.
24019
24020 * subr.el (replace-regexps-in-string): Properly handle the case
24021 where we match an empty string.
24022
24023 * comint.el (comint-exec-1): Add the current-dir to the exec-path
24024 when the command has a directory component (such as "./testml").
24025 Also fix a typo in the comment.
24026
24027 2000-03-08 Gerd Moellmann <gerd@gnu.org>
24028
24029 * Makefile (compile-files): Compile files one by one because
24030 that's the only way to ensure a clean compilation environment for
24031 each individual file.
24032
24033 * frame.el (other-frame): Call x-focus-frame.
24034
24035 2000-03-07 Dave Love <fx@gnu.org>
24036
24037 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
24038 :require to defcustom.
24039
24040 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads lists.
24041
24042 * files.el (auto-mode-alist): Add configure.in.
24043
24044 * progmodes/autoconf.el: New file.
24045
24046 2000-03-07 Gerd Moellmann <gerd@gnu.org>
24047
24048 * mail/mh-e.el: Change maintainer to `none'.
24049
24050 * recentf.el (recentf-keep-non-readable-files-p): Quote args
24051 to remove-hook and add-hook.
24052
24053 2000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
24054
24055 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
24056 it as the default.
24057 (mail-send): Test mail-send-nonascii also for the new `mime' value.
24058 (sendmail-send-it): Conditionally add MIME headers specifying the
24059 used character set.
24060
24061 2000-03-07 Dave Love <fx@gnu.org>
24062
24063 * winner.el: Fix keywords, autoload cookies.
24064 Split eval-when-compile form to avoid compilation failure.
24065
24066 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
24067
24068 * international/mule.el: Modify comment about coding system
24069 property `coding-category'.
24070 (make-coding-system): New argument EOL-TYPE. Pay attention to
24071 coding-category property of PROPERTIES.
24072
24073 * international/mule-conf.el (coding-category-utf-8)
24074 (coding-category-utf-16-be, coding-category-utf-16-le): New coding
24075 categories. Include them in the argument for set-coding-priority.
24076
24077 * international/mule-cmds.el (reset-language-environment):
24078 Include coding-category-utf-8, coding-category-utf-16-be, and
24079 coding-category-utf-16-le in the argument for set-coding-priority.
24080 (reset-language-environment): Initialize coding-category-utf-8,
24081 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
24082
24083 2000-03-06 Karl Fogel <kfogel@red-bean.com>
24084
24085 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
24086 code abstracted out of `bookmark-jump-noselect'. Now tries info
24087 extensions as well as compression extensions.
24088 (bookmark-jump-noselect): Use above new func.
24089
24090 2000-03-03 Gerd Moellmann <gerd@gnu.org>
24091
24092 * strokes.el: Change maintainer's mail address.
24093
24094 2000-03-03 Kenichi Handa <handa@etl.go.jp>
24095
24096 * international/mule-diag.el (list-character-sets): Make help-echo
24097 string by substitute-command-keys.
24098 (list-character-sets): Likewise.
24099 (sort-listed-character-sets): Call help-setup-xref.
24100
24101 2000-03-02 Gerd Moellmann <gerd@gnu.org>
24102
24103 * time.el (display-time-mail-file): Add `none' to the list of choices.
24104
24105 2000-03-01 Dave Love <fx@gnu.org>
24106
24107 * help.el (help-xref-go-back): Don't try to set position.
24108
24109 * international/mule-diag.el (list-character-sets):
24110 Call help-setup-xref. Add help-echo to xrefs.
24111 (list-character-sets-1): Add help-echo to xrefs.
24112
24113 2000-03-02 Gerd Moellmann <gerd@gnu.org>
24114
24115 * frame.el (blink-cursor-mode): Switch cursor on when turning
24116 the mode off.
24117
24118 * add-log.el (add-log-current-defun): Add support for
24119 Autoconf mode.
24120
24121 * mail/rmail.el (rmail-quit-hook): New variable.
24122
24123 2000-03-01 Dave Love <fx@gnu.org>
24124
24125 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
24126
24127 * help.el (help-xref-button): Add help-echo arg.
24128 (describe-function-1, describe-variable, help-make-xrefs): Use it.
24129
24130 * faces.el (list-faces-display): Supply help-echo with help-make-xrefs.
24131
24132 * facemenu.el (list-text-properties-at): Set help-xref-stack to nil.
24133
24134 2000-03-01 Gerd Moellmann <gerd@gnu.org>
24135
24136 * image.el (defimage): Look for image files in load-path.
24137
24138 * frame.el (busy-cursor-delay-seconds): Change type to `number'.
24139
24140 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24141
24142 * recentf.el (recentf): Added version tag to the defgroup of recentf.
24143
24144 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24145
24146 * recentf.el (recentf-cleanup): Changed to remove excluded file too.
24147 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
24148 action to select/unselect a file.
24149 (recentf-edit-list): Code cleanup and improvement.
24150 (recentf-open-more-files-action): `recentf-open-more-files' button
24151 widget action to open a file.
24152 (recentf-open-more-files): No more use standard completion but widgets.
24153 (recentf-more-collection): Deleted.
24154 (recentf-more-history): Deleted.
24155 (recentf-setup-more-completion): Deleted.
24156
24157 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24158
24159 * recentf.el (recentf-mode): No more needs that Emacs is running
24160 under a window-system.
24161
24162 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24163
24164 * recentf.el (recentf-edit-list): New command to edit the recent
24165 list which allow the user to remove files.
24166 (recentf-edit-selected-items): New global variable, used by
24167 `recentf-edit-list' to hold the list of files to be removed from
24168 the recent list.
24169 (recentf-make-menu-items): Updated to display a "Edit list..."
24170 menu item. Minor code cleanup.
24171
24172 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24173
24174 * recentf.el (recentf-open-more-files): New command to open files
24175 that are not displayed in the menu.
24176 (recentf-more-collection): New global variable holding the set of
24177 permissible completions used by `recentf-open-more-files'.
24178 (recentf-more-history): New global variable holding the history list
24179 used by `recentf-open-more-files' completion.
24180 (recentf-setup-more-completion): New function to setup completion for
24181 `recentf-open-more-files'.
24182 (recentf-make-menu-items): Updated to display a "More..." menu item.
24183
24184 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24185
24186 * recentf.el (recentf-menu-action): Doc fixed.
24187
24188 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
24189
24190 * recentf.el (recentf-menu-filter): Doc updated.
24191 (recentf-update-menu-hook): Allow menu filters to force menu update.
24192 (recentf-make-menu-items): New menu filter handling.
24193 (recentf-make-menu-item): New helper function.
24194 (recentf-menu-elements): New menu handling function.
24195 (recentf-sort-ascending): Updated to new menu filter handling.
24196 (recentf-sort-descending): Updated to new menu filter handling.
24197 (recentf-sort-basenames-ascending): New menu filter function.
24198 (recentf-sort-basenames-descending): New menu filter function.
24199 (recentf-show-basenames): New menu filter function.
24200 (recentf-show-basenames-ascending): New menu filter function.
24201 (recentf-show-basenames-descending): New menu filter function.
24202
24203 2000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
24204
24205 * diary-lib.el (list-diary-entries): Don't try to go forward at
24206 the end of the buffer.
24207
24208 2000-02-29 Kenichi Handa <handa@etl.go.jp>
24209
24210 * international/mule-diag.el (list-character-sets):
24211 Completely rewritten.
24212 (sort-listed-character-sets): New function.
24213 (list-character-sets-1): Completely rewritten.
24214 (list-character-sets-2): New function.
24215 (non-iso-charset-alist): New variable.
24216 (decode-codepage-char): New function.
24217 (charset-history): New variable.
24218 (read-charset) (list-block-of-chars)
24219 (list-iso-charset-chars)
24220 (list-non-iso-charset-chars)
24221 (list-charset-chars): New functions.
24222 (mule-diag): Call list-character-sets-2, not list-character-sets-2.
24223 (dump-charsets): Likewise.
24224
24225 2000-02-29 Gerd Moellmann <gerd@gnu.org>
24226
24227 * dired-x.el (dired-filename-at-point): Add `@' to valid
24228 file name characters.
24229 (dired-filename-at-point): Handle ange-ftp file names.
24230
24231 * frame.el (frame-notice-user-settings): Use assq-delete-all
24232 instead of assoc-delete-all.
24233 (frame-notice-user-settings): Ditto.
24234
24235 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
24236 Don't copy alist.
24237
24238 2000-02-28 Eli Barzilay <eli@cs.cornell.edu>
24239
24240 * calculator.el (calculator-use-menu): New option.
24241 (calculator-initial-bindings): Changed some bindings to work as macros.
24242 (calculator-forced-input): Removed.
24243 (calculator-restart-other-mode): New variable.
24244 (calculator-mode-map): Set up menu.
24245
24246 2000-02-28 Jari Aalto <jari.aalto@poboxes.com>
24247
24248 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc tags.
24249
24250 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
24251
24252 * viper-cmd.el (viper-envelop-ESC-key): Add the option to
24253 translate all ESC key sequences.
24254 (viper-goto-mark-subr): Restore markers for files for which
24255 they were saved.
24256 * viper-init.el (viper-translate-all-ESC-keysequences): New variable.
24257 * viper-util.el (viper-set-replace-overlay-glyphs)
24258 (viper-set-replace-overlay): Always check if the replacement
24259 overlay is live.
24260 * viper.el (viper-vi-state-mode-list): Add major modes.
24261 * ediff-wind.el: Minor comment changes.
24262 * ediff.el: Copyright notice date fix.
24263
24264 2000-02-27 Jason Rumney <jasonr@gnu.org>
24265
24266 * faces.el (face-font-family-alternatives): Add arial to helv.
24267 (mode-line, header-line, tool-bar): Same default as x for w32.
24268 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
24269 face-font-family-alternatives from working.
24270 * term/w32-win.el (mouse-set-font): Do not build fontset from
24271 chosen font.
24272
24273 2000-02-25 Sam Steingold <sds@goems.com>
24274
24275 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
24276 properly.
24277
24278 2000-02-25 Richard M. Stallman <rms@gnu.org>
24279
24280 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
24281
24282 2000-02-25 Gerd Moellmann <gerd@gnu.org>
24283
24284 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer writable.
24285
24286 * frame.el (busy-cursor-delay-seconds): New option.
24287
24288 2000-02-24 Gerd Moellmann <gerd@gnu.org>
24289
24290 * frame.el (show-cursor-in-non-selected-windows): New option.
24291
24292 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
24293
24294 * diary-lib.el (include-other-diary-files): Undo the selective
24295 display in any included file and don't kill it.
24296
24297 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
24298
24299 * dired.el (dired-mode-map): Don't remove "Edit" from the menu bar.
24300 Menu items converted to (menu-item format, help strings added.
24301 [downcase, upcase]: Don't enable on MS-DOS.
24302 [symlink, symlinks]: Don't show if make-symbolic-link is not bound.
24303 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
24304
24305 2000-02-23 Dave Love <fx@gnu.org>
24306
24307 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
24308 (backward-kill-word): Revert addition of * to interactive spec --
24309 it's a feature.
24310
24311 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
24312 (backward-kill-sentence, kill-sentence): Likewise.
24313
24314 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
24315 scratch buffer name.
24316 (gud-format-command): Use int-to-string in ?l case. Simplify slightly.
24317
24318 * term/w32-win.el (internal-face-interactive): Update prompt for
24319 new read-face-name.
24320
24321 * mail/footnote.el (footnote): Add :version to defgroup.
24322 (footnote-section-tag-regexp): Customize.
24323 (footnote-start-tag, footnote-end-tag): New option.
24324 (footnote-latin-regexp): New variable.
24325 (Footnote-latin): New function.
24326 (footnote-style-alist): Add element for latin style.
24327 (footnote-style): Moved.
24328 (Footnote-goto-footnote): Use eq to test arg.
24329
24330 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
24331
24332 * emacs-lisp/byte-opt.el: Change old backquote syntax.
24333 (byte-compile-trueconstp): Include keywords.
24334 (byte-optimize-quote, byte-optimize-lapcode):
24335 Use byte-compile-const-symbol-p.
24336 (byte-optimize-char-before): New optimization.
24337
24338 * emacs-lisp/bytecomp.el: Change old backquote syntax.
24339 (byte-compile-const-symbol-p): New function.
24340 (byte-compile-constp, byte-compile-out-toplevel)
24341 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
24342 Use it.
24343
24344 * subr.el (define-key-after): Default AFTER to t. Doc fix.
24345
24346 2000-02-23 Kenichi Handa <handa@etl.go.jp>
24347
24348 * international/encoded-kb.el: Be sure to update minor-mode-alist
24349 and minor-mode-map-alist.
24350 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
24351 codes SS2 and SS3 correctly.
24352 (encoded-kbd-self-insert-ccl): New function.
24353 (encoded-kbd-setup-keymap): New function.
24354 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
24355 by calling encoded-kbd-setup-keymap.
24356
24357 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte characters.
24358 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t locally.
24359
24360 2000-02-22 Dave Love <fx@gnu.org>
24361
24362 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
24363 (lisp-mode-map, lisp-interaction-mode-map): Define all inside defvar.
24364 (lisp-mode-syntax-table): Set up for #|...|# comments.
24365 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
24366 classes. Match `defface'.
24367 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
24368 (eval-defun-1): Fix for defcustom.
24369 (lisp-indent-region): Doc fix.
24370
24371 * subr.el (when, unless, split-string): Doc fix.
24372 (read-passwd): Move call of clear-this-command-keys to the right place.
24373 (replace-regexps-in-string): New function.
24374
24375 2000-02-22 Gerd Moellmann <gerd@gnu.org>
24376
24377 * help.el (describe-variable): Set syntax table to
24378 emacs-lisp-mode-syntax-table when moving forward over the
24379 symbol's name.
24380
24381 2000-02-22 Dave Love <fx@gnu.org>
24382
24383 * xt-mouse.el: Doc fixes.
24384 (xterm-mouse-position-function): New function, replacing advice of
24385 mouse-position.
24386 (xterm-mouse-mode): Use it. Don't turn on under a window system.
24387
24388 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
24389
24390 2000-02-21 Gerd Moellmann <gerd@gnu.org>
24391
24392 * format.el (format-annotate-single-property-change):
24393 Handle properties with dotted-list values.
24394 (format-proper-list-p): New function.
24395
24396 * enriched.el (enriched-face-ans): Handle '(foreground-color
24397 . COLOR) and (background-color . COLOR).
24398
24399 2000-02-20 Dave Love <fx@gnu.org>
24400
24401 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
24402 and assignments to it.
24403 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
24404 current local map.
24405 (make-flyspell-overlay): Use it.
24406 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
24407
24408 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
24409 (lm-get-header-re): Defun, not defsubst.
24410 (lm-get-package-name): Defun, not defsubst. Simplify.
24411 (lm-version): Doc fix. Simplify.
24412 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
24413 (lm-crack-address, lm-last-modified-date, lm-commentary)
24414 (lm-verify, lm-synopsis): Simplify.
24415 (lm-report-bug): Require emacsbug. Use compose-mail.
24416
24417 2000-02-20 Gerd Moellmann <gerd@gnu.org>
24418
24419 * dired.el (dired-mode): Call propertized-buffer-identification
24420 to set mode-line-buffer-identification to something having
24421 the right text properties.
24422
24423 * bindings.el (propertized-buffer-identification): New function.
24424
24425 2000-02-20 Dave Love <fx@gnu.org>
24426
24427 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
24428 check for t-mouse too.
24429
24430 * cus-start.el: Make echo-keystrokes `number'.
24431
24432 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
24433
24434 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
24435 Don't call ring-empty-p unless tags-location-ring is bound.
24436 From Noah Friedman <friedman@splode.com>.
24437
24438 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
24439
24440 * progmodes/hideshow.el (hs-flag-region): No longer use
24441 `intangible' overlay property.
24442
24443 (hs-toggle-hiding): New command.
24444 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
24445
24446 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
24447 Fix omission bug: Run `hs-minor-mode-hook' for both activation
24448 and deactivation.
24449
24450 2000-02-18 Gerd Moellmann <gerd@gnu.org>
24451
24452 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
24453
24454 2000-02-17 Gerd Moellmann <gerd@gnu.org>
24455
24456 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
24457
24458 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
24459 of `*' to handle `(* ... *)' comments.
24460
24461 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
24462
24463 * faces.el (list-faces-display): Use display-mouse-p instead of
24464 window-system.
24465
24466 * menu-bar.el (global-map): Menu-bar items converted to the new
24467 format (menu-item..., rearranged for better CUA compliance, and
24468 their names changed for better clarity. Help strings added.
24469
24470 * international/mule-cmds.el (mule-menu-keymap)
24471 (describe-language-environment-map, set-coding-system-map)
24472 (setup-language-environment-map): Convert to new (menu-item...
24473 form, add help strings. Change names of menu items for better clarity.
24474 "Mule" menu-bar item removed (it's now in the "Options" submenu).
24475
24476 2000-02-17 Gerd Moellmann <gerd@gnu.org>
24477
24478 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
24479 within the code.
24480
24481 2000-02-16 Dave Love <fx@gnu.org>
24482
24483 * faces.el: Don't require custom. Add more specific :groups to
24484 various deffaces.
24485 (set-face-attribute): Purecopy args.
24486 (read-face-name): Default to name at point and use it in prompt.
24487 Remove colon from arg in all callers.
24488 (list-faces-display): Hyperlink to face descriptions and customize
24489 buffers.
24490
24491 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
24492
24493 * wid-edit.el (widget-match-inline): An atom never matches a list.
24494
24495 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24496
24497 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
24498 at ':' characters by call to split-string.
24499
24500 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24501
24502 * textmodes/bibtex.el: Added RCS version identification.
24503
24504 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24505
24506 * textmodes/bibtex.el: Some temporary comments removed.
24507 (bibtex-field-name, bibtex-entry-type): Made the relationship explicit.
24508 (bibtex-field-const): Allow capital letters.
24509 (bibtex-start-of-string): Deleted because unused.
24510
24511 * textmodes/bibtex.el: Unified some nomenclature. We no longer
24512 use the term 'reference' to describe a bibtex entry as a whole.
24513 Further, reference keys are no longer called 'labels'.
24514 (bibtex-keys): Renamed to bibtex-reference-keys.
24515 (bibtex-reformat-previous-labels): Renamed to
24516 bibtex-reformat-previous-reference-keys.
24517 (bibtex-reference-type): Renamed to bibtex-entry-type.
24518 (bibtex-reference-head): Renamed to bibtex-entry-head.
24519 (bibtex-reference-maybe-empty-head): Renamed to
24520 bibtex-entry-maybe-empty-head.
24521 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
24522 (bibtex-search-reference): Renamed to bibtex-search-entry.
24523 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
24524 bibtex-enclosing-entry-maybe-empty-head.
24525 (bibtex-entry-field-alist, bibtex-entry-head)
24526 (bibtex-font-lock-keywords, bibtex-skip-to-valid-entry)
24527 (bibtex-map-entries, bibtex-search-entry)
24528 (bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry)
24529 (bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode)
24530 (bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message)
24531 (bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer)
24532 (bibtex-find-entry-location, bibtex-validate, bibtex-find-text)
24533 (bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat)
24534 (bibtex-complete-key, bibtex-String) : Use the new nomenclature.
24535
24536 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24537
24538 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
24539 comment.
24540 (bibtex-format-field-delimiters): New function, functionality
24541 extracted from bibtex-format-entry.
24542 (bibtex-autokey-get-yearfield-digits): New function, functionality
24543 extracted from bibtex-autokey-get-yearfield.
24544
24545 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
24546 entries in order to avoid stack overflow in the regexp matcher if
24547 field contents become large.
24548 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield)
24549 (bibtex-field-string-part-not-braced)
24550 (bibtex-field-string-part-no-inner-braces)
24551 (bibtex-field-string-part-1-inner-brace)
24552 (bibtex-field-string-part-2-inner-braces)
24553 (bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced)
24554 (bibtex-field-string-quoted, bibtex-field-string)
24555 (bibtex-field-string-or-const, bibtex-field-text, bibtex-field)
24556 (bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix)
24557 (bibtex-string, bibtex-key-in-string, bibtex-text-in-string):
24558 Deleted as parsing is now performed by the following functions.
24559 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced)
24560 (bibtex-parse-quoted-string, bibtex-parse-field-string-quoted)
24561 (bibtex-parse-field-string, bibtex-search-forward-field-string)
24562 (bibtex-parse-association, bibtex-field-name-for-parsing)
24563 (bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field)
24564 (bibtex-search-forward-field, bibtex-search-backward-field)
24565 (bibtex-start-of-field, bibtex-end-of-field)
24566 (bibtex-start-of-name-in-field, bibtex-end-of-name-in-field)
24567 (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
24568 (bibtex-parse-string-prefix, bibtex-parse-string-postfix)
24569 (bibtex-parse-string, bibtex-search-forward-string)
24570 (bibtex-search-backward-string, bibtex-start-of-string)
24571 (bibtex-end-of-string, bibtex-start-of-reference-key-in-string)
24572 (bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string)
24573 (bibtex-end-of-text-in-string): New functions for the parsing of bibtex
24574 entries. Instead of reporting the results of the parsing by
24575 match-beginning or match-end, these functions return data structures
24576 that hold the corresponding positions.
24577 (bibtex-enclosing-field): Changed to also report field boundaries by
24578 return values rather than by match-beginning or match-end.
24579 The following functions have been adapted to use the new
24580 parsing functions.
24581 (bibtex-skip-to-valid-entry, bibtex-search-reference)
24582 (bibtex-enclosing-field, bibtex-format-entry)
24583 (bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring)
24584 (bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode)
24585 (bibtex-print-help-message, bibtex-end-of-entry)
24586 (bibtex-ispell-abstract, bibtex-validate, bibtex-next-field)
24587 (bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
24588 (bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry):
24589 Use the new method for parsing.
24590 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry)
24591 (bibtex-map-entries, bibtex-flash-head)
24592 (bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry)
24593 (bibtex-autokey-change, bibtex-autokey-get-namefield)
24594 (bibtex-autokey-get-names, bibtex-autokey-get-titlestring)
24595 (bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode)
24596 (bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer)
24597 (bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
24598 (bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
24599 order to make the new binding of case-fold-search immediately visible.
24600
24601 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24602
24603 * textmodes/bibtex.el: Copyright notice is up to date.
24604 Added constant 'bibtex-maintainer-salutation.
24605
24606 * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
24607 than make-temp-name, use match-string-no-properties and eliminate
24608 a quadratic behavior when building bibtex-strings.
24609
24610 * bibtex.el (bibtex-reference-key): Accept string entries whose
24611 reference key contains upper case letters.
24612
24613 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24614
24615 * bibtex.el (bibtex-reference-head): Allow entries to start with
24616 a new line.
24617
24618 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24619
24620 * bibtex.el: Hiding of entry bodies is not longer provided by
24621 bibtex.el directly. Instead the hideshow package can be used.
24622 Added a special bibtex entry to hs-special-modes-alist.
24623 (bibtex-hs-forward-sexp): Added for hideshow.el.
24624
24625 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
24626
24627 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
24628 proceedings entry type (for cross referencing). Thanks to Wagner
24629 Toledo Correa for the suggestion.
24630
24631 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
24632
24633 2000-02-14 Kenichi Handa <handa@etl.go.jp>
24634
24635 * international/characters.el: Setup case table for Vietnamese.
24636
24637 2000-02-12 Gerd Moellmann <gerd@gnu.org>
24638
24639 * uniquify.el (toplevel): Require CL at compile time.
24640 (uniquify-push): Removed.
24641
24642 * shadowfile.el (shadow-when): Removed.
24643
24644 * tempo.el (tempo-dolist, tempo-mapc): Removed.
24645 (tempo-process-and-insert-string): Use dolist instead of tempo-dolist.
24646
24647 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
24648 regexp for paragraph-start.
24649
24650 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
24651 commas as well.
24652
24653 2000-02-10 Dave Love <fx@gnu.org>
24654
24655 * wid-edit.el: (widgets) [defgroup]: Remove url link.
24656 (widget-color-choice-list, widget-color-history, widget-mouse-help):
24657 Deleted.
24658 (widget-specify-field, widget-specify-button): Don't use
24659 widget-mouse-help as help-echo property.
24660 (default): Use #'ignore for :validate and :mouse-down-action.
24661 (checkbox): Add help-echo.
24662 (widget-sexp-validate): Rewritten to clarify error messages.
24663 (character): Use char-valid-p in :match function.
24664 (widget-color-complete): Use facemenu-color-alist.
24665 (widget-color-action): Use facemenu-read-color.
24666
24667 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
24668 set up `caar' &c that we now have.
24669
24670 2000-02-09 Ray Blaak <blaak@gnu.org>
24671
24672 * delphi.el: Make resourcestring a declaration region, like const
24673 and var.
24674
24675 2000-02-09 Dave Love <fx@gnu.org>
24676
24677 * bindings.el (mode-line-input-method-map): New variable.
24678 (mode-line-mule-info): Use it; fix last change.
24679 (mode-line-mode-menu): Move definition.
24680 (mode-line-mouse-sensitive-p): Deleted.
24681 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
24682 (make-mode-line-mouse-sensitive): Deleted. Body moved to top level.
24683
24684 * startup.el (command-line-1): Don't call
24685 make-mode-line-mouse-sensitive.
24686
24687 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
24688
24689 * mail/rmail.el (rmail-retry-failure): Use rmail-beginning-of-message
24690 before rmail-toggle-header, because the former toggles headers.
24691
24692 2000-02-06 Stefan Monnier <monnier@cs.yale.edu>
24693
24694 * diff-mode.el (diff-kill-junk): New interactive function.
24695 (diff-reverse-direction): Use delete-and-extract-region.
24696 (diff-post-command-hook): Restrict the area so that the hook also works
24697 outside of any diff hunk. This is necessary for the minor-mode.
24698 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
24699 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
24700
24701 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
24702 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
24703 so that it can be used more easily in <foo>-mode-hook. Also make sure
24704 to avoid duplicate entries.
24705 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
24706 (font-lock-remove-keywords): Just as was done for `add', allow it to
24707 work even if font-lock-mode is nil. Also make sure we don't modify
24708 any pre-existing list by forcing a copy-sequence. Finally rename
24709 `major-mode' to `mode'.
24710 (font-lock-fontify-syntactic-anchored-keywords)
24711 (font-lock-fontify-anchored-keywords)
24712 (font-lock-fontify-keywords-region): Use line-end-position.
24713 Don't make `font-lock-multiline' local (it's now done in
24714 font-lock-set-defaults).
24715 (font-lock-set-defaults): Make `font-lock-multiline' local.
24716 Move the `font-lock-fontified' creation to inside the `unless'.
24717
24718 2000-02-06 Andrew Innes <andrewi@gnu.org>
24719
24720 * term/w32-win.el (x-handle-args): Comment out call to message,
24721 which occurs before window system is initialized.
24722
24723 * makefile.nt: Add support for recompiling lisp code.
24724
24725 2000-02-04 Dave Love <fx@gnu.org>
24726
24727 * bindings.el (mode-line-mule-info): Fix/extend last change.
24728
24729 * completion.el: Replace completion-dolist with dolist.
24730
24731 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist, dotimes.
24732
24733 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
24734
24735 * textmodes/reftex.el (reftex-compile-variables): Regexp-quote the
24736 environment names before they go into the section regexp.
24737
24738 * textmodes/reftex-global.el (reftex-change-label): Add `A-Z' to
24739 char class in regexp.
24740
24741 * textmodes/reftex-parse.el (reftex-with-special-syntax):
24742 Bind `case-fold-search' to nil.
24743
24744 * progmodes/idlwave.el (idlwave-template):
24745 Respect `idlwave-abbrev-change-case'.
24746 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for)
24747 (idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat)
24748 (idlwave-while): Respect `idlwave-reserved-word-upcase'.
24749 (idlwave-rw-case): New function.
24750 (idlwave-statement-match): Fixed problem with assignment regexp.
24751 (idlwave-font-lock-keywords): Improved regexp for keyword parameters.
24752 (idlwave-surround): New argument LENGTH to support padding of
24753 operators longer than 1 char.
24754
24755 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
24756 idlwave-shell-expression-overlay. Implemented printing of
24757 expressions on higher levels of the calling stack.
24758 (idlwave-shell-display-level-in-calling-stack): Restore stack level.
24759 (idlwave-retrieve-expression-from-level): New function.
24760 (idlwave-shell-last-calling-stack): Variable removed.
24761 (idlwave-shell-reset): Argument action reversed (`visible' to
24762 `hidden'). Also remove stop-line overlay.
24763 (idlwave-shell-calling-stack-routine): New variable.
24764 (idlwave-shell-parse-stack-and-display): Messages now display
24765 negative level numbers.
24766 (idlwave-shell-mode): Set `modeline-format'.
24767 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
24768 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs 21.
24769 (idlwave-shell-print-expression-function): New option.
24770
24771 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere)
24772 (idlwave-toolbar-remove-everywhere): Keybindings prefix is now
24773 `tool-bar' instead of `toolbar'.
24774
24775 2000-02-02 Dave Love <fx@gnu.org>
24776
24777 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
24778 emacs-lisp-mode-hook. Don't check for defalias being defined.
24779
24780 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
24781 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions.
24782 Use the new builtins directly.
24783
24784 * whitespace.el (whitespace): Add :version to defgroup.
24785
24786 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
24787 Doc fix.
24788
24789 * thingatpt.el (sexp-at-point, symbol-at-point)
24790 (number-at-point, list-at-point): Add autoload cookie.
24791
24792 * recentf.el (recentf): Add :version to defgroup.
24793
24794 * quickurl.el (quickurl): Add :version to defgroup.
24795
24796 * elide-head.el (elide-head): Use point-marker more.
24797
24798 * bs.el (bs): Add :version to defgroup.
24799
24800 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
24801
24802 * progmodes/delphi.el (delphi): Add :version to defgroup.
24803
24804 2000-02-02 Gerd Moellmann <gerd@gnu.org>
24805
24806 * ange-ftp.el (ange-ftp-write-region): Handle case that
24807 succeeding process operation sets a different coding system.
24808
24809 * calculator.el: New file.
24810
24811 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
24812
24813 * frame.el (frames-on-display-list, framep-on-display): New functions.
24814 (display-mouse-p, display-popup-menus-p, display-graphic-p)
24815 (display-selections-p, display-screens, display-pixel-width)
24816 (display-pixel-height, display-mm-width, display-mm-height)
24817 (display-backing-store, display-save-under, display-planes)
24818 (display-color-cells, display-visual-class): New functions.
24819
24820 * term/tty-colors.el (tty-color-gray-shades): New function.
24821
24822 * faces.el (display-color-p): Use framep-on-display.
24823 (display-grayscale-p): New function.
24824
24825 2000-01-31 Dave Love <fx@gnu.org>
24826
24827 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
24828 (create-fontset-from-x-resource): Don't concat integers.
24829
24830 2000-01-31 Inge Frick <inge@nada.kth.se>
24831
24832 * view.el: Some changes in documentation. Removed some trailing
24833 whitespace. Changed some parameter names to agree with documentation.
24834 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
24835 window is not deleted. Modifies change 1998-04-26.
24836
24837 2000-01-31 Gerd Moellmann <gerd@gnu.org>
24838
24839 * windmove.el: New file.
24840
24841 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
24842 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
24843 progmodes/ebnf-yac.el: Update copyright and license info.
24844
24845 * jit-lock.el (jit-lock-function): Widen before calculating
24846 end position.
24847 (jit-lock-stealth-chunk-start): Rewritten.
24848
24849 * info.el (Info-title-face-alist): Removed.
24850 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New faces.
24851 (Info-fontify-node): Use these faces.
24852
24853 2000-01-30 Gerd Moellmann <gerd@gnu.org>
24854
24855 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
24856 (cl-macro-list1): Recognize `&allow-other-keys' instead of
24857 `&allow-other-keywords'.
24858
24859 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
24860 the list of directories scanned heuristically.
24861
24862 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to exist.
24863
24864 2000-01-30 Jason Rumney <jasonr@gnu.org>
24865
24866 * w32-fns.el: Define w32-tty-standard-colors.
24867
24868 * startup.el (command-line): Use w32-tty-standard-colors when in
24869 w32 console mode.
24870
24871 2000-01-30 Dave Love <fx@gnu.org>
24872
24873 * jka-compr.el (jka-compr-load): Fix up load-history.
24874
24875 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
24876
24877 * emacs-lisp/cl-macs.el: Revert previous change.
24878
24879 2000-01-29 Dave Love <fx@gnu.org>
24880
24881 * facemenu.el: Purecopy various strings.
24882
24883 * timezone.el (timezone-fix-time): Window against 69 for two-digit
24884 years. Deal with three-digit years.
24885
24886 * help.el (help-xref-symbol-regexp, help-xref-info-regexp):
24887 Use defconst, purecopy.
24888 (help-back-label): Purecopy it.
24889
24890 2000-01-18 Gerd Moellmann <gerd@gnu.org>
24891
24892 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
24893 variable. If non-nil, order the buffer list according to the
24894 currently selected frame.
24895 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
24896 non-nil, pass the selected frame to function buffer-list.
24897
24898 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
24899
24900 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
24901
24902 2000-01-28 Dave Love <fx@gnu.org>
24903
24904 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
24905
24906 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
24907 Don't use lisp-indent-hook property.
24908 (cl-abs): Remove.
24909
24910 * subr.el: Move out indent and edebug specs for when and unless.
24911
24912 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
24913 when, unless.
24914
24915 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
24916 unless, when.
24917
24918 2000-01-28 Gerd Moellmann <gerd@gnu.org>
24919
24920 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
24921 `collecting' as synonym for `collect'.
24922
24923 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
24924 for the case it contains spaces.
24925
24926 * simple.el (what-cursor-position): Change formatting of messages.
24927
24928 * frame.el (delete-other-frames): New function.
24929 (toplevel): Bind it to C-x 5 1.
24930
24931 * sort.el (sort-numeric-base): New option.
24932 (sort-numeric-fields): If number starts with `0' or `0[xX[',
24933 interpret it as octal or hexadecimal. Use sort-numeric-base
24934 as default base.
24935
24936 * progmodes/glasses.el: New file.
24937
24938 2000-01-27 Gerd Moellmann <gerd@gnu.org>
24939
24940 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
24941 userids differently.
24942
24943 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
24944 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
24945 progmodes/ebnf-yac.el: New files.
24946
24947 2000-01-26 Dave Love <fx@gnu.org>
24948
24949 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
24950 on a function with an empty body. [From Eric Ludlam.]
24951
24952 2000-01-25 Andre Spiegel <spiegel@gnu.org>
24953
24954 * vc.el (vc-version-diff): Make sure file name is expanded.
24955
24956 2000-01-25 Gerd Moellmann <gerd@gnu.org>
24957
24958 * scroll-bar.el (scroll-bar-timer): Variable removed.
24959 (scroll-bar-toolkit-scroll): Don't use a timer.
24960
24961 2000-01-25 Kenichi Handa <handa@etl.go.jp>
24962
24963 * language/thai-util.el (thai-composition-function):
24964 Delete superfluous `a'.
24965
24966 2000-01-24 Dave Love <fx@gnu.org>
24967
24968 * fortran.el (fortran-mode): Use beginning-of-defun-function,
24969 end-of-defun-function.
24970
24971 * font-lock.el (turn-on-font-lock): Don't depend on window-system &c.
24972
24973 2000-01-22 Jason Rumney <jasonr@gnu.org>
24974
24975 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
24976 conflicts with new face support.
24977
24978 2000-01-22 Richard M. Stallman <rms@gnu.org>
24979
24980 * replace.el (query-replace): Rename last arg to DELIMITED.
24981 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
24982 (query-replace-regexp): Likewise.
24983
24984 2000-01-20 Richard M. Stallman <rms@gnu.org>
24985
24986 * subr.el (with-syntax-table): Use make-symbol, not gensym.
24987
24988 * emacs-lisp/lisp.el (beginning-of-defun-function):
24989 Variable renamed from beginning-of-defun.
24990 Do not call make-variable-buffer-local.
24991 (beginning-of-defun-raw): Use new variable name; doc fix.
24992 (beginning-of-defun): Doc fix.
24993 (end-of-defun-function): Variable renamed from end-of-defun.
24994 Do not call make-variable-buffer-local.
24995 (end-of-defun): Use new variable name; doc fix.
24996
24997 * subr.el (dolist, dotimes): Copied from cl-macs.el
24998 and made to work.
24999
25000 * mail/undigest.el (rmail-digest-end-regexps):
25001 Variable replaces rmail-digest-end-regexp.
25002 Allows multiple regexps for detecting the end line.
25003 (undigestify-rmail-message): Corresponding changes.
25004
25005 2000-01-19 Dave Love <fx@gnu.org>
25006
25007 * files.el (user-init-file): Don't declare here -- is primitive.
25008
25009 * startup.el (command-line): Check for compiled user-init-file and
25010 set to uncompiled version if necessary.
25011
25012 2000-01-18 Gerd Moellmann <gerd@gnu.org>
25013
25014 * mail/undigest.el (rmail-digest-end-regexp): New user option.
25015 (undigestify-rmail-message): Use it.
25016
25017 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
25018
25019 2000-01-17 Gerd Moellmann <gerd@gnu.org>
25020
25021 * tmm.el (tmm-goto-completions): Adapt to prompt being part
25022 of mini-buffer.
25023
25024 2000-01-14 Gerd Moellmann <gerd@gnu.org>
25025
25026 * emacs-lisp/copyright.el (copyright-update): Removed the
25027 requirement for a trailing space from `copyright-regexp', to
25028 support copyrights with owner specified on a separate line..
25029
25030 * align.el: New file.
25031
25032 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
25033
25034 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
25035
25036 2000-01-13 Dave Love <fx@gnu.org>
25037
25038 * ph.el: Removed. (Obsoleted by EUDC.)
25039
25040 2000-01-13 Gerd Moellmann <gerd@gnu.org>
25041
25042 * net/eudc.el (toplevel): Remove autoloaded code installing
25043 menu with easymenu, because that causes build problems.
25044
25045 * frame.el (frame-notice-user-settings): New variable.
25046 (frame-notice-user-settings): Don't modify frame parameters
25047 if called a second time.
25048
25049 2000-01-13 Richard M. Stallman <rms@gnu.org>
25050
25051 * frame.el (frame-notice-user-settings):
25052 Notice default-frame-parameters even for non-window frames.
25053
25054 2000-01-13 Gerd Moellmann <gerd@gnu.org>
25055
25056 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
25057 for Emacs.
25058 (eudc-bob-can-display-inline-images): Extend for Emacs.
25059 (eudc-bob-toggle-inline-display): Ditto.
25060 (eudc-bob-display-jpeg): Ditto.
25061
25062 2000-01-12 Gerd Moellmann <gerd@gnu.org>
25063
25064 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
25065 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
25066 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
25067
25068 * add-log.el (add-change-log-entry): Fix error trying an
25069 `(insert nil)'.
25070
25071 * subdirs.el: Add `net' directory.
25072
25073 * net: New directory.
25074
25075 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
25076 eval-last-sexp. Don't bind debug-on-error here.
25077 (eval-last-sexp): New function. Bind debug-on-error if
25078 eval-expression-debug-on-error is non-nil.
25079 (eval-defun-2, eval-defun): Likewise.
25080
25081 * simple.el (eval-expression): Don't bind debug-on-error if
25082 eval-expression-debug-on-error is nil. Detect changed
25083 debug-on-error, and propagate new value to global binding, if
25084 eval-expression-debug-on-error is non-nil,
25085 (eval-expression-debug-on-error): Change doc string.
25086
25087 2000-01-11 Richard M. Stallman <rms@gnu.org>
25088
25089 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
25090
25091 * emacs-lisp/lisp-mode.el (with-syntax-table):
25092 Set up lisp-indent-function property.
25093
25094 * subr.el (with-syntax-table): Moved from simple.el.
25095
25096 * simple.el (with-syntax-table): Moved to subr.el.
25097
25098 2000-01-11 Gerd Moellmann <gerd@gnu.org>
25099
25100 * tmm.el (tmm-shortcut): Delete region after prompt instead
25101 of erasing buffer.
25102
25103 * textmodes/fill.el (fill-common-string-prefix): New function.
25104 (fill-context-prefix): Use the longest common prefix of first
25105 and second line fill prefix, if there is one.
25106
25107 2000-01-11 Richard M. Stallman <rms@gnu.org>
25108
25109 * array.el (array-mode): Don't use make-variable-buffer-local.
25110 Use make-local-variable for `truncate-lines'.
25111
25112 2000-01-11 Jari Aalto <jari.aalto@poboxes.com>
25113
25114 * add-log.el (add-log-current-defun): Handle user-defined
25115 add-log-current-function returning nil,
25116
25117 * add-log.el (add-change-log-entry): Insert version number
25118 if having found a current function
25119
25120 * add-log.el (add-log-current-defun):
25121 Call `add-log-current-defun-function'. Try matches at level 0 and
25122 level 1. Strip whitespace from defun found.
25123
25124 2000-01-10 John Wiegley <johnw@gnu.org>
25125
25126 * allout.el (isearch-done/outline-provisions): Added `edit'
25127 argument to correspond with the current definition of `isearch-done'.
25128
25129 2000-01-10 Dave Love <fx@gnu.org>
25130
25131 * elide-head.el (elide-head): Use point-marker, not point.
25132
25133 2000-01-10 Gerd Moellmann <gerd@gnu.org>
25134
25135 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
25136 before and after the year 2000.
25137
25138 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
25139 Add ispell- prefix.
25140
25141 2000-01-10 Ken Stevens <k.stevens@ieee.org>
25142
25143 * ispell.el: Only define dictionaries in menus when they exist.
25144 (version18p): New variable.
25145 (version20p): New variable.
25146 (xemacsp): New variable.
25147 (ispell-choices-win-default-height): Fix for XEmacs visibility.
25148 (ispell-dictionary-alist1): Added Brasileiro dictionary.
25149 (ispell-dictionary-alist6): Russian command lines no longer accept
25150 run-together words.
25151 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
25152 (ispell-dictionary-alist): Add koi8-r to customize definition.
25153 (check-ispell-version): Added documentation string. Return library
25154 path when called non-interactively.
25155 (ispell-menu-map-needed): Uses new variables.
25156 (ispell-library-path): New variable.
25157 (ispell-decode-string): XEmacs fix for bogus variable bindings.
25158 (ispell-word): Improved documentation string. Test for valid
25159 character mappings. Correctly check typed in word changes that can
25160 result in single words split into multiple words.
25161 Return replacement word.
25162 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
25163 replace in recursive query replace mode. Help message for
25164 recursive edit mode.
25165 (ispell-show-choices): Protect against bad framepop bindings.
25166 (ispell-help): Fix to work with XEmacs.
25167 (ispell-highlight-spelling-error): Use new variables.
25168 (ispell-overlay-window): Fix to work with XEmacs.
25169 (ispell-parse-output): Passed and returns location information
25170 tracking spelling corrections. Doesn't recheck same word on
25171 current line.
25172 (ispell-init-process): Protect against bogus XEmacs variable binding.
25173 Fix call to single argument in sleep-for. Use new variables.
25174 (ispell-region): Passed and returns location information tracking
25175 spelling corrections. Doesn't check same word on current line.
25176 Improved documentation string. Doesn't resend a line already
25177 checked to the ispell process - fixes bug in LaTeX parsing.
25178 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
25179 (ispell-skip-region): No longer skips <TT> in SGML.
25180 (ispell-process-line): Tracks location information with spelling
25181 corrections. Added documentation string. Accounts for words
25182 already accepted on this line. Don't allow query-replace on line
25183 starting with math characters. Doesn't resend a line already sent
25184 to ispell process. Fixes alignment error bug.
25185
25186 2000-01-10 Richard M. Stallman <rms@gnu.org>
25187
25188 * dired-x.el (dired-guess-shell-alist-default):
25189 Suggest xloadimage, which is free, not xv, which isn't.
25190
25191 * ange-ftp.el (ange-ftp-file-name-nondirectory):
25192 Don't ever include the host name or user name in the value.
25193
25194 2000-01-09 Gerd Moellmann <gerd@gnu.org>
25195
25196 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
25197 of a real newline.
25198
25199 2000-01-09 Stephen Eglen <stephen@gnu.org>
25200
25201 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
25202 for .png files.
25203
25204 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
25205
25206 * cus-edit.el (custom-hook-convert-widget): Fix comment.
25207
25208 2000-01-09 Gerd Moellmann <gerd@gnu.org>
25209
25210 * progmodes/cperl-mode.el: Replace ^F with ^L.
25211
25212 * sendmail.el (toplevel): Provide `sendmail' when compiling before
25213 `require'ing rmail and mailalias to prevent infinite recursion.
25214
25215 2000-01-08 Dave Love <fx@gnu.org>
25216
25217 * emacs-lisp/backquote.el: Remove inappropriate customization
25218 (allowing custom.el to use backquote).
25219
25220 2000-01-07 Dave Love <fx@gnu.org>
25221
25222 * add-log.el (add-log-debugging): Deleted.
25223 (add-change-log-entry): Treat a backup FILE-NAME as its parent
25224 file. Remove debugging code.
25225 (change-log-get-method-definition, change-log-name): Add doc.
25226 (change-log-sortable-date-at): New function.
25227 (change-log-merge): New command.
25228
25229 * time.el (display-time-string-forms): Make the Mail string active.
25230 (display-time-update): Provide help-echo for load average.
25231
25232 * bindings.el (make-mode-line-mouse2-map): New function.
25233 (mode-line-modified): Use it and simplify.
25234 (mode-line-mule-info): Provide help-echo info.
25235 (minor-mode-alist): Activate the strings.
25236 (make-mode-line-mouse-sensitive): Simplify for
25237 mode-line-buffer-identification.
25238
25239 2000-01-07 Gerd Moellmann <gerd@gnu.org>
25240
25241 * play/pong.el: New file.
25242
25243 2000-01-06 Dave Love <fx@gnu.org>
25244
25245 * array.el: Assorted cleanups for compiler warnings, doc strings,
25246 `array-' prefix for symbols.
25247
25248 2000-01-05 Dave Love <fx@gnu.org>
25249
25250 * textmodes/outline.el (outline-mode-menu-bar-map):
25251 Add outline-headers-as-kill.
25252 (outline-mode): Define imenu-generic-expression.
25253 (outline-headers-as-kill): New command.
25254
25255 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
25256 from paragraph-start.
25257 (paragraph-indent-minor-mode): New command.
25258
25259 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
25260 M-C-e, M-C-h, C-j, C-xnd, TAB.
25261 (fortran-mode): Set beginning-of-defun, end-of-defun.
25262 (fortran-column-ruler): Simplify.
25263 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
25264 (fortran-with-subprogram-narrowing): Likewise.
25265 (fortran-indent-subprogram): Call mark-defun.
25266 (fortran-check-for-matching-do): Change narrowing.
25267
25268 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
25269 (cl-lucid-hash-tag): Delete.
25270 (cl-hash-table-p): Correct test for native table.
25271 (cl-hash-table-count): Use hash-table-count.
25272
25273 * browse-url.el (browse-url): Fix case of
25274 browse-url-browser-function being an alist.
25275
25276 2000-01-05 Carsten Dominik <cd@gnu.org>
25277
25278 * textmodes/reftex-vars.el (reftex-parse-file-extension)
25279 (reftex-index-phrase-file-extension): New options.
25280
25281 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
25282 Use new option `reftex-index-phrase-file-extension'.
25283
25284 * textmodes/reftex.el (reftex-access-parse-file): Use new option
25285 `reftex-parse-file-extension'.
25286
25287 2000-01-05 Dave Love <fx@gnu.org>
25288
25289 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
25290 (beginning-of-defun-raw): Use it.
25291 (end-of-defun): New variable.
25292 (end-of-defun): Use it.
25293 (check-parens): New command.
25294
25295 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
25296
25297 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
25298 (hs-show-block): Don't use `mapcar' when not accumulating.
25299
25300 Fix buglet in local variables initialization.
25301
25302 2000-01-05 Andreas Schwab <schwab@suse.de>
25303
25304 * hscroll.el (hscroll): Doc fix.
25305
25306 2000-01-05 Carsten Dominik <cd@gnu.org>
25307
25308 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar):
25309 Require idlw-toolbar.
25310
25311 * progmodes/idlwave.el (idlwave-load-system-rinfo): Load must read
25312 file idlw-rinfo.el.
25313 (idlwave-customize): Load must read file idlw-shell.el.
25314 (idlwave-create-customize-menu): Load must read file idlw-shell.el.
25315
25316 2000-01-05 Carsten Dominik <dominik@astro.uva.nl>
25317
25318 * progmodes/idlw-shell.el: Also provide idlwave-shell
25319 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
25320 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
25321
25322 * textmodes/reftex-dcr.el: Rename from reftex-vcr.el, provide
25323 both reftex-dcr and reftex-vcr.
25324
25325 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
25326
25327 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
25328
25329 * ps-print.el: PostScript code now is in separate files, doc fix.
25330 (ps-print-version): New version number (5.0.3).
25331 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
25332 local.
25333 (ps-spool-config): Initialization fix.
25334 (ps-print-prologue-1, ps-print-prologue-2)
25335 (ps-print-duplex-feature): PostScript code moved to separated file.
25336 (ps-background-image): Little code reformating.
25337 (ps-begin-file, ps-begin-job): Fix code.
25338 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
25339 (ps-prologue-file): New fun.
25340
25341 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
25342
25343 * ps-vars.el: Eliminated.
25344
25345 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
25346 `;;;###autoload'.
25347
25348 * ps-print.el: ps-vars eliminated, doc fix.
25349 (ps-print-version): New version number (5.0.2).
25350 (ps-spool-config): Initialization fix.
25351 (ps-print-customize): New fun.
25352
25353 2000-01-04 Gerd Moellmann <gerd@gnu.org>
25354
25355 * autorevert.el (auto-revert-mode): Return value of auto-revert-mode.
25356
25357 2000-01-04 Dave Love <fx@gnu.org>
25358
25359 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
25360 menu items.
25361
25362 2000-01-03 Dave Love <fx@gnu.org>
25363
25364 * elide-head.el (elide-head) [defgroup]: Add :version.
25365
25366 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
25367 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count):
25368 Use `cl-hash-table-p', not `hash-table-p'.
25369 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
25370
25371 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
25372
25373 * faces.el (face-read-integer, read-face-attribute)
25374 (color-defined-p, color-values): Unspecified-{f,b}g are now strings.
25375
25376 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
25377
25378 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
25379 at comment end, and re-insert them after filling.
25380
25381 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
25382
25383 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
25384 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
25385 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
25386
25387 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
25388
25389 * term/x-win.el (xw-defined-colors): Call color-supported-p,
25390 the new name of face-color-supported-p.
25391
25392 * term/w32-win.el (xw-defined-colors): Likewise.
25393
25394 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
25395
25396 * simple.el (completion-setup-function): Count completion-size
25397 from minibuffer-prompt-end, not from point-min.
25398
25399 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
25400
25401 * faces.el (read-face-attribute, defined-colors, color-defined-p):
25402 Pass the frame to tty-color-* functions.
25403 (display-color-p, frame-set-background-mode): Pass the frame to
25404 tty-display-color-p.
25405
25406 * term/tty-colors.el (tty-defined-color-alist): Renamed from
25407 tty-color-alist.
25408 (tty-color-alist, tty-modify-color-alist): New functions.
25409 (tty-color-define, tty-color-clear, tty-color-approximate)
25410 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept an
25411 optional parameter FRAME.
25412
25413 2000-01-01 Gerd Moellmann <gerd@gnu.org>
25414
25415 * image.el (create-image, defimage): Don't assume image data is
25416 a string.
25417
25418 * image.el (defimage): Handle specifications containing :data
25419 instead of :file.
25420 (image-type-from-data): New function.
25421 (image-type-from-file-header): Use it.
25422 (create-image): Add parameter DATA-P.
25423
25424 See ChangeLog.8 for earlier changes.
25425
25426 ;; Local Variables:
25427 ;; coding: iso-2022-7bit
25428 ;; End:
25429
25430 Copyright (C) 2000, 2001 Free Software Foundation, Inc.
25431 Copying and distribution of this file, with or without modification,
25432 are permitted provided the copyright notice and this notice are preserved.