]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
(elp-instrument-function): Handle advised
[gnu-emacs] / lisp / ChangeLog
1 2001-05-17 Gerd Moellmann <gerd@gnu.org>
2
3 * emacs-lisp/elp.el (elp-instrument-function): Handle advised
4 functions.
5
6 2001-05-17 Stefan Monnier <monnier@cs.yale.edu>
7
8 * jit-lock.el (jit-lock-after-change): Check the font-lock-multiline
9 text-property after moving to the beginning of line and regardless
10 of the value of font-lock-multiline.
11
12 2001-05-17 Gerd Moellmann <gerd@gnu.org>
13
14 * startup.el (fancy-splash-screens): Ignore events on the mode-line.
15
16 * net/ange-ftp.el (ange-ftp-write-region): Make sure to record the
17 last coding system used before calling set-buffer-modified-p
18 because that function changes last-coding-system.
19
20 2001-05-17 Eli Zaretskii <eliz@is.elta.co.il>
21
22 * files.el (switch-to-buffer-other-window)
23 (switch-to-buffer-other-frame): Add an xref to display-buffer in
24 the doc string.
25
26 2001-05-17 Gerd Moellmann <gerd@gnu.org>
27
28 * language/slovak.el, language/czech.el: New maintainer.
29
30 2001-05-16 Sam Steingold <sds@gnu.org>
31
32 * emacs-lisp/cl-indent.el (toplevel): Indent the :method
33 sub-form of `defgeneric' correctly.
34
35 2001-05-16 Gerd Moellmann <gerd@gnu.org>
36
37 * tooltip.el (tooltip) <defgroup>: Put it in `gud' group instead
38 of `c'.
39
40 * textmodes/outline.el (outline-font-lock-level): Remove the
41 condition-case, test what outline-level returns instead, to
42 ease debugging.
43
44 * international/mule.el (auto-coding-regexp-alist): New user-option.
45 (auto-coding-from-file-contents): New function.
46 (set-auto-coding): Use it to determine a coding system.
47
48 2001-05-15 Gerd Moellmann <gerd@gnu.org>
49
50 * mouse.el (mouse-delete-other-windows): Doc fix.
51
52 * emacs-lisp/lisp-mode.el (lisp-mode):
53 Make font-lock-keywords-case-fold-search a buffer-local variable with
54 make-local-variable before setting it.
55
56 2001-05-14 Eli Zaretskii <eliz@is.elta.co.il>
57
58 * emacs-lisp/elp.el (elp-instrument-package): Don't allow empty
59 prefixes.
60
61 2001-05-14 Gerd Moellmann <gerd@gnu.org>
62
63 * hexl.el (hexl-current-address): Print a message when called
64 interactively.
65
66 2001-05-11 Stefan Monnier <monnier@cs.yale.edu>
67
68 * gud.el (gud-jdb-build-source-files-list): Fix paren typo.
69
70 * pcvs-defs.el (cvs-mode-map): Don't rebind `undo'.
71
72 * files.el (auto-mode-alist): Add *.perl and fix the *.<rev> case.
73
74 2001-05-11 Gerd Moellmann <gerd@gnu.org>
75
76 * startup.el (command-line): If parameters have been changed in
77 the init files which influence font selection, clear the face
78 cache so that faces get realized with the new parameters.
79
80 * Makefile.in (compile-files): Redirect output of chmod to /dev/null.
81
82 2001-05-10 Stefan Monnier <monnier@cs.yale.edu>
83
84 * smerge-mode.el (smerge-mode): Force font-lock-multiline to t.
85
86 2001-05-10 Eli Zaretskii <eliz@is.elta.co.il>
87
88 * mail/emacsbug.el (report-emacs-bug): Don't switch the buffer to
89 unibyte. Suggested by Kenichi Handa <handa@etl.go.jp>.
90
91 2001-05-10 Gerd Moellmann <gerd@gnu.org>
92
93 * net/browse-url.el (browse-url-filename-alist): Allow UNC file
94 names for MS-Windows and MS-DOS. From Dan Holmsand <dan@eyebee.com>.
95
96 2001-05-09 John Wiegley <johnw@gnu.org>
97
98 * eshell/esh-util.el (eshell-convert-numeric-arguments):
99 Annotated the documentation string to tell users about
100 `eshell-no-numeric-conversions'.
101
102 * eshell/esh-cmd.el (eshell-lisp-command): Don't perform numeric
103 conversions if a Lisp function has the property
104 `eshell-no-numeric-conversions' set to a non-nil value.
105
106 * eshell/em-dirs.el, eshell/em-ls.el, eshell/em-script.el,
107 eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-cmd.el: Set the
108 property `eshell-no-numeric-conversions' on the following
109 functions (which all deal with filesystem entities, and never Lisp
110 numerical values): eshell/cd, eshell/pushd, eshell/popd,
111 eshell/ls, eshell/source, eshell/., eshell/man, eshell/rm,
112 eshell/mkdir, eshell/rmdir, eshell/mv, eshell/cp, eshell/ln,
113 eshell/cat, eshell/make, eshell/diff, eshell/locate, eshell/occur,
114 eshell/which, eshell/addpath.
115
116 2001-05-09 John Wiegley <johnw@gnu.org>
117
118 * eshell/esh-arg.el (eshell-parse-argument-hook): If a number is
119 encountered as an argument, don't convert it right away, but tag
120 the first character of the string with the text properties
121 `number', which signifies to `eshell-lisp-command' that the
122 argument should be passed through `string-to-number' if it is
123 actually used in the call to a Lisp function.
124
125 * eshell/esh-cmd.el (eshell-lisp-command): Before calling a Lisp
126 function, convert any string arguments that have been tagged as
127 "numbers", by calling string-to-number.
128
129 * eshell/esh-util.el (eshell-number-regexp): Now that number
130 conversions only happen for Lisp function calls, the number regexp
131 should now match all integer and floating point forms.
132
133 * eshell/esh-proc.el: Disable `eshell-stop-process' and
134 `eshell-continue-process', since they are both nonfunctional at
135 the moment.
136 (eshell-proc-initialize): Don't bind keys for
137 `eshell-stop-process' or `eshell-continue-process'.
138
139 * eshell/em-unix.el (eshell-shuffle-files):
140 Apply `directory-file-name' before calling `file-name-directory'.
141
142 * eshell/em-hist.el (eshell-add-to-history): Reference to
143 `eshell-history-ring' needed to be `eshell-history-index'.
144
145 * calendar/timeclock.el (timeclock-find-discrep):
146 Initialize `elapsed' to 0.
147 (timeclock-find-discrep): Set `timeclock-last-event-workday' if
148 it's still nil.
149
150 2001-05-09 Stefan Monnier <monnier@cs.yale.edu>
151
152 * arc-mode.el (archive-int-to-mode): Construct the string directly.
153 (archive-mode): Use capitalize.
154 (archive-unique-fname): Use make-temp-file.
155
156 2001-05-09 Gerd Moellmann <gerd@gnu.org>
157
158 * emacs-lisp/lisp-mode.el (lisp-interaction-mode): Doc fix.
159
160 2001-05-09 Eli Zaretskii <eliz@is.elta.co.il>
161
162 * tar-mode.el (tar-extract): Pay attention to the value of
163 coding-system-for-read, if it is non-nil.
164
165 * calendar/holidays.el (holidays): Add an autoload cookie.
166 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
167
168 2001-05-08 John Wiegley <johnw@gnu.org>
169
170 * calendar/timeclock.el (timeclock-workday-remaining):
171 Changed logic for determining how much time is remaining.
172 (timeclock-workday-elapsed): Don't accept a "relative" argument
173 for the current day's elapsed time. What could that have meant?
174 (timeclock-workday-elapsed-string): No "relative" argument anymore.
175 (timeclock-when-to-leave): Changed logic, similarly to what was
176 done for `timeclock-workday-remaining'.
177 (timeclock-find-discrep): Removed "today-only" argument, which had
178 no meaning. Fixed some more math problems. The function now
179 returns a three member list: (TOTAL-TIME-DISCREPANCY
180 TODAYS-TIME-DISCREPANCY TODAYS-ELAPSED-TIME).
181
182 2001-05-08 Eli Zaretskii <eliz@is.elta.co.il>
183
184 * w32-fns.el (convert-standard-filename): Start replacing slashes
185 from the beginning of the file name, not from where the last
186 invalid character was. From "Andrew Maguire (SWW)"
187 <Andrew.Maguire@Smallworld.co.uk>
188
189 2001-05-07 MORIOKA Tomohiko <tomo@m17n.org>
190
191 The following changes are to provide infrastructure for handling
192 MIME messages to rmail. They don't affect the original behaviour
193 if rmail-enable-mime is nil.
194
195 * mail/rmail.el (rmail-insert-mime-forwarded-message-function)
196 (rmail-search-mime-message-function)
197 (rmail-search-mime-header-function): New variables.
198 (rmail-expunge-and-save): Be sure to set-buffer to the Rmail buffer.
199 (rmail-quit, rmail-get-new-mail): Bury `rmail-buffer' after
200 `rmail-view-buffer' is hidden.
201 (rmail-toggle-header): Likewise. If rmail-enable-mime is non-nil,
202 call rmai-show-mime-function.
203 (rmail-display-labels): If rmail-enable-mime is non-nil, update
204 mode-line-process of rmail-view-buffer.
205 (rmail-set-attribute): Be sure to set-buffer to the Rmail buffer.
206 (rmail-show-message): Be sure to call rmail-auto-file in the Rmail
207 buffer.
208 (rmail-next-message, rmail-next-undeleted-message): Be sure to
209 set-buffer to the Rmail buffer.
210 (rmail-message-regexp-p): If rmail-enable-mime is non-nil, call
211 rmail-search-mime-header-function.
212 (rmail-search-message): New function.
213 (rmail-search): Call rmail-search-message to check if a message
214 matches REGEXP, lastly update point after calling
215 rmail-show-message.
216 (rmail-undelete-previous-message, rmail-expunge-confirmed)
217 (rmail-only-expunge): Be sure to set-buffer to the Rmail buffer.
218 (rmail-reply): If rmail-enable-mime is non-nil, don't narrow to
219 header region, refer to rmail-msgref-vector while setting the
220 current buffer to rmail-buffer temporarily.
221 (rmail-forward): Be sure to bind forward-buffer to the Rmail buffer.
222 If rmail-enable-mime is non-nil, call
223 rmail-insert-mime-forwarded-message-function instead of inserting
224 forwarded message by itself.
225
226 * mail/rmailkwd.el (rmail-read-label): Be sure to work in the
227 Rmail buffer.
228 (rmail-set-label, rmail-next-labeled-message): Likewise.
229
230 * mail/rmailout.el (rmail-output-read-rmail-file-name): Be sure to
231 set-buffer to the Rmail buffer.
232 (rmail-output-to-rmail-file): Likewise.
233 (rmail-output): Likewise.
234
235 * mail/rmailsum.el (rmail-message-subject-p): Process the result
236 of mail-fetch-field by rmail-summary-line-decoder.
237 (rmail-new-summary): Be sure to go to the Rmail buffer.
238 If rmail-enable-mime is non-nil, set rmail-summary-buffer of
239 rmail-view-buffer to nil.
240 (rmail-summary-undelete): If rmail-enable-mime is non-nil, pop to
241 rmail-view-buffer.
242 (rmail-summary-scroll-msg-up): Handle rmail-view-buffer, not
243 rmail-buffer.
244 (rmail-summary-scroll-msg-down): Likewise.
245 (rmail-summary-beginning-of-message): Likewise.
246 (rmail-summary-wipe): Likewise.
247 (rmail-summary-toggle-header): Use save-window-excursion, not
248 save-excursion. Update point in rmail-view-buffer, not in
249 rmail-buffer.
250 (rmail-summary-reply): Before calling rmail-reply, set buffer to
251 rmail-view-buffer, not rmail-buffer.
252
253 2001-05-07 Gerd Moellmann <gerd@gnu.org>
254
255 * cus-edit.el (custom-file): Signal an error if user-init-file is
256 nil (running -q).
257
258 * mail/rmailedit.el (rmail-edit-mode-hook): Add :version.
259
260 * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
261 Add :version.
262
263 * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
264 New option.
265 (smtpmail-via-smtp): Print warnings about unknown SMTP extensions
266 only if smtpmail-warn-about-unknown-extensions is set.
267
268 * mail/rmail.el (rmail-mode-map): Use rmail-sort-by-labels
269 instead of rmail-sort-by-keywords.
270
271 * mail/rmailsort.el (rmail-sort-by-labels): Renamed from
272 rmail-sort-by-keywords.
273
274 * mail/rmailsum.el (rmail-summary-sort-by-labels): Renamed from
275 rmail-summary-sort-by-keywords. Doc fix.
276 (rmail-summary-mode): Doc fix.
277
278 * mail/rmail.el (rmail-edit): New Custom group.
279
280 * mail/rmailedit.el (rmail-edit-mode): Doc fix.
281 (rmail-edit-mode-hook): New user-option.
282
283 2001-05-05 Richard M. Stallman <rms@gnu.org>
284
285 * help.el (help-xref-symbol-regexp): Recognize "source of"
286 and friends, meaning make a link to the source file.
287 (help-make-xrefs): Handle "source of" and friends
288 by constructing a link that visits the source file.
289
290 * dabbrev.el (dabbrev-select-buffers-function): Doc fix.
291
292 2001-05-04 Stefan Monnier <monnier@cs.yale.edu>
293
294 * progmodes/cperl-mode.el (cperl-font-lock-keywords)
295 (cperl-font-lock-keywords-1, cperl-font-lock-keywords-2):
296 Renamed from perl-font-lock-keywords to avoid clashes.
297 (cperl-mode, cperl-load-font-lock-keywords, cperl-init-faces)
298 (cperl-load-font-lock-keywords-1, cperl-load-font-lock-keywords-2):
299 Updated correspondingly.
300
301 * diff-mode.el (diff-nonexistent-face, diff-font-lock-keywords):
302 Typo `nonexistant' -> `nonexistent'.
303
304 2001-05-04 Martin Stjernholm <bug-cc-mode@gnu.org>
305
306 * cc-cmds.el (c-electric-delete, c-electric-delete-forward):
307 Split `c-electric-delete' into two functions where
308 `c-electric-delete-forward' always deletes forward and
309 `c-electric-delete' only contains the code necessary for XEmacs to
310 choose between backward and forward deletion.
311
312 * cc-mode.el: `c-electric-delete-forward' is now bound to C-d to
313 get the electric behavior on that key too.
314 (c-fill-paragraph): Fixed bogus direct use of
315 c-comment-prefix-regexp, which caused an error when it's a list.
316
317 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
318
319 * dired-aux.el (dired-diff): Doc fix.
320
321 * dired.el (dired-diff): Likewise.
322
323 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
324
325 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
326
327 2001-05-02 Stefan Monnier <monnier@cs.yale.edu>
328
329 * vc.el (vc-next-action-on-file): Only force buffer+file to writable
330 if both the buffer and the file are read-only.
331
332 * progmodes/sh-script.el (sh-prev-line): Look for sh-heredoc-face
333 rather than font-lock-string-face.
334 (sh-get-indent-info): Treat heredocs like strings.
335
336 2001-05-02 Gerd Moellmann <gerd@gnu.org>
337
338 * textmodes/texinfmt.el (texinfo-format-parse-args): Don't consume
339 a newline following `}'.
340 (texinfo-format-email): New function.
341 (toplevel): Use texinfo-format-email for @email.
342 (texinfo-format-kbd-regexp, texinfo-format-kbd-end-regexp):
343 Add `display'.
344 (texinfo-sort-region): Goto point-min before sorting.
345 (texinfo-set): Remove leading white space from value.
346 From yagi@is.titech.ac.jp.
347
348 * replace.el (query-replace-regexp-eval): Doc fix.
349
350 2001-05-01 Stefan Monnier <monnier@cs.yale.edu>
351
352 * diff-mode.el (diff-nonexistant-face): New face.
353 (diff-font-lock-keywords): Use it.
354
355 2001-04-30 Eli Zaretskii <eliz@is.elta.co.il>
356
357 * font-lock.el (font-lock-mode): Doc fix.
358
359 * dired-aux.el (dired-do-rename-regexp, dired-do-copy-regexp)
360 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
361
362 2001-04-30 Gerd Moellmann <gerd@gnu.org>
363
364 * progmodes/sh-script.el (sh-font-lock-heredoc): Allow optional
365 backslash at the start of the here-document delimiter.
366 (sh-font-lock-syntactic-keywords): Likewise.
367
368 * mail/rmail.el (rmail-message-regexp-p): Yet another fix.
369
370 2001-04-29 Eli Zaretskii <eliz@is.elta.co.il>
371
372 * term/tty-colors.el (tty-color-define, tty-color-off-gray-diag)
373 (tty-color-translate, tty-color-by-index, tty-color-values)
374 (tty-color-desc): Doc fix.
375
376 2001-04-27 Eli Zaretskii <eliz@is.elta.co.il>
377
378 * dired-aux.el (dired-do-create-files, dired-do-copy)
379 (dired-do-symlink, dired-do-hardlink, dired-do-rename):
380 Mention dired-dwim-target in the doc string.
381
382 2001-04-28 Miles Bader <miles@gnu.org>
383
384 * dabbrev.el (dabbrev--ignore-buffer-p): New function.
385 (dabbrev--find-expansion): Use it.
386 (dabbrev--select-buffers): Don't select ignored buffers.
387
388 2001-04-27 Gerd Moellmann <gerd@gnu.org>
389
390 * mail/rmail.el (rmail-message-regexp-p): Don't match before headers.
391
392 2001-04-26 Richard M. Stallman <rms@gnu.org>
393
394 * dabbrev.el: Add doc strings for some functions.
395 (dabbrev--eliminate-newlines): New variable.
396 (dabbrev--substitute-expansion): Convert newlines to spaces
397 if dabbrev--eliminate-newlines is set.
398 If abbrev and expansion are both all-lower-case,
399 leave dabbrev--last-case-pattern nil.
400
401 2001-04-26 Gerd Moellmann <gerd@gnu.org>
402
403 * mail/rmail.el (rmail-message-regexp-p): Use rfc822-goto-eoh
404 if necessary, like in rmail-show-message.
405
406 2001-04-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
407
408 * ps-print.el: Color specified by number is forced to be float number.
409 (ps-print-version): New version number (6.5.1.1).
410 (ps-header-frame-alist, ps-footer-frame-alist): Adjust color
411 initialization.
412 (ps-prefix-quote): New internal var.
413 (ps-print-quote): New fun.
414 (ps-setup, ps-output-frame-properties, ps-float-format)
415 (ps-format-color): Code fix.
416 (ps-plot-region): Eliminate redundant foreground color text setting.
417
418 2001-04-26 Eli Zaretskii <eliz@is.elta.co.il>
419
420 * dabbrev.el (dabbrev--select-buffers): Add a doc string.
421
422 2001-04-25 Gerd Moellmann <gerd@gnu.org>
423
424 * faces.el (tty-handle-reverse-video): Don't set inverse-video.
425
426 2001-04-25 Eli Zaretskii <eliz@is.elta.co.il>
427
428 * info.el (Info-additional-directory-list): Doc fix.
429
430 * find-lisp.el (find-lisp-find-dired-filter)
431 (find-lisp-find-dired-subdirectories, find-lisp-find-dired):
432 Add autoload cookies. From Richard Y. Kim <ryk@dspwiz.com>.
433
434 2001-04-25 Stefan Monnier <monnier@cs.yale.edu>
435
436 * progmodes/make-mode.el (makefile-font-lock-keywords):
437 Rationalize the rules for includes and conditionals and use the
438 keyword face for them.
439
440 * faces.el (modify-face): Add compatibility for non-interactive use.
441
442 2001-04-24 John Wiegley <johnw@gnu.org>
443
444 * eshell/esh-cmd.el (eshell-find-alias-function): Corrected the
445 fix from last night, since it wasn't finding eshell/cd.
446
447 2001-04-24 Gerd Moellmann <gerd@gnu.org>
448
449 * rect.el (string-rectangle): Revert to 20.x behaviour.
450 (replace-rectangle): Make it an alias for string-rectangle.
451 (string-insert-rectangle): New function.
452
453 2001-04-23 John Wiegley <johnw@gnu.org>
454
455 * eshell/em-unix.el (eshell/diff): Fixed problems that were
456 occurring with Emacs 21's diff.el/compile.el interaction layer.
457
458 2001-04-23 Colin Walters <walters@cis.ohio-state.edu>
459
460 * eshell/esh-cmd.el (eshell-find-alias-function): Return t in the
461 case where the function was defined in a file, but not part of an
462 eshell module.
463
464 2001-04-23 John Wiegley <johnw@gnu.org>
465
466 * eshell/em-smart.el (eshell-smart-redisplay): Added some safety
467 code to work around a redisplay problem I've been having.
468
469 2001-04-23 John Wiegley <johnw@gnu.org>
470
471 * calendar/timeclock.el (timeclock-day-required): If the time
472 required for a particular day is not set, use `timeclock-workday'.
473 (timeclock-find-discrep): Added some sample code in a comment.
474
475 * eshell/eshell.el (eshell-command): Made a few changes so that
476 `eshell-command' could be called programmatically.
477
478 * eshell/esh-mode.el (eshell-non-interactive-p): Moved to eshell.el.
479
480 * eshell/eshell.el (eshell-non-interactive-p): Moved from esh-mode.el.
481
482 2001-04-23 John Wiegley <johnw@gnu.org>
483
484 * calendar/timeclock.el: Updated copyright.
485 (timeclock-generate-report): Don't report the daily or two-week
486 total, if no time has been worked in that period.
487 (timeclock-find-discrep): Moved call to `file-readable-p'; removed
488 final computational form, which was unnecessary; corrected a
489 parsing problem when timeclock-relative was nil.
490
491 2001-04-23 Kahlil Hodgson <kahlil@discus.anu.edu.au>
492
493 * calendar/timeclock.el (timeclock-modeline-display): Check if
494 `list-entry' is null.
495 (timeclock-use-display-time): The first argument to `set-variable'
496 must be a symbol.
497
498 2001-04-23 Eli Zaretskii <eliz@is.elta.co.il>
499
500 * calendar/calendar.el (diary-entry-marker)
501 (calendar-today-marker, calendar-holiday-marker):
502 Use display-color-p instead of window-system.
503 (calendar-mode-map, calendar-mode): Use display-popup-menus-p
504 instead of window-system.
505 (calendar-hide-window): Use display-multi-frame-p instead of
506 window-system.
507
508 * calendar/cal-x.el (calendar-two-frame-setup)
509 (calendar-only-one-frame-setup, calendar-one-frame-setup):
510 Use display-multi-frame-p instead of window-system.
511
512 2001-04-23 Gerd Moellmann <gerd@gnu.org>
513
514 * play/fortune.el (fortune-from-region): Use `eq' instead of `eql'.
515
516 * textmodes/ispell.el, emacs-lisp/checkdoc.el,
517 * progmodes/ebrowse.el, play/fortune.el: Fix autoload cookies.
518
519 2001-04-23 Alex Schroeder <alex@gnu.org>
520
521 * goto-addr.el: Instead of defining line-beginning-position and
522 line-end-position a defalias is used for point-at-bol and point-at-eol.
523
524 2001-04-23 Alex Schroeder <alex@gnu.org>
525
526 * goto-addr.el: Added XEmacs compatibility code.
527 (goto-address-highlight-keymap): Made keybindings XEmacs compatible.
528
529 2001-04-22 Eli Zaretskii <eliz@is.elta.co.il>
530
531 * textmodes/paragraphs.el (sentence-end): Doc fix.
532
533 2001-04-20 Alex Schroeder <alex@gnu.org>
534
535 * sql.el (sql-escape-newlines-and-send): New function.
536 (sql-db2): Set comint-input-sender to sql-escape-newlines-and-send.
537
538 2001-04-20 Alex Schroeder <alex@gnu.org>
539
540 * sql.el (sql-db2-program): New option.
541 (sql-db2-options): New option.
542 (sql-db2): New function.
543
544 2001-04-20 Alex Schroeder <alex@gnu.org>
545
546 * sql.el (sql-mode-menu): Added highlighting entries.
547 (sql-highlight-oracle-keywords): New function.
548 (sql-highlight-postgres-keywords): New function.
549 (sql-highlight-ansi-keywords): New function.
550
551 2001-04-20 Alex Schroeder <alex@gnu.org>
552
553 * sql.el (sql-help): Doc change.
554
555 2001-04-19 Stefan Monnier <monnier@cs.yale.edu>
556
557 * emacs-lisp/easy-mmode.el (easy-mmode-defsyntax): Unquote `doc'.
558
559 2001-04-18 Gerd Moellmann <gerd@gnu.org>
560
561 * emacs-lisp/cl-indent.el (toplevel): Comment out the spec
562 for defmethod.
563
564 * comint.el (comint-cr-magic): New function.
565 (toplevel): Add it to comint-preoutput-filter-functions.
566
567 2001-04-18 Andrew Innes <andrewi@gnu.org>
568
569 * makefile.w32-in (EMACSLOADPATH): Define.
570 (custom-deps, autoloads, .el.elc, compile-files-CMD, compile-files-SH)
571 (recompile): Remove stuff to set EMACSLOADPATH.
572
573 2001-04-18 Gerd Moellmann <gerd@gnu.org>
574
575 * language/slovak.el ("Slovak"): Add tutorial entry.
576
577 * net/browse-url.el (browse-url-new-window-flag): Renamed from
578 browse-url-new-window-p.
579
580 2001-04-17 Eli Zaretskii <eliz@is.elta.co.il>
581
582 * info.el (Info-menu-update): When there are no menus and/or no
583 cross references in the node, make the respective items of the
584 Info menu-bar menu inactive.
585
586 2001-04-17 Gerd Moellmann <gerd@gnu.org>
587
588 * indent.el (indent-for-tab-command): Call indent-line-function
589 with no argument if PREFIX-ARG is non-nil.
590
591 * frame.el (delete-other-frames): Handle minibuffer-only frames.
592
593 2001-04-17 Eli Zaretskii <eliz@is.elta.co.il>
594
595 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Don't invoke CVS as
596 an async subprocess if start-process is unavailable. Suggested by
597 Tim Van Holder <tim.van.holder@pandora.be>.
598
599 2001-04-15 Eli Zaretskii <eliz@is.elta.co.il>
600
601 * info.el (Info-additional-directory-list): Doc fix. Suggested by
602 Kai Grossjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>.
603
604 2001-04-14 Eli Zaretskii <eliz@is.elta.co.il>
605
606 * info.el (Info-file-list-for-emacs): Add an entry for the "info"
607 manual.
608
609 2001-04-13 Stefan Monnier <monnier@cs.yale.edu>
610
611 * pcvs-defs.el (cvs-mode-map): Bind C-o like in dired.
612 (cvs-menu): Add a few entries.
613
614 * pcvs.el (cvs-addto-collection): Don't merge MESSAGE fileinfos.
615 (cvs-update-filter): Only advertise `cvs-mode-delete-lock' if the
616 lock file appears to be reachable from Emacs.
617 (cvs-mode-mark-on-state, cvs-mode-display-file): New functions.
618 (cvs-mode-find-file): Look for cvs-header-face rather than
619 cvs-dirname-face (which doesn't exist).
620 (cvs-mode-find-file): Allow `other' to be set to `dont-select'.
621
622 * pcvs-parse.el (cvs-parse-run-table): Remove misleading text.
623
624 2001-04-13 Eli Zaretskii <eliz@is.elta.co.il>
625
626 * emulation/pc-select.el (pc-selection-mode): Don't turn on
627 normal-erase-is-backspace on a tty. Instead, bind some keys such
628 as [delete] directly, like pc-select.el did before
629 normal-erase-is-backspace was invented.
630
631 2001-04-12 Eli Zaretskii <eliz@is.elta.co.il>
632
633 * ls-lisp.el (ls-lisp-format): Leave a blank before "root".
634
635 2001-04-11 John Wiegley <johnw@gnu.org>
636
637 * eshell/em-ls.el (eshell-ls-insert-directory):
638 Set font-lock-defaults to nil, to prevent fontification in dired
639 buffers, if Eshell's ls is being used.
640
641 2001-04-11 John Wiegley <johnw@gnu.org>
642
643 * calendar/timeclock.el (timeclock-completing-read): New function.
644 (timeclock-ask-for-project, timeclock-ask-for-reason):
645 Call `timeclock-completing-read'.
646
647 * eshell/em-alias.el (eshell-command-aliased-p): `assoc' was
648 required where `member' was being used.
649
650 2001-04-11 Colin Walters <walters@cis.ohio-state.edu>
651
652 * eshell/em-hist.el (eshell-previous-matching-input):
653 Don't display "History item" if the the minibuffer is active.
654
655 2001-04-11 Gerd Moellmann <gerd@gnu.org>
656
657 * startup.el (command-line): Output a newline after printing
658 an error from loading the window system's init file.
659
660 2001-04-11 Eli Zaretskii <eliz@is.elta.co.il>
661
662 * textmodes/texinfo.el (texinfo-font-lock-keywords):
663 Add fontification for @value, @dfn, @dmn, @acronym, @anchor, and
664 @inforef. Add an OVERRIDE of `keep' to highlight specs of
665 keywords whose arguments routinely include @@.
666
667 2001-04-10 Gerd Moellmann <gerd@gnu.org>
668
669 * emacs-lisp/advice.el (ad-make-advised-definition):
670 Construct advice for subrs differently.
671
672 * textmodes/paragraphs.el (forward-sentence): Put the sentence-end
673 regexp in parentheses when building the regexp for searching backwards.
674
675 * simple.el (completion-list-mode-finish): New function.
676 (toplevel): Add completion-list-mode-finish to temp-buffer-show-hook.
677
678 * language/european.el ("Polish"): Change sample text.
679 From jsbien@mimuw.edu.pl (Janusz S. Bie\e,Bq\e(B).
680
681 * progmodes/sh-script.el (sh-indent-line): Add optional PREFIX-ARG
682 parameter.
683
684 * faces.el (menu): Doc fix.
685
686 2001-04-10 Vinicius Jose Latorre <vinicius@cpqd.com.br>
687
688 * ps-print.el: Footer implementation. Doc fix.
689 (ps-print-version): New version number (6.5.1).
690 (ps-header-frame-alist): New customization var for header frame
691 properties.
692 (ps-line-number-color): New customization var for line number color.
693 (ps-footer-offset, ps-footer-line-pad, ps-print-footer)
694 (ps-print-footer-frame, ps-footer-frame-alist, ps-footer-lines)
695 (ps-footer-font-family, ps-footer-font-size, ps-left-footer)
696 (ps-right-footer): New customization vars for footers.
697 (ps-footer-pad, ps-footer-font-size-internal): New internal vars for
698 footers.
699 (ps-setup, ps-get-page-dimensions, ps-generate-header-line)
700 (ps-generate-header, ps-begin-file, ps-begin-job, ps-begin-page):
701 Code fix.
702 (ps-prologue-file): Indentation fix.
703 (ps-print-quote): Fun eliminated.
704 (ps-value, ps-get, ps-put, ps-del): New funs for alist handling.
705 (ps-output-frame-properties): New fun.
706 (ps-fonts, ps-font-number, ps-rgb-color, ps-end-page, ps-next-page)
707 (ps-skip-newline): Replace defun by defsubst.
708
709 2001-04-10 Colin Walters <walters@cis.ohio-state.edu>
710
711 * eshell/eshell.el (eshell-command): Needed a "%s" format
712 specifier, in case the buffer contains percent characters.
713
714 2001-04-10 John Wiegley <johnw@gnu.org>
715
716 * calendar/timeclock.el (timeclock-generate-report): Added a
717 missing insert of the project name.
718
719 2001-04-09 Gerd Moellmann <gerd@gnu.org>
720
721 * obsolete/profile.el: Moved from emacs-lisp/.
722
723 * Makefile.in (nonobsolete_setwins): New macro.
724 (finder-data): Use it instead of `setwins'.
725 From: Dave Love <fx@gnu.org>.
726
727 * server.el (server-visit-files): Set server-existing-buffer correctly.
728 (server-visit-files): Run server-visit-hook after going to
729 line 1 so that the hook can set point as it sees fit.
730
731 * bindings.el (mode-line-modified): Unify help messages.
732
733 2001-04-07 Eli Zaretskii <eliz@is.elta.co.il>
734
735 * dos-fns.el (dos-8+3-filename): Rename from dos-truncate-to-8+3.
736 All callers changed.
737
738 2001-04-06 Eli Zaretskii <eliz@is.elta.co.il>
739
740 * international/titdic-cnv.el (miscdic-convert): For MS-DOS, if
741 long file names aren't supported, truncate the file names in
742 quail-misc-package-ext-info to 8+3 before matching them against
743 FILENAME.
744
745 * dos-fns.el (dos-truncate-to-8+3): New function.
746
747 * progmodes/compile.el (grep-compute-defaults): Use null-device
748 instead of literal /dev/null. Reported by Jens Schmidt
749 <schmidt@mathematik.uni-kl.de>.
750
751 * simple.el (normal-erase-is-backspace-mode): Doc fix.
752
753 2001-04-06 Stefan Monnier <monnier@cs.yale.edu>
754
755 * textmodes/sgml-mode.el: Add unknown maintainer.
756 (sgml-tag): Pass `str' explicitly through skeleton-transformation.
757 (html-mode-map): Use set-keymap-parent.
758
759 2001-04-06 Dave Love <fx@gnu.org>
760
761 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
762 Remove redundant string-to-list.
763
764 2001-04-05 Stefan Monnier <monnier@cs.yale.edu>
765
766 * composite.el (reference-point-alist): Doc fix.
767
768 2001-04-05 Sam Steingold <sds@gnu.org>
769
770 * font-lock.el (font-lock-keywords-case-fold-search):
771 Make buffer-local. This fixes a very annoying bug when loading a Lisp
772 file made font-lock case-insensitive.
773
774 2001-04-05 Gerd Moellmann <gerd@gnu.org>
775
776 * faces.el (defface menu): Doc fix.
777
778 * wid-edit.el (widget-color-sample-face-get): Don't make
779 faces for undefined colors.
780
781 * version.el (emacs-version): Include LessTif/Motif version info.
782
783 2001-04-04 Vinicius Jose Latorre <vinicius@cpqd.com.br>
784
785 * ps-mule.el: Eliminate cl package dependence.
786 (char-valid-p, multibyte-string-p, string-make-multibyte): Define funs
787 if they aren't defined yet.
788 (ps-mule-encode-header-string, ps-mule-header-string-charsets):
789 Eliminate cl package dependence.
790
791 2001-04-04 Stefan Monnier <monnier@cs.yale.edu>
792
793 * progmodes/cc-cmds.el (c-outline-level):
794 Bind buffer-invisibility-spec. Originally from Dave Love, but
795 got lost when incorporating version 5.26.
796
797 2001-04-04 Eli Zaretskii <eliz@is.elta.co.il>
798
799 * emulation/pc-select.el (pc-selection-mode):
800 Call normal-erase-is-backspace-mode instead of binding
801 keys individually.
802
803 * cus-load.el (normal-erase-is-backspace): Use it instead of
804 delete-key-deletes-forward.
805
806 * startup.el (command-line): Use normal-erase-is-backspace and
807 normal-erase-is-backspace-mode.
808
809 * simple.el (normal-erase-is-backspace): Rename from
810 delete-key-deletes-forward. Doc fix.
811 (normal-erase-is-backspace-mode): Rename from
812 delete-key-deletes-forward-mode. Doc fix.
813 Run normal-erase-is-backspace-hook.
814
815 * dired.el (dired-move-to-filename-regexp): Support file sizes in
816 ``human-readable'' format produced by GNU `ls'.
817 (dired-move-to-filename-regexp): Recognize ISO format dates.
818 From Paul Eggert <eggert@twinsun.com>.
819
820 2001-04-04 Gerd Moellmann <gerd@gnu.org>
821
822 * emacs-lisp/lisp-mnt.el (lm-keywords-list, lm-keywords-finder-p):
823 New functions.
824 (lm-verify): Check keywords.
825 From Eric M. Ludlam <eric@siege-engine.com>.
826
827 2001-04-03 Eric M. Ludlam <eric@siege-engine.com>
828
829 * speedbar.el (speedbar-insert-image-button-maybe): Check for
830 `xemacs' feature instead of for the function `set-extent-property'.
831
832 2001-04-03 Stefan Monnier <monnier@cs.yale.edu>
833
834 * mail/mh-utils.el (mh-folder-hist): New var.
835 (mh-prompt-for-folder): Use it and pass `default' to completing-read.
836
837 2001-04-03 Eli Zaretskii <eliz@is.elta.co.il>
838
839 * hexl.el (hexl-scroll-up): If scrolling gets outside the hexl
840 region, position point on the first or last 16-byte group.
841 (hexl-mode-map): Bind C-Home and C-End to hexl-beginning-of-buffer
842 and hexl-end-of-buffer. Bind End and Home to hexl-end-of-line and
843 hexl-beginning-of-line.
844
845 2001-04-03 Gerd Moellmann <gerd@gnu.org>
846
847 * icomplete.el (icomplete-mode): Treat an argument like other
848 modes do.
849
850 * startup.el (fancy-splash-head): Use splash8.xpm for color
851 depth 8.
852
853 * emacs-lisp/checkdoc.el (checkdoc-common-verbs-wrong-voice):
854 Add an antry for ``converts''.
855
856 * language/slovak.el ("Slovak"): Add documentation string.
857 From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk ml.).
858
859 * language/czech.el ("Czech"): Add documentation string.
860 From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk ml.).
861
862 * ps-mule.el (ps-mule-font-info-database-bdf): Change `isci24-etl.bdf'
863 to `isci24-mule.bdf'. From: Kenichi Handa <handa@etl.go.jp>.
864
865 2001-04-02 Stefan Monnier <monnier@cs.yale.edu>
866
867 * mail/mail-extr.el (mail-extr-delete-char, mail-extr-safe-move-sexp)
868 (mail-extr-skip-whitespace-forward, mail-extr-nuke-char-at)
869 (mail-extr-skip-whitespace-backward, mail-extr-undo-backslash-quoting):
870 Use `defsubst' rather than a macro to ease debugging.
871 (mail-extr-last): Remove (use `last' instead).
872 (mail-extract-address-components): Properly reset the syntax-table
873 after parsing an address. Use `last' rather than mail-extr-last.
874 Make sure the end marker stays at the very end.
875
876 2001-04-02 Eli Zaretskii <eliz@is.elta.co.il>
877
878 * international/titdic-cnv.el (miscdic-convert): Fix a typo in the
879 last change.
880
881 2001-04-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
882
883 * ps-print.el: Line and paragraph spacing feature. Region to cut
884 out when printing. Doc fix.
885 (ps-print-version): New version number (6.5).
886 (ps-line-spacing, ps-paragraph-spacing, ps-paragraph-regexp):
887 New vars. Line and paragraph spacing feature.
888 (ps-begin-cut-regexp, ps-end-cut-regexp): New vars. Region to cut
889 out when printing.
890 (ps-setup, ps-nb-pages, ps-get-page-dimensions, ps-begin-file)
891 (ps-get-font-size, ps-begin-job, ps-continue-line)
892 (ps-plot-region): Code fix.
893 (ps-print-prologue-2): Var eliminated.
894 (ps-line-spacing-internal, ps-paragraph-spacing-internal):
895 New internal vars.
896 (ps-get-size): New fun.
897 (ps-output-string-prim, ps-init-output-queue, ps-print-page-p)
898 (ps-next-line): Replace defun by defsubst.
899 (ps-mule-plot-string): Autoload doc fix.
900
901 * ps-bdf.el: XEmacs compatibility. Doc fix.
902 (installation-directory, coding-system-for-read): Declare vars if
903 it's not declared yet.
904 (bdf-read-font-info, bdf-read-bitmap, bdf-get-bitmaps): Code fix.
905
906 * ps-mule.el: XEmacs compatibility. Doc fix.
907 (leading-code-private-22): Declare var if it's not declared yet.
908 (charset-bytes, charset-dimension, charset-id, charset-width)
909 (find-charset-region, split-char, char-width, chars-in-region)
910 (forward-point, decompose-composite-char, encode-coding-string)
911 (coding-system-p, ccl-execute-on-string, define-ccl-program):
912 Define funs if not defined yet.
913 (encode-composition-rule, find-composition): Define funs if not
914 loaded yet.
915 (ps-mule-prologue): PostScript code fix.
916
917 2001-04-02 Kenichi Handa <handa@etl.go.jp>
918
919 * ps-mule.el (ps-mule-generate-font): New arg HEADER-P. If it is
920 non-nil, generate font for the header strings.
921 (ps-mule-prepare-font): Likewise.
922 (ps-mule-generate-glyphs): Likewise.
923 (ps-mule-string-encoding): Likewise.
924 (ps-mule-header-charsets): New variable.
925 (ps-mule-encode-header-string): New function.
926 (ps-mule-header-string-charsets): New function.
927 (ps-mule-begin-job): Check charsets in the header strings. If there
928 are non-ASCII and non-Latin1 charsets, prepare fonts for them.
929
930 * ps-print.el (ps-generate-header-line): Encode the header string by
931 ps-mule-encode-header-string.
932 (ps-mule-encode-header-string): Declare autoload.
933
934 2001-04-02 Gerd Moellmann <gerd@gnu.org>
935
936 * frame.el (cursor-in-non-selected-windows):
937 Replaces show-cursor-in-non-selected-windows.
938
939 2001-03-31 Kenichi Handa <handa@etl.go.jp>
940
941 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
942 Delete entries for "chinese-py" and "chinese-ziranma".
943 (quail-misc-package-ext-info): New variable.
944 (tsang-quick-converter): New function.
945 (tsang-b5-converter, quick-b5-converter, tsang-cns-converter)
946 (quick-cns-converter, py-converter, ziranma-converter)
947 (miscdic-convert, batch-miscdic-convert): New functions.
948
949 2001-03-30 Kenichi Handa <handa@etl.go.jp>
950
951 * international/utf-8.el (ccl-encode-mule-utf-8): Fix handling of
952 eight-bit-control chars.
953
954 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
955 Reduce making temporary vector (suggested by Dave Love).
956
957 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
958
959 * simple.el (transient-mark-mode): Mention ESC ESC ESC in the doc
960 string as well.
961
962 2001-03-30 Andreas Schwab <schwab@suse.de>
963
964 * files.el (backup-directory-alist): Fix typo.
965
966 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
967
968 * time-stamp.el (time-stamp-format): Doc fix. From Paul Eggert
969 <eggert@twinsun.com>.
970
971 2001-03-30 Dave Love <fx@gnu.org>
972
973 * progmodes/fortran.el (fortran-comment-region): Fix typo.
974
975 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
976
977 * simple.el (transient-mark-mode): Mention C-g in the doc string.
978
979 2001-03-30 Miles Bader <miles@gnu.org>
980
981 * subr.el (interactive-form): Fix paren typo.
982
983 2001-03-29 Eli Zaretskii <eliz@is.elta.co.il>
984
985 * emacs-lisp/profile.el: Say that it's obsolete in the header
986 line, so that finder.el puts that into its data-base.
987 Suggested by Alex Schroeder <alex@gnu.org>.
988
989 2001-03-29 Paul Eggert <eggert@twinsun.com>
990
991 * mail/emacsbug.el (report-emacs-bug): Report LC_COLLATE,
992 LC_MESSAGES, LC_MONETARY, LC_NUMERIC, and LC_TIME as well.
993
994 2001-03-29 Stefan Monnier <monnier@cs.yale.edu>
995
996 * generic.el (generic-mode-set-comments): Use "" rather than nil
997 for comment-end.
998
999 2001-03-29 Gerd Moellmann <gerd@gnu.org>
1000
1001 * emacs-lisp/advice.el (ad-make-advised-definition):
1002 Call interactive-form to obtain the interactive spec of subrs.
1003
1004 * subr.el (interactive-form): New function.
1005
1006 2001-03-29 Andre Spiegel <spiegel@gnu.org>
1007
1008 * vc-sccs.el (vc-sccs-register): Use relative file names.
1009
1010 2001-03-28 Gerd Moellmann <gerd@gnu.org>
1011
1012 * bookmark.el (bookmark-get-bookmark): Handle case that
1013 BOOKMARK is not a string.
1014
1015 * image.el (image-type-regexps): Change type for PS files
1016 to `postscript'.
1017
1018 * subr.el (read-passwd): Clear command history after each
1019 character entered. From: Stephen Gildea <gildea@alum.mit.edu>.
1020
1021 2001-03-27 Kenichi Handa <handa@etl.go.jp>
1022
1023 * international/kkc.el (kkc-save-init-file): Locally bind
1024 print-length to nil.
1025
1026 2001-03-26 Gerd Moellmann <gerd@gnu.org>
1027
1028 * textmodes/flyspell.el: Some doc fixes.
1029 (flyspell-maybe-correct-transposition)
1030 (flyspell-maybe-correct-doubling): Use a temporary buffer
1031
1032 * textmodes/ispell.el (ispell-parse-output): Doc fix.
1033
1034 * emacs-lisp/byte-opt.el (byte-optimize-while)
1035 (byte-optimize-form-code-walker): Diagnose too few arguments
1036 for `if' and `while'.
1037
1038 2001-03-26 Kenichi Handa <handa@etl.go.jp>
1039
1040 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
1041 Prepend `\' to "\<quail-translation-docstring>".
1042
1043 2001-03-26 Gerd Moellmann <gerd@gnu.org>
1044
1045 * autorevert.el (global-auto-revert-non-file-buffers):
1046 Remove duplicate defcustom.
1047
1048 2001-03-26 Miles Bader <miles@gnu.org>
1049
1050 * international/latin1-disp.el (latin1-char-displayable-p):
1051 Add leading "-" for X font pattern.
1052
1053 2001-03-26 Kenichi Handa <handa@etl.go.jp>
1054
1055 * international/mule-diag.el (describe-coding-system):
1056 For raw-text and emacs-mule, don't add anymore text about what
1057 charsets they can encode.
1058
1059 2001-03-25 Eli Zaretskii <eliz@is.elta.co.il>
1060
1061 * help.el (view-lossage): Mention open-dribble-file in the doc
1062 string. Suggested by Riku Saikkonen <rjs@lloke.dna.fi>.
1063
1064 2001-03-23 Stefan Monnier <monnier@cs.yale.edu>
1065
1066 * skeleton.el (skeleton-internal-list): Fix bogus logic.
1067 (skeleton-pair-insert-maybe): Don't pair after a backslash.
1068
1069 2001-03-23 Kenichi Handa <handa@etl.go.jp>
1070
1071 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
1072 Call ccl-execute-on-string directly so that CCL program handling
1073 multibyte sequence can work correctly.
1074 (encoded-kbd-setup-keymap): Fix the default value of `valid-codes'
1075 property of the coding system.
1076
1077 2001-03-23 Stefan Monnier <monnier@cs.yale.edu>
1078
1079 * textmodes/fill.el (fill-individual-paragraphs-prefix):
1080 Fix transcription typo.
1081
1082 2001-03-22 Rajesh Vaidheeswarran <rv@gnu.org>
1083
1084 * whitespace.el: Add buffer local variables to toggle testing of
1085 whitespaces in buffers without affecting the default values.
1086 Bump version to 3.0 to account for a few other changes.
1087 (whitespace-toggle-ateol-check, whitespace-toggle-leading-check)
1088 (whitespace-toggle-trailing-check, whitespace-toggle-indent-check)
1089 (whitespace-toggle-spacetab-check): New functions.
1090
1091 2001-03-21 Stefan Monnier <monnier@cs.yale.edu>
1092
1093 * obsolete/cplus-md.el: Moved from progmodes/cplus-md.el.
1094
1095 2001-03-21 Gerd Moellmann <gerd@gnu.org>
1096
1097 * bs.el (bs-cycle-next, bs-cycle-previous): Fix handling of
1098 bs-cycle-configuration-name. From Juanma Barranquero
1099 <lektu@uol.com.br>.
1100
1101 * Makefile.in, makefile.w32-in (COMPILE_FIRST): Add cc-mode.el
1102 and cc-vars.el.
1103
1104 * mail/sendmail.el (sendmail-send-it): Don't parse Resent-*
1105 headers. Always invoke sendmail with option -t.
1106
1107 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1108
1109 * Release of cc-mode 5.28.
1110
1111 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1112
1113 * cc-mode.el, cc-vars.el (c-common-init, c-default-style):
1114 Removed the hardcoded switch to "java" style in Java mode.
1115 It's instead taken care of by the default value for c-default-style.
1116
1117 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1118
1119 * cc-align.el (c-lineup-math): Fix bug where lineup was
1120 triggered by equal signs in string literals.
1121
1122 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1123
1124 * cc-cmds.el (c-fill-paragraph): Fixed bug in the paragraph
1125 limit detection when at the ends of the buffer.
1126
1127 * cc-engine.el (c-guess-basic-syntax): Removed bogus check for
1128 "for" statement clause in case 7F; a better one is done
1129 earlier in case 7D anyway.
1130
1131 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1132
1133 * cc-cmds.el (c-guess-fill-prefix): Improved the heuristics
1134 somewhat more and did a small optimization.
1135
1136 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1137
1138 * cc-cmds.el (c-beginning-of-statement, c-end-of-statement):
1139 Use the limit argument only to limit the syntactic context
1140 search, not to limit the actual movement.
1141
1142 * cc-cmds.el (c-beginning-of-statement): Move by sentence
1143 inside multiline strings, just like in comments. Also various
1144 fixes to the paragraph and comment prefix recognition, block
1145 comment ender handling etc.
1146
1147 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1148
1149 * cc-cmds.el (c-fill-paragraph): Take more care to preserve
1150 the relative position of the point.
1151
1152 * cc-cmds.el (c-electric-continued-statement): New function to
1153 use as abbrev hook to reindent for keywords such as "else"
1154 that continues an earlier statement.
1155
1156 * cc-menus.el (cc-imenu-c++-generic-expression): Treat structs
1157 like classes.
1158
1159 * cc-mode.el (c-mode, c++-mode, java-mode, objc-mode)
1160 (pike-mode): Populate the default abbrev tables to reindent for
1161 keywords such as "else" that can continue earlier statements.
1162 Abbrev mode is therefore turned on by default now. (Note that
1163 this doesn't apply to idl-mode, since IDL afaik doesn't have
1164 statements at all.)
1165
1166 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1167
1168 * cc-engine.el (c-inside-bracelist-p): Fix for handling
1169 bracelists where the declaration contains template arguments.
1170
1171 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1172
1173 * cc-cmds.el (c-comment-indent):
1174 Use `c-get-syntactic-indentation' to correctly calculate the
1175 syntactic indentation. Fixes bug with lineup functions that
1176 return vectors.
1177
1178 * cc-engine.el (c-get-syntactic-indentation): Split the
1179 indentation sum calculation from `c-indent-line' to a separate
1180 function.
1181
1182 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1183
1184 * cc-cmds.el (c-beginning-of-statement, c-comment-indent):
1185 Fixed places where it was assumed that preprocessor directives
1186 have to start in column zero.
1187
1188 * cc-engine.el (c-beginning-of-member-init-list): Handle C++
1189 template arguments after a class identifier properly.
1190
1191 * cc-engine.el (c-guess-basic-syntax): Treat initializer brace
1192 lists for `new Foo[]' constructs in Java as expressions and
1193 not top level definition brace lists on the top level, so that
1194 they'll get indented consistently with the same type of
1195 expression in a normal block.
1196
1197 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1198
1199 * cc-cmds.el (c-fill-paragraph): The kludge that checks
1200 whether the adaptive filling package fails to keep the comment
1201 prefix is now kludged further to check for filladapt-mode
1202 which doesn't have that problem. This is really icky, but it's
1203 the only way that works with the current misfeatures/bugs in
1204 both adaptive-fill-mode and filladapt-mode.
1205
1206 * cc-cmds.el (c-fill-paragraph): Made the way the paragraph
1207 around point is recognized more robust.
1208
1209 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1210
1211 * cc-cmds.el, cc-engine.el, cc-lobotomy.el (c-state-cache)
1212 (c-in-literal-cache, c-auto-fill-prefix, c-lit-limits)
1213 (c-lit-type): Fixed all internal variables used dynamically so
1214 that they are always bound.
1215
1216 * cc-cmds.el, cc-engine.el: Improved recovery of syntactic
1217 errors:
1218
1219 (c-indent-region): Fixed reporting of syntactic errors so that
1220 the region is fully reindented even when an error occurs.
1221 The last syntactic error is printed afterwards. Also cleanup up a
1222 whole lot of code that tried to optimize indentation of whole
1223 sexps but in reality accomplishes nothing.
1224
1225 (c-indent-sexp): Use c-indent-region.
1226
1227 (c-parsing-error): Changed this variable to hold the message
1228 for any syntactic error that is discovered.
1229
1230 (c-parse-state): Search backward from point instead of the bod
1231 position when the latter is invalid. This makes CC Mode
1232 recover faster when there are unbalanced close braces.
1233
1234 (c-backward-to-start-of-if): Use c-parsing-error to report
1235 dangling "else" clauses instead of throwing an error, and fall
1236 back to a reasonable position.
1237
1238 (c-indent-line): Added argument to avoid reporting syntactic errors.
1239
1240 (c-show-syntactic-information): Don't report any syntactic errors.
1241
1242 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1243
1244 * cc-cmds.el (c-beginning-of-statement): Fixed bugs with
1245 paragraph recognition when moving by sentence in literals.
1246
1247 * cc-langs.el (c-Java-javadoc-paragraph-start): Modified paragraph
1248 start regexp for javadoc to recognize javadoc markup in general instead
1249 of a specific set of keywords, to be more future-safe.
1250
1251 (c-Pike-pikedoc-paragraph-start)
1252 (c-Pike-pikedoc-paragraph-separate): New regexps to recognize
1253 pikedoc markup.
1254
1255 * cc-mode.el: Fixed initialization and use of c-current-comment-prefix.
1256
1257 (pike-mode): Initialize paragraph settings pikedoc recognition.
1258
1259 * cc-vars.el (c-default-style): Made a nicer Customize widget.
1260
1261 (c-comment-prefix-regexp): Made it possible to use an
1262 association list on this to specify mode specific regexps.
1263 The default value now use a special regexp in Pike mode to
1264 recognize pikedoc markup.
1265
1266 (c-current-comment-prefix): New variable containing the actual
1267 regexp from c-comment-prefix-regexp for the current buffer.
1268
1269 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1270
1271 * cc-cmds.el (c-electric-brace): Fixed check for special brace
1272 lists: We can't look at the syntax, since a brace list can get
1273 recognized as a plain statement-cont.
1274
1275 * cc-engine.el (c-guess-basic-syntax): Fixed bug where a
1276 special brace list opener broken over two lines got recognized
1277 as a statement on the second line. Case 9A changed.
1278
1279 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1280
1281 * cc-cmds.el (c-electric-brace): Fixed bug in c-state-cache
1282 adjustment after line is reindented.
1283
1284 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1285
1286 * cc-defs.el (c-point): Added optional argument for position
1287 to use instead of the current point.
1288
1289 * cc-defs.el, cc-engine.el (c-add-class-syntax): Do not add
1290 the in-expression block symbols when the construct starts at
1291 boi, to avoid the extra level of indentation in that case.
1292 Cases 4, 16A and 17E affected.
1293
1294 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1295
1296 * cc-cmds.el: Use `indent-according-to-mode' instead of direct
1297 calls to `c-indent-line', to adhere better to Emacs conventions.
1298
1299 * cc-engine.el (c-indent-line): Use the syntax already bound
1300 to `c-syntactic-context', if there is any.
1301
1302 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1303
1304 * cc-engine.el (c-get-offset): Fixed bug where the indentation
1305 wasn't added up correctly when a lineup function returned nil.
1306
1307 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1308
1309 * cc-engine.el (c-collect-line-comments): Fixed bug where
1310 empty lines were ignored when collecting line comments backwards.
1311
1312 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1313
1314 * cc-align.el (c-lineup-dont-change): Return an absolute
1315 indentation column to work correctly in the case when several
1316 syntactic elements are processed for the same line.
1317
1318 * cc-engine.el, cc-styles.el, cc-vars.el (c-evaluate-offset)
1319 (c-get-offset, c-indent-line, c-valid-offset, c-read-offset)
1320 (c-set-offset): Added absolute indentation column settings by
1321 using the vector type.
1322
1323 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1324
1325 * cc-cmds.el, cc-vars.el (c-electric-paren, c-cleanup-list):
1326 Implemented two new cleanups `space-before-funcall' and
1327 `compact-empty-funcall'.
1328
1329 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1330
1331 * cc-defs.el (c-paren-re, c-identifier-re): Two new macros for
1332 helping building regexps.
1333
1334 * cc-engine.el (c-on-identifier): New function for detecting
1335 identifiers. It takes keywords into account.
1336
1337 * cc-langs.el, cc-mode.el: Added regexps for complete keyword
1338 lists. `c-keywords' is set to a regexp matching all keywords
1339 in the current language.
1340
1341 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1342
1343 * cc-engine.el (c-beginning-of-statement-1): Added '#' to the
1344 list of characters to skip backwards over at the beginning of
1345 a statement, since it can precede string literals in Pike.
1346
1347 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1348
1349 * cc-cmds.el (c-guess-fill-prefix): Fixed bug with prefix
1350 recognition when standing on the last line in a C++ comment
1351 with nothing but whitespace after the prefix.
1352
1353 * cc-engine.el (c-backward-to-start-of-if): Fixed bug when
1354 given no limit argument.
1355
1356 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1357
1358 * cc-engine.el (c-inside-bracelist-p): Fixed brace list
1359 recognition for the `[]= operator symbol in Pike.
1360
1361 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1362
1363 * cc-bytecomp.el (cc-eval-when-compile): New macro that works
1364 around a bug in `eval-when-compile' in the byte compiler.
1365
1366 * cc-engine.el (c-forward-token-1): Fixed bug with return
1367 value when count is zero and there's no token start within the limit.
1368
1369 (c-guess-basic-syntax): Don't add 'comment-intro to lines with
1370 "prefix comments", i.e. comments which are followed by code on
1371 the same line.
1372
1373 * cc-mode-19.el: Fixes so that checks that must be done at
1374 compile time also are done then.
1375
1376 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1377
1378 * cc-defs.el: Make sure cc-mode-19 is loaded both at compile
1379 time and at runtime, and only when it's needed.
1380
1381 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1382
1383 Major cleanup for less error prone and more warning free
1384 compilation, including some fixes for bugs due to different
1385 compilation orders. Thanks to Martin Buchholz for providing
1386 the basis for all this.
1387
1388 * cc-bytecomp.el: New file that provides some byte compilation
1389 features: It ensures that files always are loaded from the
1390 current source directory during compilation, and it provides a
1391 set of macros to turn off specific compiler warnings for
1392 specific symbols. (It's not CC Mode specific in any way.)
1393
1394 Fixed a nearly acyclic dependency tree (both runtime and
1395 compile-time) between all files.
1396
1397 * cc-defs.el: Separated all macros before the inline functions,
1398 to ensure correct compilation.
1399
1400 * cc-defs.el, cc-engine.el: Moved c-beginning-of-macro to from
1401 cc-defs.el to cc-engine.el and made it a function instead.
1402
1403 * cc-mode-19.el: Patch the byte compiler in Emacs 19 not to warn
1404 about char-after.
1405
1406 * cc-vars.el: Cope even when there isn't a custom package
1407 containing defcustom available.
1408
1409 * cc-make.el: Removed since it's no longer necessary.
1410
1411 README: Updated installation instructions.
1412
1413 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1414
1415 * cc-cmds.el, cc-langs.el, cc-mode.el: Moved around things to
1416 improve the modularity: Moved all mode init stuff from
1417 cc-langs.el to cc-mode.el, including the keymap
1418 initialization; cc-langs now only contains the various
1419 variables for configuring the language syntax.
1420
1421 * cc-engine.el, cc-styles.el (c-evaluate-offset)
1422 (c-get-offset): Moved from cc-styles to cc-engine since file
1423 dependency analysis suggests they belong there (which also
1424 makes more sense). Thanks to Martin Buchholz for doing the analysis.
1425
1426 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1427
1428 * cc-cmds.el (c-fn-region-is-active-p): New function that
1429 wraps the corresponding macro, for use in places that aren't
1430 compiled. Thanks to Martin Buchholz for pointing out this.
1431
1432 * cc-langs.el (c-mode-menu): Use c-fn-region-is-active-p.
1433
1434 * cc-mode.el (c-prepare-bug-report-hooks): Hook variable to
1435 add things to the bug report.
1436
1437 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1438
1439 * cc-cmds.el (c-guess-fill-prefix): Fixed bug where the
1440 returned prefix could contain a newline when the search for a
1441 good prefix line failed.
1442
1443 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1444
1445 * cc-cmds.el (c-toggle-auto-state, c-toggle-hungry-state)
1446 (c-toggle-auto-hungry-state): Made the argument optional, as
1447 the documentation says it is.
1448
1449 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
1450
1451 * cc-engine.el (c-guess-basic-syntax): Don't treat the Pike
1452 multiline string syntax, #"...", as a cpp macro.
1453
1454 2001-03-21 Paul Eggert <eggert@twinsun.com>
1455
1456 * international/mule-cmds.el (set-locale-environment):
1457 Set system-messages-locale and system-time-locale, but only if the
1458 caller specifies a non-nil locale name.
1459
1460 2001-03-20 Gerd Moellmann <gerd@gnu.org>
1461
1462 * pcvs-util.el (cvs-bury-buffer): Bodiless `if' statements cause
1463 problems for the interpreter. From: John Wiegley <johnw@gnu.org>
1464
1465 2001-03-20 Gerd Moellmann <gerd@gnu.org>
1466
1467 * follow.el (follow-avoid-tail-recenter): Doc fix.
1468
1469 * custom.el (custom-set-variables): Avoid reversing the list
1470 of args needlessly.
1471
1472 * startup.el (fancy-splash-head): Don't change the colors of the
1473 XPM image on a dark background.
1474
1475 * comint.el (comint-exec-1): Set columns of the terminal to
1476 window-width instead of frame-width.
1477
1478 * info.el (Info-scroll-down): Add missing WINDOW arg for
1479 pos-visible-in-window-p.
1480
1481 * ehelp.el (electric-help-mode-hook): Add defcustom.
1482
1483 * mail/sendmail.el (mail-mode): Activate case-folding in
1484 font-lock-defaults.
1485
1486 2001-03-19 Stefan Monnier <monnier@cs.yale.edu>
1487
1488 * bindings.el (mode-line-mode-menu): `glasses-mode' might be unbound.
1489 (completion-ignored-extensions): Remove duplicate ".class".
1490
1491 2001-03-19 Andreas Schwab <schwab@suse.de>
1492
1493 * textmodes/reftex-dcr.el (reftex-view-crossref): Doc fix.
1494 From Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
1495
1496 2001-03-19 Gerd Moellmann <gerd@gnu.org>
1497
1498 * language/european.el ("Latin-5", "Latin-4"): Use postfix input
1499 methods since there are not prefix input methods.
1500
1501 2001-03-19 Kenichi Handa <handa@etl.go.jp>
1502
1503 * international/mule-cmds.el (read-input-method-name):
1504 Locally bind enable-recursive-minibuffers to t.
1505
1506 2001-03-18 Stefan Monnier <monnier@cs.yale.edu>
1507
1508 * emacs-lisp/lmenu.el (add-menu): Re-added (was erroneously removed).
1509
1510 2001-03-17 Michael Kifer <kifer@cs.sunysb.edu>
1511
1512 * ediff-util.el: Copyright years.
1513 (ediff-choose-syntax-table): New function.
1514 (ediff-setup): Use ediff-choose-syntax-table.
1515
1516 * ediff-init.el (ediff-with-syntax-table): New macro, uses
1517 with-syntax-table.
1518
1519 * ediff.el: Date of last update, copyright years.
1520
1521 * ediff-wind (ediff-setup-control-frame): Nill->nil.
1522
1523 * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
1524 of Scott Bronson.
1525 (ex-cmd-assoc,ex-cmd-one-letr): New functions.
1526 (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
1527 Deleted functions.
1528 (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
1529 ex-token-list.
1530
1531 * viper-util.el: Spaces, indentation.
1532
1533 * viper.el: Changed version, modification time.
1534
1535 2001-03-16 John Wiegley <johnw@gnu.org>
1536
1537 * calendar/timeclock.el (timeclock-workday-remaining):
1538 Check whether `discrep' is non-null before using it.
1539
1540 2001-03-16 John Wiegley <johnw@gnu.org>
1541
1542 * calendar/timeclock.el (timeclock-reread-log): Fixed problem with
1543 first-time checkins.
1544 (timeclock-log-data): Fixed problem with reading timelog log file.
1545 Resulting data in the "day list" was incorrect.
1546 (timeclock-find-discrep): Check if `timeclock-file' is readable
1547 before opening it.
1548 (timeclock-time-less-p): New function.
1549 (timeclock-day-base): New function.
1550 (timeclock-geometric-mean): New function.
1551 (timeclock-generate-report): Generate a summary report based on
1552 the contents of the log file. This uses `timeclock-log-data', and
1553 is an example of writing a timelog manipulation function.
1554 (timeclock-visit-timelog): A quick command for opening the timelog
1555 file.
1556 (timeclock-log-data): Bound the variable event.
1557
1558 2001-03-16 Kenichi Handa <handa@etl.go.jp>
1559
1560 * international/mule-cmds.el (select-safe-coding-system):
1561 Fix typo: symbol-name -> symbol-value.
1562
1563 * mail/rmail.el (rmail-insert-inbox-text): Call expand-file-name
1564 before substitute-in-file-name to handle double slashes in FILE
1565 correctly.
1566
1567 2001-03-15 Gerd Moellmann <gerd@gnu.org>
1568
1569 * textmodes/ispell.el (ispell-dictionary-alist-6): Add support
1570 for Slovak. From Pavel.Janik@suse.cz (Pavel Jan\e,Bm\e(Bk ml.).
1571
1572 2001-03-14 Gerd Moellmann <gerd@gnu.org>
1573
1574 * bindings.el (features): Add `md5' and `overlay' to the list.
1575
1576 * scroll-bar.el (toplevel): Test if `x-toolkit-scroll-bars' is
1577 bound before using it. It's not bound when configured without X,
1578 for instance.
1579
1580 2001-03-13 Thien-Thi Nguyen <ttn@gnu.org>
1581
1582 * progmodes/hideshow.el: Update copyright.
1583 (hs-minor-mode-map): Change bindings to use `C-c @' prefix.
1584 (hs-minor-mode-hook): Include `:version' in defcustom form.
1585
1586 2001-03-13 Gerd Moellmann <gerd@gnu.org>
1587
1588 * help.el (string-key-binding): Don't call event-start on
1589 a non-list.
1590
1591 2001-03-13 Eli Zaretskii <eliz@is.elta.co.il>
1592
1593 * startup.el (fancy-splash-tail, command-line-1): Fix the
1594 copyright year.
1595
1596 2001-03-13 Kenichi Handa <handa@etl.go.jp>
1597
1598 * term.el: These changes are based on a patch sent from Yong Lu
1599 <lyongu@yahoo.com>.
1600 (term-set-escape-char): Bind M-x to execute-extended-command in
1601 term-raw-escape-map.
1602 (term-move-columns): Don't try to move to negagive column.
1603 (term-emulate-terminal): Insert a string before deleting a text to
1604 overwrite.
1605
1606 2001-03-12 Gerd Moellmann <gerd@gnu.org>
1607
1608 * play/life.el (life): Rearrange code so that all calls to
1609 life-display-generation are in a catch-form.
1610
1611 * progmodes/etags.el (tags-loop-continue): Don't change point in a
1612 file that isn't interesting. In an interesting file, push the old
1613 value of point on the mark ring.
1614
1615 * mail/rmailsum.el (rmail-summary-override-mail-send-and-exit):
1616 New function.
1617 (rmail-summary-mail, rmail-summary-reply, rmail-summary-forward):
1618 Use it.
1619
1620 * emacs-lisp/autoload.el (generate-file-autoloads):
1621 Remove warning about line lengths.
1622
1623 2001-03-12 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be>
1624
1625 * progmodes/etags.el (tags-compression-info-list): New variable.
1626 (find-tag-in-order): Use it to deal with compressed source files.
1627 (tag-file-name-match-p): New function.
1628 (etags-recognize-tags-table): Use it for better match of file names.
1629
1630 2001-03-12 Kenichi Handa <handa@etl.go.jp>
1631
1632 * international/mule-cmds.el (register-input-method): Doc fix.
1633
1634 * international/quail.el (quail-translate-key): Fix condition to
1635 check if there's another breaking point in the current key.
1636
1637 2001-03-11 Eli Zaretskii <eliz@is.elta.co.il>
1638
1639 * mail/rmailout.el (rmail-output-to-rmail-file): When writing the
1640 Babyl header to the newly-created output file, bind
1641 coding-system-for-write to either rmail-file-coding-system or
1642 emacs-mule-unix.
1643
1644 2001-03-11 Stefan Monnier <monnier@cs.yale.edu>
1645
1646 * textmodes/texnfo-upd.el (texinfo-update-menu-lower-regexps):
1647 Fix the name and regexp used for subsubsections.
1648
1649 2001-03-10 Dave Love <fx@gnu.org>
1650
1651 * toolbar/tool-bar.el (tool-bar-setup): Don't suppress write-file
1652 and save-buffer if buffer-file-name non-nil. From rms.
1653
1654 2001-03-10 Andre Spiegel <spiegel@gnu.org>
1655
1656 * vc.el (vc-do-command): If the destination buffer is already
1657 current, don't set it up and don't erase it. Updated doc string
1658 to reflect that.
1659 (vc-version-diff): When doing a single file diff, don't switch to the
1660 *vc-diff* buffer before the command. This is to preserve local
1661 variable bindings that might affect the diff command.
1662 (vc-print-log): Don't switch to the *vc* buffer before the
1663 command, so that local variable bindings are preserved.
1664
1665 * vc-{cvs,rcs,sccs}.el (vc-*-print-log): Output to buffer *vc*,
1666 not the current buffer.
1667 (vc-*-diff): Output to buffer *vc-diff*, not the current buffer.
1668
1669 * vc-cvs.el (vc-cvs-checkin): When removing the sticky tag,
1670 make output go to buffer *vc*, not the current buffer.
1671
1672 2001-03-09 Stefan Monnier <monnier@cs.yale.edu>
1673
1674 * hi-lock.el (hi-lock-line-face-buffer): Wrap the regexp in a group
1675 so ^, $, *, ? and + are interpreted correctly.
1676
1677 2001-03-09 Gerd Moellmann <gerd@gnu.org>
1678
1679 * help.el (string-key-binding): Renamed from
1680 mode-line-key-binding. Handle any event on a string.
1681 Check for `keymap' properties as well as `local-map' properties.
1682
1683 * comint.el (comint-insert-clicked-input): Use the last key
1684 from this-command-keys to lookup the global key definition.
1685
1686 2001-03-09 Kenichi Handa <handa@etl.go.jp>
1687
1688 * international/characters.el: Add category `j' for
1689 katakana-jisx0201. Fix syntaxes of katakana-jisx0201.
1690
1691 * international/mule-conf.el (no-conversion): Fix docstring.
1692 (raw-text): Fix docstring.
1693
1694 2001-03-08 Gerd Moellmann <gerd@gnu.org>
1695
1696 * simple.el (choose-completion-string): When not leaving the
1697 minibuffer, raise the minibuffer frame when minibuffer-auto-raise
1698 is set.
1699
1700 * window.el (shrink-window-if-larger-than-buffer): Handle frame
1701 parameter `(minibuffer . t)'.
1702
1703 2001-03-07 Stefan Monnier <monnier@cs.yale.edu>
1704
1705 * progmodes/sh-script.el (sh-st-symbol): New symbol.
1706 (sh-font-lock-syntactic-keywords): Use it and fix bogus comment regexp.
1707 (sh-mode): Remove `make-local-variable' for unused var
1708 `font-lock-unfontify-region-function'.
1709
1710 2001-03-07 Richard M. Stallman <rms@gnu.org>
1711
1712 * info.el (Info-scroll-down): Fix previous change.
1713
1714 * mail/rmail.el (rmail-toggle-header): Use a window which
1715 is showing the Rmail buffer, rather than the selected window.
1716
1717 2001-03-07 Dave Love <fx@gnu.org>
1718
1719 * imenu.el (imenu--create-keymap-2): Revert use of menu-item for
1720 now, to avoid problems with binding imenu directly to a mouse event.
1721
1722 2001-03-07 Gerd Moellmann <gerd@gnu.org>
1723
1724 * info.el (Info-scroll-down): Call pos-visible-in-window-p with
1725 second arg t.
1726
1727 2001-03-07 Stefan Monnier <monnier@cs.yale.edu>
1728
1729 * log-edit.el (log-edit-common-indent): New var.
1730 (log-edit-set-common-indentation): Renamed from
1731 log-edit-delete-common-indentation. Use the new var.
1732 (log-edit-insert-changelog, log-edit-done-hook): Use the new name.
1733
1734 * pcvs.el (cvs-ignore-marks-modif): Use `rassoc' rather than `member*'.
1735 (cvs-mode-add-change-log-entry-other-window):
1736 Don't presume change-log-default-name is defined.
1737
1738 * pcvs-util.el (cvs-bury-buffer): In doubt, don't delete window.
1739
1740 * pcvs-defs.el (cvs-buffer-name-alist): Use *cvs-info* for
1741 the "tree" operation as well.
1742
1743 * pcvs-parse.el (cvs-parse-table): Add another ignored message.
1744
1745 * textmodes/fill.el (fill-context-prefix): Allow first-line-prefix
1746 to match paragraph-start.
1747
1748 * textmodes/sgml-mode.el (sgml-mode-common): Correct value of
1749 comment-start-skip and set comment-end-skip as well.
1750 (sgml-comment-indent): Fix for new value of comment-start-skip.
1751 (html-autoview-mode): Don't bother using make-local-hook.
1752
1753 2001-03-07 Gerd Moellmann <gerd@gnu.org>
1754
1755 * cus-edit.el (custom-save-delete): Move in front of local
1756 variables, otherwise long Custom entries would make them ineffective.
1757
1758 * uniquify.el: Set maintainer to FSF.
1759
1760 2001-03-07 Eli Zaretskii <eliz@is.elta.co.il>
1761
1762 * dired-aux.el (dired-do-shell-command): Doc fix.
1763
1764 2001-03-06 Stefan Monnier <monnier@cs.yale.edu>
1765
1766 * emulation/viper.el (viper-vi-state-mode-list): Add cperl-mode.
1767
1768 * which-func.el (which-func-modes): Add cperl-mode.
1769 (which-func-mode-global): Use define-minor-mode.
1770
1771 * info-look.el: Docstring fixes and dead code eliminated.
1772 (cperl-mode): Add support.
1773 (emacs-lisp-mode): List all entries from elisp manual, whether
1774 or not they are currently (f)bound or not. Update regexp.
1775
1776 * add-log.el (add-log-current-defun): Accept `cperl-mode' as well.
1777
1778 * progmodes/cperl-mode.el (cperl-mode): Set major-mode to cperl-mode
1779 so that C-h m shows the correct information.
1780 Use make-local-variable rather than make-variable-buffer-local.
1781 (cperl-info-buffer, cperl-setup-tmp-buf):
1782 Use make-local-variable rather than make-variable-buffer-local.
1783 (cperl-msb-fix, cperl-get-help-defer):
1784 Check major-mode for `cperl-mode' as well.
1785
1786 * progmodes/cperl-mode.el: Updated to author version 4.23.
1787 (cperl-electric-pod): SYNOPSIS was misspelled.
1788 (cperl-find-pods-heres): @if ? a : b was considered a REx.
1789 (cperl-after-expr-p): Make true after __END__.
1790
1791 2001-03-06 Gerd Moellmann <gerd@gnu.org>
1792
1793 * bookmark.el (bookmark-get-bookmark): Use assoc-ignore-case if
1794 bookmark-completion-ignore-case is t.
1795
1796 * term/x-win.el (x-handle-xrm-switch): Accept more than one -xrm
1797 switch, like xterm, and concat resource strings, with a newline
1798 between them.
1799
1800 2001-03-06 Eli Zaretskii <eliz@is.elta.co.il>
1801
1802 * international/codepage.el (cp770-decode-table)
1803 (cp773-decode-table, cp774-decode-table): New variables.
1804
1805 * man.el (Man-hyphenated-reference-regexp): New variable.
1806 (Man-build-references-alist): Use it to search for referenced
1807 manpages. If hyphenated is non-nil, record a concatenated word in
1808 Man-refpages-alist only if it matches Man-reference-regexp.
1809 Update word's length when it is concatenated. Reverse the list,
1810 to get the first manpage at the head.
1811 (Man-possibly-hyphenated-word): New function.
1812 (Man-follow-manual-reference): Use it instead of current-word to
1813 find a manpage at point, in a way that accounts for hyphenated
1814 references.
1815
1816 2001-03-06 Alex Schroeder <alex@gnu.org>
1817
1818 * sql.el (sql-interbase): New function.
1819 (sql-interbase-program): New option.
1820 (sql-interbase-options): New option.
1821 And some typos fixed: "customise" to "customize".
1822
1823 2001-03-06 Dave Love <fx@gnu.org>
1824
1825 * textmodes/flyspell.el (flyspell-region):
1826 Set up flyspell-local-mouse-map.
1827
1828 2001-03-05 Richard M. Stallman <rms@gnu.org>
1829
1830 * mail/rmail.el (rmail-retry-failure):
1831 Don't call rmail-beginning-of-message.
1832 Don't discard From: field. Do discard Received: field.
1833 Use unwind-protect to re-prune.
1834 (rmail-retry-ignored-headers): Discard X-Authentication-Warning field.
1835
1836 2001-03-06 Kenichi Handa <handa@etl.go.jp>
1837
1838 * international/quail.el (quail-title): Add autoload cookie.
1839
1840 2001-03-05 Dave Love <fx@gnu.org>
1841
1842 * emacs-lisp/cl.el (dotimes, dolist): Undef prior to autoloading
1843 new defs.
1844
1845 2001-03-05 Kenichi Handa <handa@etl.go.jp>
1846
1847 * language/ethio-util.el (ethio-toggle-space):
1848 Update current-input-method-title if necessary.
1849 (ethio-toggle-punctuation): Likewise.
1850
1851 * international/quail.el (quail-title): Fix for the case that a
1852 title of an input method is specified by a list of the same form
1853 as used in mode-line-format.
1854
1855 * international/mule-cmds.el (activate-input-method):
1856 If current-input-method-title is set by activating INPUT-METHOD,
1857 respect that value.
1858
1859 2001-03-05 Gerd Moellmann <gerd@gnu.org>
1860
1861 * play/dunnet.el (dun-mode): Set major-mode to `dun-mode'.
1862
1863 2001-03-05 Alex Schroeder <alex@gnu.org>
1864
1865 * sql.el (sql-sybase): Fix typo (was: query user about server two
1866 times instead of server and database).
1867
1868 * sql.el (sql-sybase): Doc change.
1869 (sql-mysql): Doc change.
1870 (sql-postgres): Doc change.
1871
1872 2001-03-05 Kenichi Handa <handa@etl.go.jp>
1873
1874 * international/mule-conf.el (emacs-mule, raw-text):
1875 Docstring modified.
1876
1877 2001-03-04 Eli Zaretskii <eliz@is.elta.co.il>
1878
1879 * term/internal.el: Update copyright notice.
1880
1881 * term/pc-win.el: Update copyright notice.
1882
1883 2001-03-02 Dave Love <fx@gnu.org>
1884
1885 * files.el (insert-file-contents-literally):
1886 Bind inhibit-file-name-handlers and inhibit-file-name-operation,
1887 not jka-compr-compression-info-list.
1888
1889 2001-03-02 Stefan Monnier <monnier@cs.yale.edu>
1890
1891 * newcomment.el (comment-normalize-vars): Use [ \t] for the trailing
1892 spaces in default comment-start-skip settings rather than \s-.
1893
1894 2001-03-02 Eli Zaretskii <eliz@is.elta.co.il>
1895
1896 * term/pc-win.el (msdos-handle-reverse-video): Look for reverse in
1897 default-frame-alist as well.
1898
1899 2001-03-01 Dave Love <fx@gnu.org>
1900
1901 * textmodes/reftex.el (defvar): Wrap some defvars in
1902 eval-when-compile. From Markus Rost <rost@math.ohio-state.edu>.
1903
1904 * subr.el (event-basic-type): Doc fix.
1905
1906 * international/quail.el: Doc fixes.
1907
1908 * international/utf-8.el: Doc fixes.
1909
1910 * international/mule-cmds.el: Doc fixes.
1911 (leim-list-header): Fix header text.
1912
1913 * international/mule.el (coding-system-category): Doc fix.
1914
1915 * international/ccl.el (ccl-compile): Doc fix.
1916
1917 2001-03-01 Stefan Monnier <monnier@cs.yale.edu>
1918
1919 * font-lock.el (save-buffer-state): Use inhibit-modification-hooks
1920 rather than (before|after)-change-functions.
1921
1922 2001-03-01 Gerd Moellmann <gerd@gnu.org>
1923
1924 * ediff-util.el (ediff-scroll-horizontally): Arrange for
1925 scroll-left and scroll-right being called interactively so that
1926 they set the window's min_hscroll.
1927
1928 2001-03-01 Eli Zaretskii <eliz@is.elta.co.il>
1929
1930 * info.el (info-insert-file-contents-1): Accept an additional
1931 argument `lfn': if it is non-nil, concatenate `filename' and
1932 `suffix'; otherwise use the complicated MS-DOS code.
1933 All callers changed.
1934 (info-insert-file-contents, Info-find-node): If the MS-DOS port
1935 can access long file names, try the long file-name version of
1936 `info-insert-file-contents-1', then the short file-name version.
1937
1938 2001-02-28 TAKAHASHI Naoto <ntakahas@m17n.org>
1939
1940 * language/ethio-util.el (setup-ethiopic-environment-internal):
1941 Change bindings of functions keys to conform to "Emacs Lisp Coding
1942 Convention".
1943
1944 * language/ethiopic.el ("Ethiopic"): Add documentation.
1945
1946 2001-02-28 Kenichi Handa <handa@etl.go.jp>
1947
1948 * international/utf-8.el (mule-utf-8): Set coding-category
1949 property to coding-category-utf-8.
1950
1951 2001-02-27 Richard M. Stallman <rms@gnu.org>
1952
1953 * lpr.el (lpr-page-header-switches, print-region-1):
1954 Undo 2000-07-06 change.
1955 (lpr-add-switches): Default to t on gnu/linux.
1956
1957 2001-02-27 Gerd Moellmann <gerd@gnu.org>
1958
1959 * bs.el (bs-attributes-list): Doc fix.
1960
1961 2001-02-26 Gerd Moellmann <gerd@gnu.org>
1962
1963 * help.el (describe-project): Display the file THE-GNU-PROJECT.
1964
1965 * help.el (view-order-manuals): Use goto-address.
1966
1967 * startup.el (command-line-1): Add info about ordering manuals
1968 to the not so fancy splash screens.
1969
1970 2001-02-26 Andre Spiegel <spiegel@gnu.org>
1971
1972 * vc.el (vc-default-workfile-unchanged-p)
1973 (vc-default-latest-on-branch-p): Add missing BACKEND argument.
1974
1975 2001-02-26 Gerd Moellmann <gerd@gnu.org>
1976
1977 * lazy-lock.el (lazy-lock-fontify-after-idle): Make sure to
1978 fontify in the right buffer.
1979
1980 * allout.el (outline-flag-region): Move macro in front of first
1981 use to avoid a run-time error.
1982
1983 2001-02-24 Andrew Innes <andrewi@gnu.org>
1984
1985 * makefile.w32-in: Fix copyright notice.
1986
1987 2001-02-24 Kenichi Handa <handa@etl.go.jp>
1988
1989 * international/utf-8.el (mule-utf-8): Set correct value for
1990 valid-codes property.
1991
1992 * international/fontset.el (x-complement-fontset-spec): In the
1993 case that we use ASCII font for the other charsets, use only
1994 family and registry part of it.
1995
1996 2001-02-23 Eli Zaretskii <eliz@is.elta.co.il>
1997
1998 * window.el (fit-window-to-buffer, window-safely-shrinkable-p)
1999 (shrink-window-if-larger-than-buffer): Doc fix.
2000
2001 2001-02-23 Stefan Monnier <monnier@cs.yale.edu>
2002
2003 * hi-lock.el (hi-lock-unface-buffer): Use nil rather than t for
2004 predicate passed to completing-read.
2005
2006 2001-02-23 Eli Zaretskii <eliz@is.elta.co.il>
2007
2008 * startup.el (command-line): Fix last change.
2009
2010 2001-02-23 Jason Rumney <jasonr@gnu.org>
2011
2012 * startup.el (tool-bar-originally-present): New variable.
2013 (command-line): Set it if the tool-bar is switched on at startup.
2014
2015 * frame.el (frame-notice-user-settings): Only adjust frame height
2016 for no tool-bar case if tool-bar was originally switched on.
2017 From E. Jay Berkenbilt.
2018
2019 2001-02-22 Stefan Monnier <monnier@cs.yale.edu>
2020
2021 * server.el (server-switch-buffer): Only switch window if the
2022 current one is dedicated.
2023
2024 * textmodes/fill.el (fill-region-as-paragraph): Skip spaces backward
2025 rather than using (match-beginning 0) when searching for break point.
2026
2027 2001-02-22 Eli Zaretskii <eliz@is.elta.co.il>
2028
2029 * textmodes/texinfmt.el (texinfo-format-scan): Signal an error if
2030 @ follows an accent command such as @'. Support optional braces
2031 in commands that insert accents, like makeinfo does.
2032
2033 2001-02-22 Gerd Moellmann <gerd@gnu.org>
2034
2035 * startup.el (fancy-splash-text): Add a line for ordering
2036 manuals. Reverse order of splash screens shown.
2037 (use-fancy-splash-screens-p): Adapt to the text line added.
2038
2039 * menu-bar.el (menu-bar-help-menu): Add an item for ordering
2040 manuals from the FSF.
2041
2042 * help.el (view-order-manuals): New function.
2043 (toplevel): Bind C-h C-m to this function.
2044
2045 2001-02-21 Stefan Monnier <monnier@cs.yale.edu>
2046
2047 * newcomment.el (comment-forward): Skip the comment-start before
2048 searching for the comment-end.
2049
2050 2001-02-21 Dave Love <fx@gnu.org>
2051
2052 * custom.el (custom-initialize-changed, defcustom): Doc fix.
2053
2054 * international/mule-cmds.el, international/mule.el: Doc fixes.
2055
2056 * play/fortune.el: Fix autoload cookies. Add types to defcustoms.
2057 (fortune) <defgroup>: Add :link.
2058 (fortune-from-region): Use eq, not eql.
2059
2060 2001-02-21 Gerd Moellmann <gerd@gnu.org>
2061
2062 * startup.el (fancy-splash-screens): Use display-hourglass
2063 instead of display-busy-cursor.
2064
2065 * frame.el (display-hourglass): Renamed from busy-cursor.
2066 (hourglass-delay): Renamed from busy-cursor-delay-seconds.
2067 (show-cursor-in-non-selected-windows): Doc fix.
2068
2069 2001-02-20 Dave Love <fx@gnu.org>
2070
2071 * international/utf-8.el: Doc and commentary fixes.
2072
2073 2001-02-20 Eli Zaretskii <eliz@is.elta.co.il>
2074
2075 * ehelp.el (with-electric-help): Doc fix.
2076
2077 2001-02-20 Gerd Moellmann <gerd@gnu.org>
2078
2079 * msb.el (msb-mode): Call the update-buffers function explicitly
2080 with a FORCE argument.
2081
2082 * menu-bar.el (menu-bar-update-buffers): Add optional parameter
2083 FORCE. If set, update the menu even if frame-or-buffer-changed-p
2084 returns nil.
2085
2086 2001-02-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2087
2088 * ps-print.el: Timestamp package replacement. Some enhancements.
2089 Some XEmacs compatibility. Doc fix.
2090 (ps-print-version): New version number (6.4).
2091 (ps-printer-name): Initialization fix.
2092 (ps-zebra-stripe-follow): Funcionality enhancement.
2093 (ps-prologue-file): Code enhancement.
2094 (ps-right-header): Timestamp package replacement.
2095 (ps-setup, ps-face-bold-p, ps-face-italic-p)
2096 (ps-get-page-dimensions)
2097 (ps-generate-header, ps-begin-file, ps-begin-job)
2098 (ps-generate-postscript-with-faces, ps-do-despool): Code fix.
2099 (ps-time-stamp-mon-dd-yyyy, ps-time-stamp-hh:mm:ss): New funs.
2100 (ps-zebra-stripe-full-p, ps-zebra-stripe-alist): New vars.
2101 (coding-system-for-write): Var declaration (XEmacs compatibility).
2102
2103 2001-02-20 Miles Bader <miles@gnu.org>
2104
2105 * image-file.el (image-file-name-extensions): Add "tif".
2106
2107 2001-02-19 Gerd Moellmann <gerd@gnu.org>
2108
2109 * wid-edit.el (widget-button-click): Save the selected window
2110 around the code handling clicks on buttons.
2111
2112 2001-02-18 Dave Love <fx@gnu.org>
2113
2114 * imenu.el (imenu--generic-function): Use mapc to iterate over
2115 syntax characters.
2116
2117 2001-02-17 Richard M. Stallman <rms@gnu.org>
2118
2119 * progmodes/fortran.el (fortran-strip-sqeuence-nos): Doc fix.
2120
2121 * uniquify.el (uniquify-buffer-name-style): Doc fix.
2122
2123 2001-02-16 Gerd Moellmann <gerd@gnu.org>
2124
2125 * mouse.el (mouse-save-then-kill): If the distance from the new
2126 point to the mark is equal to the distance of point from the new
2127 point, move point instead of the mark.
2128
2129 2001-02-16 Dave Love <fx@gnu.org>
2130
2131 * textmodes/flyspell.el (flyspell-get-word): Return string without
2132 properties.
2133
2134 2001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
2135
2136 * generic.el (generic-find-file-regexp): Doc fix.
2137 (generic-ignore-files-regexp): New defcustom.
2138 (generic-mode-find-file-hook): If the file's name matches the
2139 regexp in `generic-ignore-files-regexp', don't enter
2140 default-generic-mode. Doc fix.
2141
2142 2001-02-16 Gerd Moellmann <gerd@gnu.org>
2143
2144 * textmodes/flyspell.el (flyspell-region, flyspell-buffer):
2145 Add autoload cookies.
2146
2147 * calendar/cal-tex.el (cal-tex-weekly4-box): Respect setting
2148 of cal-tex-24.
2149
2150 2001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
2151
2152 * simple.el (kill-region, kill-line, kill-ring-save): Doc fix.
2153
2154 * progmodes/compile.el (grep-regexp-alist): Remove the blank from
2155 the character class after the (optional) drive, to support file
2156 names with embedded blanks.
2157
2158 2001-02-15 Sam Steingold <sds@gnu.org>
2159
2160 * textmodes/tex-mode.el (tex-shell-running):
2161 Check the process buffer too.
2162
2163 2001-02-15 Dave Love <fx@gnu.org>
2164
2165 * battery.el (battery-status-function): Fix doc, :type.
2166
2167 * calendar/timeclock.el (timeclock-get-workday-function): Fix :type.
2168
2169 2001-02-15 Gerd Moellmann <gerd@gnu.org>
2170
2171 * subr.el (read-passwd): Clear Lisp memory holding password.
2172
2173 2001-02-15 Miles Bader <miles@gnu.org>
2174
2175 * info.el (Info-copy-current-node-name): New function.
2176 (Info-mode-menu): Add it to the menu.
2177
2178 2001-02-14 Richard M. Stallman <rms@theobromine.ai.mit.edu>
2179
2180 * international/mule-cmds.el (toggle-input-method): Doc fix.
2181
2182 2001-02-13 Stefan Monnier <monnier@cs.yale.edu>
2183
2184 * replace.el (occur): Stop at end of buffer.
2185
2186 2001-02-13 Eli Zaretskii <eliz@is.elta.co.il>
2187
2188 * international/mule-cmds.el (set-input-method): Another doc fix.
2189
2190 2001-02-13 David M. Koppelman <koppel@ee.lsu.edu>
2191
2192 * hi-lock.el (hi-lock-find-patterns): Don't activate font-lock-mode.
2193
2194 2001-02-13 Miles Bader <miles@gnu.org>
2195
2196 * faces.el (set-face-background, set-face-foreground)
2197 (set-face-stipple): Treat a value of nil as being `unspecified'.
2198
2199 2001-02-12 Dave Love <d.love@dl.ac.uk>
2200
2201 * international/latin1-disp.el: Doc fixes.
2202 (latin1-display) <defgroup>: Add :link.
2203 (latin1-display) <function>: Set variable latin1-display.
2204
2205 2001-02-12 Eli Zaretskii <eliz@is.elta.co.il>
2206
2207 * international/mule-cmds.el (set-input-method): Doc fix.
2208
2209 2001-02-12 Eric M. Ludlam <zappo@choochoo.ultranet.com>
2210
2211 * speedbar.el (speedbar-frame-parameters): No toolbar lines.
2212 (speedbar-line-file): Return nil if not a file.
2213 (speedbar-buffers-line-path): Return file for tags, and dir for files.
2214
2215 2001-02-12 Michael Kifer <kifer@cs.sunysb.edu>
2216
2217 * ediff-diff.el (ediff-make-diff2-buffer): Removed bogus checks
2218 for remote files.
2219 (ediff-coding-system-for-read): Replaced the no-conversion default
2220 with raw-text.
2221
2222 * ediff-init.el: Removed :version from defcustom vars.
2223
2224 * ediff-util.el (ediff-compute-custom-diffs-maybe):
2225 Better handling of the diff mode.
2226
2227 * ediff.texi: Added ediff-coding-system-for-read.
2228
2229 * viper.texi: Fix typos.
2230
2231 2001-02-11 Dave Love <fx@gnu.org>
2232
2233 * shadowfile.el: Doc fixes.
2234 (shadow) <defgroup>: Add :link.
2235 (shadowfile-unload-hook): New function.
2236 (shadow-initialize): Use defalias, not fset.
2237 (shadow-define-cluster, shadow-define-literal-group)
2238 (shadow-define-regexp-group, shadow-initialize): Add autoload cookie.
2239
2240 * international/mule.el: Doc and message fixes.
2241
2242 * international/ccl.el (define-ccl-program): Doc fix.
2243
2244 2001-02-11 Kenichi Handa <handa@etl.go.jp>
2245
2246 * faces.el (mode-line): Set :line-width property to -1.
2247
2248 2001-02-10 Richard M. Stallman <rms@gnu.org>
2249
2250 * complete.el (partial-completion-mode): Doc fix.
2251
2252 * simple.el (delete-key-deletes-forward-mode):
2253 Change `let' to `let*' to fix gross bug in last change.
2254
2255 * repeat.el (repeat): Don't let execute-kbd-macro alter
2256 real-last-command.
2257
2258 2001-02-10 Eli Zaretskii <eliz@is.elta.co.il>
2259
2260 * simple.el (eval-expression): Doc fix.
2261
2262 2001-02-09 Dave Love <fx@gnu.org>
2263
2264 * imenu.el (imenu-generic-expression): Doc fix.
2265
2266 * emacs-lisp/re-builder.el (reb-mode): Quote the hook name.
2267 From Juanma Barranquero.
2268
2269 * emacs-lisp/authors.el (authors): Expand `root' before running find.
2270
2271 2001-02-09 Kenichi Handa <handa@etl.go.jp>
2272
2273 * faces.el (set-face-attribute): Describe the case of a negative
2274 value specified for :line-width.
2275
2276 2001-02-08 Stefan Monnier <monnier@cs.yale.edu>
2277
2278 * which-func.el (which-func-mode): Invert which-func-mode-global.
2279 From Juanma Barranquero <lektu@uol.com.br>.
2280
2281 2001-02-08 Dave Love <fx@gnu.org>
2282
2283 * wid-edit.el (widget-plist-convert-widget): Replace binding of
2284 widget-plist-value-type.
2285 (widget-alist-convert-widget): Replace binding of
2286 widget-alist-value-type.
2287
2288 * textmodes/paragraphs.el (sentence-end): Doc fix.
2289
2290 * eshell/em-rebind.el (eshell-cannot-leave-input-list):
2291 Remove `backward-line'.
2292
2293 * play/pong.el (pong-blank-color, pong-bat-color)
2294 (pong-ball-color, pong-border-color, pong-left-key)
2295 (pong-right-key, pong-up-key, pong-down-key, pong-quit-key)
2296 (pong-pause-key, pong-resume-key, pong-timer-delay):
2297 * mail/mh-comp.el (mh-compose-letter-function):
2298 * eshell/esh-mode.el (eshell-skip-prompt-function):
2299 * emulation/viper-ex.el (ex-unix-type-shell-options):
2300 * recentf.el (recentf-menu-filter):
2301 * ps-print.el (ps-print-region-function):
2302 * lpr.el (print-region-function):
2303 * forms.el (forms-mode-hooks):
2304 * dirtrack.el (dirtrack-directory-change-hook):
2305 * cus-start.el (temp-buffer-show-function, display-buffer-function):
2306 * textmodes/spell.el (spell-filter):
2307 * textmodes/fill.el (adaptive-fill-function):
2308 * textmodes/bibtex.el (bibtex-autokey-before-presentation-function):
2309 * progmodes/etags.el (find-tag-default-function):
2310 * progmodes/dcl-mode.el (dcl-calc-command-indent-function):
2311 * progmodes/ada-mode.el (ada-popup-key): Fix :type.
2312
2313 2001-02-07 Eli Zaretskii <eliz@is.elta.co.il>
2314
2315 * emulation/viper-init.el (viper-fast-keyseq-timeout)
2316 (viper-translate-all-ESC-keysequences): Doc fix. From Jim
2317 Meyering <jim@meyering.net>.
2318
2319 * loadup.el: Revert last change.
2320
2321 2001-02-07 Kenichi Handa <handa@etl.go.jp>
2322
2323 * international/mule.el (transform-make-coding-system-args):
2324 Make it work also for coding systems not using CCL.
2325
2326 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
2327
2328 * simple.el (previous-matching-history-element)
2329 (next-matching-history-element): Doc fix.
2330
2331 * loadup.el: Load ccl before utf-8; don't load ccl in the ms-dos
2332 specific part.
2333
2334 2001-02-06 Dave Love <fx@gnu.org>
2335
2336 * add-log.el (add-log-current-defun-function)
2337 (add-log-buffer-file-name-function, add-log-file-name-function):
2338 Fix :type.
2339 (change-log-mode) <font-lock-defaults>: Set SYNTAX-BEGIN.
2340
2341 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
2342
2343 * info.el (info-initialize): Remove the test for system-type when
2344 invocation-directory is non-nil.
2345
2346 * progmodes/make-mode.el (makefile-mode): Set SYNTAX-BEGIN member
2347 of `font-lock-defaults' to `backward-paragraph' rather than nil.
2348
2349 2001-02-06 Andrew Innes <andrewi@gnu.org>
2350
2351 * makefile.w32-in (EMACS): Use $(THISDIR) to make emacs.exe path
2352 absolute.
2353
2354 2001-02-06 David M. Koppelman <koppel@ee.lsu.edu>
2355
2356 * hi-lock.el (hi-lock-mode): Toggling hi-lock-mode now affects all
2357 buffers. When hi-lock turned on rather than only checking current
2358 buffer for regexps, all buffers are checked. Moved activation of
2359 font-lock to hi-lock-refontify. When font-lock turned off rather
2360 than removing added highlighting just in current buffer, remove it
2361 in all buffers. Changed edit menu text from "Automatic
2362 Highlighting" to "Regexp Highlighting" Documentation for
2363 highlighting phrases, minor documentation changes.
2364 (hi-lock-set-file-patterns): Execute only if there are new or
2365 existing file patterns.
2366 (hi-lock-refontify): Assume font-lock-fontify-buffer will first
2367 unfontify and, if a support mode is active, will not refontify the
2368 whole buffer. If necessary, turn on font lock. (Removed
2369 font-lock-unfontify and font-lock support-mode-specific calls,
2370 such as lazy-lock-fontify-window.)
2371 (hi-lock-find-patterns): Do not turn on hi-lock-mode even if
2372 patterns are found. Not useful now since find-file-hook is removed
2373 if hi-lock is off, but may be needed for per-buffer hi-lock activation.
2374 (hi-lock-face-phrase-buffer): New function. Also added related
2375 menu item and keybinding.
2376 (highlight-phrase): New alias, to hi-lock-face-phrase-buffer.
2377 (hi-lock-process-phrase): New function.
2378 (hi-lock-line-face-buffer): Doc fixes.
2379 (hi-lock-face-buffer): Doc fixes.
2380 (hi-lock-unface-buffer): Doc fixes.
2381
2382 2001-02-06 Gerd Moellmann <gerd@gnu.org>
2383
2384 * dabbrev.el (dabbrev-ignored-buffer-regexps): Renamed from
2385 dabbrev-ignored-regexps.
2386
2387 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
2388
2389 * simple.el (kill-line): Doc fix.
2390
2391 2001-02-05 Dave Love <fx@gnu.org>
2392
2393 * loadup.el: Revert last two changes -- bootstrapping works with
2394 regenerated loaddefs.
2395
2396 2001-02-05 Eli Zaretskii <eliz@is.elta.co.il>
2397
2398 * isearch.el (isearch-forward): Doc fix.
2399
2400 * textmodes/nroff-mode.el (nroff-mode): Set the SYNTAX-BEGIN part
2401 of font-lock-defaults to backward-paragraph.
2402
2403 2001-02-05 Gerd Moellmann <gerd@gnu.org>
2404
2405 * mail/rmail.el (rmail-ignored-headers): Add X-Trace,
2406 X-Complaints-To, NNTP-Posting-Date, and User-Agent.
2407
2408 2001-02-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2409
2410 * ebnf2ps.el: Eliminate time-stamp functions.
2411 (ebnf-version): New version (3.5).
2412 (ebnf-eps-finish-and-write): Replace time-stamp functions by
2413 format-time-string.
2414
2415 2001-02-05 Gerd Moellmann <gerd@gnu.org>
2416
2417 * simple.el (next-line): Goto end-of-line before inserting a newline.
2418
2419 2001-02-05 Miles Bader <miles@gnu.org>
2420
2421 * image-file.el (insert-image-file): When visiting an image, also
2422 set `truncate-lines' to t so that any fringe arrow looks correct.
2423
2424 2001-02-05 Kenichi Handa <handa@etl.go.jp>
2425
2426 * isearch.el (isearch-forward): Add description about input method
2427 in the docsting.
2428
2429 2001-02-04 Stefan Monnier <monnier@cs.yale.edu>
2430
2431 * skeleton.el (skeleton-internal-1): Always push the mark for @.
2432
2433 2001-02-02 Eli Zaretskii <eliz@is.elta.co.il>
2434
2435 * info.el (info-initialize): If installation-directory is nil, for
2436 DOS/Windows systems try looking in a sibling of invocation-directory.
2437
2438 2001-02-02 Gerd Moellmann <gerd@gnu.org>
2439
2440 * wid-edit.el (widget-button-click): Fix last change.
2441
2442 * frame.el (frame-notice-user-settings): When resizing the initial
2443 frame because the tool bar is off, also change the frame's top
2444 position if a negative top position was specified.
2445
2446 2001-02-02 Miles Bader <miles@gnu.org>
2447
2448 * image-file.el (insert-image-file): When visiting an image,
2449 suppress the cursor in the image buffer.
2450
2451 2001-02-01 Dave Love <fx@gnu.org>
2452
2453 * progmodes/f90.el (f90-mode): Remove startup message.
2454
2455 * vc-cvs.el: Remove autoloads. Require vc when compiling.
2456
2457 2001-02-01 Gerd Moellmann <gerd@gnu.org>
2458
2459 * startup.el (command-line): Fix code determining whether or not
2460 to use delete-key-deletes-forward-mode.
2461
2462 2001-02-01 Andre Spiegel <spiegel@gnu.org>
2463
2464 * vc.el (vc-diff-switches): New user option.
2465 (vc-version-diff): Use it.
2466 (vc-diff-switches-list): New macro.
2467
2468 * vc-{rcs,cvs,sccs}.el: (vc-BACKEND-diff-switches):
2469 New customization options.
2470 (vc-BACKEND-diff): Use new options via vc-diff-switches-list.
2471
2472 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Return correct status.
2473
2474 2001-02-01 Gerd Moellmann <gerd@gnu.org>
2475
2476 * msb.el (toplevel): Quote hook symbols.
2477
2478 2001-02-01 Kenichi Handa <handa@etl.go.jp>
2479
2480 * international/mule.el (make-coding-system): Add description
2481 about recognized properties in the docstring.
2482
2483 * international/mule-conf.el: Remove unused charsets
2484 mac-roman-lower and mac-roman-upper.
2485
2486 2001-01-31 Gerd Moellmann <gerd@gnu.org>
2487
2488 * textmodes/fill.el (set-fill-prefix): Cancel fill prefix if point
2489 is in front of the left-margin, if any.
2490
2491 * simple.el (delete-key-deletes-forward-mode): Treat `kp-delete'
2492 like `delete'.
2493
2494 * bindings.el: Define `kp-delete' like `delete' in function-key-map.
2495
2496 * term/w32-win.el (mouse-set-font): Doc fix.
2497
2498 2001-01-31 Stefan Monnier <monnier@cs.yale.edu>
2499
2500 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer): Doc fix.
2501 (hi-lock-find-patterns): Turn on font-lock-mode, if it is not
2502 on already.
2503
2504 2001-01-31 Markus Rost <rost@math.ohio-state.edu>
2505
2506 * files.el (save-buffer): Don't give message if (buffer-file-name)
2507 returns nil.
2508
2509 2001-01-31 Eli Zaretskii <eliz@is.elta.co.il>
2510
2511 * toolbar/tool-bar.el (tool-bar-add-item): Doc fix.
2512
2513 * emacs-lisp/re-builder.el (reb-update-modestring): Don't use
2514 concat for integers. From Juanma Barranquero <lektu@uol.com.br>.
2515
2516 * term/w32-win.el (redisplay-dont-pause): Set to t to alleviate
2517 display problems.
2518
2519 2001-01-31 Kenichi Handa <handa@etl.go.jp>
2520
2521 * international/mule.el (charset-info): Fix docstring.
2522
2523 * international/mule-diag.el (describe-character-set): Check final
2524 char valid before printing it.
2525
2526 2001-01-30 Gerd Moellmann <gerd@gnu.org>
2527
2528 * lpr.el (lpr-windows-system, lpr-lp-system): Add autoload cookies.
2529
2530 * frame.el (frame-notice-user-settings): Do the tool-bar
2531 stuff only for graphical displays. Fix a braino.
2532
2533 * frame.el (frame-initialize): Create initial frame visible.
2534 (frame-notice-user-settings): When tool-bar has been switched off,
2535 correct the frame size and sync tool-bar-mode.
2536
2537 * startup.el (command-line): Remove manipulation of frame
2538 height for tool bars.
2539
2540 2001-01-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2541
2542 * lpr.el: Compatibility with XEmacs and doc fixes.
2543 (lpr-windows-system, lpr-lp-system): New vars.
2544 (lpr-printer-switch): New defcustom.
2545 (printer-name, lpr-command): Customization fix.
2546 (print-region-1): Code fix.
2547 (print-region-new-buffer, printify-region): Indentation fix.
2548 (lpr-eval-switch, lpr-flatten-list, lpr-flatten-list-1):
2549 New functions.
2550
2551 2001-01-29 Gerd Moellmann <gerd@gnu.org>
2552
2553 * msb.el (toplevel): Fix the eval-after-load.
2554
2555 2001-01-29 Dave Love <fx@gnu.org>
2556
2557 * eshell/esh-ext.el (eshell-windows-shell-file): Fix :type.
2558
2559 * eshell/em-ls.el (eshell-ls-exclude-regexp): Fix :type.
2560
2561 * progmodes/tcl.el (outline, dabbrev, add-log): Require when compiling.
2562 (tcl-using-emacs-19-23): Consider Emacs 21+.
2563 (tcl-help-directory-list, tcl-command-switches): Fix :type.
2564 (tcl-add-emacs-menu): Supply menu name.
2565 (tcl-beginning-of-defun, tcl-end-of-defun): Defalias, don't fset.
2566
2567 2001-01-29 Gerd Moellmann <gerd@gnu.org>
2568
2569 * simple.el (delete-trailing-whitespace): Don't delete formfeeds.
2570
2571 2001-01-29 Stefan Monnier <monnier@cs.yale.edu>
2572
2573 * pcvs.el (cvs-mark-fis-dead): New function.
2574 (cvs-mode-add): Use it.
2575 (cvs-mode-add-change-log-entry-other-window):
2576 Rebind change-log-default-name to itself rather than to nil.
2577
2578 2001-01-29 Sam Steingold <sds@gnu.org>
2579
2580 * vc-cvs.el: Replaced (require 'vc) with a bunch of
2581 `autoload' statements.
2582
2583 2001-01-29 Eli Zaretskii <eliz@is.elta.co.il>
2584
2585 * files.el (confirm-kill-emacs): Doc fix.
2586
2587 * frame.el (frame-initialize): Doc fix.
2588
2589 * time-stamp.el (time-stamp-string): Doc fix.
2590
2591 * woman.el (WoMan-log-1): Make the log buffer writable.
2592 From Markus Rost <rost@math.ohio-state.edu>.
2593
2594 2001-01-29 Gerd Moellmann <gerd@gnu.org>
2595
2596 * imenu.el (imenu-syntax-alist): Add autoload cookie for
2597 the `make-variable-buffer-local'.
2598
2599 2001-01-29 Dave Love <fx@gnu.org>
2600
2601 * ansi-color.el (ansi-color-for-comint-mode): Add :version.
2602 (ansi-color-for-comint-mode-on, ansi-color-process-output):
2603 Add autoload cookie.
2604 (ansi-color-apply-sequence): Fix typo.
2605
2606 2001-01-29 Gerd Moellmann <gerd@gnu.org>
2607
2608 * menu-bar.el (menu-bar-files-menu): Add menu items for
2609 Postscript printing in black and white.
2610
2611 * mail/rmail.el (rmail-ignored-headers): Add X-Sign, X-BeenThere,
2612 X-Mailman-Version, Precedence, List-Help, List-Post,
2613 List-Subscribe, List-Id, List-Unsubscribe, List-Archive,
2614 Content-Type, Content-Length.
2615
2616 2001-01-29 Dave Love <fx@gnu.org>
2617
2618 * elide-head.el (elide-head): Make overlay evaporate.
2619
2620 * international/mule-conf.el (chinese-big5-1, chinese-big5-2): Doc fix.
2621
2622 2001-01-28 Eli Zaretskii <eliz@is.elta.co.il>
2623
2624 * isearch.el (isearch-highlight): Don't punt if the display
2625 doesn't support colors, since isearch faces are defined for
2626 monochrome displays as well.
2627
2628 2001-01-27 Sam Steingold <sds@gnu.org>
2629
2630 * shell.el (shell-write-history-on-exit): Make sure that we are in
2631 the shell buffer (M-x tex-file RET inserted the error message into
2632 the TeX buffer).
2633
2634 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
2635
2636 * simple.el (transient-mark-mode): Doc fix.
2637
2638 2001-01-27 Gerd Moellmann <gerd@gnu.org>
2639
2640 * progmodes/etags.el (find-tag-noselect): Don't bind tags-file-name.
2641
2642 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
2643
2644 * shell.el (shell-unquote-argument): If the shell is one of the
2645 mentioned in shell-dumb-shell-regexp, don't treat a backslash as a
2646 quote character.
2647 (shell-dumb-shell-regexp): Document that the shells which match
2648 this regexp are supposed to not treat a backslash as a quote character.
2649
2650 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Undo the change
2651 from 2001-01-12. It is not needed, since backspace is mapped into DEL.
2652
2653 2001-01-27 Richard M. Stallman <rms@gnu.org>
2654
2655 * dabbrev.el (dabbrev--substitute-expansion):
2656 Treat a one-capital-letter abbrev as "not all upper case",
2657 so as to force preservation of the expansion's pattern
2658 if the expansion starts with a capital letter.
2659
2660 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
2661
2662 * facemenu.el (facemenu-set-face, facemenu-set-face-from-menu):
2663 Doc fix.
2664
2665 * simple.el (transient-mark-mode): Document the fact that many
2666 commands act on the region when mark is active.
2667
2668 2001-01-27 Kenichi Handa <handa@etl.go.jp>
2669
2670 * international/quail.el (quail-setup-completion-buf): Make the
2671 multibyteness of current buffer inherited to Quail completion buffer.
2672 (quail-show-guidance-buf): Make the multibyteness of current
2673 buffer inherited to Quail guidance buffer.
2674 (quail-help): Make the multibyteness of current buffer inherited
2675 to Quail help buffer.
2676
2677 2001-01-26 Dave Love <fx@gnu.org>
2678
2679 * time-stamp.el: Doc fixes.
2680
2681 * progmodes/delphi.el (delphi-comment-face, delphi-string-face)
2682 (delphi-keyword-face, delphi-other-face): Fix :type.
2683
2684 * textmodes/flyspell.el: Doc fixes. Add :version to new options.
2685
2686 * mail/feedmail.el (feedmail): Add :link.
2687 (feedmail-send-it): Doc fix.
2688
2689 * mail/sendmail.el: Doc fixes.
2690 (sendmail-send-it): Fix the non-ASCII regexp and use
2691 rfc2047-encode-string.
2692
2693 * dired.el, dired-aux.el: Revert last change.
2694
2695 2001-01-26 Gerd Moellmann <gerd@gnu.org>
2696
2697 * makefile.w32-in (DONTCOMPILE): Add various term files.
2698
2699 2001-01-26 Dave Love <fx@gnu.org>
2700
2701 * Makefile.in (DONTCOMPILE): Add various term files.
2702
2703 2001-01-26 Gerd Moellmann <gerd@gnu.org>
2704
2705 * man.el (Man-default-man-entry, Man-mode): Doc fix.
2706
2707 * startup.el (display-startup-echo-area-message): Make sure
2708 the echo area is resized to fit the size of the startup message.
2709
2710 * gud.el (gud-perldb-massage-args): Avoid nreverse'ing a list
2711 part of which is a constant.
2712
2713 2001-01-26 Eli Zaretskii <eliz@is.elta.co.il>
2714
2715 * loadup.el (Top-level) [ms-dos]: Don't load international/ccl twice.
2716
2717 2001-01-26 Richard M. Stallman <rms@gnu.org>
2718
2719 * simple.el (next-line): Don't let `newline' expand abbrevs.
2720 Simplify slightly.
2721 (open-line): Don't let `newline' expand abbrevs.
2722
2723 2001-01-25 John Wiegley <johnw@gnu.org>
2724
2725 * eshell/esh-util.el (eshell-ange-ls-uids): Changed use of `alist'
2726 to `repeat' in the :type field.
2727
2728 * pcomplete.el (pcomplete-file-ignore): Changed a :type field to
2729 allow a choice of regexp or nil.
2730 (pcomplete-dir-ignore): Same.
2731
2732 * eshell/em-unix.el (eshell/occur): Fixed bug causing `occur' (as
2733 a command) to always fail.
2734
2735 2001-01-25 Gerd Moellmann <gerd@gnu.org>
2736
2737 * iswitchb.el (iswitchb-make-buflist): When nconc'ing lists, don't
2738 discard the result.
2739 (iswitchb-to-end): Likewise.
2740
2741 2001-01-25 Sam Steingold <sds@gnu.org>
2742
2743 * vc-cvs.el (vc-cvs-mode-line-string): Doc & comment fix.
2744 Require vc.
2745
2746 2001-01-25 Stefan Monnier <monnier@cs.yale.edu>
2747
2748 * smerge-mode.el (smerge-font-lock-keywords): Relax submatch 1.
2749
2750 * emacs-lisp/easy-mmode.el (define-minor-mode): Docstring fix.
2751
2752 2001-01-25 Dave Love <fx@gnu.org>
2753
2754 * lisp/international/mule-diag.el (describe-char-after): Doc fix.
2755 (describe-coding-system): Tweak the English text.
2756
2757 * loadup.el: Preload international/ccl for utf-8.
2758
2759 2001-01-25 Eli Zaretskii <eliz@is.elta.co.il>
2760
2761 * mail/rmail.el (rmail-redecode-body): Doc fix.
2762
2763 2001-01-25 Kenichi Handa <handa@etl.go.jp>
2764
2765 * international/mule-cmds.el (reset-language-environment):
2766 Reset coding-category-utf-8 to mule-utf-8.
2767
2768 * international/mule-conf.el (coding-category-utf-8):
2769 Initialize to mule-utf-8.
2770
2771 * loadup.el: Preload international/utf-8.
2772
2773 * international/utf-8.el: New file.
2774
2775 2001-01-24 Stefan Monnier <monnier@cs.yale.edu>
2776
2777 * diff-mode.el (diff-mode): Disable preliminary support for `compile'.
2778
2779 2001-01-24 Sam Steingold <sds@gnu.org>
2780
2781 * dired.el (dired-replace-in-string): Removed.
2782 (dired-sort-toggle): Use `replace-regexps-in-string'
2783 instead of `dired-replace-in-string'.
2784
2785 * dired-aux.el (dired-shell-stuff-it, dired-rename-subdir)
2786 (dired-rename-subdir-2, dired-insert-subdir-doinsert): Ditto.
2787
2788 * gs.el (gs-replace-in-string): Removed.
2789 (gs-options): Use `replace-regexps-in-string'
2790 instead of `gs-replace-in-string'.
2791
2792 2001-01-24 Eli Zaretskii <eliz@is.elta.co.il>
2793
2794 * mail/emacsbug.el (report-emacs-bug): Mention the fact that the
2795 bug report is mailed to an email list and posted to a news group.
2796
2797 2001-01-24 Gerd Moellmann <gerd@gnu.org>
2798
2799 * comint.el (comint-replace-by-expanded-history-before-point):
2800 Fix change of 2000-08-03 to move point to the start of the line again.
2801
2802 * startup.el (tool-bar-images-pixel-height): New variable.
2803 (command-line): After loading the user's init file, when
2804 tool-bar-mode is on, increase the frame's size by some lines for
2805 the tool-bar.
2806
2807 * frame.el (frame-initialize): Create the initial frame invisible.
2808
2809 2001-01-24 ShengHuo ZHU <zsh@cs.rochester.edu>
2810
2811 * language/chinese.el (chinese-iso-8bit): MIME:GB2312.
2812 (chinese-big5): MIME:Big5.
2813
2814 2001-01-24 Gerd Moellmann <gerd@gnu.org>
2815
2816 * international/mule-cmds.el (universal-coding-system-argument):
2817 Handle commands with prefix args.
2818
2819 2001-01-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
2820
2821 * calendar/diary-lib.el (diary-float): Fix case of MONTH
2822 being a list of numbers.
2823 (diary-mail-entries): Rewritten.
2824
2825 2001-01-23 Dave Love <fx@gnu.org>
2826
2827 * international/mule.el (make-coding-system): Fix typo.
2828
2829 * textmodes/outline.el (outline-mode) <font-lock-defaults>:
2830 Add backward-paragraph as font-lock-beginning-of-syntax-function.
2831
2832 2001-01-23 Eli Zaretskii <eliz@is.elta.co.il>
2833
2834 * font-lock.el (font-lock-mode): Doc fix.
2835
2836 2001-01-23 Kenichi Handa <handa@etl.go.jp>
2837
2838 * international/mule.el (make-translation-table): Fix docstring.
2839
2840 2001-01-22 Eli Zaretskii <eliz@is.elta.co.il>
2841
2842 * mail/rmail.el (rmail-redecode-body): New function.
2843
2844 * icomplete.el (icomplete-minibuffer-setup-hook): Doc fix.
2845
2846 2001-01-22 Gerd Moellmann <gerd@gnu.org>
2847
2848 * isearch.el (isearch-lazy-highlight-case-fold-search)
2849 (isearch-lazy-highlight-regexp): New variables.
2850 (isearch-lazy-highlight-cleanup): Update lazy highlight if
2851 case-fold search or regexp search has been toggled.
2852
2853 * wid-edit.el (widget-button-click): Avoid a save-excursion
2854 around running a global binding.
2855
2856 * isearch.el (isearch-lazy-highlight-initial-delay): Set default
2857 to 0.25.
2858
2859 2001-01-20 Miles Bader <miles@gnu.org>
2860
2861 * cus-edit.el (custom-face-save): Do post-processing on the face's
2862 new value like `custom-face-set' does.
2863
2864 2001-01-19 Eli Zaretskii <eliz@is.elta.co.il>
2865
2866 * mail/emacsbug.el (report-emacs-bug): Report the value of
2867 LC_CTYPE, not LC_TYPE.
2868
2869 * isearch.el (isearch-forward): Add isearch-toggle-case-fold,
2870 isearch-toggle-regexp and isearch-edit-string to doc string.
2871
2872 2001-01-19 Gerd Moellmann <gerd@gnu.org>
2873
2874 * textmodes/texinfo.el (texinfo-mode): Use backward-paragraph
2875 as font-lock-beginning-of-syntax-function in font-lock-defaults.
2876
2877 * jit-lock.el (jit-lock-fontify-now): Don't bind
2878 font-lock-beginning-of-syntax-function to nil.
2879
2880 2001-01-19 Eli Zaretskii <eliz@is.elta.co.il>
2881
2882 * mail/emacsbug.el (report-emacs-bug): Report values of
2883 locale-coding-system, default-enable-multibyte-characters, and the
2884 environment variables LC_ALL, LC_TYPE, and LANG.
2885
2886 2001-01-19 Gerd Moellmann <gerd@gnu.org>
2887
2888 * font-lock.el (font-lock-default-fontify-region): Fix last change.
2889
2890 * font-lock.el (font-lock-multiline): Default to nil.
2891 (font-lock-default-fontify-region): If font-lock-multiline is
2892 nil, don't check the property `font-lock-multiline'.
2893
2894 * jit-lock.el (jit-lock-after-change): If font-lock-multiline
2895 is nil, don't check the `font-lock-multiline' text property.
2896
2897 2001-01-19 Michael Kifer <kifer@cs.sunysb.edu>
2898
2899 * viper.el: Call initial-major-mode on startup.
2900
2901 * ediff.el (ediff-patch-file): Use better defaults.
2902
2903 * ediff-vers.el: Fix for 8+3 DOS file systems.
2904
2905 2001-01-19 Colin Walters <walters@cis.ohio-state.edu>
2906
2907 * ediff-util.el (ediff-compare-custom-diffs-maybe): Put diff in
2908 diff mode, if available.
2909
2910 2001-01-19 Michael Kifer <kifer@cs.sunysb.edu>
2911
2912 * ediff-hook.el (ediff-xemacs-init-menus): Fixed add-menu-button.
2913
2914 * ediff-init.el (subst-char-in-string): Define and use it, unless
2915 it's already defined.
2916
2917 2001-01-18 Gerd Moellmann <gerd@gnu.org>
2918
2919 * tooltip.el (tooltip-hide-delay): New user-option.
2920 (tooltip-show): Use tooltip-hide-delay instead of the default.
2921
2922 2001-01-18 Kenichi Handa <handa@etl.go.jp>
2923
2924 * mail/sendmail.el (mail-setup): Call set-buffer-multibyte because
2925 kill-local-variable doesn't work for enable-multibyte-characters.
2926
2927 2001-01-17 Dave Love <fx@gnu.org>
2928
2929 * ediff-init.el (ediff-before-setup-hook)
2930 (ediff-merge-filename-prefix): Add :version.
2931
2932 * international/latin1-disp.el: Require disp-table.
2933 (latin1-display): Fix :set.
2934
2935 * net/eudc-vars.el (eudc-server, eudc-protocol): Fix :type.
2936
2937 2001-01-17 Gerd Moellmann <gerd@gnu.org>
2938
2939 * isearch.el (isearch-lazy-highlight-initial-delay)
2940 (isearch-lazy-highlight-interval): Default to 0.
2941
2942 2001-01-17 Bob Glickstein <bobg@zanshin.com>
2943
2944 * isearch.el (isearch-highlight): Set isearch-overlay priority to
2945 1 here rather than each time through
2946 isearch-lazy-highlight-new-loop.
2947 (isearch-lazy-highlight-max): Variable deleted.
2948 (isearch-lazy-highlight-max-at-a-time): New user variable, like
2949 isearch-lazy-highlight-max but controls a single invocation of
2950 isearch-lazy-highlight-update.
2951 (isearch-lazy-highlight-wrapped): Variable recreated.
2952 (isearch-lazy-highlight-window-start): New variable.
2953 (isearch-lazy-highlight-cleanup): Restored to behavior of
2954 before 2-Jan.
2955 (isearch-lazy-highlight-remove-overlays): Function deleted;
2956 behavior folded into isearch-lazy-highlight-cleanup. "Keep"
2957 behavior removed.
2958 (isearch-lazy-highlight-new-loop): Restore old behavior of calling
2959 isearch-lazy-highlight-update in a loop rather than just once.
2960 Test isearch-invalid-regexp here and decide not to start a new
2961 loop, rather than testing it each time through
2962 isearch-lazy-highlight-update.
2963 (isearch-lazy-highlight-search): Function restored.
2964 (isearch-lazy-highlight-update): Get called in a timer loop again,
2965 but this time highlight more than one match each time through.
2966 Only highlight matches in the visible part of the window.
2967 Start at point, move in the direction of the search, and wrap around at
2968 the edge of the window. Use sit-for to force redisplay and ensure
2969 window-start is credible. "Face suppressing" behavior removed;
2970 overlay priorities should make it unnecessary, right?
2971 (isearch-highlight): Face suppressing behavior removed.
2972 (isearch-dehighlight): Face suppressing behavior removed.
2973 (isearch-set-lazy-highlight-faces-at): Removed.
2974
2975 2001-01-17 Kenichi Handa <handa@etl.go.jp>
2976
2977 * language/european.el ("Latin-1"): Make the format of description
2978 about additional language environments same as that of Latin-2.
2979
2980 2001-01-16 Dave Love <fx@gnu.org>
2981
2982 * isearch.el (isearch-lazy-highlight): Add :version.
2983
2984 * simple.el (backward-delete-char-untabify-method)
2985 (next-line-add-newlines): Add :version.
2986
2987 2001-01-16 Gerd Moellmann <gerd@gnu.org>
2988
2989 * bindings.el: Bind <backspace> and <delete> via function-key-map.
2990 Don't bind <delete> otherwise.
2991
2992 * simple.el (delete-key-deletes-forward-mode): Bind <backspace>
2993 and <delete> via function-key-map.
2994
2995 * textmodes/flyspell.el (mail-mode-flyspell-verify): Check in
2996 Subject line only if point is after the `Subject:'.
2997
2998 2001-01-16 Kenichi Handa <handa@etl.go.jp>
2999
3000 * language/japanese.el ("Japanese"): Add japanese-jisx0213-1 and
3001 japanese-jisx0213-2 in `charset' property of this lang. env.
3002
3003 * language/european.el ("Latin-1"): Add description for Dutch and
3004 Spanish lang. env.
3005
3006 * international/mule.el (decode-char): Fix conditions.
3007 (encode-char): Handle eight-bit-control too.
3008 (transform-make-coding-system-args): New function.
3009 (make-coding-system): Accept XEmacs style arguments for CCL base
3010 coding system.
3011
3012 2001-01-15 Gerd Moellmann <gerd@gnu.org>
3013
3014 * progmodes/etags.el (find-tag-noselect): Save the value of
3015 tags-file-name before switching buffers, for the case it has a
3016 buffer-local value.
3017
3018 2001-01-15 Alex Schroeder <alex@gnu.org>
3019
3020 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
3021 From Dave Love <fx@gnu.org>.
3022 (ansi-color-for-comint-mode): Fix :version.
3023
3024 2001-01-15 Alex Schroeder <alex@gnu.org>
3025
3026 * ansi-color.el (ansi-color-unfontify-region): Doc change.
3027
3028 2001-01-14 Eli Zaretskii <eliz@is.elta.co.il>
3029
3030 * dired.el (dired-insert-directory): If file-system-info fails,
3031 remove the " free " part, but don't signal an error.
3032
3033 2001-01-12 Sam Steingold <sds@gnu.org>
3034
3035 * bookmark.el (bookmark-maybe-historicize-string):
3036 Use new backquote syntax.
3037
3038 2001-01-12 Richard M. Stallman <rms@gnu.org>
3039
3040 * subr.el (last): Handle a list that doesn't end in nil.
3041
3042 2001-01-12 Sam Steingold <sds@gnu.org>
3043
3044 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind `backspace'
3045 to `backward-delete-char-untabify'.
3046
3047 2001-01-12 Dave Love <fx@gnu.org>
3048
3049 * cus-edit.el (customize-menu-create): Fix the :filter following
3050 easymenu change.
3051
3052 * wid-edit.el (function): Add :match-alternatives.
3053 (widget-color-action): Doc fix.
3054
3055 2001-01-12 Gerd Moellmann <gerd@gnu.org>
3056
3057 * calendar/calendar.el (calendar-basic-setup): Doc fix.
3058
3059 2001-01-12 Kenichi Handa <handa@etl.go.jp>
3060
3061 * international/mule-cmds.el (prefer-coding-system): Fix docstring.
3062
3063 * international/ccl.el (define-ccl-program): Fix docstring.
3064
3065 2001-01-11 Dave Love <fx@gnu.org>
3066
3067 * international/mule-cmds.el (standard-display-european-internal):
3068 Set display table for 2208 as for 160.
3069
3070 * progmodes/ada-mode.el (ada-popup-key): Fix last change.
3071
3072 * progmodes/fortran.el (fortran-mode-map): Modify Customization
3073 entry for custom-menu-create change.
3074 (fortran-strip-sqeuence-nos): Make arg optional. Fix regexp and
3075 don't cons it in the search loop.
3076
3077 * imenu.el (imenu--truncate-items): Revert last change.
3078
3079 2001-01-11 Eli Zaretskii <eliz@is.elta.co.il>
3080
3081 * info.el (Info-setup-header-line): If the node header includes
3082 either Next: or Prev: links, don't show the File: and Node: parts
3083 in the header line.
3084
3085 2001-01-11 Gerd Moellmann <gerd@gnu.org>
3086
3087 * comint.el (comint-goto-process-mark): Don't print a message
3088 when running in batch mode.
3089
3090 * isearch.el (isearch-search): In the condition-case handler for
3091 `error', set isearch-invalid-regexp to the whole error message.
3092
3093 * subr.el (eval-after-load): Call load-symbol-file-load-history to
3094 ensure that eval-after-load works for files dumped with Emacs.
3095
3096 * help.el (load-symbol-file-load-history): New function extracted
3097 from function symbol-file.
3098 (symbol-file): Use it.
3099
3100 * toolbar/save.xpm, toolbar/undo.xpm: Use the same colors as exit.xpm.
3101
3102 2001-01-11 Eli Zaretskii <eliz@is.elta.co.il>
3103
3104 * progmodes/etags.el (find-tag-interactive): If last-tag is nil,
3105 behave as if there were no prefix argument.
3106 (find-tag-noselect): If last-tag is nil, behave as if the NEXT-P
3107 argument were nil.
3108
3109 2001-01-11 Richard M. Stallman <rms@gnu.org>
3110
3111 * isearch.el (isearch-lazy-highlight-update):
3112 Don't look for more potential matches once maximum is exceeded.
3113 Use overlays-in to check correctly for overlap with current match.
3114 Ignore empty matches.
3115
3116 2001-01-11 Miles Bader <miles@gnu.org>
3117
3118 * textmodes/ispell.el (ispell-adjusted-window-height): New function.
3119 (ispell-overlay-window, ispell-help, ispell-show-choices)
3120 (ispell-command-loop): Use it instead of `window-height'.
3121
3122 2001-01-10 Gerd Moellmann <gerd@gnu.org>
3123
3124 * files.el (confirm-kill-emacs): New user-option.
3125 (save-buffers-kill-emacs): Ask for final confirmation before
3126 killing Emacs.
3127
3128 * isearch.el (isearch-done): Set isearch-lazy-highlight-start
3129 to nil.
3130
3131 2001-01-10 Dave Love <fx@gnu.org>
3132
3133 * progmodes/etags.el (tags-apropos-additional-actions): Fix :type.
3134
3135 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix doc, :type.
3136
3137 * hi-lock.el (hi-lock-exclude-modes): Fix :type.
3138
3139 * calculator.el (calculator-number-digits): Fix :type.
3140
3141 * vc-cvs.el (vc-cvs-header): Fix :type.
3142 * vc-rcs.el (vc-rcs-header): Fix :type.
3143 * vc-sccs.el (vc-sccs-header): Fix :type.
3144
3145 * progmodes/ada-mode.el (ada-popup-key): Fix :type.
3146
3147 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
3148
3149 * eshell/esh-util.el (eshell-ange-ls-uids): Fix :type.
3150
3151 2001-01-10 Gerd Moellmann <gerd@gnu.org>
3152
3153 * simple.el (set-variable): Force a thorough redisplay for the
3154 case that the variable has an effect on the display, like
3155 `tab-width' has.
3156
3157 2001-01-10 Andre Spiegel <spiegel@gnu.org>
3158
3159 * vc.el: Add documentation for backend interface.
3160
3161 2001-01-10 Kenichi Handa <handa@etl.go.jp>
3162
3163 * font-lock.el (c-font-lock-extra-types): Add "Lisp_Object".
3164
3165 * international/mule-conf.el (latin-extra-code-table): Set to t
3166 for \223 and \224.
3167
3168 2001-01-09 Kenichi Handa <handa@etl.go.jp>
3169
3170 * international/mule-cmds.el (locale-language-names): Map "es" to
3171 "Spanish" and "nl" to "Dutch".
3172
3173 2001-01-09 Gerd Moellmann <gerd@gnu.org>
3174
3175 * bindings.el (global-map): Bind <home> to beginning-of-line,
3176 <end> to end-of-line, C-<home> to beginning-of-buffer, and
3177 C-<end> to end-of-buffer.
3178
3179 * language/european.el: Add Dutch and Spanish language info
3180 to be able to use the appropriate tutorials.
3181
3182 2001-01-09 Alex Schroeder <alex@gnu.org>
3183
3184 * ansi-color.el (ansi-color-process-output): Use markers instead
3185 of positions for start and end of region.
3186 (ansi-color-apply-on-region): Rewrote code to make it more robust.
3187 Previously, occasional mistakes happend when fontifying many
3188 chunks of output (eg. ls --color=yes /dev). This happened
3189 whenever an overlay was created up to the end of the region, which
3190 coincided with the process-mark. New text would then be added
3191 within that overlay instead of after it.
3192 (ansi-color-make-extent): Overlays are created with the property
3193 `modification-hooks' set to '(ansi-color-freeze-overlay).
3194 (ansi-color-freeze-overlay): New function. When inserting text at
3195 the end of the overlay, the overlay will resize.
3196
3197 2000-01-09 Alex Schroeder <alex@gnu.org>
3198
3199 * ansi-color.el (ansi-color-process-output): Doc change.
3200 (ansi-color-unfontify-region): Doc change. No longer installed
3201 automatically in font-lock-unfontify-region-function.
3202 (ansi-color-apply): Doc change.
3203 (ansi-color-apply-on-region): Use extents or overlays instead of
3204 text-properties.
3205 (ansi-color-make-extent): New function.
3206 (ansi-color-set-extent-face): New function.
3207
3208 2000-01-09 Alex Schroeder <alex@gnu.org>
3209
3210 * ansi-color.el (ansi-color-process): Removed, Emacs and XEmacs
3211 both use ansi-color-process-output, now.
3212 (ansi-color-process-output): Doesn't return string anymore. It is
3213 installed in comint-output-filter-functions for both Emacs and
3214 XEmacs, now.
3215 (ansi-color-unfontify-region): Simplified code removing variables
3216 pos and start-ansi.
3217 (ansi-color-apply): Put text-property ansi-color before putting
3218 text-property face because ansi-color-unfontify-region is called
3219 immediately after the call to put-text-property.
3220 (ansi-color-context-region): Doc change.
3221 (ansi-color-filter-region): Simplified code.
3222 (ansi-color-apply-on-region): Changed start to start-marker, using
3223 a marker explicitly. Put text-property ansi-color before putting
3224 text-property face because ansi-color-unfontify-region is called
3225 immediately after the call to put-text-property.
3226
3227 2000-01-09 Alex Schroeder <alex@gnu.org>
3228
3229 * ansi-color.el (ansi-color-faces-vector): Doc change.
3230 (ansi-color-for-comint-mode): Changed :type property to choice.
3231 (ansi-color-last-context): Removed.
3232 (ansi-color-process-output): Don't use ansi-color-last-context, as
3233 the main functions will store their context now.
3234 (ansi-color-context): Doc change.
3235 (ansi-color-filter-apply): Rewrote it based on ansi-color-apply.
3236 Uses ansi-color-context such that repeated calls will strip
3237 partial escape sequences, too.
3238 (ansi-color-apply): Simplified code. Colorize end of string if
3239 face is not null. Store context in new (FACE STRING) format, such
3240 that repeated calls will strip partial escape sequences, too.
3241 Append faces to face property using ansi-color-apply-sequence such
3242 that cumulative mode actually works.
3243 (ansi-color-context-region): New variable.
3244 (ansi-color-filter-region): Rewrote it based on
3245 ansi-color-apply-on-region. Uses ansi-color-context-region such
3246 that repeated calls will strip partial escape sequences, too.
3247 (ansi-color-apply-on-region): Simplified code. Colorize end of
3248 region if face is not null. Store context in new (FACE POS)
3249 format, such that repeated calls will strip partial escape
3250 sequences, too. Append faces to face property using
3251 ansi-color-apply-sequence such that cumulative mode actually works.
3252 (ansi-color-apply-sequence): New function.
3253 (ansi-color-get-face): When the default face is added to the list
3254 of faces, all previous settings are discarded and the list of
3255 faces is set to '(default).
3256
3257 2000-01-09 Alex Schroeder <alex@gnu.org>
3258
3259 * ansi-color.el (ansi-color-faces-vector): Use nil for the default
3260 face, such that ansi-color-apply and ansi-color-apply-on-region
3261 will do the right thing.
3262 (ansi-color-apply): Do the right thing, ie. if ansi-color-get-face
3263 returns nil, set the list of faces back to nil instead of
3264 appending the result of ansi-color-get-face to the front of the list.
3265
3266 2000-01-09 Alex Schroeder <alex@gnu.org>
3267
3268 * ansi-color.el (ansi-color-for-comint-mode): Doc change.
3269 (ansi-color-process): Doc change.
3270 (ansi-color-last-context): New buffer-local variable.
3271 (ansi-color-process-output): New function. It is automatically
3272 added to comint-output-filter-functions if this is XEmacs.
3273 (ansi-color-unfontify-region): New optional parameter for XEmacs
3274 compatibility. Check wether font-lock-syntactic-keywords is
3275 boundp before removing the syntax table text property, as XEmacs
3276 doesn't have it.
3277 (ansi-color-filter-region): Doc change.
3278 (ansi-color-apply-on-region): Doc change.
3279 (ansi-color-make-face): New function. Compatibility layer for
3280 XEmacs. Return temporary faces instead of cons cells for XEmacs.
3281 (ansi-color-make-color-map): Use ansi-color-make-face.
3282 (ansi-color-get-face): Avoid face text property '(nil) as results
3283 in an errow for XEmacs.
3284
3285 2000-01-09 Alex Schroeder <alex@gnu.org>
3286
3287 * ansi-color.el (ansi-color-unfontify-region): New function.
3288 Uses text-property ansi-color in order to preserve fontification by
3289 ansi-color. When the package is loaded, a lambda expression is
3290 put onto font-lock-mode-hook. This lambda expression will check
3291 font-lock-unfontify-region-function and replace
3292 font-lock-default-unfontify-region with ansi-color-unfontify-region.
3293 (ansi-color-apply): Add text-property ansi-color in addition to
3294 text-property face.
3295 (ansi-color-apply-on-region): Add text-property ansi-color in
3296 addition to text-property face.
3297 (save-buffer-state): Copy of the macro that is also used by
3298 lazy-lock and font-lock.
3299
3300 (ansi-color-for-comint-mode): New option.
3301 (ansi-color-for-comint-mode-on): Set ansi-color-for-comint-mode.
3302 (ansi-color-for-comint-mode-off): Ditto.
3303 (ansi-color-for-comint-mode-filter): Ditto.
3304 (ansi-color-process): New function. Uses ansi-color-for-comint-mode to
3305 decide what to do. This function is added to
3306 comint-preoutput-filter-functions when the package is loaded.
3307
3308 (ansi-color-for-shell-mode-set): Removed.
3309 (ansi-color-for-shell-mode): Removed.
3310
3311 2000-01-09 Alex Schroeder <alex@gnu.org>
3312
3313 * ansi-color.el (ansi-color-for-shell-mode-set): New function with
3314 the lambda expression from the ansi-color-for-shell-mode :set
3315 property. Additionally, modify shell-mode-hook to enable or
3316 disable font-lock-mode for future shell buffers.
3317 (ansi-color-for-shell-mode): The :set property calls
3318 ansi-color-for-shell-mode-set instead of a lambda expression.
3319
3320 2000-01-09 Alex Schroeder <alex@gnu.org>
3321
3322 * ansi-color.el (ansi-color-for-shell-mode): Doc change.
3323 (ansi-color-context): New variable.
3324 (ansi-color-apply): Save context between calls.
3325
3326 2001-01-09 Eli Zaretskii <eliz@is.elta.co.il>
3327
3328 * isearch.el (isearch, isearch-lazy-highlight-face):
3329 New definitions for face colors and attributes.
3330
3331 * wid-edit.el (widget-choose): Call display-popup-menus-p instead
3332 of display-mouse-p.
3333
3334 2001-01-09 Kenichi Handa <handa@etl.go.jp>
3335
3336 * international/mule.el (make-coding-system): If the coding system
3337 accepts extra latin codes, register such codes as safe for the
3338 coding system.
3339
3340 2001-01-08 Richard M. Stallman <rms@gnu.org>
3341
3342 * emacs-lisp/bytecomp.el (byte-compile-log-1): In non-batch case,
3343 don't mention the file name or the date here, because they are
3344 logged at the start of the file.
3345
3346 2001-01-08 Richard M. Stallman <rms@gnu.org>
3347
3348 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
3349 Change screen-width to frame-width.
3350
3351 2001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
3352
3353 * info.el (Info-search): Print the default as part of the prompt.
3354
3355 2001-01-08 Andre Spiegel <spiegel@gnu.org>
3356
3357 * vc.el (vc-default-latest-on-branch-p): New function, replaces
3358 constant implementations in backends.
3359
3360 * vc-cvs.el (vc-cvs-latest-on-branch-p): Removed.
3361 (vc-cvs-checkout): Renamed arg WRITABLE to EDITABLE.
3362
3363 * vc-rcs.el (vc-rcs-checkout, vc-rcs-cancel-version): Renamed arg
3364 WRITABLE to EDITABLE.
3365
3366 * vc-sccs.el (vc-sccs-latest-on-branch-p): Removed.
3367 (vc-sccs-checkout, vc-sccs-cancel-version): Renamed arg WRITABLE
3368 to EDITABLE.
3369
3370 2001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
3371
3372 * emacs-lisp/copyright.el (copyright-current-year): Now a defvar.
3373 (copyright, copyright-update): Compute the current year at run time.
3374
3375 2001-01-08 Gerd Moellmann <gerd@gnu.org>
3376
3377 * isearch.el (isearch-old-signal-hook): Removed.
3378 (isearch-mode): Add isearch-done to kbd-macro-termination-hook
3379 instead of setting signal-hook-function.
3380 (isearch-done): Remove isearch-done from kbd-macro-termination-hook.
3381
3382 2001-01-08 Kevin Gallagher <kevingal@onramp.net>
3383
3384 * emulation/edt.el: Update to version 4.0. Provide support for
3385 EDT scroll margins at top and bottom of the window. Provide an
3386 emulation of the EDT SUBS command (bound to GOLD-Enter, by
3387 default). Enhance edt-quit, bound to GOLD-q by default, to warn
3388 user when file-related buffer modifications exist.
3389 Provide support for running EDT Emulation in XEmacs.
3390 Provide customize access to some user updatable variables.
3391 Add Commentary section to file header.
3392 Fixed a few minor bugs and cleaned up some code.
3393
3394 * emulation/edt-mapper.el: Update to version 4.0. Provide support
3395 for detecting a keypress that generates an ASCII key sequence.
3396 (Previously, only a keypress that generates a vector was
3397 recognized.) Embed Window Manager name into name of the generated
3398 EDT Emulation initialization file since the initialization file is
3399 Window Manager specific. Add Commentary section to file header.
3400
3401 2001-01-07 Eli Zaretskii <eliz@is.elta.co.il>
3402
3403 * mail/sendmail.el (mail-mode): Doc fix.
3404
3405 * info.el (Info-goto-emacs-command-node): Doc fix.
3406 (Info-goto-emacs-key-command-node): Doc fix.
3407
3408 2001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
3409
3410 * ediff-vers.el (noninteractive): Don't load generic-sc on MS-DOS
3411 systems without long file-name support.
3412
3413 2001-01-06 Andrew Innes <andrewi@gnu.org>
3414
3415 * makefile.w32-in (custom-deps): Set EMACSLOADPATH explicitly.
3416
3417 2001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
3418
3419 * isearch.el (isearch-lazy-highlight-remove-overlays): Doc fix.
3420 (isearch-lazy-highlight-update): Doc fix.
3421
3422 * ffap.el (ffap-bindings): Doc fix.
3423
3424 * dired-x.el (dired-virtual-guess-dir): Doc fix.
3425
3426 2001-01-05 Dave Love <fx@gnu.org>
3427
3428 * emacs-lisp/cl-seq.el (remove, remq): Remove.
3429
3430 2001-01-05 Gerd Moellmann <gerd@gnu.org>
3431
3432 * mouse-drag.el (mouse-drag-safe-scroll):
3433 Bind scroll-preserve-screen-position to nil.
3434
3435 * isearch.el (isearch-old-signal-hook): New variable.
3436 (isearch-mode): Set signal-hook-function to isearch-done.
3437 (isearch-done): Restore old signal-hook-function.
3438
3439 * info.el (Info-fontify-node): Mark one more char as intangible.
3440
3441 2000-01-05 Kenichi Handa <handa@etl.go.jp>
3442
3443 * composite.el (compose-last-chars): New argument COMPONENTS.
3444 If it is non-nil, compose preceding characters by compose-region with
3445 COMPONENTS.
3446
3447 * international/quail.el (quail-input-string-to-events): New function.
3448 (quail-input-method): Convert input string to events here.
3449 (quail-start-translation): Return input string, not event list.
3450 (quail-start-conversion): Likewise.
3451
3452 2001-01-04 Gerd Moellmann <gerd@gnu.org>
3453
3454 * tooltip.el (tooltip-cancel-delayed-tip)
3455 (tooltip-start-delayed-tip): Renamed from tooltip-disable-timeout
3456 and tooltip-add-timeout.
3457 (tooltip-show): Set border color from faces's foreground.
3458 (tooltip-show-help-function): If called with the same help string
3459 as last time, do nothing.
3460 (tooltip-help-tips): Don't set tooltip-help-message to nil.
3461
3462 * startup.el (fancy-splash-screens): Don't bind show-help-function
3463 to nil.
3464
3465 * tooltip.el (tooltip-frame-parameters): Remove colors.
3466 (tooltip): New face
3467 (tooltip-set-param): New function.
3468 (tooltip-show): Set up color frame parameters from face `tooltip'.
3469 Display the tooltip text in face `tooltip'.
3470
3471 2001-01-04 Dave Love <fx@gnu.org>
3472
3473 * whitespace.el (whitespace-global-mode): Fix typo.
3474
3475 * hilit19.el, mail/rnewspost.el, mail/rnews.el: Moved to obsolete.
3476
3477 2001-01-04 Eli Zaretskii <eliz@is.elta.co.il>
3478
3479 * help.el (help-for-help): Fix a typo in a doc string.
3480 From kwzh@gnu.org (Karl Heuer).
3481
3482 2001-01-03 Dave Love <fx@gnu.org>
3483
3484 * dired-x.el: Doc fixes. Maintainer change.
3485 (dired-guess-shell-gnutar, dired-guess-shell-znew-switches): Fix :type.
3486 (dired-guess-shell-alist-default): Don't use xloadimage for PNG.
3487 (dired-guess-shell-alist-user): Customize.
3488 (dired-x-help-address): Set to bug-gnu-emacs.
3489 (dired-x-maintainer, dired-x-file, dired-x-version): Deleted.
3490 (dired-default-directory): Renamed from default-directory.
3491
3492 * hl-line.el (hl-line): Doc fix.
3493
3494 2001-01-03 Karl Fogel <kfogel@red-bean.com>
3495
3496 * mail/mail-hist.el (mail-hist-text-too-long-p): Doc fix.
3497
3498 2001-01-02 Richard M. Stallman <rms@gnu.org>
3499
3500 * isearch.el (isearch-lazy-highlight-cleanup): Arg now says
3501 to remove all the current alternative-match highlighting.
3502 If nil, remove only what's outside the current window.
3503 (isearch-lazy-highlight-remove-overlays): Take optional
3504 region within which NOT to remove them.
3505 (isearch-lazy-highlight-new-loop): Greatly simplified.
3506 (isearch-lazy-highlight-update): Find all the other occurrences
3507 visible in the window, in just one call.
3508 (isearch-lazy-highlight-start): Now holds start of region to scan.
3509 (isearch-lazy-highlight-end): Now holds end of region to scan.
3510 (isearch-lazy-highlight-wrapped): Variable deleted.
3511 (isearch-lazy-highlight-search): Function deleted.
3512
3513 2000-01-02 Andrew Innes <andrewi@gnu.org>
3514
3515 * w32-fns.el (convert-standard-filename): Do length check on name
3516 before aref.
3517
3518 2001-01-02 Dave Love <fx@gnu.org>
3519
3520 * progmodes/cperl-mode.el (cperl-invalid-face): Don't double-quote
3521 value.
3522 (cperl-init-faces): Allow cperl-invalid-face to be a normal face.
3523
3524 * ls-lisp.el (ls-lisp) <defgroup>: Add :version.
3525
3526 * net/browse-url.el (browse-url-filename-alist): Avoid backquote
3527 read syntax.
3528
3529 * calendar/todo-mode.el (todo): Add :link, :version.
3530 (todo-save-top-priorities): Remove autoload cookie.
3531 (todo-add-category, todo-add-item-non-interactively)
3532 (todo-insert-item, todo-mode, todo-cp, todo-show): Fix autoload cookie.
3533
3534 2001-01-02 Gerd Moellmann <gerd@gnu.org>
3535
3536 * comint.el (comint-input-history-ignore): New variable.
3537 (comint-read-input-ring): Ignore entries matching
3538 comint-input-history-ignore.
3539
3540 2001-01-02 Eric M. Ludlam <zappo@gnu.org>
3541
3542 * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): New Variable.
3543 (lm-copyright-mark): New function.
3544 (lm-crack-copyright): New function.
3545 (lm-verify): Check that the file has a copyright.
3546 Check that the file is copyright Free Software Foundation.
3547
3548 2000-12-30 Kenichi Handa <handa@etl.go.jp>
3549
3550 * international/mule-diag.el (print-fontset): Indent font name by
3551 24 columns, not 25.
3552
3553 2000-12-29 Gerd Moellmann <gerd@gnu.org>
3554
3555 * textmodes/flyspell.el (mail-mode-flyspell-verify): Spell-check
3556 in Subject line.
3557
3558 * mail/mailabbrev.el (mail-abbrevs-enable, mail-abbrevs-disable):
3559 Use mail-mode-hook instead of mail-setup-hook.
3560 Otherwise continuing an interrupted message with C-u C-x m for
3561 instance, winds up in Mail mode without abbrevs.
3562
3563 2000-12-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3564
3565 * ps-print.el: Handle form feed better when ps-zebra-stripe-follow is
3566 non-nil. Adding almost all customization variables on ps-setup.
3567 Doc fix.
3568 (ps-print-version): New version number (6.3.3).
3569 (ps-end-with-control-d): Initialization fix.
3570 (ps-lines-printed): New var.
3571 (ps-skip-newline): New fun.
3572 (ps-setup, ps-prologue-file, ps-begin-job, ps-begin-page)
3573 (ps-next-line, ps-continue-line, ps-plot-region)
3574 (ps-generate-postscript-with-faces, ps-end-job): Code fix.
3575
3576 2000-12-29 Kenichi Handa <handa@etl.go.jp>
3577
3578 * international/fontset.el (x-complement-fontset-spec):
3579 Resolve ASCII font name so that the same family name is used for fonts
3580 registered in x-font-name-charset-alist.
3581 (create-fontset-from-fontset-spec): Adjusted for the above change.
3582 The name of fontset alias should be a unresolved ASCII font name.
3583
3584 2000-12-28 Gerd Moellmann <gerd@gnu.org>
3585
3586 * simple.el (delete-key-deletes-forward-mode): Bind backspace
3587 and delete in isearch-mode-map.
3588
3589 2000-12-28 Richard M. Stallman <rms@gnu.org>
3590
3591 * dired-x.el (dired-guess-shell-alist-default):
3592 Use xpdf instead of acroread.
3593
3594 2000-12-28 Kenichi Handa <handa@etl.go.jp>
3595
3596 * textmodes/artist.el (artist-butlast): Deleted.
3597 (artist-ellipse-mirror-quadrant): Use butlast instead of
3598 artist-butlast.
3599
3600 * subr.el (butlast, nbutlast): Moved from cl.el to here.
3601
3602 * emacs-lisp/cl.el (butlast, nbutlast): Moved to subr.el.
3603
3604 2000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
3605
3606 From Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>:
3607
3608 * ls-lisp.el: Better support for the Mac and MS-Windows.
3609 (ls-lisp): New defgroup.
3610 (ls-lisp-emulation, ls-lisp-ignore-case, ls-lisp-dirs-first)
3611 (ls-lisp-verbosity, ls-lisp-use-insert-directory-program)
3612 (ls-lisp-support-shell-wildcards): New defcustoms.
3613 (ls-lisp-parse-symlink): New function.
3614 (insert-directory): Code to convert switches to a list and set up
3615 the wildcard argument copied from ls-lisp-insert-directory.
3616 (ls-lisp-insert-directory): New argument TIME-INDEX. Add support
3617 for -C and -R switches.
3618 (ls-lisp-column-format): New function.
3619 (ls-lisp-delete-matching, ls-lisp-handle-switches)
3620 (ls-lisp-format-time): Add doc strings.
3621 (ls-lisp-handle-switches): Handle -U, -S, -X, and -F switches.
3622 Support ls-lisp-dirs-first.
3623 (ls-lisp-classify, ls-lisp-extension): New functions.
3624 (ls-lisp-format): Optionally support emulation of symlinks.
3625 Support -i, -s, and -G switches.
3626
3627 2000-12-27 Gerd Moellmann <gerd@gnu.org>
3628
3629 * textmodes/texinfo.el (texinfo-mode): Set fill-column to 70.
3630
3631 * version.el (emacs-version): Print X scroll bar information.
3632
3633 * scroll-bar.el (toplevel): Check for x-toolkit-scroll-bars
3634 instead of x-toolkit-scroll-bars-p.
3635
3636 * loadup.el (toplevel): Check for x-toolkit-scroll-bars instead
3637 of x-toolkit-scroll-bars-p.
3638
3639 2000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
3640
3641 * ffap.el (ffap-bindings): Make interactive and add an autoload cookie.
3642 (ffap-bindings): Doc fix, to reflect the above change.
3643
3644 2000-12-27 Kenichi Handa <handa@etl.go.jp>
3645
3646 * term.el (term-char-mode): Define all non-ascii self-inserting
3647 characters to 'term-send-raw in term-raw-map.
3648
3649 2000-12-25 Michael Kifer <kifer@cs.sunysb.edu>
3650
3651 * viper-init (viper-restore-cursor-type): Added condition-case guard.
3652
3653 * ediff-init.el (ediff-quit-hook,ediff-suspend-hook):
3654 Changed initialization; use add-hook.
3655 (ediff-file-remote-p): Use file-local-copy.
3656
3657 * ediff-ptch.el (ediff-prompt-for-patch-buffer): Improved defaults.
3658
3659 * ediff.el (ediff-patch-buffer): Bug fix.
3660 (ediff-revision): Allow selection of the file at the prompt.
3661
3662 2000-12-23 Stefan Monnier <monnier@cs.yale.edu>
3663
3664 * subr.el (combine-run-hooks): Remove.
3665
3666 * emacs-lisp/edebug.el (define-minor-mode): Improve the spec
3667 and remove the rogue second spec.
3668
3669 2000-12-23 Gerd Moellmann <gerd@gnu.org>
3670
3671 * progmodes/compile.el (compilation-forget-errors): Fix indentation.
3672
3673 2000-12-22 Stefan Monnier <monnier@cs.yale.edu>
3674
3675 * smerge-mode.el (smerge-basic-map): Use `=' rather than `d'.
3676 Use minibuffer menu prompt for the `=' prefix.
3677 (smerge-command-prefix): Change default to C-^.
3678 (smerge-mode): Don't assume font-lock doesn't move point.
3679
3680 * skeleton.el (skeleton-internal-1): Make sure the first line of
3681 the region is also re-indented.
3682 (skeleton-end-newline): New var.
3683 (skeleton-end-hook): Use it.
3684
3685 2000-12-22 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
3686
3687 * comint.el (comint-password-prompt-regexp): Support CVS.
3688
3689 2000-12-22 Gerd Moellmann <gerd@gnu.org>
3690
3691 * simple.el (delete-key-deletes-forward-mode): Simplify.
3692 Also backspace key combinations, depending on
3693 delete-key-deletes-forward.
3694
3695 * bindings.el ([C-backspace]): Bind C-backspace to kill-word.
3696
3697 * simple.el (delete-key-deletes-forward): Doc fix.
3698
3699 2000-08-22 Emmanuel Briot <briot@gnat.com>
3700
3701 * xml.el (top level comment): Updated to reflect the fact that
3702 white spaces are relevant in the XML file.
3703 (xml-parse-file): Do not kill an existing Emacs buffer if the file
3704 to parse was already edited. This allows for on-the-fly analysis
3705 of XML files.
3706 (xml-parse-tag): Check that the casing is the same in the start
3707 tag and end tag, since XML is case-sensitive. Allows for spaces
3708 in the end tag, after the name of the tag.
3709 (xml-parse-attlist): Allow for the character '-' in the name of
3710 attributes, as in the standard http-equiv attribute Do not save
3711 the properties in the XML tree, since they are not relevant.
3712
3713 2000-12-21 Stefan Monnier <monnier@cs.yale.edu>
3714
3715 * generic.el (generic-read-type): Undo last change, inline into
3716 `generic-mode' and then remove.
3717 (generic-mode): Inline generic-read-type.
3718 (define-generic-mode): Push the symbol name rather than the symbol
3719 onto generic-mode-list.
3720
3721 2000-12-21 Gerd Moellmann <gerd@gnu.org>
3722
3723 * generic.el (generic-read-type): Build an alist for
3724 completing-read as in 20.7.
3725
3726 * play/landmark.el (lm): Use interactive spec `P'.
3727 (toplevel): Don't set debug-on-error.
3728
3729 * server.el (server-switch-buffer): Choose a window on a visible frame.
3730
3731 2000-12-21 Dave Pearson <davep@davep.org>
3732
3733 * quickurl.el: Commentry change, I've moved my web site.
3734
3735 2000-12-21 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3736
3737 * ebnf2ps.el: Fix a problem with skip-chars-forward: it doesn't accept
3738 ranges like \177-\237, but accepts the character sequence from \177 to
3739 \237. Doc fix.
3740 (ebnf-version): New version (3.4).
3741 (ebnf-setup): Code fix.
3742 (ebnf-range-regexp): New fun.
3743 (ebnf-8-bit-chars): Const fix.
3744
3745 * ebnf-bnf.el: Fix the same problem as described on ebnf2ps.el log
3746 entry. Doc fix.
3747 (ebnf-bnf-lex): Code fix.
3748 (ebnf-bnf-comment-chars): Const fix.
3749
3750 * ebnf-iso.el: Fix the same problem as described on ebnf2ps.el log
3751 entry. Doc fix.
3752 (ebnf-iso-comment-chars): Const fix.
3753
3754 * ebnf-otz.el: Doc fix.
3755
3756 * ebnf-yac.el: Fix the same problem as described on ebnf2ps.el log
3757 entry. Doc fix.
3758 (ebnf-yac-skip-code): Code fix.
3759 (ebnf-yac-comment-chars): Const fix.
3760
3761 2000-12-21 Eli Zaretskii <eliz@is.elta.co.il>
3762
3763 * files.el (insert-directory-safely): New function.
3764 (recover-file): Use it instead of insert-directory.
3765 From Markus Rost <markus.rost@mathematik.uni-regensburg.de>
3766
3767 2000-12-21 Kenichi Handa <handa@etl.go.jp>
3768
3769 * international/mule-cmds.el (select-safe-coding-system):
3770 Check coding-category-list more rigidly. Improve help message.
3771
3772 * dired.el (dired-move-to-filename-regexp): Fix previous change.
3773
3774 2000-12-21 Miles Bader <miles@gnu.org>
3775
3776 * mail/sendmail.el (mail-mode): Set `comment-start' to the yank prefix.
3777
3778 2000-12-21 Kenichi Handa <handa@etl.go.jp>
3779
3780 * international/mule-diag.el (describe-char-after): Make *Help*
3781 buffer inherit multibyteness of the current buffer.
3782
3783 * international/mule.el (make-char): Docstring adjusted for the
3784 change of make-char-internal.
3785
3786 2000-12-20 Stefan Monnier <monnier@cs.yale.edu>
3787
3788 * international/iso-cvt.el: Docstrings fix.
3789
3790 2000-12-20 Dave Love <fx@gnu.org>
3791
3792 * subr.el (eval-after-load): Doc fix.
3793
3794 2000-12-20 Kenichi Handa <handa@etl.go.jp>
3795
3796 * jka-compr.el (jka-compr-partial-uncompress): Don't use `concat'
3797 for numbers.
3798
3799 2000-12-20 Miles Bader <miles@gnu.org>
3800
3801 * international/quail.el (quail-help): Resize the help window
3802 again after it has all its contents. Remove unneeded progn.
3803
3804 2000-12-19 Gerd Moellmann <gerd@gnu.org>
3805
3806 * pcmpl-linux.el: Fix copy/paste error.
3807
3808 2000-12-19 Andrew Innes <andrewi@gnu.org>
3809
3810 * simple.el (delete-key-deletes-forward-mode): Fix typo in docstring.
3811
3812 2000-12-19 Carsten Dominik <dominik@strw.leidenuniv.nl>
3813
3814 * progmodes/idlw-rinfo.el: Fixed copyright notice.
3815
3816 * progmodes/idlw-toolbar.el: Fixed copyright notice.
3817
3818 * progmodes/idlw-shell.el: Fixed copyright notice.
3819
3820 * progmodes/idlwave.el: Fixed copyright notice.
3821
3822 * textmodes/reftex-dcr.el (reftex-view-crossref): Added SPACE and
3823 TAB as key separators.
3824
3825 2000-12-19 Alex Schroeder <alex@gnu.org>
3826
3827 * sql.el (sql-sybase-options): New option.
3828 (sql-sybase): Use it. Add sql-database to the list of parameters
3829 provided for login. The options -w 2048 -n are not used any more.
3830 (sql-postgres-options): Changed default from "--pset" to "-P".
3831 (sql-mysql-options): Doc change.
3832 (sql-stop): Doc change.
3833
3834 2000-12-19 Kenichi Handa <handa@etl.go.jp>
3835
3836 * international/quail.el (quail-input-method): Always hide
3837 the guidance buffer on exiting.
3838
3839 2000-12-18 Gerd Moellmann <gerd@gnu.org>
3840
3841 * tooltip.el (tooltip-mode): Signal an error if x-show-tip
3842 isn't fboundp.
3843
3844 * server.el (server-buffer-done): Bury the buffer before
3845 killing it.
3846
3847 * faces.el (face-spec-set): Interpret a nil in specs for
3848 foreground and background colors as `unspecified', for
3849 compatibility with 20.x.
3850
3851 2000-12-18 Dave Love <fx@gnu.org>
3852
3853 * simple.el (mail-user-agent): Doc fix.
3854 (input-mode-8-bit): Removed.
3855
3856 * international/mule.el (set-keyboard-coding-system): Doc fix.
3857 (keyboard-coding-system): New option.
3858
3859 * mail/sendmail.el (send-mail-function): Customize.
3860
3861 2000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
3862
3863 * international/codepage.el (cp866-decode-table): New table.
3864
3865 2000-12-18 Gerd Moellmann <gerd@gnu.org>
3866
3867 * version.el (emacs-version): Remove `%a' from the time format
3868 because the weekday doesn't fit well into each locale.
3869
3870 2000-12-18 Miles Bader <miles@gnu.org>
3871
3872 * image-file.el (image-file-name-extensions): Add "pgm" and "ppm".
3873
3874 * textmodes/artist.el (artist-replace-chars, artist-replace-char):
3875 Check that emacs-major-version is `=' to 20, not `>='.
3876 (artist-replace-chars): Use `make-string' instead of a loop.
3877
3878 2000-12-17 Stefan Monnier <monnier@cs.yale.edu>
3879
3880 * pcvs.el (cvs-diff-backup-extractor): Return full-path for file.
3881 (cvs-execute-single-file): Don't change directory.
3882 Patch from Per Cederqvist.
3883
3884 2000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
3885
3886 * textmodes/ispell.el (check-ispell-version):
3887 If `ispell-program-name' is "aspell", pass it the -v switch instead
3888 of -vv.
3889
3890 2000-12-16 Kenichi Handa <handa@etl.go.jp>
3891
3892 * international/mule-diag.el (mule-diag): Insert information about
3893 configure options, multibyte awareness, language env.
3894
3895 * international/ja-dic-cnv.el (skkdic-get-candidate-list): Fix the
3896 regexp to search for candidates.
3897
3898 2000-12-15 Eli Zaretskii <eliz@is.elta.co.il>
3899
3900 * info.el (Info-forward-node): If the node has an
3901 Info-header-line, widen the buffer before searching for "next:"
3902 and "up:" pointers, and set the search limit to stay in the
3903 current node.
3904
3905 2000-12-16 Miles Bader <miles@gnu.org>
3906
3907 * simple.el (delete-trailing-whitespace): Remove extraneous let.
3908
3909 2000-12-15 Miles Bader <miles@gnu.org>
3910
3911 * comint.el (comint-send-string, comint-send-region): Also accept
3912 a buffer, buffer-name, or nil for PROCESS, for compatibility with
3913 process-send-string/region.
3914
3915 2000-12-15 Gerd Moellmann <gerd@gnu.org>
3916
3917 * isearch.el (isearch-lazy-highlight-max): New user-option.
3918 (isearch-lazy-highlight-update): Don't highlight more than
3919 isearch-lazy-highlight-max matches.
3920
3921 * mail/mh-utils.el (mh-find-path): Set read-mail-command.
3922
3923 2000-12-15 Richard M. Stallman <rms@gnu.org>
3924
3925 * sort.el (sort-columns): Fix error message.
3926
3927 * dabbrev.el (dabbrev--last-case-pattern): Value is now
3928 `upcase' or `downcase' or nil.
3929 (dabbrev-expand): Don't do anything with dabbrev--last-case-pattern.
3930 Pass new record-case-pattern arg to dabbrev--substitute-expansion.
3931 (dabbrev--substitute-expansion): New arg record-case-pattern.
3932 If it is non-nil, set dabbrev--last-case-pattern.
3933 If ABBREV is " ", use dabbrev--last-case-pattern to change EXPANSION.
3934
3935 * dabbrev.el (dabbrev--find-expansion): Remove extra nreverse.
3936
3937 2000-12-15 Miles Bader <miles@gnu.org>
3938
3939 * paths.el (Info-default-directory-list): Don't delete
3940 configure-info-directory from the list of standard info
3941 directories when appending it to the end -- their order is important.
3942
3943 * faces.el (read-face-attribute): If there's no entry for the
3944 user's input in VALID, just use it as-is (this will often result
3945 in an error, but it may be OK for e.g. colors using hexadecimal
3946 notation, and at least will yield a better error message).
3947
3948 * window.el (mode-line-window-height-fudge): Function removed.
3949 (height-affecting-face-attributes, mode-line-window-height-fudge):
3950 Variables removed.
3951 * textmodes/ispell.el (ispell-overlay-window): Ensure that the new
3952 window is really the right size. Use vertical-motion
3953 rather than forward-line.
3954 (ispell-help): Don't use ispell-mode-line-window-height-fudge.
3955 (ispell-command-loop, ispell-show-choices): Use the variable
3956 ispell-choices-win-default-height, rather than the function.
3957 (ispell-choices-win-default-height): Function removed.
3958 (ispell-mode-line-window-height-fudge): Function removed.
3959
3960 2000-12-14 Stefan Monnier <monnier@cs.yale.edu>
3961
3962 * add-log.el (add-change-log-entry): Only expand-file-name if non-nil.
3963
3964 2000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
3965
3966 * paths.el (Info-default-directory-list):
3967 If configure-info-directory is not one of the standard directories,
3968 put it first in the list; otherwise put it last. Doc string
3969 changed accordingly.
3970
3971 * info.el (Info-directory-list): Change doc string to reflect the
3972 change in Info-default-directory-list.
3973
3974 * simple.el (delete-key-deletes-forward-mode): Treat ms-dos and
3975 windows-nt as windowed environments, even under -nw.
3976
3977 * startup.el (command-line): Don't call x-backspace-delete-keys-p
3978 if not fboundp. Switch delete-forward mode for the <delete> key
3979 on all PC platforms, even under -nw.
3980
3981 * term/internal.el ([M-delete]): Remap to M-d.
3982
3983 2000-12-14 Gerd Moellmann <gerd@gnu.org>
3984
3985 * emacs-lisp/lisp-mnt.el: Change maintainer to FSF.
3986
3987 2000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
3988
3989 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
3990
3991 2000-12-14 Gerd Moellmann <gerd@gnu.org>
3992
3993 * startup.el (command-line): Call delete-key-deletes-forward-mode,
3994 if appropriate.
3995
3996 * simple.el (delete-key-deletes-forward): New user-option.
3997 (delete-key-deletes-forward-mode): New function.
3998
3999 * bindings.el: Bind `delete' to backward-delete-char.
4000
4001 * emacs-lisp/easymenu.el (easy-menu-current-active-maps):
4002 Test if symbol is bound before getting its value.
4003
4004 * tooltip.el (tooltip-show): If an error is signaled in
4005 x-show-tip, display that error, and display the help in the
4006 echo area.
4007
4008 2000-12-14 Kenichi Handa <handa@etl.go.jp>
4009
4010 * international/ja-dic-cnv.el (skkdic-set-okuri-nasi):
4011 Show "... entries" messages for every 10000 entries, not 10.
4012
4013 2000-12-13 Karl Fogel <kfogel@red-bean.com>
4014
4015 * bookmark.el: Provide a generic exit hook, as suggested by
4016 Ovidiu Predescu <ovidiu@cup.hp.com>:
4017 (bookmark-exit-hook): New var.
4018 (bookmark-exit-hook-internal): New func, replaces
4019 old raw lambda form in `kill-emacs-hook', and runs new
4020 `bookmark-exit-hooks'. No longer tests for the bookmark feature,
4021 as logically that feature must have been provided if this function
4022 is running.
4023 Removed ;;;###autoload before the `add-hook' call.
4024
4025 2000-12-13 Stefan Monnier <monnier@cs.yale.edu>
4026
4027 * emacs-lisp/easymenu.el (easy-menu-define): Setup indentation.
4028 (easy-menu-current-active-maps): New function.
4029 (easy-menu-get-map): Use it.
4030 Make a proper menu entry when creating a new keymap.
4031
4032 2000-12-13 Kenichi Handa <handa@etl.go.jp>
4033
4034 * international/characters.el: Fix cases and syntaxes for
4035 mule-unicode-0100-24ff.
4036
4037 * dired.el (dired-move-to-filename-regexp): Fixed for the case
4038 that a Japanese character is not appended after day and year.
4039
4040 * info.el (Info-suffix-list): Change format for a command that
4041 requires arguments.
4042 (info-insert-file-contents): Adjusted for the above change.
4043
4044 2000-12-12 Andreas Schwab <schwab@suse.de>
4045
4046 * tar-mode.el (tar-extract): Base the name of the subfile buffer
4047 on the name of the tar buffer. Verify that the existing buffer is
4048 visiting the same subfile.
4049
4050 2000-12-12 Dave Love <fx@gnu.org>
4051
4052 * subdirs.el: Add obsolete.
4053
4054 2000-12-12 Gerd Moellmann <gerd@gnu.org>
4055
4056 * mail/rmailsum.el (rmail-summary-expunge)
4057 (rmail-summary-expunge-and-save): Use rmail-expunge-confirmed
4058 instead of rmail-confirm-expunge.
4059
4060 * replace.el (perform-replace): Don't use an empty match adjacent
4061 to a non-empty match when computing the next match before the
4062 replacement is performed.
4063
4064 2000-12-12 Milan Zamazal <pdm@freesoft.cz>
4065
4066 * progmodes/glasses.el: Use `define-minor-mode' for the minor mode
4067 definition (patch by Stefan Monnier).
4068 (glasses-mode): Use jit-lock instead of `after-change-functions'
4069 (patch by Stefan Monnier).
4070
4071 2000-12-12 Miles Bader <miles@gnu.org>
4072
4073 * info.el (Info-last-preorder): Don't barf on nodes without a prev.
4074 (Info-scroll-down): Respect `Info-scroll-prefer-subnodes'.
4075
4076 2000-12-12 Andrew Choi <akochoi@i-cable.com>
4077
4078 * term/mac-win.el: Remove load for ls-lisp.
4079
4080 * loadup.el: Load ls-lisp for system-type `macos'.
4081
4082 2000-12-12 Miles Bader <miles@gnu.org>
4083
4084 * simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter.
4085 Respect field end too.
4086 (just-one-space): Respect fields as `delete-horizontal-space'.
4087 (newline-and-indent, reindent-then-newline-and-indent):
4088 Use `delete-horizontal-space'.
4089
4090 2000-12-11 Stefan Monnier <monnier@cs.yale.edu>
4091
4092 * newcomment.el (comment-indent-new-line): Use delete-horizontal-space
4093 (so as to obey the field property in the minibuffer).
4094
4095 * obsolete/c-mode.el: Moved from lisp/progmodes.
4096 * obsolete/auto-show.el: Moved from lisp.
4097 * obsolete/ooutline.el: Moved from lisp/textmodes.
4098
4099 2000-12-11 Carsten Dominik <dominik@strw.leidenuniv.nl>
4100
4101 * progmodes/idlwave.el: Updated to IDLWAVE version 4.7. Too many
4102 changes to list them here.
4103
4104 * progmodes/idlw-shell.el: Updated to IDLWAVE version 4.7.
4105 Too many changes to list them here.
4106
4107 * progmodes/idlw-rinfo.el: Updated to IDLWAVE version 4.7.
4108 Too many changes to list them here.
4109
4110 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version 4.7.
4111
4112 2000-12-11 Gerd Moellmann <gerd@gnu.org>
4113
4114 * simple.el (kill-new): Don't try to setcar kill-ring if it is nil.
4115
4116 * cus-edit.el (custom-save-variables, custom-save-faces):
4117 Comment fix.
4118
4119 * hscroll.el: Moved to `obsolete' subdir.
4120
4121 2000-12-11 Miles Bader <miles@gnu.org>
4122
4123 * window.el (window-text-height): Function removed (now in C).
4124
4125 2000-12-10 Stefan Monnier <monnier@cs.yale.edu>
4126
4127 * log-edit.el (log-edit-parent-buffer): New var.
4128 (log-edit): Set it. Add BUFFER argument.
4129 (log-edit-done): Use char-before.
4130 Don't bother checking validity of vc-comment-ring.
4131 Only bury the buffer if log-edit popped it up.
4132
4133 * pcvs.el: Update references to CVS-Edit (now Log-Edit).
4134 (cvs-mode-diff-help): Remove.
4135 (cvs-mode-commit): Use the new `log-edit' BUFFER argument.
4136 (cvs-mode-marked): Set up the default for CMD manually.
4137
4138 * pcvs-defs.el (cvs-mode-diff-map): Use minibuffer menu prompt.
4139 Remove binding for ? now made unnecessary.
4140
4141 2000-12-10 Carsten Dominik <dominik@strw.leidenuniv.nl>
4142
4143 * textmodes/reftex.el (reftex-scanning-info-available-p): New function.
4144 (reftex-TeX-master-file): Check for `tex-main-file' early enough.
4145
4146 * textmodes/reftex-global.el (reftex-create-tags-file): Fixed bug
4147 when master file is not open.
4148
4149 2000-12-09 Stefan Monnier <monnier@cs.yale.edu>
4150
4151 * progmodes/ada-stmt.el: Update `maintainer'.
4152
4153 2000-12-09 Stephen Gildea <gildea@alum.mit.edu>
4154
4155 * time-stamp.el (time-stamp-old-format-warn): Reorder custom
4156 choices to match documentation string.
4157
4158 2000-12-09 Miles Bader <miles@gnu.org>
4159
4160 * minibuf-eldef.el: New file.
4161
4162 * window.el (fit-window-to-buffer): Don't pass last argument to
4163 pos-visible-in-window-p, now that its meaning is inverted.
4164
4165 2000-12-08 Eli Zaretskii <eliz@is.elta.co.il>
4166
4167 * image.el (create-image): Doc fix; spotted by Per Cederqvist
4168 <ceder@lysator.liu.se>.
4169
4170 2000-12-08 Stefan Monnier <monnier@cs.yale.edu>
4171
4172 * autoinsert.el (auto-insert-alist): Add missing final \n.
4173
4174 * pcvs-defs.el (cvs-menu): Move. Make submenu for diff commands.
4175 (cvs-menu-map): Remove.
4176 * pcvs.el (cvs-menu): Use `cvs-menu' rather than `cvs-menu-map'.
4177 (cvs-mode-quit): Turn it back into a plain function.
4178
4179 * textmodes/texnfo-upd.el (texinfo-chapter-level-regexp)
4180 (texinfo-filter): Remove (move to texinfo.el).
4181
4182 * textmodes/texinfo.el: Move the (require 'cl) to the front of the
4183 file where it's more visible.
4184 (texinfo-filter, texinfo-chapter-level-regexp): New variables
4185 moved from texnfo-upd.el (for AUCTeX's compatibility, originally).
4186 (texinfo-mode): Use texinfo-chapter-level-regexp for page-delimiter.
4187 (texinfo-inside-macro-p): Only catch `scan-error's.
4188 (texinfo-inside-env-p): Make better use of the match info.
4189 (texinfo-insert-quote): Collapse calls to `texinfo-inside-macro-p'.
4190 (texinfo-insert-@end): Slight re-organization.
4191 Also remove useless `looking-at' call.
4192
4193 2000-12-08 Andrew Innes <andrewi@gnu.org>
4194
4195 * w32-fns.el: Add clipboard support from term/w32-win.el, so it is
4196 accessible in -nw mode.
4197
4198 * term/w32-win.el: Remove stuff about selection timeout, which is
4199 irrelevant on Windows. Move clipboard support to w32-fns.el, so
4200 it is accessible in -nw mode.
4201
4202 2000-12-08 Dave Love <fx@gnu.org>
4203
4204 * emacs-lisp/lisp-mode.el (lisp-mode):
4205 Set font-lock-keywords-case-fold-search.
4206
4207 2000-12-08 Gerd Moellmann <gerd@gnu.org>
4208
4209 * textmodes/ispell.el (ispell): Doc fix.
4210
4211 2000-12-08 Kenichi Handa <handa@etl.go.jp>
4212
4213 * international/quail.el (quail-insert-decode-map): Check the
4214 frame width of a window displaying the current buffer, not that of
4215 the selected frame.
4216 (quail-help): Make sure that the help buffer has window before
4217 inserting text in it.
4218
4219 2000-12-07 Sam Steingold <sds@gnu.org>
4220
4221 * loadup.el: Load emacs-lisp/backquote instead of autoloading.
4222 Backquote is used in isearch.el, so autoloading saves nothing.
4223
4224 2000-12-07 Eli Zaretskii <eliz@is.elta.co.il>
4225
4226 * startup.el (normal-top-level-add-subdirs-to-load-path):
4227 Ignore the CVS and RCS subdirectories case-insensitively.
4228
4229 * dired.el (dired-insert-directory): If file-system-info is
4230 fboundp, call it instead of invoking dired-free-space-program.
4231
4232 2000-12-07 Gerd Moellmann <gerd@gnu.org>
4233
4234 * server.el (server-visit-files): Push files on file-name-history.
4235
4236 * progmodes/cc-langs.el: Update copyright.
4237
4238 * progmodes/idlw-shell.el, progmodes/idlwave.el: Update copyright.
4239
4240 * bindings.el (mode-line-mode-menu): Add glasses-mode.
4241
4242 * bindings.el (mode-line-mode-menu): Reverse the order
4243 of define-keys so that the menu appears in alphabetical order.
4244
4245 2000-12-07 Milan Zamazal <pdm@freesoft.cz>
4246
4247 * progmodes/glasses.el (glasses-mode): Update mode line at the end
4248 of the function.
4249
4250 2000-12-07 Dave Love <fx@gnu.org>
4251
4252 * jka-compr.el (jka-compr-compression-info-list): Fix :type.
4253
4254 * facemenu.el (facemenu-unlisted-faces): Fix value.
4255
4256 2000-12-07 Stefan Monnier <monnier@cs.yale.edu>
4257
4258 * font-lock.el (font-lock-default-fontify-region):
4259 Include the terminating \n (off-by-one error).
4260 (font-lock-set-defaults): Use dolist.
4261
4262 * derived.el (define-derived-mode): Don't use combine-run-hooks.
4263
4264 2000-12-07 Kenichi Handa <handa@etl.go.jp>
4265
4266 * international/mule-cmds.el (describe-language-environment):
4267 Fix for the case that an input method title is not string but a list.
4268
4269 * ps-bdf.el (bdf-read-font-info): Modify the kludgy code for fonts
4270 of wrong SIZE record.
4271
4272 2000-12-06 Dave Love <fx@gnu.org>
4273
4274 * newcomment.el (comment-region, comment-dwim): Doc fix.
4275
4276 * textmodes/texinfo.el: Require tex-mode when compiling.
4277 (texinfo-update-node): Doc fix.
4278 (texinfo-imenu-generic-expression): Add @anchor.
4279 (texinfo-font-lock-keywords): Add @uref.
4280 (texinfo-inside-macro-p): Don't use ignore-errors.
4281 (texinfo-insert-quote): Match more contexts.
4282
4283 * international/mule.el (decode-char, encode-char): Doc fix.
4284 (auto-coding-alist): Customize.
4285
4286 * files.el (load-file): Fix change of 2000-03-12.
4287
4288 * wid-edit.el (widget-text-keymap): Doc fix.
4289
4290 2000-12-06 Andrew Innes <andrewi@gnu.org>
4291
4292 * makefile.w32-in (lisp): Set to an absolute directory, namely
4293 $(CURDIR).
4294
4295 2000-12-06 Eli Zaretskii <eliz@is.elta.co.il>
4296
4297 * emacs-lisp/autoload.el (update-file-autoloads): Use raw-text to
4298 read generated-autoload-file, and set buffer-file-coding-system to
4299 raw-text-unix after reading the file.
4300
4301 * international/mule-conf.el (file-coding-system-alist):
4302 Use raw-text for reading loaddefs.el and raw-text-unix for writing it.
4303
4304 2000-12-06 Gerd Moellmann <gerd@gnu.org>
4305
4306 * replace.el (occur): Make line-number-width 1 smaller for the
4307 colon following the line number.
4308
4309 * startup.el (fancy-splash-text, command-line-1):
4310 Use `File' for the menu name instead of `Files'.
4311
4312 * tmm.el: Update copyright.
4313
4314 * cus-start.el: Add entry for even-window-heights.
4315
4316 2000-12-06 Miles Bader <miles@gnu.org>
4317
4318 * faces.el (frame-set-background-mode): Avoid stomping on
4319 locally modified faces.
4320
4321 2000-12-06 Kenichi Handa <handa@etl.go.jp>
4322
4323 * international/fontset.el: Correct the font registries for
4324 japanese-jisx0213-1 and japanese-jisx0213-2.
4325
4326 2000-12-05 Gerd Moellmann <gerd@gnu.org>
4327
4328 * textmodes/reftex-toc.el (reftex-toc-menu): Fix typo.
4329
4330 * iswitchb.el: Update customization commentary.
4331
4332 2000-12-05 Rob Riepel <riepel@Stanford.EDU>
4333
4334 * emulation/tpu-edt.el (tpu-help): Fixed previous screen logic.
4335 (tpu-search-highlight): Fixed comparison of overlay end positions.
4336 (tpu-trim-line-ends): Implemented trimming logic locally.
4337
4338 * emulation/tpu-extras.el (tpu-write-file-hook)
4339 (tpu-set-cursor-bound): Replaced picture-clean with tpu-trim-line-ends.
4340
4341 2000-12-05 Kenichi Handa <handa@etl.go.jp>
4342
4343 * language/chinese.el (chinese-iso-8bit): Change mime-charset name
4344 to cn-gb.
4345 (cn-gb, gb2312): New aliases for chinese-iso-8bit.
4346
4347 2000-12-04 Dave Love <fx@gnu.org>
4348
4349 * emacs-lisp/cl-indent.el: Remove erroneous spec for condition-case.
4350
4351 2000-12-04 Gerd Moellmann <gerd@gnu.org>
4352
4353 * mail/rmailsum.el (rmail-summary-expunge)
4354 (rmail-summary-expunge-and-save): Ask for confirmation with
4355 rmail-expunge-confirmed.
4356
4357 * mail/rmail.el (rmail-expunge-confirmed): New function.
4358 (rmail-expunge): Use it.
4359
4360 2000-12-04 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be>
4361
4362 * progmodes/etags.el (tag-partial-file-name-match-p): New function.
4363 (etags-recognize-tags-table, find-tag-in-order):
4364 New functionality: interpret file names as tags.
4365
4366 2000-12-04 Eli Zaretskii <eliz@is.elta.co.il>
4367
4368 * info.el (Info-scroll-prefer-subnodes): New defcustom.
4369 (Info-scroll-up): If Info-scroll-prefer-subnodes is nil, don't visit
4370 the first subnode until the bottom of the current node is visible.
4371
4372 2000-12-04 Gerd Moellmann <gerd@gnu.org>
4373
4374 * format.el (format-decode): Don't change buffer's undo list.
4375
4376 2000-12-04 Kenichi Handa <handa@etl.go.jp>
4377
4378 * faces.el (face-font-registry-alternatives): Add entries for CJK
4379 fonts. Doc-string adjusted for the actual usage of this data.
4380
4381 * international/fontset.el: Change the font registries for CJK
4382 fonts in the default fontset. Don't append '*' to registries.
4383
4384 2000-12-03 Stefan Monnier <monnier@cs.yale.edu>
4385
4386 * emacs-lisp/easy-mmode.el (define-derived-mode)
4387 (easy-mmode-derived-mode-p): Remove (moved to derived.el).
4388
4389 * derived.el (define-derived-mode): Revived, moved from easy-mmode.el.
4390 (derived-mode-p): New function.
4391 (derived-mode-make-docstring): Add `docstring' argument.
4392 Use it if available and complete it if necessary.
4393
4394 2000-12-03 Andreas Schwab <schwab@suse.de>
4395
4396 * type-break.el (type-break): Don't make parent of itself.
4397
4398 2000-12-03 Miles Bader <miles@gnu.org>
4399
4400 * simple.el (delete-trailing-whitespace): Don't delete newlines too.
4401
4402 2000-12-02 Stefan Monnier <monnier@cs.yale.edu>
4403
4404 * textmodes/tex-mode.el (tex-start-shell): Obey shell-file-name.
4405 (tex-main-file, tex-file): Simplify.
4406 (tex-generate-zap-file-name): Use subst-char-in-string.
4407 (tex-strip-dots): Remove.
4408
4409 * tmm.el (tmm-get-keymap): Eval the menu name in `menu-item'.
4410
4411 * textmodes/ispell.el (check-ispell-version): Don't use match-beginning
4412 to check if the match succeeded.
4413
4414 2000-12-02 Gerd Moellmann <gerd@gnu.org>
4415
4416 * startup.el (use-fancy-splash-screens-p): New function.
4417 (command-line-1): Use it to determine whether or not to use
4418 a fancy splash screen.
4419
4420 2000-12-02 Andreas Schwab <schwab@suse.de>
4421
4422 * emacs-lisp/eldoc.el (eldoc): Don't make parent of itself.
4423
4424 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
4425
4426 * international/mule.el (make-char): Fix last change.
4427
4428 * textmode/texinfo.el (texinfo-open-quote, texinfo-close-quote):
4429 New defcustoms.
4430 (texinfo-insert-quote): Don't call tex-insert-quote, to avoid
4431 autoloading tex-mode; instead, do the same manually.
4432 Use texinfo-open-quote and texinfo-close-quote. Insert literal quote
4433 with numeric argument. Docstring fix.
4434 (toplevel): Require cl when compiling.
4435
4436 * international/mule.el (make-char): Doc fix.
4437
4438 2000-12-02 Jason Rumney <jasonr@gnu.org>
4439
4440 * term/w32-win.el (x-select-enable-clipboard): Customize (as per
4441 the Emacs Lisp manual)
4442
4443 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
4444
4445 * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
4446
4447 * term/pc-win.el (x-select-enable-clipboard): Customize (as per
4448 the Emacs Lisp manual).
4449
4450 2000-12-02 Gerd Moellmann <gerd@gnu.org>
4451
4452 * simple.el (next-line-add-newlines): Change default to nil.
4453
4454 2000-12-01 Eli Zaretskii <eliz@is.elta.co.il>
4455
4456 * files.el (revert-buffer, recover-file):
4457 Bind coding-system-for-read to emacs-mule-unix, not to no-conversion.
4458
4459 2000-12-01 Gerd Moellmann <gerd@gnu.org>
4460
4461 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
4462
4463 2000-12-01 Miles Bader <miles@gnu.org>
4464
4465 * window.el (fit-window-to-buffer): Handle non-nil `truncate-lines'.
4466
4467 2000-12-01 Kenichi Handa <handa@etl.go.jp>
4468
4469 * international/mule-diag.el (describe-char-after): Fix typo.
4470 (describe-character-set, non-iso-charset-alist): Fix typo.
4471
4472 2000-12-01 Miles Bader <miles@gnu.org>
4473
4474 * image-file.el (image-file-name-regexp): Automatically add
4475 upper-case variants of each filename extension in
4476 `image-file-name-extensions', since they seem to be common.
4477
4478 * simple.el (minibuffer-contents)
4479 (minibuffer-contents-no-properties, delete-minibuffer-contents):
4480 New functions.
4481 * filecache.el (file-cache-directory-name)
4482 (file-cache-minibuffer-complete): Ignore the minibuffer prompt.
4483
4484 2000-12-01 Milan Zamazal <Milan.Zamazal@qbizm.com>
4485
4486 * filecache.el (file-cache-minibuffer-complete): Don't try to
4487 delete the minibuffer prompt.
4488
4489 2000-11-30 Dave Love <fx@gnu.org>
4490
4491 * cus-start.el: Fix read-buffer-function type.
4492
4493 2000-11-30 Gerd Moellmann <gerd@gnu.org>
4494
4495 * md5.el: Removed. There's a built-in function, now.
4496
4497 2000-11-30 Markus Rost <rost@math.ohio-state.edu>
4498
4499 * mail/rmail.el (rmail-set-message-counters): Don't use "D"
4500 as dummy 0-th char of rmail-deleted-vector.
4501
4502 2000-11-30 Eli Zaretskii <eliz@is.elta.co.il>
4503
4504 * ps-print.el (ps-end-job): Bind case-fold-search only after
4505 switching to ps-spool-buffer.
4506
4507 2000-11-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
4508
4509 * ps-print.el: Line number font customization. PostScript: Lines and
4510 PageCount are initialized on each page. Doc Fix.
4511 (ps-print-version): New version number (6.3.2).
4512 (ps-lpr-switches, ps-font-info-database, ps-font-size)
4513 (ps-header-font-size, ps-header-title-font-size, ps-left-header)
4514 (ps-right-header): Customization fix.
4515 (ps-setup, ps-select-font, ps-begin-file, ps-header-sheet, ps-end-job):
4516 Fix code.
4517 (ps-end-with-control-d, ps-line-number-font, ps-line-number-font-size):
4518 New vars.
4519
4520 2000-11-30 Gerd Moellmann <gerd@gnu.org>
4521
4522 * bs.el: Fix typos and spelling errors.
4523 (bs-appearance) <defgroup>: Renamed from bs-appearence.
4524 (bs-configuration): Doc fix.
4525
4526 * bs.el: Undo mistaken change of 2000-11-28. Update copyright.
4527
4528 2000-11-30 Rob Riepel <riepel@Stanford.EDU>
4529
4530 * emulation/tpu-edt.el (tpu-version): New version.
4531 (tpu-search-overlay, tpu-replace-overlay): New initial range.
4532 (tpu-original-mode-line): Variable deleted.
4533 (tpu-mark-flag): New initial value.
4534 (tpu-set-mode-line): Don't redefine mode-line-format.
4535 Add tpu-mark-flag to minor-mode-alist.
4536 (tpu-update-mode-line): New mark flag logic.
4537 (tpu-get): Use find-file-wildcards.
4538 (tpu-search-highlight): Move overlay less, reset overlay properly.
4539 (tpu-unselect): Deactivate mark.
4540 (tpu-lm-replace): Reset overlay properly.
4541 (tpu-forward-line): Use forward-visible-line.
4542 (tpu-edt-on): Set transient mark mode. ispell autoloads deleted.
4543
4544 * emulation/tpu-extras.el (tpu-forward-line): Use forward-visible-line.
4545
4546 2000-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
4547
4548 * cus-edit.el (custom-face-value-create): Always emphasize tag.
4549
4550 2000-11-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
4551
4552 * calendar/diary-lib.el (diary-entry-time): Anchor pattern correctly
4553 and skip whitespace and newlines.
4554
4555 2000-11-30 Stefan Monnier <monnier@cs.yale.edu>
4556
4557 * emacs-lisp/cl.el (third...tenth): Really undo change of 2000-08-05.
4558
4559 2000-11-29 Gerd Moellmann <gerd@gnu.org>
4560
4561 * help.el (describe-function-1): Regexp-quote function name
4562 when used as part of a regexp.
4563
4564 * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
4565 Use face-attribute instead of face-foreground and face-background.
4566 (tool-bar-add-item): Likewise, and handle unspecified colors.
4567
4568 * enriched.el (enriched-face-ans): Use face-attribute instead
4569 of face-foreground and face-background.
4570
4571 * faces.el (face-foreground, face-background, face-stipple):
4572 Return nil if attribute is unspecified, for backward compatibility.
4573
4574 * files.el (auto-mode-alist): Add an entry for antlr-mode.
4575
4576 * play/5x5.el: Remove version info.
4577
4578 * toolbar/tool-bar.el (tool-bar-mode): Doc fix.
4579
4580 * frame.el (blink-cursor-mode): Doc fix.
4581
4582 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
4583
4584 * antlr-mode.el: New commands to run ANTLR from within Emacs and
4585 to create Makefile rules.
4586 (antlr-tool-command): New user option.
4587 (antlr-ask-about-save): New user option.
4588 (antlr-makefile-specification): New user option.
4589 (antlr-file-formats-alist): New variable.
4590 (antlr-special-file-formats): New variable.
4591 (antlr-unknown-file-formats): New user option.
4592 (antlr-help-unknown-file-text): New variable.
4593 (antlr-help-rules-intro): New variable.
4594 (antlr-mode-map): Add [C-c C-r] for `antlr-run-tool'.
4595 (antlr-mode-menu): Add entries.
4596 (antlr-file-dependencies): New function.
4597 (antlr-directory-dependencies): New function.
4598 (antlr-superclasses-glibs): New function.
4599 (antlr-run-tool): New command.
4600 (antlr-makefile-insert-variable): New function.
4601 (antlr-insert-makefile-rules): New function.
4602 (antlr-show-makefile-rules): New command.
4603
4604 * antlr-mode.el: More Emacs/XEmacs stuff.
4605 (antlr-no-action-keywords): New constant with value nil.
4606 (antlr-font-lock-keywords-alist): Use it. Old value would break
4607 syntax highlighting in Emacs-21.0.
4608 (antlr-default-directory): Emacs/XEmacs dependend function.
4609 (antlr-read-shell-command): Ditto.
4610 (antlr-with-displaying-help-buffer): Ditto.
4611
4612 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
4613
4614 * antlr-mode.el: imenu, parsing and highlighting changes.
4615 (antlr-imenu-create-index-function): Don't create extra submenus
4616 for definitions in different grammar classes. It is not necessary
4617 for the menu and would make command `imenu' awkward to use.
4618 (antlr-skip-file-prelude): With ANTLR-2.7+, you can specify named
4619 header actions and more than one.
4620 (antlr-font-lock-tokendef-face): Changed color.
4621 (antlr-font-lock-tokenref-face): Changed color.
4622 (antlr-font-lock-additional-keywords): Also highlight lowercase.
4623 (antlr-mode-syntax-table): New variable.
4624 (antlr-mode): Populate and use it instead `java-mode-syntax-table'.
4625 (antlr-with-syntax-table): Don't copy syntax table.
4626
4627 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
4628
4629 * antlr-mode.el: Minor changes: language setting.
4630 (antlr-language-alist): The value for file option "language" can
4631 be both an identifier and a string.
4632 Reported by Rajesh Radhakrishnan <radhakrs@email.uc.edu>.
4633 (antlr-language-limit-n-regexp): Change accordingly.
4634
4635 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
4636
4637 * antlr-mode.el: Minor changes: tabs, hiding.
4638 (antlr-tab-offset-alist): Set `indent-tabs-mode' to nil instead t.
4639 (antlr-action-visibility): Also allow value nil to also hide the
4640 braces. Renamed from `antlr-tiny-action-length'.
4641 Suggested by Jay@aol.com.
4642 (antlr-hide-actions): Change accordingly. Hide line if completely
4643 hidden action is on a line of its own.
4644
4645 2000-11-29 Stefan Monnier <monnier@cs.yale.edu>
4646
4647 * subr.el (combine-run-hooks): Only run-hooks if there's a hook to run.
4648
4649 * sort.el (sort-columns): Don't concat strings with numbers.
4650
4651 2000-11-29 Dave Love <fx@gnu.org>
4652
4653 * cus-edit.el (face): Fix :format.
4654
4655 * mail/feedmail.el: Require smtpmail when compiling.
4656 (mail-do-fcc): Autoload.
4657 (feedmail) <defgroup>: Fix :link.
4658 (feedmail-nuke-body-in-fcc): Fix :type.
4659 (feedmail-send-it): Add autoload cookie.
4660
4661 2000-11-29 Stefan Monnier <monnier@cs.yale.edu>
4662
4663 * newcomment.el (comment-indent): Save excursion around call to
4664 comment-indent-function.
4665
4666 2000-11-29 Miles Bader <miles@gnu.org>
4667
4668 * subr.el (member-ignore-case): Return the tail of the list who's
4669 car matches, like `member', not the matching element itself.
4670
4671 2000-11-29 Kenichi Handa <handa@etl.go.jp>
4672
4673 * xml.el (xml-parse-tag): Fix finding opening tag. A tag name
4674 should not contain `\n'.
4675
4676 2000-11-28 Gerd Moellmann <gerd@gnu.org>
4677
4678 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
4679
4680 * hscroll.el: Add hints to `automatic-hscrolling' to doc strings.
4681
4682 * dired-aux.el (dired-do-create-files): Construct default file
4683 name for dired-mark-read-file-name so that when the user enters
4684 just RET, the target file will end up in the target directory.
4685
4686 * abbrev.el (prepare-abbrev-list-buffer): Get the value of
4687 local-abbrev-table before changing buffers because it might
4688 have a buffer-local binding.
4689
4690 2000-11-28 Miles Bader <miles@gnu.org>
4691
4692 * simple.el (delete-horizontal-space): Handle fields more generally.
4693
4694 2000-11-28 Gerd Moellmann <gerd@gnu.org>
4695
4696 * simple.el (delete-horizontal-space): Handle minibuffer prompt.
4697
4698 2000-11-28 Dave Love <fx@gnu.org>
4699
4700 * progmodes/ps-mode.el (ps-mode): Set comment-start and
4701 comment-start-skip locally.
4702
4703 * progmodes/fortran.el (fortran-mode): Don't set
4704 fortran-comment-line-start-skip. Set comment-start to
4705 fortran-comment-line-start.
4706 (fortran-fill-paragraph) <non-empty-comment>: Remove regexp group.
4707 (fortran-comment-line-start-skip): Simplify slightly.
4708
4709 2000-11-28 Gerd Moellmann <gerd@gnu.org>
4710
4711 * play/5x5.el: Remove RCS keyword.
4712
4713 * bs.el: Mistaken commit, undone 2000-11-30.
4714
4715 2000-11-28 Milan Zamazal <pdm@freesoft.cz>
4716
4717 * textmodes/tildify.el (tildify-string-alist):
4718 Add `plain-tex-mode' here.
4719
4720 2000-11-28 Colin Walters <walters@cis.ohio-state.edu>
4721
4722 * chistory.el (Command-history-setup): Remove extraneous `keymap'
4723 reference.
4724
4725 2000-11-28 Miles Bader <miles@gnu.org>
4726
4727 * cus-face.el (custom-face-attributes): Add post-filter function
4728 for :box. Make pre-filter function for :box handle all cases.
4729
4730 * wid-edit.el (widget-choose): Make sure pop-up window is large
4731 enough to display all the choices, as there's no way to scroll it.
4732
4733 2000-11-28 Kenichi Handa <handa@etl.go.jp>
4734
4735 * international/mule-conf.el: Make the coding system no-conversion
4736 safe for all characters.
4737
4738 2000-11-27 Dave Love <fx@gnu.org>
4739
4740 * net/ldap.el (ldap) <defgroup>: Add :version.
4741
4742 * tooltip.el (tooltip-use-echo-area): Doc fix.
4743
4744 * cus-start.el <minibuffer-prompt-properties>: Add version.
4745 <read-buffer-function>: Add.
4746
4747 * apropos.el (apropos-print): Add help-echo to active text.
4748
4749 * term/x-win.el (x-select-enable-clipboard): Customize (per lispref).
4750
4751 2000-11-27 Gerd Moellmann <gerd@gnu.org>
4752
4753 * mail/rmail.el (rmail-automatic-folder-directives): Add a custom
4754 type, group and version.
4755
4756 2000-11-27 Eli Zaretskii <eliz@is.elta.co.il>
4757
4758 * select.el (x-get-selection): Docstring fix.
4759
4760 2000-11-27 Dave Pearson <davep@hagbard.demon.co.uk>
4761
4762 * play/5x5.el (5x5-play-solution): Bind hinhibit-quit to t.
4763
4764 2000-11-27 Andrew Innes <andrewi@gnu.org>
4765
4766 * makefile.nt (.SUFFIXES): Add .SUFFIXES.
4767
4768 * makefile.w32-in (.SUFFIXES): Add .SUFFIXES.
4769
4770 2000-11-27 Miles Bader <miles@gnu.org>
4771
4772 * dired.el (dired-get-filename): Return filename verbatim if
4773 LOCALP is `verbatim'.
4774 * dired-aux.el (dired-add-entry): Call `dired-get-filename' with
4775 `verbatim' so that we don't inadvertently delete a non-existant
4776 directory name.
4777
4778 2000-11-27 Kenichi Handa <handa@etl.go.jp>
4779
4780 * international/characters.el: Specify cases and syntaxes for
4781 mule-unicode-0100-24ff.
4782
4783 2000-11-27 Gerd Moellmann <gerd@gnu.org>
4784
4785 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Handle case
4786 that foreground and/or background colors of the face `tool-bar'
4787 are unspecified.
4788
4789 2000-11-27 Miles Bader <miles@gnu.org>
4790
4791 * wid-edit.el (widget-field-buffer, widget-field-start)
4792 (widget-field-end): Handle widget field `pseudo-overlays'.
4793 (widget-field-value-delete): Delete WIDGET from `widget-field-new'
4794 if it's there instead of in `widget-field-list'.
4795
4796 * help.el (help-manyarg-func-alist): Correct entry for `vconcat'.
4797 (help-make-xrefs): Delete extraneous newlines at the end of the
4798 docstring.
4799
4800 2000-11-25 Jason Rumney <jasonr@gnu.org>
4801
4802 * startup.el (command-line): Call set-locale-environment after
4803 Window System init file is read, as it can result in a call to
4804 redraw-frame.
4805
4806 2000-11-25 Eli Zaretskii <eliz@is.elta.co.il>
4807
4808 * simple.el (shell-command): Mention the effect of the prefix
4809 argument in the doc string.
4810
4811 2000-11-25 Miles Bader <miles@gnu.org>
4812
4813 * cus-face.el (custom-face-attributes): Add "None" choice to :stipple.
4814
4815 * wid-edit.el (widget-field-value-delete): Don't try to delete
4816 overlay when it's the `pseudo-overlay' that exists at some points.
4817
4818 2000-11-24 Jason Rumney <jasonr@gnu.org>
4819
4820 * international/mule-cmds.el (locale-language-names): Add "jp" as
4821 a non-standard alternative for Japanese.
4822
4823 2000-11-24 Andre Spiegel <spiegel@gnu.org>
4824
4825 * vc-hooks.el: Require 'cl during compilation.
4826
4827 2000-11-24 Gerd Moellmann <gerd@gnu.org>
4828
4829 * faces.el (face-set-after-frame-default): Let face attributes
4830 specified for new frames override frame parameters.
4831
4832 * startup.el (command-line): Fix computation of the source file
4833 for user-init-file when user-init-file is a compiled file.
4834
4835 2000-11-24 Miles Bader <miles@gnu.org>
4836
4837 * cus-edit.el (custom-filter-face-spec, custom-pre-filter-face-spec)
4838 (custom-post-filter-face-spec): New functions.
4839 (custom-face-set, custom-face-value-create): Filter the face spec
4840 before and after customization.
4841 (custom-face-set): If VALUE specifies a null face, pass a
4842 non-null-but-otherwise-ignored face-spec instead to `face-spec-set'.
4843 * cus-face.el (custom-face-attributes): Remove SET and GET
4844 functions. Add some IN-FILTER and OUT-FILTER functions in the few
4845 cases they're needed.
4846
4847 * wid-edit.el (checkbox): Add a small `X' to the the :on-glyph, so
4848 that it's distinguishable from the :off-glyph on dark-background
4849 displays. Set its background color too.
4850
4851 * cus-start.el (all): Restore entry for `mode-line-inverse-video',
4852 so that people can easily turn it off.
4853
4854 2000-11-24 Michael Kifer <kifer@cs.sunysb.edu>
4855
4856 * ediff-diff.el: Moved variables around to have it compile under NT.
4857
4858 * ediff-help.el (ediff-use-long-help-message): Made it customizable.
4859
4860 * ediff-init.el (ediff-abbrev-jobname): Use capitalize.
4861
4862 * ediff-wind.el (ediff-skip-unsuitable-frames): Deleted the
4863 redundant skip-small-frames test.
4864
4865 * viper-cmd.el (viper-change-state-to-vi): Disable overwrite mode.
4866 (viper-downgrade-to-insert): Protect against errors in hooks.
4867
4868 * viper-init.el (viper-vi-state-hook,viper-insert-state-hook)
4869 (viper-replace-state-hook,viper-emacs-state-hook): Do cursor handling.
4870 (viper-restore-cursor-type,viper-set-insert-cursor-type):
4871 New functions.
4872
4873 * viper-util.el (viper-memq-char): Bug fixes.
4874
4875 * viper.el (viper-mode): Fix cursor handling.
4876
4877 2000-11-24 Kenichi Handa <handa@etl.go.jp>
4878
4879 * international/mule-diag.el (list-iso-charset-chars):
4880 For two-byte charset, fix the `while' condition.
4881 (list-non-iso-charset-chars): Fix the `while' condition.
4882
4883 2000-11-23 Stefan Monnier <monnier@cs.yale.edu>
4884
4885 * subr.el (add-hook, remove-hook): Don't call make-local-hook
4886 if the variable is make-variable-buffer-local.
4887
4888 * progmodes/ada-stmt.el (ada-template-map):
4889 Initialize and bind it to C-c t in ada-mode-map.
4890 (ada-stmt-mode-hook): New function extracted from old code.
4891 Only change the buffer-local side of skeleton-*.
4892 (ada-mode-hook): Use it.
4893
4894 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
4895
4896 * iswitchb.el (iswitchb-minibuf-depth): New variable.
4897 (iswitchb-read-buffer): Record in iswitchb-minibuf-depth the value
4898 we expect to be returned by minibuffer-depth once we prompt the
4899 user in the minibuffer.
4900 (iswitchb-entryfn-p): If minibuffer-depth returns the same value
4901 as recorded in iswitchb-minibuf-depth, return non-nil.
4902
4903 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
4904
4905 * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode)
4906 (hscroll-window-maybe): Docstring fix.
4907
4908 2000-11-23 Dave Love <fx@gnu.org>
4909
4910 * rect.el (string-rectangle): Don't test delete-selection-mode.
4911
4912 2000-11-23 Gerd Moellmann <gerd@gnu.org>
4913
4914 * avoid.el (mouse-avoidance-too-close-p): Return nil if mouse
4915 is in the tool bar.
4916
4917 * dired-aux.el (dired-add-entry): Don't call dired-get-filename
4918 with `no-dir'; we want the directory part to be able to remove it.
4919
4920 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
4921
4922 * textmodes/outline.el (outline-flag-region):
4923 Don't bind inhibit-read-only since we don't modify the buffer.
4924 (outline-isearch-open-invisible): Don't jump to overlay-start
4925 since we're trying to unhide text around point.
4926 (outline-discard-overlays): Use dolist.
4927
4928 * autoinsert.el (auto-insert-alist): Add `provide' to elisp skeleton.
4929
4930 2000-11-22 Gerd Moellmann <gerd@gnu.org>
4931
4932 * mail/rmail.el (rmail-confirm-expunge): Default to y-or-n-p.
4933
4934 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
4935
4936 * textmodes/tex-mode.el (tex-font-lock-keywords-1):
4937 Fix ARG regexp to skip quoted braces.
4938 (tex-font-lock-keywords-2): Fix ARG regexp to skip quoted braces.
4939 Remove `bf' and `it' from `bold' and `italic' (they were wrong and
4940 are (correctly) handled separately).
4941 Remove `caption' and `footnote' from `citations': they contain text.
4942 Don't highlight `textmd', `texttt' and `textrm' with bold-italic.
4943 (latex-skeleton-end-hook): New function.
4944 (latex-mode): Use it.
4945 (tex-start-tex-marker): Remove.
4946 (tex-send-tex-command): Don't set tex-start-tex-marker.
4947 (tex-error-parse-syntax-table): New var.
4948 (tex-compilation-parse-errors): Use it.
4949 Ignore tex-start-tex-marker. Don't bother with marker-position.
4950 (tex-validate-buffer): Don't bother with marker-position.
4951
4952 * textmodes/flyspell.el (flyspell-prog-text-faces): New var.
4953 (flyspell-generic-progmode-verify): Use it.
4954
4955 2000-11-22 Sam Steingold <sds@gnu.org>
4956
4957 * simple.el (delete-trailing-whitespace): New interactive function.
4958
4959 * progmodes/ada-mode.el (ada-mode): Use it instead of
4960 `ada-remove-trailing-spaces'.
4961 (ada-remove-trailing-spaces): Removed.
4962
4963 * textmodes/two-column.el (2C-merge): Recommend it in the doc.
4964
4965 * textmodes/picture.el (picture-clean): Removed.
4966 (picture-mode-exit): Call it instead of `picture-clean'.
4967
4968 2000-11-22 Gerd Moellmann <gerd@gnu.org>
4969
4970 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
4971
4972 * hi-lock.el (hi-lock-refontify): Don't call non-existent
4973 jit-lock-fontify-buffer; it should anyway be unneccessary to
4974 do anything special when jit-lock is active.
4975 (hi-yellow, hi-pink, hi-green, hi-blue): Fix defface specs.
4976
4977 2000-11-22 Dave Love <fx@gnu.org>
4978
4979 * calendar/todo-mode.el (todo-top-priorities): Use
4980 todo-tmp-buffer-name. From Milan Zamazal <Milan.Zamazal@qbizm.com>.
4981
4982 * language/chinese.el, language/cyrillic.el:
4983 * language/devanagari.el, language/ethiopic.el, language/greek.el:
4984 * language/hebrew.el, language/indian.el, language/japanese.el:
4985 * language/korean.el, language/lao.el, language/misc-lang.el:
4986 * language/thai.el, language/tibetan.el, language/vietnamese.el:
4987 Use provide.
4988
4989 * cus-edit.el (custom-buffer-create-internal): Save some consing.
4990 (custom-variable-set): Improve validation error mesage.
4991
4992 * rect.el (string-rectangle): Revert last change.
4993 (string-rectangle-line): New arg DELETE.
4994 (string-rectangle): Check delete-selection-mode.
4995
4996 * emacs-lisp/edebug.el (edebug-version)
4997 (edebug-maintainer-address): Deleted.
4998 (edebug-submit-bug-report): Just alias to report-emacs-bug.
4999 (edebug-read-function): Account for other `'#' read forms.
5000 (edebug-mode-menus): Make some items toggles.
5001 (edebug-outside-unread-command-event, unread-command-event):
5002 Remove these to avoid warnings.
5003
5004 2000-11-22 David Ponce <david@dponce.com>
5005
5006 * recentf.el (recentf-menu-items-for-commands)
5007 (recentf-make-menu-items, recentf-make-menu-item)
5008 (recentf-filter-changer): Added :help and :active menu-item properties.
5009
5010 (recentf-build-dir-rules, recentf-dump-variable)
5011 (recentf-edit-list, recentf-open-files-item)
5012 (recentf-open-files): Replaced unnecessary `mapcar' with new
5013 built-in `mapc'.
5014
5015 2000-11-23 Miles Bader <miles@gnu.org>
5016
5017 * faces.el (menu): Make inverse-video on ttys too.
5018
5019 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
5020
5021 * simple.el (comment-line-break-function): Use the new name
5022 indent-new-comment-line -> comment-indent-new-line.
5023 (clone-indirect-buffer): Don't ignore NORECORD.
5024 (next-completion): Properly handle the case where items are adjacent.
5025
5026 * mouse.el (popup-menu): Stupid typo.
5027
5028 2000-11-22 Gerd Moellmann <gerd@gnu.org>
5029
5030 * emacs-lisp/authors.el: Remove autoload cookies, add author,
5031 maintainer, keywords tags.
5032
5033 * rect.el (replace-rectangle): Don't call string-rectangle-line
5034 with too many arguments.
5035
5036 2000-11-22 Andre Spiegel <spiegel@gnu.org>
5037
5038 * ediff-util.el (ediff-file-checked-out-p)
5039 (ediff-file-checked-in-p): Call vc-state instead of
5040 vc-locking-user, which no longer exists.
5041
5042 * emulation/viper-util.el (viper-file-checked-in-p): Same as above.
5043
5044 2000-11-22 Dave Love <fx@gnu.org>
5045
5046 * md5.el (md5): Provide.
5047 (md5): Fix error call.
5048
5049 2000-11-22 Miles Bader <miles@gnu.org>
5050
5051 * textmodes/refill.el (refill-adjust-ignorable-overlay)
5052 (refill-fill-paragraph-at): Remove debugging code.
5053
5054 * calendar/calendar.el (generate-calendar-window): When we don't
5055 call `fit-window-to-buffer', make sure the top line is fully visible.
5056
5057 * image-file.el (insert-image-file): Don't make `read-only'
5058 property rear-nonsticky.
5059
5060 * isearch.el (isearch-original-minibuffer-message-timeout): New var.
5061 (isearch-mode): Set `minibuffer-message-timeout' to nil, after
5062 stashing away its original value.
5063 (isearch-edit-string): Temporarily restore `minibuffer-message-timeout'
5064 in the recursive edit.
5065 Bind `isearch-original-minibuffer-message-timeout' to protect it.
5066 (isearch-done): Restore `minibuffer-message-timeout'.
5067
5068 * cus-start.el: Remove entry for `mode-line-inverse-video'.
5069
5070 2000-11-21 Stefan Monnier <monnier@cs.yale.edu>
5071
5072 * progmodes/ada-mode.el (ada-mode): `set '' -> `setq'.
5073
5074 * find-lisp.el (find-lisp-find-files-internal):
5075 Use dolist, when and file-name-as-directory.
5076
5077 * emacs-lisp/edebug.el (edebug-form-spec prop): Use dolist.
5078 (define-derived-mode, define-minor-mode): Add specs.
5079
5080 * window.el: General comment and spacing fixes.
5081 (save-selected-window): Use backquotes.
5082 (window-safely-shrinkable-p): New function.
5083 (shrink-window-if-larger-than-buffer): Use it.
5084
5085 * subr.el (make-local-hook): Docstring fix.
5086
5087 * shell.el (shell-mode): Use define-derived-mode.
5088
5089 * newcomment.el (comment-indent): Insert comment before calling
5090 comment-indent-function. Don't insert in column 0.
5091 (comment-dwim): Indent before inserting comment.
5092
5093 * isearch.el (isearch-mode-map): Fix docstring. Init in defvar.
5094 (minibuffer-local-isearch-map): Init in defvar. Use inheritance.
5095 (isearch-clean-overlays, isearch-range-invisible, isearch-unread):
5096 Use mapc rather than map.
5097
5098 * files.el (find-buffer-visiting): Compare all attributes before
5099 declaring two files identical (rather than just their inode-no).
5100 (auto-mode-alist): Use \' rather than $.
5101
5102 * which-func.el: Update maintainer line.
5103
5104 * pcvs.el (uniquify-buffer-file-name): Remove advice.
5105 * uniquify.el (uniquify-list-buffers-directory-modes): New var.
5106 (uniquify-buffer-file-name): Use it.
5107
5108 2000-11-22 Miles Bader <miles@gnu.org>
5109
5110 * cus-start.el: Add entry for `minibuffer-prompt-properties'.
5111 * simple.el (minibuffer-avoid-prompt): New function.
5112
5113 2000-11-21 Gerd Moellmann <gerd@gnu.org>
5114
5115 * Makefile.in (.SUFFIXES): Add .SUFFIXES.
5116
5117 2000-11-21 Miles Bader <miles@gnu.org>
5118
5119 * emacs-lisp/advice.el (ad-special-forms): Correct the conditional
5120 inclusion of `track-mouse'.
5121
5122 * textmodes/refill.el (refill-ignorable-overlay): New variable.
5123 (refill-adjust-ignorable-overlay): New function.
5124 (refill-fill-paragraph-at): Use `refill-ignorable-overlay' to fill
5125 only the paragraph's tail if possible.
5126 Update `refill-ignorable-overlay'.
5127 (refill-mode): Initialize/cleanup `refill-ignorable-overlay'.
5128
5129 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
5130 point inside the fill-prefix.
5131
5132 * textmodes/refill.el (refill-post-command-function): Don't reset
5133 refill-doit in the case where a self-insertion command doesn't
5134 case a refill. Use `refill-fill-paragraph-at', getting position
5135 from `refill-doit'.
5136 (refill-after-change-function): Set `refill-doit' to END.
5137 (refill-fill-paragraph-at): New function, mostly from old
5138 refill-fill-paragraph.
5139 (refill-fill-paragraph): Use `refill-fill-paragraph-at'.
5140 (refill-pre-command-function): New function.
5141 (refill-mode): Add it to `pre-command-hook'.
5142
5143 2000-11-20 Gerd Moellmann <gerd@gnu.org>
5144
5145 * textmodes/artist.el (artist-mode): Fix autoload cookie.
5146
5147 * font-lock.el (java-keywords): Add MATCH-HIGHLIGHT part for
5148 javadoc tags.
5149
5150 2000-11-20 Andre Spiegel <spiegel@gnu.org>
5151
5152 * vc.el, vc-hooks.el: Undo prev change (moved functions back to
5153 vc.el).
5154
5155 * vc-rcs.el (vc-rcs-state): Before calling vc-workfile-unchanged-p,
5156 require vc.
5157
5158 * vc-cvs.el (vc-cvs-checkout): Fix bug that broke C-x v ~-style
5159 checkouts.
5160
5161 2000-11-20 Dave Love <fx@gnu.org>
5162
5163 * Makefile.in (DONTCOMPILE): Omit bindings.el.
5164
5165 2000-11-20 Eli Barzilay <eli@www.barzilay.org>
5166
5167 * calculator.el (calculator-paste): Use `if' instead of `and'
5168 and `or'.
5169 (calculator-help): Don't use electric-describe-mode for XEmacs.
5170
5171 2000-11-19 Gerd Moellmann <gerd@gnu.org>
5172
5173 * info.el (info-menu-5): Doc fix.
5174
5175 * textmodes/artist.el: New file.
5176
5177 2000-11-19 Andre Spiegel <spiegel@gnu.org>
5178
5179 * vc-rcs.el (vc-rcs-state): Call vc-workfile-unchanged-p only here,
5180 and differentiate according to checkout model.
5181 (vc-rcs-fetch-master-state): Don't call vc-workfile-unchanged-p,
5182 since this function is only concerned with master state.
5183
5184 * vc-hooks.el (vc-workfile-unchanged-p)
5185 (vc-default-workfile-unchanged-p): Moved here from vc.el.
5186
5187 * vc.el (vc-workfile-unchanged-p)
5188 (vc-default-workfile-unchanged-p): See above.
5189
5190 2000-11-19 Miles Bader <miles@gnu.org>
5191
5192 * image-file.el (insert-image-file): Make `intangible' and
5193 `read-only' properties rear-nonsticky too.
5194
5195 2000-11-18 Gerd Moellmann <gerd@gnu.org>
5196
5197 * ps-print.el: Update copyright notice.
5198
5199 * tooltip.el (tooltip-x-offset, tooltip-y-offset): New user-options.
5200 (tooltip-show): Use the offsets.
5201
5202 * bindings.el (mode-line-modified): Fix a typo.
5203 (mode-line-toggle-modified, mode-line-widen)
5204 (mode-line-abbrev-mode, mode-line-auto-fill-mode): Fix typos.
5205
5206 2000-11-17 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5207
5208 * ps-print.el (toplevel): Test for find-coding-system being
5209 fboundp before calling ps-x-find-coding-system.
5210
5211 2000-11-16 Stefan Monnier <monnier@cs.yale.edu>
5212
5213 * vc.el (vc-version-diff): Bind inhibit-read-only when inserting text.
5214 (vc-version-backup-file): Docstring fix.
5215
5216 2000-11-16 Gerd Moellmann <gerd@gnu.org>
5217
5218 * files.el (basic-save-buffer): Don't add a newline if
5219 find-file-literally is non-nil.
5220 (find-file-literally): Extend doc string.
5221
5222 * sort.el (sort-columns): If sort-fold-case it non-nil, invoke
5223 sort(1) with the `-f' argument.
5224
5225 2000-11-16 Andre Spiegel <spiegel@gnu.org>
5226
5227 * vc.el: Updated backend documentation.
5228 (vc-default-check-headers): New function.
5229
5230 * vc-{cvs,rcs,sccs}.el: Functions reordered.
5231
5232 * vc.el (vc-revert-buffer): Ask for confirmation if file seems
5233 up-to-date.
5234 (vc-do-command): In the asynchronous case, output messages only if
5235 the minibuffer is not active.
5236
5237 * vc-cvs.el (vc-cvs-revert): Use `cvs unedit' only if
5238 `vc-cvs-use-edit' is on.
5239 (vc-cvs-checkout): When this is used for reverting the workfile,
5240 make a backup of the original contents and revert to that in case
5241 of error.
5242 (vc-cvs-print-log, vc-cvs-diff): Use asynchronous mode only for
5243 remote repositories.
5244
5245 * vc.el (vc-annotate): Changed handling of prefix arg; now asks
5246 for both version and ratio in the minibuffer.
5247
5248 * vc-cvs.el (vc-cvs-annotate-command): New optional arg VERSION.
5249 Use vc-do-command to perform the annotation, not call-process.
5250
5251 2000-11-16 Kenichi Handa <handa@etl.go.jp>
5252
5253 * international/quail.el (quail-start-translation): Don't call
5254 `message' before reading key sequence.
5255
5256 2000-11-16 Miles Bader <miles@lsi.nec.co.jp>
5257
5258 * net/ange-ftp.el (ange-ftp-file-modtime): Don't use `caddr'.
5259
5260 2000-11-16 Kenichi Handa <handa@etl.go.jp>
5261
5262 * window.el (fit-window-to-buffer): Be sure to acquire at least
5263 one text line even if the buffer is empty.
5264
5265 2000-11-16 Gerd Moellmann <gerd@gnu.org>
5266
5267 * net/ange-ftp.el (ange-ftp-file-writable-p)
5268 (ange-ftp-file-readable-p, ange-ftp-file-executable-p):
5269 Bind ange-ftp-process-verbose to nil.
5270
5271 2000-11-15 Dave Love <fx@gnu.org>
5272
5273 * wid-edit.el (widget-specify-field, widget-specify-button):
5274 If :help-echo is a function, set help-echo of overlay to
5275 widget-mouse-help.
5276 (widget-mouse-help): New function.
5277 (widget-echo-help): Rewritten for :help-echo functions only taking
5278 a widget arg.
5279
5280 * net/eudc-bob.el (eudc-bob-can-display-inline-images):
5281 Use display-graphic-p.
5282 (eudc-bob-display-jpeg) <!eudc-xemacs-p>: Test create-image bound
5283 and that JPEG is available.
5284 (eudc-bob-toggle-inline-display): Avoid non-existent `imagep'.
5285
5286 * international/mule-cmds.el (locale-charset-language-names):
5287 Match @euro.
5288
5289 2000-11-15 Gerd Moellmann <gerd@gnu.org>
5290
5291 * faces.el (face-set-after-frame-default):
5292 If `inhibit-default-face-x-resources' is bound, don't intialize the
5293 default face from X resources.
5294
5295 2000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
5296
5297 * Makefile.in (custom-deps, finder-data, autoloads, recompile):
5298 Don't set EMACSLOADPATH.
5299
5300 2000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
5301
5302 * textmodes/texinfo.el (texinfo-insert-@uref): Renamed from
5303 texinfo-insert-@url.
5304 (texinfo-insert-@url): A defalias for texinfo-insert-@uref.
5305 (texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref.
5306
5307 2000-11-14 Stefan Monnier <monnier@cs.yale.edu>
5308
5309 * emacs-lisp/checkdoc.el (checkdoc-minor-mode) <defvar>: Remove.
5310 (checkdoc-minor-mode-map): New map, replaces checkdoc-minor-keymap.
5311 (checkdoc-minor-keymap): Backward compatibility.
5312 (checkdoc-minor-menu): Don't bother checking checkdoc-minor-keymap.
5313 (checkdoc-minor-mode) <defun>: Use easy-mmode-define-minor-mode.
5314 (checkdoc-this-string-valid-engine): Be a bit more strict
5315 to avoid matching substrings of `...' quoted vars/funs.
5316 (checkdoc-defun-info): Only look for `interactive' if alone.
5317 (debug-ignored-errors): Add "arg doesn't appear in docstring".
5318
5319 * progmodes/compile.el (grep): `tag-default' can be nil.
5320
5321 * newcomment.el (comment-indent): Paren typo.
5322
5323 2000-11-14 Dave Love <fx@gnu.org>
5324
5325 * calculator.el: New maintainer version.
5326
5327 * diff-mode.el (diff-imenu-generic-expression): Modify unidiff pattern.
5328
5329 * cmuscheme.el: Doc fixes.
5330 (cmuscheme) <defgroup>: Use `scheme' as parent.
5331 (cmuscheme-program-name): Remove. Change uses to scheme-program-name.
5332
5333 * xscheme.el (scheme-program-name): Don't define here.
5334
5335 * progmodes/scheme.el (scheme-program-name): New variable
5336 (originally in cmuscheme).
5337
5338 2000-11-14 Miles Bader <miles@gnu.org>
5339
5340 * window.el (fit-window-to-buffer): Handle windows without mode-lines.
5341 Handle header-lines. Don't loop forever if we can't enlarge the
5342 window anymore. Simplify a bit.
5343
5344 2000-11-14 Kenichi Handa <handa@etl.go.jp>
5345
5346 * window.el (fit-window-to-buffer): Don't check
5347 window-text-height. Assure that the last line is fully visible.
5348
5349 * international/quail.el (quail-show-guidance-buf):
5350 Call fit-window-to-buffer to assure the enough height of the guidance
5351 buffer.
5352 (quail-update-guidance): Avoid making the guidance buffer shorter.
5353
5354 2000-11-14 Stefan Monnier <monnier@cs.yale.edu>
5355
5356 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Use `keep'
5357 rather than `prepend' and add an interesting comment.
5358 (tex-math-face, tex-font-lock-syntactic-face-function):
5359 New face and function to use it.
5360 (tex-define-common-keys, tex-mode-map): Use menu-item rather
5361 than `menu-enable' symbol property.
5362 (tex-mode-map): Bind {, (, [ and $ to skeleton-pair-insert-maybe.
5363 (tex-mode): Add some latex-mode commands for auto-selection.
5364 Use tex-font-lock-syntactic-face-function.
5365 (tex-insert-quote): Simplify.
5366 (tex-shell): New mode.
5367 (tex-start-shell): Use it.
5368 (tex-shell-proc, tex-shell-buf): New functions.
5369 (tex-send-command): Use it.
5370 (tex-main-file): Fix the meaning of the new arg REALFILE.
5371 (tex-send-tex-command): New function split from `tex-start-tex'.
5372 Set compilation-last-buffer and compilation-parsing-end.
5373
5374 * newcomment.el (comment-indent-default): Stick \s<\s< to the left
5375 when it follows non-comment text on the line.
5376
5377 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5378 Set font-lock-defaults.
5379 (lisp-mode-shared-map): Init inside the defvar.
5380 (emacs-lisp-mode, lisp-mode, lisp-interaction-mode):
5381 Use define-derived-mode.
5382
5383 2000-11-14 Miles Bader <miles@lsi.nec.co.jp>
5384
5385 * faces.el (header-line): Use `:box nil' for color/gs displays too.
5386
5387 2000-11-14 Gerd Moellmann <gerd@gnu.org>
5388
5389 * emacs-lisp/byte-opt.el (byte-compile-unfold-lambda):
5390 Don't recursively optimize body because that can lead to infinite
5391 recursion; see comment there.
5392
5393 2000-11-13 Eli Zaretskii <eliz@is.elta.co.il>
5394
5395 * faces.el (face-spec-set-match-display): Revert the change from
5396 2000-10-24. Add a FIXME for after v21.1.
5397
5398 2000-11-13 Miles Bader <miles@gnu.org>
5399
5400 * textmodes/fill.el (skip-line-prefix): New function.
5401 (fill-region-as-paragraph, fill-region): Return the fill-prefix.
5402 (fill-paragraph): Don't leave point inside the fill-prefix.
5403 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
5404 point inside the fill-prefix.
5405
5406 2000-11-13 Miles Bader <miles@lsi.nec.co.jp>
5407
5408 * calendar/calendar.el (generate-calendar-window):
5409 Use `fit-window-to-buffer'.
5410
5411 2000-11-12 Stefan Monnier <monnier@cs.yale.edu>
5412
5413 * gud.el (gud-minor-mode): New var.
5414 (gud-symbol, gud-val): New functions.
5415 (gud-find-file): Copy gud-minor-mode to the new buffer.
5416 (gud-menu-map): Include entries for commands that are not always
5417 available, using :enable to (de)activate them.
5418 (gud-minor-mode-map): New map. Add it to minor-mode-map-alist.
5419 (gud-mode-map): New map.
5420 (gud-gdb-find-file, gud-sdb-find-file, gud-dbx-find-file)
5421 (gud-xdb-find-file, gud-perldb-find-file, gud-pdb-find-file):
5422 Don't set up gud's menu (it's done by the minor-mode).
5423 (gud-minibuffer-local-map): New.
5424 Replace gdb-minibuffer-local-map and pdb-minibuffer-local-map.
5425 (gud-query-cmdline): New function.
5426 (gdb, sdb, dbx, xdb, perldb, pdb, jdb): Use it. Set gud-minor-mode.
5427 (gud-mode): Use define-derived-mode.
5428 Don't set up gud's menu (it's done by the minor-mode).
5429 (gud-chop-words): Remove.
5430 (gud-common-init): Use split-string instead.
5431 (gud-new-keymap, gud-make-debug-menu): Eradicate.
5432
5433 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
5434 Add keyword arg :name.
5435
5436 * diff-mode.el (diff-mode-menu): Add entry for applying hunk.
5437 (diff-count-matches, diff-split-hunk): New functions.
5438 (diff-mode-map): Bind C-c C-s to diff-split-hunk.
5439
5440 * pcvs-info.el (cvs-fi-conflict-face): New var.
5441
5442 * progmodes/sh-script.el (sh-mode-syntax-table) <defvar>:
5443 Make it into a simple syntax-table, shared among all submodes.
5444 (sh-heredoc-face): Re-introduce.
5445 (sh-font-lock-syntactic-face-function): New function.
5446 (sh-mode): Use it. Also use define-derived-mode.
5447 Remove old bogus setting of indent-region-function.
5448 (sh-set-shell): Don't set the syntax-table any more.
5449 (sh-mode-syntax-table) <defun>: Remove.
5450
5451 2000-11-12 Miles Bader <miles@gnu.org>
5452
5453 * textmodes/flyspell.el (flyspell-mode-on): Only output welcome
5454 message if interactive.
5455
5456 2000-11-12 Dave Love <fx@gnu.org>
5457
5458 * mail/feedmail.el: Fix header,
5459 (feedmail) <defgroup>: Add :link.
5460
5461 * view.el: Use local-map property, not keymap on mode-line string.
5462
5463 * scroll-all.el (scroll-all-mode): Customize variable.
5464 Add autoload cookie to function.
5465
5466 * lazy-lock.el: Remove compatibility code.
5467
5468 * finder.el (finder-known-keywords): Add `files', remove `vms'.
5469 (finder-help-echo): New variable.
5470 (finder-mouse-face-on-line): Add help-echo stuff.
5471 (finder-list-keywords, finder-list-matches): Use mapc.
5472
5473 * faces.el (face-font-registry-alternatives): Add :version.
5474
5475 * progmodes/etags.el (visit-tags-table-buffer): Beware of `t' in
5476 tags-table-list.
5477
5478 * net/browse-url.el (browse-url-browser-function): Update :version.
5479
5480 * mail/sendmail.el (mail-font-lock-keywords): Use [:alpha:], not a-z.
5481 (mail-mode): Use [:alnum:] in some regexps.
5482
5483 2000-11-10 Dave Love <fx@gnu.org>
5484
5485 * ediff.el (ediff-regions-internal, ediff-documentation):
5486 * ediff-vers.el (rcs-ediff-view-revision): Put temp buffer into
5487 fundamental mode.
5488
5489 * ediff-util.el (ediff-status-info, ediff-debug-info): Put temp
5490 buffer into fundamental mode.
5491 (ediff-set-difference): Use copy-sequence if available.
5492
5493 * ediff-ptch.el (ediff-dispatch-file-patching-job):
5494 Check ediff-patch-map non-nil.
5495 (ediff-fixup-patch-map, ediff-fixup-patch-map)
5496 (ediff-fixup-patch-map, ediff-patch-file-internal): Put temp
5497 buffer into fundamental mode.
5498
5499 * ediff-merg.el (state-or-merge): Defvar when compiling.
5500
5501 2000-11-10 Jason Rumney <jasonr@gnu.org>
5502
5503 * w32-fns.el (w32-add-charset-info): New function.
5504 (w32-charset-info-alist): Use it.
5505
5506 2000-11-10 Gerd Moellmann <gerd@gnu.org>
5507
5508 * faces.el (face-font-registry-alternatives): New user-option.
5509
5510 2000-11-10 Stefan Monnier <monnier@cs.yale.edu>
5511
5512 * textmodes/texinfo.el (texinfo-block-default): New var.
5513 (texinfo-insert-block): Use it. Insert a newline if needed.
5514
5515 * textmodes/fill.el (fill-indent-according-to-mode): New var.
5516 (fill-region-as-paragraph): Use it.
5517
5518 * textmodes/tex-mode.el (standard-latex-block-names): Add "math".
5519 (latex-mode): Tweak tex-*-(head|trail)er regexps.
5520 Tweak paragraph regexps to allow a leading [ \t]*.
5521 (tex-latex-block): Insert a newline if necessary.
5522 (latex-insert-item): Only insert a newline if necessary.
5523 (tex-guess-main-file): New function.
5524 (tex-main-file): Use it. Add arg `realfile'. Trim `.tex'.
5525 Set tex-main-file if TeX-master is provided.
5526 (tex-latex-indent-syntax-table): Map ( and ) to punctuation.
5527
5528 2000-11-10 Gerd Moellmann <gerd@gnu.org>
5529
5530 * startup.el (command-line): Set the default tooltip-mode
5531 to t for graphical displays which implement x-show-tip.
5532
5533 * tooltip.el (tooltip-mode): Add a comment about startup.el
5534 setting the default value of this user-option.
5535
5536 2000-11-09 Stefan Monnier <monnier@cs.yale.edu>
5537
5538 * font-lock.el (font-lock-*-face) <defvar>: Move.
5539 (font-lock-defaults-alist): Mark obsolete.
5540 (font-lock-mode, font-lock-mode-hook) <defvar>: Remove.
5541 (font-lock-mode): Use define-minor-mode.
5542 (font-lock-support-mode): Tweak type to default to jit-lock-mode.
5543 (font-lock-turn-off-thing-lock): Be more explicit.
5544 (font-lock-apply-syntactic-highlight): Use string-to-syntax after eval.
5545 (font-lock-syntactic-face-function): New var.
5546 (font-lock-fontify-syntactically-region): Use it.
5547 (font-lock-doc-face): New.
5548
5549 * pcvs.el (cvs-enabledp): Ignore errors.
5550 (cvs-commit-filelist): Never query.
5551 (cvs-mode-insert): Always add a terminating / in the initial prompt.
5552 (cvs-mode-diff-backup): Use cvs-partition rather than delete-if-not.
5553 (cvs-do-removal): Use cvs-partition rather than delete-if.
5554 Use cvs-insert-strings, cvs-pop-to-buffer-same-frame and
5555 cvs-bury-buffer.
5556
5557 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
5558 Allow `next' to jump to after the end of the last match.
5559
5560 2000-11-09 Gerd Moellmann <gerd@gnu.org>
5561
5562 * simple.el (byte-compiling-files-p): New function.
5563
5564 * textmodes/ispell.el (toplevel): Use byte-compiling-files-p
5565 if it is there.
5566
5567 * emacs-lisp/bytecomp.el (byte-compile-current-file): Bind it to
5568 nil again.
5569
5570 * textmodes/ispell.el (ispell-library-path): Don't call
5571 check-ispell-version when byte-compiling because that starts
5572 an ispell process, and ispell might not be installed.
5573 (toplevel): Don't set up a menu when byte-compiling.
5574
5575 * emacs-lisp/bytecomp.el (byte-compile-current-file): Don't bind
5576 it, so that a boundp test can be used to determine if we're
5577 currently byte-compiling.
5578
5579 2000-11-09 Dave Love <fx@gnu.org>
5580
5581 * pcvs.el (uniquify-buffer-file-name): Wrap advice in eval-after-load.
5582
5583 2000-11-09 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5584
5585 * ps-print.el: Patch for variable initialization when spooling.
5586 Doc fix.
5587 (ps-output-list): Fun eliminated.
5588 (ps-begin-file, ps-begin-job): Code fix.
5589
5590 2000-11-08 Dave Love <fx@gnu.org>
5591
5592 * ediff-wind.el (ediff-control-frame-parameters): Zero tool-bar-lines.
5593
5594 2000-11-08 Gerd Moellmann <gerd@gnu.org>
5595
5596 * simple.el (shell-command, display-message-or-buffer)
5597 (shell-command-on-region): Mention resize-mini-windows in the doc
5598 string.
5599 (display-message-or-buffer): Take the value of resize-mini-windows
5600 into account.
5601
5602 2000-11-07 Gerd Moellmann <gerd@gnu.org>
5603
5604 * macros.el (insert-kbd-macro): Print semi-colons as `?\;'.
5605
5606 * dired.el (dired-between-files): Add `^. find' as an alternative
5607 to the regular expression, for find-dired.
5608
5609 2000-11-06 Stefan Monnier <monnier@cs.yale.edu>
5610
5611 * textmodes/texnfo-upd.el: Require texinfo.
5612 (defmacro, defgroup): Remove.
5613 (texinfo-section-to-generic-alist): Remove.
5614 Use texinfo-section-list instead (i.e. level is changed string->int).
5615 (texinfo-filter): New function.
5616 (texinfo-chapter-level-regexp, texinfo-subsubsection-level-regexp)
5617 (texinfo-subsection-level-regexp, texinfo-section-level-regexp):
5618 Use it. And use regexp-opt.
5619 (texinfo-find-higher-level-node, texinfo-hierarchic-level)
5620 (texinfo-update-menu-region-beginning)
5621 (texinfo-update-menu-higher-regexps, texinfo-update-menu-lower-regexps)
5622 (texinfo-update-the-node, texinfo-sequentially-update-the-node)
5623 (texinfo-update-menu-same-level-regexps): Update.
5624 (texinfo-update-node, texinfo-every-node-update)
5625 (texinfo-sequential-node-update): Remove autoload cookie.
5626
5627 * textmodes/texinfo.el (texinfo-section-list): Change majorheading.
5628 (texinfo-font-lock-syntactic-keywords): Use syntax-strings.
5629 (texinfo-chapter-level-regexp): Remove.
5630 (texinfo-mode): Hard code texinfo-chapter-level-regexp.
5631
5632 2000-11-06 Dave Love <fx@gnu.org>
5633
5634 * autoinsert.el (auto-insert-alist) <latex-mode>: Use \documentclass.
5635
5636 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
5637 Match defun*.
5638
5639 2000-11-06 Kenichi Handa <handa@etl.go.jp>
5640
5641 * composite.el (composition-function-table): Variable declaration
5642 moved to src/composite.c.
5643 (compose-chars-after): New optional arg object.
5644
5645 2000-11-06 Gerd Moellmann <gerd@gnu.org>
5646
5647 * bindings.el (mode-line-toggle-read-only)
5648 (mode-line-toggle-modified, mode-line-widen)
5649 (mode-line-abbrev-mode, mode-line-auto-fill-mode): New functions.
5650 (make-mode-line-mouse2-map): Rewritten.
5651 (mode-line-modified, mode-line-format, minor-mode-alist): Use new
5652 functions so that C-h k can show something with a doc string.
5653
5654 * startup.el (fancy-splash-delay): Set to 10 seconds.
5655 (fancy-splash-max-time): New user-option.
5656 (fancy-splash-stop-time): New variable.
5657 (fancy-splash-screens): Set it. Catch `stop-splashing'.
5658 (fancy-splash-screens-1): Throw `stop-splashing' when current
5659 time is greater than fancy-splash-stop-time.
5660
5661 2000-11-06 Stefan Monnier <monnier@cs.yale.edu>
5662
5663 * vc-hooks.el (vc-insert-file): Don't assume byte==char.
5664
5665 * pcvs.el (cvs-mode-marked): New arg `noquery'.
5666 Prompt user for a file rather than raising an error.
5667 (cvs-enabledp): Fix call to cvs-mode-marked.
5668 (cvs-insert-file): New function (extracted from cvs-mode-insert).
5669 (cvs-mode-insert): Use it. Change the init prompt' value.
5670 (cvs-mode-tree): Use cvs-status-cvstrees instead of cvs-status-trees.
5671
5672 * emacs-lisp/ewoc.el (ewoc-goto-prev, ewoc-goto-next):
5673 Don't pass default arg to ewoc-locate.
5674 (ewoc-collect): Return result in the right order.
5675
5676 * log-edit.el (log-edit-show-files): Use cvs-insert-strings.
5677
5678 * cvs-status.el (cvs-tree-merge): Use cvs-butlast (avoid CL).
5679 (cvs-status-get-tags): Fix regexp.
5680 (cvs-status-trees, cvs-status-cvstrees):
5681 Combine after change hooks and don't sit-for.
5682 (cvs-tree-use-jisx0208): Rename from cvs-tree-dstr-2byte-ready.
5683 (cvs-tree-char-*): Rename from cvs-tree-dstr-char-*.
5684 Use make-char rather than hard-coded cryptic data.
5685 (cvs-status-cvstrees): Convert the buffer to multibyte if necessary.
5686
5687 * pcvs-defs.el (cvs-menu): Add entries for tree and insert.
5688
5689 * pcvs-util.el (cvs-butlast, cvs-nbutlast): New (copied from CL).
5690 (cvs-insert-strings): New function.
5691
5692 2000-11-06 Miles Bader <miles@lsi.nec.co.jp>
5693
5694 * mwheel.el (mouse-wheel-scroll-amount): Renamed from
5695 `mwheel-scroll-amount'.
5696 (mouse-wheel-follow-mouse): Renamed from `mwheel-follow-mouse'.
5697 (mouse-wheel-mode): Use (featurep 'xemacs) instead of
5698 string-matching against the version string.
5699
5700 2000-11-06 Kenichi Handa <handa@etl.go.jp>
5701
5702 * language/thai.el ("Thai"): Set a lisp form that produces
5703 composed string in `sample-text' language info.
5704
5705 * language/tibetan.el ("Tibetan"): Set a lisp form that produces
5706 composed string in `sample-text' language info.
5707
5708 * international/mule-cmds.el (describe-language-environment):
5709 Eval `sample-text' data and insert the result.
5710
5711 * international/mule-conf.el (compound-text): Define this coding
5712 system here. Make x-ctext and ctext aliases of it.
5713
5714 * language/european.el (compound-text, ctext): Moved to
5715 international/mule-conf.el.
5716
5717 2000-11-05 Andrew Innes <andrewi@gnu.org>
5718
5719 * w32-fns.el (w32-version): New function.
5720
5721 2000-11-05 Stefan Monnier <monnier@cs.yale.edu>
5722
5723 * progmodes/awk-mode.el: Update copyright.
5724 (awk-mode-abbrev-table): Remove.
5725 (awk-font-lock-keywords): Use regexp-opt.
5726 (awk-mode): Use define-derived-mode.
5727
5728 * emacs-lisp/regexp-opt.el (regexp-opt-group): Sort the strings
5729 when extracting a suffix.
5730
5731 2000-11-04 Andre Spiegel <spiegel@gnu.org>
5732
5733 * vc-hooks.el (vc-insert-file): Rewritten. Don't bother about
5734 auto-save-mode.
5735
5736 2000-11-04 Jason Rumney <jasonr@gnu.org>
5737
5738 * language/european.el (decode-mac-roman): Test against r1 not r0.
5739
5740 2000-11-03 Stefan Monnier <monnier@cs.yale.edu>
5741
5742 * progmodes/icon.el (icon-mode-map): Don't rebind \t.
5743 (icon-mode): Define indent-line-function.
5744 (icon-comment-indent): Simplify.
5745 (icon-font-lock-keywords-2): Use the `words' arg to regexp-opt.
5746
5747 * emacs-lisp/find-func.el (find-function-do-it): Quote the hook.
5748
5749 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
5750 Bind change-log-default-mode to defeat the caching done on it.
5751 Don't bother saving excursion any more.
5752
5753 * menu-bar.el (minibuffer maps): Use dolist rather than mapcar.
5754
5755 * frame.el (after-setting-font-hook): Rename hooks -> hook.
5756 (set-frame-font): Use the new name (and the old for compatibility).
5757
5758 * toolbar/tool-bar.el (tool-bar-mode):
5759 * time.el (display-time-mode):
5760 * recentf.el (recentf-mode):
5761 * paren.el (show-paren-mode):
5762 * mwheel.el (mouse-wheel-mode):
5763 * msb.el (msb-mode):
5764 * jka-compr.el (auto-compression-mode):
5765 * image-file.el (auto-image-file-mode):
5766 * hl-line.el (hl-line-mode):
5767 * delsel.el (delete-selection-mode):
5768 * autoinsert.el (auto-insert-mode):
5769 * complete.el (partial-completion-mode): Drop unneeded positional args.
5770
5771 * info.el (Info-mode):
5772 * comint.el (comint-mode): Don't bother with make-local-hook.
5773
5774 * log-edit.el (log-edit-menu): New menu.
5775
5776 2000-11-03 Miles Bader <miles@gnu.org>
5777
5778 * wid-edit.el (widget-end-of-line): Reinstate, with a new
5779 definition, so that trailing spaces are handled properly.
5780 (widget-field-keymap, widget-text-keymap): Likewise C-e binding.
5781
5782 2000-11-03 Gerd Moellmann <gerd@gnu.org>
5783
5784 * startup.el (fancy-splash-text, fancy-splash-text): Use a single
5785 tab character.
5786 (fancy-splash-screens): Set tab-width to 20.
5787
5788 2000-11-03 Dave Love <fx@gnu.org>
5789
5790 * comint.el (comint-completion-addsuffix): Fix custom type.
5791
5792 2000-11-02 Stefan Monnier <monnier@cs.yale.edu>
5793
5794 * font-lock.el (font-lock-buffers): Remove.
5795 (font-lock-global-modes): Define with easy-mmode-define-global-mode.
5796 (font-lock-change-major-mode): Remove.
5797 (turn-on-font-lock-if-enabled): Only apply to the current buffer.
5798 (font-lock-default-fontify-region): Extend the multiline
5799 fontification to whole lines.
5800 (font-lock-fontify-anchored-keywords)
5801 (font-lock-fontify-keywords-region): If matching just one
5802 line (with \n) only mark the \n as multiline.
5803
5804 * emacs-lisp/easy-mmode.el (define-minor-mode): Remove :toggle arg.
5805 Correctly handle the case where several :group args are supplied.
5806 Allow :extra-args.
5807 (easy-mmode-define-global-mode): Allow :extra-args.
5808 Correctly handle the case where several :group args are supplied.
5809
5810 2000-11-02 Miles Bader <miles@gnu.org>
5811
5812 * calendar/calendar.el (diary-face, calendar-today-face)
5813 (holiday-face): Remove dependency on `window-system'.
5814
5815 2000-11-02 Ken Raeburn <raeburn@gnu.org>
5816
5817 * Makefile.in (emacs): Set EMACSLOADPATH always.
5818 (update-authors, .el.elc, compile-files): Don't do it explicitly here.
5819 (compile-files): Bomb out if compilation of a file fails.
5820
5821 2000-11-02 Dave Love <fx@gnu.org>
5822
5823 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup.
5824
5825 2000-11-02 Eli Zaretskii <eliz@is.elta.co.il>
5826
5827 * mail/emacsbug.el (report-emacs-bug): Fix whitespace and
5828 punctuation in the warning inserted into the *mail* buffer.
5829
5830 2000-11-02 Gerd Moellmann <gerd@gnu.org>
5831
5832 * emacs-lisp/authors.el (authors-public-domain-files): New variable.
5833 (authors-public-domain-p): New function.
5834 (authors-print): Use it.
5835
5836 * help.el (view-emacs-news): Use ONEWS.* instead of NEWS.* files.
5837
5838 * mail/mh-e.el, mail/mh-comp.el: Change maintainer.
5839
5840 2000-11-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5841
5842 * ps-print.el: Extension for even/odd printing. Doc fix.
5843 (ps-print-version): New version number (6.3.1).
5844 (ps-even-or-odd-pages): Customization fix.
5845 (ps-print-page-p, ps-begin-file, ps-begin-job, ps-page-number)
5846 (ps-header-sheet, ps-header-page, ps-end-job): Code fix.
5847 (ps-page-count): Var replaced by `ps-page-column'.
5848 (ps-page-column, ps-page-sheet, ps-page-printed): New vars.
5849 (ps-print-sheet-p): New fun.
5850
5851 2000-11-02 Miles Bader <miles@lsi.nec.co.jp>
5852
5853 * tooltip.el (tooltip-gud-tips-setup): New function.
5854 (tooltip-gud-tips-p): Add :set to call tooltip-gud-tips-setup.
5855 (tooltip-mode): Call tooltip-gud-tips-setup.
5856 (tooltip-gud-tips): Use `gud-basic-call' instead of
5857 process-send-string, so the prompt gets frobbed appropriately.
5858 Handle nil return value from `tooltip-gud-print-command'.
5859
5860 2000-11-01 Eric M. Ludlam <zappo@ultranet.com>
5861
5862 * comint.el (comint-add-to-input-history): New function.
5863 (comint-send-input): Use `comint-add-to-input-history'.
5864
5865 2000-11-02 Miles Bader <miles@lsi.nec.co.jp>
5866
5867 * info.el (info-menu-header): New face.
5868 (Info-fontify-menu-headers): New function.
5869 (Info-fontify-node, Info-insert-dir): Call `Info-fontify-menu-headers'.
5870
5871 * info.el (Info-insert-dir): Don't include blank lines at
5872 beginning of additional dir files (one is added automatically).
5873
5874 2000-11-01 Stefan Monnier <monnier@cs.yale.edu>
5875
5876 * emacs-lisp/easy-mmode.el (define-minor-mode):
5877 Revert the latest changes.
5878 Allow the three positional arguments to be skipped and replaced
5879 by keyword arguments.
5880 Add a :toggle argument to determine whether a nil arg means toggle
5881 or means turn-on. The default is unchanged.
5882 Add a call to force-mode-line-update.
5883
5884 2000-11-01 Dave Love <fx@gnu.org>
5885
5886 * emacs-lisp/elp.el (elp-restore-function): Remove autoload cookie.
5887
5888 2000-11-01 Miles Bader <miles@lsi.nec.co.jp>
5889
5890 * calendar/calendar.el (diary-face, holiday-face):
5891 Add dark-background variants.
5892
5893 2000-10-31 Sam Steingold <sds@gnu.org>
5894
5895 * textmodes/tex-mode.el (tex-file): Use `default-directory' when
5896 `tex-main-file' does not have directory in it.
5897
5898 2000-10-31 Stefan Monnier <monnier@cs.yale.edu>
5899
5900 * cus-edit.el (custom-mode-map): Switch back to a sparse keymap.
5901
5902 2000-10-31 Thien-Thi Nguyen <ttn@gnu.org>
5903
5904 * ediff-init.el (ediff-prepare-buffer-hook): Expand docstring, no
5905 functional change.
5906
5907 2000-10-31 Gerd Moellmann <gerd@gnu.org>
5908
5909 * files.el (find-file-noselect): When we expand a wildcard, return
5910 a list of buffers, as we should do according to the doc string.
5911
5912 2000-10-31 Ken Raeburn <raeburn@gnu.org>
5913
5914 * loadup.el (top level): Adjust load path if program name is
5915 "../src/bootstrap-emacs", in case it's not dumped and thus the
5916 load path adjustment hasn't already been done.
5917
5918 2000-10-31 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5919
5920 * ps-print.el: Fix bug on selected pages for printing.
5921 Use `color-values' for Emacs 21. Ensure fontification when jit-lock
5922 is on. Try to avoid warning messages when compiling. Doc Fix.
5923 (ps-print-version): New version number (6.3).
5924 (ps-color-device): Use `color-values' to determine if device
5925 supports color.
5926 (ps-color-values): Try to use `x-color-values' when using XEmacs.
5927 (ps-print-page-p): Changed from defsubst to defun.
5928 (ps-page-number): Changed from defmacro to defun.
5929 (ps-header-sheet, ps-header-page): Fix bug on selected pages for
5930 printing.
5931 (ps-print-ensure-fontified): Ensure fontification when jit-lock is on.
5932 (ps-end-file, ps-dummy-page): Funs eliminated.
5933 (ps-print-color-scale): Changed default value.
5934 (ps-page-n-up, ps-print-page-p): New internal vars.
5935 (ps-print-preprint, ps-output, ps-begin-file, ps-begin-page)
5936 (ps-plot-region, ps-generate, ps-end-job): Code fix.
5937
5938 * delim-col.el: Little programming improvement.
5939 (delimit-columns-str): New macro.
5940 (delimit-columns-region, delimit-columns-rectangle): Code fix.
5941
5942 2000-10-31 Kenichi Handa <handa@etl.go.jp>
5943
5944 * term/mac-win.el (decode-mac-roman, encode-mac-roman, mac-roman):
5945 Moved to european.el.
5946 (ccl-encode-mac-roman-font, fontset-mac): Modified for
5947 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
5948 (mac-roman-kbd-insert, mac-roman-kbd-mode): These functions deleted.
5949 (mac-roman-kbd-mode, mac-roman-kbd-mode-map): These variables deleted.
5950
5951 2000-10-30 Dave Love <fx@gnu.org>
5952
5953 * progmodes/cc-menus.el (imenu-generic-expression)
5954 (imenu-progress-message): Only defvar when compiling.
5955
5956 * emacs-lisp/elp.el (elp-unload-hook): New function.
5957
5958 * loadhist.el (unload-feature): Call elp-restore-function,
5959 checking for symbols; don't use elp-restore-all.
5960 (loadhist-hook-functions): Doc fix.
5961
5962 2000-10-30 Stefan Monnier <monnier@cs.yale.edu>
5963
5964 * log-edit.el (log-edit-confirm): Fix the default.
5965
5966 2000-10-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5967
5968 * delim-col.el: Little fix: replace delimit-columns-align-columns by
5969 delimit-columns-format.
5970 (delimit-columns-region, delimit-columns-rectangle): Code fix.
5971
5972 2000-10-30 Miles Bader <miles@lsi.nec.co.jp>
5973
5974 * comint.el (comint-replace-by-expanded-history): Don't use
5975 comint-get-old-input (we're not looking at *old* input).
5976 (comint-get-old-input-default): If using fields, signal an error
5977 when the point is not in an input field.
5978
5979 2000-10-30 Kenichi Handa <handa@etl.go.jp>
5980
5981 * international/mule-conf.el: New charsets mule-unicode-2500-33ff
5982 and mule-unicode-e000-ffff.
5983
5984 * international/mule.el (decode-char, encode-char): New functions.
5985 (make-coding-system): Accept a symbol of translation table as a
5986 value of property `safe-chars'.
5987
5988 * international/mule-cmds.el (encode-coding-char): Check property
5989 safe-chars instead of safe-charsets.
5990
5991 * international/fontset.el (fontset-default): Modified for
5992 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
5993 (x-font-name-charset-alist): Likewise.
5994 (ccl-encode-unicode-font): New CCL program. Record it in
5995 font-ccl-encoder-alist to be used for fonts "ISO10646-1".
5996
5997 * language/european.el (mac-roman-decoder, mac-roman-encoder):
5998 New translation tables.
5999 (decode-mac-roman, encode-mac-roman): Definition of these CCL
6000 programs are modified and moved from mac-win.el.
6001 (mac-roman): Definition of this coding system is modified and
6002 moved from mac-win.el.
6003
6004 2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
6005
6006 * ediff-wind.el (ediff-setup-control-frame): Enclose
6007 face-attribute in condition-case to avoid errors in older emacsen.
6008
6009 2000-10-29 Miles Bader <miles@gnu.org>
6010
6011 * custom.el (custom-add-to-group): Allow multiple entries for a
6012 given value OPTION, as long as their widget types are different.
6013 * cus-edit.el (custom-face-value-create): If face name doesn't end
6014 with "face", add such here (similar to custom group widgets).
6015
6016 * comint.el (comint-highlight-prompt): Add :type.
6017
6018 2000-10-28 John Wiegley <johnw@gnu.org>
6019
6020 * calendar/timeclock.el (timeclock-log): Doc fix.
6021 (timeclock-last-event): Doc fix.
6022 (timeclock-log): Kill the timelog buffer after appending a new event.
6023 (timeclock-find-discrep): Use a temp buffer to read in the
6024 timelog, instead of visiting the file.
6025 (timeclock-log-data): A new function, along with a host of helper
6026 functions, for the purpose of making timelog data accessible to
6027 programmers.
6028
6029 * eshell/esh-mode.el (window-height test): Make certain that
6030 `eshell-stringify-t' is non-nil.
6031 (eshell-password-prompt-regexp): Changed to a much simpler
6032 password regexp.
6033 (eshell-send-input): If `eshell-invoke-directly' returns t,
6034 directly invoke the parsed command using `eval'. This improves
6035 turn-around time on simple commands by a factor of three or
6036 greater, such as cd, ls, pwd, etc. -- which get used very often.
6037 It also conserves thousands of cons cells per call (since
6038 `eshell-do-eval' consumes memory like a Cookie Monster set loose
6039 in the Pacific Cookie Company).
6040
6041 * eshell/esh-test.el (eshell-test): Whitespace fix.
6042
6043 * eshell/em-ls.el (eshell-ls-insert-directory):
6044 Make `eshell-ls-initial-args' nil when inserting directory contents.
6045
6046 * eshell/em-script.el (eshell-script-initialize): Add names to
6047 `eshell-complex-commands, since `source' and `.' are complex.
6048
6049 * eshell/esh-cmd.el (eshell-rewrite-for-command)
6050 (eshell-rewrite-while-command): Use `eshell-protect' instead of
6051 `eshell-copy-handles'.
6052 (eshell-rewrite-if-command): Use `eshell-protect' to wrap the call
6053 bodies.
6054 (eshell-separate-commands): Whitespace fix.
6055 (eshell-complex-commands): Added a new list of names, for
6056 determining whether a given command is as simple as it looks.
6057 (eshell-invoke-directly): New function. Returns t if a command
6058 should be invoked directly (using `eval'), rather than indirectly
6059 using `eshell-do-eval'.
6060 (eshell-do-eval): Whitespace fix.
6061
6062 * eshell/em-unix.el (eshell-default-target-is-dot): New variable,
6063 which provides an emulation of the DOS shell behavior of assuming
6064 that cp/mv/ln should copy/move/link to the current directory.
6065 (eshell-remove-entries): Added a doc string.
6066 (eshell-shuffle-files): Removed the check for `target' being null.
6067 (eshell-mvcp-template, eshell-mvcpln-template): Renamed
6068 `eshell-mvcp-template' to `eshell-mvcpln-template', and extended
6069 it to do a smarter check of whether a destination was provided.
6070 (eshell/mv, eshell/cp): Enable `:preserve-args'.
6071 (eshell/ln): Enable `:preserve-args', and use
6072 `eshell-mvcpln-template' to implement the body of the function.
6073 (eshell/cat, eshell/make, eshell-poor-mans-grep, eshell-grep)
6074 (eshell/du, eshell/diff, eshell/locate): Stringify the argument
6075 list after flattening it. This makes it possible to cat files
6076 with numerical names.
6077 (eshell-unix-initialize): Added several names to
6078 `eshell-complex-commands.
6079 (eshell-unix-command-complex-p): Return t if a given command name
6080 may result in external processes being invoked.
6081
6082 * eshell/em-glob.el (eshell-glob-show-progress): Make this
6083 variable nil by default, since it slows down glob processing by a
6084 factor of two or more, and increases memory consumption.
6085
6086 * eshell/em-smart.el: Added a note about how memory consumptive
6087 smart display mode can be (at least this is true in Emacs 21).
6088 (eshell-smart-initialize): Whitespace fix.
6089 (eshell-refresh-windows): Use `if' instead of `when'.
6090 (eshell-smart-scroll-window): Calling `save-current-buffer' was
6091 not necessary.
6092 (eshell-currently-handling-window): Added a missing global variable.
6093
6094 * eshell/em-ls.el (eshell-do-ls): Code simplification.
6095 (eshell-ls-sort-entries, eshell-ls-entries, eshell-ls-dir):
6096 Whitespace fix.
6097 (eshell-ls-exclude-hidden): Added this variable in addition to
6098 `eshell-ls-exclude-regexp'. This one prevents files beginning
6099 with . from even being read, which can improve memory consumption
6100 quite a bit.
6101 (eshell-ls-dir): If `eshell-ls-exclude-hidden' is non-nil, do not
6102 read file entries beginning with a dot. In home directories with
6103 lots of hidden files, fully two-thirds of the time spent in ls is
6104 used to read directory entries that are immediately thrown away.
6105 (eshell-ls-initial-args): Added back this configuration variable,
6106 for specifying default initial arguments to every call to ls.
6107 Much faster than using an alias to do the same thing.
6108 (eshell-do-ls): Use `eshell-ls-initial-args', if set.
6109 (eshell-ls-dir): Whitespace change.
6110
6111 * eshell/em-dirs.el (eshell/pwd): Small code simplification.
6112
6113 * eshell/esh-util.el: Don't require `ange-ftp' if it's not available.
6114 (eshell-stringify-t): Added a customization variable, to indicate
6115 whether `t' should be rendered as a string at all. If not, one
6116 can still determine if the result of an expression is true using
6117 "file-exists-p FILE && echo true".
6118 (eshell-stringify): If `eshell-stringify-t' is nil, don't
6119 stringify t!
6120
6121 * eshell/esh-module.el: Whitespace fix.
6122
6123 * eshell/em-alias.el (eshell-alias-initialize):
6124 Added `eshell-command-aliased-p' to `eshell-complex-commands'.
6125 (eshell-command-aliased-p): New function that returns t if a
6126 command name names an aliased.
6127
6128 2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
6129
6130 * viper-cmd.el (viper-preserve-cursor-color): New test that avoids
6131 redrawing the screen when changing cursor color.
6132 (viper-insert-state-pre-command-sentinel)
6133 (viper-replace-state-pre-command-sentinel)
6134 (viper-replace-state-post-command-sentinel):
6135 Use viper-preserve-cursor-color.
6136 Many functions changed to use viper= instead of = when comparing
6137 characters.
6138 * viper-util.el (viper-memq-char,viper=): New functions for
6139 working with characters.
6140 (viper-change-cursor-color): Fixed buglet.
6141 Many functions changed to use viper= instead of = when comparing
6142 characters.
6143 * viper.el (viper-insert-state-mode-list): Added eshell.
6144
6145 * ediff-init.el (ediff-before-setup-hook): New hook.
6146 Several typos fixed in various docstrings.
6147 * ediff-merg.el (ediff-show-clashes-only): Docstring typo fixed.
6148 * ediff-nult.el (ediff-before-session-group-setup-hooks): New hook.
6149 (ediff-show-meta-buffer): Run ediff-before-session-group-setup-hooks.
6150 * ediff-util.el (ediff-setup): Run ediff-before-setup-hook.
6151 (ediff-other-buffer): Use selected buffers if in Buffer-menu buffer.
6152 (ediff-get-selected-buffers): New function.
6153 * ediff-vers.el (ediff-vc-internal,ediff-rcs-internal)
6154 (ediff-vc-merge-internal,ediff-rcs-merge-internal):
6155 Use save-window-excursion.
6156 * ediff-wind.el (ediff-skip-unsuitable-frames): More robust
6157 termination check in while loop.
6158 * ediff.el (ediff-get-default-file-name): Better defaults when in
6159 dired buffer.
6160 (ediff-files,ediff-merge-files,ediff-files3)
6161 (ediff-merge-files-with-ancestor): Use ediff-get-default-file-name.
6162
6163 2000-10-28 Dave Love <fx@gnu.org>
6164
6165 * info.el (Info-fontify-node): Add help-echo for menu items.
6166
6167 2000-10-28 Eli Zaretskii <eliz@is.elta.co.il>
6168
6169 * startup.el (normal-top-level): If the value of $TERM indicates
6170 we are running from xterm or one of its work-alikes, default to a
6171 light background mode.
6172
6173 Support for -fg, -bg, and -rv command-line arguments for TTYs:
6174 * faces.el (tty-handle-reverse-video): New function.
6175 (tty-create-frame-with-faces): Call it.
6176
6177 * frame.el (frame-notice-user-settings): Don't apply
6178 default-frame-alist and initial-frame-alist to MS-DOS frames.
6179 Call tty-handle-reverse-video, frame-set-background-mode, and
6180 face-set-after-frame-default for non-MS-DOS frames.
6181
6182 * startup.el (tty-long-option-alist): New variable.
6183 (tty-handle-args): New function.
6184 (command-line): Call tty-handle-args.
6185
6186 * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove;
6187 startup.el now does that for all character-terminal frames.
6188
6189 2000-10-28 Miles Bader <miles@gnu.org>
6190
6191 * emacs-lisp/easy-mmode.el (define-minor-mode):
6192 Generate `turn-on-MODE' and `turn-off-MODE' functions unless the mode
6193 is global. If :global is followed by a non-nil but non-t value,
6194 make the mode buffer-local, but also generate a `global-MODE'
6195 version using `easy-mmode-define-global-mode'.
6196 Add :conditional-turn-on keyword argument.
6197
6198 2000-10-28 Dave Love <fx@gnu.org>
6199
6200 * international/latin1-disp.el (latin1-char-displayable-p):
6201 Don't use window-system.
6202
6203 2000-10-27 Eli Zaretskii <eliz@is.elta.co.il>
6204
6205 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
6206 Don't call find-buffer-file-type-coding-system. Instead, just
6207 set eol-type to -unix if inhibit-eol-conversion is in effect, or
6208 if the file is on an untranslated filesystem.
6209 (add-untranslated-filesystem): Use "D" instead of "f" inside
6210 interactive.
6211
6212 2000-10-27 Dave Love <fx@gnu.org>
6213
6214 * textmodes/refill.el (refill-late-fill-paragraph-function): New var.
6215 (refill-mode): Use it.
6216
6217 2000-10-27 Stefan Monnier <monnier@cs.yale.edu>
6218
6219 * international/quail.el (quail-activate): Don't make-local-hook.
6220
6221 2000-10-27 Andre Spiegel <spiegel@gnu.org>
6222
6223 * vc-hooks.el (vc-version-backup-file-name): Use file.~<rev>~ for
6224 manual backups and file.~<rev>.~ for automatic ones.
6225 (vc-make-version-backup): Don't do it on MS-DOS without long file
6226 names.
6227
6228 * vc.el (vc-version-other-window): If an automatic backup of the
6229 desired version exists, rename it instead of copying it.
6230
6231 * vc-cvs.el (vc-cvs-checkin): Check both status and error message
6232 after command. If there's an unexpected error, signal it instead
6233 of being silent.
6234 (vc-cvs-merge-news): Be prepared for no news at all.
6235
6236 2000-10-27 Miles Bader <miles@lsi.nec.co.jp>
6237
6238 * shell.el (shell): Add BUFFER argument.
6239 * comint.el (make-comint-in-buffer): New function.
6240 (make-comint): Use it.
6241
6242 * faces.el (face-spec-choose): Change syntax so that the list of
6243 attribute-value pairs is now the cdr of each clause, not the cadr.
6244 Detect old-style entries, and handle them. Use pop.
6245
6246 2000-10-26 Stefan Monnier <monnier@cs.yale.edu>
6247
6248 * cus-edit.el (custom-mode-map): Use a sparse map.
6249 (custom-mode): Don't bother with make-local-hook.
6250
6251 * wid-edit.el (widget-add-change): Don't bother with make-local-hook.
6252
6253 * vc.el (vc-start-entry): Only erase the buffer if comment is set.
6254
6255 2000-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6256
6257 * ps-print.el: Avoid compilation gripes.
6258 (ps-print-version): New version number (6.2.1).
6259
6260 2000-10-26 Dave Love <fx@gnu.org>
6261
6262 * menu-bar.el: Modify some menu item help strings.
6263 (menu-bar-help-menu): Add link to MORE.STUFF.
6264
6265 * cus-edit.el (custom-mode): Add `special' mode-class property.
6266
6267 * wid-browse.el (widget-browse-mode): Likewise.
6268
6269 * wid-edit.el (widget-specify-field): Revert to using local-map
6270 property, not keymap.
6271
6272 2000-10-26 Miles Bader <miles@lsi.nec.co.jp>
6273
6274 * wid-edit.el (widget-field-end): When checking for a `boundary'
6275 field, do so in the correct buffer.
6276
6277 * simple.el (undo): Correctly distinguish between numeric and
6278 non-numeric prefix args in non-transient-mark-mode, as per the doc
6279 string. When in transient-mark-mode, treat all prefix-args as
6280 numeric.
6281
6282 * simple.el (previous-matching-history-element): Miscellaneous cleanup.
6283 Position point on match. Handle N == 0 correctly.
6284
6285 * comint.el (comint-mode): Locally set `next-line-add-newlines' to nil.
6286 (comint-mode-map): Reverse order of `comint-write-output' and
6287 `comint-append-output-to-file'.
6288 (comint-append-output-to-file): Reinstate this function, for the
6289 benefit of the menu.
6290
6291 2000-10-25 Stefan Monnier <monnier@cs.yale.edu>
6292
6293 * vc.el (vc-version-other-window): Bind `file'.
6294
6295 2000-10-25 Gerd Moellmann <gerd@gnu.org>
6296
6297 * Makefile.in (update-authors): New target for maintenance purposes.
6298
6299 * emacs-lisp/authors.el (batch-update-authors): New function.
6300 (authors-fixed-entries): New defconst.
6301 (authors-add-fixed-entries): New function.
6302 (authors): Call it.: Don't process lispref/.
6303
6304 2000-10-25 Jason Rumney <jasonr@gnu.org>
6305
6306 * cus-edit.el (custom-button-face, custom-button-pressed-face):
6307 Merge x w32 and mac definitions.
6308
6309 2000-10-25 Gerd Moellmann <gerd@gnu.org>
6310
6311 * menu-bar.el (menu-bar-options-menu): Add a help string for
6312 `uniquify'.
6313
6314 2000-10-25 Stephen Gildea <gildea@alum.mit.edu>
6315
6316 * time-stamp.el (time-stamp-string-preprocess):
6317 Fix a wrong type argument error.
6318
6319 2000-10-25 Miles Bader <miles@gnu.org>
6320
6321 * recentf.el (recentf-mode): Variable removed.
6322 (recentf-mode): Use `define-minor-mode'.
6323
6324 * mwheel.el (mouse-wheel-mode): New global minor mode.
6325 (mwheel-install): Use `mouse-wheel-mode'.
6326
6327 2000-10-25 Dave Love <fx@gnu.org>
6328
6329 * progmodes/cperl-mode.el (cperl-mode):
6330 Set normal-auto-fill-function correctly.
6331
6332 * wid-edit.el (widget-field-keymap, widget-text-keymap):
6333 Don't inherit from global-map and don't nullify menu-bar and tool-bar
6334 bindings.
6335
6336 2000-10-25 Miles Bader <miles@lsi.nec.co.jp>
6337
6338 * wid-edit.el (widget-field-at): New function.
6339 (widget-at, widget-field-activate): Use it.
6340 (widget-tabable-at): Use `widget-at'.
6341 (widget-specify-field): If the terminating character of the widget
6342 field (which is read-only) is a newline, put it into a special
6343 `boundary' field so that C-n/C-p act more naturally.
6344 (widget-field-end): Also don't subtract one if a special
6345 `boundary' field has been added after the widget field.
6346
6347 * comint.el (comint-output-filter, comint-send-input):
6348 Don't bother adding stickiness fields to overlays to fool the field
6349 code, since it should notice the overlay insertion-types now.
6350
6351 * wid-edit.el (widget-beginning-of-line, widget-end-of-line):
6352 Replace with aliases of the normal emacs b-o-l/e-o-l functions.
6353 (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e.
6354
6355 2000-10-24 Gerd Moellmann <gerd@gnu.org>
6356
6357 * emacs-lisp/authors.el (authors-aliases): Add some more aliases.
6358 (authors): Set file coding system to iso-2022-7bit.
6359 Add file-local variables to output buffer.
6360
6361 * files.el (after-find-file): Don't print any warnings if
6362 WARN is nil.
6363
6364 2000-10-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6365
6366 * ps-print.el (ps-generate): Fix odd/even pages printing bug.
6367
6368 * delim-col.el: Now there is a column formatting mechanism.
6369 Modified to customization mechanisms convention. Doc fix.
6370 (columns): New group for delim-col.
6371 (delimit-columns-before, delimit-columns-after)
6372 (delimit-columns-format, delimit-columns-extra, delimit-columns-start)
6373 (delimit-columns-end): New vars.
6374 (delimit-columns-customize, delimit-columns-format): New funs.
6375 (delimit-columns-region, delimit-columns-rectangle)
6376 (delimit-columns-rectangle-line): Modified to support column
6377 formatting.
6378
6379 2000-10-24 Dave Love <fx@gnu.org>
6380
6381 * log-edit.el (log-edit): Add :version and a :group for vc.
6382
6383 2000-10-24 Gerd Moellmann <gerd@gnu.org>
6384
6385 * files.el (after-find-file): Don't print a message ``New file''
6386 if WARN is nil.
6387
6388 * wid-edit.el (widget-field-keymap, widget-text-keymap):
6389 Define the tool-bar map as nil, as for the menu-bar. Otherwise, we'll
6390 get duplicate tool-bar entries because we'll see the global ones
6391 on more than one path through keymaps.
6392
6393 * emacs-lisp/lisp.el (defun-prompt-regexp): Doc fix.
6394
6395 * progmodes/cmacexp.el: Change Francesco's email address.
6396
6397 2000-10-24 Kenichi Handa <handa@etl.go.jp>
6398
6399 * window.el (fit-window-to-buffer): Adjust point of the window
6400 buffer, not that of the current buffer.
6401
6402 2000-10-24 Eli Zaretskii <eliz@is.elta.co.il>
6403
6404 * progmodes/cmacexp.el: Update the euthor's email address.
6405
6406 2000-10-24 Miles Bader <miles@lsi.nec.co.jp>
6407
6408 * faces.el (face-spec-set-match-display): Add `graphic' display
6409 type (the inverse of `tty'). Use `display-graphic-p' instead of
6410 the window-system variable.
6411
6412 2000-10-24 Kenichi Handa <handa@etl.go.jp>
6413
6414 * international/isearch-x.el (isearch-with-input-method):
6415 Call input-method-function with the first event in
6416 unread-command-events.
6417
6418 2000-10-24 Miles Bader <miles@lsi.nec.co.jp>
6419
6420 * faces.el (face-default-spec, face-user-default-spec): Make defsubsts.
6421
6422 2000-10-24 Andrew Choi <akochoi@i-cable.com>
6423
6424 * international/mule-conf.el (mac-roman-lower, mac-roman-upper):
6425 New charsets.
6426
6427 * term/mac-win.el: Remove definitions of mac-roman-lower and
6428 mac-roman-upper, require dired, and define instead of set
6429 mac-ready-for-drag-n-drop to avoid compilation error.
6430
6431 2000-10-23 Andrew Innes <andrewi@gnu.org>
6432
6433 * files.el (make-backup-file-name-1) [windowsnt, ms-dos]:
6434 Remove superfluous calls to subst-char-in-string; instead apply
6435 expand-file-name after convert-standard-filename to ensure
6436 expected directory separators are used.
6437
6438 2000-10-23 Eli Zaretskii <eliz@is.elta.co.il>
6439
6440 * info.el (Info-file-list-for-emacs): Add an entry for Eshell.
6441
6442 2000-10-23 Dave Love <fx@gnu.org>
6443
6444 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
6445 (tool-bar-add-item): Set foreground and background for XBM icons.
6446
6447 * international/latin1-disp.el (latin1-char-displayable-p):
6448 New function (from Handa).
6449 (latin1-display-check-font): Use it.
6450
6451 * imenu.el (imenu--create-keymap-2): Build menu with menu-item
6452 using :key-sequence, making it much more usable.
6453 Use nconc, not append.
6454 (imenu--create-keymap-1): Avoid append.
6455
6456 * textmodes/refill.el: Remove bits redundant with define-minor-mode.
6457
6458 2000-10-23 Miles Bader <miles@lsi.nec.co.jp>
6459
6460 [the following changes fix a bug where `define-minor-mode' didn't
6461 correctly generate :require clauses for defcustoms in compiled files]
6462 * emacs-lisp/bytecomp.el (byte-compile-last-logged-file): New variable.
6463 (byte-compile-log-file, byte-compile-log-1): Don't set
6464 `byte-compile-current-file' to nil. Instead set
6465 `byte-compile-last-logged-file' to it. Test whether
6466 byte-compile-current-file equals byte-compile-last-logged-file
6467 instead of whether its nil.
6468 (byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
6469
6470 2000-10-23 Stefan Monnier <monnier@cs.yale.edu>
6471
6472 * textmodes/refill.el: Fix var names in doc.
6473 (refill-mode): Don't bother with make-local-hook anymore.
6474
6475 2000-10-23 Miles Bader <miles@lsi.nec.co.jp>
6476
6477 * faces.el (face-user-default-spec, face-default-spec): New functions.
6478 (face-spec-choose, face-spec-set): Document nil-SPEC behavior.
6479 (frame-set-background-mode, face-set-after-frame-default):
6480 Use `face-user-default-spec'. Simplify code slightly.
6481
6482 * woman.el (woman-italic-face, woman-bold-face)
6483 (woman-unknown-face): Add dark-background variants.
6484 (woman-default-faces): Renamed from `woman-colour-faces'.
6485 Set using the stored defaults, rather than using hard-wired colors.
6486 (woman-monochrome-faces): Renamed from `woman-black-faces'.
6487 Just make the foreground `unspecified' rather than "black".
6488 (woman-menu): Rename menu entries accordingly.
6489
6490 * faces.el (header-line): Make more reasonable on mono/grayscale
6491 displays.
6492
6493 2000-10-23 Andrew Choi <akochoi@i-cable.com>
6494
6495 * cus-edit.el (custom-button-face): Use 3D look for mac.
6496 (custom-button-pressed-face): Likewise.
6497
6498 * faces.el (set-face-attributes-from-resources): Handle mac frames
6499 in the same way as x and w32 frames.
6500 (face-valid-attribute-values): Likewise.
6501 (read-face-attribute): Likewise.
6502 (defined-colors): Likewise.
6503 (color-defined-p): Likewise.
6504 (color-values): Likewise.
6505 (display-grayscale-p): Likewise.
6506 (face-set-after-frame-default): Likewise.
6507 (mode-line): Same default face as for x and w32.
6508 (tool-bar): Likewise.
6509
6510 * frame.el: Remove call to frame-notice-user-settings at end of
6511 the file.
6512
6513 * info.el (Info-fontify-node): Make underlines invisible for mac
6514 as for x, pc, and w32 frame types.
6515
6516 * term/mac-win.el: New file.
6517
6518 2000-10-22 Dave Love <fx@gnu.org>
6519
6520 * textmodes/refill.el: New file.
6521
6522 2000-10-22 Andre Spiegel <spiegel@gnu.org>
6523
6524 * vc-hooks.el (vc-version-backup-file-name): New optional args
6525 MANUAL and REGEXP.
6526 (vc-delete-automatic-version-backups, vc-make-version-backup):
6527 New functions.
6528 (vc-before-save): Use the latter.
6529 (vc-default-make-version-backups-p): Added `-p' suffix to avoid
6530 confusion.
6531
6532 * vc-cvs.el (vc-cvs-make-version-backups-p): Added `-p' suffix as
6533 expected by vc[-hooks].el.
6534
6535 * vc.el (vc-checkout): Added `-p' suffix in call to
6536 vc-make-version-backups-p; use vc-make-version-backup to actually
6537 make the backup.
6538 (vc-version-other-window, vc-version-backup-file): Handle both
6539 automatic and manual backups.
6540 (vc-revert-file): Use vc-delete-automatic-version-backups to get rid
6541 of all of them.
6542
6543 2000-10-22 Miles Bader <miles@gnu.org>
6544
6545 * comint.el (comint-highlight-input, comint-highlight-prompt):
6546 Renamed, `-face' at end removed.
6547 (comint-send-input, comint-output-filter): Use renamed faces.
6548
6549 * window.el (fit-window-to-buffer): Change defaulting of
6550 MAX-HEIGHT slightly.
6551
6552 * faces.el (color-values, color-defined-p): Use `member', not
6553 `memq', because it works correctly for strings.
6554 (frame-set-background-mode): Actually, "unspecified-fg" and
6555 "unspecified-bg" *are* strings. Use `member', not `memq', and
6556 `equal', not `eq', when a string value is possible.
6557
6558 2000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
6559
6560 * info.el (Info-file-list-for-emacs): Add an entry for Speedbar.
6561
6562 2000-10-21 Stefan Monnier <monnier@cs.yale.edu>
6563
6564 * progmodes/sh-script.el (sh-mode-map): Remove bindings for
6565 sh-electric-rparen, sh-electric-less and sh-electric-hash.
6566 (sh-st-punc, sh-here-doc-syntax): Use string-to-syntax.
6567 (sh-font-lock-heredoc, sh-font-lock-paren): New funs.
6568 (sh-font-lock-syntactic-keywords): Use them.
6569 (sh-heredoc-face, sh-st-face, sh-special-syntax): Remove.
6570 (sh-mkword-regexp, sh-electric-rparen-needed-here): Remove.
6571 (sh-mode): Don't override font-lock-unfontify-region-function.
6572 Use a copy of sh-font-lock-syntactic-keywords.
6573 (sh-set-shell): Don't set sh-electric-rparen-needed-here.
6574 Don't call sh-scan-buffer since font-lock does it on the fly.
6575 (sh-get-indent-info): Use `face' rather than `syntax-table'
6576 text-property to detect here-documents.
6577 Replace sh-special-syntax with sh-st-punc.
6578 (sh-prev-line): Use `face' rather than `syntax-table'
6579 text-property to skip over here-documents.
6580 (sh-font-lock-unfontify-region-function, sh-check-paren-in-case)
6581 (sh-set-char-syntax, sh-electric-rparen, sh-electric-hash)
6582 (sh-electric-less, sh-set-here-doc-region)
6583 (sh-remove-our-text-properties, sh-search-word, sh-scan-case)
6584 (sh-scan-buffer, sh-rescan-buffer): Remove.
6585
6586 2000-10-21 Andrew Innes <andrewi@gnu.org>
6587
6588 * w32-fns.el (make-auto-save-file-name): Don't apply conversion to
6589 remote (ange-ftp) file names.
6590
6591 2000-10-21 Miles Bader <miles@gnu.org>
6592
6593 * window.el (fit-window-to-buffer): New function.
6594 (shrink-window-if-larger-than-buffer): Use it.
6595 (window-text-height): Don't expect minibuffers to have mode-lines.
6596
6597 * help.el (resize-temp-buffer-window): Use `fit-window-to-buffer'.
6598 * international/quail.el (quail-update-guidance):
6599 Use `fit-window-to-buffer' instead of `set-window-text-height'.
6600
6601 * international/quail.el (quail-show-guidance-buf): Make sure
6602 guidance window really has enough room.
6603 (quail-update-guidance): If quail-guidance-win is already shown,
6604 make sure its height is OK.
6605
6606 * window.el (window-text-height, set-window-text-height):
6607 New functions.
6608 (shrink-window-if-larger-than-buffer): Use `window-text-height'
6609 instead of `window-height' & `mode-line-window-height-fudge'.
6610 (mode-line-window-height-fudge): Add FACE parameter.
6611 * help.el (resize-temp-buffer-window): Use `set-window-text-height'
6612 instead of `enlarge-window' & `mode-line-window-height-fudge'.
6613
6614 2000-10-20 Miles Bader <miles@gnu.org>
6615
6616 * window.el (height-affecting-face-attributes): Use `defconst'.
6617
6618 * textmodes/ispell.el (ispell-mode-line-window-height-fudge):
6619 New function, conditionally aliased to `mode-line-window-height-fudge'.
6620 (ispell-help): Use it.
6621 (ispell-choices-win-default-height): Don't include mode-line fudge.
6622 (ispell-choices-win-default-height): New function.
6623 (ispell-show-choices, ispell-command-loop): Use function
6624 `ispell-choices-win-default-height' instead of variable.
6625
6626 2000-10-20 Miles Bader <miles@lsi.nec.co.jp>
6627
6628 * window.el (mode-line-window-height-fudge): New variable.
6629 (height-affecting-face-attributes): New variable.
6630 (mode-line-window-height-fudge): New function.
6631 (shrink-window-if-larger-than-buffer): Use it.
6632 * help.el (resize-temp-buffer-window): Likewise.
6633
6634 * info.el (Info-fontify-node): Add support for @subsubsection
6635 titles, which use `Info-title-4-face'.
6636 (Info-title-4-face): New face.
6637 (Info-title-3-face): Inherit from Info-title-4-face instead of
6638 variable-pitch.
6639
6640 2000-10-19 Jason Rumney <jasonr@gnu.org>
6641
6642 * dired.el (dired-insert-directory): Do not let errors signalled by
6643 attempt to run dired-free-space-program prevent dired from working.
6644
6645 2000-10-19 Stefan Monnier <monnier@cs.yale.edu>
6646
6647 * diff-mode.el (diff-find-file-name): Fix regex subgroup number.
6648
6649 2000-10-19 Gerd Moellmann <gerd@gnu.org>
6650
6651 * dirtrack.el (dirtrack): Fix call to run-hooks.
6652
6653 * cmuscheme.el (cmuscheme-program-name): Renamed from
6654 scheme-program-name because xscheme.el contains a defcustom with
6655 the same name. As a consequence, customizing group `cmuscheme'
6656 loaded `xscheme' which redefined run-scheme.
6657 (run-scheme): Use cmuscheme-program-name.
6658
6659 * ps-print.el (ps-print-emacs-type): Move into the eval-and-compile.
6660
6661 * play/doctor.el (doctor-death): Update the Samaritans'
6662 anonymous address, and add a website for Befrienders International.
6663
6664 2000-10-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6665
6666 * ps-print.el: Even/odd pages fix. Fix little bug on XEmacs.
6667 Avoid compilation gripes. Doc fix.
6668 (ps-print-version): New version number (6.2).
6669 (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
6670 (ps-x-color-name, ps-x-color-specifier-p, ps-x-copy-coding-system)
6671 (ps-x-device-class, ps-x-extent-end-position, ps-x-extent-face)
6672 (ps-x-extent-priority, ps-x-extent-start-position)
6673 (ps-x-face-font-instance, ps-x-find-coding-system)
6674 (ps-x-font-instance-properties, ps-x-make-color-instance)
6675 (ps-x-map-extents): Alias for functions without the prefix `ps-x-', to
6676 avoid compilation gripes without defining functions.
6677 (ps-e-find-composition): Alias for function find-composition, to have a
6678 suitable function depending on Emacs version.
6679 (ps-color-device, ps-color-values, ps-face-foreground-name)
6680 (ps-face-background-name, ps-face-bold-p, ps-face-italic-p, ps-mapper)
6681 (ps-extent-sorter, ps-xemacs-face-kind-p, ps-xemacs-color-name)
6682 (ps-print-ensure-fontified): Function definitions surrounded by
6683 `eval-and-compile' to avoid compilation gripes.
6684 (ps-font-lock-face-attributes): `font-lock-face-attributes' evaluated
6685 by symbol-value to avoid compilation gripes.
6686 (ps-end-file, ps-header-sheet, ps-plot-region): Even/odd pages fix.
6687 (ps-generate-postscript-with-faces): Fix little bug on XEmacs.
6688
6689 2000-10-19 Miles Bader <miles@lsi.nec.co.jp>
6690
6691 * startup.el (normal-top-level): Call `frame-set-background-mode'
6692 after `frame-notice-user-settings' because the latter doesn't call
6693 the former on a tty.
6694
6695 * faces.el (frame-set-background-mode): `unspecified' &c are
6696 symbols, not strings.
6697
6698 2000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
6699
6700 * term/tty-colors.el (color-name-rgb-alist): Add a comment explaining
6701 why some "light*" colors are deliberately absent from the alist.
6702
6703 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face):
6704 Change colors for tty's, as suggested by Miles Bader.
6705
6706 2000-10-19 Kenichi Handa <handa@etl.go.jp>
6707
6708 * international/fontset.el: Use registry "MuleTibetan-2" for Tibetan.
6709 (ccl-encode-mule-unicode-0100-24ff): New CCL program. Register it
6710 for ISO10646-1 fonts.
6711 (x-font-name-charset-alist): Add an entry for "iso10646-1".
6712
6713 2000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
6714
6715 * faces.el (frame-set-background-mode): If a tty frame defines a
6716 background color, use that to compute the background mode, instead
6717 of always defaulting to "dark".
6718
6719 2000-10-19 Miles Bader <miles@lsi.nec.co.jp>
6720
6721 * comint.el (comint-write-output): New function.
6722 (comint-mode-map): Add it to the menu.
6723 Bind `C-c C-s' to comint-write-output.
6724
6725 2000-10-18 Gerd Moellmann <gerd@gnu.org>
6726
6727 * startup.el (fancy-splash-screens): Set buffer-undo-list to t.
6728 Use fancy-splash-delay.
6729
6730 2000-10-18 Alex Schroeder <alex@gnu.org>
6731
6732 * progmodes/sql.el (sql-sybase-options): New option.
6733 (sql-sybase): Use it. Add sql-database to the list of parameters
6734 provided for login. The options -w 2048 -n are not used any more.
6735
6736 * comint.el (comint-read-input-ring): Bugfix such that the first
6737 and the last entry of the input ring file are not lost.
6738
6739 2000-10-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6740
6741 * ps-print.el: Internal variable changes to defcustom,
6742 make-local-hook changes to defvar. Doc fix.
6743 (ps-print-version): New version number (6.1).
6744 (ps-setup, ps-do-despool): Code fix.
6745 (ps-printer-name): Customization fix.
6746 (ps-printer-name-option): Now is a defcustom instead of an
6747 internal variable.
6748 (ps-print-hook, ps-print-begin-sheet-hook, ps-print-begin-page-hook)
6749 (ps-print-begin-column-hook): Now are defvar instead of
6750 make-local-hook.
6751
6752 2000-10-18 Miles Bader <miles@gnu.org>
6753
6754 * comint.el (comint-delete-output): Renamed from `comint-kill-output'.
6755 (comint-kill-output): Changed into an alias for `comint-delete-output',
6756 and made obsolete.
6757 (comint-mode-map): Rename references to comint-kill-output.
6758
6759 2000-10-18 Eli Zaretskii <eliz@is.elta.co.il>
6760
6761 * diff-mode.el (diff-header-face, diff-file-header-face)
6762 (diff-changed-face): Add bold and italic attributes to tty faces.
6763 (diff-function-face): New face.
6764 (diff-font-lock-keywords): Use it.
6765
6766 2000-10-18 Miles Bader <miles@lsi.nec.co.jp>
6767
6768 * comint.el (comint-output-filter): Fixup comint-last-input-end too.
6769 Remove commented-out call to force-mode-line-update.
6770 (comint-kill-output): Use `forward-line 0' instead of
6771 beginning-of-line to make sure we get past the prompt.
6772
6773 2000-10-17 Stefan Monnier <monnier@cs.yale.edu>
6774
6775 * diff-mode.el (diff-header-face, diff-file-header-face):
6776 Add specific setting for dark background.
6777 (diff-context-face): Renamed from diff-comment-face.
6778 Set explicitly rather than inheriting from font-lock-comment-face.
6779
6780 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
6781
6782 * startup.el (command-line): Move the code which sets the default
6783 TTY colors to before before-init-hook.
6784
6785 2000-10-17 Gerd Moellmann <gerd@gnu.org>
6786
6787 * jit-lock.el (jit-lock-stealth-time): Doc fix.
6788
6789 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
6790
6791 * files.el (auto-mode-alist): Add .dif and .pat as diff-mode
6792 extensions, for MS-DOS.
6793
6794 * diff-mode.el (diff-header-face, diff-file-header-face)
6795 (diff-changed-face): Define tty-specific colors.
6796
6797 2000-10-17 Gerd Moellmann <gerd@gnu.org>
6798
6799 * startup.el (fancy-splash-text): Realign the text.
6800
6801 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
6802
6803 * font-lock.el (font-lock-comment-face): Define a separate default
6804 for dark-background tty's.
6805
6806 2000-10-17 Miles Bader <miles@gnu.org>
6807
6808 * help.el (resize-temp-buffer-window): Add hack to avoid last line
6809 being obscured by whizzy mode-lines on graphics displays.
6810
6811 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
6812
6813 * info.el (Info-title-1-face, Info-title-2-face)
6814 (Info-title-3-face): Define colors for tty's.
6815 (info-header-node): Remove unneeded tty-specific definition.
6816
6817 2000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
6818
6819 * term/pc-win.el (msdos-handle-reverse-video): Don't remove
6820 reverse from the frame parameters, and don't invert foreground and
6821 background colors.
6822
6823 2000-10-16 Miles Bader <miles@gnu.org>
6824
6825 * info.el (Info-set-mode-line): Use `%b' instead of hardwired
6826 string "*Info*". Call propertized-buffer-identification to spruce
6827 up the result.
6828
6829 2000-10-16 Gerd Moellmann <gerd@gnu.org>
6830
6831 * help.el: Provide `help' for the sake of define-minor-mode
6832 which generates defcustoms with requires.
6833
6834 * jit-lock.el (jit-lock-after-change): If we're in text that
6835 matches a multi-line font-lock pattern, make sure the whole text
6836 will be redisplayed.
6837
6838 * emacs-lisp/authors.el (authors-add): Don't add an entry if
6839 author's name is unknown.
6840
6841 * eshell/esh-var.el, eshell/esh-util.el, eshell/esh-test.el,
6842 * eshell/esh-proc.el, eshell/esh-opt.el, eshell/esh-mode.el,
6843 * eshell/esh-maint.el, eshell/esh-io.el, eshell/esh-ext.el,
6844 * eshell/esh-cmd.el, eshell/esh-arg.el, eshell/em-xtra.el,
6845 * eshell/em-unix.el, eshell/em-term.el, eshell/em-smart.el,
6846 * eshell/em-script.el, eshell/em-rebind.el, eshell/em-prompt.el,
6847 * eshell/em-pred.el, eshell/em-ls.el, eshell/em-hist.el,
6848 * eshell/em-glob.el, shell/em-dirs.el, eshell/em-cmpl.el,
6849 * eshell/em-basic.el, eshell/em-banner.el, eshell/em-alias.el:
6850 Add author information.
6851
6852 2000-10-16 Miles Bader <miles@lsi.nec.co.jp>
6853
6854 * toolbar/up_arrow.xpm, toolbar/right_arrow.xpm:
6855 * toolbar/left_arrow.xpm, toolbar/home.xpm: Re-convert from
6856 full-color version (using the Gimp) to eliminate dithering artifacts.
6857
6858 2000-10-15 Stefan Monnier <monnier@cs.yale.edu>
6859
6860 * font-lock.el (font-lock-syntactic-keywords): Fix docstring.
6861
6862 * simple.el (syntax-flag-table, string-to-syntax): Remove.
6863
6864 2000-10-15 Dave Love <fx@gnu.org>
6865
6866 * progmodes/sh-script.el: Require skeleton and comint when compiling.
6867
6868 * pcomplete.el (pcomplete) <defgroup>: Add :version.
6869
6870 * whitespace.el: Doc fixes.
6871 (top-level): Don't add hooks here.
6872 (whitespace-running-emacs): Deleted.
6873 (timer): Don't require.
6874 (whitespace): Add back :version conditional on xemacs test.
6875 (whitespace-spacetab-regexp, whitespace-indent-regexp)
6876 (whitespace-ateol-regexp, whitespace-modes): Fix custom type.
6877 (whitespace-force-mode-line-update, whitespace-refresh-rescan-list)
6878 (whitespace-tickle-timer, whitespace-rescan-files-in-buffers):
6879 Avoid specific xemacs test.
6880 (whitespace-global-mode): New option.
6881 (whitespace-global-mode): New command.
6882 (whitespace-unload-hook): New function.
6883
6884 * info.el (Info-mouse-follow-nearest-node): Use mouse-set-point.
6885 (Info-fontify-node, Info-goto-node, Info-mode-menu)
6886 (Info-fontify-node): `Goto' goes to `Go to'.
6887 (Info-fontify-node): Add help-echo to xref links.
6888
6889 2000-10-15 Eli Zaretskii <eliz@is.elta.co.il>
6890
6891 * eshell/em-unix.el (eshell-du-prefer-over-ange): Doc fix.
6892
6893 2000-10-15 Stefan Monnier <monnier@cs.yale.edu>
6894
6895 * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
6896 Use plist-get and allow :inherit.
6897
6898 * emacs-lisp/cl-macs.el (cl-do-arglist):
6899 Use plist-get and plist-member instead of memq.
6900
6901 * emacs-lisp/ewoc.el (ewoc-location): New function.
6902 (ewoc-enter-after, ewoc-enter-before): Document return value.
6903 * pcvs.el (cvs-make-cvs-buffer, cvs-run-process):
6904 Don't need make-local-hook any more.
6905 (cvs-addto-collection): Return the new tin.
6906 (cvs-mode-insert): Jump to the new line.
6907
6908 * jit-lock.el (jit-lock-fontify-buffer): Remove.
6909
6910 * arc-mode.el (archive-zoo-summarize): Fix from gnu.emacs.bug.
6911
6912 * font-lock.el (font-lock-syntactically-fontified): New var.
6913 (font-lock-fontify-syntactic-keywords-region): Use it.
6914 (font-lock-mode): Fix docstring. Don't need make-local-hook anymore.
6915
6916 * diff-mode.el (diff-find-file-name): Fix regexp.
6917
6918 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
6919 (cl-builtin-clrhash, cl-builtin-maphash): Add for byte-compatibility.
6920
6921 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix.
6922 (sh-mode-syntax-table): Add punctuation syntax for < and >.
6923 (sh-mode): Don't make all vars local here.
6924 (sh-kw): Reformat.
6925 (sh-set-shell): Use dolist. Don't set indent-region-function.
6926 (sh-mode-syntax-table): Use pop.
6927 (sh-remember-variable): Use push.
6928 (sh-help-string-for-variable): Use memq.
6929 (sh-safe-backward-sexp): Remove.
6930 (sh-safe-forward-sexp): Add ARG.
6931 (sh-get-indent-info, sh-prev-stmt): Use it.
6932 (sh-prev-line): Simplify by using forward-comment.
6933 (sh-this-is-a-continuation): Simplify.
6934 (sh-learn-buffer-indent): Use dolist.
6935 (sh-do-nothing): Remove.
6936 (sh-set-char-syntax, sh-set-here-doc-region):
6937 Use inhibit-modification-hooks.
6938 (sh-name-style): Use mapcar and push.
6939 (sh-load-style): Use dolist.
6940 (sh-save-styles-to-buffer): Use with-current-buffer and pp.
6941 (sh-case, sh-while-getopts): Use propertize directly rather
6942 than sh-electric-rparen.
6943
6944 2000-10-14 Stefan Monnier <monnier@cs.yale.edu>
6945
6946 * textmodes/tex-mode.el: Require CL when compiling.
6947 (tex-mode-syntax-table): Init immediately.
6948 (tex-mode-map): Bind M-RET to latex-insert-item.
6949 (latex-mode): Set indent-line-function to latex-indent.
6950 (tex-common-initialization): Don't setup the syntax-table any more.
6951 (latex-insert-item): New skeleton.
6952 (tex-next-unmatched-end): Fix copy/paste braino.
6953 (latex-syntax-after, latex-skip-close-parens, latex-down-list)
6954 (latex-indent, latex-find-indent): New functions.
6955 (tex-indent-allhanging, tex-indent-arg, tex-latex-indent-syntax-table)
6956 (tex-indent-item, tex-indent-item-re, tex-indent-basic): New vars.
6957 (tex-compilation-parse-errors): Use with-syntax-table.
6958
6959 2000-10-15 Miles Bader <miles@gnu.org>
6960
6961 * font-lock.el (font-lock-comment-face): Change dark-background,
6962 color, non-tty, default to `chocolate1'.
6963
6964 2000-10-13 John Wiegley <johnw@gnu.org>
6965
6966 * eshell/esh-util.el (require): Added a missing `require' form,
6967 needed when compiling (for an ange-ftp macro definition).
6968
6969 2000-10-13 Dave Love <fx@gnu.org>
6970
6971 * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch.
6972
6973 2000-10-13 Gerd Moellmann <gerd@gnu.org>
6974
6975 * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc fix.
6976
6977 * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace
6978 transparent -colors 8).
6979
6980 2000-10-13 Stephen Gildea <gildea@alum.mit.edu>
6981
6982 * time-stamp.el (time-stamp): Fixed bug in new multi-line code
6983 that breaks with old list format timestamps.
6984 (time-stamp-warn-inactive, time-stamp-old-format-warn)
6985 (time-stamp-count, time-stamp-conversion-warn): Improved doc strings.
6986
6987 2000-10-13 John Wiegley <johnw@gnu.org>
6988
6989 * align.el, pcomplete.el, calendar/timeclock.el,
6990 eshell/esh-module.el, eshell/eshell.el: Removed URL reference.
6991
6992 * calendar/timeclock.el (timeclock-find-discrep): A fix to some
6993 faulty math, where holiday hours were being computing as seconds.
6994
6995 2000-10-13 John Wiegley <johnw@gnu.org>
6996
6997 * desktop.el (desktop-buffer-modes-to-save): Added a global for
6998 specifying what "other" kinds of buffers should be saved.
6999 This used to be hard-coded.
7000 (desktop-buffer-misc-functions): A global for specifying how
7001 auxiliary data should be determined for special buffer types.
7002 (desktop-save-buffer-p): Use `desktop-buffer-modes-to-save',
7003 instead of hard-coding the special buffer types.
7004 (desktop-save): Run `desktop-buffer-misc-functions' to gather
7005 auxiliary data, instead of hard-coding for Info buffers and dired.
7006 (desktop-buffer-info-misc-data): Aux function for determining Info
7007 buffer auxiliary info.
7008 (desktop-buffer-dired-misc-data): Likewise, but for dired buffers.
7009 (desktop-buffer-info): Changed this function to use the info
7010 gathered above.
7011 (desktop-create-buffer): Be a little more careful about what
7012 `minor-mode' means before calling it. This is important for some
7013 buffer types.
7014
7015 2000-10-13 John Wiegley <johnw@gnu.org>
7016
7017 * eshell/esh-util.el: Added a global form which declares an
7018 autoload for `parse-time-string', if that function is not already
7019 defined, and if parse-time.el is available on the user's system.
7020
7021 * eshell/em-ls.el (eshell-ls-applicable): Extended this function
7022 to be aware of ange-ftp user info.
7023 (eshell-do-ls): Bind `ange-cache'. Also, use `eshell-file-attributes'.
7024 (eshell-ls-annotate): Use `eshell-file-attributes'.
7025 (eshell-ls-file): Made the user-id printing code a bit smarter.
7026
7027 * eshell/esh-util.el (eshell-ange-ls-uids): Added variable, to
7028 allow identification of alias user ids in remote directories.
7029 It's manual, but there's no other way to know when the current user
7030 on the local machine, is also the owning user on the remote machine.
7031 (fboundp): Bind `ange-cache'.
7032 (eshell-directory-files-and-attributes): Re-organized the logic a
7033 bit to use `eshell-file-attributes' instead of `file-attributes'.
7034 The former is more sensitive to directories that are read via FTP,
7035 and knows how to use ange-ftp to determine full attribute
7036 information, instead of just the name and last modtime.
7037 (eshell-current-ange-uids): Return the current user id when in a
7038 remote directory.
7039 (eshell-parse-ange-ls): Parse a full directory listing that has
7040 been returned by ange-ftp.
7041 (eshell-file-attributes): This beefed up version of
7042 `file-attributes' is only special if the user is currently in a
7043 remote directory, in which case it does a lot of work to find out
7044 what the real attributes of a file are, as they appear on the
7045 remote machine. This makes usage of remote directories (i.e.,
7046 ange-ftp pathnames) much more useful. You can now use Eshell as a
7047 full-fledged FTP client, with much more manipulation ability than
7048 most other clients.
7049
7050 * eshell/em-unix.el (eshell-du-prefer-over-ange): Added a new
7051 variable, which means that Eshell's du should always be preferred
7052 in remote directories.
7053 (eshell-shuffle-files): Use `eshell-file-attributes', rather than
7054 just `file-attributes'.
7055 (eshell-mvcp-template): Bind `ange-cache', to improve performance
7056 when reading remote directories. This is an Eshell-specific
7057 variable (not part of ange-ftp).
7058 (eshell/ln): Bind `ange-cache'.
7059 (eshell/du): Added some extra logic for determining when to use
7060 Eshell's du (which is slow), and when to use the external version
7061 (which may or may not exist).
7062
7063 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
7064 Call `eshell-interactive-process', rather than using
7065 `get-buffer-process', since backgrounded processes don't count in
7066 the context of this function's logic.
7067
7068 * eshell/esh-arg.el (eshell-parse-double-quote): Moved a call to
7069 `forward-char', so that null strings are parsed correctly.
7070
7071 2000-09-13 John Wiegley <johnw@gnu.org>
7072
7073 * eshell/em-pred.el (eshell-pred-file-type)
7074 (eshell-pred-file-links, eshell-pred-file-size):
7075 Use `eshell-file-attributes'. This is more correct over ange-ftp.
7076
7077 * eshell/em-glob.el (eshell-extended-glob): Bind `ange-cache', so
7078 that remote file globbing is more efficient.
7079
7080 * eshell/em-ls.el (eshell-ls-dir): Use `expand-file-name' when
7081 gathering the files and attributes within a directory.
7082
7083 * eshell/em-unix.el (eshell/cat): If any of the files passed on
7084 the command line is a special file (not a regular file, directory
7085 or symlink), always attempt to call the external version of cat.
7086
7087 2000-09-13 John Wiegley <johnw@gnu.org>
7088
7089 * eshell/esh-mode.el (eshell-find-tag): Corrections to the
7090 Eshell-friendly version of find-tag.
7091
7092 2000-10-13 Miles Bader <miles@lsi.nec.co.jp>
7093
7094 * image-file.el (image-file-name-extensions)
7095 (image-file-name-regexps): Add autoload cookies.
7096
7097 2000-10-13 Kenichi Handa <handa@etl.go.jp>
7098
7099 * international/mule-cmds.el (select-safe-coding-system): If FROM
7100 is string, show it in *Warning* buffer.
7101
7102 2000-10-13 Eli Zaretskii <eliz@is.elta.co.il>
7103
7104 * startup.el (normal-top-level): Use display-popup-menus-p instead
7105 of window-system.
7106 (command-line): Use display-graphic-p instead of window-system.
7107 (command-line-1): Use display-popup-menus-p and display-mouse-p
7108 instead of window-system.
7109
7110 2000-10-12 Sam Steingold <sds@gnu.org>
7111
7112 * tooltip.el (tooltip-use-echo-area): New user variable.
7113 (tooltip-show): Use it to choose between `x-show-tip' and `message'.
7114
7115 2000-10-12 Dave Love <fx@gnu.org>
7116
7117 * recentf.el: Maintainer's checkdoc fixes.
7118
7119 * startup.el (normal-top-level-add-subdirs-to-load-path):
7120 Use character class, not ASCII when matching file names.
7121 (fancy-splash-head): Add trailing slash to URL.
7122 (command-line): Don't require XPM support for toolbar.
7123
7124 * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix.
7125 (cperl-invalid-face): Revert last change.
7126 (cperl-init-faces): Quote cperl-invalid-face.
7127
7128 2000-10-12 Kenichi Handa <handa@etl.go.jp>
7129
7130 * startup.el (fancy-splash-text): Remove superfluous quote.
7131
7132 2000-10-12 Gerd Moellmann <gerd@gnu.org>
7133
7134 * startup.el (fancy-splash-screens): Don't add a pre-command hook.
7135 (fancy-splash-pre-command, fancy-splash-pending-command): Removed.
7136 (command-line-1): Don't use fancy-splash-pending-command.
7137 (fancy-splash-screens-1): Goto point-min after inserting text.
7138
7139 * calendar/diary-lib.el (diary-cyclic): Doc fix from Ed Reingold.
7140
7141 * progmodes/scheme.el (scheme-mode-map): Use lisp-mode-shared-map
7142 instead of shared-lisp-mode-map.
7143
7144 2000-10-12 Miles Bader <miles@lsi.nec.co.jp>
7145
7146 * faces.el (header-line): Change tty-variant to use underlining.
7147
7148 * isearch.el (isearch-set-lazy-highlight-faces-at): New function.
7149 (isearch-highlight): Restore lazy-isearch face properties at old
7150 position, and suppress them at new position.
7151 (isearch-dehighlight): Restore lazy-isearch face properties.
7152 (isearch-lazy-highlight-update): Add lazy-isearch overlays even
7153 over the real isearch overlay, but in that case, don't give it a
7154 face property. Use `push'.
7155
7156 2000-10-12 Kenichi Handa <handa@etl.go.jp>
7157
7158 * man.el (Man-getpage-in-background): Fix previous change.
7159 Decode the process output only when we are in multibyte mode.
7160
7161 2000-10-11 Dave Love <fx@gnu.org>
7162
7163 * info.el (Info-mode-menu): Fix some help.
7164 (info-tool-bar-map): Add entry for Info-last.
7165
7166 * toolbar/cancel.xpm, toolbar/jump_to.xpm, toolbar/right_arrow.xpm:
7167 * toolbar/close.xpm, toolbar/left_arrow.xpm, toolbar/save.xpm:
7168 * toolbar/copy.xpm, toolbar/mail.xpm, toolbar/saveas.xpm:
7169 * toolbar/cut.xpm, toolbar/mail_compose.xpm:
7170 * toolbar/search-replace.xpm, toolbar/exit.xpm:
7171 * toolbar/mail_send.xpm, toolbar/search.xpm, toolbar/fld_open.xpm:
7172 * toolbar/new.xpm, toolbar/spell.xpm, toolbar/help.xpm:
7173 * toolbar/open.xpm, toolbar/undo.xpm, toolbar/home.xpm:
7174 * toolbar/paste.xpm, toolbar/up_arrow.xpm, toolbar/index.xpm:
7175 * toolbar/preferences.xpm, toolbar/info.xpm, toolbar/print.xpm:
7176 Reduce colour requirements to 25 overall. (Probably wants
7177 revisiting from the originals to reduce further.)
7178
7179 2000-10-11 Eli Zaretskii <eliz@is.elta.co.il>
7180
7181 * hexl.el (hexlify-buffer): Bind coding-system-for-write to
7182 buffer-file-coding-system, instead of raw-text.
7183 (dehexlify-buffer): Bind coding-system-for-read to
7184 buffer-file-coding-system, instead of raw-text.
7185
7186 2000-10-11 Sam Steingold <sds@gnu.org>
7187
7188 * progmodes/cperl-mode.el (cperl-invalid-face): Double-quote
7189 `underline' - fixes the bug introduced on 2000-09-21.
7190
7191 2000-10-11 Dave Love <fx@gnu.org>
7192
7193 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
7194 Avoid compiler warnings.
7195 (scheme-mode): Doc fix.
7196 (scheme-font-lock-keywords-1): Match `define-syntax'.
7197
7198 2000-10-11 Miles Bader <miles@lsi.nec.co.jp>
7199
7200 * faces.el (frame-set-background-mode): Pay attention to saved
7201 face specs as well as default ones. Only do anything if the
7202 bg-mode or display-type has actually changed. Use `dolist'.
7203 (region): Make dark-background `region' face less in-your-face.
7204
7205 2000-10-10 Sam Steingold <sds@gnu.org>
7206
7207 * chistory.el, ielm.el, ledit.el:
7208 * progmodes/inf-lisp.el, progmodes/scheme.el:
7209 Use `lisp-mode-shared-map' instead of `shared-lisp-mode-map'.
7210
7211 2000-10-10 Stefan Monnier <monnier@cs.yale.edu>
7212
7213 * textmodes/texinfo.el: Update copyright and fix typo.
7214
7215 * desktop.el (desktop-modes-not-to-save): New var.
7216 (desktop-save-buffer-p): Use it.
7217 Also, obey desktop-buffers-not-to-save even for non-file buffers.
7218 (desktop-buffer-file): Use pop-to-buffer if switch-to-buffer fails.
7219
7220 2000-10-10 Dave Love <fx@gnu.org>
7221
7222 * toolbar/tool-bar.el (tool-bar-add-item)
7223 (tool-bar-add-item-from-menu): Don't favour XPM icons on mono display.
7224
7225 * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm:
7226 * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm:
7227 * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm:
7228 * toolbar/index.pbm, toolbar/info.pbm, toolbar/jump_to.pbm:
7229 * toolbar/left_arrow.pbm, toolbar/mail.pbm, toolbar/mail_compose.pbm:
7230 * toolbar/mail_send.pbm, toolbar/new.pbm, toolbar/open.pbm:
7231 * toolbar/paste.pbm, toolbar/preferences.pbm, toolbar/print.pbm:
7232 * toolbar/right_arrow.pbm, toolbar/save.pbm, toolbar/saveas.pbm:
7233 * toolbar/search-replace.pbm, toolbar/search.pbm, toolbar/spell.pbm:
7234 * toolbar/undo.pbm, toolbar/up_arrow.pbm: New files straight from
7235 the .xpms; probably need retouching.
7236
7237 2000-10-10 Miles Bader <miles@lsi.nec.co.jp>
7238
7239 * subr.el (add-to-list): Add optional argument APPEND.
7240 * battery.el (display-battery): Use `add-to-list'.
7241
7242 2000-10-09 Thien-Thi Nguyen <ttn@gnu.org>
7243
7244 * play/zone.el (zone-timer, zone-wc-tbl): Rework these vars as symbol
7245 properties.
7246 (zone, zone-when-idle, zone-leave-me-alone)
7247 (zone-pgm-whack-chars): Use new symbol properties.
7248
7249 * battery.el (display-battery): Doc spelling fix.
7250
7251 * vc.el (with-vc-file, edit-vc-file): Specify `indent-function'
7252 property.
7253
7254 2000-10-09 Dave Love <fx@gnu.org>
7255
7256 * toolbar/tool-bar.el (tool-bar-mode): Check whether tool-bar-map
7257 has been initialized before calling tool-bar-setup.
7258 (tool-bar-add-item-from-menu): Add autoload cookie.
7259
7260 2000-10-09 Eli Zaretskii <eliz@is.elta.co.il>
7261
7262 * menu-bar.el (send-mail-item-name): New function.
7263 (menu-bar-tools-menu) <compose-mail>: Use it to display the value
7264 of mail-user-agent in the menu. Don't display the "Send Mail"
7265 item if mail-user-agent is nil or its value is ignore.
7266 (menu-bar-tools-menu) <rmail>: Don't display the "Read Mail" item
7267 if read-mail-command is nil or its value is ignore.
7268
7269 * mouse.el ([header-line mouse-1]): Bind to mouse-select-window.
7270
7271 2000-10-09 Miles Bader <miles@gnu.org>
7272
7273 * toolbar/up_arrow.xpm: Flip to put highlight in correct place.
7274 Correct image size.
7275 * toolbar/left_arrow.xpm: Correct image size.
7276
7277 * jka-compr.el: Don't call `jka-compr-install' when loading (it
7278 will be done by the definition of `auto-compression-mode' if
7279 necessary. Move code to uninstall existing file-name handler
7280 before definition of `auto-compression-mode'.
7281
7282 * image-file.el (auto-image-file-mode): Move to the end of the
7283 file, because `define-minor-mode' actually calls the mode-function
7284 if the associated variable is non-nil, which requires that all
7285 needed functions be already defined.
7286
7287 * mouse.el (popup-menu): Balance parens.
7288
7289 2000-10-08 Stefan Monnier <monnier@cs.yale.edu>
7290
7291 * mouse.el (popup-menu): Move the command call outside the loop
7292 so that popup-menu returns whatever the command returns.
7293
7294 * progmodes/etags.el: Docstring fixes. Maintainer line updated.
7295 (initialize-new-tags-table): Use run-hook-with-args-until-success.
7296 (find-tag): Use pop-to-buffer if switch-to-buffer failed.
7297 (tags-table-format-functions): Renamed from tags-table-format-hooks.
7298
7299 * vc.el (vc-version-diff): diff-switches can be a list.
7300 Use relative filenames for prettier output.
7301
7302 * pcvs.el (cvs-append-to-ignore, cvs-vc-command-advice)
7303 (vc-post-command-functions): Remove old-VC compatibility code.
7304
7305 * newcomment.el (comment-indent-default): Autoload.
7306
7307 * font-lock.el (font-lock-defaults): Make buffer-local.
7308 (font-lock-turn-on-thing-lock): Use jit-lock-refontify.
7309 (font-lock-choose-keywords):
7310 Ignore LEVEL unless KEYWORDS is a list of syms.
7311 (c-keywords, c++-keywords, objc-keywords, java-keywords):
7312 Don't wrap regexp-opt things in \(...\) unnecessarily.
7313
7314 * jit-lock.el: Don't require font-lock any more.
7315 (jit-lock-functions): Make buffer-local.
7316 (jit-lock-saved-fontify-buffer-function): Remove.
7317 (jit-lock-mode): Remove autoload cookie.
7318 Remove font-lock specific code.
7319 (jit-lock-unregister): Don't bother handling complex hooks any more.
7320 (jit-lock-refontify): New function.
7321 (jit-lock-fontify-buffer): Use it.
7322 (jit-lock-function-1): Replaced by jit-lock-fontify-now.
7323 (jit-lock-fontify-now): Renamed from jit-lock-function-1.
7324 Add optional args START and END.
7325 Never call font-lock-fontify-region directly.
7326 (jit-lock-function, jit-lock-stealth-fontify): Use it.
7327
7328 * emacs-lisp/regexp-opt.el (regexp-opt): Add \<...\> if PAREN=`words'.
7329
7330 2000-10-08 Dave Love <fx@gnu.org>
7331
7332 * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
7333
7334 * progmodes/icon.el (icon-mode-map): Add name to menu-bar keymap.
7335
7336 * play/studly.el (studlify-region, studlify-word): Add autoload
7337 cookie.
7338
7339 * play/morse.el (morse-region, unmorse-region): Add autoload
7340 cookie.
7341
7342 * play/spook.el (spook-phrases-file): Use expand-file-name, not
7343 concat.
7344
7345 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Don't
7346 insist on symbols starting with word syntax.
7347 (lisp-mode-shared-map): Renamed from shared-lisp-mode-map.
7348 (eval-defun-1): Doc fix.
7349 (indent-sexp): Use nconc to build up indent-stack.
7350
7351 * mail/sendmail.el: Byte-compile-dynamic since it gets loaded by
7352 Gnus with little use.
7353 (mail-setup-hook): Add mail-abbrevs-setup to options.
7354
7355 * recentf.el: Doc fixes.
7356
7357 * vcursor.el (vcursor-cs-binding): Remove compatibility code.
7358 Clean up remainder.
7359
7360 * timezone.el (timezone-parse-date): Doc fix. Fix regexps for (5)
7361 without timezone and (8) with timezone to enforce some whitespace.
7362 Simplify code somewhat.
7363
7364 * options.el (list-options): Doc that you should use customize.
7365
7366 * iswitchb.el (iswitchb-mode): Add :require.
7367
7368 * info.el (Info-goto-node, Info-menu): Doc fix.
7369 (Info-mode-menu): Bind beginning-of-buffer, Info-edit
7370 (info-tool-bar-map): New variable.
7371 (Info-mode): Use it.
7372 (Info-edit-map): Define all in defvar.
7373 (speedbar-attached-frame): Avoid compiler warning.
7374
7375 * toolbar/tool-bar.el (tool-bar-map): Define it empty.
7376 (global-map): Bind [tool-bar] to a filtered map.
7377 (tool-bar-add-item): Remove MAP arg. Allow PBM icons.
7378 (tool-bar-add-item-from-menu): Use tool-bar-map, not tb-map.
7379 Allow PBM icons.
7380 (tool-bar-setup): Adjust calls of tool-bar-add-item.
7381
7382 * toolbar/index.xpm, toolbar/jump_to.xpm, toolbar/attach.xpm:
7383 * toolbar/up_arrow.xpm, toolbar/left_arrow.xpm, toolbar/home.xpm:
7384 * toolbar/right_arrow.xpm: New files. Renamed from tigert's
7385 icons, except up_arrow, which is left-arrow rotated.
7386
7387 * imenu.el (imenu-add-to-menubar): Fix last change.
7388
7389 2000-10-08 Peter Breton <pbreton@ne.mediaone.net>
7390
7391 * generic-x.el (rul-generic-mode): Remove eval-when-compile
7392 statements. Suggested by Stefan Monnier <monnier@cs.yale.edu>.
7393
7394 2000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
7395
7396 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Fix
7397 typos in doc strings.
7398
7399 * font-lock.el (font-lock-mode, global-font-lock-mode): Mention in
7400 the doc strings how to customize Font Lock faces.
7401
7402 * mouse.el (mouse-drag-mode-line-1): Fix an off-by-one error in
7403 computing growth when dragging the header line.
7404
7405 2000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
7406
7407 * simple.el (kill-line): Doc fix.
7408
7409 2000-10-08 Miles Bader <miles@gnu.org>
7410
7411 * faces.el (secondary-selection): Make foreground visible on tty.
7412
7413 * jka-compr.el (auto-compression-mode): Move to the end of the
7414 file, because `define-minor-mode' actually calls the mode-function
7415 if the associated variable is non-nil, which requires that all
7416 needed functions be already defined.
7417 (with-auto-compression-mode): Add autoload cookie.
7418
7419 2000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
7420
7421 * files.el (find-backup-file-name) [ms-dos]: If support for long
7422 file names is not available, behave as if version-control were set
7423 to never.
7424
7425 2000-10-07 Dave Love <fx@gnu.org>
7426
7427 * net/browse-url.el (browse-url-gnome-moz-arguments): New option.
7428 (browse-url-gnome-moz): New function.
7429 (browse-url-browser-function): Use it.
7430 Suggested by Colin Walters <walters@cis.ohio-state.edu>.
7431
7432 2000-10-07 Stefan Monnier <monnier@cs.yale.edu>
7433
7434 * indent.el (tab-always-indent): New var.
7435 (indent-for-tab-command): Use it.
7436
7437 * files.el (set-auto-mode): Ignore unknown -*- mode -*- rather than
7438 raise an error. This way it can still default to a sane value.
7439
7440 2000-10-06 Stefan Monnier <monnier@cs.yale.edu>
7441
7442 * startup.el (fancy-splash-screens): Use local rather than global map.
7443 Don't use `update-menu-bindings' any more.
7444 Get rid of assumptions about keymap representation.
7445
7446 2000-10-06 Dave Love <fx@gnu.org>
7447
7448 * textmodes/fill.el (sentence-end-double-space)
7449 (sentence-end-without-period): Doc fix.
7450 (adaptive-fill-regexp): Purecopy.
7451 (unjustify-current-line): Use line-end-position.
7452 (fill-individual-paragraphs-prefix): Use line-beginning-position.
7453
7454 * net/eudc-vars.el (eudc): Add :version, :link.
7455
7456 * international/mule-conf.el (file-coding-system-alist): Use \', not $.
7457
7458 * emacs-lisp/find-func.el (find-function-regexp): Remove spurion.
7459 Fix for define-minor-mode.
7460 (function-at-point): Alias to function-called-at-point.
7461
7462 * custom.el (custom-declare-variable, custom-set-variables): Use mapc.
7463
7464 * simple.el (backward-word): Doc fix.
7465
7466 * image-file.el (image-file-name-regexp): image-file-regexps ->
7467 image-file-name-regexps.
7468 (image-file-name-extensions): Add pbm.
7469
7470 2000-10-06 Stefan Monnier <monnier@cs.yale.edu>
7471
7472 * smerge-mode.el (smerge-diff): Setup the buffer's default-directory
7473 and add filename to the names so that diff-mode can jump to source.
7474
7475 * font-lock.el (font-lock-defaults-alist): Remove the TeX entries.
7476 (tex-font-lock-keywords, tex-font-lock-keywords-2)
7477 (tex-font-lock-keywords-1): Remove.
7478 (font-lock-turn-on-thing-lock): Use jit-lock-register.
7479 (font-lock-turn-off-thing-lock): Use jit-lock-unregister.
7480 (font-lock-default-fontify-region):
7481 Expand beg..end correctly when just following a multiline region.
7482 (font-lock-fontify-anchored-keywords):
7483 Include the anchor text as part of the multiline.
7484
7485 2000-10-06 Gerd Moellmann <gerd@gnu.org>
7486
7487 * loadup.el (toplevel): Load `loaddefs' before `help' because the
7488 latter needs the autoloaded define-minor-mode macro during the
7489 bootstrap.
7490
7491 * startup.el (command-line): For now, activate tool-bar-mode only
7492 if XPM images are supported.
7493
7494 * mouse.el (mouse-drag-header-line): Don't allow resizing a
7495 window by dragging a header-line at the top of the frame; that's
7496 confusing because the header-line doesn't move.
7497 (mouse-drag-mode-line-1): Use event-* and posn-* functions instead
7498 of treating the event as a list. Some cleanup.
7499
7500 2000-10-06 Miles Bader <miles@gnu.org>
7501
7502 * simple.el (display-message-or-buffer): New function.
7503 (shell-command-on-region): Use `display-message-or-buffer'.
7504
7505 * emacs-lisp/easy-mmode.el (define-derived-mode): Tweak generated
7506 docstring parts.
7507
7508 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
7509 (smbclient-prompt-regexp): Add usage note to doc string.
7510 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Removed.
7511 (ftp-mode, smbclient-mode): Don't set `font-lock-defaults'.
7512 Use add-hook for adding the comint filter function, and only do so
7513 if it's not already in the global hook list.
7514 (ftp-mode, smbclient-mode, nslookup-mode): Remove redundant calls
7515 to `make-local-variable'.
7516 (nslookup-font-lock-keywords): Remove prompt entry.
7517 (nslookup): Don't set the process-filter.
7518 (finger): Exit the loop correctly when the regexps list runs out.
7519 (ftp, smbclient, smbclient-list-shares):
7520 Set the real major mode immediately, not after execing.
7521 Use `pop-to-buffer' instead of `switch-to-buffer-other-window'.
7522
7523 * comint.el (comint-watch-for-password-prompt): Use STRING as a prompt.
7524
7525 2000-10-05 Stefan Monnier <monnier@cs.yale.edu>
7526
7527 * progmodes/compile.el (compile-collect-regexps): Use dolist and push.
7528
7529 * which-func.el (which-func-format): Remove spurious space.
7530 (which-func-mode): Don't make it permanent-local.
7531 (which-func-ff-hook): Allow which-func-maxout to be nil.
7532 (which-func-update): Simplify a bit. Only run if which-func-mode is t.
7533 (which-func-mode): Simplify.
7534 Use post-command-idle-hook rather than post-command-hook.
7535 Go through all buffers and update their state.
7536 (which-function): Also try add-log-current-defun-function.
7537
7538 * vc.el (with-vc-properties): Use conses rather than length-2 lists.
7539 (vc-checkout, vc-finish-steal, vc-checkin, vc-revert-file):
7540 Update call to with-vc-properties accordingly.
7541 (vc-comment-search-reverse, vc-comment-search-forward): Docstring fix.
7542 (vc-revert-buffer): More careful about window selection and deletion.
7543 (vc-switch-backend): Slight reorg to avoid calling `registered' twice.
7544
7545 * pcvs.el (cvs-ediff-exit-hook): Expect delete-window to fail.
7546 (cvs-retrieve-revision): Reuse a pre-existing buffer.
7547 (cvs-dired-action): Change the default to quickdir.
7548
7549 * newcomment.el (comment-indent): Delegate to indent-according-to-mode
7550 if comment-indent-function returns nil.
7551 (comment-indent-default): New function.
7552 (comment-indent-function): Use it and document the new semantics.
7553
7554 * image-file.el: Docstring fixes.
7555
7556 * help.el (help-xref-on-pp): Use match-string.
7557 (describe-variable): New arg BUFFER.
7558 Store the current buffer in the help-xref-stack.
7559 (temp-buffer-resize-mode): Use define-minor-mode.
7560
7561 * jit-lock.el (jit-lock-mode): Use jit-lock-defer-contextually
7562 consistently with its docstring.
7563 Set jit-lock-first-unfontify-pos in an idempotent way.
7564 (jit-lock-register): Autoload and add arg CONTEXTUAL.
7565
7566 2000-10-05 Alex Schroeder <alex@gnu.org>
7567
7568 * sql.el (sql-mysql-options): New variable.
7569 (sql-mysql): Use it.
7570
7571 2000-10-05 Miles Bader <miles@lsi.nec.co.jp>
7572
7573 * image.el (image): New group.
7574
7575 * smerge-mode.el (smerge-mine-face, smerge-other-face)
7576 (smerge-base-face, smerge-markers-face): Add dark-background variants.
7577
7578 2000-10-04 Peter Breton <pbreton@ne.mediaone.net>
7579
7580 * net/net-utils.el (nslookup-font-lock-keywords)
7581 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
7582 Ignore the value of wqindow-system; always define keywords
7583
7584 2000-10-05 Kenichi Handa <handa@etl.go.jp>
7585
7586 * startup.el (fancy-splash-screens): Remove the code for
7587 debugging; `(trace-to-stderr "EXITTT\n")'.
7588
7589 2000-10-05 Miles Bader <miles@gnu.org>
7590
7591 * diff-mode.el (diff-goto-source): Update call to
7592 `diff-hunk-status-msg' to reflect new REV variable.
7593
7594 2000-10-04 Stefan Monnier <monnier@cs.yale.edu>
7595
7596 * progmodes/icon.el (icon-mode):
7597 Don't gratuitously override the default for comment-column.
7598
7599 * vc-hooks.el (vc-mode-line): Fix interactive spec.
7600
7601 * jit-lock.el (with-buffer-unmodified): Use unwind-protect.
7602 (jit-lock-mode): Make sure font-lock-keywords-only is bound before use.
7603 (jit-lock-functions): New var.
7604 (jit-lock-function-1): Use it if non-nil.
7605 Don't switch the syntax-table. Don't set parse-sexp-lookup-properties.
7606 Set the `fontified' property before doing the fontification to avoid
7607 repeatedly going through the same error.
7608 Don't turn errors into messages.
7609 (jit-lock-register, jit-lock-unregister): New functions.
7610
7611 * dired.el (dired-mark-pop-up): Turn comment into docstring.
7612 Use with-current-buffer.
7613
7614 * dired-aux.el (dired-do-create-files, dired-kill-tree):
7615 Turn comment into docstring.
7616
7617 * apropos.el (apropos-mode): Use define-derived-mode.
7618
7619 2000-10-04 Gerd Moellmann <gerd@gnu.org>
7620
7621 * startup.el (fancy-splash-pending-command): New variable.
7622 (fancy-splash-pre-command): New function.
7623 (fancy-splash-screens): Rewritten.
7624 (command-line-1): If fancy-splash-pending-command is set, call it
7625 interactively.
7626
7627 2000-10-04 Dave Love <fx@gnu.org>
7628
7629 * toolbar/tool-bar.el (tool-bar-setup): New function.
7630 (tool-bar-mode): Use it.
7631
7632 * subr.el (substitute-key-definition): Doc fix.
7633 (play-sound-file): New command.
7634
7635 2000-10-04 Andre Spiegel <spiegel@gnu.org>
7636
7637 * vc-hooks.el (vc-before-save, vc-default-make-version-backups,
7638 vc-version-backup-file-name): New functions.
7639
7640 * files.el (basic-save-buffer): Call vc-before-save before saving.
7641
7642 * vc-cvs.el (vc-cvs-make-version-backups): Return t if
7643 vc-cvs-stay-local-p.
7644
7645 * vc.el (vc-revert-buffer): Handle empty diff properly.
7646 (vc-version-backup-file): New function.
7647 (vc-checkout): Create a version backup if necessary.
7648 (vc-checkin): If a version backup file exists, delete it.
7649 (vc-version-diff): Diff locally using version backups, if available.
7650 (vc-revert-file): If there's a version backup, revert locally.
7651 (vc-transfer-file): Use version backup for base version, if
7652 available. If not, ask for confirmation whether to get it from the
7653 server. Update mode line before check-in.
7654
7655 2000-10-04 Dave Love <fx@gnu.org>
7656
7657 * toolbar/tool-bar.el (tool-bar-setup): New function.
7658 (tool-bar-mode): Use it.
7659
7660 2000-10-04 Peter Breton <pbreton@ne.mediaone.net>
7661
7662 * net/net-utils.el (nslookup-font-lock-keywords)
7663 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
7664 Only set if window-system is non-nil
7665 (net-utils-run-program): Returns buffer.
7666 (network-connection-reconnect): Added this function.
7667
7668 * generic.el:
7669 Incorporates extensive cleanup and docfixes by
7670 Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu).
7671 Uses cl compile-time macros.
7672 (generic-mode-name, generic-comment-list)
7673 (generic-keywords-list, generic-font-lock-expressions)
7674 (generic-mode-function-list, generic-mode-syntax-table):
7675 Removed variables.
7676 (generic-mode-alist): Renamed to generic-mode-list.
7677 (generic-find-file-regexp): Default changed to "^#".
7678 (generic-read-type): Uses completing read on generic-mode-list.
7679 (generic-mode-sanity-check): removed this function.
7680 (generic-add-to-auto-mode): Removed this function
7681 (generic-mode-internal): Bind mode-specific definitions
7682 into function instead of putting them in alist.
7683 (generic-mode-set-comments): Reworked extensively.
7684 (generic-mode-find-file-hook): Simplified regexp searching
7685 (generic-make-keywords-list): Omit extra pair of parens
7686
7687 * find-lisp.el (find-lisp-find-files-internal):
7688 Make sure directory name ends with "/".
7689
7690 * generic-x.el (apache-conf-generic-mode):
7691 Regexp now allows leading whitespace.
7692 (rc-generic-mode): Added eval-when-compile
7693 around generic-make-keywords-list.
7694 Deleted duplicate regexp
7695 (rul-generic-mode): Added eval-when-compile
7696 around generic-make-keywords-list.
7697 (etc-fstab-generic-mode): New generic mode.
7698 (rul-generic-mode): Removed one eval-when-compile
7699 which caused a max-specpdl-size exceeded error.
7700
7701 2000-10-04 Miles Bader <miles@gnu.org>
7702
7703 * simple.el (minibuffer-temporary-goal-position): New variable.
7704 (next-history-element): Try to keep the position of point in the
7705 input string constant.
7706
7707 * dired-aux.el (dired-mark-read-file-name): Add optional arg DEFAULT.
7708 (dired-do-create-files): If there's only one file, pass it in as
7709 the DEFAULT arg to dired-mark-read-file-name.
7710
7711 2000-10-03 Stefan Monnier <monnier@cs.yale.edu>
7712
7713 * diff-mode.el (diff-font-lock-keywords): Minor regex fix.
7714 (diff-goto-source): Be smarter when choosing REVERSE or not.
7715
7716 * textmodes/texinfo.el (texinfo-heading-face): Forgot the var def.
7717 (texinfo-mode-menu): Add an explicit shortcut for update all.
7718
7719 2000-10-03 Andre Spiegel <spiegel@gnu.org>
7720
7721 * vc.el (vc-transfer-file, vc-default-receive-file): Rewritten to
7722 factorize backend-specific code cleanly (this was essentially
7723 conceived by Stefan Monnier).
7724 (vc-unregister): Function removed.
7725 (vc-revert-file): New function.
7726 (vc-revert-buffer): Delegate some of the work to it.
7727
7728 * vc-rcs.el (vc-rcs-fetch-master-state): Parse and remember
7729 default branch unconditionally.
7730 (vc-rcs-set-default-branch): New function.
7731 (vc-rcs-cancel-version, vc-rcs-checkin, vc-rcs-checkout): Use it.
7732 (vc-rcs-checkin): If an appropriate default branch has been set,
7733 force creation of that branch.
7734 (vc-rcs-receive-file): Rewritten to contain only backend-specific
7735 code (as suggested by Stefan Monnier).
7736
7737 2000-10-02 Gerd Moellmann <gerd@gnu.org>
7738
7739 * isearch.el (isearch-lazy-highlight-update): Don't put a lazy
7740 highlighting overlay with a different face over the overlay
7741 isearch uses to highlight the current match because that can lead
7742 to bad face combinations.
7743
7744 * loadup.el (toplevel): Load faces before isearch.
7745
7746 * isearch.el (isearch-faces): New custom group.
7747 (isearch): New defface; was already tested for in the code.
7748 (isearch-lazy-highlight-face): Changed to defface from defcustom.
7749 (isearch-highlight): Always use face `isearch'.
7750
7751 2000-10-02 Dave Love <fx@gnu.org>
7752
7753 * emacs-lisp/byte-opt.el (byte-optimize-lapcode): Don't bind
7754 unused vars. Treat byte-constant2 like byte-constant. Fix bogus
7755 comparison of opcode with operand.
7756
7757 2000-10-03 Miles Bader <miles@gnu.org>
7758
7759 * play/yow.el (yow): Don't display multi-line quotations in a *Help*
7760 buffer, since the echo area will now grow to accommodate them.
7761
7762 2000-10-02 Andre Spiegel <spiegel@gnu.org>
7763
7764 * vc-hooks.el (vc-registered): If FILE used to be registered under
7765 a certain backend, try that one first.
7766
7767 * vc.el (vc-responsible-backend): Undo the previous change in the
7768 argument list. Handle multiple backends correctly.
7769 (vc-find-new-backend): Function removed.
7770 (vc-register): Use vc-responsible-backend, as before.
7771 (vc-next-action-on-file): Do use vc-registered, not vc-backend.
7772
7773 2000-10-02 Gerd Moellmann <gerd@gnu.org>
7774
7775 * startup.el (fancy-splash-head): Change message below the
7776 logo.
7777
7778 2000-10-02 Miles Bader <miles@lsi.nec.co.jp>
7779
7780 * diff-mode.el (diff-goto-source): Emit a status message.
7781 (diff-test-hunk, diff-apply-hunk): Remove unneeded `let'.
7782 (diff-test-hunk): Fix doc string.
7783 (diff-apply-hunk): Only advance if `diff-advance-after-apply-hunk'.
7784 (diff-advance-after-apply-hunk): New variable.
7785 (diff-apply-hunk): Don't return a value.
7786
7787 2000-10-01 Stefan Monnier <monnier@cs.yale.edu>
7788
7789 * vc.el (vc-editable-p): Minor optimization.
7790 (edit-vc-file, vc-next-action-on-file): Don't use find-file.
7791 (vc-find-new-backend): New function split from vc-responsible-backend.
7792 (vc-register): Use it.
7793 (vc-responsible-backend): Remove REGISTER arg and add BACKENDS arg.
7794 (vc-unregister): Drop BACKEND arg (it doesn't work anyway).
7795 (vc-default-unregister, vc-revert-buffer): Docstring fix.
7796 (vc-clear-headers): Don't use find-file.
7797 (vc-revert-buffer): Use `and' again (must have been a braino).
7798 (vc-switch-backend): Only prompt if requested.
7799 Short circuit if nothing is to be done.
7800 Don't use vc-resynch-buffer which could lose unsaved editing.
7801 (vc-default-receive-file): Update call to vc-unregister.
7802 (with-vc-file, vc-next-action-on-file):
7803 Use vc-backend rather than vc-registered.
7804 (vc-next-action-on-file): Use intern-soft.
7805 Deal with read-only *vc-diff* buffer.
7806 (vc-transfer-file): Docstring fix.
7807
7808 * vc-rcs.el (vc-rcs-unregister): Keep a backup of the master file.
7809 (vc-rcs-receive-file): Avoid with-vc-properties.
7810 Update call to vc-unregister.
7811 Use constant `RCS' rather than (dynamically bound) var `backend'.
7812
7813 2000-10-01 Andre Spiegel <spiegel@gnu.org>
7814
7815 * vc.el (vc-next-action-on-file): Update mode line only if file
7816 is visited.
7817 (vc-start-entry): New argument initial-contents. Don't visit the file
7818 if it isn't already visited. Brought documentation up-to-date.
7819 (vc-next-action, vc-register): Updated calls to vc-start-entry.
7820 (vc-checkin): New optional arg initial-contents, which is passed to
7821 vc-start-entry.
7822 (vc-finish-logentry): Make sure to bury log buffer only if there
7823 really is one. Call `vc-resynch-buffer' on log-file, not
7824 buffer-file-name.
7825 (vc-default-comment-history, vc-default-wash-log): New functions.
7826 (vc-index-of): Removed.
7827 (vc-transfer-file): Make do without the above.
7828 (vc-default-receive-file): Call comment-history unconditionally. Pass
7829 the resulting string to vc-checkin, instead of inserting it into the
7830 comment ring.
7831
7832 * vc-rcs.el (vc-rcs-receive-file): Call comment-history
7833 unconditionally. Use the comments as initial contents of the log
7834 entry buffer. Document the trick to force branch creation with no
7835 changes.
7836
7837 2000-10-01 Miles Bader <miles@gnu.org>
7838
7839 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Call
7840 `recenter' with an arg to prevent redrawing the display.
7841
7842 2000-09-30 Stefan Monnier <monnier@cs.yale.edu>
7843
7844 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Prettier.
7845
7846 * emacs-lisp/lisp.el (lisp-complete-symbol): Only jump 2 not 3 levels.
7847
7848 * progmodes/c-mode.el (c-mode):
7849 Don't gratuitously override the default for comment-column.
7850
7851 * textmodes/tex-mode.el (latex-metasection-list): New var.
7852 (latex-imenu-create-index): Use it.
7853 Move the regexp construction outside loops (and use push).
7854 (tex-font-lock-keywords-1, tex-font-lock-keywords-2)
7855 (tex-font-lock-keywords): Moved from font-lock.el.
7856 (tex-comment-indent): Remove.
7857 (tex-common-initialization): Don't set comment-indent-function.
7858 (latex-block-default): New var.
7859 (tex-latex-block): Use it to provide a default choice.
7860 Add any unknown choice to latex-block-names.
7861 Insert [...] after {...}.
7862 (tex-last-unended-begin): Simplify regexp.
7863 (tex-goto-last-unclosed-latex-block, latex-backward-sexp-1)
7864 (latex-forward-sexp-1, latex-forward-sexp): New functions.
7865 (latex-mode): Set forward-sexp-function.
7866
7867 * textmodes/texinfo.el (texinfo-font-lock-syntactic-keywords):
7868 Add regexp for @ignore ... @end ignore.
7869 (texinfo-heading-face): New face.
7870 (texinfo-font-lock-keywords): Use it.
7871 (texinfo-mode-menu): New menu.
7872 (texinfo-inside-macro-p, texinfo-inside-env-p, texinfo-insert-quote):
7873 New functions.
7874 (texinfo-mode-map): Bind " to insert-quote and M-RET to insert-@item.
7875 (texinfo-section-types-regexp, texinfo-section-level-regexp)
7876 (texinfo-subsection-level-regexp, texinfo-subsubsection-level-regexp):
7877 Remove declaration.
7878 (texinfo-show-structure): Use outline-regexp and texinfo-section-list.
7879
7880 * delsel.el (delete-selection-mode): Use define-minor-mode.
7881
7882 * emacs-lisp/regexp-opt.el (regexp-opt-group): Put more parenthesis.
7883
7884 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
7885
7886 * dired.el (dired-map-over-marks): Use modern backquotes and docstring.
7887
7888 2000-09-30 Gerd Moellmann <gerd@gnu.org>
7889
7890 * replace.el (keep-lines-read-args): New function.
7891 (keep-lines, flush-lines, how-many): Use keep-lines-read-args to
7892 read arguments interactively. Add parameters RSTART and REND.
7893 Operate on the active region in Transient Mark mode.
7894
7895 * files.el (auto-mode-alist): Add pattern for `#*mail*...'.
7896
7897 * emacs-lisp/authors.el (authors-obsolete-file-p): New function.
7898 (authors-obsolete-files-regexps): New variable.
7899 (authors-add): Don't record changes in obsolete files.
7900
7901 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
7902
7903 * autoinsert.el (auto-insert-mode): Use define-minor-mode.
7904
7905 * newcomment.el (comment-indent-function): Use 0 for ;;; and %%%.
7906 (comment-indent): Make sure there's a space between code and comment.
7907 Shift comments left to avoid going past fill-column.
7908
7909 2000-09-29 Gerd Moellmann <gerd@gnu.org>
7910
7911 * startup.el (startup-echo-area-message): New function.
7912 (display-startup-echo-area-message): Use it.
7913 (fancy-splash-screens): Rewritten to use keymaps and a timer.
7914 (fancy-splash-default-action): New function.
7915 (fancy-splash-screens-1): New function.
7916 (fancy-splash-head): Put a help-echo and a keymap under the image.
7917
7918 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
7919
7920 * diff-mode.el (diff-add-log-file-name): Remove.
7921 (diff-mode): Use add-log-buffer-file-name-function.
7922
7923 * add-log.el (find-change-log): New arg BUFFER-FILE.
7924 (add-log-file-name): Obey add-log-file-name-function.
7925 (add-log-buffer-file-name-function): New var.
7926 (add-change-log-entry): Use it.
7927
7928 2000-09-29 Miles Bader <miles@gnu.org>
7929
7930 * image-file.el (image-file-name-extensions): New variable.
7931 (image-file-name-regexps): Renamed from `image-file-regexps'.
7932 New default value is nil. Call `auto-image-file-mode'.
7933 (image-file-name-regexp): New function.
7934 (auto-image-file-mode): New minor mode.
7935 (insert-image-file): Don't make conditional on the image-file
7936 handler being enabled.
7937 (image-file-handler): Make the call here conditional instead.
7938 (set-image-file-handler-enabled, enable-image-file-handler)
7939 (disable-image-file-handler): Functions removed.
7940
7941 * emacs-lisp/authors.el (authors-print): Rephrase many-files
7942 string.
7943
7944 2000-09-29 Gerd Moellmann <gerd@gnu.org>
7945
7946 * textmodes/tex-mode.el (latex-outline-regexp): Don't use `list*';
7947 it's a function from CL.
7948 (latex-imenu-create-index): Replace eval-when-compile with progn
7949 because latex-section-alist is not bound while compiling.
7950
7951 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
7952
7953 * textmodes/outline.el (outline-minor-mode): Use define-minor-mode.
7954 (outline-mode): Use define-derived-mode.
7955
7956 * progmodes/perl-mode.el (perl-mode):
7957 * progmodes/awk-mode.el (awk-mode):
7958 * progmodes/asm-mode.el (asm-mode):
7959 Don't gratuitously override the default for comment-column.
7960
7961 * emacs-lisp/lisp.el (lisp-complete-symbol):
7962 Distinguish the let-binding case from the funcall case.
7963 (forward-sexp-function): New variable.
7964 (forward-sexp): Use it.
7965
7966 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Autoload.
7967 (easy-mmode-defmap): Remove the now useless autoload.
7968
7969 * time.el (display-time-mode): Use define-minor-mode.
7970
7971 * subr.el (add-minor-mode): Don't eval NAME.
7972 Don't depend on the presence of TOGGLE-FUN for any special behavior.
7973 Use if rather than cond.
7974
7975 * simple.el (read-expression-map): Define more properly.
7976 (comment-indent-hook): Remove.
7977 (string-to-syntax): Bug fix.
7978
7979 * pcvs.el (cvs-ediff-exit-hook): Kill buffer before window.
7980 (cvs-ediff-diff): Fix typo.
7981 (cvs-revert-if-needed): Don't bother preserving read-only.
7982
7983 * paren.el (show-paren-mode): Use define-minor-mode.
7984
7985 * jka-compr.el (auto-compression-mode): Use define-minor-mode.
7986 (toggle-auto-compression): Remove.
7987 (jka-compr-build-file-regexp): Remove useless grouping.
7988
7989 * diff-mode.el (diff-mode-map, diff-minor-mode-prefix):
7990 Avoid user-reserved bindings.
7991 (diff-mode, diff-minor-mode): Drop make-local-hook (done by add-hook).
7992 (diff-header-face): Revert to grey85.
7993
7994 * cvs-status.el (cvs-status-entry-leader-re): Minor fix.
7995
7996 * complete.el (partial-completion-mode) <defcustom>: Remove.
7997 (partial-completion-mode): Use define-minor-mode.
7998 (PC-do-completion): Understand `completion-auto-help = delay'
7999 to mean to popup the completion buffer only the second time.
8000 (PC-include-file-all-completions, PC-include-file-all-completions)
8001 (PC-include-file-all-completions): Don't quote lambda.
8002
8003 * comint.el (comint-mode-hook): Docstring fix.
8004 (comint-mode): Use define-derived-mode.
8005 (comint-mode-map): Remove obsolete comment.
8006 (make-comint): Minor stylistic change.
8007 (comint-insert-clicked-input): Be more careful to find the overlay.
8008 Use this-command-keys rather than hardcoding mouse-2.
8009
8010 * font-lock.el: Replace confusing (,@ with ,
8011 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
8012 Don't use regexp-opt-depth. Spice up the regexp for args.
8013 Don't distinguish between cmds that can take an opt arg or not.
8014 Use `append' and `prepend' rather than `keep'.
8015
8016 * textmodes/tex-mode.el (latex-imenu-indent-string): Add a space.
8017 (latex-outline-regexp): New var.
8018 (latex-outline-level): New fun.
8019 (latex-section-alist): New var.
8020 (latex-imenu-create-index): Use it. Use `push' as well.
8021 (tex-shell-map): Initialize it properly.
8022 (tex-mode): Minor stylistic change.
8023 (plain-tex-mode): Use define-derived-mode.
8024 (latex-mode): Use define-derived-mode.
8025 Construct the paragraph regexps in a more readable way.
8026 Set the buffer-local outline-{level,regexp} vars.
8027 (slitex-mode): Derive from latex-mode.
8028 (tex-common-initialization): Don't kill-all-vars anymore.
8029 Add setting for comment-add and font-lock-defaults.
8030 (tex-start-shell): Use with-current-buffer and don't re-init keymap.
8031 (tex-main-file): New fun. Obey TeX-master as well and remove `.tex'.
8032 (tex-start-tex): New arg DIR (and send a chdir command for it).
8033 Also display the shell buffer and save it in tex-last-buffer-texed.
8034 (tex-region): Use expand-file-name rather than concat.
8035 Remove code made useless by changes in tex-start-tex.
8036 (tex-file): Use tex-main-file and adapt to new tex-start-tex.
8037
8038 * map-ynp.el (map-y-or-n-p): Fix missing backquotes.
8039
8040 2000-09-28 Dave Love <fx@gnu.org>
8041
8042 * eshell/eshell.el (eshell) <defgroup>: Add :version.
8043
8044 2000-09-28 Gerd Moellmann <gerd@gnu.org>
8045
8046 * emacs-lisp/authors.el (authors-add): Use `nconc' instead of
8047 `append'.
8048
8049 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
8050
8051 * info.el (Info-extract-pointer): Undo last change.
8052 Instead, fix the position of the `bound' arg to re-search-backward.
8053
8054 2000-09-27 Stefan Monnier <monnier@cs.yale.edu>
8055
8056 * info.el (Info-extract-pointer):
8057 Widen more carefully, to avoid finding pointers in other nodes.
8058 (Info-index): Use push.
8059
8060 2000-09-27 Gerd Moellmann <gerd@gnu.org>
8061
8062 * frame.el (set-frame-font): Remove call to obsolete function
8063 frame-update-faces.
8064 (set-foreground-color, set-background-color): Likewise for
8065 frame-update-face-colors.
8066
8067 2000-09-27 Miles Bader <miles@gnu.org>
8068
8069 * image-file.el: New file.
8070
8071 2000-09-27 Gerd Moellmann <gerd@gnu.org>
8072
8073 * frame.el (frame-notice-user-settings): Don't call
8074 frame-update-faces, which is a no-op now.
8075
8076 * ediff-wind.el (ediff-control-frame-parameters): Add zero
8077 tool-bar-lines.
8078
8079 2000-09-27 Dave Love <fx@gnu.org>
8080
8081 * mouse.el: Fix last change.
8082
8083 2000-09-27 Miles Bader <miles@lsi.nec.co.jp>
8084
8085 * toolbar/tool-bar.el (tool-bar-help): Use `mouse-pixel-position'.
8086
8087 2000-09-22 Kenichi Handa <handa@etl.go.jp>
8088
8089 * international/quail.el (quail-help): The output message is
8090 improved.
8091
8092 2000-09-26 Dave Love <fx@gnu.org>
8093
8094 * mouse.el (popup-menu): If POSITION is nil, set it using
8095 mouse-position.
8096
8097 2000-09-25 Sam Steingold <sds@gnu.org>
8098
8099 * net/browse-url.el (browse-url-file-url): Check for null maps.
8100
8101 2000-09-26 Gerd Moellmann <gerd@gnu.org>
8102
8103 * frame.el (frame-notice-user-settings): Don't add a
8104 tool-bar-lines frame parameter to default-frame-alist in batch mode.
8105
8106 * frame.el (frame-notice-user-settings):
8107 Make tool-bar-mode and default-frame-alist consistent.
8108
8109 * toolbar/tool-bar.el (tool-bar-help): New function.
8110
8111 2000-09-25 Gerd Moellmann <gerd@gnu.org>
8112
8113 * bytecomp.el (byte-compile-defvar-or-defconst): Only cons onto
8114 current-load-list in top-level forms. Else this leaks a cons cell
8115 every time a defun is called.
8116
8117 * mail/mail-utils.el (rmail-dont-reply-to): Fix last change.
8118
8119 2000-09-25 Dave Love <fx@gnu.org>
8120
8121 * startup.el (fancy-splash-head): Check XPM is available.
8122
8123 * autoinsert.el (auto-insert): Doc fix.
8124 (auto-insert-alist): Following GNU notices, don't say `copyright
8125 _by_'. Use line-beginning-position.
8126 (auto-insert): Check buffer-file-name is non-nil before use.
8127
8128 2000-09-25 Gerd Moellmann <gerd@gnu.org>
8129
8130 * textmodes/texinfo.el (texinfo-mode): Prevent filling lines
8131 starting with `@def' or `@multitable', in addition to ones
8132 specified by the user in auto-fill-inhibit-regexp.
8133
8134 2000-09-25 Markus Rost <rost@math.ohio-state.edu>
8135
8136 * mail/mail-utils.el (rmail-dont-reply-to): Avoid infinite loop if
8137 rmail-dont-reply-to-names matches the empty string.
8138
8139 2000-09-25 Gerd Moellmann <gerd@gnu.org>
8140
8141 * startup.el (command-line-1, fancy-splash-text): Change the
8142 text to sound more friendly.
8143
8144 2000-09-23 Thien-Thi Nguyen <ttn@gnu.org>
8145
8146 * progmodes/hideshow.el: Update author email address.
8147 Generally, sync w/ maintainer version 5.22.
8148 (hs-hide-all-non-comment-function): New var.
8149 (hs-hide-hook, hs-show-hook, hs-minor-mode): Update docstrings.
8150 (hs-hide-all): Use `hs-hide-all-non-comment-function'.
8151 (hs-show-region): Delete this command.
8152 (hs-minor-mode-map): Change bindings to leave "C-c LETTER" alone.
8153
8154 2000-09-22 Dave Love <fx@gnu.org>
8155
8156 * hl-line.el (hl-line-overlay): Don't make it buffer-local.
8157 (hl-line-highlight): Specify buffer when moving overlay.
8158
8159 * progmodes/fortran.el (fortran-mode): Locally set
8160 normal-auto-fill-function.
8161 (fortran-auto-fill-mode): Just alias to auto-fill-mode.
8162 (fortran-mode-map): Adjust auto-fill menu entry.
8163
8164 2000-09-22 Gerd Moellmann <gerd@gnu.org>
8165
8166 * vc-rcs.el (toplevel): Require `vc' when compiling.
8167
8168 * startup.el (fancy-splash-head): Use splash.pbm instead of splash.xbm.
8169
8170 2000-09-22 Andre Spiegel <spiegel@gnu.org>
8171
8172 * vc.el (vc-switch-backend): Signal an error if the file is not
8173 registered under the new backend.
8174
8175 * vc-rcs.el (vc-rcs-checkin): Fix bug that prevented check-in
8176 without explicit revision number.
8177
8178 2000-09-21 Stefan Monnier <monnier@cs.yale.edu>
8179
8180 * diff-mode.el (diff-file-header-face): Reset to its previous value.
8181 (diff-hunk-text): Correctly use offsets rather than buffer-positions.
8182 (diff-xor): New function.
8183 (diff-find-source-location): Use it. Fix a stupid name clash.
8184 (diff-hunk-status-msg): New function.
8185 (diff-apply-hunk): Drop args OTHER-FILE, DRY-RUN, POPUP and NOERROR.
8186 (diff-test-hunk): Use diff-find-source-location.
8187 (diff-goto-source): Favor the `reverse'.
8188 (diff-hunk-text): Properly handle one-sided context diffs.
8189 (diff-apply-hunk): When done, advance to the next hunk.
8190
8191 2000-09-21 Gerd Moellmann <gerd@gnu.org>
8192
8193 * startup.el (command-line): If frame was created with a non-zero
8194 tool-bar-lines parameter, switch tool-bar-mode on.
8195
8196 * add-log.el (change-log-date-face, change-log-name-face)
8197 (change-log-email-face, change-log-file-face)
8198 (change-log-list-face, change-log-conditionals-face)
8199 (change-log-function-face, change-log-acknowledgement-face):
8200 New faces, inheriting from font-lock faces.
8201 (change-log-font-lock-keywords): Use them.
8202
8203 2000-09-21 Dave Love <fx@gnu.org>
8204
8205 * progmodes/cperl-mode.el (top-level): Clean up
8206 `eval-when-compile's and assorted defvars.
8207 (cperl-invalid-face): Don't double-quote value. Change custom
8208 type.
8209 (cperl-mode): Set normal-auto-fill-function and don't zap
8210 auto-fill-function.
8211 (cperl-imenu--function-name-regexp-perl): Renamed from
8212 imenu-example--function-name-regexp-perl.
8213 (cperl-imenu--create-perl-index): Renamed from
8214 imenu-example--create-perl-index.
8215 (cperl-xsub-scan): Don't require cl.
8216
8217 * msb.el (msb-mode-map): Use substitute-key-definition.
8218 (msb-mode): Use msb-mode-map.
8219
8220 2000-09-21 Andre Spiegel <spiegel@gnu.org>
8221
8222 * vc.el (vc-index-of, vc-transfer-file, vc-default-receive-file):
8223 New functions.
8224 (vc-next-action-on-file): Call vc-transfer-file at appropriate places.
8225 (vc-switch-backend): New function.
8226 (vc-prefix-map): Bind `vc-switch-backend' to `b'.
8227 (vc-register): Fix prompt.
8228 (vc-unregister, vc-default-unregister): New functions.
8229 (vc-version-diff): Handle empty buffer in sentinel.
8230
8231 * vc-rcs.el (vc-rcs-workfile-is-newer): New function.
8232 (vc-rcs-state-heuristic): Use it to guess the state of files with
8233 non-strict locking.
8234 (vc-rcs-find-most-recent-rev): Handle the case when a branch has
8235 been set with -b, but not created yet.
8236 (vc-rcs-fetch-master-state): With non-strict locking, compare file
8237 contents in order to find the state.
8238 (vc-rcs-checkin): Allow creation of branches with no changes.
8239 (vc-rcs-unregister, vc-rcs-receive-file)
8240 (vc-rcs-set-non-strict-locking): New functions.
8241
8242 * vc-hooks.el (vc-name): Force correct computation of the value
8243 in case it is missing.
8244
8245 2000-09-21 Gerd Moellmann <gerd@gnu.org>
8246
8247 * startup.el (fancy-splash-tail): Use a different foreground
8248 color on a dark frame background.
8249
8250 2000-09-21 Miles Bader <miles@lsi.nec.co.jp>
8251
8252 * info.el: Use the correct capitalization when making Info-mode
8253 and Info-edit-mode `special' modes.
8254
8255 2000-09-20 Stefan Monnier <monnier@cs.yale.edu>
8256
8257 * diff-mode.el (diff-add-log-file-name, diff-current-defun): New funs.
8258 (diff-mode): Add support for add-log.el.
8259 (diff-hunk-text): Use char offsets rather than line offsets.
8260 (diff-find-source-location): Replace LINE with line-offset (nil
8261 if not found) and always set POS to a meaningful position.
8262 Adapt to the new char-offsets.
8263 (diff-apply-hunk): Drop support for the unused `select' POPUP.
8264 Adapt to the new diff-find-source-location.
8265 (diff-goto-source): Adapt to the new diff-find-source-location.
8266
8267 * add-log.el (add-log-file-name): New function (split out of
8268 add-change-log-entry).
8269 (add-change-log-entry): Use it.
8270 Call add-log-file-name-function with the changelog file name if
8271 the current buffer is not associated with any file.
8272 Avoid find-file if the selected window is dedicated.
8273
8274 * diff-mode.el (diff-find-source-location):
8275 Move code from diff-apply-hunk. Return buffer rather than file.
8276 (diff-apply-hunk): Use the new result from diff-find-source-location.
8277 (diff-goto-source): Use the new diff-find-source-location.
8278
8279 2000-09-20 Dave Love <fx@gnu.org>
8280
8281 * iswitchb.el: Some doc fixes.
8282 (iswitchb-mode-map): Define completely initially. Inherit
8283 minibuffer-local-map.
8284 (iswitchb-completion-help) <!iswitchb-xemacs>: Use
8285 fundamental-mode.
8286 (iswitchb-global-map): New variable.
8287 (iswitchb-summaries-to-end): Amalgamate regexps.
8288 (iswitchb-mode): New.
8289 (iswitchb-mode-hook): New variable.
8290 (iswitchb) <defgroup>: Add URL link. Use group `completion', not
8291 `extensions'.
8292
8293 2000-09-20 Gerd Moellmann <gerd@gnu.org>
8294
8295 * ehelp.el (electric-help): New defgroup.
8296 (electric-help-shrink-window): New user-option.
8297 (with-electric-help): Use it.
8298
8299 * window.el (shrink-window-if-larger-than-buffer): If face
8300 `mode-line' has a :box, and we're on a graphical frame, add 1
8301 to the needed window height.
8302
8303 * frame.el (frame-notice-user-settings): Add a last parameter nil
8304 to a call to `append', because the last list passed to `append' is
8305 not copied, and so subsequent calls to assq-delete-all will modify
8306 default-frame-alist.
8307
8308 * startup.el (fancy-splash-image): Change :type.
8309 (fancy-splash-head): Use an XBM image if appropriate.
8310 (command-line-1): Show splash screens in more cases.
8311
8312 * startup.el (fancy-splash-text): Don't quote faces.
8313
8314 * dired.el (dired-font-lock-keywords): Undo last change.
8315 (dired-readin): Bind indent-tabs-mode to nil.
8316
8317 * startup.el (fancy-splash-head): If frame's background mode
8318 is `dark', change the black background of the image to gray.
8319 (fancy-splash-screens): Display startup echo area message.
8320 (display-startup-echo-area-message): New function.
8321
8322 2000-09-20 Miles Bader <miles@lsi.nec.co.jp>
8323
8324 * faces.el (mode-line, tool-bar): Merge entries for `x' and `w32'.
8325
8326 * info.el (info-header-node): Tweak for color ttys.
8327
8328 * faces.el (face-valid-attribute-values): Make sure directories we
8329 search for stipples both exist and are readable before trying to
8330 search them.
8331
8332 * diff-mode.el (diff-apply-hunk): Jump to the correct line offset
8333 in the dry-run case.
8334
8335 * jka-compr.el (with-auto-compression-mode): New macro.
8336
8337 * cus-edit.el (custom-face-tag-face, custom-group-tag-face-1)
8338 (custom-group-tag-face, custom-variable-tag-face): Use relative
8339 :height and inherit from `variable-pitch' face instead of
8340 hardwiring :family.
8341 * hi-lock.el (hi-black-hb): Likewise.
8342
8343 Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
8344 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Like in
8345 toolbar-add-item, if image doesn't have a mask add a `:mask
8346 heuristic'.
8347
8348 2000-09-19 Stefan Monnier <monnier@cs.yale.edu>
8349
8350 * diff-mode.el: Docstring fixes.
8351 (diff-header-face, diff-comment-face): New faces.
8352 (diff-font-lock-keywords): Highlight a bit differently.
8353 (diff-find-source-location): Don't return SPAN any more.
8354 (diff-hunk-text): Don't bother erasing the temp buffer.
8355 (diff-find-text): Drop argument LINE.
8356 (diff-apply-hunk): Update calls to diff-find-text.
8357 (diff-goto-source): Use pop-to-buffer again and don't raise an error.
8358
8359 * calendar/calendar.el: Docstring fixes.
8360 (calendar-make-alist): Don't quote lambda.
8361 (calendar-star-date): Use make-local-variable.
8362
8363 2000-09-19 Dave Love <fx@gnu.org>
8364
8365 * toolbar/tool-bar.el: Renamed from toolbar.el.
8366 Change `toolbar' to `tool-bar' generally in symbols.
8367 Make some items invisible in `special' major modes.
8368 (tool-bar-add-item-from-menu): Renamed from toolbar-like-menu-item.
8369 Add arg PROPS.
8370
8371 * startup.el (fancy-splash-screen) <defgroup>: Fix syntax.
8372 Add :version here.
8373 (fancy-splash-delay, fancy-splash-image): Remove :version here.
8374
8375 2000-09-19 Gerd Moellmann <gerd@gnu.org>
8376
8377 * progmodes/sh-script.el (sh-search-word): Remove call to `debug'.
8378
8379 * files.el (find-file-suppress-same-file-warnings): New user-option.
8380 (find-file-noselect): Use it.
8381
8382 * startup.el (fancy-splash-delay, fancy-splash-image): Add :version.
8383 (fancy-splash-screen): Defgroup.
8384
8385 * add-log.el (change-log-font-lock-keywords): Match names
8386 more exactly for the case that font-lock-constant-face is
8387 underlined.
8388
8389 2000-09-19 Richard M. Stallman <rms@gnu.org>
8390
8391 * progmodes/sh-script.el (sh-search-word): Rewritten for speed.
8392
8393 2000-09-19 Andre Spiegel <spiegel@gnu.org>
8394
8395 * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
8396
8397 2000-09-19 Gerd Moellmann <gerd@gnu.org>
8398
8399 * gnus/: Update to emacs-21-branch of the Gnus CVS repository.
8400 * gnus/binhex.el, gnus/flow-fill.el, gnus/format-spec.el
8401 * gnus/gnus-ml.el, gnus/gnus-mlspl.el, gnus/ietf-drums.el,
8402 * gnus/imap.el, gnus/mail-parse.el, gnus/mail-prsvr.el,
8403 * gnus/mail-source.el, gnus/mailcap.el, gnus/mm-bodies.el,
8404 * gnus/mm-decode.el, gnus/mm-encode.el, gnus/mm-partial.el,
8405 * gnus/mm-util.el, gnus/mm-uu.el, gnus/mm-view.el,
8406 * gnus/mml.el, gnus/nnimap.el, gnus/nnslashdot.el,
8407 * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
8408 * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
8409 * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
8410 * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
8411
8412 * startup.el (fancy-splash-text): New variable.
8413 (fancy-splash-delay, fancy-splash-image): New user-options.
8414 (fancy-splash-insert, fancy-splash-head, fancy-splash-tail)
8415 (fancy-splash-screens): New functions.
8416 (command-line-1): If display has a `display' frame parameter, has
8417 colors, and we have XPM support, show more fancy splash screens.
8418
8419 2000-09-19 Dave Love <fx@gnu.org>
8420
8421 * map-ynp.el (map-y-or-n-p): Check use-dialog-box. Don't lose
8422 with null `help'. Use modern backquote syntax.
8423
8424 2000-09-19 Gerd Moellmann <gerd@gnu.org>
8425
8426 * font-lock.el (font-lock-mode): Change message telling the user
8427 that ``the buffer is too big''.
8428
8429 * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
8430 for instance for the case that tab-width is 2.
8431
8432 2000-09-18 Gerd Moellmann <gerd@gnu.org>
8433
8434 * toolbar/toolbar.el (toolbar-like-menu-item): Like in
8435 toolbar-add-item, if image doesn't have a mask add a `:mask
8436 heuristic'.
8437
8438 2000-09-18 Miles Bader <miles@lsi.nec.co.jp>
8439
8440 * diff-mode.el (diff-hunk-text): Add new optional arg LINE-OFFSET,
8441 and return a cons if it's non-nil.
8442 (diff-apply-hunk): Try to jump to the line in the source text
8443 corresponding to the position of point in the in the hunk.
8444
8445 * info.el (Info-title-3-face, Info-title-2-face)
8446 (Info-title-1-face): Use face inheritance and relative sizes
8447 instead of hard-wiring things.
8448
8449 * faces.el (secondary-selection): Make dark-background variant sane.
8450
8451 2000-09-16 Andrew Innes <andrewi@gnu.org>
8452
8453 * makefile.w32-in (compile-files-CMD): No need to make .elc files
8454 read-only, since they aren't under VC now.
8455
8456 2000-09-17 Dave Love <fx@gnu.org>
8457
8458 * tmm.el: Replace mapcar with mapc in several places.
8459
8460 * loadhist.el (unload-feature): Maybe call elp-restore-list and
8461 ad-unadvise.
8462
8463 * international/latin1-disp.el: New file.
8464
8465 * calendar/cal-move.el (scroll-calendar-left)
8466 (scroll-calendar-right): Make arg optional (for active mode line).
8467
8468 * calendar/calendar.el (calendar-mode-line-format): Make fields
8469 mouse-sensitive.
8470 (calendar-read-date, calendar-read-date, calendar-window-list):
8471 Unquote lambda.
8472 (calendar-month-name): Use aref, not sref.
8473
8474 * view.el (minor-mode-alist): Propertize the string.
8475
8476 * international/characters.el (standard-case-table): Add entries
8477 for Greek.
8478
8479 2000-09-18 Miles Bader <miles@gnu.org>
8480
8481 * info.el (info-node, info-xref): Add dark-background variants.
8482
8483 * faces.el (header-line): Change defaults to be less confusing
8484 when mixed with mode-lines.
8485
8486 * info.el (Info-fontify-node): Make a few cleanups.
8487 Add extra `help-echo' and `local-map' props to node xrefs.
8488 Use header-specific faces for node-names & xrefs.
8489 (Info-use-header-line): New variable.
8490 (info-header-xref, info-header-node): New faces.
8491 (Info-setup-header-line): New function.
8492 (Info-select-node): Call Info-setup-header-line when enabled.
8493 (Info-extract-pointer): Work even if the header line is hidden.
8494 (Info-header-line): New variable.
8495
8496 2000-09-16 Stefan Monnier <monnier@cs.yale.edu>
8497
8498 * vms-patch.el (print-region-function): Don't quote lambda.
8499
8500 * tempo.el (tempo-expand-if-complete): Quote paren in docstring.
8501
8502 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Cleanup the regexp.
8503 (lm-get-header-re): Allow spaces between the header and the colon.
8504 (lm-header): Allow $ in non-RCS headers.
8505 (lm-header-multiline): Put the strings back into order.
8506 Stop at an empty line. Don't require two space chars if the
8507 line is clearly not another header line.
8508
8509 * emacs-lisp/lmenu.el (popup-menu, popup-menu-internal)
8510 (popup-menu-popup): Remove.
8511
8512 2000-09-15 Gerd Moellmann <gerd@gnu.org>
8513
8514 * toolbar/toolbar.el (toolbar-add-item): Use the same image
8515 specification if or if not tool-bar item contains an `:enabled'
8516 property.
8517
8518 * menu-bar.el (menu-bar-files-menu): Disable ``Save'' if
8519 current buffer has no file name.
8520
8521 2000-09-15 Dave Love <fx@gnu.org>
8522
8523 * strokes.el: Sync with maintainer's current version with changes
8524 for Emacs, but avoid runtime cl and levents.
8525 (toplevel): Change autoloads and compilation requires.
8526 (strokes-version, strokes-bug-address, strokes-lift): Values
8527 changed.
8528 (strokes-xpm-header, strokes-insinuated): New variable.
8529 (strokes): Add :link.
8530 (strokes-mode): Customized.
8531 (strokes-while-inhibiting-garbage-collector): New macro.
8532 (strokes-remassoc): Avoid remove-if.
8533 (strokes-fix-button2-command): Don't use ad-do-it.
8534 (strokes-insinuate): New function.
8535 (strokes-button-press-event-p, strokes-button-release-event-p):
8536 New functions, used instead of non-`strokes-' versions..
8537 (strokes-mouse-event-p): Rewritten.
8538 (strokes-event-closest-point): Avoid event-point.
8539 (strokes-get-grid-position): Avoid cdadr, caadr
8540 (strokes-read-stroke, strokes-read-complex-stroke): Avoid levents
8541 functions.
8542 (strokes-help): Use with-output-to-temp-buffer.
8543 (strokes-window-configuration-changed-p): New function.
8544 (strokes-update-window-configuration): Use buffer-live-p,
8545 strokes-window-configuration-changed-p.
8546 (strokes-mode): Use strokes-insinuate. Alter mouse bindings.
8547 (strokes-char-face): New face.
8548 (strokes-char-table, strokes-base64-chars): New variable.
8549 (strokes-xpm-for-stroke, strokes-list-strokes)
8550 (strokes-xpm-char-on-p, strokes-xpm-char-bit-p)
8551 (strokes-xpm-encode-length-as-string, strokes-xpm-decode-char)
8552 (strokes-xpm-to-compressed-string, strokes-decode-buffer)
8553 (strokes-encode-buffer, strokes-xpm-for-compressed-string)
8554 (strokes-compose-complex-stroke, strokes-alphabetic-lessp): New
8555 functions.
8556
8557 2000-09-15 Gerd Moellmann <gerd@gnu.org>
8558
8559 * toolbar/toolbar.el (toolbar-add-item): Use image-mask-p.
8560
8561 * image.el (create-image): Doc fix.
8562
8563 * toolbar/toolbar.el (toolbar-add-item): Use `:mask heuristic'
8564 instead of `:heuristic-mask t'.
8565
8566 2000-09-14 Andrew Innes <andrewi@gnu.org>
8567
8568 * makefile.w32-in: Revert to Unix line endings.
8569
8570 2000-09-14 Andrew Innes <andrewi@gnu.org>
8571
8572 * makefile.w32-in: Add bootstrap support. Also copy lisp source
8573 when installing.
8574
8575 * makefile.nt (DONTCOMPILE): Fix typo.
8576
8577 * shell.el (shell-write-history-on-exit): New function.
8578 (shell-dumb-shell-regexp): New custom variable.
8579 (shell-mode): Make shell-write-history-on-exit the process
8580 sentinel if shell name matches shell-dumb-shell-regexp.
8581
8582 * w32-fns.el: Comment out before-init-hook function which resets
8583 source-directory based; this breaks bootstrap.
8584
8585 2000-09-14 Dave Love <fx@gnu.org>
8586
8587 * toolbar/cancel.xpm, toolbar/close.xpm, toolbar/copy.xpm,
8588 toolbar/cut.xpm, toolbar/exit.xpm, toolbar/fld_open.xpm,
8589 toolbar/help.xpm, toolbar/info.xpm, toolbar/mail.xpm,
8590 toolbar/mail_compose.xpm, toolbar/new.xpm, toolbar/open.xpm,
8591 toolbar/paste.xpm, toolbar/preferences.xpm, toolbar/print.xpm,
8592 toolbar/save.xpm, toolbar/saveas.xpm, toolbar/search-replace.xpm,
8593 toolbar/search.xpm, toolbar/spell.xpm, toolbar/undo.xpm: New.
8594 From Tuomas Kuosmanen <tigert@gimp.org>. (Gnome icons fetched
8595 from <URL:http://tigert.gimp.org/gnome/gnome-stock/>.)
8596
8597 * toolbar/toolbar.el: New.
8598
8599 * subdirs.el: Add toolbar.
8600
8601 2000-09-14 Gerd Moellmann <gerd@gnu.org>
8602
8603 * indent.el (indent-for-tab-command): Doc fix.
8604
8605 2000-09-14 Alex Schroeder <alex@gnu.org>
8606
8607 * ansi-color.el (ansi-colors): Doc change.
8608 (ansi-color-get-face): Simplified regexp.
8609 (ansi-color-faces-vector): Added more faces, doc change.
8610 (ansi-color-names-vector): Doc change.
8611 (ansi-color-regexp): Simplified regexp.
8612 (ansi-color-parameter-regexp): New regexp.
8613 (ansi-color-filter-apply): Doc change.
8614 (ansi-color-filter-region): Doc change.
8615 (ansi-color-apply): Use ansi-color-regexp and ansi-color-get-face,
8616 deal with zero length parameters.
8617 (ansi-color-apply-on-region): Doc change.
8618 (ansi-color-map): Doc change.
8619 (ansi-color-map-update): Removed debugging message.
8620 (ansi-color-get-face-1): Added condition-case to trap
8621 args-out-of-range errors.
8622 (ansi-color-get-face): Doc change.
8623 (ansi-color-make-face): Removed.
8624 (ansi-color-for-shell-mode): New option.
8625
8626 2000-09-13 Kenichi Handa <handa@etl.go.jp>
8627
8628 * international/quail.el (quail-start-translation): Translate KEY
8629 if necessary even if it doesn't have any mapping in the current
8630 input method.
8631 (quail-start-conversion): Likewise.
8632 (quail-help): The output message is improved.
8633
8634 2000-09-13 Miles Bader <miles@gnu.org>
8635
8636 * comint.el (comint-output-filter): Revert to using
8637 `insert-before-markers'. Add bletcherous hack to undo damage
8638 caused by `insert-before-markers'. Put `front-sticky' property on
8639 overlays created here so that the field code understands how the
8640 overlay works. Use a let when making comint-last-prompt-overlay,
8641 so that the code is easier to read.
8642
8643 2000-09-13 Dave Love <fx@gnu.org>
8644
8645 * wid-edit.el (widget-default-format-handler): DTRT when
8646 doc-property is a function.
8647
8648 2000-09-12 Francesco Potorti` <pot@gnu.org>
8649
8650 * mail/sendmail.el (mail-mode-fill-paragraph): Do not get the
8651 filed name if it's not there.
8652
8653 2000-09-12 Dave Love <fx@gnu.org>
8654
8655 * simple.el (read-mail-command): Doc fix.
8656 (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
8657
8658 * vc.el (vc-dired-listing-switches): Fix :version.
8659
8660 * vc-hooks.el: Doc fixes.
8661
8662 * subr.el (add-minor-mode): Use toggle-fun arg.
8663
8664 * speedbar.el: Add :version to several defcustoms.
8665
8666 * imenu.el (imenu--truncate-items, imenu--cleanup)
8667 (imenu--generic-function): Avoid mapcar.
8668 (imenu--replace-spaces): Function removed.
8669 (imenu--completion-buffer): Use subst-char-in-string.
8670 (imenu-add-to-menubar): Use keymap inheritance.
8671
8672 2000-09-12 Miles Bader <miles@gnu.org>
8673
8674 * diff-mode.el (diff-hunk-text): Use `with-temp-buffer'.
8675 (diff-mode-map): Bind `diff-test-hunk'.
8676 (diff-apply-hunk): Use `select-window' instead of `pop-to-buffer'.
8677
8678 2000-09-11 Gerd Moellmann <gerd@gnu.org>
8679
8680 * bytecomp.el (byte-compile-defvar): Undo last change
8681 because it breaks '(make-variable-buffer-local (defvar ...)'
8682 which is used at least in dired.
8683
8684 2000-09-12 Kenichi Handa <handa@etl.go.jp>
8685
8686 * international/quail.el (quail-define-package): Docstring
8687 modified.
8688
8689 2000-09-12 Kenichi Handa <handa@etl.go.jp>
8690
8691 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Add
8692 extra docstrings for "chinese-ccdospy", "chinese-ecdict",
8693 "chinese-etzy", "chinese-sw", and "chinese-ziranma". Modify the
8694 docstring of "chinese-py".
8695
8696 * international/quail.el (quail-translation-docstring): New
8697 variable.
8698 (quail-show-keyboard-layout): Docstring modified.
8699 (quail-select-current): Likewise.
8700 (quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
8701 infinite recursive call.
8702 (quail-help): Check quail-translation-docstring. Format of the
8703 output changed.
8704 (quail-help-insert-keymap-description): Adjusted for the above
8705 change.
8706
8707 2000-09-11 Gerd Moellmann <gerd@gnu.org>
8708
8709 * bytecomp.el (byte-compile-defvar): Only cons onto
8710 current-load-list in top-level forms. Else this leaks a cons cell
8711 every time a defun is called.
8712
8713 2000-09-11 Miles Bader <miles@lsi.nec.co.jp>
8714
8715 * diff-mode.el (diff-apply-hunk): Function basically rewritten.
8716 Now understands non-unified diffs. Some functionality moved into
8717 `diff-hunk-text' and `diff-find-text'. Add OTHER-FILE, DRY-RUN,
8718 POPUP, and NOERROR arguments. If DRY-RUN is true, don't actually
8719 modify anything. Only reposition point in the patched file if the
8720 patch succeeds. Only pop up another window if POPUP is true.
8721 Emit a message describing what happened if successful, and at what
8722 line-offset. Automatically detect reversed hunks and do something
8723 appropriate.
8724 (diff-hunk-text, diff-find-text): New functions.
8725 (diff-filter-lines): Function removed.
8726 (diff-test-hunk): New function.
8727 (diff-goto-source): Rewritten in terms of diff-apply-hunk.
8728
8729 2000-09-10 Dave Love <fx@gnu.org>
8730
8731 * textmodes/tildify.el: Minor doc/commentary fixes.
8732 (tildify) <defgroup>: Add :version.
8733
8734 * faces.el (face-x-resources): Make custom type more specific.
8735 (frame-background-mode): Use mapc.
8736 (region) <defcustom>: Add :version.
8737
8738 2000-09-08 Stefan Monnier <monnier@cs.yale.edu>
8739
8740 * vc-sccs.el (vc-sccs-register):
8741 * vc-rcs.el (vc-rcs-register):
8742 * vc-cvs.el (vc-cvs-register): Don't clear file's properties.
8743 * vc.el (vc-register): Clear file's properties.
8744
8745 2000-09-08 Gerd Moellmann <gerd@gnu.org>
8746
8747 * faces.el (face-spec-set): Only face-spec-reset-face when
8748 ATTRS is non-nil.
8749
8750 2000-09-08 Eli Zaretskii <eliz@is.elta.co.il>
8751
8752 * help.el (help-insert-xref-button): Fix a typo in doc string.
8753
8754 2000-09-07 Eli Zaretskii <eliz@is.elta.co.il>
8755
8756 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
8757 Fix doc strings of chinese-py-b5, chinese-py, and chinese-tonepy input
8758 methods.
8759
8760 * menu-bar.el (read-mail-item-name): New function.
8761 (menu-bar-tools-menu): Use it to compute and display the package
8762 used to read email.
8763 (menu-bar-tools-menu): Fix typo in GUD's help string.
8764
8765 2000-09-07 Dave Love <fx@gnu.org>
8766
8767 * diff-mode.el (diff-mouse-goto-source): New function.
8768
8769 * vc-sccs.el: Doc fixes.
8770 (vc-sccs-register-switches, vc-sccs-master-templates): Add :version.
8771
8772 * vc-rcs.el: Doc fixes.
8773 (vc-rcs-register-switches, vc-rcs-checkin-switches)
8774 (vc-rcs-checkout-switches, vc-rcs-header)
8775 (vc-rcs-master-templates): Add or change :version.
8776
8777 * vc-cvs.el: Doc fixes.
8778 (vc-cvs-register-switches, vc-cvs-header, vc-cvs-use-edit)
8779 (vc-cvs-stay-local): Add :version.
8780
8781 * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
8782
8783 2000-09-07 Kenichi Handa <handa@etl.go.jp>
8784
8785 * international/quail.el (quail-help): Fix previous change.
8786
8787 2000-09-07 Gerd Moellmann <gerd@gnu.org>
8788
8789 * faces.el (color-values): Doc fix.
8790
8791 * faces.el (frame-set-background-mode): Use frame-parameter
8792 instead of frame-parameters.
8793
8794 * frame.el (filtered-frame-list): Reduce consing.
8795 (frames-on-display-list): Call frame-parameter instead of
8796 frame-parameters.
8797
8798 2000-09-07 Kenichi Handa <handa@etl.go.jp>
8799
8800 * language/devan-util.el (devanagari-to-indian-region): In the
8801 loop, change the following char, not preceding char.
8802
8803 2000-09-07 Gerd Moellmann <gerd@gnu.org>
8804
8805 * menu-bar.el (menu-bar-update-buffers): Call frame-parameter
8806 instead of frame-parameters.
8807
8808 * faces.el (set-face-attribute): Simplify by calling
8809 internal-set-lisp-face-attribute with FRAME being 0.
8810
8811 * vc.el: Remove `Id' version control keyword.
8812
8813 2000-09-07 Kenichi Handa <handa@etl.go.jp>
8814
8815 * help.el (help-make-xrefs): Adjusted for the change of
8816 help-xref-mule-regexp.
8817 (help-insert-xref-button): New function.
8818
8819 * international/mule-cmds.el (help-xref-mule-regexp-template):
8820 Include the pattern for character set.
8821 (leim): New group.
8822
8823 * international/quail.el: Don't require face.
8824 (quail): New group.
8825 (quail-other-command): Dummy command to make quail-help work better.
8826 (quail-keyboard-layout-alist): Add Keyboard type "jp106".
8827 (quail-keyboard-layout-substitution): New variable.
8828 (quail-update-keyboard-layout): New function.
8829 (quail-keyboard-layout-type): New customizable variable.
8830 (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
8831 (quail-keyboard-translate): Pay attention to
8832 quail-keyboard-layout-substitution.
8833 (quail-insert-kbd-layout): New function.
8834 (quail-show-keyboard-layout): New function.
8835 (quail-get-translation): If the definition is a vector of length
8836 1, and the element is a string of length 1, return the character
8837 in that string.
8838 (quail-update-current-translations): Fix the case of
8839 relative-index out of range.
8840 (quail-build-decode-map, quail-insert-decode-map): New Functions.
8841 (quail-help): Show keyboard layout by quail-insert-kbd-layout.
8842 Show key sequences for all available characters.
8843 (quail-help-insert-keymap-description): Don't show such verbose
8844 key bindings as quail-self-insert-command.
8845
8846 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
8847 Format changed, and each element now have extra documentations.
8848 (tit-process-header): Delete invalid characters from TIT-PROMPT.
8849 Adjusted for the change of quail-cxterm-package-ext-info.
8850
8851 2000-09-06 Gerd Moellmann <gerd@gnu.org>
8852
8853 * vc-hooks.el (toplevel): Don't require `vc' during compilation;
8854 requiring it leads to a recursive loading of vc.el and vc-hooks.el
8855 during bootstrap.
8856
8857 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
8858
8859 * vc.el: (toplevel): Don't require `dired' at run-time.
8860 (vc-dired-resynch-file): Remove autoload cookie.
8861
8862 2000-09-05 Andre Spiegel <spiegel@gnu.org>
8863
8864 * vc.el: Made several backend functions optional.
8865 (vc-default-responsible-p): New function.
8866 (vc-merge): Use RET for first version to trigger merge-news, not
8867 prefix arg.
8868 (vc-annotate): Handle backends that do not support annotation.
8869 (vc-default-merge-news): Removed. The existence of a merge-news
8870 implementation is now checked on caller sites.
8871
8872 * vc-hooks.el (vc-default-mode-line-string): Removed CVS special
8873 case.
8874
8875 * vc-cvs.el (vc-cvs-mode-line-string): New function, handles the
8876 special case that has been removed from the default in vc-hooks.el.
8877
8878 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
8879
8880 * vc.el (vc-log-edit): Properly handle the case where FILE is nil.
8881
8882 2000-09-05 Andre Spiegel <spiegel@gnu.org>
8883
8884 * vc-hooks.el: Require vc during compilation.
8885 (vc-file-setprop): Use `vc-touched-properties' if bound by the new
8886 macro `with-vc-properties' in vc.el.
8887 (vc-file-getprop): Doc fix.
8888 (vc-after-save): Call `vc-dired-resynch-file' only if vc is loaded.
8889
8890 * vc.el: Require dired-aux during compilation.
8891 (vc-name-assoc-file): Moved to vc-sccs.el.
8892 (with-vc-properties): New macro.
8893 (vc-checkin, vc-checkout, vc-revert, vc-cancel-version,
8894 vc-finish-steal): Use it.
8895 (vc-cancel-version): Moved RCS-specific code to vc-rcs.el. The call
8896 to the backend-specific function is now supposed to do the checkout,
8897 too.
8898 (vc-log-edit): Handle FILE being nil and added a FIXME for log-edit.
8899
8900 * vc-cvs.el (vc-cvs-checkin, vc-cvs-checkout): Don't bother to
8901 set file properties; that gets done in the generic code now.
8902
8903 * vc-rcs.el (vc-rcs-uncheck): Renamed to `vc-rcs-cancel-version'.
8904 Changed parameter list, added code from vc.el that does the
8905 checkout, possibly with a double-take.
8906
8907 * vc-sccs.el (vc-sccs-name-assoc-file): Moved here from vc.el.
8908 (vc-sccs-add-triple, vc-sccs-rename-file, vc-sccs-lookup-triple): Use
8909 the above under the new name.
8910 (vc-sccs-uncheck): Renamed to `vc-sccs-cancel-version'. Changed
8911 parameter list, added checkout command.
8912 (vc-sccs-checkin, vc-sccs-checkout): Don't bother to set file
8913 properties; that gets done in the generic code now.
8914
8915 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
8916
8917 * vc.el: Docstring fixes (courtesy of checkdoc).
8918
8919 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
8920
8921 * vc.el (vc-checkout-writable-buffer-hook)
8922 (vc-checkout-writable-buffer): Remove.
8923 (vc-start-entry): Always call vc-log-edit, never vc-log-mode.
8924 (vc-log-mode): Make it into a clean derived major mode.
8925 (vc-log-edit): Mark buffer unmodified (as vc-log-mode did) and use
8926 vc-log-mode if log-edit is not available.
8927 (vc-dired-mode-map): Don't set-keymap-parent yet.
8928 (vc-dired-mode): Do set-keymap-parent here.
8929 (vc-dired-buffers-for-dir): Nop if dired is not loaded.
8930
8931 2000-09-05 Gerd Moellmann <gerd@gnu.org>
8932
8933 * faces.el (set-face-attribute, face-spec-reset-face)
8934 (face-spec-set): Avoid consing by removing calls to `apply'.
8935
8936 * frame.el (frame-parameter): Move to C code.
8937
8938 2000-09-05 Dave Love <fx@gnu.org>
8939
8940 * help.el (help-manyarg-func-alist): Add ml-prefix-argument-loop,
8941 insert-before-markers-and-inherit. Now checked systematically!
8942
8943 2000-09-05 Alex Schroeder <alex@gnu.org>
8944
8945 * sql.el (sql-postgres): Use sql-postgres-options.
8946 (sql-postgres-options): New variable.
8947
8948 2000-09-05 Alex Schroeder <alex@gnu.org>
8949
8950 * sql.el (sql-mode-menu): Work around missing variable mark-active
8951 in XEmacs.
8952 (sql-mode): Added call to easy-menu-add for XEmacs compatibility.
8953 (sql-interactive-mode): Added call to easy-menu-add for XEmacs
8954 compatibility.
8955
8956 2000-09-04 Gerd Moellmann <gerd@gnu.org>
8957
8958 * vc.el (vc-dired-resynch-file): Add autoload cookie.
8959
8960 * vc.el (toplevel): Require `dired' at run-time for dired-mode-map.
8961
8962 * Makefile.in (DONTCOMPILE): Fix typo in file name.
8963
8964 2000-09-04 Andre Spiegel <spiegel@gnu.org>
8965
8966 * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we
8967 don't support anything else under SCCS yet.
8968
8969 * vc-hooks.el: Minor doc fixes.
8970
8971 2000-09-04 Andre Spiegel <spiegel@gnu.org>
8972
8973 * vc.el (vc-next-action-on-file): Do not visit the file if it's
8974 not necessary. If verbose in state `needs-patch', do the same as
8975 under `up-to-date'. When NOT verbose and `needs-patch', check out
8976 latest version instead of `merge-news'.
8977 (vc-next-action-dired): Don't mess with default-directory here; it
8978 breaks other parts of dired. It is the job of the
8979 backend-specific functions to adjust it temporarily if they need it.
8980 (vc-next-action): Remove a special CVS case.
8981 (vc-clear-headers): New optional arg FILE.
8982 (vc-checkin, vc-checkout): Set properties vc-state and
8983 vc-checkout-time properly.
8984 (vc-finish-steal): Call steal-lock, not steal, which doesn't exist.
8985 (vc-print-log): Use new backend function `show-log-entry'.
8986 (vc-cancel-version): Do the checks in a different order. Added a
8987 FIXME concerning RCS-only code.
8988
8989 * vc-rcs.el (vc-rcs-show-log-entry): New function.
8990 (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties.
8991
8992 * vc-cvs.el (vc-cvs-show-log-entry): New function.
8993
8994 * vc-hooks.el (vc-default-mode-line-string): Show state
8995 `needs-patch' as a `-' too.
8996
8997 2000-09-04 Andre Spiegel <spiegel@gnu.org>
8998
8999 * vc.el (vc-responsible-backend): New optional arg REGISTER.
9000 (vc-default-could-register): New function.
9001 (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions.
9002 (vc-resynch-buffer): Call vc-dired-resynch-file.
9003 (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use
9004 vc-resynch-buffer instead of vc-resynch-window.
9005 (vc-next-action-dired): Don't redisplay here, that gets done as a
9006 result of the individual file operations.
9007 (vc-retrieve-snapshot): Corrected prompt order.
9008
9009 * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file.
9010
9011 * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp
9012 as well.
9013 (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p. Handle
9014 hostname regexps. Updated all callers.
9015 (vc-cvs-responsible-p): Handle directories as well.
9016 (vc-cvs-could-register): New function.
9017 (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file
9018 properties up-to-date.
9019
9020 * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the
9021 user whether to create one.
9022
9023 2000-09-04 Andre Spiegel <spiegel@gnu.org>
9024
9025 * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to
9026 check out a non-existing file.
9027
9028 * vc-cvs.el (vc-cvs-checkout): Do the right thing when the
9029 workfile does not exist.
9030
9031 * vc.el (vc-version-diff): Use `require' to check for existence of
9032 diff-mode.
9033
9034 2000-09-04 Andre Spiegel <spiegel@gnu.org>
9035
9036 * vc-cvs.el (vc-cvs-registered): Use new function
9037 vc-cvs-parse-entry to do the actual work.
9038
9039 2000-09-04 Andre Spiegel <spiegel@gnu.org>
9040
9041 * vc-hooks.el (vc-find-backend-function): If function doesn't
9042 exist, return nil instead of error.
9043 (vc-call-backend): Doc fix.
9044
9045 * vc.el (vc-do-command): Doc fix.
9046 (vc-finish-logentry): When checking in from vc-dired, choose the
9047 right backend for logentry check.
9048 (vc-dired-mode-map): Inherit from dired-mode-map.
9049 (vc-dired-mode): Local value of dired-move-to-filename-regexp
9050 simplified.
9051 (vc-dired-state-info): Removed, updated caller.
9052 (vc-default-dired-state-info): Use parentheses instead of hyphens.
9053 (vc-dired-hook): Use vc-BACKEND-dir-state, if available.
9054 (vc-dired-listing-switches): New variable.
9055 (vc-directory): Use it, instead of dired-listing-switches.
9056
9057 * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too.
9058 (vc-cvs-dir-state): New function.
9059 (vc-cvs-dir-state-heuristic): New function, subroutine of the above.
9060 (vc-cvs-parse-entry): New function, also to be used in
9061 vc-cvs-registered.
9062
9063 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9064
9065 * vc.el (vc-revert-buffer): Hide the frame for dedicated windows
9066 *or* single-window-frames.
9067
9068 2000-09-04 Andre Spiegel <spiegel@gnu.org>
9069
9070 * vc.el (vc-update-changelog): Split into generic part and default
9071 implementation. Doc string adapted.
9072 (vc-default-update-changelog): New function. Call the `rcs2log'
9073 script in exec-directory, to fix a long-standing nuisance.
9074
9075 * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that
9076 simply signals an error.
9077
9078 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9079
9080 * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the
9081 control-flow more clear and to avoid running `cvs' twice.
9082
9083 * vc.el (vc-next-action-on-file): Doc fix.
9084 (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode.
9085 (vc-print-log): Eval `file' before constructing the continuation.
9086
9087 2000-09-04 Andre Spiegel <spiegel@gnu.org>
9088
9089 * vc.el (vc-next-action-on-file): Corrected several messages.
9090 (vc-merge): Add prefix arg `merge-news'; handle it.
9091
9092 * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this
9093 is not reached. It is.
9094 (vc-cvs-merge): Set state to 'edited after merge.
9095 (vc-cvs-merge-news): Set workfile version to nil if not known.
9096 (vc-cvs-latest-on-branch-p): Recommented. Candidate for removal.
9097
9098 * vc-*.el (vc-*-checkout): Switch off coding systems for checkout
9099 via stdout. (Merge from main line.)
9100
9101 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9102
9103 * vc.el (vc-finish-logentry): Thinko in the "same comment"
9104 detection.
9105
9106 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9107
9108 * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them
9109 against kill-all-local-variables.
9110 (vc-log-edit): Don't save vc-parent-buffer any more.
9111 (vc-last-comment-match): Initialize to an empty string.
9112 (vc-post-command-functions): New hook.
9113 (vc-do-command): Run it.
9114 (vc-next-action-on-file): Remove unnecessary pop-to-buffer.
9115 (vc-finish-logentry): Only add the comment to the ring if it's
9116 different from the last comment entered.
9117 (vc-new-comment-index): New function.
9118 (vc-previous-comment): Use it. Make the minibuffer message
9119 slightly less terse.
9120 (vc-comment-search-reverse): Make it work forward as well. Don't
9121 set vc-comment-ring-index if no match is found. Use
9122 vc-new-comment-index.
9123 (vc-comment-search-forward): Use vc-comment-search-reverse.
9124 (vc-dired-mode-map): Don't inherit from dired-mode-map since
9125 define-derived-mode will do it for us. Bind `v' to a keymap that
9126 inherits from vc-prefix-map so that we can bind `vt' without
9127 binding C-x v t.
9128 (vc-retrieve-snapshot): Parenthesis typo.
9129
9130 * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0
9131 to 1. Make sure to switch to *vc* before looking for an error
9132 message. Use vc-parse-buffer.
9133
9134 2000-09-04 Andre Spiegel <spiegel@gnu.org>
9135
9136 * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR
9137 and NAME.
9138 (vc-retrieve-snapshot): Split into two parts.
9139 (vc-default-retrieve-snapshot): New function.
9140
9141 * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME.
9142 (vc-cvs-retrieve-snapshot): New function (untested).
9143 (vc-cvs-stay-local): Default to t.
9144 (vc-cvs-remote-p): New function and property.
9145 (vc-cvs-state): Stay local only if the above is t.
9146 (vc-handle-cvs): Removed.
9147 (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be
9148 done via vc-handled-backends now.
9149 (vc-cvs-header): Escape Id.
9150
9151 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9152
9153 * vc.el (vc-do-command): Remove unused commands.
9154 (vc-version-diff): Make sure default-directory ends with a slash.
9155 Move the window commands into a vc-exec-after.
9156 (vc-print-log): Move more of the code into the `vc-exec-after'.
9157
9158 2000-09-04 Andre Spiegel <spiegel@gnu.org>
9159
9160 * vc.el (vc-exec-after): Fix disassembly of previous sentinel.
9161 (vc-print-log): Search current revision from beginning of buffer.
9162 (vc-revert-buffer): Clear echo area after the diff is finished.
9163 (vc-prefix-map): Removed definition of "t" for terse display in vc
9164 dired.
9165 (vc-dired-mode-map): Inherit from dired-mode-map. Added
9166 definition of "vt" for terse display.
9167 (vc-dired-mode): Fix dired-move-to-filename-regexp.
9168
9169 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9170
9171 * vc.el (vc-exec-after): Avoid caddr.
9172
9173 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9174
9175 * vc.el (vc-exec-after): New function.
9176 (vc-do-command): Use it to add a termination message for async
9177 procs.
9178 (vc-checkout): Try to handle a missing-backend situation.
9179 (vc-version-diff): Use vc-exec-after to fix the behavior for diffs
9180 of a directory with a backend using async diffs.
9181 (vc-print-log): Use vc-exec-after and use log-view-goto-rev if
9182 present.
9183
9184 * vc-sccs.el (vc-sccs-state-heuristic): Use
9185 file-ownership-preserved-p.
9186
9187 * vc-rcs.el (vc-rcs-state-heuristic): Use
9188 file-ownership-preserved-p.
9189 (vc-rcs-checkout): Remove the error-handling for missing-rcs.
9190
9191 2000-09-04 Andre Spiegel <spiegel@gnu.org>
9192
9193 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to
9194 vc-do-command.
9195
9196 * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert
9197 when there are no changes.
9198
9199 2000-09-04 Andre Spiegel <spiegel@gnu.org>
9200
9201 * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p.
9202
9203 * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p.
9204
9205 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9206
9207 * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el.
9208
9209 * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move
9210 the `fset' outside of the defvar so that it works even if
9211 vc-prefix-map was already defined.
9212 (vc-setup-buffer): New function, split out of vc-do-command.
9213 (vc-do-command): Allow BUFFER to be t to mean `just use the
9214 current buffer without any fuss'.
9215 (vc-version-diff): Change the `diff' backend operation to just put
9216 the diff in the current buffer without erasing it. Always use
9217 *vc-diff* even for directory-diffs. Use vc-setup-buffer. Protect
9218 shrink-window-if-larger-than-buffer.
9219 (vc-print-log): Change the `print-log' backend operation to just
9220 put the log in the current buffer without erasing it. Protect
9221 shrink-window-if-larger-than-buffer.
9222 (vc-update-change-log): Fix setd typo.
9223
9224 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis.
9225 (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer.
9226
9227 * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer.
9228 (vc-rcs-diff): Insert in the current buffer and remove unused arg
9229 CMP.
9230
9231 * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use
9232 with-temp-file. Use the new BUFFER=t argument to vc-do-command.
9233 (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer.
9234
9235 2000-09-04 Andre Spiegel <spiegel@gnu.org>
9236
9237 * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is
9238 not possible, use vc-BACKEND-workfile-unchanged-p.
9239 (vc-default-workfile-unchanged-p): New function. Delegates to a
9240 full vc-BACKEND-diff.
9241
9242 * vc-hooks.el (vc-simple-command): Removed.
9243
9244 * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command
9245 instead of vc-simple-command.
9246 (vc-rcs-fetch-master-state): Removed check for unlocked-changes to
9247 avoid doing a diff when opening a file.
9248 (vc-rcs-state): Added check for unlocked-changes.
9249 (vc-rcs-header): Escape Id.
9250 (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION.
9251 (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific
9252 version.
9253
9254 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten.
9255 (vc-sccs-diff): Remove optional arg CMP.
9256 (vc-sccs-state): Call vc-workfile-unchanged-p, not the
9257 SCCS-specific function.
9258
9259 * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of
9260 vc-simple-command.
9261
9262 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9263
9264 * vc.el (vc-editable-p): Renamed from vc-writable-p.
9265 (with-vc-file, vc-merge): Use vc-editable-p.
9266 (vc-do-command): Remove unused var vc-file and fix the
9267 doubly-defined `status' var. Add a user message when starting an
9268 async command.
9269 (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry)
9270 (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file):
9271 Use with-current-buffer.
9272 (vc-buffer-sync): Use unless.
9273 (vc-next-action-on-file): If the file is 'edited by read-only,
9274 make it read-write instead of trying to commit.
9275 (vc-version-diff, vc-update-change-log): Use `setq
9276 default-directory' rather than `cd'.
9277 (vc-log-edit): Don't forget to set default-directory in the
9278 buffer.
9279
9280 * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis.
9281 (vc-sccs-state-heuristic): Use file-writable-p instead of
9282 comparing userids.
9283 (vc-sccs-checkout): Use `unless'.
9284
9285 * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead
9286 of comparing userids.
9287 (vc-rcs-fetch-master-state): Handle the case where rcs is missing.
9288 Simplify the logic by eliminating unreachable code.
9289 (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and
9290 just do a recursive call if we need to retry.
9291 (vc-rcs-checkout): Handle the case where rcs is missing by making
9292 the buffer read-write if requested and re-signalling the error.
9293
9294 * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP.
9295
9296 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9297
9298 * vc-hooks.el (vc-handled-backends): Docstring change.
9299 (vc-ignore-vc-files): Mark obsolete.
9300 (vc-registered): Check vc-ignore-vc-files.
9301 (vc-find-file-hook, vc-file-not-found-hook): Don't check
9302 vc-ignore-vc-files.
9303
9304 * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs.
9305
9306 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9307
9308 * vc.el (vc-checkout): Don't do anything special for ange-ftp
9309 files since ange-ftp already has vc-registered return nil.
9310
9311 * vc-sccs.el (vc-sccs-state): Use with-temp-buffer.
9312 (vc-sccs-workfile-version): Use with-temp-buffer and new
9313 vc-parse-buffer and don't bother setting the property.
9314 (vc-sccs-add-triple): Use with-current-buffer and
9315 find-file-noselect.
9316 (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if.
9317
9318 * vc-rcs.el (vc-rcs-find-most-recent-rev): New function. The code
9319 derives from the old vc-parse-buffer but uses the revision number
9320 rather than the date (much easier to compare robustly).
9321 (vc-rcs-fetch-master-state): Use `with-temp-buffer'. Adapt to the
9322 new vc-parse-buffer (and vc-rcs-find-most-recent-rev). Find the
9323 locking-user more directly. Check strict locking and set
9324 checkout-model appropriately.
9325 (vc-rcs-parse-locks): Remove.
9326 (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the
9327 new vc-parse-buffer (and vc-rcs-find-most-recent-rev).
9328 (vc-rcs-system-release): Use with-current-buffer and
9329 vc-parse-buffer.
9330 (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer.
9331
9332 * vc-hooks.el (vc-parse-buffer): Lobotomize the monster.
9333 (vc-simple-command): Docstring fix.
9334 (vc-registered): Align the way the file-handler is called with the
9335 way the function itself works.
9336 (vc-file-owner): Remove.
9337
9338 * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer. Reorder
9339 extraction of fields and call to file-attributes because of a
9340 temporary bug in rcp.el.
9341 (vc-cvs-fetch-status): Use with-current-buffer.
9342
9343 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9344
9345 * vc.el (vc-do-command): Use file-relative-name.
9346 (vc-responsible-backend): Use vc-backend if possible.
9347 (vc-create-snapshot): Improve the `interactive' spec. Add support
9348 for branches and dispatch to backend-specific `create-snapshot'.
9349 (vc-default-create-snapshot): New function, containing the bulk of
9350 the old vc-create-snapshot.
9351 (vc-retrieve-snapshot): Improve the interactive spec.
9352
9353 * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el.
9354 (vc-backend-hook-functions): Remove.
9355 (vc-find-backend-function): Don't try to load vc-X-hooks anymore.
9356 (vc-backend): Reintroduce the test for `file = nil' now that I
9357 know why it was there (and added a comment to better remember).
9358
9359 * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in
9360 code from vc-sccs-hooks.el.
9361 (vc-sccs-release, vc-sccs-system-release): Remove. Don't require
9362 'vc anymore.
9363 (vc-sccs-responsible-p): Use expand-file-name instead of concat
9364 and file-directory-p instead of file-exists-p.
9365 (vc-sccs-check-headers): Simplify the regexp.
9366
9367 * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code
9368 from vc-rcs-hooks.el. Don't require 'vc anymore.
9369 (vc-rcs-responsible-p): Use expand-file-name instead of concat and
9370 file-directory-p instead of file-exists-p.
9371
9372 * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code
9373 from vc-cvs-hooks.el.
9374 (proto vc-cvs-registered): Require 'vc-cvs instead of
9375 'vc-cvs-hooks. Don't require 'vc anymore.
9376 (vc-cvs-responsible-p): Use expand-file-name instead of concat and
9377 file-directory-p instead of file-exists-p.
9378 (vc-cvs-create-snapshot): New function, replacing
9379 vc-cvs-assign-name.
9380 (vc-cvs-assign-name): Remove.
9381
9382 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9383
9384 * vc-cvs.el (vc-cvs-header): New var.
9385
9386 * vc-rcs.el (vc-rcs-exists): Remove.
9387 (vc-rcs-header): New var.
9388
9389 * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use
9390 `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'.
9391 (vc-sccs-header): New var.
9392
9393 * vc.el (vc-do-command): Get rid of the `last' argument.
9394 (vc-header-alist): Remove, replaced by vc-X-header.
9395 (vc-insert-headers): Use vc-X-header instead of vc-header-alist.
9396 (vc-dired-hook): Use expand-file-name instead of concat.
9397 (vc-directory): Use file-name-as-directory.
9398 (vc-snapshot-precondition, vc-create-snapshot)
9399 (vc-retrieve-snapshot): Allow the command to operate on any
9400 directory.
9401
9402 * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either
9403 just removing the 'WORKFILE argument or by removing the 'MASTER
9404 argument and replacing `file' with (vc-name file).
9405
9406 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9407
9408 * vc.el: Update Copyright and add a crude list of backend funs.
9409 (vc-writable-p): New function.
9410 (with-vc-file): Use vc-writable-p.
9411 (vc-next-action-on-file): Update call to vc-steal-lock and cleanup.
9412 (vc-register): Avoid vc-name.
9413 (vc-locking-user): Remove.
9414 (vc-steal-lock): Make the `owner' arg non-optional.
9415 (vc-merge): Use vc-writable-p instead of vc-locking-user and
9416 vc-checkout-model.
9417 (vc-default-dired-state-info): Use vc-state instead of
9418 vc-locking-user and return special strings for special states.
9419 (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user
9420 and get rid of one of the special CVS cases.
9421 (vc-cancel-version): prettify error message with \\[...].
9422 (vc-rename-master): New function.
9423 (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn
9424 use vc-rename-master) instead of vc-BACKEND-record-rename. Make
9425 the CVS special case generic.
9426 (vc-default-record-rename): Remove.
9427 (vc-file-tree-walk-internal): Only call FUNC for files that are
9428 under control of some VC backend and replace `concat' with
9429 expand-file-name.
9430 (vc-file-tree-walk): Update docstring.
9431 (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot)
9432 (vc-retrieve-snapshot): Update call to vc-file-tree-walk.
9433
9434 * vc-sccs.el (vc-sccs-rename-file): Renamed from
9435 vc-sccs-record-rename. Use `find-file-noselect' rather than
9436 `find-file' and call `vc-rename-master' to do the actual move.
9437 (vc-sccs-diff): Remove unused `backend' variable.
9438
9439 * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version
9440 to delay loading of vc-sccs until it is really used.
9441 (vc-sccs-master-templates): Preload.
9442 (vc-sccs-state): Update call to vc-sccs-parse-locks.
9443 (vc-sccs-project-dir): Remove (merged into
9444 vc-sccs-search-project-dir).
9445 (vc-sccs-search-project-dir): Rewrite using file name handling ops
9446 rather than `concat', make sure it is preloaded and don't bother
9447 to check that the file actually exists.
9448 (vc-sccs-parse-locks): Remove unused `file' argument, remove
9449 `locks' argument (use buffer's content instead) and eliminate n^2
9450 behavior.
9451
9452 * vc-rcs.el: Update Copyright.
9453 (vc-rcs-rename-file): New function.
9454 (vc-rcs-diff): Remove unused `backend' variable.
9455
9456 * vc-hooks.el: Update Copyright.
9457 (vc-backend): Don't accept a nil argument any more.
9458 (vc-up-to-date-p): Turn into a defsubst.
9459 (vc-possible-master): New function.
9460 (vc-check-master-templates): Use `vc-possible-master' and allow
9461 funs in vc-X-master-templates to return a non-existent file.
9462
9463 * vc-cvs.el: Update Copyright.
9464 (vc-cvs-diff): Remove unused `backend' variable.
9465 (vc-cvs-checkout): Only toggle read-only if the buffer is setup right.
9466
9467 * vc-cvs-hooks.el: Preload a proto vc-cvs-registered.
9468
9469 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9470
9471 * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version
9472 since it can be called from vc-rcs.el.
9473 (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior.
9474
9475 2000-09-04 Andre Spiegel <spiegel@gnu.org>
9476
9477 * vc.el (vc-version-diff): Expand file name read from the
9478 minibuffer. Handle the case when a previous version number can't
9479 be guessed. Give suitable messages when there were no differences
9480 found.
9481 (vc-clear-headers): Call backend-specific implementation, if one
9482 exists.
9483 (vc-cancel-version): Made error checks generic. When done, clear
9484 headers generically, too.
9485
9486 * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here
9487 from vc-clear-headers in vc.el.
9488
9489 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer
9490 correctly.
9491 (vc-rcs-latest-on-branch-p): Made second argument VERSION
9492 optional. Handle the case when it's not there.
9493
9494 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9495
9496 * vc.el (vc-locking-user): Moved from vc-hooks.el.
9497
9498 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9499
9500 * vc-hooks.el (vc-loadup): Remove.
9501 (vc-find-backend-function): Use `require'. Also, handle the case
9502 where vc-BACKEND-hooks.el doesn't exist.
9503 (vc-call-backend): Cleanup.
9504
9505 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9506
9507 * vc-rcs-hooks.el (vc-rcs-templates-grabbed,
9508 vc-rcs-grab-templates)
9509 (vc-rcs-registered): Remove. The default function works as well.
9510 * vc-sccs-hooks.el (vc-sccs-templates-grabbed,
9511 vc-sccs-grab-templates)
9512 (vc-sccs-registered): Remove. The default function works as well.
9513
9514 * vc.el (vc-version-diff): Left out a vc- in call to
9515 vc-call-backend.
9516 (vc-default-dired-state-info, vc-default-record-rename)
9517 (vc-default-merge-news): Update for the new backend argument.
9518
9519 * vc-hooks.el (vc-find-backend-function): Return a cons cell if
9520 using the default function.
9521 (vc-call-backend): If calling the default function, pass it the
9522 backend as first argument. Update the docstring accordingly.
9523 (vc-default-state-heuristic, vc-default-mode-line-string): Update
9524 for the new backend argument.
9525 (vc-make-backend-sym): Renamed from vc-make-backend-function.
9526 (vc-find-backend-function): Use the new name.
9527 (vc-default-registered): New function.
9528
9529 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9530
9531 * vc.el (vc-merge): Use vc-find-backend-function.
9532
9533 * vc-hooks.el (vc-backend-functions): Remove.
9534 (vc-loadup): Don't setup 'vc-functions.
9535 (vc-find-backend-function): New function.
9536 (vc-call-backend): Use above fun and populate 'vc-functions
9537 lazily.
9538 (vc-backend-defines): Remove.
9539
9540 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9541
9542 * vc.el (vc-register): Put a FIXME note for a newly found bug.
9543 Call vc-call-backend without the leading vc-.
9544 (vc-responsible-backend, vc-finish-logentry, vc-annotate)
9545 (vc-check-headers): Call vc-call-backend without the leading vc-.
9546 (vc-annotate-time-span): Replace confusing use of `cond' with `or'.
9547 (vc-annotate-display): Replace confusing use of `cond' with `or'.
9548 Call vc-call-backend without the leading vc-.
9549
9550 * vc-cvs.el (tail): Provide vc-cvs.
9551 * vc-sccs.el (tail): Provide vc-sccs.
9552 * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check.
9553
9554 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions)
9555 (vc-make-backend-function, vc-call): Pass names without leading
9556 `vc-' to vc-call-backend so we can blindly prefix them with vc-BACKEND.
9557 (vc-loadup): Don't load vc-X-hooks if vc-X is requested.
9558 (vc-call-backend): Always try to load vc-X-hooks.
9559 (vc-registered): Remove vc- in call to vc-call-backend.
9560
9561 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9562
9563 * vc.el (vc-process-filter): New function.
9564 (vc-do-command): Setup `vc-process-filter' for the async process.
9565 (vc-maybe-resolve-conflicts): New function to reduce
9566 code-duplication. Additionally, it puts the buffer in
9567 `smerge-mode' if applicable.
9568 (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after
9569 calling `merge-news'.
9570 (vc-merge): Use `vc-maybe-resolve-conflicts' after calling `merge'.
9571 (vc-log-edit): New function. Replacement for `vc-log-mode' by
9572 interfacing to log-edit.el.
9573 (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if
9574 log-edit is available.
9575 (vc-resolve-conflicts): Delegate to `smerge-ediff' if available.
9576
9577 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9578
9579 * vc.el (vc-register): Remove `vc-buffer-backend' setup.
9580 (vc-log-mode-map): New name for vc-log-entry-mode and merge the
9581 defvar and the initialization.
9582 (vc-log-mode): Minor docstring fix and use vc-log-mode-map.
9583
9584 * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove.
9585 (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling.
9586
9587 * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a FIXME.
9588
9589 2000-09-04 Andre Spiegel <spiegel@gnu.org>
9590
9591 * vc.el (vc-file-clear-masterprops): Removed.
9592 (vc-checkin, vc-revert-buffer): Removed calls to the above.
9593 (vc-version-diff): Use buffer-size without argument.
9594 (vc-register): Heed vc-initial-comment.
9595
9596 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for
9597 default branch.
9598
9599 * vc-rcs.el (vc-rcs-register): Parse command output to find master
9600 file name and workfile version.
9601 (vc-rcs-checkout): Removed call to vc-file-clear-masterprops.
9602
9603 * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to
9604 vc-file-clear-masterprops.
9605
9606 * vc-sccs.el (vc-sccs-checkout): Removed call to
9607 vc-file-clear-masterprops. If writable, set vc-state to 'edited
9608 rather than user login name.
9609
9610
9611 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9612
9613 * vc.el (vc-workfile-unchanged-p): Remove unused argument
9614 `want-differences-if-changed' and simplify.
9615 (vc-next-action-on-file) [needs-merge]: Resynch the buffer.
9616 (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status
9617 output (which is invalid for async vc-diff) to decide whether to
9618 do the revert silently or not.
9619
9620 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9621
9622 * vc-hooks.el (vc-loadup): Load files quietly.
9623 (vc-call-backend): Oops, brain fart.
9624
9625 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9626
9627 * vc-cvs.el (vc-cvs-state): Typo.
9628 (vc-cvs-merge-news): Return the status code rather than the error msg.
9629
9630 2000-09-04 Andre Spiegel <spiegel@gnu.org>
9631
9632 * vc.el (with-vc-file, vc-next-action, vc-version-diff)
9633 (vc-dired-mark-locked): Replaced usage of vc-locking-user with
9634 vc-state or vc-up-to-date-p.
9635 (vc-merge): Use vc-backend-defines to check whether merging is
9636 possible. Set state to 'edited after successful merge.
9637
9638 * vc-hooks.el (vc-locking-user): If locked by the calling user,
9639 return that name. Redocumented.
9640
9641 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9642
9643 * vc.el (vc-recompute-state, vc-next-action-on-file): Update to
9644 new `vc-state' semantics.
9645 (vc-finish-steal): Set 'vc-state to 'edited rather than setting
9646 'vc-locking-user to the current user.
9647 (vc-merge): Inline vc-backend-merge. Comment out code that I
9648 don't understand and hence can't adapt to the new `vc-state' and
9649 `vc-locking-user' semantics.
9650 (vc-backend-merge): Remove.
9651
9652 * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state
9653 rather than 'vc-locking-user.
9654
9655 * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'.
9656
9657 * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit.
9658 (vc-state): Don't use 'reserved any more. Just use the same
9659 convention as the one used for vc-<backend>-state where the
9660 locking user (as a string) is returned.
9661 (vc-locking-user): Update, based on the above convention. The
9662 'vc-locking-user property has disappeared.
9663 (vc-mode-line, vc-default-mode-line-string): Adapt to new `vc-state'.
9664
9665 * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state
9666 with a heuristic one.
9667 (vc-cvs-merge-news): Just use 'edited for the case with conflicts.
9668 (vc-cvs-checkin): Do a trivial parse to set the state in case of
9669 error. That allows us to get to 'needs-merge even in the
9670 stay-local case. There's still no way to detect 'needs-patch in
9671 such a setup (or to force an update for that matter).
9672 (vc-cvs-logentry-check): Remove, the default works as well.
9673
9674 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9675
9676 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs asynchronously.
9677
9678 * vc.el (vc-do-command): kill-all-local-variables, to reset any
9679 major-mode in which the buffer might have been put earlier. Use
9680 `remove' and `when'. Allow `okstatus' to be `async' and use
9681 `start-process' in this case.
9682 (vc-version-diff): Handle the case where the diff looks empty
9683 because of the use of an async process.
9684
9685 2000-09-04 Andre Spiegel <spiegel@gnu.org>
9686
9687 * vc.el (vc-next-action-on-file): Removed optional parameter
9688 `simple'. Recompute state unconditionally.
9689 (vc-default-toggle-read-only): Removed.
9690
9691 * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only.
9692 (vc-toggle-read-only): Undid prev change.
9693
9694 * vc-cvs.el (vc-cvs-stay-local): Renamed from
9695 vc-cvs-simple-toggle. Redocumented.
9696 (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic.
9697 (vc-cvs-toggle-read-only): Removed.
9698
9699 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9700
9701 * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): Remove.
9702 (vc-prefix-map): Move from vc-hooks.el and make autoloaded.
9703 (vc-release-greater-or-equal-p): Move to vc-rcs.el.
9704 (vc-file-clear-masterprops): Braindead "fix". It was a nop and
9705 still is. So maybe it should be removed.
9706 (vc-head-version, vc-find-binary): Remove.
9707 (vc-recompute-state): Move from vc-hooks.el.
9708 (vc-next-action-on-file): Add a `simple' argument to allow
9709 avoiding the `recompute' step (use for vc-cvs-simple-toggle).
9710 (vc-default-toggle-read-only, vc-default-record-rename): New funs.
9711 (vc-next-action, vc-dired-hook): Use vc-state instead of vc-cvs-status.
9712 (vc-dired-mode-map): Properly defvar it.
9713 (vc-print-log): Call log-view-mode if available.
9714 (small-temporary-file-directory): defvar instead of use boundp.
9715 (vc-merge-news): Moved to vc-cvs.el.
9716 (vc-default-merge-news): New function.
9717
9718 * vc-sccs.el: Require 'vc and 'vc-sccs-hooks.
9719 (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks.
9720 (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the
9721 unknown `vc-latest-version' function. It should probably refer to
9722 vc-workfile-version or somesuch, but it's very unclear to me and I
9723 don't have SCCS to test things.
9724
9725 * vc-sccs-hooks.el: Provide 'vc-sccs-hooks.
9726 (vc-sccs-state-heuristic): Fix typo.
9727 (vc-sccs-workfile-unchanged-p): Add missing argument.
9728
9729 * vc-rcs.el: Require vc and vc-rcs-hooks.
9730 (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks.
9731 (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p).
9732 (vc-release-greater-or-equal-p): Move from vc.
9733 (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part,
9734 vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates.
9735 (vc-rcs-checkout): Add a missing `new-version' argument in the
9736 call to vc-rcs-latest-on-branch-p. Hopefully that was the right one.
9737
9738 * vc-rcs-hooks.el: Provide 'vc-rcs-hooks.
9739 (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el.
9740 (vc-rcs-latest-on-branch-p): Use the `version' argument rather
9741 than the apparently unbound `workfile-version'.
9742
9743 * vc-hooks.el (vc-master-templates): Def the obsolete var.
9744 (vc-file-prop-obarray): Use `make-vector'.
9745 (vc-backend-functions): Add new hookable functions
9746 vc-toggle-read-only, vc-record-rename and vc-merge-news.
9747 (vc-loadup): If neither backend nor default functions exist, use
9748 the backend function rather than nil.
9749 (vc-call-backend): If the function if not bound yet, try to load
9750 the non-hook file to see if it provides it.
9751 (vc-call): New macro plus use it wherever possible.
9752 (vc-backend-subdirectory-name): Use neither `vc-default-back-end'
9753 nor `vc-find-binary' since it's only called from
9754 vc-mistrust-permission which is only used once the backend is known.
9755 (vc-checkout-model): Fix parenthesis.
9756 (vc-recompute-state, vc-prefix-map): Move to vc.el.
9757
9758 * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler warnings).
9759 (vc-cvs-release, vc-cvs-system-release): Remove.
9760 (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables.
9761 (vc-cvs-dired-state-info): Use `cvs-state' and slightly different
9762 status symbols.
9763 (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el.
9764 (vc-cvs-toggle-read-only): First cut at a function to allow a
9765 cvs-status-free vc-toggle-read-only.
9766 (vc-cvs-merge-news): Move from cvs-merge-news in vc.el.
9767 (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of
9768 vc-cvs-status. Also set vc-state rather than vc-locking-user.
9769 (vc-cvs-checkout): Modify access rights directly if the user
9770 requested not to use `cvs edit'. And refresh the mode line.
9771
9772 * vc-cvs-hooks.el: Provide 'vc-cvs-hooks.
9773 (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el.
9774
9775 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9776
9777 * vc-cvs.el (vc-cvs-checkout): Docstring fix. Added a `(if
9778 workfile' that got lost when the code was extracted from vc.el.
9779 And merged the tail with the rest of the code (not possible in the
9780 old vc.el where the tail was shared among all backends). And
9781 explicitly set the state to 'edited if `writable' is set.
9782
9783 * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name.
9784 (vc-cvs-state): Be careful to return the value from
9785 vc-cvs-parse-state.
9786 (vc-cvs-parse-status): Use expand-file-name. Don't set 'vc-state
9787 property but return it instead. Also be careful to handle a nil
9788 or "" `rev' when workfile is non-nil (it was handled properly when
9789 workfile was nil).
9790
9791 * vc.el: Removed those pesky unnecessary `(function' quotes.
9792 (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize
9793 directly in the defvar.
9794 (vc-do-command): Bind inhibit-read-only so as to properly handle
9795 the case where the destination buffer has been made read-only.
9796 (vc-diff): Delegate to vc-version-diff in all cases.
9797 (vc-version-diff): Setup the *vc-diff* buffer as was done in vc-diff.
9798 (vc-annotate-mode-variables): Removed (code moved partly to
9799 defvars and partly to vc-annotate-add-menu).
9800 (vc-annotate-mode): Turned into a derived-mode.
9801 (vc-annotate-add-menu): Moved in code in
9802 vc-annotate-mode-variables.
9803 (vc-update-change-log): Use make-temp-file if available.
9804
9805 2000-09-04 Martin Lorentzson <martinl@delysid.gnu.org>
9806
9807 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to
9808 `vc-checkout-model' updated to `vc-cvs-update-model'.
9809
9810 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9811
9812 * vc.el (vc-next-action-on-file): Added handling of state
9813 `unlocked-changes'.
9814 (vc-checkout-carefully): Is now practically obsolete, unless the
9815 above is too slow to be enabled unconditionally.
9816 (vc-update-change-log): Fixed typo.
9817
9818 * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'.
9819
9820 * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten.
9821 Now handles state `unlocked-changes'.
9822 (vc-sccs-workfile-unchanged-p): New function, to support the above.
9823
9824 * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'.
9825
9826 * vc-rcs-hooks.el (vc-rcs-state): Fixed typo.
9827 (vc-rcs-fetch-master-state): Bug fixes. Recognize state
9828 `unlocked-changes'.
9829 (vc-rcs-workfile-unchanged-p): Renamed from
9830 `vc-rcs-workfile-unchanged'. This is not a real backend-specific
9831 function yet, but supposed to become one soon.
9832
9833 * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to
9834 `vc-steal-lock'.
9835 (vc-call-backend): Changed error message.
9836 (vc-state): Added description of state `unlocked-changes'.
9837
9838 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9839
9840 * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to
9841 always return t in CVS-controlled directories.
9842
9843 * vc.el (vc-responsible-backend): New function.
9844 (vc-register): Largely rewritten.
9845 (vc-admin): Removed (implementation moved into vc-register).
9846 (vc-checkin): Redocumented.
9847 (vc-finish-logentry): If no backend defined yet (because we are in
9848 the process of registering), use the responsible backend.
9849
9850 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
9851 Updated function lists.
9852 (vc-call-backend): Fixed typo.
9853
9854 * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p):
9855 New functions.
9856 (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'.
9857 Removed query option. Redocumented.
9858
9859 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9860
9861 * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'.
9862
9863 * vc.el: Updated callers of `vc-checkout-required' to use
9864 `vc-checkout-model'.
9865
9866 2000-09-04 Martin Lorentzson <martinl@gnu.org>
9867
9868 * vc-rcs.el (vc-rcs-backend-release-p): function added. other
9869 stuff updated to reference this function instead of the old
9870 `vc-backend-release-p'.
9871
9872 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9873
9874 * vc-sccs-hooks.el (vc-uses-locking): Renamed to
9875 vc-checkout-model. Return appropriate values. Updated callers.
9876
9877 2000-09-04 Martin Lorentzson <martinl@gnu.org>
9878
9879 * vc.el (vc-backend-release, vc-backend-release-p): Moved to vc-rcs.el.
9880 (vc-backend-revert): Function moved into `vc-revert';
9881 `vc-next-action' must be updated to accomodate this change.
9882 (vc-backend-steal): Function moved into `vc-finish-steal'.
9883 (vc-backend-logentry-check): Function moved into
9884 `vc-finish-logentry'.
9885 (vc-backend-printlog): Function moved into `vc-print-log'.
9886 (vc-backend-uncheck): Function moved into `vc-cancel-version'.
9887 (vc-backend-assign-name): Function moved into
9888 `vc-create-snapshot'.
9889
9890 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9891
9892 * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking):
9893 Rename to vc-checkout-model. Return appropriate values.
9894 Update callers.
9895
9896 * vc-hooks.el (vc-backend-hook-functions): Rename vc-uses-locking
9897 to vc-checkout-model.
9898 (vc-checkout-required): Rename to vc-checkout-model.
9899 Re-implement and re-comment.
9900 (vc-after-save): Use vc-checkout-model.
9901
9902 2000-09-04 Martin Lorentzson <martinl@gnu.org>
9903
9904 * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff):
9905 Update to use the vc-BACKEND-diff functions instead.
9906 `vc-diff' is now working.
9907
9908 * vc-rcs.el (vc-rcs-logentry-check): New function.
9909
9910 * vc-cvs.el (vc-cvs-logentry-check): New function.
9911
9912 * vc-sccs.el (vc-sccs-diff): Function changed name from
9913 `vc-backend-diff'. This makes `vc-diff' work.
9914
9915 * vc-hooks.el (vc-backend-functions): Add `vc-diff' to the list
9916 of functions possibly implemented in a vc-BACKEND library.
9917 (vc-checkout-required): Fix bug that caused an error to be
9918 signaled during `vc-after-save'.
9919
9920 * vc.el: Fix typo.
9921 This checkin is made with our new VC code base for the very first time.
9922 A simple `(vc-checkin (buffer-file-name))' was used to perform it.
9923
9924 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to
9925 `vc-checkout-required' updated to `vc-cvs-uses-locking'.
9926
9927 * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required'
9928 updated to `vc-uses-locking'.
9929 (vc-checkout-required): Call to backend function.
9930 `vc-checkout-required' updated to `vc-uses-locking' instead.
9931
9932 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to
9933 `vc-checkout-required' updated to `vc-rcs-uses-locking'.
9934
9935 * vc.el (vc-checkin): Merge with `vc-backend-checkin' and update
9936 to match the split into various backends.
9937 (vc-backend-checkin): Remove. Merge with `vc-checkin'.
9938 (vc-retrieve-snapshot): Bug fix.
9939
9940 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9941
9942 * vc-sccs.el (vc-sccs-release): Doc fix.
9943
9944 2000-09-04 Martin Lorentzson <martinl@gnu.org>
9945
9946 * vc.el (vc-next-action-on-file): Bug found and fixed.
9947 (vc-checkout, vc-version-other-window, vc-retrieve-snapshot)
9948 (vc-cancel-version): Handle of vc-BACKEND-checkout updated.
9949
9950 * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version)
9951 (vc-rcs-checkout): Name space cleaned up. No more revision number
9952 crunching function names that are not prefixed with vc-rcs.
9953 (vc-rcs-checkout-model): Function added. References to
9954 `vc-checkout-model' replaced.
9955
9956 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9957
9958 * vc.el (vc-next-action-on-file): Rewritten for the new state model.
9959 (vc-backend-merge-news): Renamed to `vc-merge-news'. (Specific parts
9960 still need to be split, and implemented for RCS).
9961
9962 2000-09-04 Martin Lorentzson <martinl@gnu.org>
9963
9964 * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed.
9965
9966 * vc-sccs.el (vc-sccs-admin): Added the query-only option as
9967 required by the vc.el file.
9968
9969 * vc-rcs.el (vc-rcs-admin): Added the query-only option as
9970 required by the vc.el file.
9971 (vc-rcs-exists): Function added.
9972
9973 * vc-cvs.el (vc-cvs-admin): Added the query-only option as
9974 required by the vc.el file.
9975
9976 * vc.el (vc-admin): Updated to handle selection of appropriate
9977 backend. Current implementation is crufty and need re-thinking.
9978
9979 * vc-hooks.el (vc-parse-buffer): Bug found and fixed.
9980
9981 2000-09-04 Martin Lorentzson <martinl@gnu.org>
9982
9983 * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle
9984 beginning of annotate buffers correctly.
9985
9986 * vc.el (vc-annotate-get-backend, vc-annotate-display-default)
9987 (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate
9988 functionality updated quite a lot to support multiple backends.
9989 Variables `vc-annotate-mode', `vc-annotate-buffers',
9990 `vc-annotate-backend' added.
9991
9992 * vc-hooks.el (vc-backend-functions): `vc-annotate-command',
9993 `vc-annotate-difference' added to supported backend functions.
9994
9995 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9996
9997 * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout):
9998 Use with-temp-file instead of /bin/sh. Merged from mainline
9999
10000 2000-09-04 Martin Lorentzson <martinl@gnu.org>
10001
10002 * vc-sccs-hooks.el (vc-sccs-registered): Updated.
10003
10004 * vc-rcs-hooks.el (vc-rcs-registered): Updated.
10005
10006 * vc-cvs-hooks.el (vc-cvs-registered): Updated.
10007
10008 2000-09-04 Martin Lorentzson <martinl@gnu.org>
10009
10010 * vc-hooks.el: vc-state-heuristic added to
10011 vc-backend-hook-functions.
10012
10013 * vc-sccs-hooks.el (vc-sccs-registered): Bug fix.
10014
10015 * vc-rcs-hooks.el (vc-rcs-registered): Bug fix.
10016
10017 * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Rename
10018 `vc-uses-locking' to `vc-checkout-required'. Rename the `locked'
10019 state to `reserved'.
10020
10021 * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to
10022 `vc-checkout-required'. Rename the `locked' state to `reserved'.
10023
10024 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
10025
10026 * vc-rcs-hooks.el: Implement new state model. Hardly anything
10027 untouched.
10028
10029 * vc-rcs.el (vc-rcs-latest-on-branch-p): Move to vc-rcs-hooks.el.
10030
10031 * vc.el (vc-update-change-log): Use small-temporary-file-directory,
10032 if defined. (Merged from main line, slightly adapted.)
10033
10034 * vc-cvs.el (vc-cvs-annotate-difference): Handle possible
10035 millenium problem (merged from mainline).
10036
10037 2000-09-04 Martin Lorentzson <martinl@gnu.org>
10038
10039 * vc-cvs.el: Split the annotate feature into a BACKEND-specific
10040 part and moved the non-BACKEND stuff to vc.el.
10041
10042 * vc.el: Split the annotate feature into a BACKEND specific part
10043 and moved it from the vc-cvs.el file to this one.
10044
10045 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
10046
10047 * vc-hooks.el: Implement new state model.
10048 (vc-state, vc-state-heuristic, vc-default-state-heuristic): New funs.
10049 (vc-locking-user): Simplify. Now only needed if the file is
10050 locked by somebody else.
10051 (vc-lock-from-permissions): Remove. Functionality is in
10052 vc-sccs-hooks.el and vc-rcs-hooks.el now.
10053 (vc-mode-line-string): New name for former vc-status. Adapted.
10054 (vc-mode-line): Adapt to use the above. Remove optional parameter.
10055
10056 * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New funs.
10057 Various simplifications and adaptations all over the place.
10058
10059 * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New funs.
10060 Simplify and adapt the rest.
10061
10062 * vc.el (vc-resynch-window): Add TODO comment: check for
10063 interaction with view mode according to recent RCS change.
10064 (vc-backend-merge-news): Merge "CMUP" patch from mainline.
10065
10066 2000-09-04 Martin Lorentzson <martinl@gnu.org>
10067
10068 * vc.el: Convert the remaining function comments to docstrings.
10069
10070 2000-09-04 Martin Lorentzson <martinl@gnu.org>
10071
10072 * vc.el (vc-backend-release, vc-release-greater-or-equal)
10073 (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part)
10074 (vc-minor-part, vc-previous-version): Functions that operate and
10075 compare revision numbers got proper documentation. Comments added
10076 about their possible removal.
10077
10078 2000-09-04 Martin Lorentzson <martinl@gnu.org>
10079
10080 * vc.el (vc-latest-on-branch-p): Function removed and replaced in
10081 the vc-backend.el files.
10082
10083 * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added.
10084
10085 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p)
10086 (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part)
10087 (vc-rcs-previous-version): Functions added.
10088
10089 * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added.
10090
10091 * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed.
10092
10093 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
10094
10095 * vc-hooks.el (vc-master-templates): Is really obsolete.
10096 Comment out the definition for now. What is the right procedure
10097 to get rid of it?
10098 (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely
10099 rewritten.
10100 (vc-default-registered): Remove.
10101 (vc-check-master-templates): New function; does mostly what the
10102 above did before.
10103 (vc-locking-user): Don't rely on the backend to set the property.
10104
10105 * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values.
10106 Rewrite documentation.
10107 (vc-rcs-templates-grabbed): New variable.
10108 (vc-rcs-grab-templates): New function.
10109 (vc-rcs-registered): Rewrite to use above mechanism.
10110
10111 * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values.
10112 Rewrite documentation.
10113 (vc-sccs-templates-grabbed): New variable.
10114 (vc-sccs-grab-templates): New function.
10115 (vc-sccs-registered): Rewrite to use above mechanism.
10116 (vc-sccs-search-project-dir): Rename from vc-search-sccs-project-dir.
10117 Don't throw the result, simply return it.
10118
10119 * vc-cvs-hooks.el (vc-cvs-master-templates): Remove.
10120 (vc-cvs-find-master): Remove. Code is now in vc-cvs-registered.
10121 (vc-cvs-registered): Does the check itself now. Simplify.
10122
10123 * vc-cvs.el (vc-cvs-revert): Merge and adapt "unedit" patch
10124 from main line.
10125
10126 2000-09-04 Martin Lorentzson <martinl@gnu.org>
10127
10128 * vc-cvs.el (vc-cvs-diff): New function.
10129
10130 * vc-sccs.el (vc-sccs-diff): New function.
10131
10132 * vc-rcs.el (vc-rcs-diff): New function.
10133 (vc-rcs-checkout): Bug (typo) found and fixed.
10134 (vc-rcs-register-switches): New variable.
10135
10136 * vc.el (vc-backend-diff): Function removed and placed in the
10137 backend files.
10138
10139 2000-09-04 Martin Lorentzson <martinl@gnu.org>
10140
10141 * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added.
10142
10143 * vc.el (vc-backend-checkout): Function removed and replaced in
10144 the vc-backend.el files.
10145
10146 * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'.
10147
10148 * vc.el (vc-backend-admin): Removed and replaced in the
10149 vc-backend.el files.
10150
10151 * vc.el (Martin): Removed all the annotate functionality since it
10152 is CVS backend specific.
10153
10154 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
10155
10156 * spec.txt: Added specification of vc-state.
10157
10158 * vc-sccs-hooks.el (vc-sccs-master-properties):
10159 Remove handling of vc-latest-version and
10160 vc-your-latest-version. What used to be vc-latest-version, is now
10161 returned as vc-workfile-version.
10162 (vc-sccs-workfile-version): Adapt.
10163
10164 2000-09-04 Dave Love <fx@gnu.org>
10165
10166 * vc.el: [Merged from mainline.]
10167 (vc-dired-mode): Make the dired-move-to-filename-regexp
10168 regexp match the date, to avoid treating date as file size.
10169 Add YYYY S option to WESTERN/
10170
10171 2000-09-04 Dave Love <fx@gnu.org>
10172
10173 * vc.el: Require `compile' when compiling.
10174 (vc-logentry-check-hook): New option.
10175 (vc-steal-lock): Use compose-mail.
10176 (vc-dired-mode-map): Defvar when compiling.
10177 (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to
10178 vc-sccs.el and renamed. Callers changed.
10179 (vc-backend-checkout, vc-backend-logentry-check)
10180 (vc-backend-merge-news): Doc fix.
10181 (vc-default-logentry-check): New function.
10182 (vc-backend-checkin, vc-backend-revert, vc-backend-steal)
10183 (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name)
10184 (vc-backend-merge): Doc fix. Use backend functions.
10185 (vc-check-headers): Use backend functions.
10186
10187 * vc-cvs.el: Require vc when compiling.
10188 (vc-cvs-register-switches): Doc fix.
10189 (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type.
10190 (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge)
10191 (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin):
10192 New functions (code from vc.el).
10193 (vc-annotate-display-default): Fix interactive spec.
10194 (vc-annotate-time-span): Doc fix.
10195
10196 * vc-rcs.el: Require vc when compiling.
10197 (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge)
10198 (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert)
10199 (vc-rcs-checkin): New functions (code from vc.el).
10200 (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout):
10201 Doc fix.
10202 (vc-rcs-release): Deleted. (Duplicated vc-rcs-system-release).
10203
10204 * vc-sccs.el: Require vc when compiling.
10205 (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge)
10206 (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck)
10207 (vc-sccs-revert)
10208 (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code
10209 from vc.el).
10210 (vc-sccs-add-triple, vc-sccs-record-rename)
10211 (vc-sccs-lookup-triple): Moved from vc.el and renamed.
10212 (vc-sccs-admin): Doc fix.
10213
10214 2000-09-04 Martin Lorentzson <martinl@gnu.org>
10215
10216 * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part)
10217 (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release)
10218 (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions
10219 from vc.el.
10220
10221 * vc-sccs.el (vc-admin-sccs): Added from vc.el
10222
10223 * vc-cvs.el: Moved the annotate functionality from vc.el.
10224 (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el.
10225
10226 2000-09-04 Dave Love <fx@gnu.org>
10227
10228 * vc.el (vc-backend-release): Call vc-system-release.
10229
10230 * vc-sccs.el (vc-sccs-system-release):
10231 Renamed from vc-sccs-backend-release.
10232
10233 * vc-rcs.el (vc-rcs-system-release):
10234 Renamed from vc-rcs-backend-release.
10235
10236 * vc-cvs.el (vc-cvs-system-release):
10237 Renamed from vc-cvs-backend-release.
10238
10239 2000-09-04 Dave Love <fx@gnu.org>
10240
10241 * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to
10242 backend files.
10243 (vc-backend-release): Dispatch to backend functions.
10244 (vc-backend-release-p): Don't mention CVS, RCS. [The SCCS case
10245 probably needs attention.]
10246
10247 * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el.
10248 (vc-sccs-backend-release): New function.
10249
10250 * vc-cvs.el (vc-cvs-release): Moved from vc.el.
10251 (vc-cvs-backend-release): New function.
10252
10253 * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge):
10254 Doc fix.
10255 (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed.
10256 (vc-default-dired-state-info): New function.
10257 (vc-dired-state-info): Dispatch to backends.
10258 (vc-dired-hook): Doc fix. Simplify, pending removal of CVS specifics.
10259
10260 * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved
10261 from vc.el and renamed.
10262
10263 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
10264
10265 * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p)
10266 (vc-version-other-window, vc-backend-assign-name): Removed
10267 references to vc-latest-version; sometimes changed into
10268 vc-workfile-version.
10269
10270 * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to
10271 vc-rcs-master-workfile-version.
10272 (vc-rcs-workfile-version): Use the above. Don't call
10273 vc-latest-version (that was unreachable code, anyway).
10274 (vc-rcs-fetch-master-properties): Doc fix.
10275
10276 * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed.
10277 (vc-backend-hook-functions): Removed them from this list, too.
10278 (vc-fetch-properties): Removed.
10279 (vc-workfile-version): Doc fix.
10280
10281 * vc-rcs-hooks.el (vc-rcs-consult-headers): New function.
10282 (vc-rcs-workfile-version, vc-rcs-locking-user)
10283 (vc-rcs-uses-locking): Use it.
10284
10285 * vc-hooks.el (vc-consult-rcs-headers):
10286 Moved into vc-rcs-hooks.el, under the name
10287 vc-rcs-consult-headers.
10288
10289 * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS
10290 headers.
10291 (vc-cvs-find-master): Use this name only; correct different
10292 versions of the name.
10293
10294 * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user):
10295 New functions.
10296 (vc-sccs-locking-user): Use the latter.
10297
10298 * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user):
10299 New functions.
10300
10301 * vc-hooks.el (vc-master-locks, vc-master-locking-user):
10302 Moved into both
10303 vc-rcs-hooks.el and vc-sccs-hooks.el. These properties and access
10304 functions are implementation details of those two backends.
10305
10306 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
10307
10308 * vc-rcs-hooks.el (vc-rcs-fetch-master-properties)
10309 (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks.
10310
10311 * vc-sccs-hooks.el (vc-sccs-fetch-master-properties)
10312 (vc-sccs-parse-locks): SCCS-specific code moved here from
10313 vc-hooks.
10314
10315 * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific
10316 code moved here from vc-hooks.
10317
10318 * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split
10319 into back-end specific parts and removed. Callers not updated
10320 yet; because I guess these callers will disappear into back-end
10321 specific files anyway.
10322
10323 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
10324
10325 * vc.el (with-vc-file, vc-next-action-on-file, vc-merge)
10326 (vc-backend-checkout): Changed calls to `vc-checkout-model' to
10327 `vc-uses-locking'.
10328
10329 * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking.
10330 Store yes/no in the property, and return t/nil. Updated all
10331 callers.
10332
10333 * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to
10334 vc-sccs-uses-locking. Don't set property.
10335 (vc-sccs-locking-user): Don't set property.
10336
10337 * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to
10338 vc-cvs-uses-locking. Don't set property here; leave that to
10339 vc-hooks.
10340 (vc-cvs-locking-user): Reflect above change. Streamlined.
10341
10342 * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to
10343 vc-rcs-uses-locking.
10344 (vc-rcs-locking-user): Reflect above change.
10345
10346 2000-09-04 Dave Love <fx@gnu.org>
10347
10348 * vc-sccs-hooks.el (vc-sccs-checkout-model): New function.
10349
10350 * vc-rcs-hooks.el (vc-rcs-checkout-model): New function.
10351
10352 * vc-hooks.el (vc-checkout-model): Punt to backends.
10353
10354 * vc-cvs-hooks.el (vc-cvs-checkout-model): New function.
10355
10356 * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status.
10357
10358 * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user):
10359 New functions.
10360
10361 * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user):
10362 New functions.
10363
10364 * vc-cvs-hooks.el (vc-handle-cvs): Doc fix.
10365 (vc-cvs-workfile-version, vc-cvs-locking-user): New functions.
10366
10367 * vc-hooks.el (vc-default-locking-user): New function.
10368 (vc-locking-user, vc-workfile-version): Punt to backends.
10369
10370 2000-09-04 Dave Love <fx@gnu.org>
10371
10372 * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff)
10373 (vc-master-workfile-version): Moved from vc-hooks.
10374
10375 * vc-rcs-hooks.el: Fix duplicate code in last change.
10376
10377 * vc-rcs-hooks.el: Require vc-hooks when compiling.
10378 (vc-rcs-master-templates): Improve :type.
10379 (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff,
10380 vc-master-workfile-version): Moved from vc-hooks.
10381
10382 * vc-sccs-hooks.el: Require vc-hooks when compiling.
10383 (vc-sccs-master-templates): Improve :type.
10384 (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file.
10385
10386 * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed.
10387
10388 * vc-cvs-hooks.el: Require vc-hooks when compiling.
10389 (vc-cvs-master-templates): Improve :type. Use
10390 vc-cvs-find-cvs-master.
10391 (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here
10392 from vc-hooks.
10393 (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master.
10394
10395 * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status):
10396 Moved to vc-cvs-hooks.
10397
10398 * vc-hooks.el: Add doc strings in various places. Simplify the
10399 minor mode setup.
10400 (vc-handled-backends): New user variable.
10401 (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor
10402 simplification.
10403
10404 2000-09-04 Dave Love <fx@gnu.org>
10405
10406 * vc.el: Some doc fixes for autoloaded and interactive functions.
10407 Fix compilation warnings from ediff stuff.
10408 (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix.
10409
10410 * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version.
10411
10412 * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version.
10413
10414 * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version.
10415
10416 2000-09-04 Dave Love <fx@gnu.org>
10417
10418 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
10419 New variable.
10420 (vc-make-backend-function, vc-loadup, vc-call-backend)
10421 (vc-backend-defines): New functions.
10422
10423 * vc-hooks.el: Various doc fixes.
10424 (vc-default-back-end, vc-follow-symlinks): Custom fix.
10425 (vc-match-substring): Function removed. Callers changed to use
10426 match-string.
10427 (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook):
10428 Simplify.
10429
10430 2000-09-04 Dave Love <fx@gnu.org>
10431
10432 * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom
10433 type.
10434 (vc-sccs-project-dir, vc-search-sccs-project-dir)
10435 (vc-sccs-registered): Doc fix.
10436
10437 * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type.
10438 (vc-cvs-registered): Doc fix.
10439
10440 * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type.
10441 (vc-rcs-registered): Doc fix.
10442
10443 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
10444
10445 * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file.
10446
10447 * vc-hooks.el: vc-registered has been renamed
10448 vc-default-registered. Some functions have been moved to the
10449 backend specific files. they all support the
10450 vc-BACKEND-registered functions.
10451
10452 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
10453
10454 * vc-hooks.el: This is 1998-11-11T18:47:32Z!kwzh@gnu.org from the emacs sources
10455
10456 * vc.el: This is 1999-03-13T05:04:24Z!kwzh@gnu.org from the emacs sources
10457
10458 2000-09-04 Dave Love <fx@gnu.org>
10459
10460 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run
10461 menu-bar-update-hook.
10462
10463 * help.el (help-manyarg-func-alist): Add
10464 find-operation-coding-system.
10465
10466 * wid-edit.el (widget-sexp-validate): Fix garbled code.
10467
10468 * custom.el (custom-set-variables): Print message about errors in
10469 setting.
10470
10471 2000-09-03 Andrew Innes <andrewi@gnu.org>
10472
10473 * makefile.w32-in: Change to DOS line endings.
10474
10475 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
10476
10477 * mouse.el (mouse-popup-menubar): Supply the prompt string for
10478 minor-mode keymaps, if they don't have one.
10479
10480 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
10481
10482 * eshell/esh-module.el (eval-when-compile): Don't lose if
10483 esh-module.el's file name is truncated to DOS 8+3 limits.
10484
10485 2000-09-01 John Wiegley <johnw@gnu.org>
10486
10487 * pcomplete.el (pcomplete-dirs-or-entries): Added a missing
10488 predicate, which caused entries in the completion list to be
10489 doubled.
10490
10491 2000-08-30 John Wiegley <johnw@gnu.org>
10492
10493 * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct
10494 sending to subprocesses. Also, hook pre-command-hook if
10495 `eshell-send-direct-to-subprocesses' is non-nil.
10496 (eshell-send-direct-to-subprocesses): New config variable. If t,
10497 subprocess input is send immediately.
10498 (eshell-toggle-direct-send): New function.
10499 (eshell-self-insert-command): New function.
10500 (eshell-intercept-commands): New function.
10501 (eshell-send-input): If direct subprocess sending is enabled,
10502 don't echo any input to the Eshell buffer. Let the subprocess
10503 handle that. This requires "stty echo" in bash, for example.
10504
10505 2000-08-28 John Wiegley <johnw@gnu.org>
10506
10507 * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added
10508 completion function for Eshell's implementation of `unset'.
10509
10510 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
10511
10512 * info.el (Info-directory-list): Doc fix.
10513
10514 2000-08-31 Peter Breton <pbreton@ne.mediaone.net>
10515
10516 * filecache.el (file-cache-add-directory-using-find): Don't quote
10517 wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
10518
10519 2000-08-31 Kenichi Handa <handa@etl.go.jp>
10520
10521 * help.el (help-make-xrefs): Don't make hyperlinks for incorrect
10522 coding systems.
10523
10524 2000-08-30 Andrew Innes <andrewi@gnu.org>
10525
10526 * timer.el (run-with-idle-timer): Undo last change, so that timer
10527 is not activated immediately if Emacs is already idle. Some
10528 existing code relies on this behaviour.
10529
10530 2000-08-30 Miles Bader <miles@gnu.org>
10531
10532 * frame.el (set-frame-font): Do completion of font-name for
10533 interactive use.
10534
10535 2000-08-30 Kenichi Handa <handa@etl.go.jp>
10536
10537 * international/quail.el (quail-start-translation): Bind locally
10538 last-command-event, last-command, and this-command.
10539 (quail-start-conversion): Likewise.
10540 (quail-self-insert-command): Fix docstring.
10541
10542 2000-08-29 Gerd Moellmann <gerd@gnu.org>
10543
10544 * progmodes/executable.el
10545 (executable-make-buffer-file-executable-if-script-p): Check that
10546 buffer contains at least 2 characters.
10547
10548 2000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
10549
10550 * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix.
10551
10552 2000-08-29 Dave Love <fx@gnu.org>
10553
10554 * diff-mode.el (diff-mode) <defgroup>: Add :version.
10555 (diff-mode-shared-map): Bind mouse-2.
10556 (diff-imenu-generic-expression): New variable.
10557 (diff-mode): Use it.
10558
10559 * mouse.el (mouse-major-mode-menu): Use local-key-binding.
10560 (mouse-popup-menubar): Add minor mode menus.
10561 (popup-menu): Check for lookup-key returning number.
10562
10563 2000-08-29 Miles Bader <miles@gnu.org>
10564
10565 * comint.el (comint-send-input): Create overlays using the proper
10566 front/read-advance arguments.
10567
10568 2000-08-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10569
10570 * ps-print.el: Even/odd pages printing. Doc fix.
10571 (ps-print-version): New version number (6.0).
10572 (ps-setup, ps-print-page-p, ps-background-text, ps-background-image)
10573 (ps-background, ps-begin-file, ps-begin-job): Code fix.
10574 (ps-print-duplex-feature): Variable eliminated.
10575 (ps-even-or-odd-pages): New variable.
10576
10577 * progmodes/ebnf2ps.el: Doc fix.
10578 (ebnf-version): New version (3.3).
10579 (ebnf-user-arrow): Change variable customization to sexp.
10580 (ebnf-user-arrow): Function eliminated.
10581 (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix.
10582
10583 2000-08-29 Kenichi Handa <handa@etl.go.jp>
10584
10585 * help.el (help-xref-mule-regexp): New variable.
10586 (help-make-xrefs): Handle help-xref-mule-regexp.
10587
10588 * international/mule-cmds.el (help-xref-mule-regexp-template): New
10589 variable.
10590 (describe-input-method): Temporarily activate the specfied input
10591 method to display the information.
10592 (describe-language-environment): Hyperlinks to mule related items.
10593
10594 * international/mule-diag.el (charset-multibyte-form-string): New
10595 function.
10596 (list-character-sets-1): Use charset-multibyte-form-string.
10597 (describe-character-set): New function.
10598 (describe-coding-system): Hyperlinks to safe character sets.
10599
10600 * international/quail.el (quail-help): New arg PACKAGE.
10601 Hyperlinks to mule related items.
10602 (quail-help-insert-keymap-description): Use
10603 substitute-command-keys instead of describe-bindings.
10604 (quail-translation-help): Hyperlinks to mule related items.
10605
10606 2000-08-28 John Wiegley <johnw@gnu.org>
10607
10608 * eshell/esh-util.el (eshell-flatten-list): It's not too wise to
10609 have a defsubst call itself. Made `eshell-flatten-list' back into
10610 a function again.
10611
10612 * eshell/em-smart.el (eshell-smart-redisplay): Added a safety
10613 catch, in case re-centering point at bottom messes up the display.
10614 This happens frequently in Emacs 21, due I believe to variable
10615 line heights.
10616
10617 * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order
10618 to call `find-tag-interactive'.
10619
10620 * eshell/em-dirs.el (eshell/cd): Use buffered printing to display
10621 the list of remember directories.
10622
10623 2000-08-28 John Wiegley <johnw@gnu.org>
10624
10625 * align.el: Test align-region-separate to see if it's a symbol.
10626
10627 2000-08-28 John Wiegley <johnw@gnu.org>
10628
10629 * eshell/esh-util.el (eshell-flatten-list): Made this function
10630 into a defsubst form. It gets used very frequently, although
10631 calls don't occur all that often.
10632
10633 * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
10634 examining it.
10635
10636 * eshell/esh-cmd.el (eshell-rewrite-while-command):
10637 (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
10638 `eshell-protect'.
10639 (eshell-copy-handles): Created a new macro for duplicating the
10640 current set of open handles. This is needed by the looping
10641 functions.
10642 (eshell-do-eval): Fixed while and if, so that the eshell-test-body
10643 is not incorrectly stomped on.
10644
10645 * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
10646 declaration for pcomplete-use-paring.
10647 (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
10648 value of eshell-cmpl-use-paring.
10649 * pcomplete.el (pcomplete-use-paring): New config variable, to
10650 indicate whether paring should be used.
10651 (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
10652 completion alternatives that have already been used.
10653
10654 * eshell/esh-mode.el (eshell-repeat-argument): Added function,
10655 bound to C-c C-y, which will repeat the previous N arguments
10656 (based on prefix argument).
10657 (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
10658
10659 * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
10660 if there is no *Help* buffer. This is for XEmacs, which renames
10661 its help buffers uniquely. TODO: Find out what the current buffer
10662 name to delete is.
10663
10664 * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
10665 first entry that correlates to a passwd/group number. Later
10666 entries (used for group/user name aliasing to multiple IDs) are
10667 ignored.
10668
10669 * eshell/em-xtra.el (eshell/expr):
10670 * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
10671 (eshell-grep, eshell/diff, eshell/locate):
10672 * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
10673 argument list, before passing it to the system command.
10674
10675 * eshell/esh-mode.el (eshell-find-tag): Added a special version of
10676 `find-tag' for use at final position in Eshell buffers (which
10677 otherwise triggers an error on Emacs 21).
10678 (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
10679 buffer, if it is currently bound to `find-tag'.
10680
10681 * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
10682 in the list of matched Makefile names.
10683 (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
10684 directory, prefer its contents to Makefile.
10685
10686 * eshell/em-dirs.el (eshell/cd): cd commands that look up
10687 directory parts (like "cd old new", or "cd =regexp"), are now case
10688 sensitive on non-Windows/DOS platforms.
10689
10690 * eshell/esh-mode.el (eshell-parse-command-input): When a user
10691 types RET after an open delimiter (like "), display a message
10692 indicating that Eshell is waiting for the closing delimiter.
10693
10694 * eshell/esh-var.el (eshell/unset): Added a command for unsetting
10695 environment variables.
10696
10697 * eshell/em-unix.el (eshell/diff): Added logic to fail more
10698 gracefully if the user enters incorrect arguments.
10699
10700 * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
10701 Eshell buffers.
10702
10703 * eshell/esh-var.el (eshell-interpolate-variable):
10704 * eshell/esh-mode.el (eshell-move-argument):
10705 * eshell/em-unix.el (eshell-du-sum-directory):
10706 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
10707 * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
10708 (not (= ...)).
10709
10710 * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
10711 to ensure the `preserve' flag gets propagated when doing recursive
10712 directory copies.
10713
10714 2000-08-28 Stefan Monnier <monnier@cs.yale.edu>
10715
10716 * eshell/em-hist.el (eshell-put-history, eshell-get-history):
10717 Don't convert \n into \0177 in memory.
10718 (eshell-read-history, eshell-write-history): Convert \n to \0177,
10719 and back again, when reading and writing.
10720
10721 2000-08-28 Eli Zaretskii <eliz@is.elta.co.il>
10722
10723 * eshell/esh-util.el (eshell-processp): Added to relieve constant
10724 testing of `fboundp' on `processp'.
10725
10726 * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
10727 (eshell/jobs): Don't call process-list if it is not bound.
10728 (eshell-gather-process-output): Support systems where async
10729 subprocesses aren't supported.
10730 (eshell-scratch-buffer, eshell-last-sync-output-start): New
10731 variables.
10732
10733 * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
10734 eshell-do-eval returns t.
10735 (eshell-do-pipelines-synchronously): New defmacro.
10736 (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
10737 when async subprocesses aren't supported.
10738 (eshell-do-eval): Use eshell-processp. Don't throw eshell-defer
10739 if async subprocesses aren't supported.
10740 (eshell-resume-command): Don't assume STATUS is a string.
10741
10742 * eshell/em-unix.el (eshell/rm): Use eshell-processp.
10743
10744 * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
10745 (eshell-close-target, eshell-get-target): Use eshell-processp.
10746 (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
10747 fix.
10748 (eshell-get-target, eshell-create-handles): Doc fix.
10749
10750 2000-08-28 Miles Bader <miles@lsi.nec.co.jp>
10751
10752 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the
10753 criterion to include commands that output something, as long as it
10754 leaves both the command and the end-of-buffer visible when the
10755 command has exited.
10756 (eshell-review-quick-commands): Adjust the help doc string
10757 accordingly.
10758
10759 2000-08-28 Peter Breton <pbreton@ne.mediaone.net>
10760
10761 * locate.el (locate): Cleaned up locate command's interactive prompting
10762 Thanks to Fran\e,Ag\e(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions.
10763
10764 * filecache.el (file-cache-case-fold-search): New variable
10765 (file-cache-assoc-function): New variable
10766 (file-cache-minibuffer-complete): Use file-cache-assoc-function.
10767 Use file-cache-case-fold-search variable
10768 (file-cache-add-file): Use file-cache-assoc-function
10769 (file-cache-delete-file): likewise
10770 (file-cache-directory-name): likewise
10771 (file-cache-debug-read-from-minibuffer): likewise
10772
10773 2000-08-28 Gerd Moellmann <gerd@gnu.org>
10774
10775 * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
10776 (abbrev-table-name): New function.
10777 (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
10778 If non-nil list local abbrev, only.
10779
10780 2000-08-28 Stanislav Shalunov <shalunov@internet2.edu>
10781
10782 * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*"
10783 from Gnus support code, and use special article copy buffer
10784 `(gnus-original-article-buffer)' instead. This allows to get rid
10785 of article-hide-headers usage (which breaks in the latest Gnus
10786 version). Thanks to Detlev Zundel.
10787
10788 2000-08-28 Kenichi Handa <handa@etl.go.jp>
10789
10790 * international/quail.el (quail-use-package): Hide "... loaded"
10791 message.
10792 (quail-start-translation, quail-start-conversion): Likewise.
10793
10794 * international/kkc.el (kkc-region): Hide "... loaded" message.
10795
10796 2000-08-27 Dave Love <fx@gnu.org>
10797
10798 * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
10799
10800 2000-08-27 Miles Bader <miles@gnu.org>
10801
10802 * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
10803
10804 2000-08-27 Kenichi Handa <handa@etl.go.jp>
10805
10806 * international/ja-dic-cnv.el (skkdic-convert): Insert (require
10807 'ja-dic-cnv), not (require 'skkdic-cnv).
10808
10809 2000-08-26 Miles Bader <miles@gnu.org>
10810
10811 * faces.el (face-x-resources): Add entry for :inherit.
10812 * cus-face.el (custom-face-attributes): Add support for :inherit
10813 attribute. Add support for relative face heights.
10814 (custom-face-attributes-get): Treat `nil' as being a default value
10815 for :inherit (as well as `unspecified').
10816
10817 * faces.el (set-face-attribute): Update doc string.
10818 (face-attribute-name-alist): Add :inherit.
10819 (face-valid-attribute-values): Handle :inherit.
10820 (face-read-string): Rephrase prompt to be less confusing.
10821 Assume that DEFAULT is a string, since we must return a string.
10822 (face-read-integer): Use `format' to turn DEFAULT into an
10823 acceptable default for face-read-string. Match NEW-VALUE against
10824 the string "unspecified", not the symbol `unspecified', since
10825 that's what face-read-string returns.
10826 (read-face-attribute): Lookup a name for old-value in valid, and
10827 use it as a default if we find one. Treat all values from
10828 face-read-string as strings. If the default is used, don't do any
10829 more processing on the value, just use the old value directly.
10830 (read-face-and-attribute, modify-face): Tweak prompt.
10831 (read-face-name): Don't assume prompt ends with a space.
10832
10833 * faces.el (describe-face): Add support for :inherit attribute.
10834
10835 2000-08-25 Kenichi Handa <handa@etl.go.jp>
10836
10837 * terminal.el (terminal-emulator): Fix args to `concat'. Now
10838 concat doesn't accept interger.
10839
10840 * international/kkc.el: Remove SKK from Keywords. Require
10841 ja-dic-utl instead of skkdic-utl.
10842
10843 * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
10844 Provide ja-dic-cnv instead of skkdic-cnv.
10845 (ja-dic-filename): Renamed from skkdic-filename. Referers changed
10846 (iso-2022-7bit-short): Add safe-charsets property.
10847 (skkdic-convert-postfix): Search Japanese chou-on character in
10848 addition to Hiragana character.
10849 (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
10850 (skkdic-convert): Change file names from skkdic.el to ja-dic.el
10851 (batch-skkdic-convert): Likewise.
10852
10853 * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
10854 Provide ja-dic-utl instead of skkdic-utl.
10855 (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
10856
10857 2000-08-24 Dave Love <fx@gnu.org>
10858
10859 * disp-table.el (standard-display-default): Make the test of `l'
10860 useful.
10861
10862 * language/european.el ("Latin-8", "Latin-9"): Add input methods,
10863 mod sample text.
10864
10865 * international/iso-ascii.el: Make pilcrow convenient string
10866 consistent with section.
10867 (iso-ascii-display): Set up multibyte characters as well as
10868 unibyte.
10869
10870 2000-08-24 Kenichi Handa <handa@etl.go.jp>
10871
10872 * international/mule-cmds.el (reset-language-environment): Set
10873 default-process-coding-system to '(undecided . iso-latin-1), which
10874 makes process I/O almost consistent with file I/O. Call this
10875 function when mule-cmds.el[c] is loaded.
10876
10877 2000-08-22 Andrew Innes <andrewi@gnu.org>
10878
10879 * makefile.w32-in: New file.
10880
10881 2000-08-22 Miles Bader <miles@lsi.nec.co.jp>
10882
10883 * comint.el (comint-output-filter): Compare end of
10884 comint-last-output-overlay with the start of the newly inserted
10885 text, not the end, when deciding whether to extend it.
10886 Set saved-point's insertion type to advance after insertion.
10887
10888 * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
10889 since this is now done independently of font-lock mode.
10890
10891 2000-08-21 Gerd Moellmann <gerd@gnu.org>
10892
10893 * server.el (server-kill-new-buffers): New user option.
10894 (server-existing-buffer): New buffer-local variable.
10895 (server-visit-files): When using an existing buffer, set
10896 server-existing-buffer to t.
10897 (server-buffer-done): If server-kill-new-buffers is t, kill the
10898 buffer, unless it was already present before visiting it with
10899 Emacs server.
10900
10901 2000-08-21 Eli Zaretskii <eliz@is.elta.co.il>
10902
10903 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
10904 even if the display doesn't support colors: some displays will
10905 support bold/underline faces.
10906
10907 2000-08-21 Gerd Moellmann <gerd@gnu.org>
10908
10909 * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
10910
10911 * startup.el (command-line): If user's init file had an error,
10912 add explanatory text to *Messages*.
10913
10914 2000-08-21 Kenichi Handa <handa@etl.go.jp>
10915
10916 * man.el (Man-getpage-in-background): Decode the process output by
10917 the system locale coding system.
10918
10919 2000-08-20 Dave Love <fx@gnu.org>
10920
10921 * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
10922 Don't test x-popup-menu.
10923 (function) <complete-function>: Complete only fbound symbols.
10924 <validate, value>: New.
10925 (variable) <complete-function>: Complete only bound symbols.
10926 (coding-system): Add :base-only, :complete-function, :validate,
10927 :value, :prompt-match.
10928 (widget-coding-system-prompt-value): Use read-coding-system and
10929 act on :base-only.
10930 (editable-field): Add :help-echo.
10931 (widget-push-button-gui, widget-push-button-cache)
10932 (widget-gui-action, widget-editable-list-gui): COmment out, along
10933 with uses.
10934 (widget-at): Make arg optional.
10935 (widget-echo-help): Adjust for current help-echo calling sequence.
10936 (widget-specify-field, widget-specify-button)
10937 (widget-specify-insert, widget-get-sibling, widget-image-find)
10938 (widget-convert, widget-insert, widget-leave-text)
10939 (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
10940 (widget-setup, widget-field-find, widget-before-change)
10941 (widget-after-change, widget-default-complete)
10942 (widget-default-create, widget-default-delete)
10943 (widget-push-button-value-create, editable-field)
10944 (widget-field-prompt-value, widget-field-validate)
10945 (widget-choice-value-create, widget-choice-action)
10946 (widget-choice-validate, widget-checklist-add-item)
10947 (widget-radio-add-item, widget-radio-chosen)
10948 (widget-radio-value-inline, widget-editable-list-value-create)
10949 (widget-editable-list-entry-create)
10950 (widget-documentation-link-add)
10951 (widget-documentation-string-value-create)
10952 (widget-regexp-validate, widget-file-complete)
10953 (widget-sexp-validate, widget-plist-convert-widget)
10954 (widget-plist-convert-widget, widget-alist-convert-widget)
10955 (widget-alist-convert-widget, widget-color-complete): Simplify,
10956 particularly to avoid bindings which aren't optimized out.
10957
10958 * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
10959 Doc fix.
10960 (down-list, backward-up-list, up-list, kill-sexp)
10961 (backward-kill-sexp, mark-sexp): Make arg optional.
10962 (lisp-complete-symbol): Add optional arg PREDICATE.
10963
10964 * cus-start.el: Add display-buffer-reuse-frames,
10965 file-coding-system-alist.
10966
10967 2000-08-20 Gerd Moellmann <gerd@gnu.org>
10968
10969 * startup.el (command-line): Clear realized faces after
10970 modifying TTY color mappings.
10971
10972 2000-08-20 Miles Bader <miles@gnu.org>
10973
10974 * faces.el (face-attr-match-p): Don't return true if ATTRS are
10975 merely a subset of FACE's attributes.
10976
10977 2000-08-19 Miles Bader <miles@gnu.org>
10978
10979 * comint.el (comint-output-filter): Save the point with a marker,
10980 not just a buffer position.
10981
10982 * international/mule.el (set-buffer-process-coding-system): Make
10983 interactive prompt less confusing.
10984
10985 2000-08-19 Gerd Moellmann <gerd@gnu.org>
10986
10987 * hilit-chg.el: General cleanup of doc strings, comments and
10988 code formatting.
10989
10990 2000-08-19 Miles Bader <miles@gnu.org>
10991
10992 * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
10993 Compiler macro removed; beginning-of-line is no longer always
10994 equivalent to forward-line, in the presence of fields.
10995
10996 * comint.el (comint-output-filter): Remove ad-hoc saving of
10997 restriction, and just use save-restriction, now that it works
10998 correctly. Don't adjust comint-last-input-start to account for
10999 our insertion; it shouldn't have moved because we don't use
11000 insert-before-markers anymore. Comment out call to
11001 `force-mode-line-update'; why is it here?
11002
11003 * gud.el (gud-basic-call): Temporarily widen gud comint buffer
11004 while checking for prompt to delete. Use `forward-line 0'
11005 instead of beginning-of-line.
11006 (gud-filter): Temporarily widen gud comint buffer while
11007 examining output.
11008
11009 2000-08-18 Stefan Monnier <monnier@cs.yale.edu>
11010
11011 * progmodes/sh-script.el: Big bag of typos.
11012
11013 * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
11014 check since ispell-process is not bound when ispell is not yet loaded.
11015
11016 2000-08-18 Dave Love <fx@gnu.org>
11017
11018 * image.el (find-image): Copy `spec' before using plist-put.
11019
11020 2000-08-18 Gerd Moellmann <gerd@gnu.org>
11021
11022 * textmodes/ispell.el (ispell-dictionary-alist-6): Add
11023 `portugues'.
11024
11025 * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
11026 backward-kill-sexp, analogous to kill-sexp.
11027
11028 * progmodes/icon.el (icon-indent-line)
11029 (icon-is-continuation-line): Handle comments specially.
11030
11031 2000-08-17 Ken Stevens <k.stevens@ieee.org>
11032
11033 * ispell.el: Set to standard author/maintainer/keyword fields.
11034 Fine tuning to menu map appearance and operation, and added help.
11035 Remove `start' and `end' error messages when compiling.
11036 (ispell-choices-win-default-height): Fixed comment string.
11037 (ispell-dictionary-alist-1): Fixed regexp in castellano and
11038 castellano8 dictionaries.
11039 (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
11040 (ispell-dictionary-alist-4): Fixed regexp in francais-tex
11041 dictionary, added italiano dictionary.
11042 (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
11043 word character
11044 (ispell-tex-skip-alists): Added psfig support.
11045 (ispell-skip-html): Renamed from ispell-skip-sgml.
11046 (ispell-begin-skip-region-regexp, ispell-skip-region)
11047 (ispell-minor-check): Improved html skipping support to skip across
11048 code, and recognize `&' commands without propper `;' syntax;
11049 (ispell-process-line): Fix alignment error when manually
11050 correcting spelling.
11051 (ispell): Fix comment string.
11052 (ispell-add-per-file-word-list): Always put word list on new line.
11053
11054 2000-08-17 Gerd Moellmann <gerd@gnu.org>
11055
11056 * format.el (format-encode-run-method): Fix error message to say
11057 `encode' instead of `decode'. Use save-window-excursion around
11058 shell-command-on-region as in format-decode-run-method because
11059 shell-command-on-region can display a buffer with error output.
11060 (format-decode): Don't record undo information for the decoding.
11061 (format-annotate-function): Add parameter FORMAT-COUNT. Make
11062 that number part of the temporary buffer name so that more than
11063 one decoding using a temporary buffer can happen safely.
11064
11065 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
11066 of `A-z' in the regexp.
11067
11068 * hilit-chg.el: Fix typos in commentary.
11069
11070 * help.el (view-emacs-news): Rewritten for new naming scheme
11071 for old NEWS files.
11072
11073 * startup.el (command-line): Pop to *Messages* in case an error
11074 is signaled while loading user-init-file.
11075
11076 2000-08-17 Andreas Schwab <schwab@suse.de>
11077
11078 * files.el (insert-directory): Don't lose original file name,
11079 undoing an undocumented change.
11080
11081 2000-08-17 Alex Schroeder <alex@gnu.org>
11082
11083 * sql.el (sql-magic-go): Use comint-bol.
11084 (sql-copy-column): Use comint-line-beginning-position.
11085 (comint-line-beginning-position): Define a replacement for
11086 comint-line-beginning-position if it is not fboundp.
11087
11088 2000-08-17 Alex Schroeder <alex@gnu.org>
11089
11090 * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
11091 it didn't have any effect anyway.
11092
11093 2000-08-17 Alex Schroeder <alex@gnu.org>
11094
11095 * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
11096 --pset and pager=off instead of sending \\o|cat at the beginning
11097 of the session.
11098
11099 2000-08-17 Miles Bader <miles@gnu.org>
11100
11101 * progmodes/octave-inf.el: Add compatibility definition of
11102 comint-line-beginning-position.
11103
11104 2000-08-17 Kenichi Handa <handa@etl.go.jp>
11105
11106 * startup.el (normal-top-level): Look in each dir in load-path for
11107 a leim-list.el file too. This assures of loading leim-list.el
11108 that is created at Emacs installation time even if a user have his
11109 own leim-list.el.
11110
11111 2000-08-17 Miles Bader <miles@gnu.org>
11112
11113 * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
11114 foreground color to black if the background is dark.
11115
11116 2000-08-16 Stefan Monnier <monnier@cs.yale.edu>
11117
11118 * loadhist.el (unload-feature): Typo.
11119
11120 * finder.el (finder-compile-keywords):
11121 * cus-dep.el (custom-make-dependencies): Add local-variable settings
11122 to the generated file.
11123
11124 * mail/mh-e.el (mh-make-local-vars):
11125 Replace make-variable-buffer-local with make-local-variable.
11126
11127 * play/landmark.el:
11128 * options.el (Edit-options-{set,toggle,t,nil}):
11129 * mail/mailabbrev.el (mail-abbrevs-mode):
11130 * textmodes/tex-mode.el (tex-expand-files):
11131 * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
11132
11133 * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
11134
11135 * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
11136 (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
11137 Allow going past the last element.
11138 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
11139 (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
11140 (cvs-mouse-toggle-mark): Don't move point.
11141 (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
11142
11143 * progmodes/compile.el (grep): Provide a default set of files.
11144 (next-error): Docstring fix.
11145 (compilation-find-file): Avoid find-file (fails in a dedicated window).
11146
11147 * emacs-lisp/easy-mmode.el (define-minor-mode):
11148 Use `symbol-value' to keep the byte-compiler quiet.
11149
11150 * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
11151 (diff-find-source-location): New fun, extracted from diff-goto-source.
11152 (diff-goto-source): Use it.
11153 (diff-next-complex-hunk, diff-filter-lines): New function.
11154 (diff-apply-hunk): New command.
11155
11156 * smerge-mode.el (smerge-mode-menu): Doc fix.
11157
11158 * msb.el (msb-mode): Define it in terms of define-minor-mode.
11159
11160 2000-08-16 Dave Love <fx@gnu.org>
11161
11162 * windmove.el (windmove) <defgroup>: Add :version.
11163
11164 * net/goto-addr.el: Don't require browse-url. Require thingatpt.
11165 (goto-address-fontify-p, goto-address-highlight-p)
11166 (goto-address-url-face, goto-address-url-mouse-face)
11167 (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
11168 (goto-address-url-regexp): Use thing-at-point-url-regexp.
11169 (goto-address-fontify, goto-address-at-mouse): Simplify,
11170 (goto-address-at-point): browse-url-url-at-point,
11171 goto-address-find-address-at-point can return nil.
11172 (goto-address-find-address-at-point): Return nil on failure.
11173
11174 * align.el (align) <defgroup>: Add :version.
11175
11176 * calculator.el (calculator): Add :version.
11177 (calculator): Use two lines for calculator window if `modeline'
11178 face is boxed.
11179
11180 * play/5x5.el: Doc fixes.
11181 (5x5) <defgroup>: Add :version.
11182
11183 * play/fortune.el (fortune) <defgroup>: Add :version.
11184 (fortune-append): Fix error message.
11185 (fortune-from-region): Doc fix.
11186
11187 * play/pong.el (pong): Doc fix.
11188
11189 * play/morse.el: Keywords, commentary, autoloads.
11190
11191 2000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
11192
11193 * desktop.el (desktop-save): Don't look at symbol-value of a
11194 member of minor-mode-alist, unless it is boundp.
11195
11196 2000-08-16 Sam Steingold <sds@gnu.org>
11197
11198 * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
11199 `while'; use `with-current-buffer' instead of `save-excursion'.
11200 Removed unnecessary kludges now that "*Buffer List*" is excluded.
11201
11202 2000-08-16 Kenichi Handa <handa@etl.go.jp>
11203
11204 * international/ccl.el (declare-ccl-program): Docstring modified.
11205 (ccl-execute-with-args): Likewise.
11206
11207 2000-08-16 Miles Bader <miles@gnu.org>
11208
11209 * progmodes/sql.el: Add compatibility definition of
11210 comint-line-beginning-position.
11211
11212 2000-08-15 Gerd Moellmann <gerd@gnu.org>
11213
11214 * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
11215 'buffer-menu' property.
11216 (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
11217 fails.
11218 (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
11219 buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
11220 wasn't killed.
11221
11222 * buff-menu.el (list-buffers-noselect): Don't display the
11223 *Buffer List* buffer.
11224
11225 * font-lock.el: Require jit-lock to prevent a very late
11226 `Loading jit-lock' message.
11227
11228 * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
11229 * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
11230 mail address.
11231
11232 2000-08-15 Miles Bader <miles@gnu.org>
11233
11234 * textmodes/ispell.el (ispell-graphic-p): New constant.
11235 (ispell-choices-win-default-height, ispell-help): Use
11236 `ispell-graphic-p' instead of `xemacsp'.
11237
11238 2000-08-15 Dave Love <fx@gnu.org>
11239
11240 * simple.el: Autoload widget-convert when compiling.
11241 (mail-user-agent): Doc fix.
11242
11243 * help.el (function-called-at-point, variable-at-point): Use
11244 with-syntax-table.
11245 (help-manyarg-func-alist): Add insert-and-inherit.
11246
11247 * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
11248
11249 * delsel.el (delsel-unload-hook): New function.
11250
11251 * find-file.el: Doc fixes. Move provide to end.
11252 (ff) <defgroup>: Add :link.
11253 (ff-goto-click): Deleted.
11254 (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
11255 Use mouse-set-point.
11256
11257 * textmodes/tildify.el: Doc fixes.
11258 (tildify) <defgroup>: Add:version.
11259
11260 * progmodes/glasses.el (glasses) <defgroup>: Add :version.
11261 (glasses-custom-set): Use set-default, not set.
11262 (minor-mode-alist): Propertize the lighter.
11263 (glasses-mode): Provide optional arg.
11264
11265 * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
11266 (global-cwarn-mode): Don't make it a user option. Unquote lambda.
11267 (cwarn-font-lock-feature-keywords-alist): Don't make it a user
11268 option. Provide :type.
11269 (cwarn-configuration): Provide :type.
11270 (cwarn-mode): Doc fix.
11271
11272 * add-log.el (change-log-merge): Doc fix.
11273 (change-log-redate): New command.
11274
11275 * net/browse-url.el (browse-url-filename-alist): Add a clause for
11276 Doze and Dog.
11277 (browse-url): Use dolist, not mapcar.
11278 (browse-url-at-point): Check for null url.
11279 (browse-url-event-buffer, browse-url-event-point): Functions
11280 deleted.
11281 (browse-url-at-mouse, browse-url-netscape): Simplify.
11282
11283 * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
11284 modes.
11285 (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
11286 Fix previous change to mapcan.
11287 (msb--init-file-alist, msb--add-separators)
11288 (msb--make-keymap-menu): Simplify.
11289 (msb--choose-file-menu): Use copy-sequence.
11290 (msb-mode-map): Add title to keymap.
11291 (msb-unload-hook): New function.
11292
11293 * bs.el: Fix indentation.
11294 (bs) <defgroup>: Add :links.
11295 (bs-show): Doc fix.
11296 (bs-apply-sort-faces): Don't use window-system.
11297 (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
11298
11299 2000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
11300
11301 * calendar/timeclock.el (timeclock-file): Run .timelog through
11302 convert-standard-filename.
11303
11304 2000-08-14 Gerd Moellmann <gerd@gnu.org>
11305
11306 * emacs-lisp/authors.el: New file.
11307
11308 * paren.el (show-paren-priority): New user option.
11309 (show-paren-function): Set overlay priorities to
11310 show-paren-priority.
11311
11312 2000-08-14 Miles Bader <miles@gnu.org>
11313
11314 * comint.el (comint-bol): Use `forward-line 0' instead of calling
11315 beginning-of-line with inhibit-field-text-motion bound.
11316
11317 2000-08-14 Gerd Moellmann <gerd@gnu.org>
11318
11319 * calendar/timeclock.el: New file.
11320
11321 2000-08-14 David Ponce <david@dponce.com>
11322
11323 * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
11324 `widget-button-click'. so that one can use left mouse button to
11325 click on dialog buttons.
11326
11327 2000-08-14 Emmanuel Briot <briot@gnat.com>
11328
11329 * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
11330 identifiers, since XML is case sensitive
11331
11332 2000-08-12 Miles Bader <miles@gnu.org>
11333
11334 * comint.el (comint-output-filter): Don't bother frobbing
11335 window-start, it doesn't seem to be necessary.
11336
11337 * comint.el (comint-send-string, comint-send-region): Make into
11338 real functions. Snapshot the prompt before sending.
11339
11340 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
11341
11342 * info.el (Info-find-emacs-command-nodes): Rewrite to use
11343 technique similar to Info-index, instead of relying on specific
11344 names of relevant Index nodes.
11345 (Info-goto-emacs-command-node): Bind Info-history to nil when
11346 going to the first node found by Info-find-emacs-command-nodes.
11347
11348 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
11349
11350 * menu-bar.el (menu-bar-help-menu): Add a :help string.
11351
11352 2000-08-10 Miles Bader <miles@gnu.org>
11353
11354 * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
11355
11356 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
11357
11358 * info.el (Info-file-list-for-emacs): More elements for the
11359 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
11360 and woman manuals.
11361
11362 2000-08-10 Miles Bader <miles@lsi.nec.co.jp>
11363
11364 * comint.el (comint-send-input): Make the newline boundary overlay
11365 rear-nonsticky. Use `insert' instead of `insert-before-markers'.
11366 (comint-output-filter): Use `insert' instead of
11367 `insert-before-markers'. Extend comint-last-output-overlay when
11368 necessary since we can't rely on insert-before-markers to do it.
11369 * gud.el (gud-filter): Use `with-current-buffer' instead of
11370 save-excursion when inserting the output, so that point gets
11371 updated correctly; the old method relied on a rather dodgy
11372 side-effect of comint-output-filter to avoid the effect of
11373 save-excursion.
11374
11375 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
11376
11377 * files.el (recover-file): Call insert-directory instead of
11378 invoking `ls' directly.
11379
11380 2000-08-10 Miles Bader <miles@gnu.org>
11381
11382 * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
11383 (comint-last-prompt-overlay): New variables.
11384 (comint-output-filter): Implement prompt highlighting.
11385 (comint-snapshot-last-prompt): New function.
11386 (comint-send-input): Snapshot the last prompt.
11387 Use comint-highlight-input-face.
11388 (comint-highlight-input-face): Renamed from `comint-highlight-face'.
11389 Use defface instead of defcustom.
11390 (send-invisible, comint-send-eof): Snapshot the last prompt.
11391 (comint-delchar-or-maybe-eof): Use comint-send-eof.
11392 (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
11393
11394 2000-08-09 Stefan Monnier <monnier@cs.yale.edu>
11395
11396 * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
11397 (regexp-opt-group): Use a list of chars for `letters'.
11398 (regexp-opt-charset): `chars' is now a list of chars.
11399 Use a char-table rather than a vector so it works for multibyte chars.
11400
11401 * pcvs.el (cvs-menu): Don't move point. Use popup-menu.
11402 Set cvs-minor-current-files to the selected fileinfo.
11403 (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
11404 (cvs-mode-insert): Manually macroexpand `ignore-errors'.
11405
11406 2000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
11407
11408 * files.el (insert-directory): Don't call access-file on
11409 directories on DOS and Windows.
11410
11411 2000-08-09 Kenichi Handa <handa@etl.go.jp>
11412
11413 * international/ccl.el (ccl-embed-data): Make ccl-program-vector
11414 longer if necessary.
11415 (ccl-embed-code): Call ccl-embed-data to store CODE in
11416 ccl-program-vector.
11417
11418 2000-08-09 Miles Bader <miles@gnu.org>
11419
11420 * comint.el (comint-output-filter): Properly handle the case where
11421 the text surrounded by comint-last-output-overlay was deleted.
11422
11423 2000-08-08 Gerd Moellmann <gerd@gnu.org>
11424
11425 * info.el (Info-insert-dir): Use Info-additional-directory-list if
11426 non-nil.
11427 (Info-file-list-for-emacs): Remove "info" from the list because
11428 that leads to trying to use the documentation from file `info'
11429 in various situations where it isn't appropriate, for instance
11430 C-h C-k C-h i.
11431
11432 * ffap.el (ffap-read-file-or-url-internal): Handle case that
11433 DIR and/or STRING are nil.
11434
11435 * progmodes/compile.el (compilation-setup): Make variable
11436 compilation-error-screen-columns buffer-local, as some comment
11437 in the code suggests it should be.
11438
11439 * files.el (auto-mode-interpreter-regexp): New variable.
11440 (set-auto-mode): Use it.
11441
11442 * indent.el (indent-for-tab-command): Doc fix.
11443
11444 * mouse-sel.el (mouse-sel-mode): Doc fix.
11445
11446 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
11447 labels.
11448
11449 * help.el (print-help-return-message): When
11450 display-buffer-reuse-frames is set, let the help window been quit,
11451 instead of deleting it, which might delete a reused frame.
11452
11453 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
11454
11455 * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
11456 rename a directory to a name that differs only by its letter case.
11457
11458 2000-08-08 Kenichi Handa <handa@etl.go.jp>
11459
11460 * international/quail.el (quail-define-rules): Handle Quail decode
11461 map correctly. Add code for supporting annotations.
11462 (quail-install-decode-map): New function.
11463 (quail-defrule-internal): New optional arguments decode-map and
11464 props.
11465 (quail-advice): New function.
11466
11467 2000-08-07 Sam Steingold <sds@gnu.org>
11468
11469 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
11470 `defconst', `define-condition', `with-slots'.
11471 * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
11472
11473 2000-08-03 Miles Bader <miles@gnu.org>
11474
11475 * comint.el (comint-use-prompt-regexp-instead-of-fields):
11476 New variable.
11477 (comint-prompt-regexp, comint-get-old-input): Document dependence on
11478 comint-use-prompt-regexp-instead-of-fields.
11479 (comint-send-input): Add `input' field property to stuff we send to
11480 the process, if comint-use-prompt-regexp-instead-of-fields is nil.
11481 (comint-output-filter): Add `output' field property to process
11482 output, if comint-use-prompt-regexp-instead-of-fields is nil.
11483 (comint-replace-by-expanded-history)
11484 (comint-get-old-input-default, comint-show-output)
11485 (comint-backward-matching-input, comint-forward-matching-input)
11486 (comint-next-prompt, comint-previous-prompt): Use field
11487 properties if comint-use-prompt-regexp-instead-of-fields is nil.
11488 (comint-line-beginning-position): New function.
11489 (comint-bol): Use comint-line-beginning-position. Make ARG optional.
11490 (comint-replace-by-expanded-history-before-point): Use
11491 comint-line-beginning-position and line-end-position.
11492 (comint-last-output-overlay): New variable.
11493 (comint-mode): Make `comint-last-output-overlay' buffer-local.
11494
11495 * shell.el (shell-prompt-pattern): Doc change.
11496 (shell-backward-command): Use line-beginning-position.
11497
11498 * gud.el (gud-gdb-complete-command): Use
11499 comint-line-beginning-position.
11500
11501 * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
11502 comint-bol doesn't actually go to the beginning of the line.
11503
11504 * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
11505 if comint-use-prompt-regexp-instead-of-fields is non-nil.
11506 (try-expand-line-all-buffers): Likewise.
11507
11508 * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
11509 explicitly matching comint-prompt-regexp.
11510 (sql-copy-column): Use comint-line-beginning-position instead of
11511 explicitly matching comint-prompt-regexp.
11512
11513 * progmodes/octave-inf.el (inferior-octave-complete): Use
11514 comint-line-beginning-position.
11515
11516 * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
11517
11518 * progmodes/idlw-shell.el (idlwave-shell-send-command): When
11519 looking for a prompt, use `forward-line 0' instead of
11520 `beginning-of-line', to avoid getting caught by an input field.
11521
11522 2000-08-07 Gerd Moellmann <gerd@gnu.org>
11523
11524 * files.el (shell-quote-wildcard-pattern): Make sure to return
11525 PATTERN, in the Unix case.
11526
11527 2000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
11528
11529 * play/zone.el (zone): Discard any pending input before running
11530 the randomly-chosen pgm.
11531
11532 2000-08-07 Kenichi Handa <handa@etl.go.jp>
11533
11534 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
11535 checking the existence of any multibyte characters.
11536
11537 2000-08-06 Gerd Moellmann <gerd@gnu.org>
11538
11539 * help.el (describe-mode): Test minor-mode symbol for being
11540 bound before testing its value for being nil.
11541
11542 * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
11543 `first', `second', and `third'.
11544
11545 * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
11546 (second): Make it an alias for `cadr'.
11547
11548 2000-08-06 Eli Zaretskii <eliz@is.elta.co.il>
11549
11550 * bs.el (bs-apply-sort-faces): Don't use window-system, since all
11551 types of display support faces now.
11552
11553 2000-08-05 Gerd Moellmann <gerd@gnu.org>
11554
11555 * pcvs.el (require): Require `cl' during compilation, only.
11556
11557 * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
11558 (toplevel): Remove `remq' and `remove' from autoloads.
11559 (cl-fake-autoloads): New variable. If set, arrange for an error
11560 when CL functions etc. are autoloaded.
11561
11562 2000-08-04 Eli Zaretskii <eliz@is.elta.co.il>
11563
11564 * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
11565
11566 * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
11567 popped up, but the user clicks outside the menu, return an empty
11568 regexp (that causes unhighlight-regexp to have no effect).
11569
11570 * menu-bar.el (menu-bar-games-menu): Add Zone.
11571
11572 * hi-lock.el (toplevel): Require font-lock.
11573
11574 2000-08-03 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11575
11576 * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward.
11577 (ebnf-8-bit-chars): New var for bug fix.
11578 (ebnf-string): Bug fix.
11579
11580 2000-08-03 Sam Steingold <sds@gnu.org>
11581
11582 * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
11583 instead of `buffer-string'.
11584 (require 'cl): Always, not just when compiling.
11585 `ignore-errors' in `interactive', `list*', `defun*' &c make this
11586 necessary.
11587
11588 2000-08-03 Eli Zaretskii <eliz@is.elta.co.il>
11589
11590 * international/mule-cmds.el (select-safe-coding-system): Make
11591 the message text about selecting a safe coding system more clear.
11592
11593 2000-08-02 Gerd Moellmann <gerd@gnu.org>
11594
11595 * hi-lock.el: New file.
11596
11597 * play/zone.el: New file.
11598
11599 * replace.el (occur): Set tab-width in the *Occur* buffer to the
11600 value of tab-width in the original buffer. Choose a line number
11601 format that's a multiple of the original buffer's tab width, so
11602 that lines appear right.
11603
11604 * textmodes/ispell.el (ispell): New function, replacing an alias.
11605 Spell-check active region if in transient-mark-mode and mark
11606 is active; otherwise spell-check buffer.
11607
11608 2000-08-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11609
11610 * ps-mule.el: Fix a customization problem on
11611 ps-mule-font-info-database-default.
11612
11613 2000-08-02 Eli Zaretskii <eliz@is.elta.co.il>
11614
11615 * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
11616 display-mouse-p instead of window-system.
11617 (ebrowse-member-mode-map): Ditto.
11618
11619 2000-08-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11620
11621 * progmodes/ebnf2ps.el: Update ps-print functions call.
11622 Indentation fix. Doc fix.
11623 (ebnf-version): New version number (3.2).
11624 (ebnf-format-color, ebnf-begin-job): Code fix.
11625
11626 2000-08-01 Eli Zaretskii <eliz@is.elta.co.il>
11627
11628 * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
11629 font lock support on window-system.
11630 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
11631
11632 * textmodes/ispell.el (ispell-highlight-spelling-error): Use
11633 display-color-p, if fboundp, instead of window-system.
11634
11635 2000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
11636
11637 * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
11638 instead of window-system.
11639
11640 * wid-edit.el (widget-choose): Use display-mouse-p instead of
11641 window-system.
11642 (widget-choice-mouse-down-action): Use display-popup-menus-p
11643 instead of window-system.
11644
11645 * strokes.el (strokes-file): Run the file name through
11646 convert-standard-filename.
11647 (strokes-mode): Call display-mouse-p instead of looking at
11648 window-system. Change the error message accordingly.
11649
11650 * progmodes/cpp.el (toplevel): Support faces on tty's.
11651
11652 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
11653 (lm-plot-square, lm-init-display): Don't use window-system.
11654
11655 * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
11656 (gomoku-plot-square, gomoku-init-display): Don't use window-system.
11657
11658 * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
11659 instead of looking at window-system.
11660
11661 2000-07-30 Gerd Moellmann <gerd@gnu.org>
11662
11663 * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
11664 of testing if iswitchb-prepost-hooks is bound, because the
11665 latter will always be true when invoking a recursive minibuffer
11666 from an active Iswitchb buffer.
11667
11668 2000-07-30 Eli Zaretskii <eliz@is.elta.co.il>
11669
11670 * files.el (shell-quote-wildcard-pattern): New function.
11671 (insert-directory): Call it. Only prepend "\" to command on Unix
11672 and GNU/Linux systems.
11673
11674 2000-07-30 Gerd Moellmann <gerd@gnu.org>
11675
11676 * eshell/esh-groups.el: Change custom :link file names
11677 from `eshell.info' to `eshell'.
11678
11679 2000-07-30 Francis Wright <fjw@maths.qmw.ac.uk>
11680
11681 * dired.el (dired-build-subdir-alist): Expand subdirectory names
11682 correctly in recursive ange-ftp listings.
11683
11684 2000-07-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11685
11686 * ps-print.el: Fix bug 1: if ps-font-size-internal,
11687 ps-header-font-size-internal and
11688 ps-header-title-font-size-internal variables are not set,
11689 ps-nb-pages and ps-line-lengths-internal crashes. Fix bug 2: if
11690 face text property is (foreground-color . COLOR) or
11691 `(background-color . COLOR)', ps-print crashes. Doc fix.
11692 (ps-print-version): New version number (5.2.4).
11693 (ps-plot-region): Code fix.
11694 (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
11695 (ps-face-attribute-list, ps-face-attributes, ps-face-background):
11696 Bug fix 2.
11697
11698 2000-07-30 Milan Zamazal <pdm@freesoft.cz>
11699
11700 * glasses.el (glasses-make-readable): Fix uncapitalization of
11701 identifiers like `myXMLDocument'.
11702
11703 2000-07-28 Karl Fogel <kfogel@red-bean.com>
11704
11705 * mail/mail-hist.el (mail-hist-previous-input)
11706 (mail-hist-next-input): Do the obvious code factorization.
11707 (mail-hist-retrieve-and-insert): New func, contains common
11708 code of above two.
11709 If inserting a message body, leave point at top.
11710
11711 2000-07-28 Sam Steingold <sds@gnu.org>
11712
11713 * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
11714 Use `<=', not `<' to compare times!
11715 (ange-ftp-ls): Remove.
11716
11717 2000-07-27 Gerd Moellmann <gerd@gnu.org>
11718
11719 * play/cookie1.el: Add explanation of how to make cookie.el
11720 compatible with strfile(1) to comment.
11721
11722 * subr.el (remove, remq): New functions.
11723
11724 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
11725 escape `*' in regexps.
11726 (midnight-find): Reverse order of arguments in the funcall of
11727 TEST.
11728
11729 * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
11730 and `.class'.
11731
11732 * play/meese.el: Add Commentary section.
11733
11734 2000-07-27 Alex Schroeder <alex@gnu.org>
11735
11736 * sql.el (sql-ms): Added autoload cookie.
11737 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
11738 (sql-oracle): Ditto.
11739 (sql-help): Doc change.
11740
11741 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
11742 types and exceptions.
11743
11744 2000-07-27 Alex Schroeder <alex@gnu.org>
11745
11746 * sql.el (sql-placeholder-history): New variable.
11747 (sql-query-placeholders-and-send): New function that will query
11748 the user and replace placeholders with user input.
11749 (sql-oracle): If running on NT, set comint-input-sender to
11750 sql-query-placeholders-and-send.
11751
11752 (sql-stop): If in the SQLi buffer, insert stop notification, else
11753 present it as a message.
11754
11755 2000-07-27 Alex Schroeder <alex@gnu.org>
11756
11757 * sql.el (sql-input-ring-separator): Doc change.
11758 (sql-input-ring-file-name): Doc change.
11759 (sql-interactive-mode): Use `sql-input-ring-separator' and
11760 `sql-input-ring-file-name' to set the comint-mode equivalents
11761 without making them local variables.
11762 (sql-stop): Don't bind `sql-input-ring-separator' and
11763 `sql-input-ring-file-name' dynamically to their comint-mode
11764 equivalents.
11765
11766 2000-07-27 Kenichi Handa <handa@etl.go.jp>
11767
11768 * international/mule.el (register-char-codings): New function.
11769 (make-coding-system): Handle `safe-chars' specification in the arg
11770 PROPERTY.
11771
11772 * international/mule-cmds.el
11773 (find-coding-systems-region-subset-p): This function deleted.
11774 (sort-coding-systems-predicate): New variable.
11775 (sort-coding-systems): New function.
11776 (find-coding-systems-region): Use
11777 find-coding-systems-region-internal.
11778 (find-coding-systems-string): Use find-coding-systems-region.
11779 (find-coding-systems-for-charsets): Check
11780 char-coding-system-table.
11781 (select-safe-coding-system-accept-default-p): New variable.
11782 (select-safe-coding-system): Mostly rewritten. New argument
11783 ACCEPT-DEFAULT-P.
11784 (select-message-coding-system): Call select-safe-coding-system
11785 with ACCEPT-DEFAULT-P arg.
11786 (reset-language-environment): Reset default-sendmail-coding-system
11787 to the default value iso-latin-1.
11788 (set-language-environment): Don't set the obsolete variable
11789 charset-origin-alist.
11790
11791 * international/codepage.el (cp-coding-system-for-codepage-1):
11792 Give `safe-chars' property to make-coding-system.
11793
11794 * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
11795 calling select-message-coding-system twice.
11796
11797 * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
11798 instead of `safe-charsets'.
11799 (cyrillic-alternativnyj): Likewise.
11800 (ccl-encode-alternativnyj): Don't check the charset
11801 cyrillic-iso8859-5.
11802
11803 2000-07-27 Kenichi Handa <handa@etl.go.jp>
11804
11805 * composite.el (compose-chars-after): Preserve match data.
11806
11807 2000-07-26 Sam Steingold <sds@gnu.org>
11808
11809 * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
11810 (ange-ftp-real-file-newer-than-file-p): New function.
11811 (ange-ftp-verify-visited-file-modtime): Use `float-time'.
11812 (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
11813
11814 * tooltip.el (tooltip-float-time): Removed (use `float-time').
11815 * midnight.el (midnight-float-time): Ditto.
11816
11817 2000-07-26 Andreas Schwab <schwab@suse.de>
11818
11819 * files.el (normal-backup-enable-predicate): Correct
11820 interpretation of the return value of compare-strings.
11821
11822 2000-07-26 Gerd Moellmann <gerd@gnu.org>
11823
11824 * isearch.el (isearch-resume): New function.
11825 (isearch-done): Add something to command-history to resume
11826 the search.
11827 (isearch-yank-line, isearch-yank-word): Use
11828 buffer-substring-no-properties instead of buffer-substring.
11829
11830 * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
11831 of flyspell-mouse-map.
11832
11833 * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
11834 duplicate definition.
11835 (makefile-mode): Remove duplicate setting of local-abbrev-table.
11836
11837 * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
11838 (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
11839
11840 2000-07-25 Sam Steingold <sds@gnu.org>
11841
11842 * net/ange-ftp.el: Get modtime over the net.
11843 (ange-ftp-file-modtime): New function.
11844 (ange-ftp-write-region, ange-ftp-insert-file-contents)
11845 (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
11846 Use it.
11847 (ange-ftp-dot-to-slash): New function.
11848 (ange-ftp-fix-name-for-vms): Use it.
11849
11850 * midnight.el (midnight-buffer-display-time): Use
11851 `with-current-buffer'.
11852
11853 2000-07-25 Gerd Moellmann <gerd@gnu.org>
11854
11855 * find-dired.el: Update copyright notice.
11856 (find-dired): Offer to kill a running `find'.
11857
11858 * enriched.el (enriched-face-ans): For a `foreground-color'
11859 property, return '(("x-color" COLOR))' so that COLOR will be
11860 output as a parameter of the x-color annotation. Likewise for the
11861 `background-color' property. In the case of normal face
11862 properties, don't return annotations for unspecified foreground
11863 and background face attributes.
11864
11865 2000-07-25 Kenichi Handa <handa@etl.go.jp>
11866
11867 * language/japan-util.el (japanese-katakana-region): Fix handling
11868 HANKAKU argument.
11869
11870 2000-07-25 Miles Bader <miles@gnu.org>
11871
11872 * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
11873 constrain-to-field. Pass nil ESCAPE-FROM-EDGE argument to
11874 constrain-to-field.
11875
11876 2000-07-24 Andrew Innes <andrewi@gnu.org>
11877
11878 * timer.el (timer-activate-when-idle): Add optional parameter
11879 DONT-WAIT. Update docstring.
11880 (run-with-idle-timer): Specify extra parameter to
11881 timer-activate-when-idle, so that timer will be activated
11882 immediately if Emacs is already idle.
11883
11884 * w32-fns.el (w32-using-nt): Fix docstring.
11885
11886 2000-07-24 Dave Love <fx@gnu.org>
11887
11888 * mouse.el (popup-menu): Set last-command-event.
11889 (mouse-major-mode-menu-prefix): Declare.
11890
11891 2000-07-24 Gerd Moellmann <gerd@gnu.org>
11892
11893 * textmodes/flyspell.el: Update to author's version 1.5d.
11894
11895 * progmodes/hideshow.el: Update copyright notice.
11896
11897 * vcursor.el: Set maintainer to FSF, since author cannot
11898 be reached.
11899
11900 2000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
11901
11902 * info.el (Info-goto-emacs-key-command-node): Leave a space after
11903 the prompt.
11904
11905 * mouse.el (popup-menu): Run the keymap through indirect-function,
11906 in case it was defined with define-prefix-key. If the menu is a
11907 list of keymaps, look up the binding of user's choice in each one
11908 of the keymaps.
11909 (mouse-popup-menubar): If the global and local menu-bar keymaps
11910 don't have a prompt string, create one and insert it into the
11911 keymap. Don't barf if current-local-map returns nil.
11912
11913 2000-07-24 Francis Wright <fjw@maths.qmw.ac.uk>
11914
11915 * dired.el (dired-sort-R-check): Added to allow recursive listing
11916 to be undone.
11917 (dired-sort-other): Use it.
11918
11919 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11920
11921 * Release of cc-mode 5.27
11922
11923 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11924
11925 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
11926 c-beginning-of-statement-1 that caused a bad case of recursion
11927 which could consume a lot of CPU in large classes in languages
11928 that have in-expression classes (i.e. Java and Pike).
11929
11930 * cc-engine.el (c-guess-basic-syntax): Check for in-expression
11931 statements before top level constructs (i.e. case 6 is moved
11932 before case 5 and is now case 4) to catch in-expression
11933 classes in top level expressions correctly.
11934
11935 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11936
11937 * cc-engine.el (c-guess-basic-syntax): Less naive handling of
11938 objc-method-intro. Case 4 removed and case 5I added.
11939
11940 * cc-langs.el (c-append-paragraph-start): New variable used by
11941 c-common-init to get paragraph-start correct.
11942 * cc-langs.el (c-common-init): Use c-append-paragraph-start to
11943 initialize paragraph-start to make it correct both with and
11944 without the javadoc special case.
11945
11946 * cc-mode.el (java-mode): Use c-append-paragraph-start to
11947 initialize paragraph-start for javadoc markup.
11948
11949 * cc-vars.el (c-style-variables-are-local-p): Incompatible
11950 change by defaulting this to t. It's motivated by the
11951 confusing behavior that otherwise arise from the style system
11952 when editing both java and non-java files at the same time
11953 (see the comments about style setting in c-common-init).
11954
11955 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11956
11957 * cc-cmds.el (c-indent-new-comment-line): Added a kludge
11958 similar to the one in c-fill-paragraph to check the fill
11959 prefix from the adaptive fill function for sanity.
11960
11961 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11962
11963 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
11964 defun block.
11965
11966 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11967
11968 * cc-align.el (c-lineup-multi-inher): Handle lines with
11969 leading comma nicely. Extended to handle member initializers
11970 too.
11971
11972 * cc-engine.el: (c-beginning-of-inheritance-list,
11973 c-guess-basic-syntax): Fixed recognition of inheritance lists
11974 when the lines begins with a comma.
11975
11976 * cc-vars.el (c-offsets-alist): Changed default for
11977 member-init-cont to c-lineup-multi-inher since it now handles
11978 member initializers and indents better for leading commas.
11979
11980 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11981
11982 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
11983 handling that caused class open lines to be recognized as
11984 statement-conts in some cases.
11985
11986 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
11987 guessed by the adaptive fill function unless point is on the
11988 first line of a block comment.
11989
11990 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
11991 when the buffer ends with a macro continuation char.
11992
11993 * cc-engine.el (c-guess-basic-syntax): Added support for
11994 function definitions as statements in Pike. The first
11995 statement in a lambda block is now labeled defun-block-intro
11996 instead of statement-block-intro.
11997
11998 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
11999 so that the class surrounding point is selected, not the one
12000 innermost in the state.
12001
12002 * cc-engine.el (c-guess-basic-syntax): Fixed bug in
12003 recognition of switch labels having hanging multiline
12004 statements.
12005
12006 * cc-engine.el (c-beginning-of-member-init-list): Broke out
12007 some code in c-guess-basic-syntax to a separate function.
12008 * cc-engine.el (c-just-after-func-arglist-p): Fixed
12009 recognition of member inits with multiple line arglists.
12010 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
12011 member-init-cont when the commas are in funny places.
12012
12013 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12014
12015 * cc-defs.el (c-auto-newline): Removed this macro since it's
12016 not used anymore.
12017
12018 * cc-engine.el (c-looking-at-bos): New helper function.
12019 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
12020 inexpr and toplevel classes apart in Pike.
12021
12022 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
12023 of case 9A.
12024
12025 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
12026 constant, since "class" can introduce an in-expression class
12027 in Pike nowadays.
12028
12029 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12030
12031 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
12032 indentation on cpp-macro lines.
12033
12034 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
12035 a syntax modifier like comment-intro, to make it possible to
12036 get syntactic indentation for preprocessor directives. It's
12037 incompatible wrt to lineup functions on cpp-macro, but it has
12038 no observable effect in the 99.9% common case where cpp-macro
12039 is set to -1000.
12040
12041 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12042
12043 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
12044 member-init-cont when the preceding arglist is several lines.
12045
12046 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12047
12048 * cc-styles.el (c-style-alist): The basic offset for the BSD
12049 style corrected to 8.
12050
12051 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12052
12053 * cc-styles.el (c-style-alist): Adjusted the indentation of
12054 brace list openers in the gnu style.
12055
12056 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12057
12058 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
12059
12060 * cc-cmds.el (c-electric-brace, c-electric-slash,
12061 c-electric-star, c-electric-semi&comma, c-electric-colon,
12062 c-electric-lt-gt, c-electric-paren): Don't reindent old lines
12063 when c-syntactic-indentation is nil.
12064
12065 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
12066 we were left at comments preceding the first statement when
12067 reaching the beginning of the buffer.
12068
12069 * cc-vars.el (c-syntactic-indentation): New variable to turn
12070 off all syntactic indentation.
12071
12072 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12073
12074 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
12075 between the text and the block comment ender when it hangs,
12076 depending on how many there are before the fill.
12077
12078 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12079
12080 * cc-engine.el (c-beginning-of-closest-statement): New helper
12081 function to go back to the closest preceding statement start,
12082 which could be inside a conditional statement.
12083 * cc-engine.el (c-guess-basic-syntax): Use
12084 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
12085
12086 * cc-engine.el (c-guess-basic-syntax): Better handling of
12087 arglist-intro, arglist-cont-nonempty and arglist-close when
12088 the arglist is nested inside parens. Cases 7A, 7C and 7F
12089 changed.
12090
12091 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
12092 up-to-date with javadoc 1.2.
12093
12094 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12095
12096 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
12097 multiline Pike type decls.
12098
12099 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12100
12101 * cc-cmds.el (c-indent-new-comment-line): Always break
12102 multiline comments in multiline mode, regardless of
12103 comment-multi-line.
12104
12105 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12106
12107 * cc-engine.el (c-guess-basic-syntax): Fixed bug with
12108 fully::qualified::names in C++ member init lists. Preamble in
12109 case 5D changed.
12110
12111 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12112
12113 * cc-langs.el (c-common-init): Handling of obsolete variables
12114 moved to c-initialize-cc-mode. More compatible style override
12115 when using global style variables.
12116 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
12117 variables moved here.
12118
12119 * cc-styles.el (c-make-styles-buffer-local): Flag style
12120 variable localness in c-style-variables-are-local-p to make
12121 the compatibility measure in c-common-init work well.
12122
12123 * cc-styles.el (c-set-style-1): c-special-indent-hook can no
12124 longer contain set-from-style.
12125 * cc-styles.el (c-initialize-builtin-style): Don't check for
12126 set-from-style on c-special-indent-hook.
12127 * cc-styles.el (c-copy-tree): Obsolete. The standard function
12128 copy-alist is sufficient now.
12129
12130 * cc-styles.el (c-set-style, c-set-style-1,
12131 c-get-style-variables): Fixes to variable initialization so
12132 that duplicate entries in styles have the same effect
12133 regardless of DONT-OVERRIDE.
12134
12135 * cc-styles.el (c-set-style-2): Fixed bug where the
12136 initialization of inheriting styles failed when the
12137 dont-override flag is set.
12138
12139 * cc-vars.el (c-special-indent-hook): Don't use set-from-style
12140 on this.
12141
12142 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12143
12144 * cc-defs.el (c-forward-comment): Removed the workaround
12145 introduced in 5.38 since it had worse side-effects. If a line
12146 contains the string "//\"", it regarded the // as a comment
12147 start since the \ temporarily doesn't have escape syntax.
12148
12149 2000-07-17 Emmanuel Briot <briot@act-europe.fr>
12150
12151 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
12152 ada-xref.el before ada-prj.el, so that the Project menu is created
12153 when ada-prj tries to add to it.
12154 (ada-activate-keys-for-case): Suppress the characters that are not
12155 part of the Ada syntax. Better compatibility with else-mode
12156 (ada-adjust-case-interactive): When auto-casing is not active,
12157 correctly insert newlines (used to insert only ^M). Prevent the
12158 syntax table from being changed in case of an error
12159 (or '_' becomes part of a word and some commands are confused).
12160 Do nothing if ada-auto-case is nil.
12161 (ada-after-keyword-p): Ignore keywords that are also attributes
12162 (ada-batch-reformat): Update usage comment
12163 (ada-call-from-contextual-menu): New function
12164 (ada-case-read-exceptions): Reinitialize the casing exception list
12165 first to nil first, so that the casing exception file can be
12166 shared.
12167 (ada-check-defun-name): Handles "configure" keyword for gnatdist
12168 files.
12169 (ada-compile-goto-error): Fix regexp used to detect a file:line
12170 anywhere in the error message
12171 (ada-contextual-menu-last-point): New variable
12172 (ada-create-keymap): If the variable delete-key-deletes-forward is
12173 t on XEmacs, it means that DEL should delete one character
12174 forward.
12175 (ada-create-menu): Use :included instead of :visible for XEmacs.
12176 New submenu "Options".
12177 (ada-end-stmt-re): Correctly indent "select ... then abort"
12178 statements.
12179 (ada-fill-comment-paragraph): Correctly delete all leading '--'
12180 even if they don't match ada-fill-comment-prefix Fix handling of
12181 paragraphs on the first or last line of a file.
12182 (ada-format-paramlist): Fix handling of default parameter values.
12183 (ada-get-body-name): New function.
12184 (ada-get-current-indent): Optimized by searchling directly for an
12185 existing generic part or a statement outside of it. Handle
12186 ada-indent-align-comments when indenting comments Replaced some
12187 regexps by testing directly the next character. This results in a
12188 huge speedup on some files. New indentation scheme for renames
12189 statements. Stop looking for the 'while' or 'for' associated with
12190 a 'loop' at the first semicolon encountered. A "return" can also
12191 match an anonymous access subprogram declaration.
12192 (ada-get-indent-noindent): Ignore strings and comments when
12193 looking for the keywords "record" and "private".
12194 (ada-goto-matching-decl-start): When matching "if", make sure we
12195 are not in fact seeing "end if". Ignore "when" statements except
12196 when initial keyword was "begin". Fix handling of nested
12197 procedures. Add a recursive call to this function to skip over
12198 other 'end' statmts. Fix indentation for "when .. => begin"
12199 (ada-in-open-paren-p): Fix indentation for complex boolean
12200 expressions, where 'and then', 'or else' and parenthesis
12201 statements are mixed up.
12202 (ada-in-paramlist-p): Skip comments while searching for the
12203 beginning Fix handling of operator declarations.
12204 (ada-indent-align-comments): New variable
12205 (ada-indent-current): Change the syntax table only in the
12206 protected section, so that we are sure it is restored correctly.
12207 (ada-indent-on-previous-lines): Use ada-use-indent and
12208 ada-with-indent Correctly indent "select ... then"
12209 (ada-indent-region): Slight speedup.
12210 (ada-indent-renames): New variable.
12211 (ada-last-which-function-subprog, ada-last-which-function-line):
12212 New variables
12213 (ada-looking-at-semi-private): Correctly indent the 'private'
12214 keyword when it is the first word in a package declaration.
12215 (ada-loose-case-word): Stop searching if at the end of the buffer.
12216 (ada-loose-case-word, ada-capitalize-word): Recase the whole word
12217 even if point is not initially at the end of the word.
12218 (ada-matching-decl-start-re): Add "when".
12219 (ada-mode): Add support for abbrev-mode, outline-mode and
12220 which-func-mode Override the old find-file.el entry in
12221 ff-special-constructs since it is using the obsolete
12222 ada-spec-suffix variable
12223 (ada-no-auto-case): New function
12224 (ada-scan-paramlist): When parsing the argument type, accept
12225 spaces (as in "X 'Class", generated by Rational Rose).
12226 (ada-other-file-name): No longer loads the other file.
12227 (ada-popup-menu): Save and restore the current buffer and cursor
12228 position before and after displaying the menu.
12229 (ada-search-ignore-complex-boolean): New function.
12230 (ada-uncomment-region): Emacs21 already knows how to delete
12231 comments not starting in the first column.
12232 (ada-use-indent): New variable
12233 (ada-which-function): New function.
12234 (ada-with-indent): New variable
12235 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
12236 can be batch-compiled from the command line.
12237
12238 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
12239 Add to the menu when the file is loaded, not in ada-mode-hook.
12240 Add -toolbar to the default ddd command Switches moved from
12241 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
12242 ada-prj-default-comp-opt
12243 (ada-add-ada-menu): Remove the map and name parameters Add the Ada
12244 Reference Manual to the menu
12245 (ada-check-current): rewritten as a call to ada-compile-current
12246 (ada-compile): Removed.
12247 (ada-compile-application, ada-compile-current, ada-check-current):
12248 Set the compilation-search-path so that compile.el automatically
12249 finds the sources in src_dir. Automatic scrollong of the
12250 compilation buffer. C-uC-cC-c asks for confirmation before
12251 compiling
12252 (ada-compile-current): New parameter, prj-field
12253 (ada-complete-identifier): Load the .ali file before doing
12254 processing
12255 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
12256 conform to gnatmake's behavior.
12257 (ada-find-file-in-dir): New function
12258 (ada-find-references): Set the environment variables for gnatfind
12259 (ada-find-src-file-in-dir): New function.
12260 (ada-first-non-nil): Removed
12261 (ada-gdb-application): Add support for jdb, the java debugger.
12262 (ada-get-ada-file-name): Load the original-file first if not done
12263 yet.
12264 (ada-get-all-references): Handles the new ali syntax (parent types
12265 are found between <>).
12266 (ada-initialize-runtime-library): New function
12267 (ada-mode-hook): Always load a project file when a file is opened,
12268 so that the casing exceptions are correctly read.
12269 (ada-operator-re): Add all missing operators ("abs", "rem", "**").
12270 (ada-parse-prj-file): Use find-file-noselect instead of find-file
12271 to open the project file, since the latter does not work with
12272 speedbar Get default values before loading the prj file, or the
12273 default executable file name is wrong. Use the absolute value of
12274 src_dir to initialize ada-search-directories and
12275 compilation-search-path,... Add the standard runtime library to
12276 the search path for find-file.
12277 (ada-prj-default-debugger): Was missing an opening '{'
12278 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
12279 variables.
12280 (ada-prj-default-gnatmake-opt): New variable
12281 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
12282 buffers, the project file is the default one Save the windows
12283 configuration before displaying the menu.
12284 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
12285 (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
12286 ...) regexp-quote identifiers names to support operators +,
12287 -,... in regexps.
12288 (ada-remote): New function.
12289 (ada-run-application): Erase the output buffer before starting the
12290 run Support remote execution of the application. Use
12291 call-process, or the arguments are incorrectly parsed
12292 (ada-set-default-project-file): Reread the content of the active
12293 project file, not the one from the current buffer When a project
12294 file is set as the default project, all directories are
12295 automatically associated with it.
12296 (ada-set-environment): New function
12297 (ada-treat-cmd-string): New special variable ${current}
12298 (ada-treat-cmd-string): Revised. The substitution is now done for
12299 any ${...} substring
12300 (ada-xref-current): If no body was found, compiles the spec
12301 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the
12302 compiler to get rid of command line length limitations.
12303 (ada-xref-get-project-field): New function
12304 (ada-xref-project-files): New variable
12305 (ada-xref-runtime-library-specs-path)
12306 (ada-xref-runtime-library-ali-path): New variables
12307 (ada-xref-set-default-prj-values): Default run command now does a
12308 cd to the build directory. New field: main_unit Provide a default
12309 file name even if the current buffer has no prj file.
12310
12311 * ada-prj.el:
12312 Rewritten to show a tabbed-dialog.
12313 (ada-prj-add-ada-menu): Remove the map and name parameters.
12314 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
12315 New function
12316 (ada-prj-load-directory, ada-prj-subdirs-of): New functions
12317 (ada-prj-load-from-file): New function
12318 (ada-prj-save): Always save fields that depend on the current buffer
12319 (ada-prj-show-value): New function
12320
12321 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
12322 Ada mode. This will allow us to display the Ada menu in any buffer
12323 we want (for project items).
12324 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
12325 number of spaces in the header.
12326
12327 2000-07-24 Dave Love <fx@gnu.org>
12328
12329 * ediff-init.el (ediff-region-help-echo): Bind face-help.
12330
12331 2000-07-23 Noah Friedman <friedman@splode.com>
12332
12333 * type-break.el (type-break): perform autosave.
12334 Suggested by Stephen Gildea <gildea@intouchsys.com>.
12335 (type-break-do-query): Cancel query schedule while performing
12336 actual query, to avoid possibility of a second query being made
12337 while first one is already in progress.
12338 (type-break-time-stamp-format): New variable.
12339 (type-break-time-stamp): New function.
12340 (type-break-time-warning): Use it.
12341 (type-break-keystroke-warning): Use it.
12342 (type-break-noninteractive-query): Use it.
12343
12344 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
12345 cookie.
12346 Use add-minor-mode to set minor-mode-alist, if available.
12347 (eldoc-echo-area-use-multiline-p): New user option.
12348 (eldoc-echo-area-multiline-supported-p): New variable.
12349 (eldoc-docstring-format-sym-doc): Use them.
12350 (eldoc-mode): If not using idle timers, append to local post and
12351 pre command hooks. Suggested by David Byers <davby@ida.liu.se>.
12352 (eldoc-display-message-no-interference-p): Don't interfere with
12353 edebug.
12354 Add autoload cookie for eldoc-mode minor-mode-alist initialization.
12355 (eldoc-function-arglist): New function.
12356 (eldoc-function-argstring): Use it.
12357
12358 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
12359 auto save directory exists before calling directory-files.
12360
12361 2000-07-23 Dave Love <fx@gnu.org>
12362
12363 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
12364 ^o, ^u.
12365
12366 2000-07-21 Dave Love <fx@gnu.org>
12367
12368 * ediff-init.el (ediff-region-help-echo): Modify to use overlay
12369 now passed to the function. It now works properly.
12370
12371 * smerge-mode.el (smerge-mode-menu): Fill it out.
12372
12373 2000-07-20 Gerd Moellmann <gerd@gnu.org>
12374
12375 * info-look.el (info-lookup): If *info* is shown in another frame
12376 on the same display, select that frame, instead of switching to
12377 the Info buffer in another window of the selected frame.
12378
12379 * simple.el (universal-argument-map): Bind numeric keypad keys
12380 kp-0 to kp-9 and kp-subtract.
12381 (digit-argument): Handle these keys.
12382
12383 2000-07-20 Dave Love <fx@gnu.org>
12384
12385 * net/goto-addr.el (goto-address-fontify): Don't bother with
12386 buffer-modified and read-only stuff -- irrelevant with overlays.
12387 Put an extra property on the overlays and use it to clean up in
12388 case goto-address is re-run.
12389
12390 2000-07-19 Richard M. Stallman <rms@gnu.org>
12391
12392 * timer.el (run-with-idle-timer): Doc fix.
12393
12394 * mail/mail-utils.el (mail-strip-quoted-names):
12395 Handle case where <...> appears inside "...".
12396 Use replace-match to edit the string more simply.
12397 (rmail-dont-reply-to): Cope with an unmatched ".
12398
12399 2000-07-19 Dave Love <fx@gnu.org>
12400
12401 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
12402 implementation.
12403
12404 * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
12405 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
12406 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
12407
12408 2000-07-19 Gerd Moellmann <gerd@gnu.org>
12409
12410 * textmodes/refer.el: Correct maintainer's email address.
12411
12412 * progmodes/hideif.el: Correct author's email address.
12413 Fix typo in comment.
12414
12415 * xml.el: New file.
12416
12417 * mail/mailheader.el: Correct author's mail address.
12418
12419 * gnus/parse-time.el: Correct author's mail address.
12420
12421 2000-07-19 Colin Walters <walters@cis.ohio-state.edu>
12422
12423 * comint.el (comint-highlight-input, comint-highlight-face):
12424 New user options.
12425 (comint-input-ring-file-name): Change custom type.
12426 (comint-mode-map): Bind mouse-2.
12427 (comint-insert-clicked-input): New function.
12428 (comint-send-input): Handle input highlighting.
12429
12430 2000-07-18 Stefan Monnier <monnier@cs.yale.edu>
12431
12432 * mouse.el (popup-menu): New function.
12433 (mouse-major-mode-menu): Use it.
12434
12435 2000-07-18 Dave Love <fx@gnu.org>
12436
12437 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
12438 improvements.
12439
12440 2000-07-18 Gerd Moellmann <gerd@gnu.org>
12441
12442 * faces.el (face-font-selection-order)
12443 (face-font-family-alternatives): Add custom type.
12444
12445 2000-07-18 Dave Love <fx@gnu.org>
12446
12447 * cus-edit.el (custom-variable-reset-saved)
12448 (custom-variable-reset-standard): Remove unused bindings.
12449
12450 * rect.el (open-rectangle-line): Remove unused let.
12451
12452 * hl-line.el (hl-line-highlight): Check hl-line-mode.
12453
12454 2000-07-18 Gerd Moellmann <gerd@gnu.org>
12455
12456 * cdl.el: Fix `Maintainer' keyword.
12457
12458 * play/pong.el: Add author's email address.
12459
12460 2000-07-17 Sam Steingold <sds@gnu.org>
12461
12462 * files.el (insert-directory): Call `split-string' instead of
12463 re-implementing it.
12464
12465 2000-07-18 Gerd Moellmann <gerd@gnu.org>
12466
12467 * mail/vms-pmail.el: Change maintainer to FSF.
12468
12469 * net/goto-addr.el: Change maintainer to FSF.
12470
12471 * info.el (Info-title-face-alist): Removed.
12472
12473 2000-07-18 David Ponce <david@dponce.com>
12474
12475 * recentf.el (recentf-open-files): New command that works like
12476 `recentf-open-more-files', but shows the whole list of files (not just
12477 those omitted from the menu). Useful if you don't use a menu-bar!
12478 (recentf-open-more-files) Modified to use `recentf-open-files'.
12479
12480 (recentf-open-files, recentf-open-more-files)
12481 (recentf-edit-list): Dialogs use `recentf-dialog-mode'
12482
12483 (recentf-dialog-mode): New mode for dialogs. You can now just type
12484 "q" to cancel the dialogs.
12485
12486 2000-07-18 David Ponce <david@dponce.com>
12487
12488 * recentf.el: This is a major update of recentf.el. It adds new
12489 features to better organize the recentf menu and "More..." buffer.
12490
12491 Using new provided menu filtering functions you can now organize the
12492 recent files list:
12493
12494 - by major modes
12495 - by directories
12496 - by user defined rules
12497
12498 Finally, with the new `recentf-filter-changer' customizable filter you
12499 can define a ring of filters and dynamically (via the menu) cycle on
12500 each menu organization in the ring (a la msb).
12501
12502 2000-07-18 Eli Zaretskii <eliz@is.elta.co.il>
12503
12504 * eshell/eshell.el (eshell): Replace links to eshell.info with
12505 links to eshell, to avoid problems on systems where the manual is
12506 installed as `eshell'.
12507 * eshell/esh-cmd.el (eshell-cmd): Ditto.
12508 * eshell/em-smart.el (eshell-smart): Ditto.
12509 * eshell/em-banner.el (eshell-banner): Ditto.
12510 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
12511
12512 * eshell/em-unix.el (eshell-shuffle-files): Don't disable
12513 same-file check in the MS-DOS version (it does support inodes).
12514
12515 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
12516
12517 * eshell/eshell.el (eshell-directory-name):
12518 Run default directory name through convert-standard-filename.
12519
12520 2000-07-18 Kenichi Handa <handa@etl.go.jp>
12521
12522 * international/mule-cmds.el (select-safe-coding-system):
12523 Fix typo in the comment.
12524
12525 * language/european.el (compound-text):
12526 Force katakana-jisx0201 to be designated to G1.
12527
12528 * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
12529 Don't translate some national variant characters of latin-jisx0201.
12530 (x-ctext): Force katakana-jisx0201 to be designated to G1.
12531
12532 * international/kkc.el (kkc-after-update-conversion-functions):
12533 New variable.
12534 (kkc-update-conversion): Run functions in it at the tail.
12535
12536 2000-07-16 John Wiegley <johnw@gnu.org>
12537
12538 * lisp/align.el (align-newline-and-indent):
12539 Adding new function. for auto-aligning blocks of code on RET.
12540 (align-region): Fixed badly formatted minibuffer message.
12541
12542 2000-07-17 Kenichi Handa <handa@etl.go.jp>
12543
12544 * international/kkc.el (kkc-show-conversion-list-count): Customize it.
12545 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show
12546 the conversion list at first if appropriate.
12547 (kkc-next): Don't update kkc-next-count here.
12548 (kkc-prev): Don't update kkc-prev-count here.
12549 (kkc-show-conversion-list-update): Fix setting up of conversion
12550 list message.
12551
12552 2000-07-16 Stefan Monnier <monnier@cs.yale.edu>
12553
12554 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
12555
12556 2000-07-16 Dave Love <fx@gnu.org>
12557
12558 * cus-edit.el (custom-buffer-create-internal): Use a help-echo
12559 function to be more specific.
12560
12561 * wid-edit.el (widget-specify-field, widget-specify-button): Allow
12562 non-string help-echo.
12563 (widget-types-convert-widget): Defsubst it.
12564 (widget-echo-help): Try to cope with a help-echo function of two
12565 possible sorts.
12566
12567 2000-07-15 Jason Rumney <jasonr@gnu.org>
12568
12569 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
12570 Declare as obsolete.
12571
12572 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
12573
12574 2000-07-14 Gerd Moellmann <gerd@gnu.org>
12575
12576 * hilit-chg.el: Fix typo.
12577
12578 2000-07-14 Dave Love <fx@gnu.org>
12579
12580 * info.el (Info-mode-menu): Fix use of :help, :enable.
12581
12582 2000-07-14 Stefan Monnier <monnier@cs.yale.edu>
12583
12584 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
12585
12586 2000-07-13 Dave Love <fx@gnu.org>
12587
12588 * emacs-lisp/easymenu.el: Doc fixes.
12589 (easy-menu-remove): Defalias to ignore.
12590
12591 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
12592 Call throw correctly.
12593
12594 2000-07-13 Gerd Moellmann <gerd@gnu.org>
12595
12596 * faces.el (frame-background-mode): Doc fix.
12597
12598 * simple.el (eval-expression-print-length): Change custom type to
12599 allow entering nil as value.
12600
12601 2000-07-13 Dave Love <fx@gnu.org>
12602
12603 * progmodes/fortran.el (fortran-imenu-generic-expression):
12604 Change definition layout.
12605 (fortran-mode-menu): Reinstate customize entries.
12606
12607 * cus-edit.el (custom-group-menu-create, customize-menu-create):
12608 Use :filter, per old XEmacs code.
12609
12610 2000-07-12 Gerd Moellmann <gerd@gnu.org>
12611
12612 * term.el (term-send-raw-meta): Strip modifiers from the keyboard
12613 event when deciding what to send to the terminal.
12614
12615 2000-07-12 Dave Love <fx@gnu.org>
12616
12617 * cus-start.el: Add optional version as 4th element of specs and
12618 use it for several things new in v21. Remove load-path. Fix type
12619 of line-number-display-limit.
12620
12621 2000-07-11 Dave Love <fx@gnu.org>
12622
12623 * progmodes/fortran.el: Don't require easymenu.
12624 Use repeat counts in various regexps.
12625 (fortran-mode-syntax-table): Defvar directly.
12626 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
12627 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
12628 Use defvar, not defconst.
12629 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'.
12630 (fortran-mode): Set fortran-comment-line-start-skip,
12631 fortran-comment-line-start-skip, dabbrev-case-fold-search.
12632 (fortran-comment-indent): Use defsubst.
12633 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
12634 Use fortran-comment-indent, not fortran-comment-indent-function.
12635 (fortran-comment-region, fortran-electric-line-number): Simplify.
12636 (fortran-auto-fill): New function.
12637 (fortran-do-auto-fill): Deleted.
12638 (fortran-find-comment-start-skip):
12639 Check for non-null comment-start-skip.
12640 (fortran-auto-fill-mode, fortran-fill-statement):
12641 Use fortran-auto-fill.
12642 (fortran-fill): Use fortran-auto-fill. Check for null
12643 comment-start-skip. Simplify final clause and use end-of-line finally.
12644
12645 * widget.el (widget-plist-member): New alias.
12646
12647 2000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
12648
12649 * eshell/esh-module.el (toplevel): Reference
12650 byte-compile-current-file only if it is bound.
12651
12652 2000-07-10 Gerd Moellmann <gerd@gnu.org>
12653
12654 * dired.el: Don't require `dired-aux'.
12655
12656 2000-07-10 Miles Bader <miles@lsi.nec.co.jp>
12657
12658 * dired-aux.el (dired-show-file-type): New function.
12659 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
12660 (dired-show-file-type): Add autoload.
12661
12662 2000-07-10 Kenichi Handa <handa@etl.go.jp>
12663
12664 * international/mule-diag.el (describe-font): Adjusted for the
12665 change of fontset-info.
12666 (print-fontset): Likewise.
12667
12668 2000-07-09 Stefan Monnier <monnier@cs.yale.edu>
12669
12670 * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
12671
12672 2000-07-07 Gerd Moellmann <gerd@gnu.org>
12673
12674 * bindings.el: Bind `[delete]' to delete-char.
12675
12676 * dired.el (dired-find-alternate-file): New function.
12677 (dired-mode-map): Bind `a' to dired-find-alternate-file.
12678 (toplevel): Require dired-aux when compiling.
12679 (dired-buffers): Move defvar within file to avoid compiler warning.
12680
12681 * info.el (Info-last-search): Variable removed.
12682 (Info-search-history): New variable.
12683 (Info-search): New Info-search-history.
12684
12685 * battery.el, info-look.el: Change author's mail address.
12686
12687 2000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
12688
12689 * mail/rmail.el (rmail-clear-headers): Don't throw an error
12690 if rmail-ignored-headers is nil.
12691 (rmail-retry-failure): Bind rmail-ignored-headers and
12692 rmail-displayed-headers to nil.
12693
12694 2000-07-06 Gerd Moellmann <gerd@gnu.org>
12695
12696 * lpr.el (lpr-page-header-switches): Add `-h' switch.
12697 (print-region-1): Don't hard code `-h' here.
12698
12699 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
12700
12701 2000-07-01 Francesco Potorti` <pot@gnu.org>
12702
12703 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
12704 exim can use "your message" instead of "the message".
12705
12706 2000-07-06 Stefan Monnier <monnier@cs.yale.edu>
12707
12708 * facemenu.el: Docstrings fixes.
12709 (facemenu-get-face): Don't use internal-find-face.
12710 (facemenu-iterate): Rename arg to match the docstring.
12711
12712 * newcomment.el (uncomment-region): Be more careful when skipping
12713 backwards over `=' not to bump into BOBP.
12714
12715 2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
12716
12717 * ediff-diff.el (ediff-wordify): Use syntax table.
12718 * ediff-init.el (ediff-has-face-support-p): Use
12719 ediff-color-display-p.
12720 (ediff-color-display-p): Use display-color-p, changed to defun
12721 from defsubst.
12722 Got rid of special cases for NeXT and OS/2.
12723 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
12724 face.
12725
12726 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
12727
12728 * emacs-lisp/lucid.el: Require CL.
12729 (copy-tree, remprop): Remove, it's provided by CL.
12730 (map-keymap): Define in terms of cl-map-keymap.
12731 (extent-property, set-extent-end-glyph): New functions.
12732
12733 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
12734
12735 2000-07-05 Gerd Moellmann <gerd@gnu.org>
12736
12737 * Makefile.in (DONTCOMPILE): Add comment that the name may
12738 not be changed without changing the make-dist script.
12739
12740 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
12741 (cl-mapc): Use mapc instead of cl-old-mapc.
12742
12743 2000-07-05 Andrew Innes <andrewi@gnu.org>
12744
12745 * makefile.nt: Add support for `bootstrap' and related targets.
12746
12747 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
12748
12749 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
12750 (easy-menu-do-define): Use `menu-item' format.
12751 Handle case where easy-menu-create-menu returns a symbol.
12752 Manually call the potential top-level filter in the function binding.
12753 (easy-menu-filter-return): New arg NAME.
12754 Convert to a keymap if MENU is an XEmacs menu.
12755 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item.
12756 (easy-menu-converted-items-table, easy-menu-convert-item):
12757 New var and fun to memoize easy-menu-convert-item-1.
12758 (easy-menu-do-add-item): Use it.
12759 (easy-menu-create-menu): Use easy-menu-convert-item.
12760 Wrap easy-menu-filter-return around any :filter specification.
12761 Don't convert the menu if a filter was specified.
12762 Tell easy-menu-make-symbol not to check for MENU being an expression.
12763 (easy-menu-make-symbol): New arg NOEXP.
12764
12765 2000-07-05 Gerd Moellmann <gerd@gnu.org>
12766
12767 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
12768 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
12769 (eval-defun): If called with prefix arg, instrument code for
12770 Edebug.
12771
12772 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
12773 similar to that of eval-defun.
12774
12775 2000-07-04 Dave Love <fx@gnu.org>
12776
12777 * hl-line.el (hl-line-overlay): Make it permanent-local.
12778
12779 * calendar/todo-mode.el: Replaced with a working version, based on
12780 1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
12781
12782 2000-07-03 Miles Bader <miles@lsi.nec.co.jp>
12783
12784 * paths.el (prune-directory-list): New function.
12785 (Info-default-directory-list): Rewritten to more methodically
12786 enumerate a big list of possible info directories (based on the
12787 list used by the standalone info reader).
12788
12789 * info.el (info-initialize): Use prune-directory-list to remove
12790 non-existent directories from Info-directory-list.
12791
12792 * paths.el (Info-default-directory-list): Try a list of possible
12793 info-directories instead of a single one. Add the possible
12794 info directory "/usr/share/info".
12795
12796 * woman.el (woman-man.conf-path): Explicitly include the debian
12797 man-db config file "/etc/manpath.config".
12798 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
12799 are present in `manpath.config'.
12800 (woman-manpath): Include "/usr/share/man".
12801
12802 2000-07-03 Gerd Moellmann <gerd@gnu.org>
12803
12804 * frame.el (blink-cursor-mode): Don't hide cursor initially.
12805
12806 * startup.el (command-line): Initialize blink-cursor based
12807 on window-system.
12808
12809 * frame.el (blink-cursor): Default to nil if not running under
12810 a window-system.
12811
12812 * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
12813 (face-x-resources): Remove duplicate entry for :font.
12814
12815 * textmodes/refer.el (refer-find-entry-internal): Use some-window
12816 instead of cycling through windows with next-window.
12817
12818 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
12819 of cycling through windows with next-window.
12820
12821 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
12822 of cycling through windows with next-window.
12823
12824 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
12825 (edebug-get-displayed-buffer-points): Use walk-windows/some-window
12826 instead of cycling through windows with next-window.
12827
12828 * calendar/appt.el (appt-select-lowest-window): Use walk-windows
12829 instead of cycling through windows with next-window.
12830
12831 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
12832 of cycling through windows with next-window.
12833
12834 * terminal.el (te-process-output): Use walk-windows instead of
12835 cycling through windows with next-window.
12836
12837 * server.el (server-switch-buffer): Use some-window instead of
12838 cycling through windows with next-window.
12839
12840 * window.el (some-window): New function.
12841 (walk-windows): Remove reference to walk-windows-start.
12842
12843 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
12844
12845 2000-07-03 Richard Stallman <rms@gnu.org>
12846
12847 * window.el (walk-windows): Guarantee termination by keeping a list
12848 of all the windows already handled.
12849
12850 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
12851
12852 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
12853 window-system.
12854
12855 * man.el (Man-notify-when-ready): Don't use window-system. If
12856 Man-notify-method is newframe, and the display is not
12857 multi-frame, select the frame created for the man page.
12858 (Man-init-defvars): Doc fix.
12859
12860 2000-06-28 Gerd Moellmann <gerd@gnu.org>
12861
12862 * faces.el (region): Change background color for light background.
12863
12864 * ediff-wind.el (ediff-setup-control-frame): Remove :box
12865 attribute from mode-line face of Ediff control frame.
12866
12867 * replace.el (query-replace-map): Bind `e' like `E'.
12868
12869 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
12870
12871 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
12872 Change name to "Select All".
12873
12874 * dos-fns.el (convert-standard-filename): Fix last change.
12875
12876 2000-06-27 Gerd Moellmann <gerd@gnu.org>
12877
12878 * help.el (describe-variable): Don't insert a second `'s' in front
12879 of the string `value is shown below'. Since the syntax-table is
12880 set to emacs-lisp-mode-syntax-table, forward-sexp skips over
12881 an existing `'s', so that this won't be deleted.
12882
12883 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
12884 * pcmpl-unix.el: New files.
12885
12886 2000-06-26 Stefan Monnier <monnier@cs.yale.edu>
12887
12888 * wid-edit.el (widget-member): Use the new plist-member.
12889
12890 2000-06-26 Gerd Moellmann <gerd@gnu.org>
12891
12892 * replace.el (perform-replace): Undo change of 2000-04-04.
12893 Instead, move backward 1 character at the end of the loop when
12894 necessary.
12895
12896 * faces.el (fringe): Change face for different backgrounds.
12897
12898 * eshell/esh-module.el (toplevel): Load defgroup's differently;
12899 patch from John.
12900
12901 * eshell/*.el: Change spelling of the Free Software Foundation.
12902
12903 * eshell/esh-toggle.el: Removed.
12904
12905 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
12906
12907 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
12908 interactively.
12909
12910 2000-06-26 Alex Schroeder <alex@gnu.org>
12911
12912 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
12913 `define-key'; instead of checking `(emacs-version)' check for
12914 `set-keymap-parent' and `set-keymap-name' directly. Add entries
12915 for `;' and `o' which might be electric.
12916
12917 (sql-electric-stuff): New user option.
12918 (sql-magic-go): New function which uses `sql-electric-stuff'.
12919 (sql-magic-semicolon): New function which uses
12920 `sql-electric-stuff'.
12921
12922 (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
12923 is not fboundp.
12924
12925 (sql-oracle-options): New variable.
12926 (sql-oracle): Use it.
12927
12928 (sql-imenu-generic-expression): Doc change.
12929 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
12930 is used.
12931
12932 (sql-informix): Added command line parameter "-" to force
12933 sql-informix-program to use stdout.
12934
12935 2000-06-25 Eli Zaretskii <eliz@is.elta.co.il>
12936
12937 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
12938 (cp864-decode-table): Doc fix.
12939 (cp720-decode-table): New variable, supports the Arabic OEM
12940 codepage used by Windows.
12941 (cp737-decode-table): New, Greek OEM codepage used by Windows.
12942
12943 2000-06-23 Dave Love <fx@gnu.org>
12944
12945 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
12946 (font-lock-fontify-anchored-keywords): Use
12947 line-beginning-position.
12948 (global-font-lock-mode): Use mapc.
12949
12950 2000-06-23 Stefan Monnier <monnier@cs.yale.edu>
12951
12952 * eshell/esh-module.el: Require CL when compiling.
12953
12954 2000-06-23 Gerd Moellmann <gerd@gnu.org>
12955
12956 * comint.el (comint-substitute-in-file-name): Call replace-match
12957 with second and third arg t.
12958
12959 * cus-edit.el (custom-button-face, custom-button-pressed-face):
12960 Specify foreground color.
12961
12962 * faces.el (tool-bar, mode-line, header-line): Specify foreground
12963 color.
12964
12965 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
12966
12967 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
12968 cddr instead of cdddr.
12969
12970 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
12971 instead of copy-list.
12972
12973 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
12974 of copy-list.
12975
12976 * subdirs.el: Add eshell subdirectory.
12977
12978 * eshell: New subdirectory containing the Eshell package.
12979
12980 * pcomplete.el: New file.
12981
12982 2000-06-23 Paul Eggert <eggert@twinsun.com>
12983
12984 * mail/mailpost.el (post-mail-send-it): Make sure file has
12985 proper permissions from birth.
12986
12987 * files.el (basic-save-buffer-2): When temporarily setting
12988 file modes, set them to current modes plus 0200, not to 0777.
12989
12990 * emerge.el (emerge-make-temp-file): Make sure file has proper
12991 permissions from birth.
12992
12993 2000-06-22 Eli Zaretskii <eliz@is.elta.co.il>
12994
12995 * files.el (make-backup-file-name-1): On DOS/Windows, run the
12996 backup file name through convert-standard-filename.
12997
12998 * dos-fns.el (convert-standard-filename): Convert leading
12999 directories as well. When long file names are supported, convert
13000 characters that are invalid in Windows file names.
13001
13002 2000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13003
13004 * ps-print.el: Fix bug: if ^L is the very first buffer character,
13005 ps-print crashes. New feature: page selection for printing. Create
13006 raw-text-unix coding system for XEmacs. Doc fix.
13007 (ps-print-version): New version number (5.2.3).
13008 (ps-plot-region): Bug fix.
13009 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
13010 (ps-header-sheet, ps-generate, ps-end-job): Code fix.
13011 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
13012 funs.
13013 (ps-selected-pages, ps-last-selected-pages, ps-first-page)
13014 (ps-last-page): New vars.
13015
13016 2000-06-21 Gerd Moellmann <gerd@gnu.org>
13017
13018 * progmodes/sh-script.el (sh-while-getopts): Fix handling of
13019 empty option string.
13020
13021 2000-06-21 Eli Zaretskii <eliz@is.elta.co.il>
13022
13023 * man.el (man): Doc fix.
13024
13025 2000-06-21 Kenichi Handa <handa@etl.go.jp>
13026
13027 * international/mule-cmds.el (set-language-info-alist): Docstring
13028 fixed.
13029
13030 2000-06-20 Gerd Moellmann <gerd@gnu.org>
13031
13032 * version.el (emacs-version): Use ISO date format.
13033
13034 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
13035 instead of `M-backspace'.
13036
13037 * simple.el (turn-off-auto-fill): New function.
13038
13039 2000-06-20 Stefan Monnier <monnier@cs.yale.edu>
13040
13041 * jit-lock.el (with-buffer-prepared-for-jit-lock):
13042 Renamed from with-buffer-prepared-for-font-lock and use
13043 inhibit-modification-hooks rather than setting *-change-functions.
13044 Update all functions to use the new name.
13045 (jit-lock-first-unfontify-pos): New semantics (and doc).
13046 (jit-lock-mode): Make non-interactive.
13047 Don't automatically turn on font-lock.
13048 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
13049 Always use jit-lock-after-change.
13050 Remove and restore font-lock-after-change-function.
13051 (turn-on-jit-lock, jit-lock-after-fontify-buffer)
13052 (jit-lock-after-unfontify-buffer): Remove.
13053 (jit-lock-stealth-fontify):
13054 Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
13055 (jit-lock-after-change): Set the `fontified' text-prop to nil.
13056
13057 2000-06-20 Sam Steingold <sds@gnu.org>
13058
13059 * emacs-lisp/cl-indent.el (toplevel): Indent
13060 `print-unreadable-object' properly. Untabify.
13061
13062 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
13063
13064 * textmodes/reftex.el (reftex-find-citation-regexp-format):
13065 Support for bibentry.
13066 (reftex-compile-variables): Fixed problem with end of section-re.
13067
13068 * texmodes/reftex-dcr.el (reftex-view-crossref,
13069 reftex-view-crossref-from-bibtex):
13070 Deal with changed `reftex-find-citation-regexp-format'.
13071 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
13072 Replaced `remprop' with `put'.
13073 (reftex-view-crossref, reftex-view-crossref-when-idle):
13074 Support for bibentry.
13075
13076 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
13077 New entry for bibentry package.
13078
13079 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
13080 Regexp also matches "\nobibliography".
13081
13082 * textmodes/reftex-global.el (reftex-renumber-simple-labels):
13083 Call `reftex-ensure-write-access' before doing anything.
13084 (reftex-ensure-write-access): New function.
13085
13086 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
13087
13088 * progmodes/idlwave.el: File re-installed (update to version 4.2)
13089
13090 * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
13091
13092 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
13093
13094 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
13095
13096
13097 2000-06-20 Dave Love <fx@gnu.org>
13098
13099 * faces.el (frame-background-mode): Use set-default, not set, in
13100 setter.
13101 (frame-update-faces, frame-update-face-colors): Define with
13102 defalias.
13103
13104 * enriched.el (enriched-decode-foreground)
13105 (enriched-decode-background): Don't use internal-find-face.
13106
13107 * apropos.el: Doc fixes.
13108
13109 * cus-edit.el (customize-changed-options): Check arg.
13110 (customize-version-lessp): Don't require decimal point.
13111
13112 * custom.el (defcustom, defgroup): Doc fix.
13113
13114 * newcomment.el (comment) <defgroup>: Add :version.
13115 (comment-multi-line): Doc fix.
13116
13117 * emulation/mlsupport.el (define-hooked-local-abbrev,
13118 define-hooked-global-abbrev): Fix, using define-abbrev.
13119
13120 2000-06-19 Gerd Moellmann <gerd@gnu.org>
13121
13122 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
13123 the whole buffer.
13124
13125 2000-06-19 Dave Love <fx@gnu.org>
13126
13127 * menu-bar.el (menu-bar-options-save): New function.
13128 (menu-bar-options-menu): Use it.
13129 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
13130 Simplify.
13131
13132 2000-06-19 Andreas Schwab <schwab@suse.de>
13133
13134 * progmodes/etags.el (tags-query-replace): Put new parameters
13135 START and END at the end, for backward compatibility.
13136
13137 2000-06-19 Kenichi Handa <handa@etl.go.jp>
13138
13139 * international/codepage.el:
13140 (cp-coding-system-for-codepage-1): Delete special codes for
13141 generating xxx-dos coding system because now a CCL based coding
13142 system can handle EOL conversion by default.
13143
13144 * international/mule.el (make-coding-system): Generate subsidiary
13145 coding systems for EOL handling variants even for a CCL based
13146 coding system.
13147
13148 2000-06-19 Kenichi Handa <handa@etl.go.jp>
13149
13150 * international/isearch-x.el (isearch-minibuffer-input-method)
13151 (isearch-minibuffer-input-method-function): These variables
13152 deleted.
13153 (isearch-with-input-method): Don't use the above variables.
13154 (isearch-process-search-multibyte-characters): Likewise. Call
13155 read-string with the arg INHERIT-INPUT-METHOD t.
13156
13157 2000-06-17 Stefan Monnier <monnier@cs.yale.edu>
13158
13159 * font-lock.el (font-lock-after-fontify-buffer)
13160 (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
13161
13162 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
13163 Use consistent make-local-variable style for font-lock-fontified.
13164 (jit-lock-fontify-buffer):
13165 Don't bother checking for font-lock-mode and jit-lock-mode.
13166
13167 * time.el: Remove trailing ^M that prevent CVS-merging.
13168
13169 2000-06-16 Gerd Moellmann <gerd@gnu.org>
13170
13171 * Makefile.in (distclean): New target.
13172
13173 2000-06-16 Stefan Monnier <monnier@cs.yale.edu>
13174
13175 * Makefile.in (srcdir): Define for update-subdirs.
13176
13177 2000-06-16 Gerd Moellmann <gerd@gnu.org>
13178
13179 * find-lisp.el: New file.
13180
13181 2000-06-16 Andrew Innes <andrewi@gnu.org>
13182
13183 * time.el (display-time-mail-function): New variable, to allow
13184 external packages to indicate when new mail is available.
13185 (display-time-update): Use it.
13186
13187 2000-06-16 Kenichi Handa <handa@etl.go.jp>
13188
13189 * international/mule.el (mule-version): Change version name to
13190 SAKAKI. AOI has already been used by Meadow.
13191
13192 * international/quail.el (quail-show-guidance-buf): To find the
13193 bottom window (but minibuffer), pay attention to the height of
13194 minibuffer.
13195
13196 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
13197
13198 * arc-mode.el (archive-mode-map): Use the new menu-item format for
13199 menu-bar menus. Add help strings. Don't remove the Edit menu
13200 from the menu bar, as the menu bar has enough space now.
13201
13202 * Makefile.in (SHELL): Make sure /bin/sh is used.
13203
13204 * woman.el (woman-man-buffer): Fix bold and underlined CJK
13205 characters, which use series of two ^H characters instead of one.
13206
13207 2000-06-15 Gerd Moellmann <gerd@gnu.org>
13208
13209 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
13210 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
13211 functions.
13212 (Info-find-node-2): Try a case-sensitive search first, then
13213 do a case-insensitive search.
13214
13215 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
13216 tutorials.
13217
13218 * complete.el (PC-env-vars-alist): New variable.
13219 (PC-complete-as-file-name): New function.
13220 (partial-completion-mode): Initialize PC-env-vars-alist from
13221 process-environment.
13222 (PC-do-completion): Handle completion of env vars.
13223
13224 * info.el (Info-set-mode-line): Show file name in mode line,
13225 use `*Info*' instead of `Info:'.
13226
13227 * startup.el (command-line-1): Change copyright messages to year
13228 2000.
13229
13230 2000-06-15 Dave Love <fx@gnu.org>
13231
13232 * net/goto-addr.el (goto-address-fontify): Use keymap property,
13233 not local-map.
13234
13235 2000-06-15 Kenichi Handa <handa@etl.go.jp>
13236
13237 * international/mule.el (set-buffer-file-coding-system): Almost
13238 rewritten to handle `undecided' as no-op.
13239
13240 2000-06-14 Gerd Moellmann <gerd@gnu.org>
13241
13242 * Makefile.in: New file.
13243
13244 * Makefile: Removed.
13245
13246 * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
13247 (goto-address-highlight-keymap): Bind C-c RET.
13248
13249 2000-06-14 Kenichi Handa <handa@etl.go.jp>
13250
13251 * mail/sendmail.el (sendmail-send-it): The temporary buffer
13252 inherits buffer-file-coding-system of the current buffer.
13253
13254 * tar-mode.el (tar-extract): For goto-char, use (point-min), not
13255 0. Give correct argument to set-auto-coding-function.
13256 (tar-expunge): For goto-char, use (point-min), not 0.
13257 (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
13258 (tar-subfile-save-buffer): Likewize.
13259
13260 * international/mule.el
13261 (after-insert-file-set-buffer-file-coding-system): Call
13262 set-buffer-file-coding-system with the arg FORCE t.
13263
13264 2000-06-13 Gerd Moellmann <gerd@gnu.org>
13265
13266 * mail/sendmail.el (mail-specify-envelope-from): Initialize to
13267 nil. Contemporary sendmails issue an X-Authentication-Warning if
13268 the sender is set with `-f'.
13269
13270 2000-06-13 Dave Love <fx@gnu.org>
13271
13272 * help.el (describe-function-1): Kluge around cases of functions
13273 fset to subrs whose doc doesn't match their symbol-name.
13274
13275 * image.el (insert-image): Default STRING to a space.
13276
13277 * info.el Doc fixes.
13278 (Info-build-node-completions): Match Ref tags.
13279
13280 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
13281
13282 * frame.el (display-multi-frame-p, display-multi-font-p): New
13283 defaliases for display-graphic-p.
13284
13285 * hl-line.el: Fixed a typo in commentary.
13286
13287 2000-06-13 Kenichi Handa <handa@etl.go.jp>
13288
13289 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
13290 fixed.
13291
13292 2000-06-12 Dave Love <fx@gnu.org>
13293
13294 * image.el (insert-image): Save a little consing.
13295
13296 2000-06-12 Kenichi Handa <handa@etl.go.jp>
13297
13298 * language/tibet-util.el: Convert all tibetan-1-column characters
13299 to the corresponding tibetan characters.
13300 (tibetan-add-components): Delete code for the special treatment of
13301 'a chung.
13302
13303 * language/tibetan.el (tibetan-composable-pattern): Fix previous
13304 change.
13305 (tibetan-vowel-transcription-alist): More rules added.
13306 (tibetan-composite-vowel-alist): New variable.
13307 (tibetan-precomposition-rule-alist): More rules added.
13308
13309 2000-06-12 Stefan Monnier <monnier@cs.yale.edu>
13310
13311 * startup.el (command-line): Only call menu-bar-mode if interactive.
13312
13313 * thingatpt.el (toplevel symbol-properties):
13314 * textmodes/makeinfo.el (makeinfo-compile):
13315 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
13316 * progmodes/hideif.el (hif-compress-define-list)
13317 (hide-ifdef-use-define-alist):
13318 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
13319 (ange-ftp-vms-add-file-entry):
13320 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
13321 * man.el (Man-build-man-command):
13322 * mail/rnewspost.el (news-reply-header-hook):
13323 * info.el (Info-insert-dir):
13324 * emulation/mlconvert.el (backward-word, forward-word, setq):
13325 * emacs-lisp/gulp.el (gulp-send-requests):
13326 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
13327 (byte-optimize-inline-handler, byte-optimize-form-code-walker)
13328 (byte-optimize-apply, end of file):
13329 * emacs-lisp/advice.el (ad-advice-class-completion-table)
13330 (ad-make-freeze-definition):
13331 * startup.el (command-line, command-line-1): Don't quote lambdas.
13332
13333 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
13334 (cvs-cleanup-removed): New function.
13335 (cvs-cleanup-functions): New var.
13336 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
13337 some flexibility in specifying additional entries to auto-cleanup.
13338 (cvs-quickdir): New function.
13339 (cvs-mode-insert): Use cvs-fileinfo-from-entries.
13340 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
13341 (cvs-mode-find-file): Check that we are on a filename or dirname
13342 when invoked through a mouse-click.
13343 (cvs-full-path): Remove.
13344 (cvs-dired-action): Re-introduced.
13345 (cvs-dired-noselect): Use it.
13346 (vc-post-command-functions): use this new hook if available.
13347
13348 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
13349 (cvs-status-map): Don't inherit from cvs-mode-map anymore.
13350 (cvs-filename-map, cvs-dirname-map): Remove.
13351 (cvs-default-action): Remove.
13352 (cvs-add-face): Use `keymap' rather than `local-map' property, and only
13353 if the arg is really a keymap.
13354 (cvs-fileinfo-pp): Don't use any special map for file and dir names.
13355 Don't hardcode the mapping from state (aka type) to face, but check
13356 the var cvs-fi-<type>-face instead.
13357 (cvs-fileinfo-from-entries): New function.
13358
13359 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
13360 Docstring fix.
13361 (cvs-find-file-and-jump): Change default to be safer.
13362 (cvs-mode-diff-map): Define it as a function as well.
13363 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
13364 Bind mouse-2 in this global map rather than with text-properties.
13365
13366 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
13367 file to resolve the ambiguity between C(conflict) and C(need-merge).
13368
13369 2000-06-12 Kenichi Handa <handa@etl.go.jp>
13370
13371 * international/mule.el (set-buffer-file-coding-system): If
13372 CODING-SYSTEM is nil, set buffer-file-coding-system to nil
13373 unconditionally.
13374
13375 2000-06-12 Dave Love <fx@gnu.org>
13376
13377 * wid-edit.el (widget-specify-button): Really suppress the face if
13378 required.
13379
13380 2000-06-11 Gerd Moellmann <gerd@gnu.org>
13381
13382 * term/x-win.el (x-colors): Add colors from recent rgb.txt.
13383
13384 2000-06-11 Stefan Monnier <monnier@cs.yale.edu>
13385
13386 * imenu.el (imenu-generic-expression): Docstring fix.
13387
13388 * composite.el (composition-function-table): Move the `put'
13389 below the autoload cookie so we can load the file before loaddefs.
13390
13391 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
13392
13393 * emacs-lisp/autoload.el (make-autoload): Use `cond'.
13394 Handle easy-mmode-define-global-mode.
13395 For complex macros like define-minor-mode that can generate
13396 several autoload entries, try to autoload entries in the
13397 macroexpanded code.
13398
13399 * emacs-lisp/easy-mmode.el (define-minor-mode):
13400 If KEYMAP is a symbol, just use it.
13401 Use byte-compile-current-file and load-file-name to infer the
13402 proper :require to pass to defcustom.
13403 Wrap the hook var into `progn' so as not to autoload it.
13404 Add a :autoload-end cookie.
13405 Be more careful about the evaluation of KEYMAP.
13406 (easy-mmode-define-global-mode): Add a :autoload-end cookie.
13407 (define-derived-mode): Move define-abbrev-table outside of defvar.
13408
13409 2000-06-10 Stefan Monnier <monnier@cs.yale.edu>
13410
13411 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
13412 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
13413 (backup-compiled-files): Ignore errors during `tar'.
13414 (bootstrap): Make autoloads before elc files.
13415
13416 2000-06-10 Kenichi Handa <handa@etl.go.jp>
13417
13418 * international/mule.el (set-buffer-file-coding-system): If one of
13419 undecided-XXX is specified, change only EOL conversion.
13420
13421 * international/mule-conf.el (unix): New alias for the coding
13422 system undecided-unix.
13423
13424 2000-06-09 Dave Love <fx@gnu.org>
13425
13426 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
13427
13428 * progmodes/executable.el: Byte compile dynamic.
13429 (executable-insert): Change custom type.
13430 (executable-find): Add autoload cookie.
13431 (executable-make-buffer-file-executable-if-script-p): New
13432 function. After Noah Friedman.
13433
13434 * files.el (after-save-hook): Customize, with
13435 executable-make-buffer-file-executable-if-script-p as an option.
13436
13437 2000-06-09 Kenichi Handa <handa@etl.go.jp>
13438
13439 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
13440 "tib24p-mule.bdf" for Tibetan.
13441
13442 * composite.el (decompose-composite-char): Declare it as obsolete.
13443
13444 * man.el (Man-fontify-manpage): Pay attention to underline and
13445 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
13446
13447 2000-06-08 Gerd Moellmann <gerd@gnu.org>
13448
13449 * thingatpt.el (forward-thing): Use functionp instead of fboundp.
13450 Set maintainer to FSF since author isn't reachable.
13451
13452 2000-06-08 Dave Love <fx@gnu.org>
13453
13454 * international/mule-cmds.el (select-safe-coding-system): If
13455 DEFAULT-CODING-SYSTEM is not specified, also check the most
13456 preferred coding-system if buffer-file-coding-system is
13457 `undecided'. From Handa.
13458
13459 2000-06-08 Kenichi Handa <handa@etl.go.jp>
13460
13461 * international/mule.el
13462 (after-insert-file-set-buffer-file-coding-system): If the buffer
13463 size is greater than INSERTED, judget that we are not visiting.
13464
13465 2000-06-07 Rajesh Vaidheeswarran <rv@gnu.org>
13466
13467 * whitespace.el (defgroup whitespace): Comment out `:version'.
13468 XEmacs 20.4 has problems defining the group with this present.
13469 We'll have this commented out till get resolve the problem.
13470
13471 2000-06-07 John Wiegley <johnw@gnu.org>
13472
13473 * align.el (align-dq-string-modes, align-sq-string-modes)
13474 (align-open-comment-modes): Add pyhton-mode.
13475 (align-rules-list): Use get-text-property instead of
13476 text-properties-at.
13477 (align-rules-list): Add python-assignment.
13478 (align-rules-list): Change perl-comma-delimiter to
13479 basic-comma-delimiter. Use if for Perl modes and python-mode.
13480 (align-rules-list): Add python-chain-logic and
13481 basic-line-continuation.
13482
13483 2000-06-07 Jari Aalto <jari.aalto@poboxes.com>
13484
13485 * apropos.el (apropos-mode-hook): New user variable.
13486 (apropos-mode): Run apropos-mode-hook.
13487
13488 2000-06-07 David Ponce <david@dponce.com>
13489
13490 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
13491 commands. Require `wid-edit' at run-time.
13492
13493 2000-06-07 David Ponce <david@dponce.com>
13494
13495 * recentf.el: Added some "Commentary".
13496 (recentf-open-more-files, recentf-edit-list): Minor changes to
13497 move the point at the top of the file list. This behaviour is
13498 consistent with the menu one when the list contains a lot of
13499 files.
13500 (recentf-cleanup): Now displays the number of items removed from
13501 the list.
13502 (recentf-relative-filter) New menu filter to show filenames
13503 relative to `default-directory'.
13504
13505 2000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13506
13507 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size
13508 with/without giving an error if PostScript printer doesn't have this
13509 kind of page size. Zebra Stripe continues or restarts on next page.
13510 Manual/automatic paper feeding. Switch or not the header.
13511 (ps-print-version): New version number (5.2.2).
13512 (ps-windows-system): Include emx as a Windows system.
13513 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
13514 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
13515 (ps-background-text): Code fix.
13516 (ps-error-handler-message, ps-user-defined-prologue)
13517 (ps-print-prologue-header, ps-printer-name)
13518 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
13519 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
13520 (ps-use-face-background): Customization fix.
13521 (ps-n-up-database): Data fix.
13522 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
13523 (ps-switch-header): New vars.
13524 (ps-xemacs-color-name, ps-face-foreground-name)
13525 (ps-face-background-name, ps-boolean-constant): New funs.
13526
13527 2000-06-07 Dave Love <fx@gnu.org>
13528
13529 * allout.el: New version from Manheimer.
13530
13531 2000-06-07 Kenichi Handa <handa@etl.go.jp>
13532
13533 * textmodes/fill.el (fill-find-break-point): Check the validity of
13534 charset.
13535
13536 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
13537
13538 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
13539 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
13540 Call display-color-p and display-mouse-p instead of looking at
13541 window-system.
13542
13543 2000-06-06 Dave Love <fx@gnu.org>
13544
13545 * image.el (find-image): Doc fix. Return nil if image not found.
13546 (put-image, insert-image): Make STRING arg optional.
13547
13548 2000-06-06 Kenichi Handa <handa@etl.go.jp>
13549
13550 * language/vietnamese.el: Remove eval-when-compile.
13551 (viet-viscii-nonascii-translation-table): Define it as a
13552 translation table made from viet-viscii-decode-table.
13553 (viet-viscii-encode-table): Define it as a translation table made
13554 from the reverse map of above.
13555 (viet-vscii-nonascii-translation-table): Define it as a
13556 translation table made from viet-vscii-decode-table.
13557 (viet-vscii-encode-table): Define it as a translation table made
13558 from the reverse map of above.
13559 (ccl-decode-viscii): Use translate-character.
13560 (ccl-encode-viscii, ccl-encode-viscii-font)
13561 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
13562 Likewize.
13563
13564 * language/cyrillic.el: Remove eval-when-compile.
13565 (cyrillic-koi8-r-nonascii-translation-table): Define it as a
13566 translation table made from cyrillic-koi8-r-decode-table.
13567 (cyrillic-koi8-r-encode-table): Define it as a translation table
13568 made from the reverse map of above.
13569 (ccl-decode-koi8): Use translate-character.
13570 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
13571 (cyrillic-alternativnyj-nonascii-translation-table): Define it as
13572 a translation table made from cyrillic-alternativnyj-decode-table.
13573 (cyrillic-alternativnyj-encode-table): Define it as a translation
13574 table made from the reverse map of above.
13575 (ccl-decode-alternativnyj): Use translate-character.
13576 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
13577 Likewize
13578
13579 * international/mule-diag.el (non-iso-charset-alist): Specify
13580 translation table symbol instead of translation table itself.
13581 (list-block-of-chars): CHARSET may be a translation table symbol.
13582
13583 * international/mule.el (make-coding-system): If CODING-SYSTEM
13584 already exists, override it.
13585
13586 * international/fontset.el: Use family `proportional' for Tibetan
13587 fonts.
13588
13589 * international/ccl.el (ccl-compile-translate-character): Don't
13590 check if Rrr has property translation-table.
13591 (ccl-compile-map-multiple): Modified to avoid compiler warning.
13592
13593 2000-06-05 Gerd Moellmann <gerd@gnu.org>
13594
13595 * info.el: Bind case-fold-search to t when searching in case
13596 a user sets it to nil in a hook.
13597
13598 2000-06-05 Stefan Monnier <monnier@cs.yale.edu>
13599
13600 * autoarg.el (autoarg-mode, autoarg-kp-mode):
13601 * hl-line.el (hl-line-mode): Use the new :global key argument.
13602
13603 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
13604 (tar-clip-time-string): Prepend a space.
13605 (tar-grind-file-mode): Construct a string rather than modifying one.
13606 (tar-header-block-summarize): Fix docstring.
13607 Use `format' rather than an error-prone set of copy-loops.
13608
13609 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
13610 (diff-goto-source, diff-unified->context, diff-context->unified)
13611 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
13612 understand the format output by the `-p' argument to diff.
13613
13614 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
13615 (sh-re-done): Use defconst.
13616 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
13617 (sh-help-string-for-variable, sh-guess-basic-offset):
13618 Don't quote lambdas.
13619 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
13620 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
13621
13622 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
13623 (mh-letter-mode): Derive from text-mode.
13624 This implicitly means that it now calls kill-all-local-variables.
13625 Also remove the Emacs-18 compatibility code.
13626
13627 * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
13628 Make use of symbol-property doc-string-elt.
13629 Use memq rather than a sequence of eq.
13630 (doc-string-elt): Fix the wrong or missing previously unused values.
13631 (autoload-print-form): New function extracted from
13632 generate-file-autoloads to allow recursion when handling progn
13633 so that defvar's and defun's docstrings are properly printed.
13634 (generate-file-autoloads): Use it.
13635
13636 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
13637 Use find-file-hooks in the minor-mode function.
13638 Be careful not to loop indefinitely in the post-command-hook function.
13639
13640 2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
13641
13642 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
13643 tty's.
13644 * ediff-diff.el (ediff-exec-process): Use --binary for fine
13645 differences whenever appropriate.
13646 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
13647 * viper.el (find-file, find-file-other-window): Get viper to do
13648 wildcards.
13649
13650 2000-06-04 Stefan Monnier <monnier@cs.yale.edu>
13651
13652 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
13653 (jit-lock-fontify-buffer): New function for JIT refontification.
13654 (jit-lock-mode): Fix docstring.
13655 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
13656 Remove jit-lock-after-change from the _local_ hook.
13657 (jit-lock-function-1): Fix docstring.
13658
13659 * info.el (Info-on-current-buffer): Initialize info.
13660
13661 * newcomment.el (comment-indent): Ignore comment-indent-hook.
13662
13663 * progmodes/tcl.el (tcl-indent-for-comment):
13664 Ignore comment-indent-hook.
13665
13666 * emacs-lisp/easy-mmode.el: Require CL during compilation.
13667 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
13668 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
13669 and improve to use the lighter to guess the capitalization.
13670 (define-minor-mode): Inline code from easy-mmode-define-toggle.
13671 Add keyword arguments to specify global-ness or the custom group.
13672 Add local-map and help-echo properties to the lighter.
13673 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
13674 (easy-mmode-define-global-mode): New macro.
13675
13676 2000-06-02 Dave Love <fx@gnu.org>
13677
13678 * wid-edit.el: byte-compile-dynamic since we typically don't use
13679 all the widgets. Don't require cl or widget. Remove
13680 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
13681 (widget-read-event): Removed. Callers changed to use read-event.
13682 (widget-button-release-event-p): Renamed from
13683 button-release-event-p.
13684 (widget-field-add-space, widget-field-use-before-change):
13685 Uncustomize.
13686 (widget-specify-field): Use keymap property, not local-map.
13687 (widget-specify-button): Obey :suppress-face.
13688 (widget-specify-insert): Use modern backquote syntax.
13689 (widget-image-directory): Renamed from widget-glyph-directory.
13690 (widget-image-enable): Renamed from widget-glyph-enable.
13691 (widget-image-find): Replaces widget-glyph-find.
13692 (widget-button-pressed-face): Move defvar.
13693 (widget-image-insert): Replaces widget-glyph-insert.
13694 (widget-convert): Use keywordp.
13695 (widget-leave-text, widget-children-value-delete): Use mapc.
13696 (widget-keymap): Remove XEmacs stuff.
13697 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
13698 (widget-button-click): Don't set point at the click, but re-centre
13699 if we scroll out of window. Rewritten for images v. glyphs &c.
13700 (widget-tabable-at): Use POS arg, not point.
13701 (widget-beginning-of-line, widget-end-of-line)
13702 (widget-item-value-create, widget-sublist, widget-princ-to-string)
13703 (widget-sexp-prompt-value, widget-echo-help): Simplify.
13704 (widget-default-create): Use widget-image-insert; some rewriting.
13705 (widget-visibility-value-create)
13706 (widget-push-button-value-create, widget-toggle-value-create): Use
13707 widget-image-insert.
13708 (checkbox): Create on and off images dynamically.
13709 (documentation-link): Change :help-echo.
13710 (widget-documentation-link-echo-help): Remove.
13711
13712 2000-06-02 Stefan Monnier <monnier@cs.yale.edu>
13713
13714 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
13715
13716 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
13717 (easy-mmode-define-toggle, define-minor-mode): Use it.
13718 (easy-mmode-define-keymap): Docstring fix.
13719 (define-derived-mode): Default PARENT to fundamental-mode.
13720 Add the derived-mode-parent symbol-property.
13721 (easy-mmode-derived-mode-p): New function.
13722
13723 2000-06-02 Dave Love <fx@gnu.org>
13724
13725 * files.el (convert-standard-filename): Doc fix.
13726 (normal-backup-enable-predicate): New function.
13727 (backup-enable-predicate): Use it to replace the lambda form.
13728
13729 * calendar/todo-mode.el: [This needs more work on the outline
13730 stuff.] Doc fixes.
13731 (todo) <defgroup>: Add :version.
13732 (todo-add-category): Don't use pushnew.
13733 (todo-cmd-raise): Fix typo.
13734 (todo-top-priorities): Change temp buffer name.
13735 (todo-category-alist): Avoid redundant lambda.
13736 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
13737 Use outline-next-heading.
13738
13739 * autoarg.el: Rewritten to use define-minor-mode.
13740 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
13741 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
13742
13743 2000-06-02 Kenichi Handa <handa@etl.go.jp>
13744
13745 * isearch.el (isearch-other-meta-char): Fix previous change.
13746
13747 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
13748
13749 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
13750 (log-edit-done): Only add the comment to the ring if it's different
13751 from the last comment entered.
13752
13753 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
13754
13755 2000-06-01 Dave Love <fx@gnu.org>
13756
13757 * hl-line.el: Rewritten using define-minor-mode.
13758
13759 * help.el (describe-function-1): Distinguish special form from
13760 builtin function. Sanity-check presence of arglist for builtins.
13761
13762 2000-06-01 Kenichi Handa <handa@etl.go.jp>
13763
13764 * international/characters.el: Fix syntax/category setting of
13765 Tibetan characters.
13766
13767 * language/tibet-util.el (tibetan-add-components): Fixes for new
13768 encoding of Tibetan characters.
13769 (tibetan-decompose-precomposition-alist): New variable.
13770 (tibetan-decompose-region): Convert precomposed characters to
13771 non-precomposed characters.
13772 (tibetan-decompose-string): Likewise.
13773 (tibetan-composition-function): Fix args to
13774 thibetan-compose-string.
13775
13776 * language/tibetan.el (tibetan-composable-pattern): More
13777 characters included.
13778 (tibetan-consonant-transcription-alist): Rule for "R" added.
13779 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
13780 "+R" added.
13781 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
13782
13783 * language/lao-util.el (lao-composition-function): Fix args to
13784 compose-string.
13785
13786 * language/thai-util.el (thai-composition-function): Fix args to
13787 compose-string.
13788
13789 * isearch.el (isearch-update): Set disable-point-adjustment to t
13790 to prevent the point moving to the end of a composition when a
13791 part of a composition is searched.
13792 (isearch-other-meta-char): If the key invoking this command can be
13793 mapped by function-key-map to a printing char, call
13794 isearch-process-search-char directly.
13795
13796 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
13797
13798 * emacs-lisp/bytecomp.el:
13799 * frame.el:
13800 * international/mule-cmds.el:
13801 * international/mule-util.el:
13802 * international/mule.el:
13803 * mouse.el:
13804 * subr.el:
13805 * faces.el: Update calls to make-obsolete with a WHEN argument.
13806
13807 * byte-run.el (make-obsolete, make-obsolete-variable):
13808 Add an optional WHEN argument and change the format of the
13809 symbol-property information.
13810 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
13811 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
13812 new obsolete-symbol-property format and print WHEN if it is provided.
13813
13814 2000-05-31 Dave Love <fx@gnu.org>
13815
13816 * loadhist.el (loadhist-hook-functions): Remove
13817 before-change-function, after-change-function.
13818 (unload-feature): Deal with symbols which are both bound and
13819 fbound.
13820
13821 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
13822 before-change-function, after-change-function.
13823
13824 * simple.el (newline): Don't bind before-change-function,
13825 after-change-function.
13826
13827 2000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
13828
13829 * whitespace.el (whitespace-rescan-timer-time): Update interval
13830 set to 600 seconds (10 minutes) instead of 60 seconds since
13831 a large number of whitespace buffers causes emacs to `freeze'
13832 for a considerable amount of time.
13833
13834 * whitespace.el: Updated email address
13835
13836 2000-05-31 Dave Love <fx@gnu.org>
13837
13838 * add-log.el (change-log-font-lock-keywords) <function>: Add
13839 pattern for function of change.
13840 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
13841 acknowledgements patterns.
13842
13843 2000-05-31 Kenichi Handa <handa@etl.go.jp>
13844
13845 * isearch.el (isearch-printing-char): If keyboard coding system is
13846 being used, call isearch-process-search-multibyte-characters.
13847
13848 * international/isearch-x.el: Mostly rewritten.
13849
13850 * international/quail.el (quail-start-conversion): Don't include
13851 unhandled events in the returned events, but set them in
13852 unread-command-events. Exit if all inputs are deleted.
13853
13854 2000-05-30 Jason Rumney <jasonr@gnu.org>
13855
13856 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
13857
13858 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
13859 Reenable code to create initial fontsets.
13860 Use set-fontset-font in place of put-charset-property.
13861
13862 2000-05-30 Gerd Moellmann <gerd@gnu.org>
13863
13864 * progmodes/perl-mode.el (perl-indent-line): When looking for a
13865 label, ensure that the first colon isn't followed by another.
13866
13867 * paths.el (Info-default-directory-list): Doc fix.
13868
13869 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
13870 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
13871 send a query containing USER only, not USER@HOST.
13872
13873 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
13874 and rmail-msgend to compute the restriction at the end, instead of
13875 computing it.
13876
13877 2000-05-29 Gerd Moellmann <gerd@gnu.org>
13878
13879 * dabbrev.el (dabbrev-expand): Don't display messages in the
13880 echo area if the minibuffer window is active.
13881
13882 * jit-lock.el (jit-lock-mode): Add after change function to
13883 local hook.
13884
13885 2000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
13886
13887 * antlr-mode.el: New commands: hide/unhide actions,
13888 upcase/downcase literals.
13889 (antlr-tiny-action-length): New user option.
13890 (antlr-hide-actions): New command. Suggested by
13891 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
13892 (antlr-mode-map): New binding [C-c C-v].
13893 (antlr-mode-menu): New entries.
13894 (antlr-downcase-literals): New command.
13895 (antlr-upcase-literals): Ditto.
13896
13897 * antlr-mode.el: Minor changes: indendation, mode-name.
13898 (antlr-indent-line): Indent cpp directive at column 0.
13899 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
13900
13901 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
13902 (antlr-font-lock-additional-keywords): Workaround for intentional
13903 bug in XEmacs version of font-lock.
13904 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
13905 be used by a smarter version of `buffers-menu-grouping-function'.
13906
13907 2000-05-29 Gerd Moellmann <gerd@gnu.org>
13908
13909 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
13910 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
13911
13912 2000-05-29 Kenichi Handa <handa@etl.go.jp>
13913
13914 * international/encoded-kb.el
13915 (encoded-kbd-iso2022-designation-map): Pay attention to that
13916 charset-iso-final-char return -1 for eight-bit-control and
13917 eight-bit-graphic.
13918
13919 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
13920
13921 * speedbar.el (speedbar-use-images, speedbar-update-flag)
13922 (speedbar-easymenu-definition-base): Use display-graphic-p where
13923 available, instead of window-system.
13924
13925 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
13926
13927 * international/codepage.el (cp-coding-system-for-codepage-1): Add
13928 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
13929 coding systems.
13930
13931 2000-05-26 Dave Love <fx@gnu.org>
13932
13933 * disp-table.el (standard-display-underline): Don't use
13934 internal-find-face.
13935
13936 * mail/reporter.el: Maintainer change. Doc fixes.
13937 (reporter-version): Deleted.
13938
13939 * emacs-lisp/elp.el: Maintainer change.
13940 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
13941
13942 2000-05-26 Stefan Monnier <monnier@cs.yale.edu>
13943
13944 * add-log.el (add-change-log-entry): Merge the current entry with the
13945 previous one if the previous one is empty.
13946
13947 2000-05-26 Dave Love <fx@gnu.org>
13948
13949 * loadhist.el (unload-feature): Fix interactive spec [from
13950 lijnzaad@ebi.ac.uk].
13951
13952 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
13953 subr-arity to check primitives.
13954 (byte-compile-flush-pending, byte-compile-file-form-progn)
13955 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
13956 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
13957 mapcar.
13958
13959 2000-05-26 Kenichi Handa <handa@etl.go.jp>
13960
13961 * international/fontset.el: Set family names of non-latin charsets
13962 in default fontset to "*".
13963
13964 * international/mule-diag.el (print-fontset): Combine family part
13965 and registry part of the fontname by "-*-" instead of "-".
13966
13967 * international/mule-cmds.el (encode-coding-char): Make strings
13968 multibyte before calling encode-coding-string.
13969
13970 2000-05-25 Stefan Monnier <monnier@cs.yale.edu>
13971
13972 * derived.el: Fix keywords.
13973 (define-derived-mode): Only define if needed.
13974
13975 * simple.el (fill-comment, comment-column, comment-start)
13976 (comment-start-skip, comment-end, comment-indent-function)
13977 (block-comment-start, block-comment-end, indent-for-comment)
13978 (set-comment-column, kill-comment, comment-padding, comment-region)
13979 (comment-multi-line, indent-new-comment-line): Remove.
13980
13981 * bindings.el (esc-map): Change ; to comment-dwim and use the new
13982 function names for comment operations.
13983
13984 * newcomment.el: Add abundant autoload cookies.
13985 (comment-style): Don't depend on runtime data at compile-time.
13986 (comment-indent-hook): Remove.
13987 (comment-indent): Check if comment-indent-hook is bound.
13988 (comment-region): Docstring fix.
13989
13990 2000-05-25 Dave Love <fx@gnu.org>
13991
13992 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
13993 byte-code-function-p.
13994
13995 * mail/rmailsum.el: Add provide.
13996
13997 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
13998
13999 * smerge-mode.el (smerge-diff-switches): Don't use list* in
14000 defcustom.
14001
14002 2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
14003
14004 * ediff-diff.el (ediff-exec-process): delete --binary option from
14005 non-buffer ediff jobs.
14006
14007 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
14008
14009 * hilit-chg.el (highlight-changes-mode): Ask about color or
14010 grayscale support, not about window-system.
14011
14012 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
14013 window-system.
14014 (ffap-highlight): Always default to t.
14015
14016 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
14017 display-popup-menus-p instead of looking at window-system.
14018
14019 * disp-table.el (standard-display-g1, standard-display-graphic):
14020 Only refuse to use string glyphs on X and MS-Windows.
14021
14022 * avoid.el: Remove window-system from commentary, suggest to use
14023 display-*-p instead.
14024
14025 * apropos.el (apropos-print): Use display-mouse-p instead of
14026 window-system.
14027
14028 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
14029
14030 * international/codepage.el (cp-decoding-vector-for-codepage):
14031 Fill up unsupported characters with their own codes. From Kenichi
14032 Handa.
14033
14034 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
14035
14036 * international/mule-diag.el (describe-char-after): Use
14037 display-graphic-p instead of window-system, so that this function
14038 works on MS-DOS.
14039
14040 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
14041
14042 * international/codepage.el (cp-make-coding-systems-for-codepage):
14043 Remove the eight-bit-graphic and eight-bit-control charsets from
14044 the list of charsets which we convert into `?'.
14045
14046 2000-05-25 Kenichi Handa <handa@etl.go.jp>
14047
14048 * international/mule-conf.el: Specify CHARSET-ID explicitely for
14049 private charsets.
14050 (mule-unicode-0100-24ff, japanese-jisx0213-1,
14051 japanese-jisx0213-2): New charsets.
14052
14053 * international/fontset.el: Setup default fontset for new charsets.
14054
14055 2000-05-24 Dave Love <fx@gnu.org>
14056
14057 * info.el (Info-find-node-2): Restructure [following "Vadim
14058 S. Solomin" <sovs@uic.nnov.ru>].
14059
14060 * icomplete.el: Fix header for Finder.
14061
14062 2000-05-24 Eric M. Ludlam <zappo@ultranet.com>
14063
14064 * rmailout.el (rmail-output-to-rmail-file): Added optional param
14065 STAY.
14066
14067 * rmail.el (rmail-automatic-folder-directives): New user variable.
14068 (rmail-show-message): Add call to `rmail-auto-file' during
14069 display.
14070 (rmail-auto-file): New function.
14071
14072 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
14073
14074 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
14075 account.
14076 (ediff-test-utility,ediff-diff-mandatory-option)
14077 (ediff-reset-diff-options): Utilities for proper initialization of
14078 ediff-diff-options and ediff-diff3-options on Windows.
14079
14080 * ediff-init.el (ediff-merge-filename-prefix): New customizable
14081 variable.
14082
14083 * ediff-mult.el (ediff-filegroup-action): Use
14084 ediff-merge-filename-prefix.
14085
14086 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
14087
14088 * viper-ex.el (ex-write): Set selective display to nil.
14089
14090 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
14091
14092 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
14093 aliases for hebrew-iso-8bit.
14094
14095 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
14096
14097 * woman.el: New version from Francis J. Wright
14098 <F.J.Wright@Maths.QMW.ac.uk>.
14099 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
14100 names in environment variables regardless of the path separator.
14101 (woman-topic-all-completions-1): Don't call file-name-directory-p
14102 on all files, since woman-file-regexp already filters out any
14103 directories.
14104
14105 2000-05-24 Kenichi Handa <handa@etl.go.jp>
14106
14107 * international/quail.el (quail-start-translation): Don't change
14108 modified-p of the current buffer.
14109 (quail-start-conversion): Likewise.
14110
14111 * international/kkc.el (kkc-region): Don't change modified-p of
14112 the current buffer.
14113
14114 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
14115 conform to RFC1468.
14116 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
14117
14118 2000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
14119
14120 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
14121 (speedbar-insert-button): Invisible text property fix.
14122 (speedbar-directory-plus): Renamed from speedbar-directory-+
14123 (speedbar-directory-minus): Renamed from speedbar-directory--
14124 (speedbar-page-plus): Renamed from speedbar-file-+
14125 (speedbar-page-minus): Renamed from speedbar-file--
14126 (speedbar-page): Renamed from speedbar-file-
14127 (speedbar-tag): Renamed from speedbar-tag-
14128 (speedbar-tag-plus): Renamed from speedbar-tag-+
14129 (speedbar-tag-minus): Renamed from speedbar-tag--
14130 (speedbar-expand-image-button-alist): Use above renames.
14131
14132 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
14133 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
14134 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
14135 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
14136 * sb-pg.xpm: Renamed from sb-file.xpm
14137 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
14138 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
14139
14140 2000-05-24 Kenichi Handa <handa@etl.go.jp>
14141
14142 * international/quail.el (quail-show-guidance-buf): Set
14143 current-input-method of the guidance buffer to the name of the
14144 curren input method.
14145
14146 2000-05-23 Stefan Monnier <monnier@cs.yale.edu>
14147
14148 * progmodes/compile.el (compile-internal): Style typo.
14149
14150 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
14151 quote vars and functions in the docstring.
14152
14153 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
14154
14155 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
14156 Don't quote lambdas.
14157
14158 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
14159
14160 2000-05-23 Gerd Moellmann <gerd@gnu.org>
14161
14162 * startup.el (command-line): Determine source file of compiled
14163 user init file differently. Warn if compiled user init file
14164 is older than its source file.
14165
14166 * ffap.el (ffap-url-regexp): Add `https'.
14167
14168 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
14169
14170 * files.el (make-backup-file-name-1): Replace slashes with `!'
14171 rather than `|' (which is not allowed on Windows). Replace the
14172 drive letters with a string "drive_X".
14173
14174 2000-05-23 Gerd Moellmann <gerd@gnu.org>
14175
14176 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
14177
14178 * files.el (interpreter-mode-alist): Add `bash2'.
14179
14180 2000-05-22 Dave Love <fx@gnu.org>
14181
14182 * loadhist.el (feature-symbols, file-provides, file-requires): Use
14183 mapc.
14184 (feature-file): Avoid calling symbol-name. Doc fix.
14185 (file-set-intersect, file-dependents): Use dolist, not mapcar.
14186 (loadhist-hook-functions): Add mouse-position-function.
14187 (unload-feature): Change uses of mapcar.
14188
14189 * files.el (parse-colon-path): Doc fix.
14190 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
14191 (set-auto-mode): Use mapc.
14192
14193 * complete.el (PC-look-for-include-file): Use :alnum: character
14194 class.
14195 (partial-completion-mode): Add autoload cookie.
14196
14197 2000-05-22 Sam Steingold <sds@gnu.org>
14198
14199 * info.el (Info-fontify-node): Fixed the call to
14200 `add-text-properties' (bug introduced on 2000-05-18).
14201
14202 2000-05-22 Dave Love <fx@gnu.org>
14203
14204 * bindings.el: Remove debug-ignored-errors set in other files.
14205
14206 * progmodes/etags.el: Add to debug-ignored-errors.
14207 (visit-tags-table-buffer): Clear out buffers holding old tables
14208 when making a new list.
14209 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
14210 mapc.
14211
14212 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
14213 quote keywords.
14214 (cmpl-string-case-type): Use character classes.
14215
14216 * comint.el:
14217 * textmodes/ispell.el:
14218 * imenu.el:
14219 * mail/mh-e.el:
14220 * progmodes/compile.el: Add to debug-ignored-errors.
14221
14222 * dabbrev.el: Add to debug-ignored-errors.
14223 (dabbrev-completion): Use mapc.
14224
14225 2000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
14226
14227 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
14228 (woman-mapcan, woman-parse-man.conf)
14229 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
14230 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
14231 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
14232 path syntax better.
14233 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
14234 (woman-manpath): Call woman-parse-man.conf.
14235 (woman-emulation): New defcustom, defaults to nroff.
14236 (woman-font-support): New defconst.
14237 (woman-use-symbol-font): New defcustom.
14238 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
14239 "Emulation".
14240 Many functions: Doc fix.
14241
14242 2000-05-22 Kenichi Handa <handa@etl.go.jp>
14243
14244 * international/quail.el (quail-simple-translation-keymap): Map
14245 128..255 to quail-self-insert-command.
14246 (quail-keyboard-layout-alist): Add definition for "pc102-de".
14247
14248 2000-05-22 Stefan Monnier <monnier@cs.yale.edu>
14249
14250 * help.el (help-manyarg-func-alist): Typo.
14251
14252 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
14253 intervals which makes it heaps simpler.
14254
14255 * newcomment.el (comment-region-internal): Go back to BEG after quoting
14256 the nested comment markers.
14257
14258 * subr.el (remove-hook): Don't turn the hook's value into a list.
14259
14260 2000-05-21 Dave Love <fx@gnu.org>
14261
14262 * edmacro.el (edmacro-parse-keys): Return vector if any elements
14263 are invalid characters.
14264
14265 * international/mule-util.el (detect-coding-with-priority): Use
14266 mapc. Remove redundant lambda.
14267
14268 * international/mule-diag.el (list-non-iso-charset-chars)
14269 (describe-fontset): Remove redundant lambda.
14270
14271 * emulation/crisp.el (brief-mode): New alias.
14272
14273 * emacs-lisp/ring.el (ring-elements): New function.
14274
14275 * emacs-lisp/easymenu.el (easy-menu-create-menu)
14276 (easy-menu-do-add-item): Use keywordp.
14277
14278 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
14279
14280 * replace.el: Doc and error message fixes.
14281 (replace-highlight): Use facep, not internal-find-face.
14282
14283 2000-05-20 Stefan Monnier <monnier@cs.yale.edu>
14284
14285 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
14286
14287 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
14288 (log-edit-insert-changelog): Drop `:' as well.
14289
14290 * log-view.el: Fix file description.
14291 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
14292 available.
14293 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
14294 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
14295
14296 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
14297 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
14298 Print a status message if the toggle is called interactively.
14299 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
14300 for global minor modes and use `defcustom' for them.
14301 Use add-minor-mode.
14302 (easy-mmode-define-derived-mode): Remove.
14303 (define-derived-mode): Fancier default docstring.
14304 (easy-mmode-define-navigation): Signal an error rather than (ding).
14305
14306 * newcomment.el (comment-styles): New `box-multi'.
14307 (comment-normalize-vars): Better default for comment-continue to
14308 avoid whitespace-only continuations.
14309 (comment-search-forward): Always move even in the no-syntax case.
14310 (comment-padright): Only obey N if it's only obeyed for padleft.
14311 (comment-make-extra-lines): Better handling of empty continuations.
14312 Use `=' for the filler if comment-start has only one character.
14313 (uncomment-region): Try handling the special `=' filler.
14314 (comment-region): Allow LINES even if MULTI is nil.
14315 (comment-box): Choose box style based on comment-style.
14316
14317 2000-05-20 Kenichi Handa <handa@etl.go.jp>
14318
14319 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
14320 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
14321
14322 2000-05-20 Kenichi HANDA <handa@etl.go.jp>
14323
14324 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
14325 and insert, not subst-char-in-region.
14326
14327 * international/mule-diag.el (list-character-sets-1): Handle
14328 charsets eight-bit-control and eight-bit-graphic.
14329 (list-iso-charset-chars): Likewise.
14330 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
14331 charactes as is. Use indent-to to align characters.
14332
14333 * international/mule-cmds.el (find-multibyte-characters): Never
14334 exclude charsets eight-bit-control and eight-bit-graphic.
14335
14336 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
14337
14338 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
14339 Don't quote lambdas.
14340
14341 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
14342
14343 2000-05-19 Gerd Moellmann <gerd@gnu.org>
14344
14345 * gud.el (gud-jdb-directories): Doc fix.
14346
14347 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
14348
14349 * newcomment.el: New file.
14350
14351 2000-05-19 Gerd Moellmann <gerd@gnu.org>
14352
14353 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
14354
14355 2000-05-18 Andreas Schwab <schwab@suse.de>
14356
14357 * dired.el (dired-between-files): Also skip lines beginning with
14358 `used'.
14359
14360 2000-05-18 Gerd Moellmann <gerd@gnu.org>
14361
14362 * msb.el (msb-menu-cond): Add choice `user'.
14363
14364 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14365
14366 * ps-print.el: Compatibility, customization and doc fix.
14367 (ps-printer-name-option): Replace defconst by defvar.
14368 (ps-postscript-code-directory): XEmacs compatibility.
14369 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
14370 fix.
14371 (ps-user-defined-prologue, ps-print-prologue-header)
14372 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
14373 compatibility and code fix.
14374 (ps-print-background-image, ps-print-background-text):
14375 Customization fix.
14376 (ps-line-number-start, ps-n-up-on): New vars.
14377
14378 2000-05-18 Espen Skoglund <esk@ira.uka.de>
14379
14380 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
14381 the indent-comment function to just return the appropriate indent.
14382
14383 2000-05-18 Eric M. Ludlam <zappo@ultranet.com>
14384
14385 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
14386 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
14387 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
14388
14389 2000-05-18 Dave Love <fx@gnu.org>
14390
14391 * info.el (Info-fontify-node): Add intangible property as well as
14392 invisible.
14393
14394 * calendar/appt.el (appt-make-list): Match all lines of entry.
14395 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
14396
14397 2000-05-18 Kenichi Handa <handa@etl.go.jp>
14398
14399 * international/mule-diag.el (describe-char-after): Call
14400 internal-char-font, not char-font. If internal-char-font returns
14401 nil, display "-- none --".
14402
14403 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
14404
14405 * image.el (image-type-available-p): Don't reference image-types
14406 if it isn't bound.
14407
14408 2000-05-17 Stefan Monnier <monnier@cs.yale.edu>
14409
14410 * autoarg.el (autoarg-mode): Typo in the :set argument.
14411
14412 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
14413
14414 * startup.el (command-line-1): Don't signal an error if the
14415 directory for auto-save-list files does not yet exist.
14416
14417 2000-05-17 Kenichi Handa <handa@etl.go.jp>
14418
14419 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
14420
14421 2000-05-16 Stefan Monnier <monnier@cs.yale.edu>
14422
14423 * subr.el (remove-hook): `setq' hook-value, not `set'.
14424
14425 2000-05-16 Sam Steingold <sds@gnu.org>
14426
14427 * info.el (debug-ignored-errors): More errors to ignore.
14428
14429 2000-05-16 Dave Love <fx@gnu.org>
14430
14431 * cus-edit.el: Don't require cl or easymenu.
14432 (custom-variable-prompt): Test standard-value property, not
14433 user-variable-p.
14434
14435 2000-05-16 Sam Steingold <sds@gnu.org>
14436
14437 * subr.el (add-hook): `setq' hook-value, not `set'.
14438
14439 2000-05-16 Gerd Moellmann <gerd@gnu.org>
14440
14441 * startup.el (command-line-1): Mention the FAQ in the startup
14442 message.
14443
14444 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
14445
14446 * progmodes/compile.el (compilation-parse-errors): Collect
14447 `nomessage' regexps last.
14448
14449 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
14450
14451 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
14452 to the function name.
14453
14454 2000-05-15 Dave Love <fx@gnu.org>
14455
14456 * speedbar.el (speedbar-recenter): Typo.
14457 (speedbar-expand-line): Make arg optional.
14458 (speedbar-mode): Avoid a compiler warning.
14459
14460 2000-05-15 Gerd Moellmann <gerd@gnu.org>
14461
14462 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
14463 user-specified option string is empty.
14464
14465 * mouse.el (mouse-yank-at-click): Doc fix.
14466
14467 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
14468
14469 * term/internal.el (IT-character-translations): More updates of
14470 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
14471 documents.
14472
14473 2000-05-15 Gerd Moellmann <gerd@gnu.org>
14474
14475 * env.el (getenv): New function, interactively callable.
14476 (setenv, getenv): Remove autoload cookies.
14477
14478 * loadup.el: Load `env'.
14479
14480 * progmodes/f90.el: Change author's mail address.
14481
14482 2000-05-14 Dave Love <fx@gnu.org>
14483
14484 * mail/rmail.el (rmail-show-message-hook): Customize and offer
14485 goto-addr as an option.
14486
14487 * help.el (help-xref-stack): Doc fix.
14488 (help-xref-following): New variable.
14489 (help-make-xrefs): Use it.
14490 (help-xref-go-back): Use position information from stack element.
14491 (help-follow): Make position in stack element a pair. Use
14492 help-xref-following.
14493
14494 * autoarg.el: New file.
14495
14496 * faces.el: Declare more functions obsolete.
14497
14498 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
14499 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
14500 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
14501 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
14502 Remove all the setup-...-environment functions.
14503
14504 2000-05-13 Eric M. Ludlam <zappo@ultranet.com>
14505
14506 * speedbar.el: Updated the commentary section. xemacs20p now uses
14507 >= when detecting. Require `defimage' safely.
14508 (speedbar-easymenu-definition-base): Add toggle for images.
14509 (speedbar-easymenu-definition-special): Add flush cache & expand.
14510 (speedbar-visiting-tag-hook): Set new defaults. Added options.
14511 (speedbar-reconfigure-keymaps-hook): New variable.
14512 (speedbar-frame-parameters): Updated documentation.
14513 (speedbar-use-imenu-flag): Updated custom tag
14514 (speedbar-dynamic-tags-function-list): New variable.
14515 (speedbar-tag-hierarchy-method): Updated doc & custom.
14516 (speedbar-indentation-width, speedbar-indentation-width) New
14517 variables.
14518 (speedbar-hide-button-brackets-flag): Customizable.
14519 (speedbar-vc-indicator): Doc update.
14520 (speedbar-ignored-path-expressions): Updated default value.
14521 (speedbar-supported-extension-expressions): Updated default value.
14522 (speedbar-syntax-table): Remove {} paren status.
14523 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
14524 as "+". Added overlay aliases.
14525 (speedbar-mode): Use `speedbar-mode-line-update' instead of
14526 `force-mode-line-update'.
14527 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
14528 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
14529 `mouse-set-point'
14530 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
14531 (speedbar-item-info-tag-helper): Revamped to handle a wider range
14532 of arbitrary text, and new helper functions.
14533 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
14534 filename finder.
14535 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
14536 (speedbar-directory-buttons): Update path search/expansion.
14537 (speedbar-make-tag-line): Pay attention to
14538 `speedbar-indentation-width'. Use more care w/ invisible
14539 properties.
14540 (speedbar-change-expand-button-char): Call
14541 `speedbar-insert-image-button-maybe'.
14542 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
14543 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
14544 (speedbar-trim-words-tag-hierarchy)
14545 (speedbar-simple-group-tag-hierarchy): New functions
14546 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
14547 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
14548 functions.
14549 (speedbar-mouse-set-point): New function
14550 (speedbar-power-click): Updated documentation.
14551 (speedbar-line-token, speedbar-goto-this-file): Handle more types
14552 of tag prefix text.
14553 (speedbar-expand-line, speedbar-contract-line): Make more robust
14554 to strange text.
14555 (speedbar-expand-line): Takes universal argument to flush the
14556 cache.
14557 (speedbar-flush-expand-line): New function.
14558 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
14559 Use new generator insertion method.
14560 (speedbar-fetch-dynamic-tags): New function.
14561 (speedbar-fetch-dynamic-imenu): Removed code now handled in
14562 `speedbar-fetch-dynamic-imenu'.
14563 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
14564 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
14565 "Revert Buffer" menu items.
14566 (speedbar-buffer-buttons-engine): Be smarter when creating a
14567 filename tag (for expansion purposes.).
14568 (speedbar-highlight-one-tag-line,
14569 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
14570 (speedbar-recenter): New functions.
14571 (defimage-speedbar): Image loading abstraction.
14572 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
14573 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
14574 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
14575 (speedbar-tag-type, speedbar-tag-mail): New images.
14576 (speedbar-expand-image-button-alist): New variable.
14577 (speedbar-insert-image-button-maybe): Insert an image over some
14578 buttons.
14579
14580 2000-05-13 Kenichi Handa <handa@etl.go.jp>
14581
14582 * international/mule-cmds.el (encode-coding-char): An ASCII
14583 character is always encodable.
14584
14585 * international/mule-conf.el: Add more information in descriptions
14586 of character sets.
14587
14588 * international/mule-diag.el (describe-char-after): New function.
14589 (describe-font-internal): Adjusted for the change of font-info.
14590 (describe-font): Likewise.
14591 (print-fontset): Rewritten for the new fontset implementation.
14592 (describe-fontset): Include fontset alias names in completion.
14593 (list-fontsets): Adjusted for the change of print-fontset.
14594
14595 * simple.el (what-cursor-position): If DETAIL is non-nil, call
14596 describe-char-after instead of displaying the detail in the echo
14597 area.
14598 (syntax-code-table): Format changed.
14599 (string-to-syntax): Adjusted for the above change.
14600
14601 2000-05-12 Stefan Monnier <monnier@cs.yale.edu>
14602
14603 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
14604
14605 2000-05-12 Dave Love <fx@gnu.org>
14606
14607 * calendar/todo-mode.el: Remove some compatibility stuff and CL
14608 dependence. Use line-{beginning,end}-position, not
14609 point-at{b,e}ol. Some doc fixes.
14610 (todo-position): New function. Fix callers of position to use it.
14611 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
14612
14613 2000-05-12 Gerd Moellmann <gerd@gnu.org>
14614
14615 * time.el (display-time-mail-icon): Use `:ascent center'.
14616
14617 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
14618 handling FTP security extensions.
14619
14620 2000-05-11 Dave Love <fx@gnu.org>
14621
14622 * calendar/todo-mode.el: New file.
14623
14624 2000-05-11 Gerd Moellmann <gerd@gnu.org>
14625
14626 * comint.el (comint-read-input-ring): Move reference to
14627 comint-input-ring-size outside of the save-excursion. It was
14628 causing the default value to be the only one ever seen.
14629
14630 * font-lock.el: Update copyright. Remove Simon Marshall's email
14631 address on request from him.
14632
14633 * subr.el (substitute-key-definition): Add comment describing
14634 the meaning of PREFIX.
14635
14636 2000-05-10 Stefan Monnier <monnier@cs.yale.edu>
14637
14638 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
14639
14640 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
14641 (add-minor-mode): Don't make the variable buffer-local and add a
14642 reference to define-minor-mode in the docstring.
14643
14644 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
14645 HEADER/FOOTER and fix bug with trailing empty directory.
14646 (cvs-append-to-ignore): Use vc-editable-p if available.
14647 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
14648 (vc-do-command): Tweak advice to handle the new VC.
14649
14650 * log-view.el (log-view-goto-rev): New function for the new VC.
14651 (log-view-minor-wrap): Use mark-active.
14652
14653 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
14654 (log-edit-changelog-full-paragraphs): New var.
14655 (log-edit-insert-changelog): Remove a lonely leading `* file'.
14656 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
14657 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
14658 (log-edit-changelog-ours-p, log-edit-changelog-entries)
14659 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
14660 Replace the `cvs' prefix with `log-edit'.
14661
14662 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
14663
14664 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
14665 (diff-font-lock-defaults): Explicitly turn off multiline.
14666 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
14667 (diff-ediff-patch): Fix call to ediff-patch-file.
14668 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
14669 Handle comments.
14670
14671 * frame.el (automatic-hscrolling): Typo.
14672
14673 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
14674
14675 2000-05-09 Sam Steingold <sds@goems.com>
14676
14677 * apropos.el (apropos-print): use `describe-face' instead of
14678 `customize-face-other-window'.
14679
14680 2000-05-09 Dave Love <fx@gnu.org>
14681
14682 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
14683
14684 * help.el (describe-variable): Have customize button pop the
14685 help-xref stack when invoked.
14686 (help-xref-symbol-regexp): Add `face'.
14687 (help-make-xrefs): Check for quoted face names and adapt regexp
14688 submatch numbers to cope.
14689 (help-xref-interned): Maybe insert face doc too. Separate
14690 sections with a line of hyphens.
14691
14692 * faces.el: Some doc fixes. Declare some functions obsolete.
14693 (describe-face): Add customize button. Return the help
14694 text. Fix prompt.
14695
14696 2000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
14697
14698 * term/internal.el (IT-character-translations): Fix last change.
14699
14700 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
14701
14702 * woman.el: New file
14703 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
14704
14705 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
14706
14707 * term/internal.el (IT-character-translations): Update ASCII
14708 simulations for greek-iso8859-7, add latin-iso8859-14 and
14709 latin-iso8859-15.
14710
14711 * international/mule-cmds.el (set-language-info-alist): Call
14712 define-prefix-command with 3 arguments, to make the map suitable
14713 for a menu.
14714
14715 2000-05-07 Dave Love <fx@gnu.org>
14716
14717 * time.el: Small doc fixes from Pavel Jan\e,Am\e(Bk ml.
14718
14719 2000-05-05 Dave Love <fx@gnu.org>
14720
14721 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
14722 list in doc string. Don't quote keyword symbols.
14723 * emacs-lisp/cl.el: Likewise
14724 * emacs-lisp/cl-seq.el: Likewise
14725
14726 2000-05-05 Gerd Moellmann <gerd@gnu.org>
14727
14728 * abbrev.el (abbrev-mode): Make ARG optional.
14729
14730 2000-05-04 Gerd Moellmann <gerd@gnu.org>
14731
14732 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
14733
14734 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
14735
14736 * subr.el (substitute-key-definition): Clarify documentation.
14737
14738 2000-05-04 Milan Zamazal <pdm@freesoft.cz>
14739
14740 * glasses.el (glasses-convert-to-unreadable): Use
14741 `glasses-separator' instead of the hard-wired "_".
14742 (glasses-mode): Call `glasses-make-unreadable' only in a single
14743 place.
14744
14745 2000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
14746
14747 * term/internal.el (cjk-codepages-alist): Add associations for
14748 Chinese and Korean codepages. Remove FIXME comment.
14749
14750 2000-05-03 Dave Love <fx@gnu.org>
14751
14752 * time.el (display-time-mail-face, display-time-use-mail-icon):
14753 New option.
14754 (display-time-mail-icon): New variable.
14755 (display-time-string-forms): Use the above. Fix the local-map.
14756
14757 2000-05-03 Gerd Moellmann <gerd@gnu.org>
14758
14759 * replace.el (query-replace-map): Add binding for `E'.
14760 (query-replace-help): Extend help text.
14761 (perform-replace): Allow editing the replacement string.
14762
14763 * make-mode.el (makefile-mode-abbrev-table): New variable.
14764 (makefile-mode): Set local abbrev table to
14765 makefile-mode-abbrev-table.
14766 (makefile-font-lock-keywords): Fontify includes and conditionals.
14767
14768 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
14769 set TOGGLE's value.
14770
14771 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
14772 mail-interactive-insert-alias.
14773 (mail-abbrev-complete-alias): New command.
14774 (mail-mode-map): Bind it to `M-TAB'.
14775
14776 2000-05-03 Kenichi Handa <handa@etl.go.jp>
14777
14778 * language/lao-util.el (lao-compose-region): New function.
14779
14780 2000-05-02 Gerd Moellmann <gerd@gnu.org>
14781
14782 * files.el (recover-session): Make directories as necessary
14783 if they don't exist yet.
14784
14785 * calendar/cal-french.el
14786 (french-calendar-multibyte-special-days-array)
14787 (french-calendar-special-days-array): Change French text.
14788 (calendar-french-date-string): Change output.
14789 (calendar-goto-french-date): Likewise.
14790
14791 2000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
14792
14793 * wid-edit.el (widget-default-active): Obey `:always-active'.
14794 (widget-documentation-string-value-create): Set `:always-active'.
14795
14796 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
14797
14798 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
14799 default prefix to `~/_emacs.d/auto-save.list/_s'.
14800 (normal-top-level): Create the directory for auto-save files, if
14801 it doesn't already exist (in the ms-dos case only).
14802
14803 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
14804
14805 * international/mule-cmds.el (set-language-environment): Don't
14806 concat an integer (dos-codepage), use format instead.
14807
14808 2000-05-02 Dave Love <fx@gnu.org>
14809
14810 * help.el (help-xref-on-pp): Check for constant symbols.
14811
14812 2000-04-29 Gerd Moellmann <gerd@gnu.org>
14813
14814 * startup.el (normal-top-level): Put a condition-case around
14815 the code loading subdirs.el.
14816
14817 2000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14818
14819 * ps-print.el: Upside-down and face background color printing,
14820 line number step, doc fix.
14821 (ps-print-version): New version number (5.2).
14822 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
14823 (ps-face-attribute-list, ps-plot-with-face): Code fix.
14824 (ps-spool-config): Var fix.
14825 (ps-printer-name-option): Const fix.
14826 (ps-print-upside-down, ps-use-face-background)
14827 (ps-line-number-step): New vars.
14828 (ps-window-system, ps-lp-system): New consts.
14829 (ps-face-background): New fun.
14830
14831 2000-04-28 Richard Stallman <rms@gnu.org>
14832
14833 * files.el (make-auto-save-file-name):
14834 Apply auto-save-file-name-transforms to visited file name
14835 before generating auto save file name.
14836 (auto-save-file-name-transforms): New variable.
14837
14838 * files.el (backup-enable-predicate):
14839 Correctly test for a file under a temporary directory.
14840
14841 2000-04-28 Gerd Moellmann <gerd@gnu.org>
14842
14843 * subr.el (add-minor-mode): Rewritten.
14844
14845 2000-04-28 Kenichi Handa <handa@etl.go.jp>
14846
14847 * mail/sendmail.el (sendmail-send-it): Set
14848 buffer-file-coding-system to the selected coding system for MIME
14849 header.
14850
14851 2000-04-27 Gerd Moellmann <gerd@gnu.org>
14852
14853 * dired.el (dired-move-to-filename-regexp): Allow format where
14854 YYYY is followed by two spaces.
14855
14856 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
14857 in the second character class of the regexp.
14858
14859 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
14860 mh-etc, too.
14861
14862 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
14863 nil.
14864
14865 * subr.el (add-minor-mode): Use `set' instead of `setq'.
14866
14867 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
14868 argument.
14869
14870 2000-04-27 Sen Nagata <sen@eccosys.com>
14871
14872 * emacs-lisp/crm.el (crm-completion-table): New variable.
14873 (crm-collection-fn, crm-test-completion)
14874 (completing-read-multiple): Use it.
14875
14876 2000-04-27 Dave Love <fx@gnu.org>
14877
14878 * help.el (locate-library): Use mapc.
14879 (help-manyarg-func-alist): Add call-process-region.
14880
14881 2000-04-26 Gerd Moellmann <gerd@gnu.org>
14882
14883 * subr.el (add-minor-mode): Make argument MAP optional.
14884
14885 * desktop.el (desktop-save): Save list of minor modes.
14886 (desktop-create-buffer): Restore minor modes.
14887 (desktop-minor-mode-table): New user-option.
14888
14889 * subr.el (add-minor-mode): New function.
14890
14891 * image.el (find-image): New function.
14892 (defimage): Rewritten to find image at load time.
14893
14894 * startup.el (normal-top-level-add-to-load-path): Handle
14895 case that the default directory is not in load-path.
14896
14897 * help.el: Old patch from Stefan Monnier.
14898 (help-xref-on-pp): New function.
14899 (describe-variable): Use it to display xrefs in a symbol's value.
14900
14901 2000-04-26 Stefan Monnier <monnier@cs.yale.edu>
14902
14903 * cus-edit.el (custom-face): Fix parenthesis.
14904
14905 2000-04-26 Kenichi Handa <handa@etl.go.jp>
14906
14907 * mail/rmail.el (rmail-expunge): When there are no deleted
14908 messages, do nothing.
14909
14910 2000-04-26 Dave Love <fx@gnu.org>
14911
14912 * international/mule-cmds.el (locale-translation-file-name):
14913 Defvar to nil.
14914 (set-locale-environment): Set it here (at runtime).
14915
14916 2000-04-25 Gerd Moellmann <gerd@gnu.org>
14917
14918 * replace.el (perform-replace): Add parameters START and END. Use
14919 them instead of the check for a region in Transient Mark mode.
14920 (query-replace-read-args): Return two more list elements for the
14921 start and end of the region in Transient Mark mode.
14922 (query-replace, query-replace-regexp, query-replace-regexp-eval)
14923 (map-query-replace-regexp, replace-string, replace-regexp): Add
14924 optional last arguments START and END and pass them to
14925 perform-replace.
14926
14927 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
14928 form with additional arguments for perform-replace.
14929
14930 * progmodes/etags.el (tags-query-replace): Add parameters START
14931 and END. Construct a form with additional arguments for
14932 perform-replace.
14933
14934 * simple.el (shell-command): Set default directory for "*Shell
14935 Command Output" buffer.
14936
14937 * language/european.el (iso-latin-4): Fix typo.
14938
14939 * emacs-lisp/crm.el: New file.
14940
14941 2000-04-24 Dave Love <fx@gnu.org>
14942
14943 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
14944 (Custom-reset-saved, Custom-reset-standard)
14945 (custom-group-value-create, custom-group-set, custom-group-save)
14946 (custom-group-reset-current, custom-group-reset-saved)
14947 (custom-group-reset-standard): Use mapc.
14948 (custom-buffer-create-internal): Disable undo when creating items.
14949 Use mapc.
14950 (custom-face): Avoid redundant lambda.
14951
14952 2000-04-24 Gerd Moellmann <gerd@gnu.org>
14953
14954 * startup.el (auto-save-list-file-prefix): Set default to
14955 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
14956
14957 2000-04-24 Sam Steingold <sds@gnu.org>
14958
14959 * time-stamp.el (time-stamp-string-preprocess): Always convert
14960 `field-result' to a string.
14961
14962 2000-04-24 Gerd Moellmann <gerd@gnu.org>
14963
14964 * frame.el (scrolling): New group.
14965 (automatic-hscrolling): New user-option.
14966
14967 * startup.el (command-line-x-option-alist): Add `-lsp' and
14968 `--line-spacing'.
14969
14970 2000-04-19 Dave Love <fx@gnu.org>
14971
14972 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
14973 (cl-mapc): Rename from mapc. Fix the funcall.
14974
14975 2000-04-19 Gerd Moellmann <gerd@gnu.org>
14976
14977 * simple.el (clone-indirect-buffer-other-window): New command.
14978 (clone-indirect-buffer): Add optional arg NORECROD.
14979 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
14980
14981 * help.el (resize-temp-buffer-window): Use count-screen-lines.
14982
14983 * window.el (count-screen-lines): New function.
14984 (shrink-window-if-larger-than-buffer): Use count-screen-lines
14985 instead of window-buffer-height.
14986
14987 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
14988 non-existing variable comint-input-sentinel.
14989 (inferior-lisp-args-to-list): Removed.
14990 (inferior-lisp): Use split-string instead of
14991 inferior-lisp-args-to-list.
14992
14993 * hexl.el (hexl-insert-hex-string): New command.
14994
14995 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
14996 instead of concat.
14997
14998 2000-04-18 Gerd Moellmann <gerd@gnu.org>
14999
15000 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
15001 at the start of an existing but empty folder.
15002
15003 2000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
15004
15005 * ps-mule.el: Customization fix, doc fix.
15006 (ps-multibyte-buffer): Customization fix.
15007
15008 2000-04-17 Richard M. Stallman <rms@gnu.org>
15009
15010 * subr.el (read-passwd): Use read-char-exclusive.
15011
15012 2000-04-17 Gerd Moellmann <gerd@gnu.org>
15013
15014 * textmodes/texinfo.el (texinfo-insert-@email)
15015 (texinfo-insert-@emph, texinfo-insert-@quotation)
15016 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
15017 (texinfo-mode-map): Add key bindings for them.
15018
15019 * files.el (basic-save-buffer-2): Use a template with `$'
15020 instead of `#' for VMS.
15021
15022 * simple.el (clone-indirect-buffer): New function.
15023
15024 2000-04-16 Stephen Eglen <stephen@gnu.org>
15025
15026 * iswitchb.el (iswitchb-case): New function. If the user input
15027 contains any upper-case characters, the search is made
15028 case-sensitive.
15029
15030 2000-04-17 Stefan Monnier <monnier@cs.yale.edu>
15031
15032 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
15033 comment-end.
15034 (texinfo-font-lock-syntactic-keywords): New var.
15035 (texinfo-font-lock-keywords): Remove comment regexp.
15036 (texinfo-insert-block): New function.
15037 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
15038 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
15039 and font-lock-defaults. Use regexp-opt for outline-regexp.
15040 (texinfo-environments): New var.
15041 (texinfo-environment-regexp): Use regexp-opt and
15042 texinfo-environments.
15043
15044 * textmodes/ispell.el (ispell-menu-map-needed): Check that
15045 ispell-process is bound since this might be eval'd before ispell
15046 is loaded.
15047 (ispell-message): Use a tiny bit less magic and a bit more hard
15048 data to figure out what kind of sc-cite-regexp to use.
15049
15050 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
15051
15052 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
15053 (insert-cyclic-diary-entry): Unquote the lambda.
15054
15055 * gud.el (gud-jdb-build-source-files-list): Fix typo.
15056
15057 * files.el (backup-enable-predicate): Unquote the lambda.
15058
15059 * cus-edit.el (custom-face, face): Unquote the lambda.
15060
15061 2000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
15062
15063 * ps-print.el: Check for line-beginning-position definition.
15064
15065 * ps-print.el: Fix counting lines in a region.
15066 (ps-print-version): New version number (5.1.5).
15067 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
15068 (ps-printing-region): Fun code fix.
15069
15070 2000-04-15 Gerd Moellmann <gerd@gnu.org>
15071
15072 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
15073 to file-directory-p.
15074
15075 2000-04-14 Gerd Moellmann <gerd@gnu.org>
15076
15077 * gud.el (gud-jdb-build-source-files-list): Check that directory
15078 exists before calling directory-files.
15079
15080 2000-04-13 Dave Love <fx@gnu.org>
15081
15082 * emacs-lisp/trace.el: Change maintainer. Use new backquote
15083 syntax.
15084
15085 * emacs-lisp/cl-specs.el: Remove when, unless.
15086
15087 * emacs-lisp/cl-extra.el: Don't quote keywords.
15088 (cl-old-mapc): New variable.
15089 (mapc): Use it.
15090 (cl-map-intervals): Use with-current-buffer. Don't check for
15091 next-property-change.
15092 (cl-map-overlays): Use with-current-buffer.
15093 (cl-expt): Remove.
15094 (copy-tree, remprop): Define unconditionally.
15095
15096 * emacs-lisp/cl-compat.el (keywordp): Remove.
15097
15098 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
15099 to use keywordp.
15100 (edebug-spec): Enable keywordp.
15101
15102 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
15103 string-lessp.
15104
15105 * cus-start.el: Use keywordp.
15106
15107 2000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
15108
15109 * diary-lib.el (include-other-diary-files): Fix the fix of
15110 2000-02-18 by doing a save-excursion.
15111
15112 2000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
15113
15114 * ps-print.el: Customization fix, doc fix.
15115 (ps-print-version): New version number (5.1.4).
15116 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
15117 (ps-print-preprint): Adjust code.
15118 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
15119 (ps-print-prologue-header, ps-print-control-characters)
15120 (ps-spool-config): Customization fix.
15121
15122 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
15123
15124 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
15125 converted to the new menu-item format, names silightly changed,
15126 help strings added.
15127
15128 Support for spelling without async subprocesses:
15129
15130 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
15131 (ispell-session-buffer): New variables.
15132 (ispell-start-process, ispell-process-status,
15133 ispell-accept-output, ispell-send-string): New functions, for
15134 Ispell invocation when async subprocesses aren't supported.
15135 (ispell-word, ispell-pdict-save, ispell-command-loop,
15136 ispell-process-line, ispell-buffer-local-parsing): Replace calls
15137 to process-send-string with calls to ispell-send-string, and
15138 accept-process-output with ispell-accept-output.
15139 (ispell-init-process): Call ispell-process-status instead of
15140 process-status with.
15141 (ispell-init-process): Call ispell-start-process. Call
15142 ispell-accept-output and ispell-send-string. Don't call
15143 process-kill-without-query and kill-process if they are unbound.
15144 (ispell-async-processp): New function.
15145
15146 2000-04-12 Dave Love <fx@gnu.org>
15147
15148 * info.el: Add debug-ignored-errors.
15149 (Info-mode-menu): Add some items.
15150 (Info-directory): Add autoload cookie.
15151
15152 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
15153 Modify `truncate-lines'. Make `describe-language-environment'
15154 always visible and add help. Modify `describe-key' help. Invoke
15155 Info-directory from `info'. New entry `emacs-manual'.
15156
15157 2000-04-10 Gerd Moellmann <gerd@gnu.org>
15158
15159 * progmodes/ebrowse.el (ebrowse-tree-mode): Use
15160 propertized-buffer-identification.
15161 (ebrowse-update-member-buffer-mode-line): Likewise.
15162 (ebrowse--mode-strings): Removed.
15163 (ebrowse--mode-line-props): Removed.
15164
15165 * files.el (auto-mode-alist): Add `EBROWSE'.
15166
15167 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
15168 space before testing for end of buffer.
15169 (ebrowse-load): Removed.
15170 (ebrowse-revert-tree-buffer-from-file): Rewritten.
15171 (ebrowse-create-tree-buffer): Rewritten.
15172 (ebrowse-tree-mode): Read tree from buffer.
15173
15174 * progmodes/ebrowse-ffh.el: Removed.
15175
15176 2000-04-10 Kenichi Handa <handa@etl.go.jp>
15177
15178 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
15179
15180 2000-04-10 Gerd Moellmann <gerd@gnu.org>
15181
15182 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
15183 at the wrong place.
15184
15185 2000-04-09 Dave Love <fx@gnu.org>
15186
15187 * files.el (backup-enable-predicate): Use
15188 temporary-file-directory, small-temporary-file-directory.
15189 (make-backup-file-name-function, backup-directory-alist): New
15190 variables.
15191 (make-backup-file-name-1): New function.
15192 (make-backup-file-name): Use it.
15193 (find-backup-file-name): Likewise. Use format for clarity, not
15194 concat.
15195 (file-newest-backup): Use make-backup-file-name.
15196
15197 2000-04-09 Gerd Moellmann <gerd@gnu.org>
15198
15199 * progmodes/ebrowse-ffh.el: New file.
15200
15201 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn): Moved
15202 to ebrowse-ffh.el.
15203 (ebrowse-load): Add autoload.
15204
15205 * finder.el (finder-commentary): Add autoload cookie.
15206
15207 * mail/rfc2368.el: Correct author's email address.
15208
15209 * progmodes/ebrowse.el: New file.
15210
15211 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
15212 item help string.
15213 (easy-menu-do-add-item): Ditto.
15214 (easy-menu-define): Extend doc string.
15215
15216 * jit-lock.el (with-buffer-unmodified): Use
15217 restore-buffer-modified-p.
15218 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
15219 (jit-lock-function, jit-lock-stealth-fontify): Don't use
15220 with-buffer-unmodified.
15221
15222 2000-04-08 Dave Love <fx@gnu.org>
15223
15224 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
15225 unless, when.
15226
15227 2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
15228
15229 * viper-util.el (viper-put-on-search-overlay): New subroutine.
15230 (viper-flash-search-pattern): No operation when using Emacs
15231 doesn't support face.
15232 Use `viper-put-on-search-overlay'.
15233
15234 2000-04-04 Gerd Moellmann <gerd@gnu.org>
15235
15236 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
15237 like C-r.
15238
15239 * progmodes/make-mode.el: Some doc fixes.
15240 (makefile-mode-abbrev-table): New variable.
15241 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
15242 (makefile-font-lock-keywords): Fontify includes and conditionals.
15243 (toplevel): Require `dabbrev' and `add-log' when compiling.
15244
15245 * replace.el (perform-replace): Don't move forward one char
15246 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
15247 to do that because it leaves point 1 position after the last
15248 replacement, after everything has been replaced.
15249
15250 * jit-lock.el (with-buffer-unmodified): New macro.
15251 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
15252 modified state.
15253 (jit-lock-function-1): Extracted from jit-lock-function; not
15254 preserving buffer's modified state.
15255 (jit-lock-function, jit-lock-stealth-fontify): Call
15256 jit-lock-function-1.
15257
15258 * mail/rfc2368.el: Remove supernumerary copyright line.
15259
15260 2000-04-04 Milan Zamazal <pdm@freesoft.cz>
15261
15262 * glasses.el: Provide facilities for inserting space before left
15263 parentheses and uncapitalization of identifiers.
15264 (glasses-mode): Try to remove old overlays in all cases.
15265
15266 2000-04-03 Gerd Moellmann <gerd@gnu.org>
15267
15268 * progmodes/compile.el (compile-internal): Display the compilation
15269 buffer in a different frame, if it's already displayed there.
15270
15271 * mail/rfc2368.el: New file.
15272
15273 * simple.el (sendmail-user-agent-compose): Recognize a `body'
15274 header and insert its value as mail body.
15275
15276 * subr.el (member-ignore-case): New function.
15277
15278 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
15279 (dabbrev--find-expansion): Ignore buffers matching a regexp
15280 from dabbrev-ignored-regexps.
15281
15282 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
15283 to extensions handled by gzip.
15284
15285 2000-04-03 Richard M. Stallman <rms@gnu.org>
15286
15287 * files.el (insert-directory): List the total free space
15288 along with the used space.
15289
15290 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
15291 line is followed by one that matches CITATION-REGEXP, end the
15292 paragraph.
15293
15294 2000-04-03 Markus Rost <rost@delysid.gnu.org>
15295
15296 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
15297 (rmail-make-basic-summary-line): Use that option.
15298
15299 2000-04-03 Kenichi Handa <handa@etl.go.jp>
15300
15301 * international/mule-cmds.el (encoded-string-description):
15302 Rewritten. Try pretty description for ISO 2022 escape sequences
15303 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
15304 for hexadecimal format.
15305
15306 2000-04-01 Dave Love <fx@gnu.org>
15307
15308 * cpp.el: Change customization group to `c' from `C'.
15309
15310 * vcursor.el (vcursor-move): Use display-color-p.
15311
15312 * international/mule-util.el: Provide mule-utils.
15313 (string-to-sequence): Simplify and speed up.
15314
15315 * international/mule.el (make-coding-system): Purecopy doc-string.
15316
15317 * international/mule-cmds.el: Various menu changes.
15318 (describe-specified-language-support): Handle `Default'.
15319 (set-language-info): Purecopy `info'.
15320
15321 2000-03-31 Andrew Innes <andrewi@gnu.org>
15322
15323 * vc.el (vc-backend-diff): Return the correct status if we had to
15324 retry the rcsdiff command without the --brief option.
15325
15326 2000-03-31 Dave Love <fx@gnu.org>
15327
15328 * help.el (help-manyarg-func-alist): Correct several omissions.
15329
15330 * add-log.el: Don't require cl, fortran.
15331 (add-log-current-defun-function): Doc fix.
15332 (change-log-version-number-regexp-list): Remove SCCS part. Doc
15333 fix.
15334 (change-log-version-rcs): Function deleted.
15335 (change-log-version-number-search): Doc fix. Use
15336 vc-workfile-version. Avoid CL dolist.
15337 (add-change-log-entry): Just call add-log-current-defun to get
15338 defun. Simplify somewhat.
15339 (change-log-get-method-definition-1): Likewise.
15340 (add-log-current-defun): Return nil if calling
15341 add-log-current-defun-function does so. Move Fortran stuff to
15342 fortran.el. Return string without properties.
15343
15344 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
15345 and :alpha: char classes.
15346
15347 * mail/supercite.el: Defvar curline when compiling.
15348 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
15349 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
15350 rather than a-zA-Z0-9 to allow non-ASCII characters.
15351
15352 2000-03-31 Gerd Moellmann <gerd@gnu.org>
15353
15354 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
15355
15356 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
15357 Re-enable new code.
15358
15359 * lpr.el (print-region-1): Use -d to specify printer name for
15360 systems `usg-unix-v*, `dgux', `hpux', `irix'.
15361
15362 2000-03-31 Dave Love <fx@gnu.org>
15363
15364 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Look
15365 for function definition in symbol's function value slot first
15366 instead of first consulting byte-compile-function-environment.
15367
15368 2000-03-31 Kenichi Handa <handa@etl.go.jp>
15369
15370 * language/european.el ("Polish"): New language environment.
15371 (setup-polish-environment): New function.
15372
15373 2000-03-30 Gerd Moellmann <gerd@gnu.org>
15374
15375 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
15376 Disable new code.
15377
15378 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
15379 trying to `load' the symbol of an autoload instead of the file
15380 recorded in the autoload. Fix error messages.
15381
15382 2000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
15383
15384 * ps-print.el: PostScript programming fix for ghostview, doc fix.
15385 (ps-print-version): New version number (5.1.3).
15386 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
15387 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
15388 (ps-generate-postscript-with-faces): Code fix.
15389 (ps-color-values): XEmacs compatibility.
15390 (ps-print-background-image, ps-print-background-text, ps-printer-name)
15391 (ps-default-fg, ps-default-bg): Adjust customization.
15392 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
15393 (ps-color-scale): Renaming old ps-color-value fun.
15394 (ps-print-headers): Replace ps-print-header group to avoid conflict
15395 with ps-print-header variable.
15396 (ps-print-miscellany): New group.
15397 (ps-format-color, ps-rgb-color): New funs.
15398 (ps-default-foreground): New var.
15399 (ps-printer-name-option): New const.
15400
15401 2000-03-30 Peter Breton <pbreton@ne.mediaone.net>
15402
15403 * net/net-utils.el:
15404 (network-connection-host, network-connection-service): New variables
15405 (network-connection-mode): New mode, derived from comint-mode
15406 (network-connection-mode-setup): New function, saves host and
15407 service information in local variables.
15408
15409 * lisp/locate.el:
15410 (locate-word-at-point): Added this function
15411 (locate): Default to using locate-word-at-point as input
15412 Run dired-mode-hook
15413
15414 2000-03-29 Dave Love <fx@gnu.org>
15415
15416 * calendar/appt.el: Doc fixes.
15417 (appt-check): Convert min-to-app to a string before passing to
15418 appt-disp-window-function or concat.
15419 (appt-delete-window): Remove test for frame-root-window.
15420 (appt-select-lowest-window, appt-convert-time): Simplify.
15421
15422 * emacs-lisp/bytecomp.el: Doc fixes.
15423 (byte-compile-file-form-autoload): Update
15424 byte-compile-function-environment.
15425
15426 2000-03-29 Andreas Schwab <schwab@suse.de>
15427
15428 * emacs-lisp/autoload.el: Also print defsubst doc string
15429 specially.
15430
15431 * dired.el (dired-insert-directory): If dired-free-space-program
15432 failed just delete its output.
15433
15434 2000-03-29 Dave Love <fx@gnu.org>
15435
15436 * international/iso-cvt.el: Move provide to end. Doc fixes.
15437 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
15438 (iso-iso2sgml, iso-sgml2iso): New functions.
15439 (iso-cvt-define-menu): Fix some entries and use backquote for
15440 clarity.
15441
15442 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
15443
15444 2000-03-28 Gerd Moellmann <gerd@gnu.org>
15445
15446 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
15447 ISO-DATE. If non-nil, return date in ISO 8601 format.
15448
15449 2000-03-26 Stefan Monnier <monnier@cs.yale.edu>
15450
15451 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
15452 if it ever becomes used.
15453 (log-edit-mode-hook): Default to vc-log-mode-hook.
15454 (log-edit-mode): Fix the docstring.
15455
15456 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
15457 the code.
15458
15459 2000-03-26 Dave Love <fx@gnu.org>
15460
15461 * net/browse-url.el (browse-url): Re-fix case of
15462 browse-url-browser-function being an alist.
15463 (browse-url): Add :link to defgroup.
15464
15465 * files.el: Doc fixes.
15466 (file-truename): Include `[' in wildcard characters.
15467 (automount-dir-prefix): Customize.
15468 (find-file-wildcards): Add :version.
15469 (find-file-noselect): Simplify a mapcar call.
15470
15471 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
15472 compatible with inf-lisp version.
15473 (eval-defun-1): Fix custom-declare-variable case.
15474
15475 2000-03-25 Stefan Monnier <monnier@cs.yale.edu>
15476
15477 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
15478
15479 2000-03-24 Gerd Moellmann <gerd@gnu.org>
15480
15481 * Makefile (COMPILE_FIRST): New macro.
15482 (compile-files): Compile files from COMPILE_FIRST first.
15483
15484 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new
15485 code.
15486
15487 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
15488 matching open parenthesis in column 0 to defun-prompt-regexp
15489 only if open-paren-in-column-0-is-defun-start is set.
15490
15491 * sun-curs.el: Require CL at compile-time only.
15492
15493 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
15494 instead of copy-list which is a function from CL.
15495 (msb--choose-menu, msb--mode-menu-cond)
15496 (msb--create-buffer-menu-2): Use dolist instead of mapc.
15497 (msb--init-file-alist): Use mapcar instead of mapcan.
15498 (msb--aggregate-alist): Use mapcar instead of mapcan. Fix
15499 `(' in column 0 in doc string.
15500 (msb--add-separators): Use mapcar instead of mapcan.
15501
15502 * cus-dep.el: Require CL at compile-time only.
15503
15504 2000-03-24 Stefan Monnier <monnier@cs.yale.edu>
15505
15506 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
15507 (byte-compile-warnings): New warning `noruntime'.
15508 (byte-compile-constants, byte-compile-variables): Fix docstring.
15509 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
15510 execute `eval-whenc-compile's body.
15511 (byte-compile-unresolved-functions): Fix docstring.
15512 (byte-compile-eval): New function.
15513 (byte-compile-callargs-warn): Check if the function will be available
15514 at runtime (via property `byte-compile-noruntime').
15515 (byte-compile-print-syms): New function.
15516 (byte-compile-warn-about-unresolved-functions): Also warn about
15517 `noruntime' functions (and use `byte-compile-print-syms').
15518 (byte-compile-file): Capitalize the message.
15519
15520 2000-03-24 Gerd Moellmann <gerd@gnu.org>
15521
15522 * mail/rmail.el (rmail-confirm-expunge): New user-option.
15523 (rmail-expunge): Ask for confirmation depending on the setting
15524 of rmail-confirm-expunge.
15525
15526 2000-03-23 Gerd Moellmann <gerd@gnu.org>
15527
15528 * Makefile (bootstrap-clean): If $(emacs) exists, build
15529 loaddefs.el first. A loaddefs.el that's not up-to-date might
15530 cause a bootstrap failure because things don't autoload as
15531 expected.
15532
15533 2000-03-23 Dave Love <fx@gnu.org>
15534
15535 * net/browse-url.el: Restore previous use of
15536 browse-url-maybe-new-window.
15537
15538 2000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
15539
15540 * ps-print.el: Skip banner page fix.
15541 (ps-print-version): New version number (5.1.2).
15542 (ps-begin-file, ps-end-file, ps-generate): Code fix.
15543
15544 2000-03-23 Dave Pearson <davep@davep.org>
15545
15546 * net/quickurl.el Changed the type of parameter passed to the
15547 function defined by `quickurl-format-function'. Before only the
15548 text of the URL was passed. Now the whole URL structure is passed
15549 and the function is responsible for extracting the parts it
15550 requires. Changed the default of `quickurl-format-function'
15551 accordingly.
15552 (quickurl-insert): Changed the `funcall' of
15553 `quickurl-format-function' to match the above change.
15554 (quickurl-list-insert): Changed the `url' case so that it makes
15555 use of `quickurl-format-function', previous to this the format was
15556 hard wired.
15557
15558 2000-03-22 Gerd Moellmann <gerd@gnu.org>
15559
15560 * startup.el: Change some spellings for the X Window System.
15561
15562 2000-03-22 Stefan Monnier <monnier@cs.yale.edu>
15563
15564 * progmodes/make-mode.el (makefile-warn-suspicious-lines): clean
15565 up the code and the regexp and make sure the cursor is temporarily
15566 moved to the suspicious line while querying the user.
15567
15568 2000-03-22 Jason Rumney <jasonr@gnu.org>
15569
15570 * w32-fns.el (w32-charset-info-alist): Initialize.
15571
15572 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
15573
15574 * ps-print.el: N-up last page fix.
15575 (ps-print-version): New version number (5.1.1).
15576 (ps-end-file, ps-end-job, ps-generate): Code fix.
15577
15578 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
15579
15580 * files.el (find-file-run-dired): Update docstring.
15581 (find-directory-functions): New hook.
15582 (find-file-noselect): Run find-directory-functions rather than
15583 calling dired directly.
15584
15585 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
15586
15587 * pcvs.el: Add a minimal leading commentary.
15588 (cvs-make-cvs-buffer): Change the header part by removing the startup
15589 message and adding a `Module' entry. Also replace the FOOTER and
15590 HEADER special fileinfos with the new support in ewoc for updating
15591 its own footer and header.
15592 (cvs-update-header): Update to use the header/footer of the ewoc.
15593 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
15594 (cvs-is-within-p): New function.
15595 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
15596 to only examine some subset of the buffers.
15597
15598 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
15599 `format' instead of our own ad-hoc functions.
15600 Remove HEADER and FOOTER cases, now handled in the EWOC.
15601 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
15602
15603 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
15604 output to avoid scaring the user.
15605 (cvs-parse-table): Catch message for non-up-to-date commits.
15606
15607 * pcvs-defs.el (cvs-startup-message): Remove.
15608 (cvs-global-menu): New autoloaded menu.
15609
15610 * pcvs-util.el (cvs-string-fill): Remove.
15611
15612 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
15613 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
15614 PP part of it and also make it work for footers and headers.
15615 (ewoc-create): Drop POS and BUFFER arguments.
15616 Use the DLL's dummy node to store the end-of-footer position.
15617 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
15618 (ewoc-refresh): Remove unused `header' variable.
15619 (ewoc-(get|set)-hf): New functions.
15620
15621 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
15622 log-view-*-(message|file) and use easy-mmode-define-navigation.
15623 (log-view-message-re): Match SCCS format as well.
15624 And match the revision line rather than the dashed separator line.
15625 (log-view-mode): Use the new define-derived-mode.
15626 (log-view-current-tag): Fill in with an actual implementation.
15627
15628 * cvs-status.el (cvs-status-(prev|next)): Rename from
15629 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
15630 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
15631 to let the output "breathe" a little more (more readable).
15632 (cvs-status-mode): Use the new define-derived-mode.
15633
15634 * smerge-mode.el (smerge-auto-leave): New function and variable.
15635 (smerge-basic-map): Rename from smerge-basic-keymap.
15636 Change the bindings for smerge-diff-*.
15637 (smerge-*-map): Use easy-mmode-defmap.
15638 (smerge-(next|prev)): Use easy-mmode-define-navigation.
15639 (smerge-keep-*): Use smerge-auto-leave.
15640
15641 2000-03-21 Jason Rumney <jasonr@gnu.org>
15642
15643 * cus-edit.el (custom-button-face): Use 3D look for w32.
15644 (custom-button-pressed-face): Likewise.
15645
15646 2000-03-21 Gerd Moellmann <gerd@gnu.org>
15647
15648 * progmodes/etags.el (tags-case-fold-search): New user-option.
15649 (tags-loop-eval): New function. Bind case-fold-search around eval
15650 depending on the value of tags-case-fold-search.
15651 (tags-loop-continue): Use tags-loop-eval.
15652 (find-tag-in-order): Bind case-fold-search depending on the value
15653 of tags-case-fold-search.
15654
15655 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
15656
15657 * diff-mode.el (diff-mode-*-map): use `easy-mmode-defmap'.
15658 (diff-end-of-hunk): Return the end position for use in
15659 `easy-mmode-define-navigation'.
15660 (diff-recenter): Remove.
15661 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
15662 of `easy-mmode-define-navigation'.
15663 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
15664 previous renaming) and fix to use new names.
15665 (diff-merge-strings): Use \n as separator: simpler, faster.
15666 (diff-mode): Use `define-derived-mode'.
15667
15668 * derived.el (define-derived-mode): Don't autoload anymore.
15669 Prefer the macro-only version provided by easy-mmode.el.
15670
15671 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
15672 `easy-mmode-define-derived-mode'.
15673 Use `combine-run-hooks'.
15674 (easy-mmode-define-navigation): New macro.
15675
15676 * subr.el (combine-run-hooks): New function.
15677
15678 2000-03-21 Kenichi HANDA <handa@etl.go.jp>
15679
15680 * term/x-win.el: Fontsets related initialization is simplified.
15681
15682 * international/mule-diag.el (describe-font): Don't refer to
15683 global-fontset-alist, instead call font-list.
15684 (describe-fontset, list-fontsets, mule-diag): Likewise.
15685 (print-fontset): Adjusted for the change of fontset
15686 implementation.
15687
15688 * international/fontset.el (x-charset-registries): Variable
15689 removed, instead the corresponding data is stored in the default
15690 fontset.
15691 (register-alternate-fontnames): Function removed.
15692 (resolved-ascii-font): Variable removed.
15693 (x-compose-font-name): Ignore the second argument REDOCE.
15694 (x-complement-fontset-spec): Complement only an ASCII font and
15695 element for those charsets than can use that ASCII font.
15696 (generate-fontset-menu): Don't refer to global-fontset-alist,
15697 instead call fontset-list.
15698 (uninstantiated-fontset-alist): Variable removed.
15699 (x-style-funcs-alist): Likewise.
15700 (fontset-default-styles): Likewise.
15701 (x-modify-font-name): Function removed.
15702 (create-fontset-from-fontset-spec): Ignore the argument
15703 STYLE-VARIANT.
15704 (create-fontset-from-ascii-font): Docsting adjusted for the above
15705 change.
15706 (instantiate-fontset, resolve-fontset-name): Functions removed.
15707 (fontset-list): Now implemented by C code.
15708
15709 * faces.el (read-face-font): Fix TABLE arg to completing-read.
15710 (describe-face): Include `font' attribute in the description.
15711
15712 2000-03-21 Kenichi Handa <handa@etl.go.jp>
15713
15714 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
15715
15716 2000-03-20 Gerd Moellmann <gerd@gnu.org>
15717
15718 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
15719 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
15720 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
15721
15722 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
15723 about behavior of set-buffer-modified-p wrt redisplay.
15724
15725 2000-03-19 Richard M. Stallman <rms@gnu.org>
15726
15727 * view.el (view-mode-disable): Kill local binding of view-read-only.
15728
15729 2000-03-18 Gerd Moellmann <gerd@gnu.org>
15730
15731 * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE
15732 is a string, convert it to a syntax cell using string-to-syntax.
15733
15734 * simple.el (syntax-code-table, syntax-flag-table): New variables.
15735 (string-to-syntax): New function.
15736
15737 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
15738 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
15739 try to use passive ftp mode.
15740
15741 2000-03-17 Gerd Moellmann <gerd@gnu.org>
15742
15743 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
15744
15745 * simple.el (append-to-buffer): Update point of windows after
15746 insertion.
15747
15748 * abbrev.el (inverse-add-abbrev): Identify word by first moving
15749 forward then moving backward. Reindent.
15750
15751 * frame.el (other-frame): Call x-focus-frame only if
15752 focus-follows-mouse is off.
15753
15754 2000-03-17 Dave Love <fx@gnu.org>
15755
15756 * pcvs-util.el (cvs-strings->string): Rename
15757 replace-regexps-in-string.
15758
15759 2000-03-17 Stefan Monnier <monnier@cs.yale.edu>
15760
15761 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
15762 regexp for labels cannot span several lines.
15763
15764 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
15765 `(setq :<key> ':<key>)' to the macro expansion.
15766
15767 2000-03-16 Dave Love <fx@gnu.org>
15768
15769 * progmodes/f90.el (f90): Put custom group under `languages', not
15770 `fortran'.
15771 (f90-mode-hook): Customize.
15772 (f90-mode): Set add-log-current-defun-function.
15773 (f90-current-defun): New function.
15774
15775 2000-03-16 Gerd Moellmann <gerd@gnu.org>
15776
15777 * cus-edit.el (custom-variable-tag-face): Handle case that
15778 default face's height is not a number.
15779 (custom-face-tag-face, custom-group-tag-face-1)
15780 (custom-group-tag-face): Ditto.
15781 (custom-group-tag-face-1): Add :group.
15782
15783 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
15784
15785 2000-03-15 Gerd Moellmann <gerd@gnu.org>
15786
15787 * pcvs-defs.el (toplevel): Remove autoload cookie for form
15788 requiring easymenu.
15789
15790 2000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
15791
15792 * ps-print.el: PostScript user-defined prologue, PostScript error
15793 handler, doc fix.
15794 (ps-print-version): New version number (5.1).
15795 (ps-user-defined-prologue, ps-error-handler-message)
15796 (ps-print-prologue-0, ps-error-handler-alist): New vars.
15797 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
15798 (ps-insert-string): New function.
15799
15800 2000-03-15 Kenichi Handa <handa@etl.go.jp>
15801
15802 * international/ccl.el (ccl-compile-expression): Don't generate
15803 invalid self-assignment code.
15804
15805 2000-03-14 Dave Love <fx@gnu.org>
15806
15807 * subr.el (replace-regexp-in-string): Renamed from
15808 replace-regexps-in-string. Doc fix.
15809
15810 2000-03-12 Dave Love <fx@gnu.org>
15811
15812 * cus-edit.el: Doc fixes.
15813 (customize-set-variable, customize-save-variable): Rename args for
15814 doc.
15815 (custom-variable-tag-face, custom-face-tag-face)
15816 (custom-group-tag-face-1, custom-group-tag-face): Modify from
15817 style which user identify as hyperlink.
15818 (hook): Don't add undefined functions to the hook.
15819 (debug-ignored-errors): Transfer message from bindings.el.
15820
15821 2000-03-12 Gerd Moellmann <gerd@gnu.org>
15822
15823 * recentf.el (recentf-keep-non-readable-files-p): Remove
15824 double/nested definition.
15825
15826 2000-03-12 Dave Love <fx@gnu.org>
15827
15828 * facemenu.el (facemenu-get-face): Use display-color-p.
15829 * enriched.el (enriched-decode-foreground): Likewise.
15830 (enriched-decode-background): Likewise.
15831 * isearch.el (isearch-highlight): Likewise.
15832 * info-look.el (info-lookup): Likewise.
15833 * simple.el (completion-setup-function): Likewise.
15834
15835 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
15836 :options.
15837
15838 * bindings.el (mode-line-format): Fix line-number and
15839 column-number items. Add help-echo for the background.
15840 (mode-line-mule-info): Modify help-echo.
15841
15842 * avoid.el (mouse-avoidance-mode): Add autoload cookie to defcustom.
15843
15844 * files.el (load-file): Allow completion to .elc.
15845
15846 * man.el: Doc fixes.
15847 (Man-init-defvars): Use display-color-p to set fontification.
15848
15849 * play/hanoi.el (hanoi-internal): Don't use oddp.
15850
15851 2000-03-12 Gerd Moellmann <gerd@gnu.org>
15852
15853 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
15854
15855 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
15856
15857 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
15858
15859 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
15860 Fix comment.
15861
15862 2000-03-10 Stefan Monnier <monnier@cs.yale.edu>
15863
15864 * font-lock.el (font-lock-keywords): Fix the doc now that
15865 regexp-opt-depth is unnecessary.
15866 (save-buffer-state): Set an edebug spec.
15867 (font-lock-fontify-anchored-keywords): Properly handle the case when
15868 the matcher goes past the limit.
15869
15870 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
15871 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
15872
15873 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
15874 dll.el and cookie.el (from Elib) with heavy renaming and other
15875 massaging.
15876
15877 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
15878 Autoload the functions used.
15879 (easy-mmode-define-syntax): Fix CL typo.
15880 (easy-mmode-define-derived-mode): Improve the docstring generation.
15881
15882 2000-03-10 Gerd Moellmann <gerd@gnu.org>
15883
15884 * textmodes/texinfo.el (texinfo-version): Variable and function
15885 removed.
15886
15887 2000-03-09 Stefan Monnier <monnier@cs.yale.edu>
15888
15889 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
15890 allow more flexibility.
15891 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New fns.
15892 (easy-mmode-defmap, easy-mmode-defsyntax)
15893 (easy-mmode-define-derived-mode): New macros.
15894
15895 2000-03-09 Didier Verna <didier@xemacs.org>
15896
15897 * rect.el (replace-rectangle): New function.
15898
15899 2000-03-09 Dave Love <fx@gnu.org>
15900
15901 * progmodes/fortran.el (fortran-comment-line-start): Define as "C".
15902 (fortran-comment-line-start-skip): Don't match cpp stuff.
15903 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
15904 (fortran-mode-map): Remove over-eager custom-menu-create for now.
15905 (fortran-mode): Don't set fortran-comment-line-start-skip,
15906 fortran-comment-line-start here. Set comment-start,
15907 add-log-current-defun.
15908 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
15909 (fortran-current-defun): New function.
15910
15911 2000-03-09 Gerd Moellmann <gerd@gnu.org>
15912
15913 * emacs-lisp/re-builder.el: New file.
15914
15915 * mouse.el (mouse-drag-region): Don't run up-event handler
15916 if hscroll has changed.
15917
15918 * octave-mod.el (octave-font-lock-keywords): To font-lock the
15919 builtin operators, use `font-lock-builtin-face' for Emacs and
15920 `font-lock-preprocessor-face' otherwise.
15921
15922 * font-lock.el (lisp-font-lock-keywords-1): Highlight
15923 `(defun (setf foo)' differently.
15924
15925 2000-03-08 Stefan Monnier <monnier@cs.yale.edu>
15926
15927 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
15928 (regexp-opt): Update comment and adapt the code the new meaning of
15929 the `paren' argument of regex-opt-group for shy-groups.
15930 (regexp-opt-depth): Handle shy groups as well as backslashed
15931 backslashes.
15932 (regexp-opt-group): Turn the leading comment into a docstring.
15933 Allow `paren' to be a string (the string to use to open a group).
15934 Remove open-presuf and close-presuf. Instead of checking for `all
15935 one-char' and then later on check for `several one-char', handle
15936 both cases close together. Also apply a more generic algorithm
15937 for suffixes (the mirror image of the algorithm used for
15938 prefixes). Use shy-groups. Use nreverse rather than reverse.
15939 (regexp-opt-try-suffix): Removed.
15940
15941 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
15942 from comint-mode-map, so we can just inherit from it. Also, move
15943 the initialization into the `defvar' since there's no docstring
15944 anyway and it's fairly short.
15945 (inferior-scheme-mode): Define it as derived-mode: the code is
15946 shorter and this way we inherit from comint-mode-map rather than
15947 copying it.
15948
15949 * subr.el (replace-regexps-in-string): Properly handle the case
15950 where we match an empty string.
15951
15952 * comint.el (comint-exec-1): Add the current-dir to the exec-path
15953 when the command has a directory component (such as "./testml").
15954 Also fix a typo in the comment.
15955
15956 2000-03-08 Gerd Moellmann <gerd@gnu.org>
15957
15958 * Makefile (compile-files): Compile files one by one because
15959 that's the only way to ensure a clean compilation environment for
15960 each individual file.
15961
15962 * frame.el (other-frame): Call x-focus-frame.
15963
15964 2000-03-07 Dave Love <fx@gnu.org>
15965
15966 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
15967 :require to defcustom.
15968
15969 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads lists.
15970
15971 * files.el (auto-mode-alist): Add configure.in.
15972
15973 * progmodes/autoconf.el: New file.
15974
15975 2000-03-07 Gerd Moellmann <gerd@gnu.org>
15976
15977 * mail/mh-e.el: Change maintainer to `none'.
15978
15979 * recentf.el (recentf-keep-non-readable-files-p): Quote args
15980 to remove-hook and add-hook.
15981
15982 2000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
15983
15984 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
15985 it as the default.
15986 (mail-send): Test mail-send-nonascii also for the new `mime' value.
15987 (sendmail-send-it): Conditionally add MIME headers specifying the
15988 used character set.
15989
15990 2000-03-07 Dave Love <fx@gnu.org>
15991
15992 * winner.el: Fix keywords, autoload cookies.
15993 Split eval-when-compile form to avoid compilation failure.
15994
15995 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
15996
15997 * international/mule.el: Modify comment about coding system
15998 property `coding-category'.
15999 (make-coding-system): New argument EOL-TYPE. Pay attention to
16000 coding-category property of PROPERTIES.
16001
16002 * international/mule-conf.el (coding-category-utf-8)
16003 (coding-category-utf-16-be, coding-category-utf-16-le): New coding
16004 categories. Include them in the argument for set-coding-priority.
16005
16006 * international/mule-cmds.el (reset-language-environment):
16007 Include coding-category-utf-8, coding-category-utf-16-be, and
16008 coding-category-utf-16-le in the argument for set-coding-priority.
16009 (reset-language-environment): Initialize coding-category-utf-8,
16010 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
16011
16012 2000-03-06 Karl Fogel <kfogel@red-bean.com>
16013
16014 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
16015 code abstracted out of `bookmark-jump-noselect'. Now tries info
16016 extensions as well as compression extensions.
16017 (bookmark-jump-noselect): Use above new func.
16018
16019 2000-03-03 Gerd Moellmann <gerd@gnu.org>
16020
16021 * strokes.el: Change maintainer's mail address.
16022
16023 2000-03-03 Kenichi Handa <handa@etl.go.jp>
16024
16025 * international/mule-diag.el (list-character-sets): Make help-echo
16026 string by substitute-command-keys.
16027 (list-character-sets): Likewise.
16028 (sort-listed-character-sets): Call help-setup-xref.
16029
16030 2000-03-02 Gerd Moellmann <gerd@gnu.org>
16031
16032 * time.el (display-time-mail-file): Add `none' to the list of choices.
16033
16034 2000-03-01 Dave Love <fx@gnu.org>
16035
16036 * help.el (help-xref-go-back): Don't try to set position.
16037
16038 * international/mule-diag.el (list-character-sets):
16039 Call help-setup-xref. Add help-echo to xrefs.
16040 (list-character-sets-1): Add help-echo to xrefs.
16041
16042 2000-03-02 Gerd Moellmann <gerd@gnu.org>
16043
16044 * frame.el (blink-cursor-mode): Switch cursor on when turning
16045 the mode off.
16046
16047 * add-log.el (add-log-current-defun): Add support for
16048 Autoconf mode.
16049
16050 * mail/rmail.el (rmail-quit-hook): New variable.
16051
16052 2000-03-01 Dave Love <fx@gnu.org>
16053
16054 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
16055
16056 * help.el (help-xref-button): Add help-echo arg.
16057 (describe-function-1, describe-variable, help-make-xrefs): Use it.
16058
16059 * faces.el (list-faces-display): Supply help-echo with help-make-xrefs.
16060
16061 * facemenu.el (list-text-properties-at): Set help-xref-stack to nil.
16062
16063 2000-03-01 Gerd Moellmann <gerd@gnu.org>
16064
16065 * image.el (defimage): Look for image files in load-path.
16066
16067 * frame.el (busy-cursor-delay-seconds): Change type to `number'.
16068
16069 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
16070
16071 * recentf.el (recentf): Added version tag to the defgroup of recentf.
16072
16073 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
16074
16075 * recentf.el (recentf-cleanup): Changed to remove excluded file too.
16076 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
16077 action to select/unselect a file.
16078 (recentf-edit-list): Code cleanup and improvement.
16079 (recentf-open-more-files-action): `recentf-open-more-files' button
16080 widget action to open a file.
16081 (recentf-open-more-files): No more use standard completion but widgets.
16082 (recentf-more-collection): Deleted.
16083 (recentf-more-history): Deleted.
16084 (recentf-setup-more-completion): Deleted.
16085
16086 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
16087
16088 * recentf.el (recentf-mode): No more needs that Emacs is running
16089 under a window-system.
16090
16091 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
16092
16093 * recentf.el (recentf-edit-list): New command to edit the recent
16094 list which allow the user to remove files.
16095 (recentf-edit-selected-items): New global variable, used by
16096 `recentf-edit-list' to hold the list of files to be removed from
16097 the recent list.
16098 (recentf-make-menu-items): Updated to display a "Edit list..."
16099 menu item. Minor code cleanup.
16100
16101 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
16102
16103 * recentf.el (recentf-open-more-files): New command to open files
16104 that are not displayed in the menu.
16105 (recentf-more-collection): New global variable holding the set of
16106 permissible completions used by `recentf-open-more-files'.
16107 (recentf-more-history): New global variable holding the history list
16108 used by `recentf-open-more-files' completion.
16109 (recentf-setup-more-completion): New function to setup completion for
16110 `recentf-open-more-files'.
16111 (recentf-make-menu-items): Updated to display a "More..." menu item.
16112
16113 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
16114
16115 * recentf.el (recentf-menu-action): Doc fixed.
16116
16117 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
16118
16119 * recentf.el (recentf-menu-filter): Doc updated.
16120 (recentf-update-menu-hook): Allow menu filters to force menu update.
16121 (recentf-make-menu-items): New menu filter handling.
16122 (recentf-make-menu-item): New helper function.
16123 (recentf-menu-elements): New menu handling function.
16124 (recentf-sort-ascending): Updated to new menu filter handling.
16125 (recentf-sort-descending): Updated to new menu filter handling.
16126 (recentf-sort-basenames-ascending): New menu filter function.
16127 (recentf-sort-basenames-descending): New menu filter function.
16128 (recentf-show-basenames): New menu filter function.
16129 (recentf-show-basenames-ascending): New menu filter function.
16130 (recentf-show-basenames-descending): New menu filter function.
16131
16132 2000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
16133
16134 * diary-lib.el (list-diary-entries): Don't try to go forward at
16135 the end of the buffer.
16136
16137 2000-02-29 Kenichi Handa <handa@etl.go.jp>
16138
16139 * international/mule-diag.el (list-character-sets):
16140 Completely rewritten.
16141 (sort-listed-character-sets): New function.
16142 (list-character-sets-1): Completely rewritten.
16143 (list-character-sets-2): New function.
16144 (non-iso-charset-alist): New variable.
16145 (decode-codepage-char): New function.
16146 (charset-history): New variable.
16147 (read-charset) (list-block-of-chars)
16148 (list-iso-charset-chars)
16149 (list-non-iso-charset-chars)
16150 (list-charset-chars): New functions.
16151 (mule-diag): Call list-character-sets-2, not
16152 list-character-sets-2.
16153 (dump-charsets): Likewise.
16154
16155 2000-02-29 Gerd Moellmann <gerd@gnu.org>
16156
16157 * dired-x.el (dired-filename-at-point): Add `@' to valid
16158 file name characters.
16159 (dired-filename-at-point): Handle ange-ftp file names.
16160
16161 * frame.el (frame-notice-user-settings): Use assq-delete-all
16162 instead of assoc-delete-all.
16163 (frame-notice-user-settings): Ditto.
16164
16165 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
16166 Don't copy alist.
16167
16168 2000-02-28 Eli Barzilay <eli@cs.cornell.edu>
16169
16170 * calculator.el (calculator-use-menu): New option.
16171 (calculator-initial-bindings): Changed some bindings to work as
16172 macros.
16173 (calculator-forced-input): Removed.
16174 (calculator-restart-other-mode): New variable.
16175 (calculator-mode-map): Set up menu.
16176
16177 2000-02-28 Jari Aalto <jari.aalto@poboxes.com>
16178
16179 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
16180 tags.
16181
16182 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
16183
16184 * viper-cmd.el (viper-envelop-ESC-key): added the option to
16185 translate all ESC key sequences.
16186 (viper-goto-mark-subr): restore markers for files for which
16187 they were saved.
16188 * viper-init.el (viper-translate-all-ESC-keysequences): new variable.
16189 * viper-util.el (viper-set-replace-overlay-glyphs,
16190 viper-set-replace-overlay): always check if the replacement
16191 overlay is live.
16192 * viper.el (viper-vi-state-mode-list): added major modes.
16193 * ediff-wind.el: minor comment changes.
16194 * ediff.el: copyright notice date fix.
16195
16196 2000-02-27 Jason Rumney <jasonr@gnu.org>
16197
16198 * faces.el (face-font-family-alternatives): Add arial to helv.
16199 (mode-line, header-line, tool-bar): Same default as x for w32.
16200 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
16201 face-font-family-alternatives from working.
16202 * term/w32-win.el (mouse-set-font): Do not build fontset from
16203 chosen font.
16204
16205 2000-02-25 Sam Steingold <sds@goems.com>
16206
16207 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
16208 properly.
16209
16210 2000-02-25 Richard M. Stallman <rms@gnu.org>
16211
16212 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
16213
16214 2000-02-25 Gerd Moellmann <gerd@gnu.org>
16215
16216 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer
16217 writable.
16218
16219 * frame.el (busy-cursor-delay-seconds): New option.
16220
16221 2000-02-24 Gerd Moellmann <gerd@gnu.org>
16222
16223 * frame.el (show-cursor-in-non-selected-windows): New option.
16224
16225 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
16226
16227 * diary-lib.el (include-other-diary-files): Undo the selective
16228 display in any included file and don't kill it.
16229
16230 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
16231
16232 * dired.el (dired-mode-map): Don't remove "Edit" from the menu
16233 bar. Menu items converted to (menu-item format, help strings
16234 added.
16235 [downcase, upcase]: Don't enable on MS-DOS.
16236 [symlink, symlinks]: Don't show if make-symbolic-link is not
16237 bound.
16238 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
16239
16240 2000-02-23 Dave Love <fx@gnu.org>
16241
16242 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
16243 (backward-kill-word): Revert addition of * to interactive spec --
16244 it's a feature.
16245
16246 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
16247 (backward-kill-sentence, kill-sentence): Likewise.
16248
16249 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
16250 scratch buffer name.
16251 (gud-format-command): Use int-to-string in ?l case. Simplify
16252 slightly.
16253
16254 * term/w32-win.el (internal-face-interactive): Update prompt for
16255 new read-face-name.
16256
16257 * mail/footnote.el (footnote): Add :version to defgroup.
16258 (footnote-section-tag-regexp): Customize.
16259 (footnote-start-tag, footnote-end-tag): New option.
16260 (footnote-latin-regexp): New variable.
16261 (Footnote-latin): New function.
16262 (footnote-style-alist): Add element for latin style.
16263 (footnote-style): Moved.
16264 (Footnote-goto-footnote): Use eq to test arg.
16265
16266 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
16267
16268 * emacs-lisp/byte-opt.el: Change old backquote syntax.
16269 (byte-compile-trueconstp): Include keywords.
16270 (byte-optimize-quote, byte-optimize-lapcode): Use
16271 byte-compile-const-symbol-p.
16272 (byte-optimize-char-before): New optimization.
16273
16274 * emacs-lisp/bytecomp.el: Change old backquote syntax.
16275 (byte-compile-const-symbol-p): New function.
16276 (byte-compile-constp, byte-compile-out-toplevel)
16277 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
16278 Use it.
16279
16280 * subr.el (define-key-after): Default AFTER to t. Doc fix.
16281
16282 2000-02-23 Kenichi Handa <handa@etl.go.jp>
16283
16284 * international/encoded-kb.el: Be sure to update minor-mode-alist
16285 and minor-mode-map-alist.
16286 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
16287 codes SS2 and SS3 correctly.
16288 (encoded-kbd-self-insert-ccl): New function.
16289 (encoded-kbd-setup-keymap): New function.
16290 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
16291 by calling encoded-kbd-setup-keymap.
16292
16293 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte
16294 characters.
16295 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t
16296 locally.
16297
16298 2000-02-22 Dave Love <fx@gnu.org>
16299
16300 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
16301 (lisp-mode-map, lisp-interaction-mode-map): Define all inside
16302 defvar.
16303 (lisp-mode-syntax-table): Set up for #|...|# comments.
16304 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
16305 classes. Match `defface'.
16306 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
16307 (eval-defun-1): Fix for defcustom.
16308 (lisp-indent-region): Doc fix.
16309
16310 * subr.el (when, unless, split-string): Doc fix.
16311 (read-passwd): Move call of clear-this-command-keys to the right
16312 place.
16313 (replace-regexps-in-string): New function.
16314
16315 2000-02-22 Gerd Moellmann <gerd@gnu.org>
16316
16317 * help.el (describe-variable): Set syntax table to
16318 emacs-lisp-mode-syntax-table when moving forward over the
16319 symbol's name.
16320
16321 2000-02-22 Dave Love <fx@gnu.org>
16322
16323 * xt-mouse.el: Doc fixes.
16324 (xterm-mouse-position-function): New function, replacing advice of
16325 mouse-position.
16326 (xterm-mouse-mode): Use it. Don't turn on under a window system.
16327
16328 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
16329
16330 2000-02-21 Gerd Moellmann <gerd@gnu.org>
16331
16332 * format.el (format-annotate-single-property-change): Handle
16333 properties.with dotted-list values.
16334 (format-proper-list-p): New function.
16335
16336 * enriched.el (enriched-face-ans): Handle '(foreground-color
16337 . COLOR) and (background-color . COLOR).
16338
16339 2000-02-20 Dave Love <fx@gnu.org>
16340
16341 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
16342 and assignments to it.
16343 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
16344 current local map.
16345 (make-flyspell-overlay): Use it.
16346 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
16347
16348 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
16349 (lm-get-header-re): Defun, not defsubst.
16350 (lm-get-package-name): Defun, not defsubst. Simplify.
16351 (lm-version): Doc fix. Simplify.
16352 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
16353 (lm-crack-address, lm-last-modified-date, lm-commentary)
16354 (lm-verify, lm-synopsis): Simplify.
16355 (lm-report-bug): Require emacsbug. Use compose-mail.
16356
16357 2000-02-20 Gerd Moellmann <gerd@gnu.org>
16358
16359 * dired.el (dired-mode): Call propertized-buffer-identification
16360 to set mode-line-buffer-identification to something having
16361 the right text properties.
16362
16363 * bindings.el (propertized-buffer-identification): New function.
16364
16365 2000-02-20 Dave Love <fx@gnu.org>
16366
16367 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
16368 check for t-mouse too.
16369
16370 * cus-start.el: Make echo-keystrokes `number'.
16371
16372 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
16373
16374 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
16375 Don't call ring-empty-p unless tags-location-ring is bound.
16376 From Noah Friedman <friedman@splode.com>.
16377
16378 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
16379
16380 * progmodes/hideshow.el (hs-flag-region): No longer use
16381 `intangible' overlay property.
16382
16383 (hs-toggle-hiding): New command.
16384 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
16385
16386 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
16387 Fix omission bug: Run `hs-minor-mode-hook' for both activation
16388 and deactivation.
16389
16390 2000-02-18 Gerd Moellmann <gerd@gnu.org>
16391
16392 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
16393
16394 2000-02-17 Gerd Moellmann <gerd@gnu.org>
16395
16396 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
16397
16398 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
16399 of `*' to handle `(* ... *)' comments.
16400
16401 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
16402
16403 * faces.el (list-faces-display): Use display-mouse-p instead of
16404 window-system.
16405
16406 * menu-bar.el (global-map): Menu-bar items converted to the new
16407 format (menu-item..., rearranged for better CUA compliance, and
16408 their names changed for better clarity. Help strings added.
16409
16410 * international/mule-cmds.el (mule-menu-keymap)
16411 (describe-language-environment-map, set-coding-system-map)
16412 (setup-language-environment-map): Convert to new (menu-item...
16413 form, add help strings. Change names of menu items for better
16414 clarity. "Mule" menu-bar item removed (it's now in the "Options"
16415 submenu).
16416
16417 2000-02-17 Gerd Moellmann <gerd@gnu.org>
16418
16419 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
16420 within the code.
16421
16422 2000-02-16 Dave Love <fx@gnu.org>
16423
16424 * faces.el: Don't require custom. Add more specific :groups to
16425 various deffaces.
16426 (set-face-attribute): Purecopy args.
16427 (read-face-name): Default to name at point and use it in prompt.
16428 Remove colon from arg in all callers.
16429 (list-faces-display): Hyperlink to face descriptions and customize
16430 buffers.
16431
16432 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
16433
16434 * wid-edit.el (widget-match-inline): An atom never matches a
16435 list.
16436
16437 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16438
16439 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
16440 at ':' characters by call to split-string.
16441
16442 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16443
16444 * textmodes/bibtex.el: Added RCS version identification.
16445
16446 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16447
16448 * textmodes/bibtex.el: Some temporary comments removed.
16449 (bibtex-field-name, bibtex-entry-type): Made the relationship
16450 explicit.
16451 (bibtex-field-const): Allow capital letters.
16452 (bibtex-start-of-string): Deleted because unused.
16453
16454 * textmodes/bibtex.el: Unified some nomenclature. We no longer
16455 use the term 'reference' to describe a bibtex entry as a whole.
16456 Further, reference keys are no longer called 'labels'.
16457 (bibtex-keys): Renamed to bibtex-reference-keys.
16458 (bibtex-reformat-previous-labels): Renamed to
16459 bibtex-reformat-previous-reference-keys.
16460 (bibtex-reference-type): Renamed to bibtex-entry-type.
16461 (bibtex-reference-head): Renamed to bibtex-entry-head.
16462 (bibtex-reference-maybe-empty-head): Renamed to
16463 bibtex-entry-maybe-empty-head.
16464 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
16465 (bibtex-search-reference): Renamed to bibtex-search-entry.
16466 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
16467 bibtex-enclosing-entry-maybe-empty-head.
16468 (bibtex-entry-field-alist, bibtex-entry-head,
16469 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
16470 bibtex-map-entries, bibtex-search-entry,
16471 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
16472 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
16473 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
16474 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
16475 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
16476 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
16477 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
16478
16479 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16480
16481 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
16482 comment.
16483 (bibtex-format-field-delimiters): New function, functionality
16484 extracted from bibtex-format-entry.
16485 (bibtex-autokey-get-yearfield-digits): New function, functionality
16486 extracted from bibtex-autokey-get-yearfield.
16487
16488 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
16489 entries in order to avoid stack overflow in the regexp matcher if
16490 field contents become large.
16491 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
16492 bibtex-field-string-part-not-braced,
16493 bibtex-field-string-part-no-inner-braces,
16494 bibtex-field-string-part-1-inner-brace,
16495 bibtex-field-string-part-2-inner-braces,
16496 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
16497 bibtex-field-string-quoted, bibtex-field-string,
16498 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
16499 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
16500 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
16501 as parsing is now performed by the following functions.
16502 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
16503 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
16504 bibtex-parse-field-string, bibtex-search-forward-field-string,
16505 bibtex-parse-association, bibtex-field-name-for-parsing,
16506 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
16507 bibtex-search-forward-field, bibtex-search-backward-field,
16508 bibtex-start-of-field, bibtex-end-of-field,
16509 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
16510 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
16511 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
16512 bibtex-parse-string, bibtex-search-forward-string,
16513 bibtex-search-backward-string, bibtex-start-of-string,
16514 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
16515 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
16516 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
16517 entries. Instead of reporting the results of the parsing by
16518 match-beginning or match-end, these functions return data structures
16519 that hold the corresponding positions.
16520 (bibtex-enclosing-field): Changed to also report field boundaries by
16521 return values rather than by match-beginning or match-end. The
16522 following functions have been adapted to use the new parsing
16523 functions.
16524 (bibtex-skip-to-valid-entry, bibtex-search-reference,
16525 bibtex-enclosing-field, bibtex-format-entry,
16526 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
16527 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
16528 bibtex-print-help-message, bibtex-end-of-entry,
16529 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
16530 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
16531 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
16532 method for parsing.
16533 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
16534 bibtex-map-entries, bibtex-flash-head,
16535 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
16536 bibtex-autokey-change, bibtex-autokey-get-namefield,
16537 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
16538 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
16539 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
16540 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
16541 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
16542 order to make the new binding of case-fold-search immediately
16543 visible.
16544
16545 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16546
16547 * textmodes/bibtex.el: Copyright notice is up to date.
16548 Added constant 'bibtex-maintainer-salutation.
16549
16550 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
16551 than make-temp-name, use match-string-no-properties and eliminate
16552 a quadratic behavior when building bibtex-strings.
16553
16554 * bibtex.el (bibtex-reference-key): Accept string entries whose
16555 reference key contains upper case letters.
16556
16557 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16558
16559 * bibtex.el (bibtex-reference-head): Allow entries to start with
16560 a new line.
16561
16562 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16563
16564 * bibtex.el: Hiding of entry bodies is not longer provided by
16565 bibtex.el directly. Instead the hideshow package can be used.
16566 Added a special bibtex entry to hs-special-modes-alist.
16567 (bibtex-hs-forward-sexp): Added for hideshow.el.
16568
16569 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16570
16571 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
16572 at ':' characters by call to split-string.
16573
16574 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16575
16576 * textmodes/bibtex.el: Added RCS version identification.
16577
16578 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16579
16580 * textmodes/bibtex.el: Some temporary comments removed.
16581 (bibtex-field-name, bibtex-entry-type): Made the relationship
16582 explicit.
16583 (bibtex-field-const): Allow capital letters.
16584 (bibtex-start-of-string): Deleted because unused.
16585
16586 * textmodes/bibtex.el: Unified some nomenclature. We no longer
16587 use the term 'reference' to describe a bibtex entry as a whole.
16588 Further, reference keys are no longer called 'labels'.
16589 (bibtex-keys): Renamed to bibtex-reference-keys.
16590 (bibtex-reformat-previous-labels): Renamed to
16591 bibtex-reformat-previous-reference-keys.
16592 (bibtex-reference-type): Renamed to bibtex-entry-type.
16593 (bibtex-reference-head): Renamed to bibtex-entry-head.
16594 (bibtex-reference-maybe-empty-head): Renamed to
16595 bibtex-entry-maybe-empty-head.
16596 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
16597 (bibtex-search-reference): Renamed to bibtex-search-entry.
16598 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
16599 bibtex-enclosing-entry-maybe-empty-head.
16600 (bibtex-entry-field-alist, bibtex-entry-head,
16601 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
16602 bibtex-map-entries, bibtex-search-entry,
16603 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
16604 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
16605 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
16606 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
16607 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
16608 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
16609 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
16610
16611 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16612
16613 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
16614 comment.
16615 (bibtex-format-field-delimiters): New function, functionality
16616 extracted from bibtex-format-entry.
16617 (bibtex-autokey-get-yearfield-digits): New function, functionality
16618 extracted from bibtex-autokey-get-yearfield.
16619
16620 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
16621 entries in order to avoid stack overflow in the regexp matcher if
16622 field contents become large.
16623 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
16624 bibtex-field-string-part-not-braced,
16625 bibtex-field-string-part-no-inner-braces,
16626 bibtex-field-string-part-1-inner-brace,
16627 bibtex-field-string-part-2-inner-braces,
16628 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
16629 bibtex-field-string-quoted, bibtex-field-string,
16630 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
16631 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
16632 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
16633 as parsing is now performed by the following functions.
16634 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
16635 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
16636 bibtex-parse-field-string, bibtex-search-forward-field-string,
16637 bibtex-parse-association, bibtex-field-name-for-parsing,
16638 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
16639 bibtex-search-forward-field, bibtex-search-backward-field,
16640 bibtex-start-of-field, bibtex-end-of-field,
16641 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
16642 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
16643 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
16644 bibtex-parse-string, bibtex-search-forward-string,
16645 bibtex-search-backward-string, bibtex-start-of-string,
16646 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
16647 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
16648 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
16649 entries. Instead of reporting the results of the parsing by
16650 match-beginning or match-end, these functions return data structures
16651 that hold the corresponding positions.
16652 (bibtex-enclosing-field): Changed to also report field boundaries by
16653 return values rather than by match-beginning or match-end. The
16654 following functions have been adapted to use the new parsing
16655 functions.
16656 (bibtex-skip-to-valid-entry, bibtex-search-reference,
16657 bibtex-enclosing-field, bibtex-format-entry,
16658 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
16659 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
16660 bibtex-print-help-message, bibtex-end-of-entry,
16661 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
16662 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
16663 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
16664 method for parsing.
16665 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
16666 bibtex-map-entries, bibtex-flash-head,
16667 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
16668 bibtex-autokey-change, bibtex-autokey-get-namefield,
16669 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
16670 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
16671 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
16672 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
16673 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
16674 order to make the new binding of case-fold-search immediately
16675 visible.
16676
16677 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16678
16679 * textmodes/bibtex.el: Copyright notice is up to date.
16680 Added constant 'bibtex-maintainer-salutation.
16681
16682 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
16683 than make-temp-name, use match-string-no-properties and eliminate
16684 a quadratic behavior when building bibtex-strings.
16685
16686 * bibtex.el (bibtex-reference-key): Accept string entries whose
16687 reference key contains upper case letters.
16688
16689 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16690
16691 * bibtex.el (bibtex-reference-head): Allow entries to start with
16692 a new line.
16693
16694 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16695
16696 * bibtex.el: Hiding of entry bodies is not longer provided by
16697 bibtex.el directly. Instead the hideshow package can be used.
16698 Added a special bibtex entry to hs-special-modes-alist.
16699 (bibtex-hs-forward-sexp): Added for hideshow.el.
16700
16701 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16702
16703 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
16704 proceedings entry type (for cross referencing). Thanks to Wagner
16705 Toledo Correa for the suggestion.
16706
16707 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
16708
16709 2000-02-14 Kenichi Handa <handa@etl.go.jp>
16710
16711 * international/characters.el: Setup case table for Vietnamese.
16712
16713 2000-02-12 Gerd Moellmann <gerd@gnu.org>
16714
16715 * uniquify.el (toplevel): Require CL at compile time.
16716 (uniquify-push): Removed.
16717
16718 * shadowfile.el (shadow-when): Removed.
16719
16720 * tempo.el (tempo-dolist, tempo-mapc): Removed.
16721 (tempo-process-and-insert-string): Use dolist instead of
16722 tempo-dolist.
16723
16724 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
16725 regexp for paragraph-start.
16726
16727 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
16728 commas as well.
16729
16730 2000-02-10 Dave Love <fx@gnu.org>
16731
16732 * wid-edit.el: (widgets) [defgroup]: Remove url link.
16733 (widget-color-choice-list, widget-color-history, widget-mouse-help):
16734 Deleted.
16735 (widget-specify-field, widget-specify-button): Don't use
16736 widget-mouse-help as help-echo property.
16737 (default): Use #'ignore for :validate and :mouse-down-action.
16738 (checkbox): Add help-echo.
16739 (widget-sexp-validate): Rewritten to clarify error messages.
16740 (character): Use char-valid-p in :match function.
16741 (widget-color-complete): Use facemenu-color-alist.
16742 (widget-color-action): Use facemenu-read-color.
16743
16744 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
16745 set up `caar' &c that we now have.
16746
16747 2000-02-09 Ray Blaak <blaak@gnu.org>
16748
16749 * delphi.el: Make resourcestring a declaration region, like const
16750 and var.
16751
16752 2000-02-09 Dave Love <fx@gnu.org>
16753
16754 * bindings.el (mode-line-input-method-map): New variable.
16755 (mode-line-mule-info): Use it; fix last change.
16756 (mode-line-mode-menu): Move definition.
16757 (mode-line-mouse-sensitive-p): Deleted.
16758 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
16759 (make-mode-line-mouse-sensitive): Deleted. Body moved to top
16760 level.
16761
16762 * startup.el (command-line-1): Don't call
16763 make-mode-line-mouse-sensitive.
16764
16765 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
16766
16767 * mail/rmail.el (rmail-retry-failure): Use
16768 rmail-beginning-of-message before rmail-toggle-header, because the
16769 former toggles headers.
16770
16771 2000-02-06 Stefan Monnier <monnier@cs.yale.edu>
16772
16773 * diff-mode.el (diff-kill-junk): New interactive function.
16774 (diff-reverse-direction): Use delete-and-extract-region.
16775 (diff-post-command-hook): Restrict the area so that the hook also works
16776 outside of any diff hunk. This is necessary for the minor-mode.
16777 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
16778 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
16779
16780 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
16781 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
16782 so that it can be used more easily in <foo>-mode-hook. Also make sure
16783 to avoid duplicate entries.
16784 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
16785 (font-lock-remove-keywords): Just as was done for `add', allow it to
16786 work even if font-lock-mode is nil. Also make sure we don't modify
16787 any pre-existing list by forcing a copy-sequence. Finally rename
16788 `major-mode' to `mode'.
16789 (font-lock-fontify-syntactic-anchored-keywords)
16790 (font-lock-fontify-anchored-keywords)
16791 (font-lock-fontify-keywords-region): Use line-end-position.
16792 Don't make `font-lock-multiline' local (it's now done in
16793 font-lock-set-defaults).
16794 (font-lock-set-defaults): Make `font-lock-multiline' local. Also
16795 move the `font-lock-fontified' creation to inside the `unless'.
16796
16797 2000-02-06 Andrew Innes <andrewi@gnu.org>
16798
16799 * term/w32-win.el (x-handle-args): Comment out call to message,
16800 which occurs before window system is initialized.
16801
16802 * makefile.nt: Add support for recompiling lisp code.
16803
16804 2000-02-04 Dave Love <fx@gnu.org>
16805
16806 * bindings.el (mode-line-mule-info): Fix/extend last change.
16807
16808 * completion.el: Replace completion-dolist with dolist.
16809
16810 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
16811 dotimes.
16812
16813 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
16814
16815 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
16816 environment names before they go into the section regexp.
16817
16818 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
16819 char class in regexp.
16820
16821 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
16822 `case-fold-search' to nil.
16823
16824 * progmodes/idlwave.el (idlwave-template): Respect
16825 `idlwave-abbrev-change-case'.
16826 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
16827 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
16828 idlwave-while): respect `idlwave-reserved-word-upcase'.
16829 (idlwave-rw-case): New function.
16830 (idlwave-statement-match): Fixed problem with assignment regexp.
16831 (idlwave-font-lock-keywords): Improved regexp for keyword
16832 parameters.
16833 (idlwave-surround): New argument LENGTH to support padding of
16834 operators longer than 1 char.
16835
16836 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
16837 idlwave-shell-expression-overlay. Implemented printing of
16838 expressions on higher levels of the calling stack.
16839 (idlwave-shell-display-level-in-calling-stack): Restore stack
16840 level.
16841 (idlwave-retrieve-expression-from-level): New function.
16842 (idlwave-shell-last-calling-stack): Variable removed.
16843 (idlwave-shell-reset): Argument action reversed (`visible' to
16844 `hidden'). Also remove stop-line overlay.
16845 (idlwave-shell-calling-stack-routine): New variable.
16846 (idlwave-shell-parse-stack-and-display): Messages now display
16847 negative level numbers.
16848 (idlwave-shell-mode): Set `modeline-format'.
16849 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
16850 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
16851 21.
16852 (idlwave-shell-print-expression-function): New option.
16853
16854 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
16855 idlwave-toolbar-remove-everywhere): Keybindings prefix is now
16856 `tool-bar' instead of `toolbar'.
16857
16858 2000-02-02 Dave Love <fx@gnu.org>
16859
16860 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
16861 emacs-lisp-mode-hook. Don't check for defalias being defined.
16862
16863 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
16864 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use
16865 the new builtins directly.
16866
16867 * whitespace.el (whitespace): Add :version to defgroup.
16868
16869 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
16870 Doc fix.
16871
16872 * thingatpt.el (sexp-at-point, symbol-at-point)
16873 (number-at-point, list-at-point): Add autoload cookie.
16874
16875 * recentf.el (recentf): Add :version to defgroup.
16876
16877 * quickurl.el (quickurl): Add :version to defgroup.
16878
16879 * elide-head.el (elide-head): Use point-marker more.
16880
16881 * bs.el (bs): Add :version to defgroup.
16882
16883 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
16884
16885 * progmodes/delphi.el (delphi): Add :version to defgroup.
16886
16887 2000-02-02 Gerd Moellmann <gerd@gnu.org>
16888
16889 * ange-ftp.el (ange-ftp-write-region): Handle case that
16890 succeeding process operation sets a different coding system.
16891
16892 * calculator.el: New file.
16893
16894 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
16895
16896 * frame.el (frames-on-display-list, framep-on-display): New
16897 functions.
16898 (display-mouse-p, display-popup-menus-p, display-graphic-p)
16899 (display-selections-p, display-screens, display-pixel-width)
16900 (display-pixel-height, display-mm-width, display-mm-height)
16901 (display-backing-store, display-save-under, display-planes)
16902 (display-color-cells, display-visual-class): New functions.
16903
16904 * term/tty-colors.el (tty-color-gray-shades): New function.
16905
16906 * faces.el (display-color-p): Use framep-on-display.
16907 (display-grayscale-p): New function.
16908
16909 2000-01-31 Dave Love <fx@gnu.org>
16910
16911 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
16912 (create-fontset-from-x-resource): Don't concat integers.
16913
16914 2000-01-31 Inge Frick <inge@nada.kth.se>
16915
16916 * view.el: Some changes in documentation. Removed some trailing
16917 whitespace. Changed some parameter names to agree with
16918 documentation.
16919 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
16920 window is not deleted. Modifies change 1998-04-26.
16921
16922 2000-01-31 Gerd Moellmann <gerd@gnu.org>
16923
16924 * windmove.el: New file.
16925
16926 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
16927 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
16928 progmodes/ebnf-yac.el: Update copyright and license info.
16929
16930 * jit-lock.el (jit-lock-function): Widen before calculating end
16931 position.
16932 (jit-lock-stealth-chunk-start): Rewritten.
16933
16934 * info.el (Info-title-face-alist): Removed.
16935 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
16936 faces.
16937 (Info-fontify-node): Use these faces.
16938
16939 2000-01-30 Gerd Moellmann <gerd@gnu.org>
16940
16941 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
16942 (cl-macro-list1): Recognize `&allow-other-keys' instead of
16943 `&allow-other-keywords'.
16944
16945 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
16946 the list of directories scanned heuristically.
16947
16948 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
16949 exist.
16950
16951 2000-01-30 Jason Rumney <jasonr@gnu.org>
16952
16953 * w32-fns.el: Define w32-tty-standard-colors.
16954
16955 * startup.el (command-line): Use w32-tty-standard-colors when in
16956 w32 console mode.
16957
16958 2000-01-30 Dave Love <fx@gnu.org>
16959
16960 * jka-compr.el (jka-compr-load): Fix up load-history.
16961
16962 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
16963
16964 * emacs-lisp/cl-macs.el: Revert previous change.
16965
16966 2000-01-29 Dave Love <fx@gnu.org>
16967
16968 * facemenu.el: Purecopy various strings.
16969
16970 * timezone.el (timezone-fix-time): Window against 69 for two-digit
16971 years. Deal with three-digit years.
16972
16973 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
16974 defconst, purecopy.
16975 (help-back-label): Purecopy it.
16976
16977 2000-01-18 Gerd Moellmann <gerd@gnu.org>
16978
16979 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
16980 variable. If non-nil, order the buffer list according to the
16981 currently selected frame.
16982 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
16983 non-nil, pass the selected frame to function buffer-list.
16984
16985 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
16986
16987 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
16988
16989 2000-01-28 Dave Love <fx@gnu.org>
16990
16991 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
16992
16993 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
16994 Don't use lisp-indent-hook property.
16995 (cl-abs): Remove.
16996
16997 * subr.el: Move out indent and edebug specs for when and unless.
16998
16999 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
17000 when, unless.
17001
17002 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
17003 unless, when.
17004
17005 2000-01-28 Gerd Moellmann <gerd@gnu.org>
17006
17007 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
17008 `collecting' as synonym for `collect'.
17009
17010 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
17011 for the case it contains spaces.
17012
17013 * simple.el (what-cursor-position): Change formatting of
17014 messages.
17015
17016 * frame.el (delete-other-frames): New function.
17017 (toplevel): Bind it to C-x 5 1.
17018
17019 * sort.el (sort-numeric-base): New option.
17020 (sort-numeric-fields): If number starts with `0' or `0[xX[',
17021 interpret it as octal or hexadecimal. Use sort-numeric-base
17022 as default base.
17023
17024 * progmodes/glasses.el: New file.
17025
17026 2000-01-27 Gerd Moellmann <gerd@gnu.org>
17027
17028 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
17029 userids differently.
17030
17031 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
17032 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
17033 progmodes/ebnf-yac.el: New files.
17034
17035 2000-01-26 Dave Love <fx@gnu.org>
17036
17037 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
17038 on a function with an empty body. [From Eric Ludlam.]
17039
17040 2000-01-25 Andre Spiegel <spiegel@gnu.org>
17041
17042 * vc.el (vc-version-diff): Make sure file name is expanded.
17043
17044 2000-01-25 Gerd Moellmann <gerd@gnu.org>
17045
17046 * scroll-bar.el (scroll-bar-timer): Variable removed.
17047 (scroll-bar-toolkit-scroll): Don't use a timer.
17048
17049 2000-01-25 Kenichi Handa <handa@etl.go.jp>
17050
17051 * language/thai-util.el (thai-composition-function): Delete
17052 superfluous `a'.
17053
17054 2000-01-24 Dave Love <fx@gnu.org>
17055
17056 * fortran.el (fortran-mode): Use beginning-of-defun-function,
17057 end-of-defun-function.
17058
17059 * font-lock.el (turn-on-font-lock): Don't depend on window-system
17060 &c.
17061
17062 2000-01-22 Jason Rumney <jasonr@gnu.org>
17063
17064 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
17065 conflicts with new face support.
17066
17067 2000-01-22 Richard M. Stallman <rms@gnu.org>
17068
17069 * replace.el (query-replace): Rename last arg to DELIMITED.
17070 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
17071 (query-replace-regexp): Likewise.
17072
17073 2000-01-20 Richard M. Stallman <rms@gnu.org>
17074
17075 * subr.el (with-syntax-table): Use make-symbol, not gensym.
17076
17077 * emacs-lisp/lisp.el (beginning-of-defun-function):
17078 Variable renamed from beginning-of-defun.
17079 Do not call make-variable-buffer-local.
17080 (beginning-of-defun-raw): Use new variable name; doc fix.
17081 (beginning-of-defun): Doc fix.
17082 (end-of-defun-function): Variable renamed from end-of-defun.
17083 Do not call make-variable-buffer-local.
17084 (end-of-defun): Use new variable name; doc fix.
17085
17086 * subr.el (dolist, dotimes): Copied from cl-macs.el
17087 and made to work.
17088
17089 * mail/undigest.el (rmail-digest-end-regexps):
17090 Variable replaces rmail-digest-end-regexp.
17091 Allows multiple regexps for detecting the end line.
17092 (undigestify-rmail-message): Corresponding changes.
17093
17094 2000-01-19 Dave Love <fx@gnu.org>
17095
17096 * files.el (user-init-file): Don't declare here -- is primitive.
17097
17098 * startup.el (command-line): Check for compiled user-init-file and
17099 set to uncompiled version if necessary.
17100
17101 2000-01-18 Gerd Moellmann <gerd@gnu.org>
17102
17103 * mail/undigest.el (rmail-digest-end-regexp): New user option.
17104 (undigestify-rmail-message): Use it.
17105
17106 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
17107
17108 2000-01-17 Gerd Moellmann <gerd@gnu.org>
17109
17110 * tmm.el (tmm-goto-completions): Adapt to prompt being part
17111 of mini-buffer.
17112
17113 2000-01-14 Gerd Moellmann <gerd@gnu.org>
17114
17115 * emacs-lisp/copyright.el (copyright-update): Removed the
17116 requirement for a trailing space from `copyright-regexp', to
17117 support copyrights with owner specified on a separate line..
17118
17119 * align.el: New file.
17120
17121 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
17122
17123 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
17124
17125 2000-01-13 Dave Love <fx@gnu.org>
17126
17127 * ph.el: Removed. (Obsoleted by EUDC.)
17128
17129 2000-01-13 Gerd Moellmann <gerd@gnu.org>
17130
17131 * net/eudc.el (toplevel): Remove autoloaded code installing
17132 menu with easymenu, because that causes build problems.
17133
17134 * frame.el (frame-notice-user-settings): New variable.
17135 (frame-notice-user-settings): Don't modify frame parameters
17136 if called a second time.
17137
17138 2000-01-13 Richard M. Stallman <rms@gnu.org>
17139
17140 * frame.el (frame-notice-user-settings):
17141 Notice default-frame-parameters even for non-window frames.
17142
17143 2000-01-13 Gerd Moellmann <gerd@gnu.org>
17144
17145 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
17146 for Emacs.
17147 (eudc-bob-can-display-inline-images): Extend for Emacs.
17148 (eudc-bob-toggle-inline-display): Ditto.
17149 (eudc-bob-display-jpeg): Ditto.
17150
17151 2000-01-12 Gerd Moellmann <gerd@gnu.org>
17152
17153 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
17154 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
17155 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
17156
17157 * add-log.el (add-change-log-entry): Fix error trying an `(insert
17158 nil)'.
17159
17160 * subdirs.el: Add `net' directory.
17161
17162 * net: New directory.
17163
17164 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
17165 eval-last-sexp. Don't bind debug-on-error here.
17166 (eval-last-sexp): New function. Bind debug-on-error if
17167 eval-expression-debug-on-error is non-nil.
17168 (eval-defun-2, eval-defun): Likewise.
17169
17170 * simple.el (eval-expression): Don't bind debug-on-error if
17171 eval-expression-debug-on-error is nil. Detect changed
17172 debug-on-error, and propagate new value to global binding, if
17173 eval-expression-debug-on-error is non-nil,
17174 (eval-expression-debug-on-error): Change doc string.
17175
17176 2000-01-11 Richard M. Stallman <rms@gnu.org>
17177
17178 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
17179
17180 * emacs-lisp/lisp-mode.el (with-syntax-table):
17181 Set up lisp-indent-function property.
17182
17183 * subr.el (with-syntax-table): Moved from simple.el.
17184
17185 * simple.el (with-syntax-table): Moved to subr.el.
17186
17187 2000-01-11 Gerd Moellmann <gerd@gnu.org>
17188
17189 * tmm.el (tmm-shortcut): Delete region after prompt instead
17190 of erasing buffer.
17191
17192 * textmodes/fill.el (fill-common-string-prefix): New function.
17193 (fill-context-prefix): Use the longest common prefix of first
17194 and second line fill prefix, if there is one.
17195
17196 2000-01-11 Richard M. Stallman <rms@gnu.org>
17197
17198 * array.el (array-mode): Don't use make-variable-buffer-local.
17199 Use make-local-variable for `truncate-lines'.
17200
17201 2000-01-11 Jari Aalto <jari.aalto@poboxes.com>
17202
17203 * add-log.el (add-log-current-defun): Handle user-defined
17204 add-log-current-function returning nil,
17205
17206 * add-log.el (add-change-log-entry): Insert version number
17207 if having found a current function
17208
17209 * add-log.el (add-log-current-defun): Call
17210 `add-log-current-defun-function'. Try matches at level 0 and
17211 level 1. Strip whitespace from defun found.
17212
17213 2000-01-10 John Wiegley <johnw@gnu.org>
17214
17215 * allout.el (isearch-done/outline-provisions): Added `edit'
17216 argument to correspond with the current definition of
17217 `isearch-done'.
17218
17219 2000-01-10 Dave Love <fx@gnu.org>
17220
17221 * elide-head.el (elide-head): Use point-marker, not point.
17222
17223 2000-01-10 Gerd Moellmann <gerd@gnu.org>
17224
17225 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
17226 before and after the year 2000.
17227
17228 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
17229 Add ispell- prefix.
17230
17231 2000-01-10 Ken Stevens <k.stevens@ieee.org>
17232
17233 * ispell.el: Only define dictionaries in menus when they exist.
17234 (version18p): New variable.
17235 (version20p): New variable.
17236 (xemacsp): New variable.
17237 (ispell-choices-win-default-height): Fix for XEmacs visibility.
17238 (ispell-dictionary-alist1): Added Brasileiro dictionary.
17239 (ispell-dictionary-alist6): Russian command lines no longer accept
17240 run-together words.
17241 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
17242 (ispell-dictionary-alist): Add koi8-r to customize definition.
17243 (check-ispell-version): Added documentation string. Returns
17244 library path when called non-interactively.
17245 (ispell-menu-map-needed): Uses new variables.
17246 (ispell-library-path): New variable.
17247 (ispell-decode-string): XEmacs fix for bogus variable bindings.
17248 (ispell-word): Improved documentation string. Test for valid
17249 character mappings. Correctly check typed in word changes that can
17250 result in single words split into multiple words. Returns
17251 replacement word.
17252 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
17253 replace in recursive query replace mode. Help message for
17254 recursive edit mode.
17255 (ispell-show-choices): Protect against bad framepop bindings.
17256 (ispell-help): Fix to work with XEmacs.
17257 (ispell-highlight-spelling-error): Use new variables.
17258 (ispell-overlay-window): Fix to work with XEmacs.
17259 (ispell-parse-output): Passed and returns location information
17260 tracking spelling corrections. Doesn't recheck same word on
17261 current line.
17262 (ispell-init-process): Protect against bogus XEmacs variable binding.
17263 Fix call to single argument in sleep-for. Use new variables.
17264 (ispell-region): Passed and returns location information tracking
17265 spelling corrections. Doesn't check same word on current line.
17266 Improved documentation string. Doesn't resend a line already
17267 checked to the ispell process - fixes bug in LaTeX parsing.
17268 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
17269 (ispell-skip-region): No longer skips <TT> in SGML.
17270 (ispell-process-line): Tracks location information with spelling
17271 corrections. Added documentation string. Accounts for words
17272 already accepted on this line. Don't allow query-replace on line
17273 starting with math characters. Doesn't resend a line already sent
17274 to ispell process. Fixes alignment error bug.
17275
17276 2000-01-10 Richard M. Stallman <rms@gnu.org>
17277
17278 * dired-x.el (dired-guess-shell-alist-default):
17279 Suggest xloadimage, which is free, not xv, which isn't.
17280
17281 * ange-ftp.el (ange-ftp-file-name-nondirectory):
17282 Don't ever include the host name or user name in the value.
17283
17284 2000-01-09 Gerd Moellmann <gerd@gnu.org>
17285
17286 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
17287 of a real newline.
17288
17289 2000-01-09 Stephen Eglen <stephen@gnu.org>
17290
17291 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
17292 for .png files.
17293
17294 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
17295
17296 * cus-edit.el (custom-hook-convert-widget): Fix comment.
17297
17298 2000-01-09 Gerd Moellmann <gerd@gnu.org>
17299
17300 * progmodes/cperl-mode.el: Replace ^F with ^L.
17301
17302 * sendmail.el (toplevel): Provide `sendmail' when compiling
17303 before `require'ing rmail and mailalias to prevent infinite
17304 recursion.
17305
17306 2000-01-08 Dave Love <fx@gnu.org>
17307
17308 * emacs-lisp/backquote.el: Remove inappropriate customization
17309 (allowing custom.el to use backquote).
17310
17311 2000-01-07 Dave Love <fx@gnu.org>
17312
17313 * add-log.el (add-log-debugging): Deleted.
17314 (add-change-log-entry): Treat a backup FILE-NAME as its parent
17315 file. Remove debugging code.
17316 (change-log-get-method-definition, change-log-name): Add doc.
17317 (change-log-sortable-date-at): New function.
17318 (change-log-merge): New command.
17319
17320 * time.el (display-time-string-forms): Make the Mail string active.
17321 (display-time-update): Provide help-echo for load average.
17322
17323 * bindings.el (make-mode-line-mouse2-map): New function.
17324 (mode-line-modified): Use it and simplify.
17325 (mode-line-mule-info): Provide help-echo info.
17326 (minor-mode-alist): Activate the strings.
17327 (make-mode-line-mouse-sensitive): Simplify for
17328 mode-line-buffer-identification.
17329
17330 2000-01-07 Gerd Moellmann <gerd@gnu.org>
17331
17332 * play/pong.el: New file.
17333
17334 2000-01-06 Dave Love <fx@gnu.org>
17335
17336 * array.el: Assorted cleanups for compiler warnings, doc strings,
17337 `array-' prefix for symbols.
17338
17339 2000-01-05 Dave Love <fx@gnu.org>
17340
17341 * textmodes/outline.el (outline-mode-menu-bar-map): Add
17342 outline-headers-as-kill.
17343 (outline-mode): Define imenu-generic-expression.
17344 (outline-headers-as-kill): New command.
17345
17346 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
17347 from paragraph-start.
17348 (paragraph-indent-minor-mode): New command.
17349
17350 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
17351 M-C-e, M-C-h, C-j, C-xnd, TAB.
17352 (fortran-mode): Set beginning-of-defun, end-of-defun.
17353 (fortran-column-ruler): Simplify.
17354 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
17355 (fortran-with-subprogram-narrowing): Likewise.
17356 (fortran-indent-subprogram): Call mark-defun.
17357 (fortran-check-for-matching-do): Change narrowing.
17358
17359 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
17360 (cl-lucid-hash-tag): Delete.
17361 (cl-hash-table-p): Correct test for native table.
17362 (cl-hash-table-count): Use hash-table-count.
17363
17364 * browse-url.el (browse-url): Fix case of
17365 browse-url-browser-function being an alist.
17366
17367 2000-01-05 Carsten Dominik <cd@gnu.org>
17368
17369 * textmodes/reftex-vars.el (reftex-parse-file-extension)
17370 (reftex-index-phrase-file-extension): New options.
17371
17372 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
17373 Use new option `reftex-index-phrase-file-extension'.
17374
17375 * textmodes/reftex.el (reftex-access-parse-file): Use new option
17376 `reftex-parse-file-extension'.
17377
17378 2000-01-05 Dave Love <fx@gnu.org>
17379
17380 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
17381 (beginning-of-defun-raw): Use it.
17382 (end-of-defun): New variable.
17383 (end-of-defun): Use it.
17384 (check-parens): New command.
17385
17386 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
17387
17388 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
17389 (hs-show-block): Don't use `mapcar' when not accumulating.
17390
17391 Fix buglet in local variables initialization.
17392
17393 2000-01-05 Andreas Schwab <schwab@suse.de>
17394
17395 * hscroll.el (hscroll): Doc fix.
17396
17397 2000-01-05 Carsten Dominik <cd@gnu.org>
17398
17399 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
17400 idlw-toolbar.
17401
17402 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
17403 file idlw-rinfo.el.
17404 (idlwave-customize): load must read file idlw-shell.el.
17405 (idlwave-create-customize-menu): load must read file idlw-shell.el.
17406
17407 2000-01-05 Carsten Dominik <dominik@astro.uva.nl>
17408
17409 * progmodes/idlw-shell.el: Also provide idlwave-shell
17410 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
17411 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
17412
17413 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
17414 both reftex-dcr and reftex-vcr.
17415
17416 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
17417
17418 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
17419
17420 * ps-print.el: PostScript code now is in separate files, doc fix.
17421 (ps-print-version): New version number (5.0.3).
17422 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
17423 local.
17424 (ps-spool-config): Initialization fix.
17425 (ps-print-prologue-1, ps-print-prologue-2)
17426 (ps-print-duplex-feature): PostScript code moved to separated file.
17427 (ps-background-image): Little code reformating.
17428 (ps-begin-file, ps-begin-job): Fix code.
17429 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
17430 (ps-prologue-file): New fun.
17431
17432 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
17433
17434 * ps-vars.el: Eliminated.
17435
17436 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
17437 `;;;###autoload'.
17438
17439 * ps-print.el: ps-vars eliminated, doc fix.
17440 (ps-print-version): New version number (5.0.2).
17441 (ps-spool-config): Initialization fix.
17442 (ps-print-customize): New fun.
17443
17444 2000-01-04 Gerd Moellmann <gerd@gnu.org>
17445
17446 * autorevert.el (auto-revert-mode): Return value of
17447 auto-revert-mode.
17448
17449 2000-01-04 Dave Love <fx@gnu.org>
17450
17451 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
17452 menu items.
17453
17454 2000-01-03 Dave Love <fx@gnu.org>
17455
17456 * elide-head.el (elide-head) [defgroup]: Add :version.
17457
17458 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
17459 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
17460 `cl-hash-table-p', not `hash-table-p'.
17461 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
17462
17463 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
17464
17465 * faces.el (face-read-integer, read-face-attribute)
17466 (color-defined-p, color-values): unspecified-{f,b}g are now
17467 strings.
17468
17469 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
17470
17471 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
17472 at comment end, and re-insert them after filling.
17473
17474 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
17475
17476 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
17477 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
17478 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
17479
17480 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
17481
17482 * term/x-win.el (xw-defined-colors): Call color-supported-p,
17483 the new name of face-color-supported-p.
17484
17485 * term/w32-win.el (xw-defined-colors): Likewise.
17486
17487 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
17488
17489 * simple.el (completion-setup-function): Count completion-size
17490 from minibuffer-prompt-end, not from point-min.
17491
17492 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
17493
17494 * faces.el (read-face-attribute, defined-colors, color-defined-p):
17495 Pass the frame to tty-color-* functions.
17496 (display-color-p, frame-set-background-mode): Pass the frame to
17497 tty-display-color-p.
17498
17499 * term/tty-colors.el (tty-defined-color-alist): Renamed from
17500 tty-color-alist.
17501 (tty-color-alist, tty-modify-color-alist): New functions.
17502 (tty-color-define, tty-color-clear, tty-color-approximate)
17503 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
17504 an optional parameter FRAME.
17505
17506 2000-01-01 Gerd Moellmann <gerd@gnu.org>
17507
17508 * image.el (create-image, defimage): Don't assume image data is a
17509 string.
17510
17511 * image.el (defimage): Handle specifications containing :data
17512 instead of :file.
17513 (image-type-from-data): New function.
17514 (image-type-from-file-header): Use it.
17515 (create-image): Add parameter DATA-P.
17516
17517 See ChangeLog.8 for earlier changes.
17518
17519 ;; Local Variables:
17520 ;; coding: iso-2022-7bit
17521 ;; End: