(custom-add-to-group): Allow multiple entries for a given value OPTION,
[bpt/emacs.git] / lisp / ChangeLog
1 2000-10-29 Miles Bader <miles@gnu.org>
2
3 * custom.el (custom-add-to-group): Allow multiple entries for a
4 given value OPTION, as long as their widget types are different.
5 * cus-edit.el (custom-face-value-create): If face name doesn't end
6 with "face", add such here (similar to custom group widgets).
7
8 * comint.el (comint-highlight-prompt): Add :type.
9
10 2000-10-28 John Wiegley <johnw@gnu.org>
11
12 * textmodes/flyspell.el (flyspell-maybe-correct-transposition):
13 Changed this function to operate on a temporary buffer instead of
14 the main buffer. This not only keeps flyspell from marking a
15 buffer as changed that wasn't, but it solves the jumpy cursor
16 problem when attempts are made to edit incorrect words.
17 (flyspell-maybe-correct-doubling): Same change as for
18 `flyspell-maybe-correct-transposition'.
19
20 * calendar/timeclock.el (timeclock-log): Doc fix.
21 (timeclock-last-event): Doc fix.
22 (timeclock-log): Kill the timelog buffer after appending a new
23 event.
24 (timeclock-find-discrep): Use a temp buffer to read in the
25 timelog, instead of visiting the file.
26 (timeclock-log-data): A new function, along with a host of helper
27 functions, for the purpose of making timelog data accessible to
28 programmers.
29
30 * eshell/esh-mode.el (window-height test): Make certain that
31 `eshell-stringify-t' is non-nil.
32 (eshell-password-prompt-regexp): Changed to a much simpler
33 password regexp.
34 (eshell-send-input): If `eshell-invoke-directly' returns t,
35 directly invoke the parsed command using `eval'. This improves
36 turn-around time on simple commands by a factor of three or
37 greater, such as cd, ls, pwd, etc. -- which get used very often.
38 It also conserves thousands of cons cells per call (since
39 `eshell-do-eval' consumes memory like a Cookie Monster set loose
40 in the Pacific Cookie Company).
41
42 * eshell/esh-test.el (eshell-test): Whitespace fix.
43
44 * eshell/em-ls.el (eshell-ls-insert-directory): Make
45 `eshell-ls-initial-args' nil when inserting directory contents.
46
47 * eshell/em-script.el (eshell-script-initialize): Add names to
48 `eshell-complex-commands, since `source' and `.' are complex.
49
50 * eshell/esh-cmd.el (eshell-rewrite-for-command,
51 eshell-rewrite-while-command): Use `eshell-protect' instead of
52 `eshell-copy-handles'.
53 (eshell-rewrite-if-command): Use `eshell-protect' to wrap the call
54 bodies.
55 (eshell-separate-commands): Whitespace fix.
56 (eshell-complex-commands): Added a new list of names, for
57 determining whether a given command is as simple as it looks.
58 (eshell-invoke-directly): New function. Returns t if a command
59 should be invoked directly (using `eval'), rather than indirectly
60 using `eshell-do-eval'.
61 (eshell-do-eval): Whitespace fix.
62
63 * eshell/em-unix.el (eshell-default-target-is-dot): New variable,
64 which provides an emulation of the DOS shell behavior of assuming
65 that cp/mv/ln should copy/move/link to the current directory.
66 (eshell-remove-entries): Added a doc string.
67 (eshell-shuffle-files): Removed the check for `target' being null.
68 (eshell-mvcp-template, eshell-mvcpln-template): Renamed
69 `eshell-mvcp-template' to `eshell-mvcpln-template', and extended
70 it to do a smarter check of whether a destination was provided.
71 (eshell/mv, eshell/cp): Enable `:preserve-args'.
72 (eshell/ln): Enable `:preserve-args', and use
73 `eshell-mvcpln-template' to implement the body of the function.
74 (eshell/cat, eshell/make, eshell-poor-mans-grep, eshell-grep,
75 eshell/du, eshell/diff, eshell/locate): Stringify the argument
76 list after flattening it. This makes it possible to cat files
77 with numerical names.
78 (eshell-unix-initialize): Added several names to
79 `eshell-complex-commands.
80 (eshell-unix-command-complex-p): Return t if a given command name
81 may result in external processes being invoked.
82
83 * eshell/em-glob.el (eshell-glob-show-progress): Make this
84 variable nil by default, since it slows down glob processing by a
85 factor of two or more, and increases memory consumption.
86
87 * eshell/em-smart.el: Added a note about how memory consumptive
88 smart display mode can be (at least this is true in Emacs 21).
89 (eshell-smart-initialize): Whitespace fix.
90 (eshell-refresh-windows): Use `if' instead of `when'.
91 (eshell-smart-scroll-window): Calling `save-current-buffer' was
92 not necessary.
93 (eshell-currently-handling-window): Added a missing global
94 variable.
95
96 * eshell/em-ls.el (eshell-do-ls): Code simplification.
97 (eshell-ls-sort-entries, eshell-ls-entries, eshell-ls-dir):
98 Whitespace fix.
99 (eshell-ls-exclude-hidden): Added this variable in addition to
100 `eshell-ls-exclude-regexp'. This one prevents files beginning
101 with . from even being read, which can improve memory consumption
102 quite a bit.
103 (eshell-ls-dir): If `eshell-ls-exclude-hidden' is non-nil, do not
104 read file entries beginning with a dot. In home directories with
105 lots of hidden files, fully two-thirds of the time spent in ls is
106 used to read directory entries that are immediately thrown away.
107 (eshell-ls-initial-args): Added back this configuration variable,
108 for specifying default initial arguments to every call to ls.
109 Much faster than using an alias to do the same thing.
110 (eshell-do-ls): Use `eshell-ls-initial-args', if set.
111 (eshell-ls-dir): Whitespace change.
112
113 * eshell/em-dirs.el (eshell/pwd): Small code simplification.
114
115 * eshell/esh-util.el: Don't require `ange-ftp' if it's not
116 available.
117 (eshell-stringify-t): Added a customization variable, to indicate
118 whether `t' should be rendered as a string at all. If not, one
119 can still determine if the result of an expression is true using
120 "file-exists-p FILE && echo true".
121 (eshell-stringify): If `eshell-stringify-t' is nil, don't
122 stringify t!
123
124 * eshell/esh-module.el: Whitespace fix.
125
126 * eshell/em-alias.el (eshell-alias-initialize): Added
127 `eshell-command-aliased-p' to `eshell-complex-commands'.
128 (eshell-command-aliased-p): New function that returns t if a
129 command name names an aliased.
130
131 2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
132
133 * viper-cmd.el (viper-preserve-cursor-color): new test that avoids
134 rewrawing the screen when changing cursor color.
135 (viper-insert-state-pre-command-sentinel,
136 viper-replace-state-pre-command-sentinel,
137 viper-replace-state-post-command-sentinel): use
138 viper-preserve-cursor-color.
139 Many functions changed to use viper= instead of = when comparing
140 characters.
141 * viper-util.el (viper-memq-char,viper=): new functions for
142 working with characters.
143 (viper-change-cursor-color): fixed buglet.
144 Many functions changed to use viper= instead of = when comparing
145 characters.
146 * viper.el (viper-insert-state-mode-list): added eshell.
147
148 * ediff-init.el (ediff-before-setup-hook): new hook.
149 Several typos fixed in various docstrings.
150 * ediff-merg.el (ediff-show-clashes-only): docstring typo fixed.
151 * ediff-nult.el (ediff-before-session-group-setup-hooks): new
152 hook.
153 (ediff-show-meta-buffer): run ediff-before-session-group-setup-hooks.
154 * ediff-util.el (ediff-setup): run ediff-before-setup-hook.
155 (ediff-other-buffer): use selected buffers if in Buffer-menu buffer.
156 (ediff-get-selected-buffers): new function.
157 * ediff-vers.el (ediff-vc-internal,ediff-rcs-internal,
158 ediff-vc-merge-internal,ediff-rcs-merge-internal): use
159 save-window-excursion.
160 * ediff-wind.el (ediff-skip-unsuitable-frames): more robust
161 termination check in while loop.
162 * ediff.el (ediff-get-default-file-name): better defaults when in
163 dired buffer.
164 (ediff-files,ediff-merge-files,ediff-files3,
165 ediff-merge-files-with-ancestor): use ediff-get-default-file-name.
166
167 2000-10-28 Dave Love <fx@gnu.org>
168
169 * info.el (Info-fontify-node): Add help-echo for menu items.
170
171 2000-10-28 Eli Zaretskii <eliz@is.elta.co.il>
172
173 * startup.el (normal-top-level): If the value of $TERM indicates
174 we are running from xterm or one of its work-alikes, default to a
175 light background mode.
176
177 Support for -fg, -bg, and -rv command-line arguments for TTYs:
178 * faces.el (tty-handle-reverse-video): New function.
179 (tty-create-frame-with-faces): Call it.
180
181 * frame.el (frame-notice-user-settings): Don't apply
182 default-frame-alist and initial-frame-alist to MS-DOS frames.
183 Call tty-handle-reverse-video, frame-set-background-mode, and
184 face-set-after-frame-default for non-MS-DOS frames.
185
186 * startup.el (tty-long-option-alist): New variable.
187 (tty-handle-args): New function.
188 (command-line): Call tty-handle-args.
189
190 * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove;
191 startup.el now does that for all character-terminal frames.
192
193 2000-10-28 Miles Bader <miles@gnu.org>
194
195 * emacs-lisp/easy-mmode.el (define-minor-mode): Generate
196 `turn-on-MODE' and `turn-off-MODE' functions unless the mode is
197 global. If :global is followed by a non-nil but non-t value,
198 make the mode buffer-local, but also generate a `global-MODE'
199 version using `easy-mmode-define-global-mode'. Add
200 :conditional-turn-on keyword argument.
201
202 2000-10-28 Dave Love <fx@gnu.org>
203
204 * international/latin1-disp.el (latin1-char-displayable-p): Don't
205 use window-system.
206
207 2000-10-27 Eli Zaretskii <eliz@is.elta.co.il>
208
209 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
210 Don't call find-buffer-file-type-coding-system. Instead, just
211 set eol-type to -unix if inhibit-eol-conversion is in effect, or
212 if the file is on an untranslated filesystem.
213 (add-untranslated-filesystem): Use "D" instead of "f" inside
214 interactive.
215
216 2000-10-27 Dave Love <fx@gnu.org>
217
218 * textmodes/refill.el (refill-late-fill-paragraph-function): New
219 variable.
220 (refill-mode): Use it.
221
222 2000-10-27 Andre Spiegel <spiegel@gnu.org>
223
224 * vc-hooks.el (vc-version-backup-file-name): Use file.~<rev>~ for
225 manual backups and file.~<rev>.~ for automatic ones.
226 (vc-make-version-backup): Don't do it on MS-DOS without long file
227 names.
228
229 * vc.el (vc-version-other-window): If an automatic backup of the
230 desired version exists, rename it instead of copying it.
231
232 * vc-cvs.el (vc-cvs-checkin): Check both status and error message
233 after command. If there's an unexpected error, signal it instead
234 of being silent.
235 (vc-cvs-merge-news): Be prepared for no news at all.
236
237 2000-10-27 Miles Bader <miles@lsi.nec.co.jp>
238
239 * shell.el (shell): Add BUFFER argument.
240 * comint.el (make-comint-in-buffer): New function.
241 (make-comint): Use it.
242
243 * faces.el (face-spec-choose): Change syntax so that the list of
244 attribute-value pairs is now the cdr of each clause, not the cadr.
245 Detect old-style entries, and handle them. Use pop.
246
247 2000-10-26 Stefan Monnier <monnier@cs.yale.edu>
248
249 * cus-edit.el (custom-mode-map): Use a sparse map.
250 (custom-mode): Don't bother with make-local-hook.
251
252 * wid-edit.el (widget-add-change): Don't bother with make-local-hook.
253
254 * vc.el (vc-start-entry): Only erase the buffer if comment is set.
255
256 2000-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
257
258 * ps-print.el: Avoid compilation gripes.
259 (ps-print-version): New version number (6.2.1).
260
261 2000-10-26 Dave Love <fx@gnu.org>
262
263 * menu-bar.el: Modify some menu item help strings.
264 (menu-bar-help-menu): Add link to MORE.STUFF.
265
266 * cus-edit.el (custom-mode): Add `special' mode-class property.
267
268 * wid-browse.el (widget-browse-mode): Likewise.
269
270 * wid-edit.el (widget-specify-field): Revert to using local-map
271 property, not keymap.
272
273 2000-10-26 Miles Bader <miles@lsi.nec.co.jp>
274
275 * wid-edit.el (widget-field-end): When checking for a `boundary'
276 field, do so in the correct buffer.
277
278 * simple.el (undo): Correctly distinguish between numeric and
279 non-numeric prefix args in non-transient-mark-mode, as per the doc
280 string. When in transient-mark-mode, treat all prefix-args as
281 numeric.
282
283 * simple.el (previous-matching-history-element): Miscellaneous cleanup.
284 Position point on match. Handle N == 0 correctly.
285
286 * comint.el (comint-mode): Locally set `next-line-add-newlines' to nil.
287 (comint-mode-map): Reverse order of `comint-write-output' and
288 `comint-append-output-to-file'.
289 (comint-append-output-to-file): Reinstate this function, for the
290 benefit of the menu.
291
292 2000-10-25 Stefan Monnier <monnier@cs.yale.edu>
293
294 * vc.el (vc-version-other-window): Bind `file'.
295
296 2000-10-25 Gerd Moellmann <gerd@gnu.org>
297
298 * Makefile.in (update-authors): New target for maintenance purposes.
299
300 * emacs-lisp/authors.el (batch-update-authors): New function.
301 (authors-fixed-entries): New defconst.
302 (authors-add-fixed-entries): New function.
303 (authors): Call it.: Don't process lispref/.
304
305 2000-10-25 Jason Rumney <jasonr@gnu.org>
306
307 * cus-edit.el (custom-button-face, custom-button-pressed-face):
308 Merge x w32 and mac definitions.
309
310 2000-10-25 Gerd Moellmann <gerd@gnu.org>
311
312 * menu-bar.el (menu-bar-options-menu): Add a help string for
313 `uniquify'.
314
315 2000-10-25 Stephen Gildea <gildea@alum.mit.edu>
316
317 * time-stamp.el (time-stamp-string-preprocess):
318 Fix a wrong type argument error.
319
320 2000-10-25 Miles Bader <miles@gnu.org>
321
322 * recentf.el (recentf-mode): Variable removed.
323 (recentf-mode): Use `define-minor-mode'.
324
325 * mwheel.el (mouse-wheel-mode): New global minor mode.
326 (mwheel-install): Use `mouse-wheel-mode'.
327
328 2000-10-25 Dave Love <fx@gnu.org>
329
330 * progmodes/cperl-mode.el (cperl-mode):
331 Set normal-auto-fill-function correctly.
332
333 * wid-edit.el (widget-field-keymap, widget-text-keymap): Don't
334 inherit from global-map and don't nullify menu-bar and tool-bar
335 bindings.
336
337 2000-10-25 Miles Bader <miles@lsi.nec.co.jp>
338
339 * wid-edit.el (widget-field-at): New function.
340 (widget-at, widget-field-activate): Use it.
341 (widget-tabable-at): Use `widget-at'.
342 (widget-specify-field): If the terminating character of the widget
343 field (which is read-only) is a newline, put it into a special
344 `boundary' field so that C-n/C-p act more naturally.
345 (widget-field-end): Also don't subtract one if a special
346 `boundary' field has been added after the widget field.
347
348 * comint.el (comint-output-filter, comint-send-input): Don't
349 bother adding stickiness fields to overlays to fool the field
350 code, since it should notice the overlay insertion-types now.
351
352 * wid-edit.el (widget-beginning-of-line, widget-end-of-line):
353 Replace with aliases of the normal emacs b-o-l/e-o-l functions.
354 (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e.
355
356 2000-10-24 Gerd Moellmann <gerd@gnu.org>
357
358 * emacs-lisp/authors.el (authors-aliases): Add some more aliases.
359 (authors): Set file coding system to iso-2022-7bit. Add
360 file-local variables to output buffer.
361
362 * files.el (after-find-file): Don't print any warnings if
363 WARN is nil.
364
365 2000-10-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
366
367 * ps-print.el (ps-generate): Fix odd/even pages printing bug.
368
369 * delim-col.el: Now there is a column formatting mechanism.
370 Modified to customization mechanisms convention. Doc fix.
371 (columns): New group for delim-col.
372 (delimit-columns-before, delimit-columns-after)
373 (delimit-columns-format, delimit-columns-extra, delimit-columns-start)
374 (delimit-columns-end): New vars.
375 (delimit-columns-customize, delimit-columns-format): New funs.
376 (delimit-columns-region, delimit-columns-rectangle)
377 (delimit-columns-rectangle-line): Modified to support column
378 formatting.
379
380 2000-10-24 Dave Love <fx@gnu.org>
381
382 * log-edit.el (log-edit): Add :version and a :group for vc.
383
384 2000-10-24 Gerd Moellmann <gerd@gnu.org>
385
386 * files.el (after-find-file): Don't print a message ``New file''
387 if WARN is nil.
388
389 * wid-edit.el (widget-field-keymap, widget-text-keymap): Define
390 the tool-bar map as nil, as for the menu-bar. Otherwise, we'll
391 get duplicate tool-bar entries because we'll see the global ones
392 on more than one path through keymaps.
393
394 * emacs-lisp/lisp.el (defun-prompt-regexp): Doc fix.
395
396 * progmodes/cmacexp.el: Change Francesco's email address.
397
398 2000-10-24 Kenichi Handa <handa@etl.go.jp>
399
400 * window.el (fit-window-to-buffer): Adjust point of the window
401 buffer, not that of the current buffer.
402
403 2000-10-24 Eli Zaretskii <eliz@is.elta.co.il>
404
405 * progmodes/cmacexp.el: Update the euthor's email address.
406
407 2000-10-24 Miles Bader <miles@lsi.nec.co.jp>
408
409 * faces.el (face-spec-set-match-display): Add `graphic' display
410 type (the inverse of `tty'). Use `display-graphic-p' instead of
411 the window-system variable.
412
413 2000-10-24 Kenichi Handa <handa@etl.go.jp>
414
415 * international/isearch-x.el (isearch-with-input-method): Call
416 input-method-function with the first event in
417 unread-command-events.
418
419 2000-10-24 Miles Bader <miles@lsi.nec.co.jp>
420
421 * faces.el (face-default-spec, face-user-default-spec): Make
422 defsubsts.
423
424 2000-10-24 Andrew Choi <akochoi@i-cable.com>
425
426 * international/mule-conf.el (mac-roman-lower, mac-roman-upper):
427 New charsets.
428
429 * term/mac-win.el: Remove definitions of mac-roman-lower and
430 mac-roman-upper, require dired, and define instead of set
431 mac-ready-for-drag-n-drop to avoid compilation error.
432
433 2000-10-23 Andrew Innes <andrewi@gnu.org>
434
435 * files.el (make-backup-file-name-1) [windowsnt, ms-dos]: Remove
436 superfluous calls to subst-char-in-string; instead apply
437 expand-file-name after convert-standard-filename to ensure
438 expected directory separators are used.
439
440 2000-10-23 Eli Zaretskii <eliz@is.elta.co.il>
441
442 * info.el (Info-file-list-for-emacs): Add an entry for Eshell.
443
444 2000-10-23 Dave Love <fx@gnu.org>
445
446 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
447 (tool-bar-add-item): Set foreground and background for XBM icons.
448
449 * international/latin1-disp.el (latin1-char-displayable-p): New
450 function (from Handa).
451 (latin1-display-check-font): Use it.
452
453 * imenu.el (imenu--create-keymap-2): Build menu with menu-item
454 using :key-sequence, making it much more usable. Use nconc, not
455 append.
456 (imenu--create-keymap-1): Avoid append.
457
458 * textmodes/refill.el: Remove bits redundant with define-minor-mode.
459
460 2000-10-23 Miles Bader <miles@lsi.nec.co.jp>
461
462 [the following changes fix a bug where `define-minor-mode' didn't
463 correctly generate :require clauses for defcustoms in compiled files]
464 * emacs-lisp/bytecomp.el (byte-compile-last-logged-file): New variable.
465 (byte-compile-log-file, byte-compile-log-1): Don't set
466 `byte-compile-current-file' to nil. Instead set
467 `byte-compile-last-logged-file' to it. Test whether
468 byte-compile-current-file equals byte-compile-last-logged-file
469 instead of whether its nil.
470 (byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
471
472 2000-10-23 Stefan Monnier <monnier@cs.yale.edu>
473
474 * textmodes/refill.el: Fix var names in doc.
475 (refill-mode): Don't bother with make-local-hook anymore.
476
477 2000-10-23 Miles Bader <miles@lsi.nec.co.jp>
478
479 * faces.el (face-user-default-spec, face-default-spec): New functions.
480 (face-spec-choose, face-spec-set): Document nil-SPEC behavior.
481 (frame-set-background-mode, face-set-after-frame-default):
482 Use `face-user-default-spec'. Simplify code slightly.
483
484 * woman.el (woman-italic-face, woman-bold-face)
485 (woman-unknown-face): Add dark-background variants.
486 (woman-default-faces): Renamed from `woman-colour-faces'.
487 Set using the stored defaults, rather than using hard-wired colors.
488 (woman-monochrome-faces): Renamed from `woman-black-faces'.
489 Just make the foreground `unspecified' rather than "black".
490 (woman-menu): Rename menu entries accordingly.
491
492 * faces.el (header-line): Make more reasonable on mono/grayscale
493 displays.
494
495 2000-10-23 Andrew Choi <akochoi@i-cable.com>
496
497 * cus-edit.el (custom-button-face): Use 3D look for mac.
498 (custom-button-pressed-face): Likewise.
499
500 * faces.el (set-face-attributes-from-resources): Handle mac frames
501 in the same way as x and w32 frames.
502 (face-valid-attribute-values): Likewise.
503 (read-face-attribute): Likewise.
504 (defined-colors): Likewise.
505 (color-defined-p): Likewise.
506 (color-values): Likewise.
507 (display-grayscale-p): Likewise.
508 (face-set-after-frame-default): Likewise.
509 (mode-line): Same default face as for x and w32.
510 (tool-bar): Likewise.
511
512 * frame.el: Remove call to frame-notice-user-settings at end of
513 the file.
514
515 * info.el (Info-fontify-node): make underlines invisible for mac
516 as for x, pc, and w32 frame types.
517
518 * term/mac-win.el: New file.
519
520 2000-10-22 Dave Love <fx@gnu.org>
521
522 * textmodes/refill.el: New file.
523
524 2000-10-22 Andre Spiegel <spiegel@gnu.org>
525
526 * vc-hooks.el (vc-version-backup-file-name): New optional args
527 MANUAL and REGEXP.
528 (vc-delete-automatic-version-backups, vc-make-version-backup):
529 New functions.
530 (vc-before-save): Use the latter.
531 (vc-default-make-version-backups-p): Added `-p' suffix to avoid
532 confusion.
533
534 * vc-cvs.el (vc-cvs-make-version-backups-p): Added `-p' suffix as
535 expected by vc[-hooks].el.
536
537 * vc.el (vc-checkout): Added `-p' suffix in call to
538 vc-make-version-backups-p; use vc-make-version-backup to actually
539 make the backup.
540 (vc-version-other-window, vc-version-backup-file): Handle both
541 automatic and manual backups.
542 (vc-revert-file): Use vc-delete-automatic-version-backups to get rid
543 of all of them.
544
545 2000-10-22 Miles Bader <miles@gnu.org>
546
547 * comint.el (comint-highlight-input, comint-highlight-prompt):
548 Renamed, `-face' at end removed.
549 (comint-send-input, comint-output-filter): Use renamed faces.
550
551 * window.el (fit-window-to-buffer): Change defaulting of
552 MAX-HEIGHT slightly.
553
554 * faces.el (color-values, color-defined-p): Use `member', not
555 `memq', because it works correctly for strings.
556 (frame-set-background-mode): Actually, "unspecified-fg" and
557 "unspecified-bg" *are* strings. Use `member', not `memq', and
558 `equal', not `eq', when a string value is possible.
559
560 2000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
561
562 * info.el (Info-file-list-for-emacs): Add an entry for Speedbar.
563
564 2000-10-21 Stefan Monnier <monnier@cs.yale.edu>
565
566 * progmodes/sh-script.el (sh-mode-map): Remove bindings for
567 sh-electric-rparen, sh-electric-less and sh-electric-hash.
568 (sh-st-punc, sh-here-doc-syntax): Use string-to-syntax.
569 (sh-font-lock-heredoc, sh-font-lock-paren): New funs.
570 (sh-font-lock-syntactic-keywords): Use them.
571 (sh-heredoc-face, sh-st-face, sh-special-syntax): Remove.
572 (sh-mkword-regexp, sh-electric-rparen-needed-here): Remove.
573 (sh-mode): Don't override font-lock-unfontify-region-function.
574 Use a copy of sh-font-lock-syntactic-keywords.
575 (sh-set-shell): Don't set sh-electric-rparen-needed-here.
576 Don't call sh-scan-buffer since font-lock does it on the fly.
577 (sh-get-indent-info): Use `face' rather than `syntax-table'
578 text-property to detect here-documents.
579 Replace sh-special-syntax with sh-st-punc.
580 (sh-prev-line): Use `face' rather than `syntax-table'
581 text-property to skip over here-documents.
582 (sh-font-lock-unfontify-region-function, sh-check-paren-in-case)
583 (sh-set-char-syntax, sh-electric-rparen, sh-electric-hash)
584 (sh-electric-less, sh-set-here-doc-region)
585 (sh-remove-our-text-properties, sh-search-word, sh-scan-case)
586 (sh-scan-buffer, sh-rescan-buffer): Remove.
587
588 2000-10-21 Andrew Innes <andrewi@gnu.org>
589
590 * w32-fns.el (make-auto-save-file-name): Don't apply conversion to
591 remote (ange-ftp) file names.
592
593 2000-10-21 Miles Bader <miles@gnu.org>
594
595 * window.el (fit-window-to-buffer): New function.
596 (shrink-window-if-larger-than-buffer): Use it.
597 (window-text-height): Don't expect minibuffers to have mode-lines.
598
599 * help.el (resize-temp-buffer-window): Use `fit-window-to-buffer'.
600 * international/quail.el (quail-update-guidance): Use
601 `fit-window-to-buffer' instead of `set-window-text-height'.
602
603 * international/quail.el (quail-show-guidance-buf): Make sure
604 guidance window really has enough room.
605 (quail-update-guidance): If quail-guidance-win is already shown,
606 make sure its height is OK.
607
608 * window.el (window-text-height, set-window-text-height):
609 New functions.
610 (shrink-window-if-larger-than-buffer): Use `window-text-height'
611 instead of `window-height' & `mode-line-window-height-fudge'.
612 (mode-line-window-height-fudge): Add FACE parameter.
613 * help.el (resize-temp-buffer-window): Use `set-window-text-height'
614 instead of `enlarge-window' & `mode-line-window-height-fudge'.
615
616 2000-10-20 Miles Bader <miles@gnu.org>
617
618 * window.el (height-affecting-face-attributes): Use `defconst'.
619
620 * textmodes/ispell.el (ispell-mode-line-window-height-fudge):
621 New function, conditionally aliased to `mode-line-window-height-fudge'.
622 (ispell-help): Use it.
623 (ispell-choices-win-default-height): Don't include mode-line fudge.
624 (ispell-choices-win-default-height): New function.
625 (ispell-show-choices, ispell-command-loop): Use function
626 `ispell-choices-win-default-height' instead of variable.
627
628 2000-10-20 Miles Bader <miles@lsi.nec.co.jp>
629
630 * window.el (mode-line-window-height-fudge): New variable.
631 (height-affecting-face-attributes): New variable.
632 (mode-line-window-height-fudge): New function.
633 (shrink-window-if-larger-than-buffer): Use it.
634 * help.el (resize-temp-buffer-window): Likewise.
635
636 * info.el (Info-fontify-node): Add support for @subsubsection
637 titles, which use `Info-title-4-face'.
638 (Info-title-4-face): New face.
639 (Info-title-3-face): Inherit from Info-title-4-face instead of
640 variable-pitch.
641
642 2000-10-19 Jason Rumney <jasonr@gnu.org>
643
644 * dired.el (dired-insert-directory): Do not let errors signalled by
645 attempt to run dired-free-space-program prevent dired from working.
646
647 2000-10-19 Stefan Monnier <monnier@cs.yale.edu>
648
649 * diff-mode.el (diff-find-file-name): Fix regex subgroup number.
650
651 2000-10-19 Gerd Moellmann <gerd@gnu.org>
652
653 * dirtrack.el (dirtrack): Fix call to run-hooks.
654
655 * cmuscheme.el (cmuscheme-program-name): Renamed from
656 scheme-program-name because xscheme.el contains a defcustom with
657 the same name. As a consequence, customizing group `cmuscheme'
658 loaded `xscheme' which redefined run-scheme.
659 (run-scheme): Use cmuscheme-program-name.
660
661 * ps-print.el (ps-print-emacs-type): Move into the
662 eval-and-compile.
663
664 * play/doctor.el (doctor-death): Update the Samaritans'
665 anonymous address, and add a website for Befrienders International.
666
667 2000-10-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
668
669 * ps-print.el: Even/odd pages fix. Fix little bug on XEmacs.
670 Avoid compilation gripes. Doc fix.
671 (ps-print-version): New version number (6.2).
672 (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
673 (ps-x-color-name, ps-x-color-specifier-p, ps-x-copy-coding-system)
674 (ps-x-device-class, ps-x-extent-end-position, ps-x-extent-face)
675 (ps-x-extent-priority, ps-x-extent-start-position)
676 (ps-x-face-font-instance, ps-x-find-coding-system)
677 (ps-x-font-instance-properties, ps-x-make-color-instance)
678 (ps-x-map-extents): Alias for functions without the prefix `ps-x-', to
679 avoid compilation gripes without defining functions.
680 (ps-e-find-composition): Alias for function find-composition, to have a
681 suitable function depending on Emacs version.
682 (ps-color-device, ps-color-values, ps-face-foreground-name)
683 (ps-face-background-name, ps-face-bold-p, ps-face-italic-p, ps-mapper)
684 (ps-extent-sorter, ps-xemacs-face-kind-p, ps-xemacs-color-name)
685 (ps-print-ensure-fontified): Function definitions surrounded by
686 `eval-and-compile' to avoid compilation gripes.
687 (ps-font-lock-face-attributes): `font-lock-face-attributes' evaluated
688 by symbol-value to avoid compilation gripes.
689 (ps-end-file, ps-header-sheet, ps-plot-region): Even/odd pages fix.
690 (ps-generate-postscript-with-faces): Fix little bug on XEmacs.
691
692 2000-10-19 Miles Bader <miles@lsi.nec.co.jp>
693
694 * startup.el (normal-top-level): Call `frame-set-background-mode'
695 after `frame-notice-user-settings' because the latter doesn't call
696 the former on a tty.
697
698 * faces.el (frame-set-background-mode): `unspecified' &c are
699 symbols, not strings.
700
701 2000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
702
703 * term/tty-colors.el (color-name-rgb-alist): Add a comment explaining
704 why some "light*" colors are deliberately absent from the alist.
705
706 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face):
707 Change colors for tty's, as suggested by Miles Bader.
708
709 2000-10-19 Kenichi Handa <handa@etl.go.jp>
710
711 * international/fontset.el: Use registry "MuleTibetan-2" for Tibetan.
712 (ccl-encode-mule-unicode-0100-24ff): New CCL program. Register it
713 for ISO10646-1 fonts.
714 (x-font-name-charset-alist): Add an entry for "iso10646-1".
715
716 2000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
717
718 * faces.el (frame-set-background-mode): If a tty frame defines a
719 background color, use that to compute the background mode, instead
720 of always defaulting to "dark".
721
722 2000-10-19 Miles Bader <miles@lsi.nec.co.jp>
723
724 * comint.el (comint-write-output): New function.
725 (comint-mode-map): Add it to the menu.
726 Bind `C-c C-s' to comint-write-output.
727
728 2000-10-18 Gerd Moellmann <gerd@gnu.org>
729
730 * startup.el (fancy-splash-screens): Set buffer-undo-list to t.
731 Use fancy-splash-delay.
732
733 2000-10-18 Alex Schroeder <alex@gnu.org>
734
735 * progmodes/sql.el (sql-sybase-options): New option.
736 (sql-sybase): Use it. Add sql-database to the list of parameters
737 provided for login. The options -w 2048 -n are not used any more.
738
739 * comint.el (comint-read-input-ring): Bugfix such that the first
740 and the last entry of the input ring file are not lost.
741
742 2000-10-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
743
744 * ps-print.el: Internal variable changes to defcustom,
745 make-local-hook changes to defvar. Doc fix.
746 (ps-print-version): New version number (6.1).
747 (ps-setup, ps-do-despool): Code fix.
748 (ps-printer-name): Customization fix.
749 (ps-printer-name-option): Now is a defcustom instead of an
750 internal variable.
751 (ps-print-hook, ps-print-begin-sheet-hook, ps-print-begin-page-hook)
752 (ps-print-begin-column-hook): Now are defvar instead of
753 make-local-hook.
754
755 2000-10-18 Miles Bader <miles@gnu.org>
756
757 * comint.el (comint-delete-output): Renamed from `comint-kill-output'.
758 (comint-kill-output): Changed into an alias for `comint-delete-output',
759 and made obsolete.
760 (comint-mode-map): Rename references to comint-kill-output.
761
762 2000-10-18 Eli Zaretskii <eliz@is.elta.co.il>
763
764 * diff-mode.el (diff-header-face, diff-file-header-face)
765 (diff-changed-face): Add bold and italic attributes to tty faces.
766 (diff-function-face): New face.
767 (diff-font-lock-keywords): Use it.
768
769 2000-10-18 Miles Bader <miles@lsi.nec.co.jp>
770
771 * comint.el (comint-output-filter): Fixup comint-last-input-end too.
772 Remove commented-out call to force-mode-line-update.
773 (comint-kill-output): Use `forward-line 0' instead of
774 beginning-of-line to make sure we get past the prompt.
775
776 2000-10-17 Stefan Monnier <monnier@cs.yale.edu>
777
778 * diff-mode.el (diff-header-face, diff-file-header-face):
779 Add specific setting for dark background.
780 (diff-context-face): Renamed from diff-comment-face.
781 Set explicitly rather than inheriting from font-lock-comment-face.
782
783 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
784
785 * startup.el (command-line): Move the code which sets the default
786 TTY colors to before before-init-hook.
787
788 2000-10-17 Gerd Moellmann <gerd@gnu.org>
789
790 * jit-lock.el (jit-lock-stealth-time): Doc fix.
791
792 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
793
794 * files.el (auto-mode-alist): Add .dif and .pat as diff-mode
795 extensions, for MS-DOS.
796
797 * diff-mode.el (diff-header-face, diff-file-header-face)
798 (diff-changed-face): Define tty-specific colors.
799
800 2000-10-17 Gerd Moellmann <gerd@gnu.org>
801
802 * startup.el (fancy-splash-text): Realign the text.
803
804 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
805
806 * font-lock.el (font-lock-comment-face): Define a separate default
807 for dark-background tty's.
808
809 2000-10-17 Miles Bader <miles@gnu.org>
810
811 * help.el (resize-temp-buffer-window): Add hack to avoid last line
812 being obscured by whizzy mode-lines on graphics displays.
813
814 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
815
816 * info.el (Info-title-1-face, Info-title-2-face)
817 (Info-title-3-face): Define colors for tty's.
818 (info-header-node): Remove unneeded tty-specific definition.
819
820 2000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
821
822 * term/pc-win.el (msdos-handle-reverse-video): Don't remove
823 reverse from the frame parameters, and don't invert foreground and
824 background colors.
825
826 2000-10-16 Miles Bader <miles@gnu.org>
827
828 * info.el (Info-set-mode-line): Use `%b' instead of hardwired
829 string "*Info*". Call propertized-buffer-identification to spruce
830 up the result.
831
832 2000-10-16 Gerd Moellmann <gerd@gnu.org>
833
834 * help.el: Provide `help' for the sake of define-minor-mode
835 which generates defcustoms with requires.
836
837 * jit-lock.el (jit-lock-after-change): If we're in text that
838 matches a multi-line font-lock pattern, make sure the whole text
839 will be redisplayed.
840
841 * emacs-lisp/authors.el (authors-add): Don't add an entry if
842 author's name is unknown.
843
844 * eshell/esh-var.el, eshell/esh-util.el, eshell/esh-test.el,
845 * eshell/esh-proc.el, eshell/esh-opt.el, eshell/esh-mode.el,
846 * eshell/esh-maint.el, eshell/esh-io.el, eshell/esh-ext.el,
847 * eshell/esh-cmd.el, eshell/esh-arg.el, eshell/em-xtra.el,
848 * eshell/em-unix.el, eshell/em-term.el, eshell/em-smart.el,
849 * eshell/em-script.el, eshell/em-rebind.el, eshell/em-prompt.el,
850 * eshell/em-pred.el, eshell/em-ls.el, eshell/em-hist.el,
851 * eshell/em-glob.el, shell/em-dirs.el, eshell/em-cmpl.el,
852 * eshell/em-basic.el, eshell/em-banner.el, eshell/em-alias.el:
853 Add author information.
854
855 2000-10-16 Miles Bader <miles@lsi.nec.co.jp>
856
857 * toolbar/up_arrow.xpm, toolbar/right_arrow.xpm:
858 * toolbar/left_arrow.xpm, toolbar/home.xpm: Re-convert from
859 full-color version (using the Gimp) to eliminate dithering artifacts.
860
861 2000-10-15 Stefan Monnier <monnier@cs.yale.edu>
862
863 * font-lock.el (font-lock-syntactic-keywords): Fix docstring.
864
865 * simple.el (syntax-flag-table, string-to-syntax): Remove.
866
867 2000-10-15 Dave Love <fx@gnu.org>
868
869 * progmodes/sh-script.el: Require skeleton and comint when
870 compiling.
871
872 * pcomplete.el (pcomplete) <defgroup>: Add :version.
873
874 * whitespace.el: Doc fixes.
875 (top-level): Don't add hooks here.
876 (whitespace-running-emacs): Deleted.
877 (timer): Don't require.
878 (whitespace): Add back :version conditional on xemacs test.
879 (whitespace-spacetab-regexp, whitespace-indent-regexp)
880 (whitespace-ateol-regexp, whitespace-modes): Fix custom type.
881 (whitespace-force-mode-line-update, whitespace-refresh-rescan-list)
882 (whitespace-tickle-timer, whitespace-rescan-files-in-buffers):
883 Avoid specific xemacs test.
884 (whitespace-global-mode): New option.
885 (whitespace-global-mode): New command.
886 (whitespace-unload-hook): New function.
887
888 * info.el (Info-mouse-follow-nearest-node): Use mouse-set-point.
889 (Info-fontify-node, Info-goto-node, Info-mode-menu)
890 (Info-fontify-node): `Goto' goes to `Go to'.
891 (Info-fontify-node): Add help-echo to xref links.
892
893 2000-10-15 Eli Zaretskii <eliz@is.elta.co.il>
894
895 * eshell/em-unix.el (eshell-du-prefer-over-ange): Doc fix.
896
897 2000-10-15 Stefan Monnier <monnier@cs.yale.edu>
898
899 * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
900 Use plist-get and allow :inherit.
901
902 * emacs-lisp/cl-macs.el (cl-do-arglist):
903 Use plist-get and plist-member instead of memq.
904
905 * emacs-lisp/ewoc.el (ewoc-location): New function.
906 (ewoc-enter-after, ewoc-enter-before): Document return value.
907 * pcvs.el (cvs-make-cvs-buffer, cvs-run-process):
908 Don't need make-local-hook any more.
909 (cvs-addto-collection): Return the new tin.
910 (cvs-mode-insert): Jump to the new line.
911
912 * jit-lock.el (jit-lock-fontify-buffer): Remove.
913
914 * arc-mode.el (archive-zoo-summarize): Fix from gnu.emacs.bug.
915
916 * font-lock.el (font-lock-syntactically-fontified): New var.
917 (font-lock-fontify-syntactic-keywords-region): Use it.
918 (font-lock-mode): Fix docstring. Don't need make-local-hook anymore.
919
920 * diff-mode.el (diff-find-file-name): Fix regexp.
921
922 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
923 (cl-builtin-clrhash, cl-builtin-maphash): Add for byte-compatibility.
924
925 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix.
926 (sh-mode-syntax-table): Add punctuation syntax for < and >.
927 (sh-mode): Don't make all vars local here.
928 (sh-kw): Reformat.
929 (sh-set-shell): Use dolist. Don't set indent-region-function.
930 (sh-mode-syntax-table): Use pop.
931 (sh-remember-variable): Use push.
932 (sh-help-string-for-variable): Use memq.
933 (sh-safe-backward-sexp): Remove.
934 (sh-safe-forward-sexp): Add ARG.
935 (sh-get-indent-info, sh-prev-stmt): Use it.
936 (sh-prev-line): Simplify by using forward-comment.
937 (sh-this-is-a-continuation): Simplify.
938 (sh-learn-buffer-indent): Use dolist.
939 (sh-do-nothing): Remove.
940 (sh-set-char-syntax, sh-set-here-doc-region):
941 Use inhibit-modification-hooks.
942 (sh-name-style): Use mapcar and push.
943 (sh-load-style): Use dolist.
944 (sh-save-styles-to-buffer): Use with-current-buffer and pp.
945 (sh-case, sh-while-getopts): Use propertize directly rather
946 than sh-electric-rparen.
947
948 2000-10-14 Stefan Monnier <monnier@cs.yale.edu>
949
950 * textmodes/tex-mode.el: Require CL when compiling.
951 (tex-mode-syntax-table): Init immediately.
952 (tex-mode-map): Bind M-RET to latex-insert-item.
953 (latex-mode): Set indent-line-function to latex-indent.
954 (tex-common-initialization): Don't setup the syntax-table any more.
955 (latex-insert-item): New skeleton.
956 (tex-next-unmatched-end): Fix copy/paste braino.
957 (latex-syntax-after, latex-skip-close-parens, latex-down-list)
958 (latex-indent, latex-find-indent): New functions.
959 (tex-indent-allhanging, tex-indent-arg, tex-latex-indent-syntax-table)
960 (tex-indent-item, tex-indent-item-re, tex-indent-basic): New vars.
961 (tex-compilation-parse-errors): Use with-syntax-table.
962
963 2000-10-15 Miles Bader <miles@gnu.org>
964
965 * font-lock.el (font-lock-comment-face): Change dark-background,
966 color, non-tty, default to `chocolate1'.
967
968 2000-10-13 John Wiegley <johnw@gnu.org>
969
970 * eshell/esh-util.el (require): Added a missing `require' form,
971 needed when compiling (for an ange-ftp macro definition).
972
973 2000-10-13 Dave Love <fx@gnu.org>
974
975 * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch.
976
977 2000-10-13 Gerd Moellmann <gerd@gnu.org>
978
979 * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc
980 fix.
981
982 * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace
983 transparent -colors 8).
984
985 2000-10-13 Stephen Gildea <gildea@alum.mit.edu>
986
987 * time-stamp.el (time-stamp): Fixed bug in new multi-line code
988 that breaks with old list format timestamps.
989 (time-stamp-warn-inactive, time-stamp-old-format-warn)
990 (time-stamp-count, time-stamp-conversion-warn): Improved doc
991 strings.
992
993 2000-10-13 John Wiegley <johnw@gnu.org>
994
995 * align.el, pcomplete.el, calendar/timeclock.el,
996 eshell/esh-module.el, eshell/eshell.el: Removed URL reference.
997
998 * calendar/timeclock.el (timeclock-find-discrep): A fix to some
999 faulty math, where holiday hours were being computing as seconds.
1000
1001 2000-10-13 John Wiegley <johnw@gnu.org>
1002
1003 * desktop.el (desktop-buffer-modes-to-save): Added a global for
1004 specifying what "other" kinds of buffers should be saved. This
1005 used to be hard-coded.
1006 (desktop-buffer-misc-functions): A global for specifying how
1007 auxiliary data should be determined for special buffer types.
1008 (desktop-save-buffer-p): Use `desktop-buffer-modes-to-save',
1009 instead of hard-coding the special buffer types.
1010 (desktop-save): Run `desktop-buffer-misc-functions' to gather
1011 auxiliary data, instead of hard-coding for Info buffers and dired.
1012 (desktop-buffer-info-misc-data): Aux function for determining Info
1013 buffer auxiliary info.
1014 (desktop-buffer-dired-misc-data): Likewise, but for dired buffers.
1015 (desktop-buffer-info): Changed this function to use the info
1016 gathered above.
1017 (desktop-create-buffer): Be a little more careful about what
1018 `minor-mode' means before calling it. This is important for some
1019 buffer types.
1020
1021 2000-10-13 John Wiegley <johnw@gnu.org>
1022
1023 * eshell/esh-util.el: Added a global form which declares an
1024 autoload for `parse-time-string', if that function is not already
1025 defined, and if parse-time.el is available on the user's system.
1026
1027 * eshell/em-ls.el (eshell-ls-applicable): Extended this function
1028 to be aware of ange-ftp user info.
1029 (eshell-do-ls): Bind `ange-cache'. Also, use
1030 `eshell-file-attributes'.
1031 (eshell-ls-annotate): Use `eshell-file-attributes'.
1032 (eshell-ls-file): Made the user-id printing code a bit smarter.
1033
1034 * eshell/esh-util.el (eshell-ange-ls-uids): Added variable, to
1035 allow identification of alias user ids in remote directories.
1036 It's manual, but there's no other way to know when the current
1037 user on the local machine, is also the owning user on the remote
1038 machine.
1039 (fboundp): Bind `ange-cache'.
1040 (eshell-directory-files-and-attributes): Re-organized the logic a
1041 bit to use `eshell-file-attributes' instead of `file-attributes'.
1042 The former is more sensitive to directories that are read via FTP,
1043 and knows how to use ange-ftp to determine full attribute
1044 information, instead of just the name and last modtime.
1045 (eshell-current-ange-uids): Return the current user id when in a
1046 remote directory.
1047 (eshell-parse-ange-ls): Parse a full directory listing that has
1048 been returned by ange-ftp.
1049 (eshell-file-attributes): This beefed up version of
1050 `file-attributes' is only special if the user is currently in a
1051 remote directory, in which case it does a lot of work to find out
1052 what the real attributes of a file are, as they appear on the
1053 remote machine. This makes usage of remote directories (i.e.,
1054 ange-ftp pathnames) much more useful. You can now use Eshell as a
1055 full-fledged FTP client, with much more manipulation ability than
1056 most other clients.
1057
1058 * eshell/em-unix.el (eshell-du-prefer-over-ange): Added a new
1059 variable, which means that Eshell's du should always be preferred
1060 in remote directories.
1061 (eshell-shuffle-files): Use `eshell-file-attributes', rather than
1062 just `file-attributes'.
1063 (eshell-mvcp-template): Bind `ange-cache', to improve performance
1064 when reading remote directories. This is an Eshell-specific
1065 variable (not part of ange-ftp).
1066 (eshell/ln): Bind `ange-cache'.
1067 (eshell/du): Added some extra logic for determining when to use
1068 Eshell's du (which is slow), and when to use the external version
1069 (which may or may not exist).
1070
1071 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof): Call
1072 `eshell-interactive-process', rather than using
1073 `get-buffer-process', since backgrounded processes don't count in
1074 the context of this function's logic.
1075
1076 * eshell/esh-arg.el (eshell-parse-double-quote): Moved a call to
1077 `forward-char', so that null strings are parsed correctly.
1078
1079 2000-09-13 John Wiegley <johnw@gnu.org>
1080
1081 * eshell/em-pred.el (eshell-pred-file-type,
1082 eshell-pred-file-links, eshell-pred-file-size): Use
1083 `eshell-file-attributes'. This is more correct over ange-ftp.
1084
1085 * eshell/em-glob.el (eshell-extended-glob): Bind `ange-cache', so
1086 that remote file globbing is more efficient.
1087
1088 * eshell/em-ls.el (eshell-ls-dir): Use `expand-file-name' when
1089 gathering the files and attributes within a directory.
1090
1091 * eshell/em-unix.el (eshell/cat): If any of the files passed on
1092 the command line is a special file (not a regular file, directory
1093 or symlink), always attempt to call the external version of cat.
1094
1095 2000-09-13 John Wiegley <johnw@gnu.org>
1096
1097 * eshell/esh-mode.el (eshell-find-tag): Corrections to the
1098 Eshell-friendly version of find-tag.
1099
1100 2000-10-13 Miles Bader <miles@lsi.nec.co.jp>
1101
1102 * image-file.el (image-file-name-extensions)
1103 (image-file-name-regexps): Add autoload cookies.
1104
1105 2000-10-13 Kenichi Handa <handa@etl.go.jp>
1106
1107 * international/mule-cmds.el (select-safe-coding-system): If FROM
1108 is string, show it in *Warning* buffer.
1109
1110 2000-10-13 Eli Zaretskii <eliz@is.elta.co.il>
1111
1112 * startup.el (normal-top-level): Use display-popup-menus-p instead
1113 of window-system.
1114 (command-line): Use display-graphic-p instead of window-system.
1115 (command-line-1): Use display-popup-menus-p and display-mouse-p
1116 instead of window-system.
1117
1118 2000-10-12 Sam Steingold <sds@gnu.org>
1119
1120 * tooltip.el (tooltip-use-echo-area): New user variable.
1121 (tooltip-show): Use it to choose between `x-show-tip' and `message'.
1122
1123 2000-10-12 Dave Love <fx@gnu.org>
1124
1125 * recentf.el: Maintainer's checkdoc fixes.
1126
1127 * startup.el (normal-top-level-add-subdirs-to-load-path): Use
1128 character class, not ASCII when matching file names.
1129 (fancy-splash-head): Add trailing slash to URL.
1130 (command-line): Don't require XPM support for toolbar.
1131
1132 * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix.
1133 (cperl-invalid-face): Revert last change.
1134 (cperl-init-faces): Quote cperl-invalid-face.
1135
1136 2000-10-12 Kenichi Handa <handa@etl.go.jp>
1137
1138 * startup.el (fancy-splash-text): Remove superfluous quote.
1139
1140 2000-10-12 Gerd Moellmann <gerd@gnu.org>
1141
1142 * startup.el (fancy-splash-screens): Don't add a pre-command hook.
1143 (fancy-splash-pre-command, fancy-splash-pending-command): Removed.
1144 (command-line-1): Don't use fancy-splash-pending-command.
1145 (fancy-splash-screens-1): Goto point-min after inserting text.
1146
1147 * calendar/diary-lib.el (diary-cyclic): Doc fix from Ed Reingold.
1148
1149 * progmodes/scheme.el (scheme-mode-map): Use lisp-mode-shared-map
1150 instead of shared-lisp-mode-map.
1151
1152 2000-10-12 Miles Bader <miles@lsi.nec.co.jp>
1153
1154 * faces.el (header-line): Change tty-variant to use underlining.
1155
1156 * isearch.el (isearch-set-lazy-highlight-faces-at): New function.
1157 (isearch-highlight): Restore lazy-isearch face properties at old
1158 position, and suppress them at new position.
1159 (isearch-dehighlight): Restore lazy-isearch face properties.
1160 (isearch-lazy-highlight-update): Add lazy-isearch overlays even
1161 over the real isearch overlay, but in that case, don't give it a
1162 face property. Use `push'.
1163
1164 2000-10-12 Kenichi Handa <handa@etl.go.jp>
1165
1166 * man.el (Man-getpage-in-background): Fix previous change.
1167 Decode the process output only when we are in multibyte mode.
1168
1169 2000-10-11 Dave Love <fx@gnu.org>
1170
1171 * info.el (Info-mode-menu): Fix some help.
1172 (info-tool-bar-map): Add entry for Info-last.
1173
1174 * toolbar/cancel.xpm, toolbar/jump_to.xpm, toolbar/right_arrow.xpm:
1175 * toolbar/close.xpm, toolbar/left_arrow.xpm, toolbar/save.xpm:
1176 * toolbar/copy.xpm, toolbar/mail.xpm, toolbar/saveas.xpm:
1177 * toolbar/cut.xpm, toolbar/mail_compose.xpm:
1178 * toolbar/search-replace.xpm, toolbar/exit.xpm:
1179 * toolbar/mail_send.xpm, toolbar/search.xpm, toolbar/fld_open.xpm:
1180 * toolbar/new.xpm, toolbar/spell.xpm, toolbar/help.xpm:
1181 * toolbar/open.xpm, toolbar/undo.xpm, toolbar/home.xpm:
1182 * toolbar/paste.xpm, toolbar/up_arrow.xpm, toolbar/index.xpm:
1183 * toolbar/preferences.xpm, toolbar/info.xpm, toolbar/print.xpm:
1184 Reduce colour requirements to 25 overall. (Probably wants
1185 revisiting from the originals to reduce further.)
1186
1187 2000-10-11 Eli Zaretskii <eliz@is.elta.co.il>
1188
1189 * hexl.el (hexlify-buffer): Bind coding-system-for-write to
1190 buffer-file-coding-system, instead of raw-text.
1191 (dehexlify-buffer): Bind coding-system-for-read to
1192 buffer-file-coding-system, instead of raw-text.
1193
1194 2000-10-11 Sam Steingold <sds@gnu.org>
1195
1196 * progmodes/cperl-mode.el (cperl-invalid-face): double-quote
1197 `underline' - fixes the bug introduced on 2000-09-21.
1198
1199 2000-10-11 Dave Love <fx@gnu.org>
1200
1201 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode): Avoid
1202 compiler warnings.
1203 (scheme-mode): Doc fix.
1204 (scheme-font-lock-keywords-1): Match `define-syntax'.
1205
1206 2000-10-11 Miles Bader <miles@lsi.nec.co.jp>
1207
1208 * faces.el (frame-set-background-mode): Pay attention to saved
1209 face specs as well as default ones. Only do anything if the
1210 bg-mode or display-type has actually changed. Use `dolist'.
1211 (region): Make dark-background `region' face less in-your-face.
1212
1213 2000-10-10 Sam Steingold <sds@gnu.org>
1214
1215 * chistory.el, ielm.el, ledit.el:
1216 * progmodes/inf-lisp.el, progmodes/scheme.el:
1217 Use `lisp-mode-shared-map' instead of `shared-lisp-mode-map'.
1218
1219 2000-10-10 Stefan Monnier <monnier@cs.yale.edu>
1220
1221 * textmodes/texinfo.el: Update copyright and fix typo.
1222
1223 * desktop.el (desktop-modes-not-to-save): New var.
1224 (desktop-save-buffer-p): Use it.
1225 Also, obey desktop-buffers-not-to-save even for non-file buffers.
1226 (desktop-buffer-file): Use pop-to-buffer if switch-to-buffer fails.
1227
1228 2000-10-10 Dave Love <fx@gnu.org>
1229
1230 * toolbar/tool-bar.el (tool-bar-add-item)
1231 (tool-bar-add-item-from-menu): Don't favour XPM icons on mono
1232 display.
1233
1234 * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm:
1235 * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm:
1236 * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm:
1237 * toolbar/index.pbm, toolbar/info.pbm, toolbar/jump_to.pbm:
1238 * toolbar/left_arrow.pbm, toolbar/mail.pbm, toolbar/mail_compose.pbm:
1239 * toolbar/mail_send.pbm, toolbar/new.pbm, toolbar/open.pbm:
1240 * toolbar/paste.pbm, toolbar/preferences.pbm, toolbar/print.pbm:
1241 * toolbar/right_arrow.pbm, toolbar/save.pbm, toolbar/saveas.pbm:
1242 * toolbar/search-replace.pbm, toolbar/search.pbm, toolbar/spell.pbm:
1243 * toolbar/undo.pbm, toolbar/up_arrow.pbm: New files straight from
1244 the .xpms; probably need retouching.
1245
1246 2000-10-10 Miles Bader <miles@lsi.nec.co.jp>
1247
1248 * subr.el (add-to-list): Add optional argument APPEND.
1249 * battery.el (display-battery): Use `add-to-list'.
1250
1251 2000-10-09 Thien-Thi Nguyen <ttn@gnu.org>
1252
1253 * play/zone.el (zone-timer, zone-wc-tbl): Rework
1254 these vars as symbol properties.
1255 (zone, zone-when-idle, zone-leave-me-alone)
1256 (zone-pgm-whack-chars): Use new symbol properties.
1257
1258 * battery.el (display-battery): Doc spelling fix.
1259
1260 * vc.el (with-vc-file, edit-vc-file): Specify `indent-function'
1261 property.
1262
1263 2000-10-09 Dave Love <fx@gnu.org>
1264
1265 * toolbar/tool-bar.el (tool-bar-mode): Check whether tool-bar-map
1266 has been initialized before calling tool-bar-setup.
1267 (tool-bar-add-item-from-menu): Add autoload cookie.
1268
1269 2000-10-09 Eli Zaretskii <eliz@is.elta.co.il>
1270
1271 * menu-bar.el (send-mail-item-name): New function.
1272 (menu-bar-tools-menu) <compose-mail>: Use it to display the value
1273 of mail-user-agent in the menu. Don't display the "Send Mail"
1274 item if mail-user-agent is nil or its value is ignore.
1275 (menu-bar-tools-menu) <rmail>: Don't display the "Read Mail" item
1276 if read-mail-command is nil or its value is ignore.
1277
1278 * mouse.el ([header-line mouse-1]): Bind to mouse-select-window.
1279
1280 2000-10-09 Miles Bader <miles@gnu.org>
1281
1282 * toolbar/up_arrow.xpm: Flip to put highlight in correct place.
1283 Correct image size.
1284 * toolbar/left_arrow.xpm: Correct image size.
1285
1286 * jka-compr.el: Don't call `jka-compr-install' when loading (it
1287 will be done by the definition of `auto-compression-mode' if
1288 necessary. Move code to uninstall existing file-name handler
1289 before definition of `auto-compression-mode'.
1290
1291 * image-file.el (auto-image-file-mode): Move to the end of the
1292 file, because `define-minor-mode' actually calls the mode-function
1293 if the associated variable is non-nil, which requires that all
1294 needed functions be already defined.
1295
1296 * mouse.el (popup-menu): Balance parens.
1297
1298 2000-10-08 Stefan Monnier <monnier@cs.yale.edu>
1299
1300 * mouse.el (popup-menu): Move the command call outside the loop
1301 so that popup-menu returns whatever the command returns.
1302
1303 * progmodes/etags.el: Docstring fixes. Maintainer line updated.
1304 (initialize-new-tags-table): Use run-hook-with-args-until-success.
1305 (find-tag): Use pop-to-buffer if switch-to-buffer failed.
1306 (tags-table-format-functions): Renamed from tags-table-format-hooks.
1307
1308 * vc.el (vc-version-diff): diff-switches can be a list.
1309 Use relative filenames for prettier output.
1310
1311 * pcvs.el (cvs-append-to-ignore, cvs-vc-command-advice)
1312 (vc-post-command-functions): Remove old-VC compatibility code.
1313
1314 * newcomment.el (comment-indent-default): Autoload.
1315
1316 * font-lock.el (font-lock-defaults): Make buffer-local.
1317 (font-lock-turn-on-thing-lock): Use jit-lock-refontify.
1318 (font-lock-choose-keywords):
1319 Ignore LEVEL unless KEYWORDS is a list of syms.
1320 (c-keywords, c++-keywords, objc-keywords, java-keywords):
1321 Don't wrap regexp-opt things in \(...\) unnecessarily.
1322
1323 * jit-lock.el: Don't require font-lock any more.
1324 (jit-lock-functions): Make buffer-local.
1325 (jit-lock-saved-fontify-buffer-function): Remove.
1326 (jit-lock-mode): Remove autoload cookie.
1327 Remove font-lock specific code.
1328 (jit-lock-unregister): Don't bother handling complex hooks any more.
1329 (jit-lock-refontify): New function.
1330 (jit-lock-fontify-buffer): Use it.
1331 (jit-lock-function-1): Replaced by jit-lock-fontify-now.
1332 (jit-lock-fontify-now): Renamed from jit-lock-function-1.
1333 Add optional args START and END.
1334 Never call font-lock-fontify-region directly.
1335 (jit-lock-function, jit-lock-stealth-fontify): Use it.
1336
1337 * emacs-lisp/regexp-opt.el (regexp-opt): Add \<...\> if PAREN=`words'.
1338
1339 2000-10-08 Dave Love <fx@gnu.org>
1340
1341 * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
1342
1343 * progmodes/icon.el (icon-mode-map): Add name to menu-bar keymap.
1344
1345 * play/studly.el (studlify-region, studlify-word): Add autoload
1346 cookie.
1347
1348 * play/morse.el (morse-region, unmorse-region): Add autoload
1349 cookie.
1350
1351 * play/spook.el (spook-phrases-file): Use expand-file-name, not
1352 concat.
1353
1354 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Don't
1355 insist on symbols starting with word syntax.
1356 (lisp-mode-shared-map): Renamed from shared-lisp-mode-map.
1357 (eval-defun-1): Doc fix.
1358 (indent-sexp): Use nconc to build up indent-stack.
1359
1360 * mail/sendmail.el: Byte-compile-dynamic since it gets loaded by
1361 Gnus with little use.
1362 (mail-setup-hook): Add mail-abbrevs-setup to options.
1363
1364 * recentf.el: Doc fixes.
1365
1366 * vcursor.el (vcursor-cs-binding): Remove compatibility code.
1367 Clean up remainder.
1368
1369 * timezone.el (timezone-parse-date): Doc fix. Fix regexps for (5)
1370 without timezone and (8) with timezone to enforce some whitespace.
1371 Simplify code somewhat.
1372
1373 * options.el (list-options): Doc that you should use customize.
1374
1375 * iswitchb.el (iswitchb-mode): Add :require.
1376
1377 * info.el (Info-goto-node, Info-menu): Doc fix.
1378 (Info-mode-menu): Bind beginning-of-buffer, Info-edit
1379 (info-tool-bar-map): New variable.
1380 (Info-mode): Use it.
1381 (Info-edit-map): Define all in defvar.
1382 (speedbar-attached-frame): Avoid compiler warning.
1383
1384 * toolbar/tool-bar.el (tool-bar-map): Define it empty.
1385 (global-map): Bind [tool-bar] to a filtered map.
1386 (tool-bar-add-item): Remove MAP arg. Allow PBM icons.
1387 (tool-bar-add-item-from-menu): Use tool-bar-map, not tb-map.
1388 Allow PBM icons.
1389 (tool-bar-setup): Adjust calls of tool-bar-add-item.
1390
1391 * toolbar/index.xpm, toolbar/jump_to.xpm, toolbar/attach.xpm:
1392 * toolbar/up_arrow.xpm, toolbar/left_arrow.xpm, toolbar/home.xpm:
1393 * toolbar/right_arrow.xpm: New files. Renamed from tigert's
1394 icons, except up_arrow, which is left-arrow rotated.
1395
1396 * imenu.el (imenu-add-to-menubar): Fix last change.
1397
1398 2000-10-08 Peter Breton <pbreton@ne.mediaone.net>
1399
1400 * generic-x.el (rul-generic-mode): Remove eval-when-compile
1401 statements. Suggested by Stefan Monnier <monnier@cs.yale.edu>.
1402
1403 2000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
1404
1405 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Fix
1406 typos in doc strings.
1407
1408 * font-lock.el (font-lock-mode, global-font-lock-mode): Mention in
1409 the doc strings how to customize Font Lock faces.
1410
1411 * mouse.el (mouse-drag-mode-line-1): Fix an off-by-one error in
1412 computing growth when dragging the header line.
1413
1414 2000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
1415
1416 * simple.el (kill-line): Doc fix.
1417
1418 2000-10-08 Miles Bader <miles@gnu.org>
1419
1420 * faces.el (secondary-selection): Make foreground visible on tty.
1421
1422 * jka-compr.el (auto-compression-mode): Move to the end of the
1423 file, because `define-minor-mode' actually calls the mode-function
1424 if the associated variable is non-nil, which requires that all
1425 needed functions be already defined.
1426 (with-auto-compression-mode): Add autoload cookie.
1427
1428 2000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
1429
1430 * files.el (find-backup-file-name) [ms-dos]: If support for long
1431 file names is not available, behave as if version-control were set
1432 to never.
1433
1434 2000-10-07 Dave Love <fx@gnu.org>
1435
1436 * net/browse-url.el (browse-url-gnome-moz-arguments): New option.
1437 (browse-url-gnome-moz): New function.
1438 (browse-url-browser-function): Use it.
1439 Suggested by Colin Walters <walters@cis.ohio-state.edu>.
1440
1441 2000-10-07 Stefan Monnier <monnier@cs.yale.edu>
1442
1443 * indent.el (tab-always-indent): New var.
1444 (indent-for-tab-command): Use it.
1445
1446 * files.el (set-auto-mode): Ignore unknown -*- mode -*- rather than
1447 raise an error. This way it can still default to a sane value.
1448
1449 2000-10-06 Stefan Monnier <monnier@cs.yale.edu>
1450
1451 * startup.el (fancy-splash-screens): Use local rather than global map.
1452 Don't use `update-menu-bindings' any more.
1453 Get rid of assumptions about keymap representation.
1454
1455 2000-10-06 Dave Love <fx@gnu.org>
1456
1457 * textmodes/fill.el (sentence-end-double-space)
1458 (sentence-end-without-period): Doc fix.
1459 (adaptive-fill-regexp): Purecopy.
1460 (unjustify-current-line): Use line-end-position.
1461 (fill-individual-paragraphs-prefix): Use line-beginning-position.
1462
1463 * net/eudc-vars.el (eudc): Add :version, :link.
1464
1465 * international/mule-conf.el (file-coding-system-alist): Use \', not $.
1466
1467 * emacs-lisp/find-func.el (find-function-regexp): Remove spurion.
1468 Fix for define-minor-mode.
1469 (function-at-point): Alias to function-called-at-point.
1470
1471 * custom.el (custom-declare-variable, custom-set-variables): Use mapc.
1472
1473 * simple.el (backward-word): Doc fix.
1474
1475 * image-file.el (image-file-name-regexp): image-file-regexps ->
1476 image-file-name-regexps.
1477 (image-file-name-extensions): Add pbm.
1478
1479 2000-10-06 Stefan Monnier <monnier@cs.yale.edu>
1480
1481 * smerge-mode.el (smerge-diff): Setup the buffer's default-directory
1482 and add filename to the names so that diff-mode can jump to source.
1483
1484 * font-lock.el (font-lock-defaults-alist): Remove the TeX entries.
1485 (tex-font-lock-keywords, tex-font-lock-keywords-2)
1486 (tex-font-lock-keywords-1): Remove.
1487 (font-lock-turn-on-thing-lock): Use jit-lock-register.
1488 (font-lock-turn-off-thing-lock): Use jit-lock-unregister.
1489 (font-lock-default-fontify-region):
1490 Expand beg..end correctly when just following a multiline region.
1491 (font-lock-fontify-anchored-keywords):
1492 Include the anchor text as part of the multiline.
1493
1494 2000-10-06 Gerd Moellmann <gerd@gnu.org>
1495
1496 * loadup.el (toplevel): Load `loaddefs' before `help' because the
1497 latter needs the autoloaded define-minor-mode macro during the
1498 bootstrap.
1499
1500 * startup.el (command-line): For now, activate tool-bar-mode only
1501 if XPM images are supported.
1502
1503 * mouse.el (mouse-drag-header-line): Don't allow resizing a
1504 window by dragging a header-line at the top of the frame; that's
1505 confusing because the header-line doesn't move.
1506 (mouse-drag-mode-line-1): Use event-* and posn-* functions instead
1507 of treating the event as a list. Some cleanup.
1508
1509 2000-10-06 Miles Bader <miles@gnu.org>
1510
1511 * simple.el (display-message-or-buffer): New function.
1512 (shell-command-on-region): Use `display-message-or-buffer'.
1513
1514 * emacs-lisp/easy-mmode.el (define-derived-mode): Tweak generated
1515 docstring parts.
1516
1517 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
1518 (smbclient-prompt-regexp): Add usage note to doc string.
1519 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Removed.
1520 (ftp-mode, smbclient-mode): Don't set `font-lock-defaults'.
1521 Use add-hook for adding the comint filter function, and only do so
1522 if it's not already in the global hook list.
1523 (ftp-mode, smbclient-mode, nslookup-mode): Remove redundant calls
1524 to `make-local-variable'.
1525 (nslookup-font-lock-keywords): Remove prompt entry.
1526 (nslookup): Don't set the process-filter.
1527 (finger): Exit the loop correctly when the regexps list runs out.
1528 (ftp, smbclient, smbclient-list-shares):
1529 Set the real major mode immediately, not after execing.
1530 Use `pop-to-buffer' instead of `switch-to-buffer-other-window'.
1531
1532 * comint.el (comint-watch-for-password-prompt): Use STRING as a prompt.
1533
1534 2000-10-05 Stefan Monnier <monnier@cs.yale.edu>
1535
1536 * progmodes/compile.el (compile-collect-regexps): Use dolist and push.
1537
1538 * which-func.el (which-func-format): Remove spurious space.
1539 (which-func-mode): Don't make it permanent-local.
1540 (which-func-ff-hook): Allow which-func-maxout to be nil.
1541 (which-func-update): Simplify a bit. Only run if which-func-mode is t.
1542 (which-func-mode): Simplify.
1543 Use post-command-idle-hook rather than post-command-hook.
1544 Go through all buffers and update their state.
1545 (which-function): Also try add-log-current-defun-function.
1546
1547 * vc.el (with-vc-properties): Use conses rather than length-2 lists.
1548 (vc-checkout, vc-finish-steal, vc-checkin, vc-revert-file):
1549 Update call to with-vc-properties accordingly.
1550 (vc-comment-search-reverse, vc-comment-search-forward): Docstring fix.
1551 (vc-revert-buffer): More careful about window selection and deletion.
1552 (vc-switch-backend): Slight reorg to avoid calling `registered' twice.
1553
1554 * pcvs.el (cvs-ediff-exit-hook): Expect delete-window to fail.
1555 (cvs-retrieve-revision): Reuse a pre-existing buffer.
1556 (cvs-dired-action): Change the default to quickdir.
1557
1558 * newcomment.el (comment-indent): Delegate to indent-according-to-mode
1559 if comment-indent-function returns nil.
1560 (comment-indent-default): New function.
1561 (comment-indent-function): Use it and document the new semantics.
1562
1563 * image-file.el: Docstring fixes.
1564
1565 * help.el (help-xref-on-pp): Use match-string.
1566 (describe-variable): New arg BUFFER.
1567 Store the current buffer in the help-xref-stack.
1568 (temp-buffer-resize-mode): Use define-minor-mode.
1569
1570 * jit-lock.el (jit-lock-mode): Use jit-lock-defer-contextually
1571 consistently with its docstring.
1572 Set jit-lock-first-unfontify-pos in an idempotent way.
1573 (jit-lock-register): Autoload and add arg CONTEXTUAL.
1574
1575 2000-10-05 Alex Schroeder <alex@gnu.org>
1576
1577 * sql.el (sql-mysql-options): New variable.
1578 (sql-mysql): Use it.
1579
1580 2000-10-05 Miles Bader <miles@lsi.nec.co.jp>
1581
1582 * image.el (image): New group.
1583
1584 * smerge-mode.el (smerge-mine-face, smerge-other-face)
1585 (smerge-base-face, smerge-markers-face): Add dark-background variants.
1586
1587 2000-10-04 Peter Breton <pbreton@ne.mediaone.net>
1588
1589 * net/net-utils.el (nslookup-font-lock-keywords)
1590 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
1591 Ignore the value of wqindow-system; always define keywords
1592
1593 2000-10-05 Kenichi Handa <handa@etl.go.jp>
1594
1595 * startup.el (fancy-splash-screens): Remove the code for
1596 debugging; `(trace-to-stderr "EXITTT\n")'.
1597
1598 2000-10-05 Miles Bader <miles@gnu.org>
1599
1600 * diff-mode.el (diff-goto-source): Update call to
1601 `diff-hunk-status-msg' to reflect new REV variable.
1602
1603 2000-10-04 Stefan Monnier <monnier@cs.yale.edu>
1604
1605 * progmodes/icon.el (icon-mode):
1606 Don't gratuitously override the default for comment-column.
1607
1608 * vc-hooks.el (vc-mode-line): Fix interactive spec.
1609
1610 * jit-lock.el (with-buffer-unmodified): Use unwind-protect.
1611 (jit-lock-mode): Make sure font-lock-keywords-only is bound before use.
1612 (jit-lock-functions): New var.
1613 (jit-lock-function-1): Use it if non-nil.
1614 Don't switch the syntax-table. Don't set parse-sexp-lookup-properties.
1615 Set the `fontified' property before doing the fontification to avoid
1616 repeatedly going through the same error.
1617 Don't turn errors into messages.
1618 (jit-lock-register, jit-lock-unregister): New functions.
1619
1620 * dired.el (dired-mark-pop-up): Turn comment into docstring.
1621 Use with-current-buffer.
1622
1623 * dired-aux.el (dired-do-create-files, dired-kill-tree):
1624 Turn comment into docstring.
1625
1626 * apropos.el (apropos-mode): Use define-derived-mode.
1627
1628 2000-10-04 Gerd Moellmann <gerd@gnu.org>
1629
1630 * startup.el (fancy-splash-pending-command): New variable.
1631 (fancy-splash-pre-command): New function.
1632 (fancy-splash-screens): Rewritten.
1633 (command-line-1): If fancy-splash-pending-command is set, call it
1634 interactively.
1635
1636 2000-10-04 Dave Love <fx@gnu.org>
1637
1638 * toolbar/tool-bar.el (tool-bar-setup): New function.
1639 (tool-bar-mode): Use it.
1640
1641 * subr.el (substitute-key-definition): Doc fix.
1642 (play-sound-file): New command.
1643
1644 2000-10-04 Andre Spiegel <spiegel@gnu.org>
1645
1646 * vc-hooks.el (vc-before-save, vc-default-make-version-backups,
1647 vc-version-backup-file-name): New functions.
1648
1649 * files.el (basic-save-buffer): Call vc-before-save before saving.
1650
1651 * vc-cvs.el (vc-cvs-make-version-backups): Return t if
1652 vc-cvs-stay-local-p.
1653
1654 * vc.el (vc-revert-buffer): Handle empty diff properly.
1655 (vc-version-backup-file): New function.
1656 (vc-checkout): Create a version backup if necessary.
1657 (vc-checkin): If a version backup file exists, delete it.
1658 (vc-version-diff): Diff locally using version backups, if available.
1659 (vc-revert-file): If there's a version backup, revert locally.
1660 (vc-transfer-file): Use version backup for base version, if
1661 available. If not, ask for confirmation whether to get it from the
1662 server. Update mode line before check-in.
1663
1664 2000-10-04 Dave Love <fx@gnu.org>
1665
1666 * toolbar/tool-bar.el (tool-bar-setup): New function.
1667 (tool-bar-mode): Use it.
1668
1669 2000-10-04 Peter Breton <pbreton@ne.mediaone.net>
1670
1671 * net/net-utils.el (nslookup-font-lock-keywords)
1672 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
1673 Only set if window-system is non-nil
1674 (net-utils-run-program): Returns buffer.
1675 (network-connection-reconnect): Added this function.
1676
1677 * generic.el:
1678 Incorporates extensive cleanup and docfixes by
1679 Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu).
1680 Uses cl compile-time macros.
1681 (generic-mode-name, generic-comment-list)
1682 (generic-keywords-list, generic-font-lock-expressions)
1683 (generic-mode-function-list, generic-mode-syntax-table):
1684 Removed variables.
1685 (generic-mode-alist): Renamed to generic-mode-list.
1686 (generic-find-file-regexp): Default changed to "^#".
1687 (generic-read-type): Uses completing read on generic-mode-list.
1688 (generic-mode-sanity-check): removed this function.
1689 (generic-add-to-auto-mode): Removed this function
1690 (generic-mode-internal): Bind mode-specific definitions
1691 into function instead of putting them in alist.
1692 (generic-mode-set-comments): Reworked extensively.
1693 (generic-mode-find-file-hook): Simplified regexp searching
1694 (generic-make-keywords-list): Omit extra pair of parens
1695
1696 * find-lisp.el (find-lisp-find-files-internal):
1697 Make sure directory name ends with "/".
1698
1699 * generic-x.el (apache-conf-generic-mode):
1700 Regexp now allows leading whitespace.
1701 (rc-generic-mode): Added eval-when-compile
1702 around generic-make-keywords-list.
1703 Deleted duplicate regexp
1704 (rul-generic-mode): Added eval-when-compile
1705 around generic-make-keywords-list.
1706 (etc-fstab-generic-mode): New generic mode.
1707 (rul-generic-mode): Removed one eval-when-compile
1708 which caused a max-specpdl-size exceeded error.
1709
1710 2000-10-04 Miles Bader <miles@gnu.org>
1711
1712 * simple.el (minibuffer-temporary-goal-position): New variable.
1713 (next-history-element): Try to keep the position of point in the
1714 input string constant.
1715
1716 * dired-aux.el (dired-mark-read-file-name): Add optional arg DEFAULT.
1717 (dired-do-create-files): If there's only one file, pass it in as
1718 the DEFAULT arg to dired-mark-read-file-name.
1719
1720 2000-10-03 Stefan Monnier <monnier@cs.yale.edu>
1721
1722 * diff-mode.el (diff-font-lock-keywords): Minor regex fix.
1723 (diff-goto-source): Be smarter when choosing REVERSE or not.
1724
1725 * textmodes/texinfo.el (texinfo-heading-face): Forgot the var def.
1726 (texinfo-mode-menu): Add an explicit shortcut for update all.
1727
1728 2000-10-03 Andre Spiegel <spiegel@gnu.org>
1729
1730 * vc.el (vc-transfer-file, vc-default-receive-file): Rewritten to
1731 factorize backend-specific code cleanly (this was essentially
1732 conceived by Stefan Monnier).
1733 (vc-unregister): Function removed.
1734 (vc-revert-file): New function.
1735 (vc-revert-buffer): Delegate some of the work to it.
1736
1737 * vc-rcs.el (vc-rcs-fetch-master-state): Parse and remember
1738 default branch unconditionally.
1739 (vc-rcs-set-default-branch): New function.
1740 (vc-rcs-cancel-version, vc-rcs-checkin, vc-rcs-checkout): Use it.
1741 (vc-rcs-checkin): If an appropriate default branch has been set,
1742 force creation of that branch.
1743 (vc-rcs-receive-file): Rewritten to contain only backend-specific
1744 code (as suggested by Stefan Monnier).
1745
1746 2000-10-02 Gerd Moellmann <gerd@gnu.org>
1747
1748 * isearch.el (isearch-lazy-highlight-update): Don't put a lazy
1749 highlighting overlay with a different face over the overlay
1750 isearch uses to highlight the current match because that can lead
1751 to bad face combinations.
1752
1753 * loadup.el (toplevel): Load faces before isearch.
1754
1755 * isearch.el (isearch-faces): New custom group.
1756 (isearch): New defface; was already tested for in the code.
1757 (isearch-lazy-highlight-face): Changed to defface from defcustom.
1758 (isearch-highlight): Always use face `isearch'.
1759
1760 2000-10-02 Dave Love <fx@gnu.org>
1761
1762 * emacs-lisp/byte-opt.el (byte-optimize-lapcode): Don't bind
1763 unused vars. Treat byte-constant2 like byte-constant. Fix bogus
1764 comparison of opcode with operand.
1765
1766 2000-10-03 Miles Bader <miles@gnu.org>
1767
1768 * play/yow.el (yow): Don't display multi-line quotations in a *Help*
1769 buffer, since the echo area will now grow to accommodate them.
1770
1771 2000-10-02 Andre Spiegel <spiegel@gnu.org>
1772
1773 * vc-hooks.el (vc-registered): If FILE used to be registered under
1774 a certain backend, try that one first.
1775
1776 * vc.el (vc-responsible-backend): Undo the previous change in the
1777 argument list. Handle multiple backends correctly.
1778 (vc-find-new-backend): Function removed.
1779 (vc-register): Use vc-responsible-backend, as before.
1780 (vc-next-action-on-file): Do use vc-registered, not vc-backend.
1781
1782 2000-10-02 Gerd Moellmann <gerd@gnu.org>
1783
1784 * startup.el (fancy-splash-head): Change message below the
1785 logo.
1786
1787 2000-10-02 Miles Bader <miles@lsi.nec.co.jp>
1788
1789 * diff-mode.el (diff-goto-source): Emit a status message.
1790 (diff-test-hunk, diff-apply-hunk): Remove unneeded `let'.
1791 (diff-test-hunk): Fix doc string.
1792 (diff-apply-hunk): Only advance if `diff-advance-after-apply-hunk'.
1793 (diff-advance-after-apply-hunk): New variable.
1794 (diff-apply-hunk): Don't return a value.
1795
1796 2000-10-01 Stefan Monnier <monnier@cs.yale.edu>
1797
1798 * vc.el (vc-editable-p): Minor optimization.
1799 (edit-vc-file, vc-next-action-on-file): Don't use find-file.
1800 (vc-find-new-backend): New function split from vc-responsible-backend.
1801 (vc-register): Use it.
1802 (vc-responsible-backend): Remove REGISTER arg and add BACKENDS arg.
1803 (vc-unregister): Drop BACKEND arg (it doesn't work anyway).
1804 (vc-default-unregister, vc-revert-buffer): Docstring fix.
1805 (vc-clear-headers): Don't use find-file.
1806 (vc-revert-buffer): Use `and' again (must have been a braino).
1807 (vc-switch-backend): Only prompt if requested.
1808 Short circuit if nothing is to be done.
1809 Don't use vc-resynch-buffer which could lose unsaved editing.
1810 (vc-default-receive-file): Update call to vc-unregister.
1811 (with-vc-file, vc-next-action-on-file):
1812 Use vc-backend rather than vc-registered.
1813 (vc-next-action-on-file): Use intern-soft.
1814 Deal with read-only *vc-diff* buffer.
1815 (vc-transfer-file): Docstring fix.
1816
1817 * vc-rcs.el (vc-rcs-unregister): Keep a backup of the master file.
1818 (vc-rcs-receive-file): Avoid with-vc-properties.
1819 Update call to vc-unregister.
1820 Use constant `RCS' rather than (dynamically bound) var `backend'.
1821
1822 2000-10-01 Andre Spiegel <spiegel@gnu.org>
1823
1824 * vc.el (vc-next-action-on-file): Update mode line only if file
1825 is visited.
1826 (vc-start-entry): New argument initial-contents. Don't visit the file
1827 if it isn't already visited. Brought documentation up-to-date.
1828 (vc-next-action, vc-register): Updated calls to vc-start-entry.
1829 (vc-checkin): New optional arg initial-contents, which is passed to
1830 vc-start-entry.
1831 (vc-finish-logentry): Make sure to bury log buffer only if there
1832 really is one. Call `vc-resynch-buffer' on log-file, not
1833 buffer-file-name.
1834 (vc-default-comment-history, vc-default-wash-log): New functions.
1835 (vc-index-of): Removed.
1836 (vc-transfer-file): Make do without the above.
1837 (vc-default-receive-file): Call comment-history unconditionally. Pass
1838 the resulting string to vc-checkin, instead of inserting it into the
1839 comment ring.
1840
1841 * vc-rcs.el (vc-rcs-receive-file): Call comment-history
1842 unconditionally. Use the comments as initial contents of the log
1843 entry buffer. Document the trick to force branch creation with no
1844 changes.
1845
1846 2000-10-01 Miles Bader <miles@gnu.org>
1847
1848 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Call
1849 `recenter' with an arg to prevent redrawing the display.
1850
1851 2000-09-30 Stefan Monnier <monnier@cs.yale.edu>
1852
1853 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Prettier.
1854
1855 * emacs-lisp/lisp.el (lisp-complete-symbol): Only jump 2 not 3 levels.
1856
1857 * progmodes/c-mode.el (c-mode):
1858 Don't gratuitously override the default for comment-column.
1859
1860 * textmodes/tex-mode.el (latex-metasection-list): New var.
1861 (latex-imenu-create-index): Use it.
1862 Move the regexp construction outside loops (and use push).
1863 (tex-font-lock-keywords-1, tex-font-lock-keywords-2)
1864 (tex-font-lock-keywords): Moved from font-lock.el.
1865 (tex-comment-indent): Remove.
1866 (tex-common-initialization): Don't set comment-indent-function.
1867 (latex-block-default): New var.
1868 (tex-latex-block): Use it to provide a default choice.
1869 Add any unknown choice to latex-block-names.
1870 Insert [...] after {...}.
1871 (tex-last-unended-begin): Simplify regexp.
1872 (tex-goto-last-unclosed-latex-block, latex-backward-sexp-1)
1873 (latex-forward-sexp-1, latex-forward-sexp): New functions.
1874 (latex-mode): Set forward-sexp-function.
1875
1876 * textmodes/texinfo.el (texinfo-font-lock-syntactic-keywords):
1877 Add regexp for @ignore ... @end ignore.
1878 (texinfo-heading-face): New face.
1879 (texinfo-font-lock-keywords): Use it.
1880 (texinfo-mode-menu): New menu.
1881 (texinfo-inside-macro-p, texinfo-inside-env-p, texinfo-insert-quote):
1882 New functions.
1883 (texinfo-mode-map): Bind " to insert-quote and M-RET to insert-@item.
1884 (texinfo-section-types-regexp, texinfo-section-level-regexp)
1885 (texinfo-subsection-level-regexp, texinfo-subsubsection-level-regexp):
1886 Remove declaration.
1887 (texinfo-show-structure): Use outline-regexp and texinfo-section-list.
1888
1889 * delsel.el (delete-selection-mode): Use define-minor-mode.
1890
1891 * emacs-lisp/regexp-opt.el (regexp-opt-group): Put more parenthesis.
1892
1893 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
1894
1895 * dired.el (dired-map-over-marks): Use modern backquotes and docstring.
1896
1897 2000-09-30 Gerd Moellmann <gerd@gnu.org>
1898
1899 * replace.el (keep-lines-read-args): New function.
1900 (keep-lines, flush-lines, how-many): Use keep-lines-read-args to
1901 read arguments interactively. Add parameters RSTART and REND.
1902 Operate on the active region in Transient Mark mode.
1903
1904 * files.el (auto-mode-alist): Add pattern for `#*mail*...'.
1905
1906 * emacs-lisp/authors.el (authors-obsolete-file-p): New function.
1907 (authors-obsolete-files-regexps): New variable.
1908 (authors-add): Don't record changes in obsolete files.
1909
1910 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
1911
1912 * autoinsert.el (auto-insert-mode): Use define-minor-mode.
1913
1914 * newcomment.el (comment-indent-function): Use 0 for ;;; and %%%.
1915 (comment-indent): Make sure there's a space between code and comment.
1916 Shift comments left to avoid going past fill-column.
1917
1918 2000-09-29 Gerd Moellmann <gerd@gnu.org>
1919
1920 * startup.el (startup-echo-area-message): New function.
1921 (display-startup-echo-area-message): Use it.
1922 (fancy-splash-screens): Rewritten to use keymaps and a timer.
1923 (fancy-splash-default-action): New function.
1924 (fancy-splash-screens-1): New function.
1925 (fancy-splash-head): Put a help-echo and a keymap under the image.
1926
1927 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
1928
1929 * diff-mode.el (diff-add-log-file-name): Remove.
1930 (diff-mode): Use add-log-buffer-file-name-function.
1931
1932 * add-log.el (find-change-log): New arg BUFFER-FILE.
1933 (add-log-file-name): Obey add-log-file-name-function.
1934 (add-log-buffer-file-name-function): New var.
1935 (add-change-log-entry): Use it.
1936
1937 2000-09-29 Miles Bader <miles@gnu.org>
1938
1939 * image-file.el (image-file-name-extensions): New variable.
1940 (image-file-name-regexps): Renamed from `image-file-regexps'.
1941 New default value is nil. Call `auto-image-file-mode'.
1942 (image-file-name-regexp): New function.
1943 (auto-image-file-mode): New minor mode.
1944 (insert-image-file): Don't make conditional on the image-file
1945 handler being enabled.
1946 (image-file-handler): Make the call here conditional instead.
1947 (set-image-file-handler-enabled, enable-image-file-handler)
1948 (disable-image-file-handler): Functions removed.
1949
1950 * emacs-lisp/authors.el (authors-print): Rephrase many-files
1951 string.
1952
1953 2000-09-29 Gerd Moellmann <gerd@gnu.org>
1954
1955 * textmodes/tex-mode.el (latex-outline-regexp): Don't use `list*';
1956 it's a function from CL.
1957 (latex-imenu-create-index): Replace eval-when-compile with progn
1958 because latex-section-alist is not bound while compiling.
1959
1960 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
1961
1962 * textmodes/outline.el (outline-minor-mode): Use define-minor-mode.
1963 (outline-mode): Use define-derived-mode.
1964
1965 * progmodes/perl-mode.el (perl-mode):
1966 * progmodes/awk-mode.el (awk-mode):
1967 * progmodes/asm-mode.el (asm-mode):
1968 Don't gratuitously override the default for comment-column.
1969
1970 * emacs-lisp/lisp.el (lisp-complete-symbol):
1971 Distinguish the let-binding case from the funcall case.
1972 (forward-sexp-function): New variable.
1973 (forward-sexp): Use it.
1974
1975 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Autoload.
1976 (easy-mmode-defmap): Remove the now useless autoload.
1977
1978 * time.el (display-time-mode): Use define-minor-mode.
1979
1980 * subr.el (add-minor-mode): Don't eval NAME.
1981 Don't depend on the presence of TOGGLE-FUN for any special behavior.
1982 Use if rather than cond.
1983
1984 * simple.el (read-expression-map): Define more properly.
1985 (comment-indent-hook): Remove.
1986 (string-to-syntax): Bug fix.
1987
1988 * pcvs.el (cvs-ediff-exit-hook): Kill buffer before window.
1989 (cvs-ediff-diff): Fix typo.
1990 (cvs-revert-if-needed): Don't bother preserving read-only.
1991
1992 * paren.el (show-paren-mode): Use define-minor-mode.
1993
1994 * jka-compr.el (auto-compression-mode): Use define-minor-mode.
1995 (toggle-auto-compression): Remove.
1996 (jka-compr-build-file-regexp): Remove useless grouping.
1997
1998 * diff-mode.el (diff-mode-map, diff-minor-mode-prefix):
1999 Avoid user-reserved bindings.
2000 (diff-mode, diff-minor-mode): Drop make-local-hook (done by add-hook).
2001 (diff-header-face): Revert to grey85.
2002
2003 * cvs-status.el (cvs-status-entry-leader-re): Minor fix.
2004
2005 * complete.el (partial-completion-mode) <defcustom>: Remove.
2006 (partial-completion-mode): Use define-minor-mode.
2007 (PC-do-completion): Understand `completion-auto-help = delay'
2008 to mean to popup the completion buffer only the second time.
2009 (PC-include-file-all-completions, PC-include-file-all-completions)
2010 (PC-include-file-all-completions): Don't quote lambda.
2011
2012 * comint.el (comint-mode-hook): Docstring fix.
2013 (comint-mode): Use define-derived-mode.
2014 (comint-mode-map): Remove obsolete comment.
2015 (make-comint): Minor stylistic change.
2016 (comint-insert-clicked-input): Be more careful to find the overlay.
2017 Use this-command-keys rather than hardcoding mouse-2.
2018
2019 * font-lock.el: Replace confusing (,@ with ,
2020 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
2021 Don't use regexp-opt-depth. Spice up the regexp for args.
2022 Don't distinguish between cmds that can take an opt arg or not.
2023 Use `append' and `prepend' rather than `keep'.
2024
2025 * textmodes/tex-mode.el (latex-imenu-indent-string): Add a space.
2026 (latex-outline-regexp): New var.
2027 (latex-outline-level): New fun.
2028 (latex-section-alist): New var.
2029 (latex-imenu-create-index): Use it. Use `push' as well.
2030 (tex-shell-map): Initialize it properly.
2031 (tex-mode): Minor stylistic change.
2032 (plain-tex-mode): Use define-derived-mode.
2033 (latex-mode): Use define-derived-mode.
2034 Construct the paragraph regexps in a more readable way.
2035 Set the buffer-local outline-{level,regexp} vars.
2036 (slitex-mode): Derive from latex-mode.
2037 (tex-common-initialization): Don't kill-all-vars anymore.
2038 Add setting for comment-add and font-lock-defaults.
2039 (tex-start-shell): Use with-current-buffer and don't re-init keymap.
2040 (tex-main-file): New fun. Obey TeX-master as well and remove `.tex'.
2041 (tex-start-tex): New arg DIR (and send a chdir command for it).
2042 Also display the shell buffer and save it in tex-last-buffer-texed.
2043 (tex-region): Use expand-file-name rather than concat.
2044 Remove code made useless by changes in tex-start-tex.
2045 (tex-file): Use tex-main-file and adapt to new tex-start-tex.
2046
2047 * map-ynp.el (map-y-or-n-p): Fix missing backquotes.
2048
2049 2000-09-28 Dave Love <fx@gnu.org>
2050
2051 * eshell/eshell.el (eshell) <defgroup>: Add :version.
2052
2053 2000-09-28 Gerd Moellmann <gerd@gnu.org>
2054
2055 * emacs-lisp/authors.el (authors-add): Use `nconc' instead of
2056 `append'.
2057
2058 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
2059
2060 * info.el (Info-extract-pointer): Undo last change.
2061 Instead, fix the position of the `bound' arg to re-search-backward.
2062
2063 2000-09-27 Stefan Monnier <monnier@cs.yale.edu>
2064
2065 * info.el (Info-extract-pointer):
2066 Widen more carefully, to avoid finding pointers in other nodes.
2067 (Info-index): Use push.
2068
2069 2000-09-27 Gerd Moellmann <gerd@gnu.org>
2070
2071 * frame.el (set-frame-font): Remove call to obsolete function
2072 frame-update-faces.
2073 (set-foreground-color, set-background-color): Likewise for
2074 frame-update-face-colors.
2075
2076 2000-09-27 Miles Bader <miles@gnu.org>
2077
2078 * image-file.el: New file.
2079
2080 2000-09-27 Gerd Moellmann <gerd@gnu.org>
2081
2082 * frame.el (frame-notice-user-settings): Don't call
2083 frame-update-faces, which is a no-op now.
2084
2085 * ediff-wind.el (ediff-control-frame-parameters): Add zero
2086 tool-bar-lines.
2087
2088 2000-09-27 Dave Love <fx@gnu.org>
2089
2090 * mouse.el: Fix last change.
2091
2092 2000-09-27 Miles Bader <miles@lsi.nec.co.jp>
2093
2094 * toolbar/tool-bar.el (tool-bar-help): Use `mouse-pixel-position'.
2095
2096 2000-09-22 Kenichi Handa <handa@etl.go.jp>
2097
2098 * international/quail.el (quail-help): The output message is
2099 improved.
2100
2101 2000-09-26 Dave Love <fx@gnu.org>
2102
2103 * mouse.el (popup-menu): If POSITION is nil, set it using
2104 mouse-position.
2105
2106 2000-09-25 Sam Steingold <sds@gnu.org>
2107
2108 * net/browse-url.el (browse-url-file-url): Check for null maps.
2109
2110 2000-09-26 Gerd Moellmann <gerd@gnu.org>
2111
2112 * frame.el (frame-notice-user-settings): Don't add a
2113 tool-bar-lines frame parameter to default-frame-alist in batch mode.
2114
2115 * frame.el (frame-notice-user-settings):
2116 Make tool-bar-mode and default-frame-alist consistent.
2117
2118 * toolbar/tool-bar.el (tool-bar-help): New function.
2119
2120 2000-09-25 Gerd Moellmann <gerd@gnu.org>
2121
2122 * bytecomp.el (byte-compile-defvar-or-defconst): Only cons onto
2123 current-load-list in top-level forms. Else this leaks a cons cell
2124 every time a defun is called.
2125
2126 * mail/mail-utils.el (rmail-dont-reply-to): Fix last change.
2127
2128 2000-09-25 Dave Love <fx@gnu.org>
2129
2130 * startup.el (fancy-splash-head): Check XPM is available.
2131
2132 * autoinsert.el (auto-insert): Doc fix.
2133 (auto-insert-alist): Following GNU notices, don't say `copyright
2134 _by_'. Use line-beginning-position.
2135 (auto-insert): Check buffer-file-name is non-nil before use.
2136
2137 2000-09-25 Gerd Moellmann <gerd@gnu.org>
2138
2139 * textmodes/texinfo.el (texinfo-mode): Prevent filling lines
2140 starting with `@def' or `@multitable', in addition to ones
2141 specified by the user in auto-fill-inhibit-regexp.
2142
2143 2000-09-25 Markus Rost <rost@math.ohio-state.edu>
2144
2145 * mail/mail-utils.el (rmail-dont-reply-to): Avoid infinite loop if
2146 rmail-dont-reply-to-names matches the empty string.
2147
2148 2000-09-25 Gerd Moellmann <gerd@gnu.org>
2149
2150 * startup.el (command-line-1, fancy-splash-text): Change the
2151 text to sound more friendly.
2152
2153 2000-09-23 Thien-Thi Nguyen <ttn@gnu.org>
2154
2155 * progmodes/hideshow.el: Update author email address.
2156 Generally, sync w/ maintainer version 5.22.
2157 (hs-hide-all-non-comment-function): New var.
2158 (hs-hide-hook, hs-show-hook, hs-minor-mode): Update docstrings.
2159 (hs-hide-all): Use `hs-hide-all-non-comment-function'.
2160 (hs-show-region): Delete this command.
2161 (hs-minor-mode-map): Change bindings to leave "C-c LETTER" alone.
2162
2163 2000-09-22 Dave Love <fx@gnu.org>
2164
2165 * hl-line.el (hl-line-overlay): Don't make it buffer-local.
2166 (hl-line-highlight): Specify buffer when moving overlay.
2167
2168 * progmodes/fortran.el (fortran-mode): Locally set
2169 normal-auto-fill-function.
2170 (fortran-auto-fill-mode): Just alias to auto-fill-mode.
2171 (fortran-mode-map): Adjust auto-fill menu entry.
2172
2173 2000-09-22 Gerd Moellmann <gerd@gnu.org>
2174
2175 * vc-rcs.el (toplevel): Require `vc' when compiling.
2176
2177 * startup.el (fancy-splash-head): Use splash.pbm instead of splash.xbm.
2178
2179 2000-09-22 Andre Spiegel <spiegel@gnu.org>
2180
2181 * vc.el (vc-switch-backend): Signal an error if the file is not
2182 registered under the new backend.
2183
2184 * vc-rcs.el (vc-rcs-checkin): Fix bug that prevented check-in
2185 without explicit revision number.
2186
2187 2000-09-21 Stefan Monnier <monnier@cs.yale.edu>
2188
2189 * diff-mode.el (diff-file-header-face): Reset to its previous value.
2190 (diff-hunk-text): Correctly use offsets rather than buffer-positions.
2191 (diff-xor): New function.
2192 (diff-find-source-location): Use it. Fix a stupid name clash.
2193 (diff-hunk-status-msg): New function.
2194 (diff-apply-hunk): Drop args OTHER-FILE, DRY-RUN, POPUP and NOERROR.
2195 (diff-test-hunk): Use diff-find-source-location.
2196 (diff-goto-source): Favor the `reverse'.
2197 (diff-hunk-text): Properly handle one-sided context diffs.
2198 (diff-apply-hunk): When done, advance to the next hunk.
2199
2200 2000-09-21 Gerd Moellmann <gerd@gnu.org>
2201
2202 * startup.el (command-line): If frame was created with a non-zero
2203 tool-bar-lines parameter, switch tool-bar-mode on.
2204
2205 * add-log.el (change-log-date-face, change-log-name-face)
2206 (change-log-email-face, change-log-file-face)
2207 (change-log-list-face, change-log-conditionals-face)
2208 (change-log-function-face, change-log-acknowledgement-face):
2209 New faces, inheriting from font-lock faces.
2210 (change-log-font-lock-keywords): Use them.
2211
2212 2000-09-21 Dave Love <fx@gnu.org>
2213
2214 * progmodes/cperl-mode.el (top-level): Clean up
2215 `eval-when-compile's and assorted defvars.
2216 (cperl-invalid-face): Don't double-quote value. Change custom
2217 type.
2218 (cperl-mode): Set normal-auto-fill-function and don't zap
2219 auto-fill-function.
2220 (cperl-imenu--function-name-regexp-perl): Renamed from
2221 imenu-example--function-name-regexp-perl.
2222 (cperl-imenu--create-perl-index): Renamed from
2223 imenu-example--create-perl-index.
2224 (cperl-xsub-scan): Don't require cl.
2225
2226 * msb.el (msb-mode-map): Use substitute-key-definition.
2227 (msb-mode): Use msb-mode-map.
2228
2229 2000-09-21 Andre Spiegel <spiegel@gnu.org>
2230
2231 * vc.el (vc-index-of, vc-transfer-file, vc-default-receive-file):
2232 New functions.
2233 (vc-next-action-on-file): Call vc-transfer-file at appropriate places.
2234 (vc-switch-backend): New function.
2235 (vc-prefix-map): Bind `vc-switch-backend' to `b'.
2236 (vc-register): Fix prompt.
2237 (vc-unregister, vc-default-unregister): New functions.
2238 (vc-version-diff): Handle empty buffer in sentinel.
2239
2240 * vc-rcs.el (vc-rcs-workfile-is-newer): New function.
2241 (vc-rcs-state-heuristic): Use it to guess the state of files with
2242 non-strict locking.
2243 (vc-rcs-find-most-recent-rev): Handle the case when a branch has
2244 been set with -b, but not created yet.
2245 (vc-rcs-fetch-master-state): With non-strict locking, compare file
2246 contents in order to find the state.
2247 (vc-rcs-checkin): Allow creation of branches with no changes.
2248 (vc-rcs-unregister, vc-rcs-receive-file)
2249 (vc-rcs-set-non-strict-locking): New functions.
2250
2251 * vc-hooks.el (vc-name): Force correct computation of the value
2252 in case it is missing.
2253
2254 2000-09-21 Gerd Moellmann <gerd@gnu.org>
2255
2256 * startup.el (fancy-splash-tail): Use a different foreground
2257 color on a dark frame background.
2258
2259 2000-09-21 Miles Bader <miles@lsi.nec.co.jp>
2260
2261 * info.el: Use the correct capitalization when making Info-mode
2262 and Info-edit-mode `special' modes.
2263
2264 2000-09-20 Stefan Monnier <monnier@cs.yale.edu>
2265
2266 * diff-mode.el (diff-add-log-file-name, diff-current-defun): New funs.
2267 (diff-mode): Add support for add-log.el.
2268 (diff-hunk-text): Use char offsets rather than line offsets.
2269 (diff-find-source-location): Replace LINE with line-offset (nil
2270 if not found) and always set POS to a meaningful position.
2271 Adapt to the new char-offsets.
2272 (diff-apply-hunk): Drop support for the unused `select' POPUP.
2273 Adapt to the new diff-find-source-location.
2274 (diff-goto-source): Adapt to the new diff-find-source-location.
2275
2276 * add-log.el (add-log-file-name): New function (split out of
2277 add-change-log-entry).
2278 (add-change-log-entry): Use it.
2279 Call add-log-file-name-function with the changelog file name if
2280 the current buffer is not associated with any file.
2281 Avoid find-file if the selected window is dedicated.
2282
2283 * diff-mode.el (diff-find-source-location):
2284 Move code from diff-apply-hunk. Return buffer rather than file.
2285 (diff-apply-hunk): Use the new result from diff-find-source-location.
2286 (diff-goto-source): Use the new diff-find-source-location.
2287
2288 2000-09-20 Dave Love <fx@gnu.org>
2289
2290 * iswitchb.el: Some doc fixes.
2291 (iswitchb-mode-map): Define completely initially. Inherit
2292 minibuffer-local-map.
2293 (iswitchb-completion-help) <!iswitchb-xemacs>: Use
2294 fundamental-mode.
2295 (iswitchb-global-map): New variable.
2296 (iswitchb-summaries-to-end): Amalgamate regexps.
2297 (iswitchb-mode): New.
2298 (iswitchb-mode-hook): New variable.
2299 (iswitchb) <defgroup>: Add URL link. Use group `completion', not
2300 `extensions'.
2301
2302 2000-09-20 Gerd Moellmann <gerd@gnu.org>
2303
2304 * ehelp.el (electric-help): New defgroup.
2305 (electric-help-shrink-window): New user-option.
2306 (with-electric-help): Use it.
2307
2308 * window.el (shrink-window-if-larger-than-buffer): If face
2309 `mode-line' has a :box, and we're on a graphical frame, add 1
2310 to the needed window height.
2311
2312 * frame.el (frame-notice-user-settings): Add a last parameter nil
2313 to a call to `append', because the last list passed to `append' is
2314 not copied, and so subsequent calls to assq-delete-all will modify
2315 default-frame-alist.
2316
2317 * startup.el (fancy-splash-image): Change :type.
2318 (fancy-splash-head): Use an XBM image if appropriate.
2319 (command-line-1): Show splash screens in more cases.
2320
2321 * startup.el (fancy-splash-text): Don't quote faces.
2322
2323 * dired.el (dired-font-lock-keywords): Undo last change.
2324 (dired-readin): Bind indent-tabs-mode to nil.
2325
2326 * startup.el (fancy-splash-head): If frame's background mode
2327 is `dark', change the black background of the image to gray.
2328 (fancy-splash-screens): Display startup echo area message.
2329 (display-startup-echo-area-message): New function.
2330
2331 2000-09-20 Miles Bader <miles@lsi.nec.co.jp>
2332
2333 * faces.el (mode-line, tool-bar): Merge entries for `x' and `w32'.
2334
2335 * info.el (info-header-node): Tweak for color ttys.
2336
2337 * faces.el (face-valid-attribute-values): Make sure directories we
2338 search for stipples both exist and are readable before trying to
2339 search them.
2340
2341 * diff-mode.el (diff-apply-hunk): Jump to the correct line offset
2342 in the dry-run case.
2343
2344 * jka-compr.el (with-auto-compression-mode): New macro.
2345
2346 * cus-edit.el (custom-face-tag-face, custom-group-tag-face-1)
2347 (custom-group-tag-face, custom-variable-tag-face): Use relative
2348 :height and inherit from `variable-pitch' face instead of
2349 hardwiring :family.
2350 * hi-lock.el (hi-black-hb): Likewise.
2351
2352 Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
2353 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Like in
2354 toolbar-add-item, if image doesn't have a mask add a `:mask
2355 heuristic'.
2356
2357 2000-09-19 Stefan Monnier <monnier@cs.yale.edu>
2358
2359 * diff-mode.el: Docstring fixes.
2360 (diff-header-face, diff-comment-face): New faces.
2361 (diff-font-lock-keywords): Highlight a bit differently.
2362 (diff-find-source-location): Don't return SPAN any more.
2363 (diff-hunk-text): Don't bother erasing the temp buffer.
2364 (diff-find-text): Drop argument LINE.
2365 (diff-apply-hunk): Update calls to diff-find-text.
2366 (diff-goto-source): Use pop-to-buffer again and don't raise an error.
2367
2368 * calendar/calendar.el: Docstring fixes.
2369 (calendar-make-alist): Don't quote lambda.
2370 (calendar-star-date): Use make-local-variable.
2371
2372 2000-09-19 Dave Love <fx@gnu.org>
2373
2374 * toolbar/tool-bar.el: Renamed from toolbar.el.
2375 Change `toolbar' to `tool-bar' generally in symbols.
2376 Make some items invisible in `special' major modes.
2377 (tool-bar-add-item-from-menu): Renamed from toolbar-like-menu-item.
2378 Add arg PROPS.
2379
2380 * startup.el (fancy-splash-screen) <defgroup>: Fix syntax.
2381 Add :version here.
2382 (fancy-splash-delay, fancy-splash-image): Remove :version here.
2383
2384 2000-09-19 Gerd Moellmann <gerd@gnu.org>
2385
2386 * progmodes/sh-script.el (sh-search-word): Remove call to `debug'.
2387
2388 * files.el (find-file-suppress-same-file-warnings): New user-option.
2389 (find-file-noselect): Use it.
2390
2391 * startup.el (fancy-splash-delay, fancy-splash-image): Add :version.
2392 (fancy-splash-screen): Defgroup.
2393
2394 * add-log.el (change-log-font-lock-keywords): Match names
2395 more exactly for the case that font-lock-constant-face is
2396 underlined.
2397
2398 2000-09-19 Richard M. Stallman <rms@gnu.org>
2399
2400 * progmodes/sh-script.el (sh-search-word): Rewritten for speed.
2401
2402 2000-09-19 Andre Spiegel <spiegel@gnu.org>
2403
2404 * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
2405
2406 2000-09-19 Gerd Moellmann <gerd@gnu.org>
2407
2408 * gnus/: Update to emacs-21-branch of the Gnus CVS repository.
2409 * gnus/binhex.el, gnus/flow-fill.el, gnus/format-spec.el
2410 * gnus/gnus-ml.el, gnus/gnus-mlspl.el, gnus/ietf-drums.el,
2411 * gnus/imap.el, gnus/mail-parse.el, gnus/mail-prsvr.el,
2412 * gnus/mail-source.el, gnus/mailcap.el, gnus/mm-bodies.el,
2413 * gnus/mm-decode.el, gnus/mm-encode.el, gnus/mm-partial.el,
2414 * gnus/mm-util.el, gnus/mm-uu.el, gnus/mm-view.el,
2415 * gnus/mml.el, gnus/nnimap.el, gnus/nnslashdot.el,
2416 * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
2417 * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
2418 * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
2419 * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
2420
2421 * startup.el (fancy-splash-text): New variable.
2422 (fancy-splash-delay, fancy-splash-image): New user-options.
2423 (fancy-splash-insert, fancy-splash-head, fancy-splash-tail)
2424 (fancy-splash-screens): New functions.
2425 (command-line-1): If display has a `display' frame parameter, has
2426 colors, and we have XPM support, show more fancy splash screens.
2427
2428 2000-09-19 Dave Love <fx@gnu.org>
2429
2430 * map-ynp.el (map-y-or-n-p): Check use-dialog-box. Don't lose
2431 with null `help'. Use modern backquote syntax.
2432
2433 2000-09-19 Gerd Moellmann <gerd@gnu.org>
2434
2435 * font-lock.el (font-lock-mode): Change message telling the user
2436 that ``the buffer is too big''.
2437
2438 * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
2439 for instance for the case that tab-width is 2.
2440
2441 2000-09-18 Gerd Moellmann <gerd@gnu.org>
2442
2443 * toolbar/toolbar.el (toolbar-like-menu-item): Like in
2444 toolbar-add-item, if image doesn't have a mask add a `:mask
2445 heuristic'.
2446
2447 2000-09-18 Miles Bader <miles@lsi.nec.co.jp>
2448
2449 * diff-mode.el (diff-hunk-text): Add new optional arg LINE-OFFSET,
2450 and return a cons if it's non-nil.
2451 (diff-apply-hunk): Try to jump to the line in the source text
2452 corresponding to the position of point in the in the hunk.
2453
2454 * info.el (Info-title-3-face, Info-title-2-face)
2455 (Info-title-1-face): Use face inheritance and relative sizes
2456 instead of hard-wiring things.
2457
2458 * faces.el (secondary-selection): Make dark-background variant sane.
2459
2460 2000-09-16 Andrew Innes <andrewi@gnu.org>
2461
2462 * makefile.w32-in (compile-files-CMD): No need to make .elc files
2463 read-only, since they aren't under VC now.
2464
2465 2000-09-17 Dave Love <fx@gnu.org>
2466
2467 * tmm.el: Replace mapcar with mapc in several places.
2468
2469 * loadhist.el (unload-feature): Maybe call elp-restore-list and
2470 ad-unadvise.
2471
2472 * international/latin1-disp.el: New file.
2473
2474 * calendar/cal-move.el (scroll-calendar-left)
2475 (scroll-calendar-right): Make arg optional (for active mode line).
2476
2477 * calendar/calendar.el (calendar-mode-line-format): Make fields
2478 mouse-sensitive.
2479 (calendar-read-date, calendar-read-date, calendar-window-list):
2480 Unquote lambda.
2481 (calendar-month-name): Use aref, not sref.
2482
2483 * view.el (minor-mode-alist): Propertize the string.
2484
2485 * international/characters.el (standard-case-table): Add entries
2486 for Greek.
2487
2488 2000-09-18 Miles Bader <miles@gnu.org>
2489
2490 * info.el (info-node, info-xref): Add dark-background variants.
2491
2492 * faces.el (header-line): Change defaults to be less confusing
2493 when mixed with mode-lines.
2494
2495 * info.el (Info-fontify-node): Make a few cleanups.
2496 Add extra `help-echo' and `local-map' props to node xrefs.
2497 Use header-specific faces for node-names & xrefs.
2498 (Info-use-header-line): New variable.
2499 (info-header-xref, info-header-node): New faces.
2500 (Info-setup-header-line): New function.
2501 (Info-select-node): Call Info-setup-header-line when enabled.
2502 (Info-extract-pointer): Work even if the header line is hidden.
2503 (Info-header-line): New variable.
2504
2505 2000-09-16 Stefan Monnier <monnier@cs.yale.edu>
2506
2507 * vms-patch.el (print-region-function): Don't quote lambda.
2508
2509 * tempo.el (tempo-expand-if-complete): Quote paren in docstring.
2510
2511 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Cleanup the regexp.
2512 (lm-get-header-re): Allow spaces between the header and the colon.
2513 (lm-header): Allow $ in non-RCS headers.
2514 (lm-header-multiline): Put the strings back into order.
2515 Stop at an empty line. Don't require two space chars if the
2516 line is clearly not another header line.
2517
2518 * emacs-lisp/lmenu.el (popup-menu, popup-menu-internal)
2519 (popup-menu-popup): Remove.
2520
2521 2000-09-15 Gerd Moellmann <gerd@gnu.org>
2522
2523 * toolbar/toolbar.el (toolbar-add-item): Use the same image
2524 specification if or if not tool-bar item contains an `:enabled'
2525 property.
2526
2527 * menu-bar.el (menu-bar-files-menu): Disable ``Save'' if
2528 current buffer has no file name.
2529
2530 2000-09-15 Dave Love <fx@gnu.org>
2531
2532 * strokes.el: Sync with maintainer's current version with changes
2533 for Emacs, but avoid runtime cl and levents.
2534 (toplevel): Change autoloads and compilation requires.
2535 (strokes-version, strokes-bug-address, strokes-lift): Values
2536 changed.
2537 (strokes-xpm-header, strokes-insinuated): New variable.
2538 (strokes): Add :link.
2539 (strokes-mode): Customized.
2540 (strokes-while-inhibiting-garbage-collector): New macro.
2541 (strokes-remassoc): Avoid remove-if.
2542 (strokes-fix-button2-command): Don't use ad-do-it.
2543 (strokes-insinuate): New function.
2544 (strokes-button-press-event-p, strokes-button-release-event-p):
2545 New functions, used instead of non-`strokes-' versions..
2546 (strokes-mouse-event-p): Rewritten.
2547 (strokes-event-closest-point): Avoid event-point.
2548 (strokes-get-grid-position): Avoid cdadr, caadr
2549 (strokes-read-stroke, strokes-read-complex-stroke): Avoid levents
2550 functions.
2551 (strokes-help): Use with-output-to-temp-buffer.
2552 (strokes-window-configuration-changed-p): New function.
2553 (strokes-update-window-configuration): Use buffer-live-p,
2554 strokes-window-configuration-changed-p.
2555 (strokes-mode): Use strokes-insinuate. Alter mouse bindings.
2556 (strokes-char-face): New face.
2557 (strokes-char-table, strokes-base64-chars): New variable.
2558 (strokes-xpm-for-stroke, strokes-list-strokes)
2559 (strokes-xpm-char-on-p, strokes-xpm-char-bit-p)
2560 (strokes-xpm-encode-length-as-string, strokes-xpm-decode-char)
2561 (strokes-xpm-to-compressed-string, strokes-decode-buffer)
2562 (strokes-encode-buffer, strokes-xpm-for-compressed-string)
2563 (strokes-compose-complex-stroke, strokes-alphabetic-lessp): New
2564 functions.
2565
2566 2000-09-15 Gerd Moellmann <gerd@gnu.org>
2567
2568 * toolbar/toolbar.el (toolbar-add-item): Use image-mask-p.
2569
2570 * image.el (create-image): Doc fix.
2571
2572 * toolbar/toolbar.el (toolbar-add-item): Use `:mask heuristic'
2573 instead of `:heuristic-mask t'.
2574
2575 2000-09-14 Andrew Innes <andrewi@gnu.org>
2576
2577 * makefile.w32-in: Revert to Unix line endings.
2578
2579 2000-09-14 Andrew Innes <andrewi@gnu.org>
2580
2581 * makefile.w32-in: Add bootstrap support. Also copy lisp source
2582 when installing.
2583
2584 * makefile.nt (DONTCOMPILE): Fix typo.
2585
2586 * shell.el (shell-write-history-on-exit): New function.
2587 (shell-dumb-shell-regexp): New custom variable.
2588 (shell-mode): Make shell-write-history-on-exit the process
2589 sentinel if shell name matches shell-dumb-shell-regexp.
2590
2591 * w32-fns.el: Comment out before-init-hook function which resets
2592 source-directory based; this breaks bootstrap.
2593
2594 2000-09-14 Dave Love <fx@gnu.org>
2595
2596 * toolbar/cancel.xpm, toolbar/close.xpm, toolbar/copy.xpm,
2597 toolbar/cut.xpm, toolbar/exit.xpm, toolbar/fld_open.xpm,
2598 toolbar/help.xpm, toolbar/info.xpm, toolbar/mail.xpm,
2599 toolbar/mail_compose.xpm, toolbar/new.xpm, toolbar/open.xpm,
2600 toolbar/paste.xpm, toolbar/preferences.xpm, toolbar/print.xpm,
2601 toolbar/save.xpm, toolbar/saveas.xpm, toolbar/search-replace.xpm,
2602 toolbar/search.xpm, toolbar/spell.xpm, toolbar/undo.xpm: New.
2603 From Tuomas Kuosmanen <tigert@gimp.org>. (Gnome icons fetched
2604 from <URL:http://tigert.gimp.org/gnome/gnome-stock/>.)
2605
2606 * toolbar/toolbar.el: New.
2607
2608 * subdirs.el: Add toolbar.
2609
2610 2000-09-14 Gerd Moellmann <gerd@gnu.org>
2611
2612 * indent.el (indent-for-tab-command): Doc fix.
2613
2614 2000-09-14 Alex Schroeder <alex@gnu.org>
2615
2616 * ansi-color.el (ansi-colors): Doc change.
2617 (ansi-color-get-face): Simplified regexp.
2618 (ansi-color-faces-vector): Added more faces, doc change.
2619 (ansi-color-names-vector): Doc change.
2620 (ansi-color-regexp): Simplified regexp.
2621 (ansi-color-parameter-regexp): New regexp.
2622 (ansi-color-filter-apply): Doc change.
2623 (ansi-color-filter-region): Doc change.
2624 (ansi-color-apply): Use ansi-color-regexp and ansi-color-get-face,
2625 deal with zero length parameters.
2626 (ansi-color-apply-on-region): Doc change.
2627 (ansi-color-map): Doc change.
2628 (ansi-color-map-update): Removed debugging message.
2629 (ansi-color-get-face-1): Added condition-case to trap
2630 args-out-of-range errors.
2631 (ansi-color-get-face): Doc change.
2632 (ansi-color-make-face): Removed.
2633 (ansi-color-for-shell-mode): New option.
2634
2635 2000-09-13 Kenichi Handa <handa@etl.go.jp>
2636
2637 * international/quail.el (quail-start-translation): Translate KEY
2638 if necessary even if it doesn't have any mapping in the current
2639 input method.
2640 (quail-start-conversion): Likewise.
2641 (quail-help): The output message is improved.
2642
2643 2000-09-13 Miles Bader <miles@gnu.org>
2644
2645 * comint.el (comint-output-filter): Revert to using
2646 `insert-before-markers'. Add bletcherous hack to undo damage
2647 caused by `insert-before-markers'. Put `front-sticky' property on
2648 overlays created here so that the field code understands how the
2649 overlay works. Use a let when making comint-last-prompt-overlay,
2650 so that the code is easier to read.
2651
2652 2000-09-13 Dave Love <fx@gnu.org>
2653
2654 * wid-edit.el (widget-default-format-handler): DTRT when
2655 doc-property is a function.
2656
2657 2000-09-12 Francesco Potorti` <pot@gnu.org>
2658
2659 * mail/sendmail.el (mail-mode-fill-paragraph): Do not get the
2660 filed name if it's not there.
2661
2662 2000-09-12 Dave Love <fx@gnu.org>
2663
2664 * simple.el (read-mail-command): Doc fix.
2665 (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
2666
2667 * vc.el (vc-dired-listing-switches): Fix :version.
2668
2669 * vc-hooks.el: Doc fixes.
2670
2671 * subr.el (add-minor-mode): Use toggle-fun arg.
2672
2673 * speedbar.el: Add :version to several defcustoms.
2674
2675 * imenu.el (imenu--truncate-items, imenu--cleanup)
2676 (imenu--generic-function): Avoid mapcar.
2677 (imenu--replace-spaces): Function removed.
2678 (imenu--completion-buffer): Use subst-char-in-string.
2679 (imenu-add-to-menubar): Use keymap inheritance.
2680
2681 2000-09-12 Miles Bader <miles@gnu.org>
2682
2683 * diff-mode.el (diff-hunk-text): Use `with-temp-buffer'.
2684 (diff-mode-map): Bind `diff-test-hunk'.
2685 (diff-apply-hunk): Use `select-window' instead of `pop-to-buffer'.
2686
2687 2000-09-11 Gerd Moellmann <gerd@gnu.org>
2688
2689 * bytecomp.el (byte-compile-defvar): Undo last change
2690 because it breaks '(make-variable-buffer-local (defvar ...)'
2691 which is used at least in dired.
2692
2693 2000-09-12 Kenichi Handa <handa@etl.go.jp>
2694
2695 * international/quail.el (quail-define-package): Docstring
2696 modified.
2697
2698 2000-09-12 Kenichi Handa <handa@etl.go.jp>
2699
2700 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Add
2701 extra docstrings for "chinese-ccdospy", "chinese-ecdict",
2702 "chinese-etzy", "chinese-sw", and "chinese-ziranma". Modify the
2703 docstring of "chinese-py".
2704
2705 * international/quail.el (quail-translation-docstring): New
2706 variable.
2707 (quail-show-keyboard-layout): Docstring modified.
2708 (quail-select-current): Likewise.
2709 (quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
2710 infinite recursive call.
2711 (quail-help): Check quail-translation-docstring. Format of the
2712 output changed.
2713 (quail-help-insert-keymap-description): Adjusted for the above
2714 change.
2715
2716 2000-09-11 Gerd Moellmann <gerd@gnu.org>
2717
2718 * bytecomp.el (byte-compile-defvar): Only cons onto
2719 current-load-list in top-level forms. Else this leaks a cons cell
2720 every time a defun is called.
2721
2722 2000-09-11 Miles Bader <miles@lsi.nec.co.jp>
2723
2724 * diff-mode.el (diff-apply-hunk): Function basically rewritten.
2725 Now understands non-unified diffs. Some functionality moved into
2726 `diff-hunk-text' and `diff-find-text'. Add OTHER-FILE, DRY-RUN,
2727 POPUP, and NOERROR arguments. If DRY-RUN is true, don't actually
2728 modify anything. Only reposition point in the patched file if the
2729 patch succeeds. Only pop up another window if POPUP is true.
2730 Emit a message describing what happened if successful, and at what
2731 line-offset. Automatically detect reversed hunks and do something
2732 appropriate.
2733 (diff-hunk-text, diff-find-text): New functions.
2734 (diff-filter-lines): Function removed.
2735 (diff-test-hunk): New function.
2736 (diff-goto-source): Rewritten in terms of diff-apply-hunk.
2737
2738 2000-09-10 Dave Love <fx@gnu.org>
2739
2740 * textmodes/tildify.el: Minor doc/commentary fixes.
2741 (tildify) <defgroup>: Add :version.
2742
2743 * faces.el (face-x-resources): Make custom type more specific.
2744 (frame-background-mode): Use mapc.
2745 (region) <defcustom>: Add :version.
2746
2747 2000-09-08 Stefan Monnier <monnier@cs.yale.edu>
2748
2749 * vc-sccs.el (vc-sccs-register):
2750 * vc-rcs.el (vc-rcs-register):
2751 * vc-cvs.el (vc-cvs-register): Don't clear file's properties.
2752 * vc.el (vc-register): Clear file's properties.
2753
2754 2000-09-08 Gerd Moellmann <gerd@gnu.org>
2755
2756 * faces.el (face-spec-set): Only face-spec-reset-face when
2757 ATTRS is non-nil.
2758
2759 2000-09-08 Eli Zaretskii <eliz@is.elta.co.il>
2760
2761 * help.el (help-insert-xref-button): Fix a typo in doc string.
2762
2763 2000-09-07 Eli Zaretskii <eliz@is.elta.co.il>
2764
2765 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
2766 Fix doc strings of chinese-py-b5, chinese-py, and chinese-tonepy input
2767 methods.
2768
2769 * menu-bar.el (read-mail-item-name): New function.
2770 (menu-bar-tools-menu): Use it to compute and display the package
2771 used to read email.
2772 (menu-bar-tools-menu): Fix typo in GUD's help string.
2773
2774 2000-09-07 Dave Love <fx@gnu.org>
2775
2776 * diff-mode.el (diff-mouse-goto-source): New function.
2777
2778 * vc-sccs.el: Doc fixes.
2779 (vc-sccs-register-switches, vc-sccs-master-templates): Add :version.
2780
2781 * vc-rcs.el: Doc fixes.
2782 (vc-rcs-register-switches, vc-rcs-checkin-switches)
2783 (vc-rcs-checkout-switches, vc-rcs-header)
2784 (vc-rcs-master-templates): Add or change :version.
2785
2786 * vc-cvs.el: Doc fixes.
2787 (vc-cvs-register-switches, vc-cvs-header, vc-cvs-use-edit)
2788 (vc-cvs-stay-local): Add :version.
2789
2790 * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
2791
2792 2000-09-07 Kenichi Handa <handa@etl.go.jp>
2793
2794 * international/quail.el (quail-help): Fix previous change.
2795
2796 2000-09-07 Gerd Moellmann <gerd@gnu.org>
2797
2798 * faces.el (color-values): Doc fix.
2799
2800 * faces.el (frame-set-background-mode): Use frame-parameter
2801 instead of frame-parameters.
2802
2803 * frame.el (filtered-frame-list): Reduce consing.
2804 (frames-on-display-list): Call frame-parameter instead of
2805 frame-parameters.
2806
2807 2000-09-07 Kenichi Handa <handa@etl.go.jp>
2808
2809 * language/devan-util.el (devanagari-to-indian-region): In the
2810 loop, change the following char, not preceding char.
2811
2812 2000-09-07 Gerd Moellmann <gerd@gnu.org>
2813
2814 * menu-bar.el (menu-bar-update-buffers): Call frame-parameter
2815 instead of frame-parameters.
2816
2817 * faces.el (set-face-attribute): Simplify by calling
2818 internal-set-lisp-face-attribute with FRAME being 0.
2819
2820 * vc.el: Remove `Id' version control keyword.
2821
2822 2000-09-07 Kenichi Handa <handa@etl.go.jp>
2823
2824 * help.el (help-make-xrefs): Adjusted for the change of
2825 help-xref-mule-regexp.
2826 (help-insert-xref-button): New function.
2827
2828 * international/mule-cmds.el (help-xref-mule-regexp-template):
2829 Include the pattern for character set.
2830 (leim): New group.
2831
2832 * international/quail.el: Don't require face.
2833 (quail): New group.
2834 (quail-other-command): Dummy command to make quail-help work better.
2835 (quail-keyboard-layout-alist): Add Keyboard type "jp106".
2836 (quail-keyboard-layout-substitution): New variable.
2837 (quail-update-keyboard-layout): New function.
2838 (quail-keyboard-layout-type): New customizable variable.
2839 (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
2840 (quail-keyboard-translate): Pay attention to
2841 quail-keyboard-layout-substitution.
2842 (quail-insert-kbd-layout): New function.
2843 (quail-show-keyboard-layout): New function.
2844 (quail-get-translation): If the definition is a vector of length
2845 1, and the element is a string of length 1, return the character
2846 in that string.
2847 (quail-update-current-translations): Fix the case of
2848 relative-index out of range.
2849 (quail-build-decode-map, quail-insert-decode-map): New Functions.
2850 (quail-help): Show keyboard layout by quail-insert-kbd-layout.
2851 Show key sequences for all available characters.
2852 (quail-help-insert-keymap-description): Don't show such verbose
2853 key bindings as quail-self-insert-command.
2854
2855 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
2856 Format changed, and each element now have extra documentations.
2857 (tit-process-header): Delete invalid characters from TIT-PROMPT.
2858 Adjusted for the change of quail-cxterm-package-ext-info.
2859
2860 2000-09-06 Gerd Moellmann <gerd@gnu.org>
2861
2862 * vc-hooks.el (toplevel): Don't require `vc' during compilation;
2863 requiring it leads to a recursive loading of vc.el and vc-hooks.el
2864 during bootstrap.
2865
2866 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
2867
2868 * vc.el: (toplevel): Don't require `dired' at run-time.
2869 (vc-dired-resynch-file): Remove autoload cookie.
2870
2871 2000-09-05 Andre Spiegel <spiegel@gnu.org>
2872
2873 * vc.el: Made several backend functions optional.
2874 (vc-default-responsible-p): New function.
2875 (vc-merge): Use RET for first version to trigger merge-news, not
2876 prefix arg.
2877 (vc-annotate): Handle backends that do not support annotation.
2878 (vc-default-merge-news): Removed. The existence of a merge-news
2879 implementation is now checked on caller sites.
2880
2881 * vc-hooks.el (vc-default-mode-line-string): Removed CVS special
2882 case.
2883
2884 * vc-cvs.el (vc-cvs-mode-line-string): New function, handles the
2885 special case that has been removed from the default in vc-hooks.el.
2886
2887 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
2888
2889 * vc.el (vc-log-edit): Properly handle the case where FILE is nil.
2890
2891 2000-09-05 Andre Spiegel <spiegel@gnu.org>
2892
2893 * vc-hooks.el: Require vc during compilation.
2894 (vc-file-setprop): Use `vc-touched-properties' if bound by the new
2895 macro `with-vc-properties' in vc.el.
2896 (vc-file-getprop): Doc fix.
2897 (vc-after-save): Call `vc-dired-resynch-file' only if vc is loaded.
2898
2899 * vc.el: Require dired-aux during compilation.
2900 (vc-name-assoc-file): Moved to vc-sccs.el.
2901 (with-vc-properties): New macro.
2902 (vc-checkin, vc-checkout, vc-revert, vc-cancel-version,
2903 vc-finish-steal): Use it.
2904 (vc-cancel-version): Moved RCS-specific code to vc-rcs.el. The call
2905 to the backend-specific function is now supposed to do the checkout,
2906 too.
2907 (vc-log-edit): Handle FILE being nil and added a FIXME for log-edit.
2908
2909 * vc-cvs.el (vc-cvs-checkin, vc-cvs-checkout): Don't bother to
2910 set file properties; that gets done in the generic code now.
2911
2912 * vc-rcs.el (vc-rcs-uncheck): Renamed to `vc-rcs-cancel-version'.
2913 Changed parameter list, added code from vc.el that does the
2914 checkout, possibly with a double-take.
2915
2916 * vc-sccs.el (vc-sccs-name-assoc-file): Moved here from vc.el.
2917 (vc-sccs-add-triple, vc-sccs-rename-file, vc-sccs-lookup-triple): Use
2918 the above under the new name.
2919 (vc-sccs-uncheck): Renamed to `vc-sccs-cancel-version'. Changed
2920 parameter list, added checkout command.
2921 (vc-sccs-checkin, vc-sccs-checkout): Don't bother to set file
2922 properties; that gets done in the generic code now.
2923
2924 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
2925
2926 * vc.el: Docstring fixes (courtesy of checkdoc).
2927
2928 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
2929
2930 * vc.el (vc-checkout-writable-buffer-hook)
2931 (vc-checkout-writable-buffer): Remove.
2932 (vc-start-entry): Always call vc-log-edit, never vc-log-mode.
2933 (vc-log-mode): Make it into a clean derived major mode.
2934 (vc-log-edit): Mark buffer unmodified (as vc-log-mode did) and use
2935 vc-log-mode if log-edit is not available.
2936 (vc-dired-mode-map): Don't set-keymap-parent yet.
2937 (vc-dired-mode): Do set-keymap-parent here.
2938 (vc-dired-buffers-for-dir): Nop if dired is not loaded.
2939
2940 2000-09-05 Gerd Moellmann <gerd@gnu.org>
2941
2942 * faces.el (set-face-attribute, face-spec-reset-face)
2943 (face-spec-set): Avoid consing by removing calls to `apply'.
2944
2945 * frame.el (frame-parameter): Move to C code.
2946
2947 2000-09-05 Dave Love <fx@gnu.org>
2948
2949 * help.el (help-manyarg-func-alist): Add ml-prefix-argument-loop,
2950 insert-before-markers-and-inherit. Now checked systematically!
2951
2952 2000-09-05 Alex Schroeder <alex@gnu.org>
2953
2954 * sql.el (sql-postgres): Use sql-postgres-options.
2955 (sql-postgres-options): New variable.
2956
2957 2000-09-05 Alex Schroeder <alex@gnu.org>
2958
2959 * sql.el (sql-mode-menu): Work around missing variable mark-active
2960 in XEmacs.
2961 (sql-mode): Added call to easy-menu-add for XEmacs compatibility.
2962 (sql-interactive-mode): Added call to easy-menu-add for XEmacs
2963 compatibility.
2964
2965 2000-09-04 Gerd Moellmann <gerd@gnu.org>
2966
2967 * vc.el (vc-dired-resynch-file): Add autoload cookie.
2968
2969 * vc.el (toplevel): Require `dired' at run-time for dired-mode-map.
2970
2971 * Makefile.in (DONTCOMPILE): Fix typo in file name.
2972
2973 2000-09-04 Andre Spiegel <spiegel@gnu.org>
2974
2975 * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we
2976 don't support anything else under SCCS yet.
2977
2978 * vc-hooks.el: Minor doc fixes.
2979
2980 2000-09-04 Andre Spiegel <spiegel@gnu.org>
2981
2982 * vc.el (vc-next-action-on-file): Do not visit the file if it's
2983 not necessary. If verbose in state `needs-patch', do the same as
2984 under `up-to-date'. When NOT verbose and `needs-patch', check out
2985 latest version instead of `merge-news'.
2986 (vc-next-action-dired): Don't mess with default-directory here; it
2987 breaks other parts of dired. It is the job of the
2988 backend-specific functions to adjust it temporarily if they need it.
2989 (vc-next-action): Remove a special CVS case.
2990 (vc-clear-headers): New optional arg FILE.
2991 (vc-checkin, vc-checkout): Set properties vc-state and
2992 vc-checkout-time properly.
2993 (vc-finish-steal): Call steal-lock, not steal, which doesn't exist.
2994 (vc-print-log): Use new backend function `show-log-entry'.
2995 (vc-cancel-version): Do the checks in a different order. Added a
2996 FIXME concerning RCS-only code.
2997
2998 * vc-rcs.el (vc-rcs-show-log-entry): New function.
2999 (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties.
3000
3001 * vc-cvs.el (vc-cvs-show-log-entry): New function.
3002
3003 * vc-hooks.el (vc-default-mode-line-string): Show state
3004 `needs-patch' as a `-' too.
3005
3006 2000-09-04 Andre Spiegel <spiegel@gnu.org>
3007
3008 * vc.el (vc-responsible-backend): New optional arg REGISTER.
3009 (vc-default-could-register): New function.
3010 (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions.
3011 (vc-resynch-buffer): Call vc-dired-resynch-file.
3012 (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use
3013 vc-resynch-buffer instead of vc-resynch-window.
3014 (vc-next-action-dired): Don't redisplay here, that gets done as a
3015 result of the individual file operations.
3016 (vc-retrieve-snapshot): Corrected prompt order.
3017
3018 * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file.
3019
3020 * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp
3021 as well.
3022 (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p. Handle
3023 hostname regexps. Updated all callers.
3024 (vc-cvs-responsible-p): Handle directories as well.
3025 (vc-cvs-could-register): New function.
3026 (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file
3027 properties up-to-date.
3028
3029 * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the
3030 user whether to create one.
3031
3032 2000-09-04 Andre Spiegel <spiegel@gnu.org>
3033
3034 * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to
3035 check out a non-existing file.
3036
3037 * vc-cvs.el (vc-cvs-checkout): Do the right thing when the
3038 workfile does not exist.
3039
3040 * vc.el (vc-version-diff): Use `require' to check for existence of
3041 diff-mode.
3042
3043 2000-09-04 Andre Spiegel <spiegel@gnu.org>
3044
3045 * vc-cvs.el (vc-cvs-registered): Use new function
3046 vc-cvs-parse-entry to do the actual work.
3047
3048 2000-09-04 Andre Spiegel <spiegel@gnu.org>
3049
3050 * vc-hooks.el (vc-find-backend-function): If function doesn't
3051 exist, return nil instead of error.
3052 (vc-call-backend): Doc fix.
3053
3054 * vc.el (vc-do-command): Doc fix.
3055 (vc-finish-logentry): When checking in from vc-dired, choose the
3056 right backend for logentry check.
3057 (vc-dired-mode-map): Inherit from dired-mode-map.
3058 (vc-dired-mode): Local value of dired-move-to-filename-regexp
3059 simplified.
3060 (vc-dired-state-info): Removed, updated caller.
3061 (vc-default-dired-state-info): Use parentheses instead of hyphens.
3062 (vc-dired-hook): Use vc-BACKEND-dir-state, if available.
3063 (vc-dired-listing-switches): New variable.
3064 (vc-directory): Use it, instead of dired-listing-switches.
3065
3066 * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too.
3067 (vc-cvs-dir-state): New function.
3068 (vc-cvs-dir-state-heuristic): New function, subroutine of the above.
3069 (vc-cvs-parse-entry): New function, also to be used in
3070 vc-cvs-registered.
3071
3072 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3073
3074 * vc.el (vc-revert-buffer): Hide the frame for dedicated windows
3075 *or* single-window-frames.
3076
3077 2000-09-04 Andre Spiegel <spiegel@gnu.org>
3078
3079 * vc.el (vc-update-changelog): Split into generic part and default
3080 implementation. Doc string adapted.
3081 (vc-default-update-changelog): New function. Call the `rcs2log'
3082 script in exec-directory, to fix a long-standing nuisance.
3083
3084 * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that
3085 simply signals an error.
3086
3087 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3088
3089 * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the
3090 control-flow more clear and to avoid running `cvs' twice.
3091
3092 * vc.el (vc-next-action-on-file): Doc fix.
3093 (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode.
3094 (vc-print-log): Eval `file' before constructing the continuation.
3095
3096 2000-09-04 Andre Spiegel <spiegel@gnu.org>
3097
3098 * vc.el (vc-next-action-on-file): Corrected several messages.
3099 (vc-merge): Add prefix arg `merge-news'; handle it.
3100
3101 * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this
3102 is not reached. It is.
3103 (vc-cvs-merge): Set state to 'edited after merge.
3104 (vc-cvs-merge-news): Set workfile version to nil if not known.
3105 (vc-cvs-latest-on-branch-p): Recommented. Candidate for removal.
3106
3107 * vc-*.el (vc-*-checkout): Switch off coding systems for checkout
3108 via stdout. (Merge from main line.)
3109
3110 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3111
3112 * vc.el (vc-finish-logentry): Thinko in the "same comment"
3113 detection.
3114
3115 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3116
3117 * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them
3118 against kill-all-local-variables.
3119 (vc-log-edit): Don't save vc-parent-buffer any more.
3120 (vc-last-comment-match): Initialize to an empty string.
3121 (vc-post-command-functions): New hook.
3122 (vc-do-command): Run it.
3123 (vc-next-action-on-file): Remove unnecessary pop-to-buffer.
3124 (vc-finish-logentry): Only add the comment to the ring if it's
3125 different from the last comment entered.
3126 (vc-new-comment-index): New function.
3127 (vc-previous-comment): Use it. Make the minibuffer message
3128 slightly less terse.
3129 (vc-comment-search-reverse): Make it work forward as well. Don't
3130 set vc-comment-ring-index if no match is found. Use
3131 vc-new-comment-index.
3132 (vc-comment-search-forward): Use vc-comment-search-reverse.
3133 (vc-dired-mode-map): Don't inherit from dired-mode-map since
3134 define-derived-mode will do it for us. Bind `v' to a keymap that
3135 inherits from vc-prefix-map so that we can bind `vt' without
3136 binding C-x v t.
3137 (vc-retrieve-snapshot): Parenthesis typo.
3138
3139 * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0
3140 to 1. Make sure to switch to *vc* before looking for an error
3141 message. Use vc-parse-buffer.
3142
3143 2000-09-04 Andre Spiegel <spiegel@gnu.org>
3144
3145 * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR
3146 and NAME.
3147 (vc-retrieve-snapshot): Split into two parts.
3148 (vc-default-retrieve-snapshot): New function.
3149
3150 * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME.
3151 (vc-cvs-retrieve-snapshot): New function (untested).
3152 (vc-cvs-stay-local): Default to t.
3153 (vc-cvs-remote-p): New function and property.
3154 (vc-cvs-state): Stay local only if the above is t.
3155 (vc-handle-cvs): Removed.
3156 (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be
3157 done via vc-handled-backends now.
3158 (vc-cvs-header): Escape Id.
3159
3160 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3161
3162 * vc.el (vc-do-command): Remove unused commands.
3163 (vc-version-diff): Make sure default-directory ends with a slash.
3164 Move the window commands into a vc-exec-after.
3165 (vc-print-log): Move more of the code into the `vc-exec-after'.
3166
3167 2000-09-04 Andre Spiegel <spiegel@gnu.org>
3168
3169 * vc.el (vc-exec-after): Fix disassembly of previous sentinel.
3170 (vc-print-log): Search current revision from beginning of buffer.
3171 (vc-revert-buffer): Clear echo area after the diff is finished.
3172 (vc-prefix-map): Removed definition of "t" for terse display in vc
3173 dired.
3174 (vc-dired-mode-map): Inherit from dired-mode-map. Added
3175 definition of "vt" for terse display.
3176 (vc-dired-mode): Fix dired-move-to-filename-regexp.
3177
3178 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3179
3180 * vc.el (vc-exec-after): Avoid caddr.
3181
3182 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3183
3184 * vc.el (vc-exec-after): New function.
3185 (vc-do-command): Use it to add a termination message for async
3186 procs.
3187 (vc-checkout): Try to handle a missing-backend situation.
3188 (vc-version-diff): Use vc-exec-after to fix the behavior for diffs
3189 of a directory with a backend using async diffs.
3190 (vc-print-log): Use vc-exec-after and use log-view-goto-rev if
3191 present.
3192
3193 * vc-sccs.el (vc-sccs-state-heuristic): Use
3194 file-ownership-preserved-p.
3195
3196 * vc-rcs.el (vc-rcs-state-heuristic): Use
3197 file-ownership-preserved-p.
3198 (vc-rcs-checkout): Remove the error-handling for missing-rcs.
3199
3200 2000-09-04 Andre Spiegel <spiegel@gnu.org>
3201
3202 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to
3203 vc-do-command.
3204
3205 * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert
3206 when there are no changes.
3207
3208 2000-09-04 Andre Spiegel <spiegel@gnu.org>
3209
3210 * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p.
3211
3212 * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p.
3213
3214 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3215
3216 * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el.
3217
3218 * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move
3219 the `fset' outside of the defvar so that it works even if
3220 vc-prefix-map was already defined.
3221 (vc-setup-buffer): New function, split out of vc-do-command.
3222 (vc-do-command): Allow BUFFER to be t to mean `just use the
3223 current buffer without any fuss'.
3224 (vc-version-diff): Change the `diff' backend operation to just put
3225 the diff in the current buffer without erasing it. Always use
3226 *vc-diff* even for directory-diffs. Use vc-setup-buffer. Protect
3227 shrink-window-if-larger-than-buffer.
3228 (vc-print-log): Change the `print-log' backend operation to just
3229 put the log in the current buffer without erasing it. Protect
3230 shrink-window-if-larger-than-buffer.
3231 (vc-update-change-log): Fix setd typo.
3232
3233 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis.
3234 (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer.
3235
3236 * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer.
3237 (vc-rcs-diff): Insert in the current buffer and remove unused arg
3238 CMP.
3239
3240 * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use
3241 with-temp-file. Use the new BUFFER=t argument to vc-do-command.
3242 (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer.
3243
3244 2000-09-04 Andre Spiegel <spiegel@gnu.org>
3245
3246 * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is
3247 not possible, use vc-BACKEND-workfile-unchanged-p.
3248 (vc-default-workfile-unchanged-p): New function. Delegates to a
3249 full vc-BACKEND-diff.
3250
3251 * vc-hooks.el (vc-simple-command): Removed.
3252
3253 * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command
3254 instead of vc-simple-command.
3255 (vc-rcs-fetch-master-state): Removed check for unlocked-changes to
3256 avoid doing a diff when opening a file.
3257 (vc-rcs-state): Added check for unlocked-changes.
3258 (vc-rcs-header): Escape Id.
3259 (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION.
3260 (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific
3261 version.
3262
3263 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten.
3264 (vc-sccs-diff): Remove optional arg CMP.
3265 (vc-sccs-state): Call vc-workfile-unchanged-p, not the
3266 SCCS-specific function.
3267
3268 * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of
3269 vc-simple-command.
3270
3271 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3272
3273 * vc.el (vc-editable-p): Renamed from vc-writable-p.
3274 (with-vc-file, vc-merge): Use vc-editable-p.
3275 (vc-do-command): Remove unused var vc-file and fix the
3276 doubly-defined `status' var. Add a user message when starting an
3277 async command.
3278 (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry)
3279 (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file):
3280 Use with-current-buffer.
3281 (vc-buffer-sync): Use unless.
3282 (vc-next-action-on-file): If the file is 'edited by read-only,
3283 make it read-write instead of trying to commit.
3284 (vc-version-diff, vc-update-change-log): Use `setq
3285 default-directory' rather than `cd'.
3286 (vc-log-edit): Don't forget to set default-directory in the
3287 buffer.
3288
3289 * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis.
3290 (vc-sccs-state-heuristic): Use file-writable-p instead of
3291 comparing userids.
3292 (vc-sccs-checkout): Use `unless'.
3293
3294 * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead
3295 of comparing userids.
3296 (vc-rcs-fetch-master-state): Handle the case where rcs is missing.
3297 Simplify the logic by eliminating unreachable code.
3298 (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and
3299 just do a recursive call if we need to retry.
3300 (vc-rcs-checkout): Handle the case where rcs is missing by making
3301 the buffer read-write if requested and re-signalling the error.
3302
3303 * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP.
3304
3305 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3306
3307 * vc-hooks.el (vc-handled-backends): Docstring change.
3308 (vc-ignore-vc-files): Mark obsolete.
3309 (vc-registered): Check vc-ignore-vc-files.
3310 (vc-find-file-hook, vc-file-not-found-hook): Don't check
3311 vc-ignore-vc-files.
3312
3313 * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs.
3314
3315 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3316
3317 * vc.el (vc-checkout): Don't do anything special for ange-ftp
3318 files since ange-ftp already has vc-registered return nil.
3319
3320 * vc-sccs.el (vc-sccs-state): Use with-temp-buffer.
3321 (vc-sccs-workfile-version): Use with-temp-buffer and new
3322 vc-parse-buffer and don't bother setting the property.
3323 (vc-sccs-add-triple): Use with-current-buffer and
3324 find-file-noselect.
3325 (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if.
3326
3327 * vc-rcs.el (vc-rcs-find-most-recent-rev): New function. The code
3328 derives from the old vc-parse-buffer but uses the revision number
3329 rather than the date (much easier to compare robustly).
3330 (vc-rcs-fetch-master-state): Use `with-temp-buffer'. Adapt to the
3331 new vc-parse-buffer (and vc-rcs-find-most-recent-rev). Find the
3332 locking-user more directly. Check strict locking and set
3333 checkout-model appropriately.
3334 (vc-rcs-parse-locks): Remove.
3335 (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the
3336 new vc-parse-buffer (and vc-rcs-find-most-recent-rev).
3337 (vc-rcs-system-release): Use with-current-buffer and
3338 vc-parse-buffer.
3339 (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer.
3340
3341 * vc-hooks.el (vc-parse-buffer): Lobotomize the monster.
3342 (vc-simple-command): Docstring fix.
3343 (vc-registered): Align the way the file-handler is called with the
3344 way the function itself works.
3345 (vc-file-owner): Remove.
3346
3347 * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer. Reorder
3348 extraction of fields and call to file-attributes because of a
3349 temporary bug in rcp.el.
3350 (vc-cvs-fetch-status): Use with-current-buffer.
3351
3352 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3353
3354 * vc.el (vc-do-command): Use file-relative-name.
3355 (vc-responsible-backend): Use vc-backend if possible.
3356 (vc-create-snapshot): Improve the `interactive' spec. Add support
3357 for branches and dispatch to backend-specific `create-snapshot'.
3358 (vc-default-create-snapshot): New function, containing the bulk of
3359 the old vc-create-snapshot.
3360 (vc-retrieve-snapshot): Improve the interactive spec.
3361
3362 * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el.
3363 (vc-backend-hook-functions): Remove.
3364 (vc-find-backend-function): Don't try to load vc-X-hooks anymore.
3365 (vc-backend): Reintroduce the test for `file = nil' now that I
3366 know why it was there (and added a comment to better remember).
3367
3368 * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in
3369 code from vc-sccs-hooks.el.
3370 (vc-sccs-release, vc-sccs-system-release): Remove. Don't require
3371 'vc anymore.
3372 (vc-sccs-responsible-p): Use expand-file-name instead of concat
3373 and file-directory-p instead of file-exists-p.
3374 (vc-sccs-check-headers): Simplify the regexp.
3375
3376 * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code
3377 from vc-rcs-hooks.el. Don't require 'vc anymore.
3378 (vc-rcs-responsible-p): Use expand-file-name instead of concat and
3379 file-directory-p instead of file-exists-p.
3380
3381 * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code
3382 from vc-cvs-hooks.el.
3383 (proto vc-cvs-registered): Require 'vc-cvs instead of
3384 'vc-cvs-hooks. Don't require 'vc anymore.
3385 (vc-cvs-responsible-p): Use expand-file-name instead of concat and
3386 file-directory-p instead of file-exists-p.
3387 (vc-cvs-create-snapshot): New function, replacing
3388 vc-cvs-assign-name.
3389 (vc-cvs-assign-name): Remove.
3390
3391 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3392
3393 * vc-cvs.el (vc-cvs-header): New var.
3394
3395 * vc-rcs.el (vc-rcs-exists): Remove.
3396 (vc-rcs-header): New var.
3397
3398 * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use
3399 `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'.
3400 (vc-sccs-header): New var.
3401
3402 * vc.el (vc-do-command): Get rid of the `last' argument.
3403 (vc-header-alist): Remove, replaced by vc-X-header.
3404 (vc-insert-headers): Use vc-X-header instead of vc-header-alist.
3405 (vc-dired-hook): Use expand-file-name instead of concat.
3406 (vc-directory): Use file-name-as-directory.
3407 (vc-snapshot-precondition, vc-create-snapshot)
3408 (vc-retrieve-snapshot): Allow the command to operate on any
3409 directory.
3410
3411 * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either
3412 just removing the 'WORKFILE argument or by removing the 'MASTER
3413 argument and replacing `file' with (vc-name file).
3414
3415 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3416
3417 * vc.el: Update Copyright and add a crude list of backend funs.
3418 (vc-writable-p): New function.
3419 (with-vc-file): Use vc-writable-p.
3420 (vc-next-action-on-file): Update call to vc-steal-lock and cleanup.
3421 (vc-register): Avoid vc-name.
3422 (vc-locking-user): Remove.
3423 (vc-steal-lock): Make the `owner' arg non-optional.
3424 (vc-merge): Use vc-writable-p instead of vc-locking-user and
3425 vc-checkout-model.
3426 (vc-default-dired-state-info): Use vc-state instead of
3427 vc-locking-user and return special strings for special states.
3428 (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user
3429 and get rid of one of the special CVS cases.
3430 (vc-cancel-version): prettify error message with \\[...].
3431 (vc-rename-master): New function.
3432 (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn
3433 use vc-rename-master) instead of vc-BACKEND-record-rename. Make
3434 the CVS special case generic.
3435 (vc-default-record-rename): Remove.
3436 (vc-file-tree-walk-internal): Only call FUNC for files that are
3437 under control of some VC backend and replace `concat' with
3438 expand-file-name.
3439 (vc-file-tree-walk): Update docstring.
3440 (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot)
3441 (vc-retrieve-snapshot): Update call to vc-file-tree-walk.
3442
3443 * vc-sccs.el (vc-sccs-rename-file): Renamed from
3444 vc-sccs-record-rename. Use `find-file-noselect' rather than
3445 `find-file' and call `vc-rename-master' to do the actual move.
3446 (vc-sccs-diff): Remove unused `backend' variable.
3447
3448 * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version
3449 to delay loading of vc-sccs until it is really used.
3450 (vc-sccs-master-templates): Preload.
3451 (vc-sccs-state): Update call to vc-sccs-parse-locks.
3452 (vc-sccs-project-dir): Remove (merged into
3453 vc-sccs-search-project-dir).
3454 (vc-sccs-search-project-dir): Rewrite using file name handling ops
3455 rather than `concat', make sure it is preloaded and don't bother
3456 to check that the file actually exists.
3457 (vc-sccs-parse-locks): Remove unused `file' argument, remove
3458 `locks' argument (use buffer's content instead) and eliminate n^2
3459 behavior.
3460
3461 * vc-rcs.el: Update Copyright.
3462 (vc-rcs-rename-file): New function.
3463 (vc-rcs-diff): Remove unused `backend' variable.
3464
3465 * vc-hooks.el: Update Copyright.
3466 (vc-backend): Don't accept a nil argument any more.
3467 (vc-up-to-date-p): Turn into a defsubst.
3468 (vc-possible-master): New function.
3469 (vc-check-master-templates): Use `vc-possible-master' and allow
3470 funs in vc-X-master-templates to return a non-existent file.
3471
3472 * vc-cvs.el: Update Copyright.
3473 (vc-cvs-diff): Remove unused `backend' variable.
3474 (vc-cvs-checkout): Only toggle read-only if the buffer is setup right.
3475
3476 * vc-cvs-hooks.el: Preload a proto vc-cvs-registered.
3477
3478 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3479
3480 * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version
3481 since it can be called from vc-rcs.el.
3482 (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior.
3483
3484 2000-09-04 Andre Spiegel <spiegel@gnu.org>
3485
3486 * vc.el (vc-version-diff): Expand file name read from the
3487 minibuffer. Handle the case when a previous version number can't
3488 be guessed. Give suitable messages when there were no differences
3489 found.
3490 (vc-clear-headers): Call backend-specific implementation, if one
3491 exists.
3492 (vc-cancel-version): Made error checks generic. When done, clear
3493 headers generically, too.
3494
3495 * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here
3496 from vc-clear-headers in vc.el.
3497
3498 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer
3499 correctly.
3500 (vc-rcs-latest-on-branch-p): Made second argument VERSION
3501 optional. Handle the case when it's not there.
3502
3503 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3504
3505 * vc.el (vc-locking-user): Moved from vc-hooks.el.
3506
3507 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3508
3509 * vc-hooks.el (vc-loadup): Remove.
3510 (vc-find-backend-function): Use `require'. Also, handle the case
3511 where vc-BACKEND-hooks.el doesn't exist.
3512 (vc-call-backend): Cleanup.
3513
3514 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3515
3516 * vc-rcs-hooks.el (vc-rcs-templates-grabbed,
3517 vc-rcs-grab-templates)
3518 (vc-rcs-registered): Remove. The default function works as well.
3519 * vc-sccs-hooks.el (vc-sccs-templates-grabbed,
3520 vc-sccs-grab-templates)
3521 (vc-sccs-registered): Remove. The default function works as well.
3522
3523 * vc.el (vc-version-diff): Left out a vc- in call to
3524 vc-call-backend.
3525 (vc-default-dired-state-info, vc-default-record-rename)
3526 (vc-default-merge-news): Update for the new backend argument.
3527
3528 * vc-hooks.el (vc-find-backend-function): Return a cons cell if
3529 using the default function.
3530 (vc-call-backend): If calling the default function, pass it the
3531 backend as first argument. Update the docstring accordingly.
3532 (vc-default-state-heuristic, vc-default-mode-line-string): Update
3533 for the new backend argument.
3534 (vc-make-backend-sym): Renamed from vc-make-backend-function.
3535 (vc-find-backend-function): Use the new name.
3536 (vc-default-registered): New function.
3537
3538 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3539
3540 * vc.el (vc-merge): Use vc-find-backend-function.
3541
3542 * vc-hooks.el (vc-backend-functions): Remove.
3543 (vc-loadup): Don't setup 'vc-functions.
3544 (vc-find-backend-function): New function.
3545 (vc-call-backend): Use above fun and populate 'vc-functions
3546 lazily.
3547 (vc-backend-defines): Remove.
3548
3549 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3550
3551 * vc.el (vc-register): Put a FIXME note for a newly found bug.
3552 Call vc-call-backend without the leading vc-.
3553 (vc-responsible-backend, vc-finish-logentry, vc-annotate)
3554 (vc-check-headers): Call vc-call-backend without the leading vc-.
3555 (vc-annotate-time-span): Replace confusing use of `cond' with `or'.
3556 (vc-annotate-display): Replace confusing use of `cond' with `or'.
3557 Call vc-call-backend without the leading vc-.
3558
3559 * vc-cvs.el (tail): Provide vc-cvs.
3560 * vc-sccs.el (tail): Provide vc-sccs.
3561 * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check.
3562
3563 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions)
3564 (vc-make-backend-function, vc-call): Pass names without leading
3565 `vc-' to vc-call-backend so we can blindly prefix them with vc-BACKEND.
3566 (vc-loadup): Don't load vc-X-hooks if vc-X is requested.
3567 (vc-call-backend): Always try to load vc-X-hooks.
3568 (vc-registered): Remove vc- in call to vc-call-backend.
3569
3570 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3571
3572 * vc.el (vc-process-filter): New function.
3573 (vc-do-command): Setup `vc-process-filter' for the async process.
3574 (vc-maybe-resolve-conflicts): New function to reduce
3575 code-duplication. Additionally, it puts the buffer in
3576 `smerge-mode' if applicable.
3577 (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after
3578 calling `merge-news'.
3579 (vc-merge): Use `vc-maybe-resolve-conflicts' after calling `merge'.
3580 (vc-log-edit): New function. Replacement for `vc-log-mode' by
3581 interfacing to log-edit.el.
3582 (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if
3583 log-edit is available.
3584 (vc-resolve-conflicts): Delegate to `smerge-ediff' if available.
3585
3586 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3587
3588 * vc.el (vc-register): Remove `vc-buffer-backend' setup.
3589 (vc-log-mode-map): New name for vc-log-entry-mode and merge the
3590 defvar and the initialization.
3591 (vc-log-mode): Minor docstring fix and use vc-log-mode-map.
3592
3593 * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove.
3594 (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling.
3595
3596 * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a FIXME.
3597
3598 2000-09-04 Andre Spiegel <spiegel@gnu.org>
3599
3600 * vc.el (vc-file-clear-masterprops): Removed.
3601 (vc-checkin, vc-revert-buffer): Removed calls to the above.
3602 (vc-version-diff): Use buffer-size without argument.
3603 (vc-register): Heed vc-initial-comment.
3604
3605 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for
3606 default branch.
3607
3608 * vc-rcs.el (vc-rcs-register): Parse command output to find master
3609 file name and workfile version.
3610 (vc-rcs-checkout): Removed call to vc-file-clear-masterprops.
3611
3612 * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to
3613 vc-file-clear-masterprops.
3614
3615 * vc-sccs.el (vc-sccs-checkout): Removed call to
3616 vc-file-clear-masterprops. If writable, set vc-state to 'edited
3617 rather than user login name.
3618
3619
3620 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3621
3622 * vc.el (vc-workfile-unchanged-p): Remove unused argument
3623 `want-differences-if-changed' and simplify.
3624 (vc-next-action-on-file) [needs-merge]: Resynch the buffer.
3625 (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status
3626 output (which is invalid for async vc-diff) to decide whether to
3627 do the revert silently or not.
3628
3629 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3630
3631 * vc-hooks.el (vc-loadup): Load files quietly.
3632 (vc-call-backend): Oops, brain fart.
3633
3634 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3635
3636 * vc-cvs.el (vc-cvs-state): Typo.
3637 (vc-cvs-merge-news): Return the status code rather than the error msg.
3638
3639 2000-09-04 Andre Spiegel <spiegel@gnu.org>
3640
3641 * vc.el (with-vc-file, vc-next-action, vc-version-diff)
3642 (vc-dired-mark-locked): Replaced usage of vc-locking-user with
3643 vc-state or vc-up-to-date-p.
3644 (vc-merge): Use vc-backend-defines to check whether merging is
3645 possible. Set state to 'edited after successful merge.
3646
3647 * vc-hooks.el (vc-locking-user): If locked by the calling user,
3648 return that name. Redocumented.
3649
3650 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3651
3652 * vc.el (vc-recompute-state, vc-next-action-on-file): Update to
3653 new `vc-state' semantics.
3654 (vc-finish-steal): Set 'vc-state to 'edited rather than setting
3655 'vc-locking-user to the current user.
3656 (vc-merge): Inline vc-backend-merge. Comment out code that I
3657 don't understand and hence can't adapt to the new `vc-state' and
3658 `vc-locking-user' semantics.
3659 (vc-backend-merge): Remove.
3660
3661 * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state
3662 rather than 'vc-locking-user.
3663
3664 * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'.
3665
3666 * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit.
3667 (vc-state): Don't use 'reserved any more. Just use the same
3668 convention as the one used for vc-<backend>-state where the
3669 locking user (as a string) is returned.
3670 (vc-locking-user): Update, based on the above convention. The
3671 'vc-locking-user property has disappeared.
3672 (vc-mode-line, vc-default-mode-line-string): Adapt to new `vc-state'.
3673
3674 * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state
3675 with a heuristic one.
3676 (vc-cvs-merge-news): Just use 'edited for the case with conflicts.
3677 (vc-cvs-checkin): Do a trivial parse to set the state in case of
3678 error. That allows us to get to 'needs-merge even in the
3679 stay-local case. There's still no way to detect 'needs-patch in
3680 such a setup (or to force an update for that matter).
3681 (vc-cvs-logentry-check): Remove, the default works as well.
3682
3683 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3684
3685 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs asynchronously.
3686
3687 * vc.el (vc-do-command): kill-all-local-variables, to reset any
3688 major-mode in which the buffer might have been put earlier. Use
3689 `remove' and `when'. Allow `okstatus' to be `async' and use
3690 `start-process' in this case.
3691 (vc-version-diff): Handle the case where the diff looks empty
3692 because of the use of an async process.
3693
3694 2000-09-04 Andre Spiegel <spiegel@gnu.org>
3695
3696 * vc.el (vc-next-action-on-file): Removed optional parameter
3697 `simple'. Recompute state unconditionally.
3698 (vc-default-toggle-read-only): Removed.
3699
3700 * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only.
3701 (vc-toggle-read-only): Undid prev change.
3702
3703 * vc-cvs.el (vc-cvs-stay-local): Renamed from
3704 vc-cvs-simple-toggle. Redocumented.
3705 (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic.
3706 (vc-cvs-toggle-read-only): Removed.
3707
3708 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3709
3710 * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): Remove.
3711 (vc-prefix-map): Move from vc-hooks.el and make autoloaded.
3712 (vc-release-greater-or-equal-p): Move to vc-rcs.el.
3713 (vc-file-clear-masterprops): Braindead "fix". It was a nop and
3714 still is. So maybe it should be removed.
3715 (vc-head-version, vc-find-binary): Remove.
3716 (vc-recompute-state): Move from vc-hooks.el.
3717 (vc-next-action-on-file): Add a `simple' argument to allow
3718 avoiding the `recompute' step (use for vc-cvs-simple-toggle).
3719 (vc-default-toggle-read-only, vc-default-record-rename): New funs.
3720 (vc-next-action, vc-dired-hook): Use vc-state instead of vc-cvs-status.
3721 (vc-dired-mode-map): Properly defvar it.
3722 (vc-print-log): Call log-view-mode if available.
3723 (small-temporary-file-directory): defvar instead of use boundp.
3724 (vc-merge-news): Moved to vc-cvs.el.
3725 (vc-default-merge-news): New function.
3726
3727 * vc-sccs.el: Require 'vc and 'vc-sccs-hooks.
3728 (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks.
3729 (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the
3730 unknown `vc-latest-version' function. It should probably refer to
3731 vc-workfile-version or somesuch, but it's very unclear to me and I
3732 don't have SCCS to test things.
3733
3734 * vc-sccs-hooks.el: Provide 'vc-sccs-hooks.
3735 (vc-sccs-state-heuristic): Fix typo.
3736 (vc-sccs-workfile-unchanged-p): Add missing argument.
3737
3738 * vc-rcs.el: Require vc and vc-rcs-hooks.
3739 (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks.
3740 (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p).
3741 (vc-release-greater-or-equal-p): Move from vc.
3742 (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part,
3743 vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates.
3744 (vc-rcs-checkout): Add a missing `new-version' argument in the
3745 call to vc-rcs-latest-on-branch-p. Hopefully that was the right one.
3746
3747 * vc-rcs-hooks.el: Provide 'vc-rcs-hooks.
3748 (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el.
3749 (vc-rcs-latest-on-branch-p): Use the `version' argument rather
3750 than the apparently unbound `workfile-version'.
3751
3752 * vc-hooks.el (vc-master-templates): Def the obsolete var.
3753 (vc-file-prop-obarray): Use `make-vector'.
3754 (vc-backend-functions): Add new hookable functions
3755 vc-toggle-read-only, vc-record-rename and vc-merge-news.
3756 (vc-loadup): If neither backend nor default functions exist, use
3757 the backend function rather than nil.
3758 (vc-call-backend): If the function if not bound yet, try to load
3759 the non-hook file to see if it provides it.
3760 (vc-call): New macro plus use it wherever possible.
3761 (vc-backend-subdirectory-name): Use neither `vc-default-back-end'
3762 nor `vc-find-binary' since it's only called from
3763 vc-mistrust-permission which is only used once the backend is known.
3764 (vc-checkout-model): Fix parenthesis.
3765 (vc-recompute-state, vc-prefix-map): Move to vc.el.
3766
3767 * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler warnings).
3768 (vc-cvs-release, vc-cvs-system-release): Remove.
3769 (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables.
3770 (vc-cvs-dired-state-info): Use `cvs-state' and slightly different
3771 status symbols.
3772 (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el.
3773 (vc-cvs-toggle-read-only): First cut at a function to allow a
3774 cvs-status-free vc-toggle-read-only.
3775 (vc-cvs-merge-news): Move from cvs-merge-news in vc.el.
3776 (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of
3777 vc-cvs-status. Also set vc-state rather than vc-locking-user.
3778 (vc-cvs-checkout): Modify access rights directly if the user
3779 requested not to use `cvs edit'. And refresh the mode line.
3780
3781 * vc-cvs-hooks.el: Provide 'vc-cvs-hooks.
3782 (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el.
3783
3784 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
3785
3786 * vc-cvs.el (vc-cvs-checkout): Docstring fix. Added a `(if
3787 workfile' that got lost when the code was extracted from vc.el.
3788 And merged the tail with the rest of the code (not possible in the
3789 old vc.el where the tail was shared among all backends). And
3790 explicitly set the state to 'edited if `writable' is set.
3791
3792 * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name.
3793 (vc-cvs-state): Be careful to return the value from
3794 vc-cvs-parse-state.
3795 (vc-cvs-parse-status): Use expand-file-name. Don't set 'vc-state
3796 property but return it instead. Also be careful to handle a nil
3797 or "" `rev' when workfile is non-nil (it was handled properly when
3798 workfile was nil).
3799
3800 * vc.el: Removed those pesky unnecessary `(function' quotes.
3801 (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize
3802 directly in the defvar.
3803 (vc-do-command): Bind inhibit-read-only so as to properly handle
3804 the case where the destination buffer has been made read-only.
3805 (vc-diff): Delegate to vc-version-diff in all cases.
3806 (vc-version-diff): Setup the *vc-diff* buffer as was done in vc-diff.
3807 (vc-annotate-mode-variables): Removed (code moved partly to
3808 defvars and partly to vc-annotate-add-menu).
3809 (vc-annotate-mode): Turned into a derived-mode.
3810 (vc-annotate-add-menu): Moved in code in
3811 vc-annotate-mode-variables.
3812 (vc-update-change-log): Use make-temp-file if available.
3813
3814 2000-09-04 Martin Lorentzson <martinl@delysid.gnu.org>
3815
3816 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to
3817 `vc-checkout-model' updated to `vc-cvs-update-model'.
3818
3819 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
3820
3821 * vc.el (vc-next-action-on-file): Added handling of state
3822 `unlocked-changes'.
3823 (vc-checkout-carefully): Is now practically obsolete, unless the
3824 above is too slow to be enabled unconditionally.
3825 (vc-update-change-log): Fixed typo.
3826
3827 * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'.
3828
3829 * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten.
3830 Now handles state `unlocked-changes'.
3831 (vc-sccs-workfile-unchanged-p): New function, to support the above.
3832
3833 * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'.
3834
3835 * vc-rcs-hooks.el (vc-rcs-state): Fixed typo.
3836 (vc-rcs-fetch-master-state): Bug fixes. Recognize state
3837 `unlocked-changes'.
3838 (vc-rcs-workfile-unchanged-p): Renamed from
3839 `vc-rcs-workfile-unchanged'. This is not a real backend-specific
3840 function yet, but supposed to become one soon.
3841
3842 * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to
3843 `vc-steal-lock'.
3844 (vc-call-backend): Changed error message.
3845 (vc-state): Added description of state `unlocked-changes'.
3846
3847 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
3848
3849 * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to
3850 always return t in CVS-controlled directories.
3851
3852 * vc.el (vc-responsible-backend): New function.
3853 (vc-register): Largely rewritten.
3854 (vc-admin): Removed (implementation moved into vc-register).
3855 (vc-checkin): Redocumented.
3856 (vc-finish-logentry): If no backend defined yet (because we are in
3857 the process of registering), use the responsible backend.
3858
3859 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
3860 Updated function lists.
3861 (vc-call-backend): Fixed typo.
3862
3863 * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p):
3864 New functions.
3865 (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'.
3866 Removed query option. Redocumented.
3867
3868 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
3869
3870 * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'.
3871
3872 * vc.el: Updated callers of `vc-checkout-required' to use
3873 `vc-checkout-model'.
3874
3875 2000-09-04 Martin Lorentzson <martinl@gnu.org>
3876
3877 * vc-rcs.el (vc-rcs-backend-release-p): function added. other
3878 stuff updated to reference this function instead of the old
3879 `vc-backend-release-p'.
3880
3881 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
3882
3883 * vc-sccs-hooks.el (vc-uses-locking): Renamed to
3884 vc-checkout-model. Return appropriate values. Updated callers.
3885
3886 2000-09-04 Martin Lorentzson <martinl@gnu.org>
3887
3888 * vc.el (vc-backend-release, vc-backend-release-p): Moved to vc-rcs.el.
3889 (vc-backend-revert): Function moved into `vc-revert';
3890 `vc-next-action' must be updated to accomodate this change.
3891 (vc-backend-steal): Function moved into `vc-finish-steal'.
3892 (vc-backend-logentry-check): Function moved into
3893 `vc-finish-logentry'.
3894 (vc-backend-printlog): Function moved into `vc-print-log'.
3895 (vc-backend-uncheck): Function moved into `vc-cancel-version'.
3896 (vc-backend-assign-name): Function moved into
3897 `vc-create-snapshot'.
3898
3899 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
3900
3901 * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking):
3902 Rename to vc-checkout-model. Return appropriate values.
3903 Update callers.
3904
3905 * vc-hooks.el (vc-backend-hook-functions): Rename vc-uses-locking
3906 to vc-checkout-model.
3907 (vc-checkout-required): Rename to vc-checkout-model.
3908 Re-implement and re-comment.
3909 (vc-after-save): Use vc-checkout-model.
3910
3911 2000-09-04 Martin Lorentzson <martinl@gnu.org>
3912
3913 * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff):
3914 Update to use the vc-BACKEND-diff functions instead.
3915 `vc-diff' is now working.
3916
3917 * vc-rcs.el (vc-rcs-logentry-check): New function.
3918
3919 * vc-cvs.el (vc-cvs-logentry-check): New function.
3920
3921 * vc-sccs.el (vc-sccs-diff): Function changed name from
3922 `vc-backend-diff'. This makes `vc-diff' work.
3923
3924 * vc-hooks.el (vc-backend-functions): Add `vc-diff' to the list
3925 of functions possibly implemented in a vc-BACKEND library.
3926 (vc-checkout-required): Fix bug that caused an error to be
3927 signaled during `vc-after-save'.
3928
3929 * vc.el: Fix typo.
3930 This checkin is made with our new VC code base for the very first time.
3931 A simple `(vc-checkin (buffer-file-name))' was used to perform it.
3932
3933 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to
3934 `vc-checkout-required' updated to `vc-cvs-uses-locking'.
3935
3936 * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required'
3937 updated to `vc-uses-locking'.
3938 (vc-checkout-required): Call to backend function.
3939 `vc-checkout-required' updated to `vc-uses-locking' instead.
3940
3941 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to
3942 `vc-checkout-required' updated to `vc-rcs-uses-locking'.
3943
3944 * vc.el (vc-checkin): Merge with `vc-backend-checkin' and update
3945 to match the split into various backends.
3946 (vc-backend-checkin): Remove. Merge with `vc-checkin'.
3947 (vc-retrieve-snapshot): Bug fix.
3948
3949 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
3950
3951 * vc-sccs.el (vc-sccs-release): Doc fix.
3952
3953 2000-09-04 Martin Lorentzson <martinl@gnu.org>
3954
3955 * vc.el (vc-next-action-on-file): Bug found and fixed.
3956 (vc-checkout, vc-version-other-window, vc-retrieve-snapshot)
3957 (vc-cancel-version): Handle of vc-BACKEND-checkout updated.
3958
3959 * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version)
3960 (vc-rcs-checkout): Name space cleaned up. No more revision number
3961 crunching function names that are not prefixed with vc-rcs.
3962 (vc-rcs-checkout-model): Function added. References to
3963 `vc-checkout-model' replaced.
3964
3965 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
3966
3967 * vc.el (vc-next-action-on-file): Rewritten for the new state model.
3968 (vc-backend-merge-news): Renamed to `vc-merge-news'. (Specific parts
3969 still need to be split, and implemented for RCS).
3970
3971 2000-09-04 Martin Lorentzson <martinl@gnu.org>
3972
3973 * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed.
3974
3975 * vc-sccs.el (vc-sccs-admin): Added the query-only option as
3976 required by the vc.el file.
3977
3978 * vc-rcs.el (vc-rcs-admin): Added the query-only option as
3979 required by the vc.el file.
3980 (vc-rcs-exists): Function added.
3981
3982 * vc-cvs.el (vc-cvs-admin): Added the query-only option as
3983 required by the vc.el file.
3984
3985 * vc.el (vc-admin): Updated to handle selection of appropriate
3986 backend. Current implementation is crufty and need re-thinking.
3987
3988 * vc-hooks.el (vc-parse-buffer): Bug found and fixed.
3989
3990 2000-09-04 Martin Lorentzson <martinl@gnu.org>
3991
3992 * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle
3993 beginning of annotate buffers correctly.
3994
3995 * vc.el (vc-annotate-get-backend, vc-annotate-display-default)
3996 (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate
3997 functionality updated quite a lot to support multiple backends.
3998 Variables `vc-annotate-mode', `vc-annotate-buffers',
3999 `vc-annotate-backend' added.
4000
4001 * vc-hooks.el (vc-backend-functions): `vc-annotate-command',
4002 `vc-annotate-difference' added to supported backend functions.
4003
4004 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
4005
4006 * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout):
4007 Use with-temp-file instead of /bin/sh. Merged from mainline
4008
4009 2000-09-04 Martin Lorentzson <martinl@gnu.org>
4010
4011 * vc-sccs-hooks.el (vc-sccs-registered): Updated.
4012
4013 * vc-rcs-hooks.el (vc-rcs-registered): Updated.
4014
4015 * vc-cvs-hooks.el (vc-cvs-registered): Updated.
4016
4017 2000-09-04 Martin Lorentzson <martinl@gnu.org>
4018
4019 * vc-hooks.el: vc-state-heuristic added to
4020 vc-backend-hook-functions.
4021
4022 * vc-sccs-hooks.el (vc-sccs-registered): Bug fix.
4023
4024 * vc-rcs-hooks.el (vc-rcs-registered): Bug fix.
4025
4026 * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Rename
4027 `vc-uses-locking' to `vc-checkout-required'. Rename the `locked'
4028 state to `reserved'.
4029
4030 * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to
4031 `vc-checkout-required'. Rename the `locked' state to `reserved'.
4032
4033 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
4034
4035 * vc-rcs-hooks.el: Implement new state model. Hardly anything
4036 untouched.
4037
4038 * vc-rcs.el (vc-rcs-latest-on-branch-p): Move to vc-rcs-hooks.el.
4039
4040 * vc.el (vc-update-change-log): Use small-temporary-file-directory,
4041 if defined. (Merged from main line, slightly adapted.)
4042
4043 * vc-cvs.el (vc-cvs-annotate-difference): Handle possible
4044 millenium problem (merged from mainline).
4045
4046 2000-09-04 Martin Lorentzson <martinl@gnu.org>
4047
4048 * vc-cvs.el: Split the annotate feature into a BACKEND-specific
4049 part and moved the non-BACKEND stuff to vc.el.
4050
4051 * vc.el: Split the annotate feature into a BACKEND specific part
4052 and moved it from the vc-cvs.el file to this one.
4053
4054 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
4055
4056 * vc-hooks.el: Implement new state model.
4057 (vc-state, vc-state-heuristic, vc-default-state-heuristic): New funs.
4058 (vc-locking-user): Simplify. Now only needed if the file is
4059 locked by somebody else.
4060 (vc-lock-from-permissions): Remove. Functionality is in
4061 vc-sccs-hooks.el and vc-rcs-hooks.el now.
4062 (vc-mode-line-string): New name for former vc-status. Adapted.
4063 (vc-mode-line): Adapt to use the above. Remove optional parameter.
4064
4065 * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New funs.
4066 Various simplifications and adaptations all over the place.
4067
4068 * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New funs.
4069 Simplify and adapt the rest.
4070
4071 * vc.el (vc-resynch-window): Add TODO comment: check for
4072 interaction with view mode according to recent RCS change.
4073 (vc-backend-merge-news): Merge "CMUP" patch from mainline.
4074
4075 2000-09-04 Martin Lorentzson <martinl@gnu.org>
4076
4077 * vc.el: Convert the remaining function comments to docstrings.
4078
4079 2000-09-04 Martin Lorentzson <martinl@gnu.org>
4080
4081 * vc.el (vc-backend-release, vc-release-greater-or-equal)
4082 (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part)
4083 (vc-minor-part, vc-previous-version): Functions that operate and
4084 compare revision numbers got proper documentation. Comments added
4085 about their possible removal.
4086
4087 2000-09-04 Martin Lorentzson <martinl@gnu.org>
4088
4089 * vc.el (vc-latest-on-branch-p): Function removed and replaced in
4090 the vc-backend.el files.
4091
4092 * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added.
4093
4094 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p)
4095 (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part)
4096 (vc-rcs-previous-version): Functions added.
4097
4098 * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added.
4099
4100 * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed.
4101
4102 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
4103
4104 * vc-hooks.el (vc-master-templates): Is really obsolete.
4105 Comment out the definition for now. What is the right procedure
4106 to get rid of it?
4107 (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely
4108 rewritten.
4109 (vc-default-registered): Remove.
4110 (vc-check-master-templates): New function; does mostly what the
4111 above did before.
4112 (vc-locking-user): Don't rely on the backend to set the property.
4113
4114 * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values.
4115 Rewrite documentation.
4116 (vc-rcs-templates-grabbed): New variable.
4117 (vc-rcs-grab-templates): New function.
4118 (vc-rcs-registered): Rewrite to use above mechanism.
4119
4120 * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values.
4121 Rewrite documentation.
4122 (vc-sccs-templates-grabbed): New variable.
4123 (vc-sccs-grab-templates): New function.
4124 (vc-sccs-registered): Rewrite to use above mechanism.
4125 (vc-sccs-search-project-dir): Rename from vc-search-sccs-project-dir.
4126 Don't throw the result, simply return it.
4127
4128 * vc-cvs-hooks.el (vc-cvs-master-templates): Remove.
4129 (vc-cvs-find-master): Remove. Code is now in vc-cvs-registered.
4130 (vc-cvs-registered): Does the check itself now. Simplify.
4131
4132 * vc-cvs.el (vc-cvs-revert): Merge and adapt "unedit" patch
4133 from main line.
4134
4135 2000-09-04 Martin Lorentzson <martinl@gnu.org>
4136
4137 * vc-cvs.el (vc-cvs-diff): New function.
4138
4139 * vc-sccs.el (vc-sccs-diff): New function.
4140
4141 * vc-rcs.el (vc-rcs-diff): New function.
4142 (vc-rcs-checkout): Bug (typo) found and fixed.
4143 (vc-rcs-register-switches): New variable.
4144
4145 * vc.el (vc-backend-diff): Function removed and placed in the
4146 backend files.
4147
4148 2000-09-04 Martin Lorentzson <martinl@gnu.org>
4149
4150 * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added.
4151
4152 * vc.el (vc-backend-checkout): Function removed and replaced in
4153 the vc-backend.el files.
4154
4155 * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'.
4156
4157 * vc.el (vc-backend-admin): Removed and replaced in the
4158 vc-backend.el files.
4159
4160 * vc.el (Martin): Removed all the annotate functionality since it
4161 is CVS backend specific.
4162
4163 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
4164
4165 * spec.txt: Added specification of vc-state.
4166
4167 * vc-sccs-hooks.el (vc-sccs-master-properties):
4168 Remove handling of vc-latest-version and
4169 vc-your-latest-version. What used to be vc-latest-version, is now
4170 returned as vc-workfile-version.
4171 (vc-sccs-workfile-version): Adapt.
4172
4173 2000-09-04 Dave Love <fx@gnu.org>
4174
4175 * vc.el: [Merged from mainline.]
4176 (vc-dired-mode): Make the dired-move-to-filename-regexp
4177 regexp match the date, to avoid treating date as file size.
4178 Add YYYY S option to WESTERN/
4179
4180 2000-09-04 Dave Love <fx@gnu.org>
4181
4182 * vc.el: Require `compile' when compiling.
4183 (vc-logentry-check-hook): New option.
4184 (vc-steal-lock): Use compose-mail.
4185 (vc-dired-mode-map): Defvar when compiling.
4186 (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to
4187 vc-sccs.el and renamed. Callers changed.
4188 (vc-backend-checkout, vc-backend-logentry-check)
4189 (vc-backend-merge-news): Doc fix.
4190 (vc-default-logentry-check): New function.
4191 (vc-backend-checkin, vc-backend-revert, vc-backend-steal)
4192 (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name)
4193 (vc-backend-merge): Doc fix. Use backend functions.
4194 (vc-check-headers): Use backend functions.
4195
4196 * vc-cvs.el: Require vc when compiling.
4197 (vc-cvs-register-switches): Doc fix.
4198 (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type.
4199 (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge)
4200 (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin):
4201 New functions (code from vc.el).
4202 (vc-annotate-display-default): Fix interactive spec.
4203 (vc-annotate-time-span): Doc fix.
4204
4205 * vc-rcs.el: Require vc when compiling.
4206 (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge)
4207 (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert)
4208 (vc-rcs-checkin): New functions (code from vc.el).
4209 (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout):
4210 Doc fix.
4211 (vc-rcs-release): Deleted. (Duplicated vc-rcs-system-release).
4212
4213 * vc-sccs.el: Require vc when compiling.
4214 (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge)
4215 (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck)
4216 (vc-sccs-revert)
4217 (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code
4218 from vc.el).
4219 (vc-sccs-add-triple, vc-sccs-record-rename)
4220 (vc-sccs-lookup-triple): Moved from vc.el and renamed.
4221 (vc-sccs-admin): Doc fix.
4222
4223 2000-09-04 Martin Lorentzson <martinl@gnu.org>
4224
4225 * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part)
4226 (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release)
4227 (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions
4228 from vc.el.
4229
4230 * vc-sccs.el (vc-admin-sccs): Added from vc.el
4231
4232 * vc-cvs.el: Moved the annotate functionality from vc.el.
4233 (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el.
4234
4235 2000-09-04 Dave Love <fx@gnu.org>
4236
4237 * vc.el (vc-backend-release): Call vc-system-release.
4238
4239 * vc-sccs.el (vc-sccs-system-release):
4240 Renamed from vc-sccs-backend-release.
4241
4242 * vc-rcs.el (vc-rcs-system-release):
4243 Renamed from vc-rcs-backend-release.
4244
4245 * vc-cvs.el (vc-cvs-system-release):
4246 Renamed from vc-cvs-backend-release.
4247
4248 2000-09-04 Dave Love <fx@gnu.org>
4249
4250 * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to
4251 backend files.
4252 (vc-backend-release): Dispatch to backend functions.
4253 (vc-backend-release-p): Don't mention CVS, RCS. [The SCCS case
4254 probably needs attention.]
4255
4256 * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el.
4257 (vc-sccs-backend-release): New function.
4258
4259 * vc-cvs.el (vc-cvs-release): Moved from vc.el.
4260 (vc-cvs-backend-release): New function.
4261
4262 * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge):
4263 Doc fix.
4264 (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed.
4265 (vc-default-dired-state-info): New function.
4266 (vc-dired-state-info): Dispatch to backends.
4267 (vc-dired-hook): Doc fix. Simplify, pending removal of CVS specifics.
4268
4269 * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved
4270 from vc.el and renamed.
4271
4272 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
4273
4274 * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p)
4275 (vc-version-other-window, vc-backend-assign-name): Removed
4276 references to vc-latest-version; sometimes changed into
4277 vc-workfile-version.
4278
4279 * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to
4280 vc-rcs-master-workfile-version.
4281 (vc-rcs-workfile-version): Use the above. Don't call
4282 vc-latest-version (that was unreachable code, anyway).
4283 (vc-rcs-fetch-master-properties): Doc fix.
4284
4285 * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed.
4286 (vc-backend-hook-functions): Removed them from this list, too.
4287 (vc-fetch-properties): Removed.
4288 (vc-workfile-version): Doc fix.
4289
4290 * vc-rcs-hooks.el (vc-rcs-consult-headers): New function.
4291 (vc-rcs-workfile-version, vc-rcs-locking-user)
4292 (vc-rcs-uses-locking): Use it.
4293
4294 * vc-hooks.el (vc-consult-rcs-headers):
4295 Moved into vc-rcs-hooks.el, under the name
4296 vc-rcs-consult-headers.
4297
4298 * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS
4299 headers.
4300 (vc-cvs-find-master): Use this name only; correct different
4301 versions of the name.
4302
4303 * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user):
4304 New functions.
4305 (vc-sccs-locking-user): Use the latter.
4306
4307 * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user):
4308 New functions.
4309
4310 * vc-hooks.el (vc-master-locks, vc-master-locking-user):
4311 Moved into both
4312 vc-rcs-hooks.el and vc-sccs-hooks.el. These properties and access
4313 functions are implementation details of those two backends.
4314
4315 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
4316
4317 * vc-rcs-hooks.el (vc-rcs-fetch-master-properties)
4318 (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks.
4319
4320 * vc-sccs-hooks.el (vc-sccs-fetch-master-properties)
4321 (vc-sccs-parse-locks): SCCS-specific code moved here from
4322 vc-hooks.
4323
4324 * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific
4325 code moved here from vc-hooks.
4326
4327 * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split
4328 into back-end specific parts and removed. Callers not updated
4329 yet; because I guess these callers will disappear into back-end
4330 specific files anyway.
4331
4332 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
4333
4334 * vc.el (with-vc-file, vc-next-action-on-file, vc-merge)
4335 (vc-backend-checkout): Changed calls to `vc-checkout-model' to
4336 `vc-uses-locking'.
4337
4338 * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking.
4339 Store yes/no in the property, and return t/nil. Updated all
4340 callers.
4341
4342 * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to
4343 vc-sccs-uses-locking. Don't set property.
4344 (vc-sccs-locking-user): Don't set property.
4345
4346 * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to
4347 vc-cvs-uses-locking. Don't set property here; leave that to
4348 vc-hooks.
4349 (vc-cvs-locking-user): Reflect above change. Streamlined.
4350
4351 * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to
4352 vc-rcs-uses-locking.
4353 (vc-rcs-locking-user): Reflect above change.
4354
4355 2000-09-04 Dave Love <fx@gnu.org>
4356
4357 * vc-sccs-hooks.el (vc-sccs-checkout-model): New function.
4358
4359 * vc-rcs-hooks.el (vc-rcs-checkout-model): New function.
4360
4361 * vc-hooks.el (vc-checkout-model): Punt to backends.
4362
4363 * vc-cvs-hooks.el (vc-cvs-checkout-model): New function.
4364
4365 * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status.
4366
4367 * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user):
4368 New functions.
4369
4370 * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user):
4371 New functions.
4372
4373 * vc-cvs-hooks.el (vc-handle-cvs): Doc fix.
4374 (vc-cvs-workfile-version, vc-cvs-locking-user): New functions.
4375
4376 * vc-hooks.el (vc-default-locking-user): New function.
4377 (vc-locking-user, vc-workfile-version): Punt to backends.
4378
4379 2000-09-04 Dave Love <fx@gnu.org>
4380
4381 * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff)
4382 (vc-master-workfile-version): Moved from vc-hooks.
4383
4384 * vc-rcs-hooks.el: Fix duplicate code in last change.
4385
4386 * vc-rcs-hooks.el: Require vc-hooks when compiling.
4387 (vc-rcs-master-templates): Improve :type.
4388 (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff,
4389 vc-master-workfile-version): Moved from vc-hooks.
4390
4391 * vc-sccs-hooks.el: Require vc-hooks when compiling.
4392 (vc-sccs-master-templates): Improve :type.
4393 (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file.
4394
4395 * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed.
4396
4397 * vc-cvs-hooks.el: Require vc-hooks when compiling.
4398 (vc-cvs-master-templates): Improve :type. Use
4399 vc-cvs-find-cvs-master.
4400 (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here
4401 from vc-hooks.
4402 (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master.
4403
4404 * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status):
4405 Moved to vc-cvs-hooks.
4406
4407 * vc-hooks.el: Add doc strings in various places. Simplify the
4408 minor mode setup.
4409 (vc-handled-backends): New user variable.
4410 (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor
4411 simplification.
4412
4413 2000-09-04 Dave Love <fx@gnu.org>
4414
4415 * vc.el: Some doc fixes for autoloaded and interactive functions.
4416 Fix compilation warnings from ediff stuff.
4417 (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix.
4418
4419 * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version.
4420
4421 * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version.
4422
4423 * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version.
4424
4425 2000-09-04 Dave Love <fx@gnu.org>
4426
4427 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
4428 New variable.
4429 (vc-make-backend-function, vc-loadup, vc-call-backend)
4430 (vc-backend-defines): New functions.
4431
4432 * vc-hooks.el: Various doc fixes.
4433 (vc-default-back-end, vc-follow-symlinks): Custom fix.
4434 (vc-match-substring): Function removed. Callers changed to use
4435 match-string.
4436 (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook):
4437 Simplify.
4438
4439 2000-09-04 Dave Love <fx@gnu.org>
4440
4441 * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom
4442 type.
4443 (vc-sccs-project-dir, vc-search-sccs-project-dir)
4444 (vc-sccs-registered): Doc fix.
4445
4446 * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type.
4447 (vc-cvs-registered): Doc fix.
4448
4449 * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type.
4450 (vc-rcs-registered): Doc fix.
4451
4452 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
4453
4454 * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file.
4455
4456 * vc-hooks.el: vc-registered has been renamed
4457 vc-default-registered. Some functions have been moved to the
4458 backend specific files. they all support the
4459 vc-BACKEND-registered functions.
4460
4461 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
4462
4463 * vc-hooks.el: This is 1998-11-11T18:47:32Z!kwzh@gnu.org from the emacs sources
4464
4465 * vc.el: This is 1999-03-13T05:04:24Z!kwzh@gnu.org from the emacs sources
4466
4467 2000-09-04 Dave Love <fx@gnu.org>
4468
4469 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run
4470 menu-bar-update-hook.
4471
4472 * help.el (help-manyarg-func-alist): Add
4473 find-operation-coding-system.
4474
4475 * wid-edit.el (widget-sexp-validate): Fix garbled code.
4476
4477 * custom.el (custom-set-variables): Print message about errors in
4478 setting.
4479
4480 2000-09-03 Andrew Innes <andrewi@gnu.org>
4481
4482 * makefile.w32-in: Change to DOS line endings.
4483
4484 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
4485
4486 * mouse.el (mouse-popup-menubar): Supply the prompt string for
4487 minor-mode keymaps, if they don't have one.
4488
4489 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
4490
4491 * eshell/esh-module.el (eval-when-compile): Don't lose if
4492 esh-module.el's file name is truncated to DOS 8+3 limits.
4493
4494 2000-09-01 John Wiegley <johnw@gnu.org>
4495
4496 * pcomplete.el (pcomplete-dirs-or-entries): Added a missing
4497 predicate, which caused entries in the completion list to be
4498 doubled.
4499
4500 2000-08-30 John Wiegley <johnw@gnu.org>
4501
4502 * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct
4503 sending to subprocesses. Also, hook pre-command-hook if
4504 `eshell-send-direct-to-subprocesses' is non-nil.
4505 (eshell-send-direct-to-subprocesses): New config variable. If t,
4506 subprocess input is send immediately.
4507 (eshell-toggle-direct-send): New function.
4508 (eshell-self-insert-command): New function.
4509 (eshell-intercept-commands): New function.
4510 (eshell-send-input): If direct subprocess sending is enabled,
4511 don't echo any input to the Eshell buffer. Let the subprocess
4512 handle that. This requires "stty echo" in bash, for example.
4513
4514 2000-08-28 John Wiegley <johnw@gnu.org>
4515
4516 * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added
4517 completion function for Eshell's implementation of `unset'.
4518
4519 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
4520
4521 * info.el (Info-directory-list): Doc fix.
4522
4523 2000-08-31 Peter Breton <pbreton@ne.mediaone.net>
4524
4525 * filecache.el (file-cache-add-directory-using-find): Don't quote
4526 wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
4527
4528 2000-08-31 Kenichi Handa <handa@etl.go.jp>
4529
4530 * help.el (help-make-xrefs): Don't make hyperlinks for incorrect
4531 coding systems.
4532
4533 2000-08-30 Andrew Innes <andrewi@gnu.org>
4534
4535 * timer.el (run-with-idle-timer): Undo last change, so that timer
4536 is not activated immediately if Emacs is already idle. Some
4537 existing code relies on this behaviour.
4538
4539 2000-08-30 Miles Bader <miles@gnu.org>
4540
4541 * frame.el (set-frame-font): Do completion of font-name for
4542 interactive use.
4543
4544 2000-08-30 Kenichi Handa <handa@etl.go.jp>
4545
4546 * international/quail.el (quail-start-translation): Bind locally
4547 last-command-event, last-command, and this-command.
4548 (quail-start-conversion): Likewise.
4549 (quail-self-insert-command): Fix docstring.
4550
4551 2000-08-29 Gerd Moellmann <gerd@gnu.org>
4552
4553 * progmodes/executable.el
4554 (executable-make-buffer-file-executable-if-script-p): Check that
4555 buffer contains at least 2 characters.
4556
4557 2000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
4558
4559 * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix.
4560
4561 2000-08-29 Dave Love <fx@gnu.org>
4562
4563 * diff-mode.el (diff-mode) <defgroup>: Add :version.
4564 (diff-mode-shared-map): Bind mouse-2.
4565 (diff-imenu-generic-expression): New variable.
4566 (diff-mode): Use it.
4567
4568 * mouse.el (mouse-major-mode-menu): Use local-key-binding.
4569 (mouse-popup-menubar): Add minor mode menus.
4570 (popup-menu): Check for lookup-key returning number.
4571
4572 2000-08-29 Miles Bader <miles@gnu.org>
4573
4574 * comint.el (comint-send-input): Create overlays using the proper
4575 front/read-advance arguments.
4576
4577 2000-08-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
4578
4579 * ps-print.el: Even/odd pages printing. Doc fix.
4580 (ps-print-version): New version number (6.0).
4581 (ps-setup, ps-print-page-p, ps-background-text, ps-background-image)
4582 (ps-background, ps-begin-file, ps-begin-job): Code fix.
4583 (ps-print-duplex-feature): Variable eliminated.
4584 (ps-even-or-odd-pages): New variable.
4585
4586 * progmodes/ebnf2ps.el: Doc fix.
4587 (ebnf-version): New version (3.3).
4588 (ebnf-user-arrow): Change variable customization to sexp.
4589 (ebnf-user-arrow): Function eliminated.
4590 (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix.
4591
4592 2000-08-29 Kenichi Handa <handa@etl.go.jp>
4593
4594 * help.el (help-xref-mule-regexp): New variable.
4595 (help-make-xrefs): Handle help-xref-mule-regexp.
4596
4597 * international/mule-cmds.el (help-xref-mule-regexp-template): New
4598 variable.
4599 (describe-input-method): Temporarily activate the specfied input
4600 method to display the information.
4601 (describe-language-environment): Hyperlinks to mule related items.
4602
4603 * international/mule-diag.el (charset-multibyte-form-string): New
4604 function.
4605 (list-character-sets-1): Use charset-multibyte-form-string.
4606 (describe-character-set): New function.
4607 (describe-coding-system): Hyperlinks to safe character sets.
4608
4609 * international/quail.el (quail-help): New arg PACKAGE.
4610 Hyperlinks to mule related items.
4611 (quail-help-insert-keymap-description): Use
4612 substitute-command-keys instead of describe-bindings.
4613 (quail-translation-help): Hyperlinks to mule related items.
4614
4615 2000-08-28 John Wiegley <johnw@gnu.org>
4616
4617 * eshell/esh-util.el (eshell-flatten-list): It's not too wise to
4618 have a defsubst call itself. Made `eshell-flatten-list' back into
4619 a function again.
4620
4621 * eshell/em-smart.el (eshell-smart-redisplay): Added a safety
4622 catch, in case re-centering point at bottom messes up the display.
4623 This happens frequently in Emacs 21, due I believe to variable
4624 line heights.
4625
4626 * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order
4627 to call `find-tag-interactive'.
4628
4629 * eshell/em-dirs.el (eshell/cd): Use buffered printing to display
4630 the list of remember directories.
4631
4632 2000-08-28 John Wiegley <johnw@gnu.org>
4633
4634 * align.el: Test align-region-separate to see if it's a symbol.
4635
4636 2000-08-28 John Wiegley <johnw@gnu.org>
4637
4638 * eshell/esh-util.el (eshell-flatten-list): Made this function
4639 into a defsubst form. It gets used very frequently, although
4640 calls don't occur all that often.
4641
4642 * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
4643 examining it.
4644
4645 * eshell/esh-cmd.el (eshell-rewrite-while-command):
4646 (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
4647 `eshell-protect'.
4648 (eshell-copy-handles): Created a new macro for duplicating the
4649 current set of open handles. This is needed by the looping
4650 functions.
4651 (eshell-do-eval): Fixed while and if, so that the eshell-test-body
4652 is not incorrectly stomped on.
4653
4654 * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
4655 declaration for pcomplete-use-paring.
4656 (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
4657 value of eshell-cmpl-use-paring.
4658 * pcomplete.el (pcomplete-use-paring): New config variable, to
4659 indicate whether paring should be used.
4660 (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
4661 completion alternatives that have already been used.
4662
4663 * eshell/esh-mode.el (eshell-repeat-argument): Added function,
4664 bound to C-c C-y, which will repeat the previous N arguments
4665 (based on prefix argument).
4666 (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
4667
4668 * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
4669 if there is no *Help* buffer. This is for XEmacs, which renames
4670 its help buffers uniquely. TODO: Find out what the current buffer
4671 name to delete is.
4672
4673 * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
4674 first entry that correlates to a passwd/group number. Later
4675 entries (used for group/user name aliasing to multiple IDs) are
4676 ignored.
4677
4678 * eshell/em-xtra.el (eshell/expr):
4679 * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
4680 (eshell-grep, eshell/diff, eshell/locate):
4681 * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
4682 argument list, before passing it to the system command.
4683
4684 * eshell/esh-mode.el (eshell-find-tag): Added a special version of
4685 `find-tag' for use at final position in Eshell buffers (which
4686 otherwise triggers an error on Emacs 21).
4687 (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
4688 buffer, if it is currently bound to `find-tag'.
4689
4690 * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
4691 in the list of matched Makefile names.
4692 (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
4693 directory, prefer its contents to Makefile.
4694
4695 * eshell/em-dirs.el (eshell/cd): cd commands that look up
4696 directory parts (like "cd old new", or "cd =regexp"), are now case
4697 sensitive on non-Windows/DOS platforms.
4698
4699 * eshell/esh-mode.el (eshell-parse-command-input): When a user
4700 types RET after an open delimiter (like "), display a message
4701 indicating that Eshell is waiting for the closing delimiter.
4702
4703 * eshell/esh-var.el (eshell/unset): Added a command for unsetting
4704 environment variables.
4705
4706 * eshell/em-unix.el (eshell/diff): Added logic to fail more
4707 gracefully if the user enters incorrect arguments.
4708
4709 * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
4710 Eshell buffers.
4711
4712 * eshell/esh-var.el (eshell-interpolate-variable):
4713 * eshell/esh-mode.el (eshell-move-argument):
4714 * eshell/em-unix.el (eshell-du-sum-directory):
4715 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
4716 * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
4717 (not (= ...)).
4718
4719 * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
4720 to ensure the `preserve' flag gets propagated when doing recursive
4721 directory copies.
4722
4723 2000-08-28 Stefan Monnier <monnier@cs.yale.edu>
4724
4725 * eshell/em-hist.el (eshell-put-history, eshell-get-history):
4726 Don't convert \n into \0177 in memory.
4727 (eshell-read-history, eshell-write-history): Convert \n to \0177,
4728 and back again, when reading and writing.
4729
4730 2000-08-28 Eli Zaretskii <eliz@is.elta.co.il>
4731
4732 * eshell/esh-util.el (eshell-processp): Added to relieve constant
4733 testing of `fboundp' on `processp'.
4734
4735 * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
4736 (eshell/jobs): Don't call process-list if it is not bound.
4737 (eshell-gather-process-output): Support systems where async
4738 subprocesses aren't supported.
4739 (eshell-scratch-buffer, eshell-last-sync-output-start): New
4740 variables.
4741
4742 * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
4743 eshell-do-eval returns t.
4744 (eshell-do-pipelines-synchronously): New defmacro.
4745 (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
4746 when async subprocesses aren't supported.
4747 (eshell-do-eval): Use eshell-processp. Don't throw eshell-defer
4748 if async subprocesses aren't supported.
4749 (eshell-resume-command): Don't assume STATUS is a string.
4750
4751 * eshell/em-unix.el (eshell/rm): Use eshell-processp.
4752
4753 * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
4754 (eshell-close-target, eshell-get-target): Use eshell-processp.
4755 (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
4756 fix.
4757 (eshell-get-target, eshell-create-handles): Doc fix.
4758
4759 2000-08-28 Miles Bader <miles@lsi.nec.co.jp>
4760
4761 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the
4762 criterion to include commands that output something, as long as it
4763 leaves both the command and the end-of-buffer visible when the
4764 command has exited.
4765 (eshell-review-quick-commands): Adjust the help doc string
4766 accordingly.
4767
4768 2000-08-28 Peter Breton <pbreton@ne.mediaone.net>
4769
4770 * locate.el (locate): Cleaned up locate command's interactive prompting
4771 Thanks to Fran\e,Ag\e(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions.
4772
4773 * filecache.el (file-cache-case-fold-search): New variable
4774 (file-cache-assoc-function): New variable
4775 (file-cache-minibuffer-complete): Use file-cache-assoc-function.
4776 Use file-cache-case-fold-search variable
4777 (file-cache-add-file): Use file-cache-assoc-function
4778 (file-cache-delete-file): likewise
4779 (file-cache-directory-name): likewise
4780 (file-cache-debug-read-from-minibuffer): likewise
4781
4782 2000-08-28 Gerd Moellmann <gerd@gnu.org>
4783
4784 * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
4785 (abbrev-table-name): New function.
4786 (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
4787 If non-nil list local abbrev, only.
4788
4789 2000-08-28 Stanislav Shalunov <shalunov@internet2.edu>
4790
4791 * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*"
4792 from Gnus support code, and use special article copy buffer
4793 `(gnus-original-article-buffer)' instead. This allows to get rid
4794 of article-hide-headers usage (which breaks in the latest Gnus
4795 version). Thanks to Detlev Zundel.
4796
4797 2000-08-28 Kenichi Handa <handa@etl.go.jp>
4798
4799 * international/quail.el (quail-use-package): Hide "... loaded"
4800 message.
4801 (quail-start-translation, quail-start-conversion): Likewise.
4802
4803 * international/kkc.el (kkc-region): Hide "... loaded" message.
4804
4805 2000-08-27 Dave Love <fx@gnu.org>
4806
4807 * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
4808
4809 2000-08-27 Miles Bader <miles@gnu.org>
4810
4811 * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
4812
4813 2000-08-27 Kenichi Handa <handa@etl.go.jp>
4814
4815 * international/ja-dic-cnv.el (skkdic-convert): Insert (require
4816 'ja-dic-cnv), not (require 'skkdic-cnv).
4817
4818 2000-08-26 Miles Bader <miles@gnu.org>
4819
4820 * faces.el (face-x-resources): Add entry for :inherit.
4821 * cus-face.el (custom-face-attributes): Add support for :inherit
4822 attribute. Add support for relative face heights.
4823 (custom-face-attributes-get): Treat `nil' as being a default value
4824 for :inherit (as well as `unspecified').
4825
4826 * faces.el (set-face-attribute): Update doc string.
4827 (face-attribute-name-alist): Add :inherit.
4828 (face-valid-attribute-values): Handle :inherit.
4829 (face-read-string): Rephrase prompt to be less confusing.
4830 Assume that DEFAULT is a string, since we must return a string.
4831 (face-read-integer): Use `format' to turn DEFAULT into an
4832 acceptable default for face-read-string. Match NEW-VALUE against
4833 the string "unspecified", not the symbol `unspecified', since
4834 that's what face-read-string returns.
4835 (read-face-attribute): Lookup a name for old-value in valid, and
4836 use it as a default if we find one. Treat all values from
4837 face-read-string as strings. If the default is used, don't do any
4838 more processing on the value, just use the old value directly.
4839 (read-face-and-attribute, modify-face): Tweak prompt.
4840 (read-face-name): Don't assume prompt ends with a space.
4841
4842 * faces.el (describe-face): Add support for :inherit attribute.
4843
4844 2000-08-25 Kenichi Handa <handa@etl.go.jp>
4845
4846 * terminal.el (terminal-emulator): Fix args to `concat'. Now
4847 concat doesn't accept interger.
4848
4849 * international/kkc.el: Remove SKK from Keywords. Require
4850 ja-dic-utl instead of skkdic-utl.
4851
4852 * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
4853 Provide ja-dic-cnv instead of skkdic-cnv.
4854 (ja-dic-filename): Renamed from skkdic-filename. Referers changed
4855 (iso-2022-7bit-short): Add safe-charsets property.
4856 (skkdic-convert-postfix): Search Japanese chou-on character in
4857 addition to Hiragana character.
4858 (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
4859 (skkdic-convert): Change file names from skkdic.el to ja-dic.el
4860 (batch-skkdic-convert): Likewise.
4861
4862 * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
4863 Provide ja-dic-utl instead of skkdic-utl.
4864 (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
4865
4866 2000-08-24 Dave Love <fx@gnu.org>
4867
4868 * disp-table.el (standard-display-default): Make the test of `l'
4869 useful.
4870
4871 * language/european.el ("Latin-8", "Latin-9"): Add input methods,
4872 mod sample text.
4873
4874 * international/iso-ascii.el: Make pilcrow convenient string
4875 consistent with section.
4876 (iso-ascii-display): Set up multibyte characters as well as
4877 unibyte.
4878
4879 2000-08-24 Kenichi Handa <handa@etl.go.jp>
4880
4881 * international/mule-cmds.el (reset-language-environment): Set
4882 default-process-coding-system to '(undecided . iso-latin-1), which
4883 makes process I/O almost consistent with file I/O. Call this
4884 function when mule-cmds.el[c] is loaded.
4885
4886 2000-08-22 Andrew Innes <andrewi@gnu.org>
4887
4888 * makefile.w32-in: New file.
4889
4890 2000-08-22 Miles Bader <miles@lsi.nec.co.jp>
4891
4892 * comint.el (comint-output-filter): Compare end of
4893 comint-last-output-overlay with the start of the newly inserted
4894 text, not the end, when deciding whether to extend it.
4895 Set saved-point's insertion type to advance after insertion.
4896
4897 * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
4898 since this is now done independently of font-lock mode.
4899
4900 2000-08-21 Gerd Moellmann <gerd@gnu.org>
4901
4902 * server.el (server-kill-new-buffers): New user option.
4903 (server-existing-buffer): New buffer-local variable.
4904 (server-visit-files): When using an existing buffer, set
4905 server-existing-buffer to t.
4906 (server-buffer-done): If server-kill-new-buffers is t, kill the
4907 buffer, unless it was already present before visiting it with
4908 Emacs server.
4909
4910 2000-08-21 Eli Zaretskii <eliz@is.elta.co.il>
4911
4912 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
4913 even if the display doesn't support colors: some displays will
4914 support bold/underline faces.
4915
4916 2000-08-21 Gerd Moellmann <gerd@gnu.org>
4917
4918 * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
4919
4920 * startup.el (command-line): If user's init file had an error,
4921 add explanatory text to *Messages*.
4922
4923 2000-08-21 Kenichi Handa <handa@etl.go.jp>
4924
4925 * man.el (Man-getpage-in-background): Decode the process output by
4926 the system locale coding system.
4927
4928 2000-08-20 Dave Love <fx@gnu.org>
4929
4930 * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
4931 Don't test x-popup-menu.
4932 (function) <complete-function>: Complete only fbound symbols.
4933 <validate, value>: New.
4934 (variable) <complete-function>: Complete only bound symbols.
4935 (coding-system): Add :base-only, :complete-function, :validate,
4936 :value, :prompt-match.
4937 (widget-coding-system-prompt-value): Use read-coding-system and
4938 act on :base-only.
4939 (editable-field): Add :help-echo.
4940 (widget-push-button-gui, widget-push-button-cache)
4941 (widget-gui-action, widget-editable-list-gui): COmment out, along
4942 with uses.
4943 (widget-at): Make arg optional.
4944 (widget-echo-help): Adjust for current help-echo calling sequence.
4945 (widget-specify-field, widget-specify-button)
4946 (widget-specify-insert, widget-get-sibling, widget-image-find)
4947 (widget-convert, widget-insert, widget-leave-text)
4948 (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
4949 (widget-setup, widget-field-find, widget-before-change)
4950 (widget-after-change, widget-default-complete)
4951 (widget-default-create, widget-default-delete)
4952 (widget-push-button-value-create, editable-field)
4953 (widget-field-prompt-value, widget-field-validate)
4954 (widget-choice-value-create, widget-choice-action)
4955 (widget-choice-validate, widget-checklist-add-item)
4956 (widget-radio-add-item, widget-radio-chosen)
4957 (widget-radio-value-inline, widget-editable-list-value-create)
4958 (widget-editable-list-entry-create)
4959 (widget-documentation-link-add)
4960 (widget-documentation-string-value-create)
4961 (widget-regexp-validate, widget-file-complete)
4962 (widget-sexp-validate, widget-plist-convert-widget)
4963 (widget-plist-convert-widget, widget-alist-convert-widget)
4964 (widget-alist-convert-widget, widget-color-complete): Simplify,
4965 particularly to avoid bindings which aren't optimized out.
4966
4967 * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
4968 Doc fix.
4969 (down-list, backward-up-list, up-list, kill-sexp)
4970 (backward-kill-sexp, mark-sexp): Make arg optional.
4971 (lisp-complete-symbol): Add optional arg PREDICATE.
4972
4973 * cus-start.el: Add display-buffer-reuse-frames,
4974 file-coding-system-alist.
4975
4976 2000-08-20 Gerd Moellmann <gerd@gnu.org>
4977
4978 * startup.el (command-line): Clear realized faces after
4979 modifying TTY color mappings.
4980
4981 2000-08-20 Miles Bader <miles@gnu.org>
4982
4983 * faces.el (face-attr-match-p): Don't return true if ATTRS are
4984 merely a subset of FACE's attributes.
4985
4986 2000-08-19 Miles Bader <miles@gnu.org>
4987
4988 * comint.el (comint-output-filter): Save the point with a marker,
4989 not just a buffer position.
4990
4991 * international/mule.el (set-buffer-process-coding-system): Make
4992 interactive prompt less confusing.
4993
4994 2000-08-19 Gerd Moellmann <gerd@gnu.org>
4995
4996 * hilit-chg.el: General cleanup of doc strings, comments and
4997 code formatting.
4998
4999 2000-08-19 Miles Bader <miles@gnu.org>
5000
5001 * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
5002 Compiler macro removed; beginning-of-line is no longer always
5003 equivalent to forward-line, in the presence of fields.
5004
5005 * comint.el (comint-output-filter): Remove ad-hoc saving of
5006 restriction, and just use save-restriction, now that it works
5007 correctly. Don't adjust comint-last-input-start to account for
5008 our insertion; it shouldn't have moved because we don't use
5009 insert-before-markers anymore. Comment out call to
5010 `force-mode-line-update'; why is it here?
5011
5012 * gud.el (gud-basic-call): Temporarily widen gud comint buffer
5013 while checking for prompt to delete. Use `forward-line 0'
5014 instead of beginning-of-line.
5015 (gud-filter): Temporarily widen gud comint buffer while
5016 examining output.
5017
5018 2000-08-18 Stefan Monnier <monnier@cs.yale.edu>
5019
5020 * progmodes/sh-script.el: Big bag of typos.
5021
5022 * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
5023 check since ispell-process is not bound when ispell is not yet loaded.
5024
5025 2000-08-18 Dave Love <fx@gnu.org>
5026
5027 * image.el (find-image): Copy `spec' before using plist-put.
5028
5029 2000-08-18 Gerd Moellmann <gerd@gnu.org>
5030
5031 * textmodes/ispell.el (ispell-dictionary-alist-6): Add
5032 `portugues'.
5033
5034 * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
5035 backward-kill-sexp, analogous to kill-sexp.
5036
5037 * progmodes/icon.el (icon-indent-line)
5038 (icon-is-continuation-line): Handle comments specially.
5039
5040 2000-08-17 Ken Stevens <k.stevens@ieee.org>
5041
5042 * ispell.el: Set to standard author/maintainer/keyword fields.
5043 Fine tuning to menu map appearance and operation, and added help.
5044 Remove `start' and `end' error messages when compiling.
5045 (ispell-choices-win-default-height): Fixed comment string.
5046 (ispell-dictionary-alist-1): Fixed regexp in castellano and
5047 castellano8 dictionaries.
5048 (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
5049 (ispell-dictionary-alist-4): Fixed regexp in francais-tex
5050 dictionary, added italiano dictionary.
5051 (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
5052 word character
5053 (ispell-tex-skip-alists): Added psfig support.
5054 (ispell-skip-html): Renamed from ispell-skip-sgml.
5055 (ispell-begin-skip-region-regexp, ispell-skip-region)
5056 (ispell-minor-check): Improved html skipping support to skip across
5057 code, and recognize `&' commands without propper `;' syntax;
5058 (ispell-process-line): Fix alignment error when manually
5059 correcting spelling.
5060 (ispell): Fix comment string.
5061 (ispell-add-per-file-word-list): Always put word list on new line.
5062
5063 2000-08-17 Gerd Moellmann <gerd@gnu.org>
5064
5065 * format.el (format-encode-run-method): Fix error message to say
5066 `encode' instead of `decode'. Use save-window-excursion around
5067 shell-command-on-region as in format-decode-run-method because
5068 shell-command-on-region can display a buffer with error output.
5069 (format-decode): Don't record undo information for the decoding.
5070 (format-annotate-function): Add parameter FORMAT-COUNT. Make
5071 that number part of the temporary buffer name so that more than
5072 one decoding using a temporary buffer can happen safely.
5073
5074 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
5075 of `A-z' in the regexp.
5076
5077 * hilit-chg.el: Fix typos in commentary.
5078
5079 * help.el (view-emacs-news): Rewritten for new naming scheme
5080 for old NEWS files.
5081
5082 * startup.el (command-line): Pop to *Messages* in case an error
5083 is signaled while loading user-init-file.
5084
5085 2000-08-17 Andreas Schwab <schwab@suse.de>
5086
5087 * files.el (insert-directory): Don't lose original file name,
5088 undoing an undocumented change.
5089
5090 2000-08-17 Alex Schroeder <alex@gnu.org>
5091
5092 * sql.el (sql-magic-go): Use comint-bol.
5093 (sql-copy-column): Use comint-line-beginning-position.
5094 (comint-line-beginning-position): Define a replacement for
5095 comint-line-beginning-position if it is not fboundp.
5096
5097 2000-08-17 Alex Schroeder <alex@gnu.org>
5098
5099 * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
5100 it didn't have any effect anyway.
5101
5102 2000-08-17 Alex Schroeder <alex@gnu.org>
5103
5104 * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
5105 --pset and pager=off instead of sending \\o|cat at the beginning
5106 of the session.
5107
5108 2000-08-17 Miles Bader <miles@gnu.org>
5109
5110 * progmodes/octave-inf.el: Add compatibility definition of
5111 comint-line-beginning-position.
5112
5113 2000-08-17 Kenichi Handa <handa@etl.go.jp>
5114
5115 * startup.el (normal-top-level): Look in each dir in load-path for
5116 a leim-list.el file too. This assures of loading leim-list.el
5117 that is created at Emacs installation time even if a user have his
5118 own leim-list.el.
5119
5120 2000-08-17 Miles Bader <miles@gnu.org>
5121
5122 * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
5123 foreground color to black if the background is dark.
5124
5125 2000-08-16 Stefan Monnier <monnier@cs.yale.edu>
5126
5127 * loadhist.el (unload-feature): Typo.
5128
5129 * finder.el (finder-compile-keywords):
5130 * cus-dep.el (custom-make-dependencies): Add local-variable settings
5131 to the generated file.
5132
5133 * mail/mh-e.el (mh-make-local-vars):
5134 Replace make-variable-buffer-local with make-local-variable.
5135
5136 * play/landmark.el:
5137 * options.el (Edit-options-{set,toggle,t,nil}):
5138 * mail/mailabbrev.el (mail-abbrevs-mode):
5139 * textmodes/tex-mode.el (tex-expand-files):
5140 * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
5141
5142 * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
5143
5144 * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
5145 (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
5146 Allow going past the last element.
5147 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
5148 (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
5149 (cvs-mouse-toggle-mark): Don't move point.
5150 (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
5151
5152 * progmodes/compile.el (grep): Provide a default set of files.
5153 (next-error): Docstring fix.
5154 (compilation-find-file): Avoid find-file (fails in a dedicated window).
5155
5156 * emacs-lisp/easy-mmode.el (define-minor-mode):
5157 Use `symbol-value' to keep the byte-compiler quiet.
5158
5159 * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
5160 (diff-find-source-location): New fun, extracted from diff-goto-source.
5161 (diff-goto-source): Use it.
5162 (diff-next-complex-hunk, diff-filter-lines): New function.
5163 (diff-apply-hunk): New command.
5164
5165 * smerge-mode.el (smerge-mode-menu): Doc fix.
5166
5167 * msb.el (msb-mode): Define it in terms of define-minor-mode.
5168
5169 2000-08-16 Dave Love <fx@gnu.org>
5170
5171 * windmove.el (windmove) <defgroup>: Add :version.
5172
5173 * net/goto-addr.el: Don't require browse-url. Require thingatpt.
5174 (goto-address-fontify-p, goto-address-highlight-p)
5175 (goto-address-url-face, goto-address-url-mouse-face)
5176 (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
5177 (goto-address-url-regexp): Use thing-at-point-url-regexp.
5178 (goto-address-fontify, goto-address-at-mouse): Simplify,
5179 (goto-address-at-point): browse-url-url-at-point,
5180 goto-address-find-address-at-point can return nil.
5181 (goto-address-find-address-at-point): Return nil on failure.
5182
5183 * align.el (align) <defgroup>: Add :version.
5184
5185 * calculator.el (calculator): Add :version.
5186 (calculator): Use two lines for calculator window if `modeline'
5187 face is boxed.
5188
5189 * play/5x5.el: Doc fixes.
5190 (5x5) <defgroup>: Add :version.
5191
5192 * play/fortune.el (fortune) <defgroup>: Add :version.
5193 (fortune-append): Fix error message.
5194 (fortune-from-region): Doc fix.
5195
5196 * play/pong.el (pong): Doc fix.
5197
5198 * play/morse.el: Keywords, commentary, autoloads.
5199
5200 2000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
5201
5202 * desktop.el (desktop-save): Don't look at symbol-value of a
5203 member of minor-mode-alist, unless it is boundp.
5204
5205 2000-08-16 Sam Steingold <sds@gnu.org>
5206
5207 * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
5208 `while'; use `with-current-buffer' instead of `save-excursion'.
5209 Removed unnecessary kludges now that "*Buffer List*" is excluded.
5210
5211 2000-08-16 Kenichi Handa <handa@etl.go.jp>
5212
5213 * international/ccl.el (declare-ccl-program): Docstring modified.
5214 (ccl-execute-with-args): Likewise.
5215
5216 2000-08-16 Miles Bader <miles@gnu.org>
5217
5218 * progmodes/sql.el: Add compatibility definition of
5219 comint-line-beginning-position.
5220
5221 2000-08-15 Gerd Moellmann <gerd@gnu.org>
5222
5223 * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
5224 'buffer-menu' property.
5225 (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
5226 fails.
5227 (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
5228 buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
5229 wasn't killed.
5230
5231 * buff-menu.el (list-buffers-noselect): Don't display the
5232 *Buffer List* buffer.
5233
5234 * font-lock.el: Require jit-lock to prevent a very late
5235 `Loading jit-lock' message.
5236
5237 * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
5238 * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
5239 mail address.
5240
5241 2000-08-15 Miles Bader <miles@gnu.org>
5242
5243 * textmodes/ispell.el (ispell-graphic-p): New constant.
5244 (ispell-choices-win-default-height, ispell-help): Use
5245 `ispell-graphic-p' instead of `xemacsp'.
5246
5247 2000-08-15 Dave Love <fx@gnu.org>
5248
5249 * simple.el: Autoload widget-convert when compiling.
5250 (mail-user-agent): Doc fix.
5251
5252 * help.el (function-called-at-point, variable-at-point): Use
5253 with-syntax-table.
5254 (help-manyarg-func-alist): Add insert-and-inherit.
5255
5256 * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
5257
5258 * delsel.el (delsel-unload-hook): New function.
5259
5260 * find-file.el: Doc fixes. Move provide to end.
5261 (ff) <defgroup>: Add :link.
5262 (ff-goto-click): Deleted.
5263 (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
5264 Use mouse-set-point.
5265
5266 * textmodes/tildify.el: Doc fixes.
5267 (tildify) <defgroup>: Add:version.
5268
5269 * progmodes/glasses.el (glasses) <defgroup>: Add :version.
5270 (glasses-custom-set): Use set-default, not set.
5271 (minor-mode-alist): Propertize the lighter.
5272 (glasses-mode): Provide optional arg.
5273
5274 * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
5275 (global-cwarn-mode): Don't make it a user option. Unquote lambda.
5276 (cwarn-font-lock-feature-keywords-alist): Don't make it a user
5277 option. Provide :type.
5278 (cwarn-configuration): Provide :type.
5279 (cwarn-mode): Doc fix.
5280
5281 * add-log.el (change-log-merge): Doc fix.
5282 (change-log-redate): New command.
5283
5284 * net/browse-url.el (browse-url-filename-alist): Add a clause for
5285 Doze and Dog.
5286 (browse-url): Use dolist, not mapcar.
5287 (browse-url-at-point): Check for null url.
5288 (browse-url-event-buffer, browse-url-event-point): Functions
5289 deleted.
5290 (browse-url-at-mouse, browse-url-netscape): Simplify.
5291
5292 * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
5293 modes.
5294 (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
5295 Fix previous change to mapcan.
5296 (msb--init-file-alist, msb--add-separators)
5297 (msb--make-keymap-menu): Simplify.
5298 (msb--choose-file-menu): Use copy-sequence.
5299 (msb-mode-map): Add title to keymap.
5300 (msb-unload-hook): New function.
5301
5302 * bs.el: Fix indentation.
5303 (bs) <defgroup>: Add :links.
5304 (bs-show): Doc fix.
5305 (bs-apply-sort-faces): Don't use window-system.
5306 (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
5307
5308 2000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
5309
5310 * calendar/timeclock.el (timeclock-file): Run .timelog through
5311 convert-standard-filename.
5312
5313 2000-08-14 Gerd Moellmann <gerd@gnu.org>
5314
5315 * emacs-lisp/authors.el: New file.
5316
5317 * paren.el (show-paren-priority): New user option.
5318 (show-paren-function): Set overlay priorities to
5319 show-paren-priority.
5320
5321 2000-08-14 Miles Bader <miles@gnu.org>
5322
5323 * comint.el (comint-bol): Use `forward-line 0' instead of calling
5324 beginning-of-line with inhibit-field-text-motion bound.
5325
5326 2000-08-14 Gerd Moellmann <gerd@gnu.org>
5327
5328 * calendar/timeclock.el: New file.
5329
5330 2000-08-14 David Ponce <david@dponce.com>
5331
5332 * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
5333 `widget-button-click'. so that one can use left mouse button to
5334 click on dialog buttons.
5335
5336 2000-08-14 Emmanuel Briot <briot@gnat.com>
5337
5338 * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
5339 identifiers, since XML is case sensitive
5340
5341 2000-08-12 Miles Bader <miles@gnu.org>
5342
5343 * comint.el (comint-output-filter): Don't bother frobbing
5344 window-start, it doesn't seem to be necessary.
5345
5346 * comint.el (comint-send-string, comint-send-region): Make into
5347 real functions. Snapshot the prompt before sending.
5348
5349 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
5350
5351 * info.el (Info-find-emacs-command-nodes): Rewrite to use
5352 technique similar to Info-index, instead of relying on specific
5353 names of relevant Index nodes.
5354 (Info-goto-emacs-command-node): Bind Info-history to nil when
5355 going to the first node found by Info-find-emacs-command-nodes.
5356
5357 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
5358
5359 * menu-bar.el (menu-bar-help-menu): Add a :help string.
5360
5361 2000-08-10 Miles Bader <miles@gnu.org>
5362
5363 * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
5364
5365 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
5366
5367 * info.el (Info-file-list-for-emacs): More elements for the
5368 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
5369 and woman manuals.
5370
5371 2000-08-10 Miles Bader <miles@lsi.nec.co.jp>
5372
5373 * comint.el (comint-send-input): Make the newline boundary overlay
5374 rear-nonsticky. Use `insert' instead of `insert-before-markers'.
5375 (comint-output-filter): Use `insert' instead of
5376 `insert-before-markers'. Extend comint-last-output-overlay when
5377 necessary since we can't rely on insert-before-markers to do it.
5378 * gud.el (gud-filter): Use `with-current-buffer' instead of
5379 save-excursion when inserting the output, so that point gets
5380 updated correctly; the old method relied on a rather dodgy
5381 side-effect of comint-output-filter to avoid the effect of
5382 save-excursion.
5383
5384 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
5385
5386 * files.el (recover-file): Call insert-directory instead of
5387 invoking `ls' directly.
5388
5389 2000-08-10 Miles Bader <miles@gnu.org>
5390
5391 * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
5392 (comint-last-prompt-overlay): New variables.
5393 (comint-output-filter): Implement prompt highlighting.
5394 (comint-snapshot-last-prompt): New function.
5395 (comint-send-input): Snapshot the last prompt.
5396 Use comint-highlight-input-face.
5397 (comint-highlight-input-face): Renamed from `comint-highlight-face'.
5398 Use defface instead of defcustom.
5399 (send-invisible, comint-send-eof): Snapshot the last prompt.
5400 (comint-delchar-or-maybe-eof): Use comint-send-eof.
5401 (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
5402
5403 2000-08-09 Stefan Monnier <monnier@cs.yale.edu>
5404
5405 * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
5406 (regexp-opt-group): Use a list of chars for `letters'.
5407 (regexp-opt-charset): `chars' is now a list of chars.
5408 Use a char-table rather than a vector so it works for multibyte chars.
5409
5410 * pcvs.el (cvs-menu): Don't move point. Use popup-menu.
5411 Set cvs-minor-current-files to the selected fileinfo.
5412 (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
5413 (cvs-mode-insert): Manually macroexpand `ignore-errors'.
5414
5415 2000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
5416
5417 * files.el (insert-directory): Don't call access-file on
5418 directories on DOS and Windows.
5419
5420 2000-08-09 Kenichi Handa <handa@etl.go.jp>
5421
5422 * international/ccl.el (ccl-embed-data): Make ccl-program-vector
5423 longer if necessary.
5424 (ccl-embed-code): Call ccl-embed-data to store CODE in
5425 ccl-program-vector.
5426
5427 2000-08-09 Miles Bader <miles@gnu.org>
5428
5429 * comint.el (comint-output-filter): Properly handle the case where
5430 the text surrounded by comint-last-output-overlay was deleted.
5431
5432 2000-08-08 Gerd Moellmann <gerd@gnu.org>
5433
5434 * info.el (Info-insert-dir): Use Info-additional-directory-list if
5435 non-nil.
5436 (Info-file-list-for-emacs): Remove "info" from the list because
5437 that leads to trying to use the documentation from file `info'
5438 in various situations where it isn't appropriate, for instance
5439 C-h C-k C-h i.
5440
5441 * ffap.el (ffap-read-file-or-url-internal): Handle case that
5442 DIR and/or STRING are nil.
5443
5444 * progmodes/compile.el (compilation-setup): Make variable
5445 compilation-error-screen-columns buffer-local, as some comment
5446 in the code suggests it should be.
5447
5448 * files.el (auto-mode-interpreter-regexp): New variable.
5449 (set-auto-mode): Use it.
5450
5451 * indent.el (indent-for-tab-command): Doc fix.
5452
5453 * mouse-sel.el (mouse-sel-mode): Doc fix.
5454
5455 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
5456 labels.
5457
5458 * help.el (print-help-return-message): When
5459 display-buffer-reuse-frames is set, let the help window been quit,
5460 instead of deleting it, which might delete a reused frame.
5461
5462 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
5463
5464 * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
5465 rename a directory to a name that differs only by its letter case.
5466
5467 2000-08-08 Kenichi Handa <handa@etl.go.jp>
5468
5469 * international/quail.el (quail-define-rules): Handle Quail decode
5470 map correctly. Add code for supporting annotations.
5471 (quail-install-decode-map): New function.
5472 (quail-defrule-internal): New optional arguments decode-map and
5473 props.
5474 (quail-advice): New function.
5475
5476 2000-08-07 Sam Steingold <sds@gnu.org>
5477
5478 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
5479 `defconst', `define-condition', `with-slots'.
5480 * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
5481
5482 2000-08-03 Miles Bader <miles@gnu.org>
5483
5484 * comint.el (comint-use-prompt-regexp-instead-of-fields):
5485 New variable.
5486 (comint-prompt-regexp, comint-get-old-input): Document dependence on
5487 comint-use-prompt-regexp-instead-of-fields.
5488 (comint-send-input): Add `input' field property to stuff we send to
5489 the process, if comint-use-prompt-regexp-instead-of-fields is nil.
5490 (comint-output-filter): Add `output' field property to process
5491 output, if comint-use-prompt-regexp-instead-of-fields is nil.
5492 (comint-replace-by-expanded-history)
5493 (comint-get-old-input-default, comint-show-output)
5494 (comint-backward-matching-input, comint-forward-matching-input)
5495 (comint-next-prompt, comint-previous-prompt): Use field
5496 properties if comint-use-prompt-regexp-instead-of-fields is nil.
5497 (comint-line-beginning-position): New function.
5498 (comint-bol): Use comint-line-beginning-position. Make ARG optional.
5499 (comint-replace-by-expanded-history-before-point): Use
5500 comint-line-beginning-position and line-end-position.
5501 (comint-last-output-overlay): New variable.
5502 (comint-mode): Make `comint-last-output-overlay' buffer-local.
5503
5504 * shell.el (shell-prompt-pattern): Doc change.
5505 (shell-backward-command): Use line-beginning-position.
5506
5507 * gud.el (gud-gdb-complete-command): Use
5508 comint-line-beginning-position.
5509
5510 * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
5511 comint-bol doesn't actually go to the beginning of the line.
5512
5513 * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
5514 if comint-use-prompt-regexp-instead-of-fields is non-nil.
5515 (try-expand-line-all-buffers): Likewise.
5516
5517 * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
5518 explicitly matching comint-prompt-regexp.
5519 (sql-copy-column): Use comint-line-beginning-position instead of
5520 explicitly matching comint-prompt-regexp.
5521
5522 * progmodes/octave-inf.el (inferior-octave-complete): Use
5523 comint-line-beginning-position.
5524
5525 * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
5526
5527 * progmodes/idlw-shell.el (idlwave-shell-send-command): When
5528 looking for a prompt, use `forward-line 0' instead of
5529 `beginning-of-line', to avoid getting caught by an input field.
5530
5531 2000-08-07 Gerd Moellmann <gerd@gnu.org>
5532
5533 * files.el (shell-quote-wildcard-pattern): Make sure to return
5534 PATTERN, in the Unix case.
5535
5536 2000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
5537
5538 * play/zone.el (zone): Discard any pending input before running
5539 the randomly-chosen pgm.
5540
5541 2000-08-07 Kenichi Handa <handa@etl.go.jp>
5542
5543 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
5544 checking the existence of any multibyte characters.
5545
5546 2000-08-06 Gerd Moellmann <gerd@gnu.org>
5547
5548 * help.el (describe-mode): Test minor-mode symbol for being
5549 bound before testing its value for being nil.
5550
5551 * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
5552 `first', `second', and `third'.
5553
5554 * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
5555 (second): Make it an alias for `cadr'.
5556
5557 2000-08-06 Eli Zaretskii <eliz@is.elta.co.il>
5558
5559 * bs.el (bs-apply-sort-faces): Don't use window-system, since all
5560 types of display support faces now.
5561
5562 2000-08-05 Gerd Moellmann <gerd@gnu.org>
5563
5564 * pcvs.el (require): Require `cl' during compilation, only.
5565
5566 * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
5567 (toplevel): Remove `remq' and `remove' from autoloads.
5568 (cl-fake-autoloads): New variable. If set, arrange for an error
5569 when CL functions etc. are autoloaded.
5570
5571 2000-08-04 Eli Zaretskii <eliz@is.elta.co.il>
5572
5573 * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
5574
5575 * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
5576 popped up, but the user clicks outside the menu, return an empty
5577 regexp (that causes unhighlight-regexp to have no effect).
5578
5579 * menu-bar.el (menu-bar-games-menu): Add Zone.
5580
5581 * hi-lock.el (toplevel): Require font-lock.
5582
5583 2000-08-03 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5584
5585 * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward.
5586 (ebnf-8-bit-chars): New var for bug fix.
5587 (ebnf-string): Bug fix.
5588
5589 2000-08-03 Sam Steingold <sds@gnu.org>
5590
5591 * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
5592 instead of `buffer-string'.
5593 (require 'cl): Always, not just when compiling.
5594 `ignore-errors' in `interactive', `list*', `defun*' &c make this
5595 necessary.
5596
5597 2000-08-03 Eli Zaretskii <eliz@is.elta.co.il>
5598
5599 * international/mule-cmds.el (select-safe-coding-system): Make
5600 the message text about selecting a safe coding system more clear.
5601
5602 2000-08-02 Gerd Moellmann <gerd@gnu.org>
5603
5604 * hi-lock.el: New file.
5605
5606 * play/zone.el: New file.
5607
5608 * replace.el (occur): Set tab-width in the *Occur* buffer to the
5609 value of tab-width in the original buffer. Choose a line number
5610 format that's a multiple of the original buffer's tab width, so
5611 that lines appear right.
5612
5613 * textmodes/ispell.el (ispell): New function, replacing an alias.
5614 Spell-check active region if in transient-mark-mode and mark
5615 is active; otherwise spell-check buffer.
5616
5617 2000-08-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5618
5619 * ps-mule.el: Fix a customization problem on
5620 ps-mule-font-info-database-default.
5621
5622 2000-08-02 Eli Zaretskii <eliz@is.elta.co.il>
5623
5624 * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
5625 display-mouse-p instead of window-system.
5626 (ebrowse-member-mode-map): Ditto.
5627
5628 2000-08-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5629
5630 * progmodes/ebnf2ps.el: Update ps-print functions call.
5631 Indentation fix. Doc fix.
5632 (ebnf-version): New version number (3.2).
5633 (ebnf-format-color, ebnf-begin-job): Code fix.
5634
5635 2000-08-01 Eli Zaretskii <eliz@is.elta.co.il>
5636
5637 * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
5638 font lock support on window-system.
5639 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
5640
5641 * textmodes/ispell.el (ispell-highlight-spelling-error): Use
5642 display-color-p, if fboundp, instead of window-system.
5643
5644 2000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
5645
5646 * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
5647 instead of window-system.
5648
5649 * wid-edit.el (widget-choose): Use display-mouse-p instead of
5650 window-system.
5651 (widget-choice-mouse-down-action): Use display-popup-menus-p
5652 instead of window-system.
5653
5654 * strokes.el (strokes-file): Run the file name through
5655 convert-standard-filename.
5656 (strokes-mode): Call display-mouse-p instead of looking at
5657 window-system. Change the error message accordingly.
5658
5659 * progmodes/cpp.el (toplevel): Support faces on tty's.
5660
5661 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
5662 (lm-plot-square, lm-init-display): Don't use window-system.
5663
5664 * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
5665 (gomoku-plot-square, gomoku-init-display): Don't use window-system.
5666
5667 * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
5668 instead of looking at window-system.
5669
5670 2000-07-30 Gerd Moellmann <gerd@gnu.org>
5671
5672 * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
5673 of testing if iswitchb-prepost-hooks is bound, because the
5674 latter will always be true when invoking a recursive minibuffer
5675 from an active Iswitchb buffer.
5676
5677 2000-07-30 Eli Zaretskii <eliz@is.elta.co.il>
5678
5679 * files.el (shell-quote-wildcard-pattern): New function.
5680 (insert-directory): Call it. Only prepend "\" to command on Unix
5681 and GNU/Linux systems.
5682
5683 2000-07-30 Gerd Moellmann <gerd@gnu.org>
5684
5685 * eshell/esh-groups.el: Change custom :link file names
5686 from `eshell.info' to `eshell'.
5687
5688 2000-07-30 Francis Wright <fjw@maths.qmw.ac.uk>
5689
5690 * dired.el (dired-build-subdir-alist): Expand subdirectory names
5691 correctly in recursive ange-ftp listings.
5692
5693 2000-07-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5694
5695 * ps-print.el: Fix bug 1: if ps-font-size-internal,
5696 ps-header-font-size-internal and
5697 ps-header-title-font-size-internal variables are not set,
5698 ps-nb-pages and ps-line-lengths-internal crashes. Fix bug 2: if
5699 face text property is (foreground-color . COLOR) or
5700 `(background-color . COLOR)', ps-print crashes. Doc fix.
5701 (ps-print-version): New version number (5.2.4).
5702 (ps-plot-region): Code fix.
5703 (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
5704 (ps-face-attribute-list, ps-face-attributes, ps-face-background):
5705 Bug fix 2.
5706
5707 2000-07-30 Milan Zamazal <pdm@freesoft.cz>
5708
5709 * glasses.el (glasses-make-readable): Fix uncapitalization of
5710 identifiers like `myXMLDocument'.
5711
5712 2000-07-28 Karl Fogel <kfogel@red-bean.com>
5713
5714 * mail/mail-hist.el (mail-hist-previous-input)
5715 (mail-hist-next-input): Do the obvious code factorization.
5716 (mail-hist-retrieve-and-insert): New func, contains common
5717 code of above two.
5718 If inserting a message body, leave point at top.
5719
5720 2000-07-28 Sam Steingold <sds@gnu.org>
5721
5722 * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
5723 Use `<=', not `<' to compare times!
5724 (ange-ftp-ls): Remove.
5725
5726 2000-07-27 Gerd Moellmann <gerd@gnu.org>
5727
5728 * play/cookie1.el: Add explanation of how to make cookie.el
5729 compatible with strfile(1) to comment.
5730
5731 * subr.el (remove, remq): New functions.
5732
5733 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
5734 escape `*' in regexps.
5735 (midnight-find): Reverse order of arguments in the funcall of
5736 TEST.
5737
5738 * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
5739 and `.class'.
5740
5741 * play/meese.el: Add Commentary section.
5742
5743 2000-07-27 Alex Schroeder <alex@gnu.org>
5744
5745 * sql.el (sql-ms): Added autoload cookie.
5746 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
5747 (sql-oracle): Ditto.
5748 (sql-help): Doc change.
5749
5750 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
5751 types and exceptions.
5752
5753 2000-07-27 Alex Schroeder <alex@gnu.org>
5754
5755 * sql.el (sql-placeholder-history): New variable.
5756 (sql-query-placeholders-and-send): New function that will query
5757 the user and replace placeholders with user input.
5758 (sql-oracle): If running on NT, set comint-input-sender to
5759 sql-query-placeholders-and-send.
5760
5761 (sql-stop): If in the SQLi buffer, insert stop notification, else
5762 present it as a message.
5763
5764 2000-07-27 Alex Schroeder <alex@gnu.org>
5765
5766 * sql.el (sql-input-ring-separator): Doc change.
5767 (sql-input-ring-file-name): Doc change.
5768 (sql-interactive-mode): Use `sql-input-ring-separator' and
5769 `sql-input-ring-file-name' to set the comint-mode equivalents
5770 without making them local variables.
5771 (sql-stop): Don't bind `sql-input-ring-separator' and
5772 `sql-input-ring-file-name' dynamically to their comint-mode
5773 equivalents.
5774
5775 2000-07-27 Kenichi Handa <handa@etl.go.jp>
5776
5777 * international/mule.el (register-char-codings): New function.
5778 (make-coding-system): Handle `safe-chars' specification in the arg
5779 PROPERTY.
5780
5781 * international/mule-cmds.el
5782 (find-coding-systems-region-subset-p): This function deleted.
5783 (sort-coding-systems-predicate): New variable.
5784 (sort-coding-systems): New function.
5785 (find-coding-systems-region): Use
5786 find-coding-systems-region-internal.
5787 (find-coding-systems-string): Use find-coding-systems-region.
5788 (find-coding-systems-for-charsets): Check
5789 char-coding-system-table.
5790 (select-safe-coding-system-accept-default-p): New variable.
5791 (select-safe-coding-system): Mostly rewritten. New argument
5792 ACCEPT-DEFAULT-P.
5793 (select-message-coding-system): Call select-safe-coding-system
5794 with ACCEPT-DEFAULT-P arg.
5795 (reset-language-environment): Reset default-sendmail-coding-system
5796 to the default value iso-latin-1.
5797 (set-language-environment): Don't set the obsolete variable
5798 charset-origin-alist.
5799
5800 * international/codepage.el (cp-coding-system-for-codepage-1):
5801 Give `safe-chars' property to make-coding-system.
5802
5803 * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
5804 calling select-message-coding-system twice.
5805
5806 * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
5807 instead of `safe-charsets'.
5808 (cyrillic-alternativnyj): Likewise.
5809 (ccl-encode-alternativnyj): Don't check the charset
5810 cyrillic-iso8859-5.
5811
5812 2000-07-27 Kenichi Handa <handa@etl.go.jp>
5813
5814 * composite.el (compose-chars-after): Preserve match data.
5815
5816 2000-07-26 Sam Steingold <sds@gnu.org>
5817
5818 * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
5819 (ange-ftp-real-file-newer-than-file-p): New function.
5820 (ange-ftp-verify-visited-file-modtime): Use `float-time'.
5821 (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
5822
5823 * tooltip.el (tooltip-float-time): Removed (use `float-time').
5824 * midnight.el (midnight-float-time): Ditto.
5825
5826 2000-07-26 Andreas Schwab <schwab@suse.de>
5827
5828 * files.el (normal-backup-enable-predicate): Correct
5829 interpretation of the return value of compare-strings.
5830
5831 2000-07-26 Gerd Moellmann <gerd@gnu.org>
5832
5833 * isearch.el (isearch-resume): New function.
5834 (isearch-done): Add something to command-history to resume
5835 the search.
5836 (isearch-yank-line, isearch-yank-word): Use
5837 buffer-substring-no-properties instead of buffer-substring.
5838
5839 * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
5840 of flyspell-mouse-map.
5841
5842 * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
5843 duplicate definition.
5844 (makefile-mode): Remove duplicate setting of local-abbrev-table.
5845
5846 * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
5847 (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
5848
5849 2000-07-25 Sam Steingold <sds@gnu.org>
5850
5851 * net/ange-ftp.el: Get modtime over the net.
5852 (ange-ftp-file-modtime): New function.
5853 (ange-ftp-write-region, ange-ftp-insert-file-contents)
5854 (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
5855 Use it.
5856 (ange-ftp-dot-to-slash): New function.
5857 (ange-ftp-fix-name-for-vms): Use it.
5858
5859 * midnight.el (midnight-buffer-display-time): Use
5860 `with-current-buffer'.
5861
5862 2000-07-25 Gerd Moellmann <gerd@gnu.org>
5863
5864 * find-dired.el: Update copyright notice.
5865 (find-dired): Offer to kill a running `find'.
5866
5867 * enriched.el (enriched-face-ans): For a `foreground-color'
5868 property, return '(("x-color" COLOR))' so that COLOR will be
5869 output as a parameter of the x-color annotation. Likewise for the
5870 `background-color' property. In the case of normal face
5871 properties, don't return annotations for unspecified foreground
5872 and background face attributes.
5873
5874 2000-07-25 Kenichi Handa <handa@etl.go.jp>
5875
5876 * language/japan-util.el (japanese-katakana-region): Fix handling
5877 HANKAKU argument.
5878
5879 2000-07-25 Miles Bader <miles@gnu.org>
5880
5881 * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
5882 constrain-to-field. Pass nil ESCAPE-FROM-EDGE argument to
5883 constrain-to-field.
5884
5885 2000-07-24 Andrew Innes <andrewi@gnu.org>
5886
5887 * timer.el (timer-activate-when-idle): Add optional parameter
5888 DONT-WAIT. Update docstring.
5889 (run-with-idle-timer): Specify extra parameter to
5890 timer-activate-when-idle, so that timer will be activated
5891 immediately if Emacs is already idle.
5892
5893 * w32-fns.el (w32-using-nt): Fix docstring.
5894
5895 2000-07-24 Dave Love <fx@gnu.org>
5896
5897 * mouse.el (popup-menu): Set last-command-event.
5898 (mouse-major-mode-menu-prefix): Declare.
5899
5900 2000-07-24 Gerd Moellmann <gerd@gnu.org>
5901
5902 * textmodes/flyspell.el: Update to author's version 1.5d.
5903
5904 * progmodes/hideshow.el: Update copyright notice.
5905
5906 * vcursor.el: Set maintainer to FSF, since author cannot
5907 be reached.
5908
5909 2000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
5910
5911 * info.el (Info-goto-emacs-key-command-node): Leave a space after
5912 the prompt.
5913
5914 * mouse.el (popup-menu): Run the keymap through indirect-function,
5915 in case it was defined with define-prefix-key. If the menu is a
5916 list of keymaps, look up the binding of user's choice in each one
5917 of the keymaps.
5918 (mouse-popup-menubar): If the global and local menu-bar keymaps
5919 don't have a prompt string, create one and insert it into the
5920 keymap. Don't barf if current-local-map returns nil.
5921
5922 2000-07-24 Francis Wright <fjw@maths.qmw.ac.uk>
5923
5924 * dired.el (dired-sort-R-check): Added to allow recursive listing
5925 to be undone.
5926 (dired-sort-other): Use it.
5927
5928 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
5929
5930 * Release of cc-mode 5.27
5931
5932 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
5933
5934 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
5935 c-beginning-of-statement-1 that caused a bad case of recursion
5936 which could consume a lot of CPU in large classes in languages
5937 that have in-expression classes (i.e. Java and Pike).
5938
5939 * cc-engine.el (c-guess-basic-syntax): Check for in-expression
5940 statements before top level constructs (i.e. case 6 is moved
5941 before case 5 and is now case 4) to catch in-expression
5942 classes in top level expressions correctly.
5943
5944 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
5945
5946 * cc-engine.el (c-guess-basic-syntax): Less naive handling of
5947 objc-method-intro. Case 4 removed and case 5I added.
5948
5949 * cc-langs.el (c-append-paragraph-start): New variable used by
5950 c-common-init to get paragraph-start correct.
5951 * cc-langs.el (c-common-init): Use c-append-paragraph-start to
5952 initialize paragraph-start to make it correct both with and
5953 without the javadoc special case.
5954
5955 * cc-mode.el (java-mode): Use c-append-paragraph-start to
5956 initialize paragraph-start for javadoc markup.
5957
5958 * cc-vars.el (c-style-variables-are-local-p): Incompatible
5959 change by defaulting this to t. It's motivated by the
5960 confusing behavior that otherwise arise from the style system
5961 when editing both java and non-java files at the same time
5962 (see the comments about style setting in c-common-init).
5963
5964 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
5965
5966 * cc-cmds.el (c-indent-new-comment-line): Added a kludge
5967 similar to the one in c-fill-paragraph to check the fill
5968 prefix from the adaptive fill function for sanity.
5969
5970 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
5971
5972 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
5973 defun block.
5974
5975 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
5976
5977 * cc-mode.texi Documented the change of cpp-macro.
5978
5979 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
5980
5981 * cc-align.el (c-lineup-multi-inher): Handle lines with
5982 leading comma nicely. Extended to handle member initializers
5983 too.
5984
5985 * cc-engine.el: (c-beginning-of-inheritance-list,
5986 c-guess-basic-syntax): Fixed recognition of inheritance lists
5987 when the lines begins with a comma.
5988
5989 * cc-mode.texi: Updated doc for c-lineup-multi-inher.
5990
5991 * cc-vars.el (c-offsets-alist): Changed default for
5992 member-init-cont to c-lineup-multi-inher since it now handles
5993 member initializers and indents better for leading commas.
5994
5995 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
5996
5997 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
5998 handling that caused class open lines to be recognized as
5999 statement-conts in some cases.
6000
6001 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
6002 guessed by the adaptive fill function unless point is on the
6003 first line of a block comment.
6004
6005 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
6006 when the buffer ends with a macro continuation char.
6007
6008 * cc-engine.el (c-guess-basic-syntax): Added support for
6009 function definitions as statements in Pike. The first
6010 statement in a lambda block is now labeled defun-block-intro
6011 instead of statement-block-intro.
6012
6013 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
6014 so that the class surrounding point is selected, not the one
6015 innermost in the state.
6016
6017 * cc-engine.el (c-guess-basic-syntax): Fixed bug in
6018 recognition of switch labels having hanging multiline
6019 statements.
6020
6021 * cc-engine.el (c-beginning-of-member-init-list): Broke out
6022 some code in c-guess-basic-syntax to a separate function.
6023 * cc-engine.el (c-just-after-func-arglist-p): Fixed
6024 recognition of member inits with multiple line arglists.
6025 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
6026 member-init-cont when the commas are in funny places.
6027
6028 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6029
6030 * cc-defs.el (c-auto-newline): Removed this macro since it's
6031 not used anymore.
6032
6033 * cc-engine.el (c-looking-at-bos): New helper function.
6034 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
6035 inexpr and toplevel classes apart in Pike.
6036
6037 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
6038 of case 9A.
6039
6040 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
6041 constant, since "class" can introduce an in-expression class
6042 in Pike nowadays.
6043
6044 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6045
6046 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
6047 indentation on cpp-macro lines.
6048
6049 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
6050 a syntax modifier like comment-intro, to make it possible to
6051 get syntactic indentation for preprocessor directives. It's
6052 incompatible wrt to lineup functions on cpp-macro, but it has
6053 no observable effect in the 99.9% common case where cpp-macro
6054 is set to -1000.
6055
6056 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6057
6058 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
6059 member-init-cont when the preceding arglist is several lines.
6060
6061 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6062
6063 * cc-styles.el (c-style-alist): The basic offset for the BSD
6064 style corrected to 8.
6065
6066 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6067
6068 * cc-styles.el (c-style-alist): Adjusted the indentation of
6069 brace list openers in the gnu style.
6070
6071 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6072
6073 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
6074
6075 * cc-cmds.el (c-electric-brace, c-electric-slash,
6076 c-electric-star, c-electric-semi&comma, c-electric-colon,
6077 c-electric-lt-gt, c-electric-paren): Don't reindent old lines
6078 when c-syntactic-indentation is nil.
6079
6080 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
6081 we were left at comments preceding the first statement when
6082 reaching the beginning of the buffer.
6083
6084 * cc-vars.el (c-syntactic-indentation): New variable to turn
6085 off all syntactic indentation.
6086
6087 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6088
6089 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
6090 between the text and the block comment ender when it hangs,
6091 depending on how many there are before the fill.
6092
6093 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6094
6095 * cc-engine.el (c-beginning-of-closest-statement): New helper
6096 function to go back to the closest preceding statement start,
6097 which could be inside a conditional statement.
6098 * cc-engine.el (c-guess-basic-syntax): Use
6099 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
6100
6101 * cc-engine.el (c-guess-basic-syntax): Better handling of
6102 arglist-intro, arglist-cont-nonempty and arglist-close when
6103 the arglist is nested inside parens. Cases 7A, 7C and 7F
6104 changed.
6105
6106 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
6107 up-to-date with javadoc 1.2.
6108
6109 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6110
6111 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
6112 multiline Pike type decls.
6113
6114 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6115
6116 * cc-cmds.el (c-indent-new-comment-line): Always break
6117 multiline comments in multiline mode, regardless of
6118 comment-multi-line.
6119
6120 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6121
6122 * cc-engine.el (c-guess-basic-syntax): Fixed bug with
6123 fully::qualified::names in C++ member init lists. Preamble in
6124 case 5D changed.
6125
6126 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6127
6128 * cc-langs.el (c-common-init): Handling of obsolete variables
6129 moved to c-initialize-cc-mode. More compatible style override
6130 when using global style variables.
6131 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
6132 variables moved here.
6133
6134 * cc-mode.texi: Documented the special behavior of
6135 c-special-indent-hook as a style variable. Don't talk about
6136 doing (c-make-styles-buffer-local t) in a mode hook, since
6137 that's already too late to work right.
6138
6139 * cc-styles.el (c-make-styles-buffer-local): Flag style
6140 variable localness in c-style-variables-are-local-p to make
6141 the compatibility measure in c-common-init work well.
6142
6143 * cc-styles.el (c-set-style-1): c-special-indent-hook can no
6144 longer contain set-from-style.
6145 * cc-styles.el (c-initialize-builtin-style): Don't check for
6146 set-from-style on c-special-indent-hook.
6147 * cc-styles.el (c-copy-tree): Obsolete. The standard function
6148 copy-alist is sufficient now.
6149
6150 * cc-styles.el (c-set-style, c-set-style-1,
6151 c-get-style-variables): Fixes to variable initialization so
6152 that duplicate entries in styles have the same effect
6153 regardless of DONT-OVERRIDE.
6154
6155 * cc-styles.el (c-set-style-2): Fixed bug where the
6156 initialization of inheriting styles failed when the
6157 dont-override flag is set.
6158
6159 * cc-vars.el (c-special-indent-hook): Don't use set-from-style
6160 on this.
6161
6162 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6163
6164 * cc-defs.el (c-forward-comment): Removed the workaround
6165 introduced in 5.38 since it had worse side-effects. If a line
6166 contains the string "//\"", it regarded the // as a comment
6167 start since the \ temporarily doesn't have escape syntax.
6168
6169 2000-07-17 Emmanuel Briot <briot@act-europe.fr>
6170
6171 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
6172 ada-xref.el before ada-prj.el, so that the Project menu is created
6173 when ada-prj tries to add to it.
6174 (ada-activate-keys-for-case): Suppress the characters that are not
6175 part of the Ada syntax. Better compatibility with else-mode
6176 (ada-adjust-case-interactive): When auto-casing is not active,
6177 correctly insert newlines (used to insert only ^M). Prevent the
6178 syntax table from being changed in case of an error
6179 (or '_' becomes part of a word and some commands are confused).
6180 Do nothing if ada-auto-case is nil.
6181 (ada-after-keyword-p): Ignore keywords that are also attributes
6182 (ada-batch-reformat): Update usage comment
6183 (ada-call-from-contextual-menu): New function
6184 (ada-case-read-exceptions): Reinitialize the casing exception list
6185 first to nil first, so that the casing exception file can be
6186 shared.
6187 (ada-check-defun-name): Handles "configure" keyword for gnatdist
6188 files.
6189 (ada-compile-goto-error): Fix regexp used to detect a file:line
6190 anywhere in the error message
6191 (ada-contextual-menu-last-point): New variable
6192 (ada-create-keymap): If the variable delete-key-deletes-forward is
6193 t on XEmacs, it means that DEL should delete one character
6194 forward.
6195 (ada-create-menu): Use :included instead of :visible for XEmacs.
6196 New submenu "Options".
6197 (ada-end-stmt-re): Correctly indent "select ... then abort"
6198 statements.
6199 (ada-fill-comment-paragraph): Correctly delete all leading '--'
6200 even if they don't match ada-fill-comment-prefix Fix handling of
6201 paragraphs on the first or last line of a file.
6202 (ada-format-paramlist): Fix handling of default parameter values.
6203 (ada-get-body-name): New function.
6204 (ada-get-current-indent): Optimized by searchling directly for an
6205 existing generic part or a statement outside of it. Handle
6206 ada-indent-align-comments when indenting comments Replaced some
6207 regexps by testing directly the next character. This results in a
6208 huge speedup on some files. New indentation scheme for renames
6209 statements. Stop looking for the 'while' or 'for' associated with
6210 a 'loop' at the first semicolon encountered. A "return" can also
6211 match an anonymous access subprogram declaration.
6212 (ada-get-indent-noindent): Ignore strings and comments when
6213 looking for the keywords "record" and "private".
6214 (ada-goto-matching-decl-start): When matching "if", make sure we
6215 are not in fact seeing "end if". Ignore "when" statements except
6216 when initial keyword was "begin". Fix handling of nested
6217 procedures. Add a recursive call to this function to skip over
6218 other 'end' statmts. Fix indentation for "when .. => begin"
6219 (ada-in-open-paren-p): Fix indentation for complex boolean
6220 expressions, where 'and then', 'or else' and parenthesis
6221 statements are mixed up.
6222 (ada-in-paramlist-p): Skip comments while searching for the
6223 beginning Fix handling of operator declarations.
6224 (ada-indent-align-comments): New variable
6225 (ada-indent-current): Change the syntax table only in the
6226 protected section, so that we are sure it is restored correctly.
6227 (ada-indent-on-previous-lines): Use ada-use-indent and
6228 ada-with-indent Correctly indent "select ... then"
6229 (ada-indent-region): Slight speedup.
6230 (ada-indent-renames): New variable.
6231 (ada-last-which-function-subprog, ada-last-which-function-line):
6232 New variables
6233 (ada-looking-at-semi-private): Correctly indent the 'private'
6234 keyword when it is the first word in a package declaration.
6235 (ada-loose-case-word): Stop searching if at the end of the buffer.
6236 (ada-loose-case-word, ada-capitalize-word): Recase the whole word
6237 even if point is not initially at the end of the word.
6238 (ada-matching-decl-start-re): Add "when".
6239 (ada-mode): Add support for abbrev-mode, outline-mode and
6240 which-func-mode Override the old find-file.el entry in
6241 ff-special-constructs since it is using the obsolete
6242 ada-spec-suffix variable
6243 (ada-no-auto-case): New function
6244 (ada-scan-paramlist): When parsing the argument type, accept
6245 spaces (as in "X 'Class", generated by Rational Rose).
6246 (ada-other-file-name): No longer loads the other file.
6247 (ada-popup-menu): Save and restore the current buffer and cursor
6248 position before and after displaying the menu.
6249 (ada-search-ignore-complex-boolean): New function.
6250 (ada-uncomment-region): Emacs21 already knows how to delete
6251 comments not starting in the first column.
6252 (ada-use-indent): New variable
6253 (ada-which-function): New function.
6254 (ada-with-indent): New variable
6255 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
6256 can be batch-compiled from the command line.
6257
6258 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
6259 Add to the menu when the file is loaded, not in ada-mode-hook.
6260 Add -toolbar to the default ddd command Switches moved from
6261 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
6262 ada-prj-default-comp-opt
6263 (ada-add-ada-menu): Remove the map and name parameters Add the Ada
6264 Reference Manual to the menu
6265 (ada-check-current): rewritten as a call to ada-compile-current
6266 (ada-compile): Removed.
6267 (ada-compile-application, ada-compile-current, ada-check-current):
6268 Set the compilation-search-path so that compile.el automatically
6269 finds the sources in src_dir. Automatic scrollong of the
6270 compilation buffer. C-uC-cC-c asks for confirmation before
6271 compiling
6272 (ada-compile-current): New parameter, prj-field
6273 (ada-complete-identifier): Load the .ali file before doing
6274 processing
6275 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
6276 conform to gnatmake's behavior.
6277 (ada-find-file-in-dir): New function
6278 (ada-find-references): Set the environment variables for gnatfind
6279 (ada-find-src-file-in-dir): New function.
6280 (ada-first-non-nil): Removed
6281 (ada-gdb-application): Add support for jdb, the java debugger.
6282 (ada-get-ada-file-name): Load the original-file first if not done
6283 yet.
6284 (ada-get-all-references): Handles the new ali syntax (parent types
6285 are found between <>).
6286 (ada-initialize-runtime-library): New function
6287 (ada-mode-hook): Always load a project file when a file is opened,
6288 so that the casing exceptions are correctly read.
6289 (ada-operator-re): Add all missing operators ("abs", "rem", "**").
6290 (ada-parse-prj-file): Use find-file-noselect instead of find-file
6291 to open the project file, since the latter does not work with
6292 speedbar Get default values before loading the prj file, or the
6293 default executable file name is wrong. Use the absolute value of
6294 src_dir to initialize ada-search-directories and
6295 compilation-search-path,... Add the standard runtime library to
6296 the search path for find-file.
6297 (ada-prj-default-debugger): Was missing an opening '{'
6298 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
6299 variables.
6300 (ada-prj-default-gnatmake-opt): New variable
6301 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
6302 buffers, the project file is the default one Save the windows
6303 configuration before displaying the menu.
6304 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
6305 (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
6306 ...) regexp-quote identifiers names to support operators +,
6307 -,... in regexps.
6308 (ada-remote): New function.
6309 (ada-run-application): Erase the output buffer before starting the
6310 run Support remote execution of the application. Use
6311 call-process, or the arguments are incorrectly parsed
6312 (ada-set-default-project-file): Reread the content of the active
6313 project file, not the one from the current buffer When a project
6314 file is set as the default project, all directories are
6315 automatically associated with it.
6316 (ada-set-environment): New function
6317 (ada-treat-cmd-string): New special variable ${current}
6318 (ada-treat-cmd-string): Revised. The substitution is now done for
6319 any ${...} substring
6320 (ada-xref-current): If no body was found, compiles the spec
6321 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the
6322 compiler to get rid of command line length limitations.
6323 (ada-xref-get-project-field): New function
6324 (ada-xref-project-files): New variable
6325 (ada-xref-runtime-library-specs-path)
6326 (ada-xref-runtime-library-ali-path): New variables
6327 (ada-xref-set-default-prj-values): Default run command now does a
6328 cd to the build directory. New field: main_unit Provide a default
6329 file name even if the current buffer has no prj file.
6330
6331 * ada-prj.el:
6332 Rewritten to show a tabbed-dialog.
6333 (ada-prj-add-ada-menu): Remove the map and name parameters.
6334 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
6335 New function
6336 (ada-prj-load-directory, ada-prj-subdirs-of): New functions
6337 (ada-prj-load-from-file): New function
6338 (ada-prj-save): Always save fields that depend on the current buffer
6339 (ada-prj-show-value): New function
6340
6341 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
6342 Ada mode. This will allow us to display the Ada menu in any buffer
6343 we want (for project items).
6344 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
6345 number of spaces in the header.
6346
6347 2000-07-24 Dave Love <fx@gnu.org>
6348
6349 * ediff-init.el (ediff-region-help-echo): Bind face-help.
6350
6351 2000-07-23 Noah Friedman <friedman@splode.com>
6352
6353 * type-break.el (type-break): perform autosave.
6354 Suggested by Stephen Gildea <gildea@intouchsys.com>.
6355 (type-break-do-query): Cancel query schedule while performing
6356 actual query, to avoid possibility of a second query being made
6357 while first one is already in progress.
6358 (type-break-time-stamp-format): New variable.
6359 (type-break-time-stamp): New function.
6360 (type-break-time-warning): Use it.
6361 (type-break-keystroke-warning): Use it.
6362 (type-break-noninteractive-query): Use it.
6363
6364 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
6365 cookie.
6366 Use add-minor-mode to set minor-mode-alist, if available.
6367 (eldoc-echo-area-use-multiline-p): New user option.
6368 (eldoc-echo-area-multiline-supported-p): New variable.
6369 (eldoc-docstring-format-sym-doc): Use them.
6370 (eldoc-mode): If not using idle timers, append to local post and
6371 pre command hooks. Suggested by David Byers <davby@ida.liu.se>.
6372 (eldoc-display-message-no-interference-p): Don't interfere with
6373 edebug.
6374 Add autoload cookie for eldoc-mode minor-mode-alist initialization.
6375 (eldoc-function-arglist): New function.
6376 (eldoc-function-argstring): Use it.
6377
6378 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
6379 auto save directory exists before calling directory-files.
6380
6381 2000-07-23 Dave Love <fx@gnu.org>
6382
6383 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
6384 ^o, ^u.
6385
6386 2000-07-21 Dave Love <fx@gnu.org>
6387
6388 * ediff-init.el (ediff-region-help-echo): Modify to use overlay
6389 now passed to the function. It now works properly.
6390
6391 * smerge-mode.el (smerge-mode-menu): Fill it out.
6392
6393 2000-07-20 Gerd Moellmann <gerd@gnu.org>
6394
6395 * info-look.el (info-lookup): If *info* is shown in another frame
6396 on the same display, select that frame, instead of switching to
6397 the Info buffer in another window of the selected frame.
6398
6399 * simple.el (universal-argument-map): Bind numeric keypad keys
6400 kp-0 to kp-9 and kp-subtract.
6401 (digit-argument): Handle these keys.
6402
6403 2000-07-20 Dave Love <fx@gnu.org>
6404
6405 * net/goto-addr.el (goto-address-fontify): Don't bother with
6406 buffer-modified and read-only stuff -- irrelevant with overlays.
6407 Put an extra property on the overlays and use it to clean up in
6408 case goto-address is re-run.
6409
6410 2000-07-19 Richard M. Stallman <rms@gnu.org>
6411
6412 * timer.el (run-with-idle-timer): Doc fix.
6413
6414 * mail/mail-utils.el (mail-strip-quoted-names):
6415 Handle case where <...> appears inside "...".
6416 Use replace-match to edit the string more simply.
6417 (rmail-dont-reply-to): Cope with an unmatched ".
6418
6419 2000-07-19 Dave Love <fx@gnu.org>
6420
6421 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
6422 implementation.
6423
6424 * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
6425 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
6426 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
6427
6428 2000-07-19 Gerd Moellmann <gerd@gnu.org>
6429
6430 * textmodes/refer.el: Correct maintainer's email address.
6431
6432 * progmodes/hideif.el: Correct author's email address.
6433 Fix typo in comment.
6434
6435 * xml.el: New file.
6436
6437 * mail/mailheader.el: Correct author's mail address.
6438
6439 * gnus/parse-time.el: Correct author's mail address.
6440
6441 2000-07-19 Colin Walters <walters@cis.ohio-state.edu>
6442
6443 * comint.el (comint-highlight-input, comint-highlight-face):
6444 New user options.
6445 (comint-input-ring-file-name): Change custom type.
6446 (comint-mode-map): Bind mouse-2.
6447 (comint-insert-clicked-input): New function.
6448 (comint-send-input): Handle input highlighting.
6449
6450 2000-07-18 Stefan Monnier <monnier@cs.yale.edu>
6451
6452 * mouse.el (popup-menu): New function.
6453 (mouse-major-mode-menu): Use it.
6454
6455 2000-07-18 Dave Love <fx@gnu.org>
6456
6457 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
6458 improvements.
6459
6460 2000-07-18 Gerd Moellmann <gerd@gnu.org>
6461
6462 * faces.el (face-font-selection-order)
6463 (face-font-family-alternatives): Add custom type.
6464
6465 2000-07-18 Dave Love <fx@gnu.org>
6466
6467 * cus-edit.el (custom-variable-reset-saved)
6468 (custom-variable-reset-standard): Remove unused bindings.
6469
6470 * rect.el (open-rectangle-line): Remove unused let.
6471
6472 * hl-line.el (hl-line-highlight): Check hl-line-mode.
6473
6474 2000-07-18 Gerd Moellmann <gerd@gnu.org>
6475
6476 * cdl.el: Fix `Maintainer' keyword.
6477
6478 * play/pong.el: Add author's email address.
6479
6480 2000-07-17 Sam Steingold <sds@gnu.org>
6481
6482 * files.el (insert-directory): Call `split-string' instead of
6483 re-implementing it.
6484
6485 2000-07-18 Gerd Moellmann <gerd@gnu.org>
6486
6487 * mail/vms-pmail.el: Change maintainer to FSF.
6488
6489 * net/goto-addr.el: Change maintainer to FSF.
6490
6491 * recentf.el: Update from author.
6492
6493 * info.el (Info-title-face-alist): Removed.
6494
6495 2000-07-18 Eli Zaretskii <eliz@is.elta.co.il>
6496
6497 * eshell/eshell.el (eshell): Replace links to eshell.info with
6498 links to eshell, to avoid problems on systems where the manual is
6499 installed as `eshell'.
6500 * eshell/esh-cmd.el (eshell-cmd): Ditto.
6501 * eshell/em-smart.el (eshell-smart): Ditto.
6502 * eshell/em-banner.el (eshell-banner): Ditto.
6503 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
6504
6505 * eshell/em-unix.el (eshell-shuffle-files): Don't disable
6506 same-file check in the MS-DOS version (it does support inodes).
6507
6508 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
6509
6510 * eshell/eshell.el (eshell-directory-name):
6511 Run default directory name through convert-standard-filename.
6512
6513 2000-07-18 Kenichi Handa <handa@etl.go.jp>
6514
6515 * international/mule-cmds.el (select-safe-coding-system):
6516 Fix typo in the comment.
6517
6518 * language/european.el (compound-text):
6519 Force katakana-jisx0201 to be designated to G1.
6520
6521 * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
6522 Don't translate some national variant characters of latin-jisx0201.
6523 (x-ctext): Force katakana-jisx0201 to be designated to G1.
6524
6525 * international/kkc.el (kkc-after-update-conversion-functions):
6526 New variable.
6527 (kkc-update-conversion): Run functions in it at the tail.
6528
6529 2000-07-16 John Wiegley <johnw@gnu.org>
6530
6531 * lisp/align.el (align-newline-and-indent):
6532 Adding new function. for auto-aligning blocks of code on RET.
6533 (align-region): Fixed badly formatted minibuffer message.
6534
6535 2000-07-17 Kenichi Handa <handa@etl.go.jp>
6536
6537 * international/kkc.el (kkc-show-conversion-list-count): Customize it.
6538 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show
6539 the conversion list at first if appropriate.
6540 (kkc-next): Don't update kkc-next-count here.
6541 (kkc-prev): Don't update kkc-prev-count here.
6542 (kkc-show-conversion-list-update): Fix setting up of conversion
6543 list message.
6544
6545 2000-07-16 Stefan Monnier <monnier@cs.yale.edu>
6546
6547 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
6548
6549 2000-07-16 Dave Love <fx@gnu.org>
6550
6551 * cus-edit.el (custom-buffer-create-internal): Use a help-echo
6552 function to be more specific.
6553
6554 * wid-edit.el (widget-specify-field, widget-specify-button): Allow
6555 non-string help-echo.
6556 (widget-types-convert-widget): Defsubst it.
6557 (widget-echo-help): Try to cope with a help-echo function of two
6558 possible sorts.
6559
6560 2000-07-15 Jason Rumney <jasonr@gnu.org>
6561
6562 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
6563 Declare as obsolete.
6564
6565 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
6566
6567 2000-07-14 Gerd Moellmann <gerd@gnu.org>
6568
6569 * hilit-chg.el: Fix typo.
6570
6571 2000-07-14 Dave Love <fx@gnu.org>
6572
6573 * info.el (Info-mode-menu): Fix use of :help, :enable.
6574
6575 2000-07-14 Stefan Monnier <monnier@cs.yale.edu>
6576
6577 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
6578
6579 2000-07-13 Dave Love <fx@gnu.org>
6580
6581 * emacs-lisp/easymenu.el: Doc fixes.
6582 (easy-menu-remove): Defalias to ignore.
6583
6584 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
6585 Call throw correctly.
6586
6587 2000-07-13 Gerd Moellmann <gerd@gnu.org>
6588
6589 * faces.el (frame-background-mode): Doc fix.
6590
6591 * simple.el (eval-expression-print-length): Change custom type to
6592 allow entering nil as value.
6593
6594 2000-07-13 Dave Love <fx@gnu.org>
6595
6596 * progmodes/fortran.el (fortran-imenu-generic-expression):
6597 Change definition layout.
6598 (fortran-mode-menu): Reinstate customize entries.
6599
6600 * cus-edit.el (custom-group-menu-create, customize-menu-create):
6601 Use :filter, per old XEmacs code.
6602
6603 2000-07-12 Gerd Moellmann <gerd@gnu.org>
6604
6605 * term.el (term-send-raw-meta): Strip modifiers from the keyboard
6606 event when deciding what to send to the terminal.
6607
6608 2000-07-12 Dave Love <fx@gnu.org>
6609
6610 * cus-start.el: Add optional version as 4th element of specs and
6611 use it for several things new in v21. Remove load-path. Fix type
6612 of line-number-display-limit.
6613
6614 2000-07-11 Dave Love <fx@gnu.org>
6615
6616 * progmodes/fortran.el: Don't require easymenu.
6617 Use repeat counts in various regexps.
6618 (fortran-mode-syntax-table): Defvar directly.
6619 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
6620 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
6621 Use defvar, not defconst.
6622 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'.
6623 (fortran-mode): Set fortran-comment-line-start-skip,
6624 fortran-comment-line-start-skip, dabbrev-case-fold-search.
6625 (fortran-comment-indent): Use defsubst.
6626 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
6627 Use fortran-comment-indent, not fortran-comment-indent-function.
6628 (fortran-comment-region, fortran-electric-line-number): Simplify.
6629 (fortran-auto-fill): New function.
6630 (fortran-do-auto-fill): Deleted.
6631 (fortran-find-comment-start-skip):
6632 Check for non-null comment-start-skip.
6633 (fortran-auto-fill-mode, fortran-fill-statement):
6634 Use fortran-auto-fill.
6635 (fortran-fill): Use fortran-auto-fill. Check for null
6636 comment-start-skip. Simplify final clause and use end-of-line finally.
6637
6638 * widget.el (widget-plist-member): New alias.
6639
6640 2000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
6641
6642 * eshell/esh-module.el (toplevel): Reference
6643 byte-compile-current-file only if it is bound.
6644
6645 2000-07-10 Gerd Moellmann <gerd@gnu.org>
6646
6647 * dired.el: Don't require `dired-aux'.
6648
6649 2000-07-10 Miles Bader <miles@lsi.nec.co.jp>
6650
6651 * dired-aux.el (dired-show-file-type): New function.
6652 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
6653 (dired-show-file-type): Add autoload.
6654
6655 2000-07-10 Kenichi Handa <handa@etl.go.jp>
6656
6657 * international/mule-diag.el (describe-font): Adjusted for the
6658 change of fontset-info.
6659 (print-fontset): Likewise.
6660
6661 2000-07-09 Stefan Monnier <monnier@cs.yale.edu>
6662
6663 * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
6664
6665 2000-07-07 Gerd Moellmann <gerd@gnu.org>
6666
6667 * bindings.el: Bind `[delete]' to delete-char.
6668
6669 * dired.el (dired-find-alternate-file): New function.
6670 (dired-mode-map): Bind `a' to dired-find-alternate-file.
6671 (toplevel): Require dired-aux when compiling.
6672 (dired-buffers): Move defvar within file to avoid compiler warning.
6673
6674 * info.el (Info-last-search): Variable removed.
6675 (Info-search-history): New variable.
6676 (Info-search): New Info-search-history.
6677
6678 * battery.el, info-look.el: Change author's mail address.
6679
6680 2000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
6681
6682 * mail/rmail.el (rmail-clear-headers): Don't throw an error
6683 if rmail-ignored-headers is nil.
6684 (rmail-retry-failure): Bind rmail-ignored-headers and
6685 rmail-displayed-headers to nil.
6686
6687 2000-07-06 Gerd Moellmann <gerd@gnu.org>
6688
6689 * lpr.el (lpr-page-header-switches): Add `-h' switch.
6690 (print-region-1): Don't hard code `-h' here.
6691
6692 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
6693
6694 2000-07-01 Francesco Potorti` <pot@gnu.org>
6695
6696 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
6697 exim can use "your message" instead of "the message".
6698
6699 2000-07-06 Stefan Monnier <monnier@cs.yale.edu>
6700
6701 * facemenu.el: Docstrings fixes.
6702 (facemenu-get-face): Don't use internal-find-face.
6703 (facemenu-iterate): Rename arg to match the docstring.
6704
6705 * newcomment.el (uncomment-region): Be more careful when skipping
6706 backwards over `=' not to bump into BOBP.
6707
6708 2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
6709
6710 * ediff-diff.el (ediff-wordify): Use syntax table.
6711 * ediff-init.el (ediff-has-face-support-p): Use
6712 ediff-color-display-p.
6713 (ediff-color-display-p): Use display-color-p, changed to defun
6714 from defsubst.
6715 Got rid of special cases for NeXT and OS/2.
6716 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
6717 face.
6718
6719 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
6720
6721 * emacs-lisp/lucid.el: Require CL.
6722 (copy-tree, remprop): Remove, it's provided by CL.
6723 (map-keymap): Define in terms of cl-map-keymap.
6724 (extent-property, set-extent-end-glyph): New functions.
6725
6726 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
6727
6728 2000-07-05 Gerd Moellmann <gerd@gnu.org>
6729
6730 * Makefile.in (DONTCOMPILE): Add comment that the name may
6731 not be changed without changing the make-dist script.
6732
6733 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
6734 (cl-mapc): Use mapc instead of cl-old-mapc.
6735
6736 2000-07-05 Andrew Innes <andrewi@gnu.org>
6737
6738 * makefile.nt: Add support for `bootstrap' and related targets.
6739
6740 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
6741
6742 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
6743 (easy-menu-do-define): Use `menu-item' format.
6744 Handle case where easy-menu-create-menu returns a symbol.
6745 Manually call the potential top-level filter in the function binding.
6746 (easy-menu-filter-return): New arg NAME.
6747 Convert to a keymap if MENU is an XEmacs menu.
6748 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item.
6749 (easy-menu-converted-items-table, easy-menu-convert-item):
6750 New var and fun to memoize easy-menu-convert-item-1.
6751 (easy-menu-do-add-item): Use it.
6752 (easy-menu-create-menu): Use easy-menu-convert-item.
6753 Wrap easy-menu-filter-return around any :filter specification.
6754 Don't convert the menu if a filter was specified.
6755 Tell easy-menu-make-symbol not to check for MENU being an expression.
6756 (easy-menu-make-symbol): New arg NOEXP.
6757
6758 2000-07-05 Gerd Moellmann <gerd@gnu.org>
6759
6760 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
6761 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
6762 (eval-defun): If called with prefix arg, instrument code for
6763 Edebug.
6764
6765 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
6766 similar to that of eval-defun.
6767
6768 2000-07-04 Dave Love <fx@gnu.org>
6769
6770 * hl-line.el (hl-line-overlay): Make it permanent-local.
6771
6772 * calendar/todo-mode.el: Replaced with a working version, based on
6773 1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
6774
6775 2000-07-03 Miles Bader <miles@lsi.nec.co.jp>
6776
6777 * paths.el (prune-directory-list): New function.
6778 (Info-default-directory-list): Rewritten to more methodically
6779 enumerate a big list of possible info directories (based on the
6780 list used by the standalone info reader).
6781
6782 * info.el (info-initialize): Use prune-directory-list to remove
6783 non-existent directories from Info-directory-list.
6784
6785 * paths.el (Info-default-directory-list): Try a list of possible
6786 info-directories instead of a single one. Add the possible
6787 info directory "/usr/share/info".
6788
6789 * woman.el (woman-man.conf-path): Explicitly include the debian
6790 man-db config file "/etc/manpath.config".
6791 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
6792 are present in `manpath.config'.
6793 (woman-manpath): Include "/usr/share/man".
6794
6795 2000-07-03 Gerd Moellmann <gerd@gnu.org>
6796
6797 * frame.el (blink-cursor-mode): Don't hide cursor initially.
6798
6799 * startup.el (command-line): Initialize blink-cursor based
6800 on window-system.
6801
6802 * frame.el (blink-cursor): Default to nil if not running under
6803 a window-system.
6804
6805 * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
6806 (face-x-resources): Remove duplicate entry for :font.
6807
6808 * textmodes/refer.el (refer-find-entry-internal): Use some-window
6809 instead of cycling through windows with next-window.
6810
6811 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
6812 of cycling through windows with next-window.
6813
6814 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
6815 of cycling through windows with next-window.
6816
6817 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
6818 (edebug-get-displayed-buffer-points): Use walk-windows/some-window
6819 instead of cycling through windows with next-window.
6820
6821 * calendar/appt.el (appt-select-lowest-window): Use walk-windows
6822 instead of cycling through windows with next-window.
6823
6824 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
6825 of cycling through windows with next-window.
6826
6827 * terminal.el (te-process-output): Use walk-windows instead of
6828 cycling through windows with next-window.
6829
6830 * server.el (server-switch-buffer): Use some-window instead of
6831 cycling through windows with next-window.
6832
6833 * window.el (some-window): New function.
6834 (walk-windows): Remove reference to walk-windows-start.
6835
6836 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
6837
6838 2000-07-03 Richard Stallman <rms@gnu.org>
6839
6840 * window.el (walk-windows): Guarantee termination by keeping a list
6841 of all the windows already handled.
6842
6843 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
6844
6845 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
6846 window-system.
6847
6848 * man.el (Man-notify-when-ready): Don't use window-system. If
6849 Man-notify-method is newframe, and the display is not
6850 multi-frame, select the frame created for the man page.
6851 (Man-init-defvars): Doc fix.
6852
6853 2000-06-28 Gerd Moellmann <gerd@gnu.org>
6854
6855 * faces.el (region): Change background color for light background.
6856
6857 * ediff-wind.el (ediff-setup-control-frame): Remove :box
6858 attribute from mode-line face of Ediff control frame.
6859
6860 * replace.el (query-replace-map): Bind `e' like `E'.
6861
6862 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
6863
6864 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
6865 Change name to "Select All".
6866
6867 * dos-fns.el (convert-standard-filename): Fix last change.
6868
6869 2000-06-27 Gerd Moellmann <gerd@gnu.org>
6870
6871 * help.el (describe-variable): Don't insert a second `'s' in front
6872 of the string `value is shown below'. Since the syntax-table is
6873 set to emacs-lisp-mode-syntax-table, forward-sexp skips over
6874 an existing `'s', so that this won't be deleted.
6875
6876 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
6877 * pcmpl-unix.el: New files.
6878
6879 2000-06-26 Stefan Monnier <monnier@cs.yale.edu>
6880
6881 * wid-edit.el (widget-member): Use the new plist-member.
6882
6883 2000-06-26 Gerd Moellmann <gerd@gnu.org>
6884
6885 * replace.el (perform-replace): Undo change of 2000-04-04.
6886 Instead, move backward 1 character at the end of the loop when
6887 necessary.
6888
6889 * faces.el (fringe): Change face for different backgrounds.
6890
6891 * eshell/esh-module.el (toplevel): Load defgroup's differently;
6892 patch from John.
6893
6894 * eshell/*.el: Change spelling of the Free Software Foundation.
6895
6896 * eshell/esh-toggle.el: Removed.
6897
6898 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
6899
6900 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
6901 interactively.
6902
6903 2000-06-26 Alex Schroeder <alex@gnu.org>
6904
6905 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
6906 `define-key'; instead of checking `(emacs-version)' check for
6907 `set-keymap-parent' and `set-keymap-name' directly. Add entries
6908 for `;' and `o' which might be electric.
6909
6910 (sql-electric-stuff): New user option.
6911 (sql-magic-go): New function which uses `sql-electric-stuff'.
6912 (sql-magic-semicolon): New function which uses
6913 `sql-electric-stuff'.
6914
6915 (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
6916 is not fboundp.
6917
6918 (sql-oracle-options): New variable.
6919 (sql-oracle): Use it.
6920
6921 (sql-imenu-generic-expression): Doc change.
6922 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
6923 is used.
6924
6925 (sql-informix): Added command line parameter "-" to force
6926 sql-informix-program to use stdout.
6927
6928 2000-06-25 Eli Zaretskii <eliz@is.elta.co.il>
6929
6930 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
6931 (cp864-decode-table): Doc fix.
6932 (cp720-decode-table): New variable, supports the Arabic OEM
6933 codepage used by Windows.
6934 (cp737-decode-table): New, Greek OEM codepage used by Windows.
6935
6936 2000-06-23 Dave Love <fx@gnu.org>
6937
6938 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
6939 (font-lock-fontify-anchored-keywords): Use
6940 line-beginning-position.
6941 (global-font-lock-mode): Use mapc.
6942
6943 2000-06-23 Stefan Monnier <monnier@cs.yale.edu>
6944
6945 * eshell/esh-module.el: Require CL when compiling.
6946
6947 2000-06-23 Gerd Moellmann <gerd@gnu.org>
6948
6949 * comint.el (comint-substitute-in-file-name): Call replace-match
6950 with second and third arg t.
6951
6952 * cus-edit.el (custom-button-face, custom-button-pressed-face):
6953 Specify foreground color.
6954
6955 * faces.el (tool-bar, mode-line, header-line): Specify foreground
6956 color.
6957
6958 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
6959
6960 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
6961 cddr instead of cdddr.
6962
6963 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
6964 instead of copy-list.
6965
6966 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
6967 of copy-list.
6968
6969 * subdirs.el: Add eshell subdirectory.
6970
6971 * eshell: New subdirectory containing the Eshell package.
6972
6973 * pcomplete.el: New file.
6974
6975 2000-06-23 Paul Eggert <eggert@twinsun.com>
6976
6977 * mail/mailpost.el (post-mail-send-it): Make sure file has
6978 proper permissions from birth.
6979
6980 * files.el (basic-save-buffer-2): When temporarily setting
6981 file modes, set them to current modes plus 0200, not to 0777.
6982
6983 * emerge.el (emerge-make-temp-file): Make sure file has proper
6984 permissions from birth.
6985
6986 2000-06-22 Eli Zaretskii <eliz@is.elta.co.il>
6987
6988 * files.el (make-backup-file-name-1): On DOS/Windows, run the
6989 backup file name through convert-standard-filename.
6990
6991 * dos-fns.el (convert-standard-filename): Convert leading
6992 directories as well. When long file names are supported, convert
6993 characters that are invalid in Windows file names.
6994
6995 2000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6996
6997 * ps-print.el: Fix bug: if ^L is the very first buffer character,
6998 ps-print crashes. New feature: page selection for printing. Create
6999 raw-text-unix coding system for XEmacs. Doc fix.
7000 (ps-print-version): New version number (5.2.3).
7001 (ps-plot-region): Bug fix.
7002 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
7003 (ps-header-sheet, ps-generate, ps-end-job): Code fix.
7004 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
7005 funs.
7006 (ps-selected-pages, ps-last-selected-pages, ps-first-page)
7007 (ps-last-page): New vars.
7008
7009 2000-06-21 Gerd Moellmann <gerd@gnu.org>
7010
7011 * progmodes/sh-script.el (sh-while-getopts): Fix handling of
7012 empty option string.
7013
7014 2000-06-21 Eli Zaretskii <eliz@is.elta.co.il>
7015
7016 * man.el (man): Doc fix.
7017
7018 2000-06-21 Kenichi Handa <handa@etl.go.jp>
7019
7020 * international/mule-cmds.el (set-language-info-alist): Docstring
7021 fixed.
7022
7023 2000-06-20 Gerd Moellmann <gerd@gnu.org>
7024
7025 * version.el (emacs-version): Use ISO date format.
7026
7027 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
7028 instead of `M-backspace'.
7029
7030 * simple.el (turn-off-auto-fill): New function.
7031
7032 2000-06-20 Stefan Monnier <monnier@cs.yale.edu>
7033
7034 * jit-lock.el (with-buffer-prepared-for-jit-lock):
7035 Renamed from with-buffer-prepared-for-font-lock and use
7036 inhibit-modification-hooks rather than setting *-change-functions.
7037 Update all functions to use the new name.
7038 (jit-lock-first-unfontify-pos): New semantics (and doc).
7039 (jit-lock-mode): Make non-interactive.
7040 Don't automatically turn on font-lock.
7041 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
7042 Always use jit-lock-after-change.
7043 Remove and restore font-lock-after-change-function.
7044 (turn-on-jit-lock, jit-lock-after-fontify-buffer)
7045 (jit-lock-after-unfontify-buffer): Remove.
7046 (jit-lock-stealth-fontify):
7047 Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
7048 (jit-lock-after-change): Set the `fontified' text-prop to nil.
7049
7050 2000-06-20 Sam Steingold <sds@gnu.org>
7051
7052 * emacs-lisp/cl-indent.el (toplevel): Indent
7053 `print-unreadable-object' properly. Untabify.
7054
7055 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
7056
7057 * textmodes/reftex.el (reftex-find-citation-regexp-format):
7058 Support for bibentry.
7059 (reftex-compile-variables): Fixed problem with end of section-re.
7060
7061 * texmodes/reftex-dcr.el (reftex-view-crossref,
7062 reftex-view-crossref-from-bibtex):
7063 Deal with changed `reftex-find-citation-regexp-format'.
7064 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
7065 Replaced `remprop' with `put'.
7066 (reftex-view-crossref, reftex-view-crossref-when-idle):
7067 Support for bibentry.
7068
7069 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
7070 New entry for bibentry package.
7071
7072 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
7073 Regexp also matches "\nobibliography".
7074
7075 * textmodes/reftex-global.el (reftex-renumber-simple-labels):
7076 Call `reftex-ensure-write-access' before doing anything.
7077 (reftex-ensure-write-access): New function.
7078
7079 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
7080
7081 * progmodes/idlwave.el: File re-installed (update to version 4.2)
7082
7083 * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
7084
7085 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
7086
7087 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
7088
7089
7090 2000-06-20 Dave Love <fx@gnu.org>
7091
7092 * faces.el (frame-background-mode): Use set-default, not set, in
7093 setter.
7094 (frame-update-faces, frame-update-face-colors): Define with
7095 defalias.
7096
7097 * enriched.el (enriched-decode-foreground)
7098 (enriched-decode-background): Don't use internal-find-face.
7099
7100 * apropos.el: Doc fixes.
7101
7102 * cus-edit.el (customize-changed-options): Check arg.
7103 (customize-version-lessp): Don't require decimal point.
7104
7105 * custom.el (defcustom, defgroup): Doc fix.
7106
7107 * newcomment.el (comment) <defgroup>: Add :version.
7108 (comment-multi-line): Doc fix.
7109
7110 * emulation/mlsupport.el (define-hooked-local-abbrev,
7111 define-hooked-global-abbrev): Fix, using define-abbrev.
7112
7113 2000-06-19 Gerd Moellmann <gerd@gnu.org>
7114
7115 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
7116 the whole buffer.
7117
7118 2000-06-19 Dave Love <fx@gnu.org>
7119
7120 * menu-bar.el (menu-bar-options-save): New function.
7121 (menu-bar-options-menu): Use it.
7122 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
7123 Simplify.
7124
7125 2000-06-19 Andreas Schwab <schwab@suse.de>
7126
7127 * progmodes/etags.el (tags-query-replace): Put new parameters
7128 START and END at the end, for backward compatibility.
7129
7130 2000-06-19 Kenichi Handa <handa@etl.go.jp>
7131
7132 * international/codepage.el:
7133 (cp-coding-system-for-codepage-1): Delete special codes for
7134 generating xxx-dos coding system because now a CCL based coding
7135 system can handle EOL conversion by default.
7136
7137 * international/mule.el (make-coding-system): Generate subsidiary
7138 coding systems for EOL handling variants even for a CCL based
7139 coding system.
7140
7141 2000-06-19 Kenichi Handa <handa@etl.go.jp>
7142
7143 * international/isearch-x.el (isearch-minibuffer-input-method)
7144 (isearch-minibuffer-input-method-function): These variables
7145 deleted.
7146 (isearch-with-input-method): Don't use the above variables.
7147 (isearch-process-search-multibyte-characters): Likewise. Call
7148 read-string with the arg INHERIT-INPUT-METHOD t.
7149
7150 2000-06-17 Stefan Monnier <monnier@cs.yale.edu>
7151
7152 * font-lock.el (font-lock-after-fontify-buffer)
7153 (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
7154
7155 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
7156 Use consistent make-local-variable style for font-lock-fontified.
7157 (jit-lock-fontify-buffer):
7158 Don't bother checking for font-lock-mode and jit-lock-mode.
7159
7160 * time.el: Remove trailing ^M that prevent CVS-merging.
7161
7162 2000-06-16 Gerd Moellmann <gerd@gnu.org>
7163
7164 * Makefile.in (distclean): New target.
7165
7166 2000-06-16 Stefan Monnier <monnier@cs.yale.edu>
7167
7168 * Makefile.in (srcdir): Define for update-subdirs.
7169
7170 2000-06-16 Gerd Moellmann <gerd@gnu.org>
7171
7172 * find-lisp.el: New file.
7173
7174 2000-06-16 Andrew Innes <andrewi@gnu.org>
7175
7176 * time.el (display-time-mail-function): New variable, to allow
7177 external packages to indicate when new mail is available.
7178 (display-time-update): Use it.
7179
7180 2000-06-16 Kenichi Handa <handa@etl.go.jp>
7181
7182 * international/mule.el (mule-version): Change version name to
7183 SAKAKI. AOI has already been used by Meadow.
7184
7185 * international/quail.el (quail-show-guidance-buf): To find the
7186 bottom window (but minibuffer), pay attention to the height of
7187 minibuffer.
7188
7189 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
7190
7191 * arc-mode.el (archive-mode-map): Use the new menu-item format for
7192 menu-bar menus. Add help strings. Don't remove the Edit menu
7193 from the menu bar, as the menu bar has enough space now.
7194
7195 * Makefile.in (SHELL): Make sure /bin/sh is used.
7196
7197 * woman.el (woman-man-buffer): Fix bold and underlined CJK
7198 characters, which use series of two ^H characters instead of one.
7199
7200 2000-06-15 Gerd Moellmann <gerd@gnu.org>
7201
7202 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
7203 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
7204 functions.
7205 (Info-find-node-2): Try a case-sensitive search first, then
7206 do a case-insensitive search.
7207
7208 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
7209 tutorials.
7210
7211 * complete.el (PC-env-vars-alist): New variable.
7212 (PC-complete-as-file-name): New function.
7213 (partial-completion-mode): Initialize PC-env-vars-alist from
7214 process-environment.
7215 (PC-do-completion): Handle completion of env vars.
7216
7217 * info.el (Info-set-mode-line): Show file name in mode line,
7218 use `*Info*' instead of `Info:'.
7219
7220 * startup.el (command-line-1): Change copyright messages to year
7221 2000.
7222
7223 2000-06-15 Dave Love <fx@gnu.org>
7224
7225 * net/goto-addr.el (goto-address-fontify): Use keymap property,
7226 not local-map.
7227
7228 2000-06-15 Kenichi Handa <handa@etl.go.jp>
7229
7230 * international/mule.el (set-buffer-file-coding-system): Almost
7231 rewritten to handle `undecided' as no-op.
7232
7233 2000-06-14 Gerd Moellmann <gerd@gnu.org>
7234
7235 * Makefile.in: New file.
7236
7237 * Makefile: Removed.
7238
7239 * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
7240 (goto-address-highlight-keymap): Bind C-c RET.
7241
7242 2000-06-14 Kenichi Handa <handa@etl.go.jp>
7243
7244 * mail/sendmail.el (sendmail-send-it): The temporary buffer
7245 inherits buffer-file-coding-system of the current buffer.
7246
7247 * tar-mode.el (tar-extract): For goto-char, use (point-min), not
7248 0. Give correct argument to set-auto-coding-function.
7249 (tar-expunge): For goto-char, use (point-min), not 0.
7250 (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
7251 (tar-subfile-save-buffer): Likewize.
7252
7253 * international/mule.el
7254 (after-insert-file-set-buffer-file-coding-system): Call
7255 set-buffer-file-coding-system with the arg FORCE t.
7256
7257 2000-06-13 Gerd Moellmann <gerd@gnu.org>
7258
7259 * mail/sendmail.el (mail-specify-envelope-from): Initialize to
7260 nil. Contemporary sendmails issue an X-Authentication-Warning if
7261 the sender is set with `-f'.
7262
7263 2000-06-13 Dave Love <fx@gnu.org>
7264
7265 * help.el (describe-function-1): Kluge around cases of functions
7266 fset to subrs whose doc doesn't match their symbol-name.
7267
7268 * image.el (insert-image): Default STRING to a space.
7269
7270 * info.el Doc fixes.
7271 (Info-build-node-completions): Match Ref tags.
7272
7273 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
7274
7275 * frame.el (display-multi-frame-p, display-multi-font-p): New
7276 defaliases for display-graphic-p.
7277
7278 * hl-line.el: Fixed a typo in commentary.
7279
7280 2000-06-13 Kenichi Handa <handa@etl.go.jp>
7281
7282 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
7283 fixed.
7284
7285 2000-06-12 Dave Love <fx@gnu.org>
7286
7287 * image.el (insert-image): Save a little consing.
7288
7289 2000-06-12 Kenichi Handa <handa@etl.go.jp>
7290
7291 * language/tibet-util.el: Convert all tibetan-1-column characters
7292 to the corresponding tibetan characters.
7293 (tibetan-add-components): Delete code for the special treatment of
7294 'a chung.
7295
7296 * language/tibetan.el (tibetan-composable-pattern): Fix previous
7297 change.
7298 (tibetan-vowel-transcription-alist): More rules added.
7299 (tibetan-composite-vowel-alist): New variable.
7300 (tibetan-precomposition-rule-alist): More rules added.
7301
7302 2000-06-12 Stefan Monnier <monnier@cs.yale.edu>
7303
7304 * startup.el (command-line): Only call menu-bar-mode if interactive.
7305
7306 * thingatpt.el (toplevel symbol-properties):
7307 * textmodes/makeinfo.el (makeinfo-compile):
7308 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
7309 * progmodes/hideif.el (hif-compress-define-list)
7310 (hide-ifdef-use-define-alist):
7311 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
7312 (ange-ftp-vms-add-file-entry):
7313 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
7314 * man.el (Man-build-man-command):
7315 * mail/rnewspost.el (news-reply-header-hook):
7316 * info.el (Info-insert-dir):
7317 * emulation/mlconvert.el (backward-word, forward-word, setq):
7318 * emacs-lisp/gulp.el (gulp-send-requests):
7319 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
7320 (byte-optimize-inline-handler, byte-optimize-form-code-walker)
7321 (byte-optimize-apply, end of file):
7322 * emacs-lisp/advice.el (ad-advice-class-completion-table)
7323 (ad-make-freeze-definition):
7324 * startup.el (command-line, command-line-1): Don't quote lambdas.
7325
7326 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
7327 (cvs-cleanup-removed): New function.
7328 (cvs-cleanup-functions): New var.
7329 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
7330 some flexibility in specifying additional entries to auto-cleanup.
7331 (cvs-quickdir): New function.
7332 (cvs-mode-insert): Use cvs-fileinfo-from-entries.
7333 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
7334 (cvs-mode-find-file): Check that we are on a filename or dirname
7335 when invoked through a mouse-click.
7336 (cvs-full-path): Remove.
7337 (cvs-dired-action): Re-introduced.
7338 (cvs-dired-noselect): Use it.
7339 (vc-post-command-functions): use this new hook if available.
7340
7341 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
7342 (cvs-status-map): Don't inherit from cvs-mode-map anymore.
7343 (cvs-filename-map, cvs-dirname-map): Remove.
7344 (cvs-default-action): Remove.
7345 (cvs-add-face): Use `keymap' rather than `local-map' property, and only
7346 if the arg is really a keymap.
7347 (cvs-fileinfo-pp): Don't use any special map for file and dir names.
7348 Don't hardcode the mapping from state (aka type) to face, but check
7349 the var cvs-fi-<type>-face instead.
7350 (cvs-fileinfo-from-entries): New function.
7351
7352 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
7353 Docstring fix.
7354 (cvs-find-file-and-jump): Change default to be safer.
7355 (cvs-mode-diff-map): Define it as a function as well.
7356 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
7357 Bind mouse-2 in this global map rather than with text-properties.
7358
7359 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
7360 file to resolve the ambiguity between C(conflict) and C(need-merge).
7361
7362 2000-06-12 Kenichi Handa <handa@etl.go.jp>
7363
7364 * international/mule.el (set-buffer-file-coding-system): If
7365 CODING-SYSTEM is nil, set buffer-file-coding-system to nil
7366 unconditionally.
7367
7368 2000-06-12 Dave Love <fx@gnu.org>
7369
7370 * wid-edit.el (widget-specify-button): Really suppress the face if
7371 required.
7372
7373 2000-06-11 Gerd Moellmann <gerd@gnu.org>
7374
7375 * term/x-win.el (x-colors): Add colors from recent rgb.txt.
7376
7377 2000-06-11 Stefan Monnier <monnier@cs.yale.edu>
7378
7379 * imenu.el (imenu-generic-expression): Docstring fix.
7380
7381 * composite.el (composition-function-table): Move the `put'
7382 below the autoload cookie so we can load the file before loaddefs.
7383
7384 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
7385
7386 * emacs-lisp/autoload.el (make-autoload): Use `cond'.
7387 Handle easy-mmode-define-global-mode.
7388 For complex macros like define-minor-mode that can generate
7389 several autoload entries, try to autoload entries in the
7390 macroexpanded code.
7391
7392 * emacs-lisp/easy-mmode.el (define-minor-mode):
7393 If KEYMAP is a symbol, just use it.
7394 Use byte-compile-current-file and load-file-name to infer the
7395 proper :require to pass to defcustom.
7396 Wrap the hook var into `progn' so as not to autoload it.
7397 Add a :autoload-end cookie.
7398 Be more careful about the evaluation of KEYMAP.
7399 (easy-mmode-define-global-mode): Add a :autoload-end cookie.
7400 (define-derived-mode): Move define-abbrev-table outside of defvar.
7401
7402 2000-06-10 Stefan Monnier <monnier@cs.yale.edu>
7403
7404 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
7405 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
7406 (backup-compiled-files): Ignore errors during `tar'.
7407 (bootstrap): Make autoloads before elc files.
7408
7409 2000-06-10 Kenichi Handa <handa@etl.go.jp>
7410
7411 * international/mule.el (set-buffer-file-coding-system): If one of
7412 undecided-XXX is specified, change only EOL conversion.
7413
7414 * international/mule-conf.el (unix): New alias for the coding
7415 system undecided-unix.
7416
7417 2000-06-09 Dave Love <fx@gnu.org>
7418
7419 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
7420
7421 * progmodes/executable.el: Byte compile dynamic.
7422 (executable-insert): Change custom type.
7423 (executable-find): Add autoload cookie.
7424 (executable-make-buffer-file-executable-if-script-p): New
7425 function. After Noah Friedman.
7426
7427 * files.el (after-save-hook): Customize, with
7428 executable-make-buffer-file-executable-if-script-p as an option.
7429
7430 2000-06-09 Kenichi Handa <handa@etl.go.jp>
7431
7432 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
7433 "tib24p-mule.bdf" for Tibetan.
7434
7435 * composite.el (decompose-composite-char): Declare it as obsolete.
7436
7437 * man.el (Man-fontify-manpage): Pay attention to underline and
7438 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
7439
7440 2000-06-08 Gerd Moellmann <gerd@gnu.org>
7441
7442 * thingatpt.el (forward-thing): Use functionp instead of fboundp.
7443 Set maintainer to FSF since author isn't reachable.
7444
7445 2000-06-08 Dave Love <fx@gnu.org>
7446
7447 * international/mule-cmds.el (select-safe-coding-system): If
7448 DEFAULT-CODING-SYSTEM is not specified, also check the most
7449 preferred coding-system if buffer-file-coding-system is
7450 `undecided'. From Handa.
7451
7452 2000-06-08 Kenichi Handa <handa@etl.go.jp>
7453
7454 * international/mule.el
7455 (after-insert-file-set-buffer-file-coding-system): If the buffer
7456 size is greater than INSERTED, judget that we are not visiting.
7457
7458 2000-06-07 Rajesh Vaidheeswarran <rv@gnu.org>
7459
7460 * whitespace.el (defgroup whitespace): Comment out `:version'.
7461 XEmacs 20.4 has problems defining the group with this present.
7462 We'll have this commented out till get resolve the problem.
7463
7464 2000-06-07 Gerd Moellmann <gerd@gnu.org>
7465
7466 * align.el: Update from author.
7467
7468 2000-06-07 Jari Aalto <jari.aalto@poboxes.com>
7469
7470 * apropos.el (apropos-mode-hook): New user variable.
7471 (apropos-mode): Run apropos-mode-hook.
7472
7473 2000-06-07 David Ponce <david@dponce.com>
7474
7475 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
7476 commands. Require `wid-edit' at run-time.
7477
7478 2000-06-07 David Ponce <david@dponce.com>
7479
7480 * recentf.el: Added some "Commentary".
7481 (recentf-open-more-files, recentf-edit-list): Minor changes to
7482 move the point at the top of the file list. This behaviour is
7483 consistent with the menu one when the list contains a lot of
7484 files.
7485 (recentf-cleanup): Now displays the number of items removed from
7486 the list.
7487 (recentf-relative-filter) New menu filter to show filenames
7488 relative to `default-directory'.
7489
7490 2000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7491
7492 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size
7493 with/without giving an error if PostScript printer doesn't have this
7494 kind of page size. Zebra Stripe continues or restarts on next page.
7495 Manual/automatic paper feeding. Switch or not the header.
7496 (ps-print-version): New version number (5.2.2).
7497 (ps-windows-system): Include emx as a Windows system.
7498 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
7499 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
7500 (ps-background-text): Code fix.
7501 (ps-error-handler-message, ps-user-defined-prologue)
7502 (ps-print-prologue-header, ps-printer-name)
7503 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
7504 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
7505 (ps-use-face-background): Customization fix.
7506 (ps-n-up-database): Data fix.
7507 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
7508 (ps-switch-header): New vars.
7509 (ps-xemacs-color-name, ps-face-foreground-name)
7510 (ps-face-background-name, ps-boolean-constant): New funs.
7511
7512 2000-06-07 Dave Love <fx@gnu.org>
7513
7514 * allout.el: New version from Manheimer.
7515
7516 2000-06-07 Kenichi Handa <handa@etl.go.jp>
7517
7518 * textmodes/fill.el (fill-find-break-point): Check the validity of
7519 charset.
7520
7521 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
7522
7523 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
7524 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
7525 Call display-color-p and display-mouse-p instead of looking at
7526 window-system.
7527
7528 2000-06-06 Dave Love <fx@gnu.org>
7529
7530 * image.el (find-image): Doc fix. Return nil if image not found.
7531 (put-image, insert-image): Make STRING arg optional.
7532
7533 2000-06-06 Kenichi Handa <handa@etl.go.jp>
7534
7535 * language/vietnamese.el: Remove eval-when-compile.
7536 (viet-viscii-nonascii-translation-table): Define it as a
7537 translation table made from viet-viscii-decode-table.
7538 (viet-viscii-encode-table): Define it as a translation table made
7539 from the reverse map of above.
7540 (viet-vscii-nonascii-translation-table): Define it as a
7541 translation table made from viet-vscii-decode-table.
7542 (viet-vscii-encode-table): Define it as a translation table made
7543 from the reverse map of above.
7544 (ccl-decode-viscii): Use translate-character.
7545 (ccl-encode-viscii, ccl-encode-viscii-font)
7546 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
7547 Likewize.
7548
7549 * language/cyrillic.el: Remove eval-when-compile.
7550 (cyrillic-koi8-r-nonascii-translation-table): Define it as a
7551 translation table made from cyrillic-koi8-r-decode-table.
7552 (cyrillic-koi8-r-encode-table): Define it as a translation table
7553 made from the reverse map of above.
7554 (ccl-decode-koi8): Use translate-character.
7555 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
7556 (cyrillic-alternativnyj-nonascii-translation-table): Define it as
7557 a translation table made from cyrillic-alternativnyj-decode-table.
7558 (cyrillic-alternativnyj-encode-table): Define it as a translation
7559 table made from the reverse map of above.
7560 (ccl-decode-alternativnyj): Use translate-character.
7561 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
7562 Likewize
7563
7564 * international/mule-diag.el (non-iso-charset-alist): Specify
7565 translation table symbol instead of translation table itself.
7566 (list-block-of-chars): CHARSET may be a translation table symbol.
7567
7568 * international/mule.el (make-coding-system): If CODING-SYSTEM
7569 already exists, override it.
7570
7571 * international/fontset.el: Use family `proportional' for Tibetan
7572 fonts.
7573
7574 * international/ccl.el (ccl-compile-translate-character): Don't
7575 check if Rrr has property translation-table.
7576 (ccl-compile-map-multiple): Modified to avoid compiler warning.
7577
7578 2000-06-05 Gerd Moellmann <gerd@gnu.org>
7579
7580 * info.el: Bind case-fold-search to t when searching in case
7581 a user sets it to nil in a hook.
7582
7583 2000-06-05 Stefan Monnier <monnier@cs.yale.edu>
7584
7585 * autoarg.el (autoarg-mode, autoarg-kp-mode):
7586 * hl-line.el (hl-line-mode): Use the new :global key argument.
7587
7588 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
7589 (tar-clip-time-string): Prepend a space.
7590 (tar-grind-file-mode): Construct a string rather than modifying one.
7591 (tar-header-block-summarize): Fix docstring.
7592 Use `format' rather than an error-prone set of copy-loops.
7593
7594 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
7595 (diff-goto-source, diff-unified->context, diff-context->unified)
7596 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
7597 understand the format output by the `-p' argument to diff.
7598
7599 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
7600 (sh-re-done): Use defconst.
7601 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
7602 (sh-help-string-for-variable, sh-guess-basic-offset):
7603 Don't quote lambdas.
7604 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
7605 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
7606
7607 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
7608 (mh-letter-mode): Derive from text-mode.
7609 This implicitly means that it now calls kill-all-local-variables.
7610 Also remove the Emacs-18 compatibility code.
7611
7612 * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
7613 Make use of symbol-property doc-string-elt.
7614 Use memq rather than a sequence of eq.
7615 (doc-string-elt): Fix the wrong or missing previously unused values.
7616 (autoload-print-form): New function extracted from
7617 generate-file-autoloads to allow recursion when handling progn
7618 so that defvar's and defun's docstrings are properly printed.
7619 (generate-file-autoloads): Use it.
7620
7621 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
7622 Use find-file-hooks in the minor-mode function.
7623 Be careful not to loop indefinitely in the post-command-hook function.
7624
7625 2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
7626
7627 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
7628 tty's.
7629 * ediff-diff.el (ediff-exec-process): Use --binary for fine
7630 differences whenever appropriate.
7631 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
7632 * viper.el (find-file, find-file-other-window): Get viper to do
7633 wildcards.
7634
7635 2000-06-04 Stefan Monnier <monnier@cs.yale.edu>
7636
7637 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
7638 (jit-lock-fontify-buffer): New function for JIT refontification.
7639 (jit-lock-mode): Fix docstring.
7640 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
7641 Remove jit-lock-after-change from the _local_ hook.
7642 (jit-lock-function-1): Fix docstring.
7643
7644 * info.el (Info-on-current-buffer): Initialize info.
7645
7646 * newcomment.el (comment-indent): Ignore comment-indent-hook.
7647
7648 * progmodes/tcl.el (tcl-indent-for-comment):
7649 Ignore comment-indent-hook.
7650
7651 * emacs-lisp/easy-mmode.el: Require CL during compilation.
7652 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
7653 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
7654 and improve to use the lighter to guess the capitalization.
7655 (define-minor-mode): Inline code from easy-mmode-define-toggle.
7656 Add keyword arguments to specify global-ness or the custom group.
7657 Add local-map and help-echo properties to the lighter.
7658 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
7659 (easy-mmode-define-global-mode): New macro.
7660
7661 2000-06-02 Dave Love <fx@gnu.org>
7662
7663 * wid-edit.el: byte-compile-dynamic since we typically don't use
7664 all the widgets. Don't require cl or widget. Remove
7665 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
7666 (widget-read-event): Removed. Callers changed to use read-event.
7667 (widget-button-release-event-p): Renamed from
7668 button-release-event-p.
7669 (widget-field-add-space, widget-field-use-before-change):
7670 Uncustomize.
7671 (widget-specify-field): Use keymap property, not local-map.
7672 (widget-specify-button): Obey :suppress-face.
7673 (widget-specify-insert): Use modern backquote syntax.
7674 (widget-image-directory): Renamed from widget-glyph-directory.
7675 (widget-image-enable): Renamed from widget-glyph-enable.
7676 (widget-image-find): Replaces widget-glyph-find.
7677 (widget-button-pressed-face): Move defvar.
7678 (widget-image-insert): Replaces widget-glyph-insert.
7679 (widget-convert): Use keywordp.
7680 (widget-leave-text, widget-children-value-delete): Use mapc.
7681 (widget-keymap): Remove XEmacs stuff.
7682 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
7683 (widget-button-click): Don't set point at the click, but re-centre
7684 if we scroll out of window. Rewritten for images v. glyphs &c.
7685 (widget-tabable-at): Use POS arg, not point.
7686 (widget-beginning-of-line, widget-end-of-line)
7687 (widget-item-value-create, widget-sublist, widget-princ-to-string)
7688 (widget-sexp-prompt-value, widget-echo-help): Simplify.
7689 (widget-default-create): Use widget-image-insert; some rewriting.
7690 (widget-visibility-value-create)
7691 (widget-push-button-value-create, widget-toggle-value-create): Use
7692 widget-image-insert.
7693 (checkbox): Create on and off images dynamically.
7694 (documentation-link): Change :help-echo.
7695 (widget-documentation-link-echo-help): Remove.
7696
7697 2000-06-02 Stefan Monnier <monnier@cs.yale.edu>
7698
7699 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
7700
7701 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
7702 (easy-mmode-define-toggle, define-minor-mode): Use it.
7703 (easy-mmode-define-keymap): Docstring fix.
7704 (define-derived-mode): Default PARENT to fundamental-mode.
7705 Add the derived-mode-parent symbol-property.
7706 (easy-mmode-derived-mode-p): New function.
7707
7708 2000-06-02 Dave Love <fx@gnu.org>
7709
7710 * files.el (convert-standard-filename): Doc fix.
7711 (normal-backup-enable-predicate): New function.
7712 (backup-enable-predicate): Use it to replace the lambda form.
7713
7714 * calendar/todo-mode.el: [This needs more work on the outline
7715 stuff.] Doc fixes.
7716 (todo) <defgroup>: Add :version.
7717 (todo-add-category): Don't use pushnew.
7718 (todo-cmd-raise): Fix typo.
7719 (todo-top-priorities): Change temp buffer name.
7720 (todo-category-alist): Avoid redundant lambda.
7721 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
7722 Use outline-next-heading.
7723
7724 * autoarg.el: Rewritten to use define-minor-mode.
7725 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
7726 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
7727
7728 2000-06-02 Kenichi Handa <handa@etl.go.jp>
7729
7730 * isearch.el (isearch-other-meta-char): Fix previous change.
7731
7732 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
7733
7734 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
7735 (log-edit-done): Only add the comment to the ring if it's different
7736 from the last comment entered.
7737
7738 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
7739
7740 2000-06-01 Dave Love <fx@gnu.org>
7741
7742 * hl-line.el: Rewritten using define-minor-mode.
7743
7744 * help.el (describe-function-1): Distinguish special form from
7745 builtin function. Sanity-check presence of arglist for builtins.
7746
7747 2000-06-01 Kenichi Handa <handa@etl.go.jp>
7748
7749 * international/characters.el: Fix syntax/category setting of
7750 Tibetan characters.
7751
7752 * language/tibet-util.el (tibetan-add-components): Fixes for new
7753 encoding of Tibetan characters.
7754 (tibetan-decompose-precomposition-alist): New variable.
7755 (tibetan-decompose-region): Convert precomposed characters to
7756 non-precomposed characters.
7757 (tibetan-decompose-string): Likewise.
7758 (tibetan-composition-function): Fix args to
7759 thibetan-compose-string.
7760
7761 * language/tibetan.el (tibetan-composable-pattern): More
7762 characters included.
7763 (tibetan-consonant-transcription-alist): Rule for "R" added.
7764 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
7765 "+R" added.
7766 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
7767
7768 * language/lao-util.el (lao-composition-function): Fix args to
7769 compose-string.
7770
7771 * language/thai-util.el (thai-composition-function): Fix args to
7772 compose-string.
7773
7774 * isearch.el (isearch-update): Set disable-point-adjustment to t
7775 to prevent the point moving to the end of a composition when a
7776 part of a composition is searched.
7777 (isearch-other-meta-char): If the key invoking this command can be
7778 mapped by function-key-map to a printing char, call
7779 isearch-process-search-char directly.
7780
7781 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
7782
7783 * emacs-lisp/bytecomp.el:
7784 * frame.el:
7785 * international/mule-cmds.el:
7786 * international/mule-util.el:
7787 * international/mule.el:
7788 * mouse.el:
7789 * subr.el:
7790 * faces.el: Update calls to make-obsolete with a WHEN argument.
7791
7792 * byte-run.el (make-obsolete, make-obsolete-variable):
7793 Add an optional WHEN argument and change the format of the
7794 symbol-property information.
7795 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
7796 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
7797 new obsolete-symbol-property format and print WHEN if it is provided.
7798
7799 2000-05-31 Dave Love <fx@gnu.org>
7800
7801 * loadhist.el (loadhist-hook-functions): Remove
7802 before-change-function, after-change-function.
7803 (unload-feature): Deal with symbols which are both bound and
7804 fbound.
7805
7806 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
7807 before-change-function, after-change-function.
7808
7809 * simple.el (newline): Don't bind before-change-function,
7810 after-change-function.
7811
7812 2000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
7813
7814 * whitespace.el (whitespace-rescan-timer-time): Update interval
7815 set to 600 seconds (10 minutes) instead of 60 seconds since
7816 a large number of whitespace buffers causes emacs to `freeze'
7817 for a considerable amount of time.
7818
7819 * whitespace.el: Updated email address
7820
7821 2000-05-31 Dave Love <fx@gnu.org>
7822
7823 * add-log.el (change-log-font-lock-keywords) <function>: Add
7824 pattern for function of change.
7825 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
7826 acknowledgements patterns.
7827
7828 2000-05-31 Kenichi Handa <handa@etl.go.jp>
7829
7830 * isearch.el (isearch-printing-char): If keyboard coding system is
7831 being used, call isearch-process-search-multibyte-characters.
7832
7833 * international/isearch-x.el: Mostly rewritten.
7834
7835 * international/quail.el (quail-start-conversion): Don't include
7836 unhandled events in the returned events, but set them in
7837 unread-command-events. Exit if all inputs are deleted.
7838
7839 2000-05-30 Jason Rumney <jasonr@gnu.org>
7840
7841 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
7842
7843 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
7844 Reenable code to create initial fontsets.
7845 Use set-fontset-font in place of put-charset-property.
7846
7847 2000-05-30 Gerd Moellmann <gerd@gnu.org>
7848
7849 * progmodes/perl-mode.el (perl-indent-line): When looking for a
7850 label, ensure that the first colon isn't followed by another.
7851
7852 * paths.el (Info-default-directory-list): Doc fix.
7853
7854 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
7855 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
7856 send a query containing USER only, not USER@HOST.
7857
7858 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
7859 and rmail-msgend to compute the restriction at the end, instead of
7860 computing it.
7861
7862 2000-05-29 Gerd Moellmann <gerd@gnu.org>
7863
7864 * dabbrev.el (dabbrev-expand): Don't display messages in the
7865 echo area if the minibuffer window is active.
7866
7867 * jit-lock.el (jit-lock-mode): Add after change function to
7868 local hook.
7869
7870 2000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
7871
7872 * antlr-mode.el: New commands: hide/unhide actions,
7873 upcase/downcase literals.
7874 (antlr-tiny-action-length): New user option.
7875 (antlr-hide-actions): New command. Suggested by
7876 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
7877 (antlr-mode-map): New binding [C-c C-v].
7878 (antlr-mode-menu): New entries.
7879 (antlr-downcase-literals): New command.
7880 (antlr-upcase-literals): Ditto.
7881
7882 * antlr-mode.el: Minor changes: indendation, mode-name.
7883 (antlr-indent-line): Indent cpp directive at column 0.
7884 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
7885
7886 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
7887 (antlr-font-lock-additional-keywords): Workaround for intentional
7888 bug in XEmacs version of font-lock.
7889 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
7890 be used by a smarter version of `buffers-menu-grouping-function'.
7891
7892 2000-05-29 Gerd Moellmann <gerd@gnu.org>
7893
7894 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
7895 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
7896
7897 2000-05-29 Kenichi Handa <handa@etl.go.jp>
7898
7899 * international/encoded-kb.el
7900 (encoded-kbd-iso2022-designation-map): Pay attention to that
7901 charset-iso-final-char return -1 for eight-bit-control and
7902 eight-bit-graphic.
7903
7904 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
7905
7906 * speedbar.el (speedbar-use-images, speedbar-update-flag)
7907 (speedbar-easymenu-definition-base): Use display-graphic-p where
7908 available, instead of window-system.
7909
7910 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
7911
7912 * international/codepage.el (cp-coding-system-for-codepage-1): Add
7913 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
7914 coding systems.
7915
7916 2000-05-26 Dave Love <fx@gnu.org>
7917
7918 * disp-table.el (standard-display-underline): Don't use
7919 internal-find-face.
7920
7921 * mail/reporter.el: Maintainer change. Doc fixes.
7922 (reporter-version): Deleted.
7923
7924 * emacs-lisp/elp.el: Maintainer change.
7925 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
7926
7927 2000-05-26 Stefan Monnier <monnier@cs.yale.edu>
7928
7929 * add-log.el (add-change-log-entry): Merge the current entry with the
7930 previous one if the previous one is empty.
7931
7932 2000-05-26 Dave Love <fx@gnu.org>
7933
7934 * loadhist.el (unload-feature): Fix interactive spec [from
7935 lijnzaad@ebi.ac.uk].
7936
7937 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
7938 subr-arity to check primitives.
7939 (byte-compile-flush-pending, byte-compile-file-form-progn)
7940 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
7941 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
7942 mapcar.
7943
7944 2000-05-26 Kenichi Handa <handa@etl.go.jp>
7945
7946 * international/fontset.el: Set family names of non-latin charsets
7947 in default fontset to "*".
7948
7949 * international/mule-diag.el (print-fontset): Combine family part
7950 and registry part of the fontname by "-*-" instead of "-".
7951
7952 * international/mule-cmds.el (encode-coding-char): Make strings
7953 multibyte before calling encode-coding-string.
7954
7955 2000-05-25 Stefan Monnier <monnier@cs.yale.edu>
7956
7957 * derived.el: Fix keywords.
7958 (define-derived-mode): Only define if needed.
7959
7960 * simple.el (fill-comment, comment-column, comment-start)
7961 (comment-start-skip, comment-end, comment-indent-function)
7962 (block-comment-start, block-comment-end, indent-for-comment)
7963 (set-comment-column, kill-comment, comment-padding, comment-region)
7964 (comment-multi-line, indent-new-comment-line): Remove.
7965
7966 * bindings.el (esc-map): Change ; to comment-dwim and use the new
7967 function names for comment operations.
7968
7969 * newcomment.el: Add abundant autoload cookies.
7970 (comment-style): Don't depend on runtime data at compile-time.
7971 (comment-indent-hook): Remove.
7972 (comment-indent): Check if comment-indent-hook is bound.
7973 (comment-region): Docstring fix.
7974
7975 2000-05-25 Dave Love <fx@gnu.org>
7976
7977 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
7978 byte-code-function-p.
7979
7980 * mail/rmailsum.el: Add provide.
7981
7982 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
7983
7984 * smerge-mode.el (smerge-diff-switches): Don't use list* in
7985 defcustom.
7986
7987 2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
7988
7989 * ediff-diff.el (ediff-exec-process): delete --binary option from
7990 non-buffer ediff jobs.
7991
7992 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
7993
7994 * hilit-chg.el (highlight-changes-mode): Ask about color or
7995 grayscale support, not about window-system.
7996
7997 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
7998 window-system.
7999 (ffap-highlight): Always default to t.
8000
8001 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
8002 display-popup-menus-p instead of looking at window-system.
8003
8004 * disp-table.el (standard-display-g1, standard-display-graphic):
8005 Only refuse to use string glyphs on X and MS-Windows.
8006
8007 * avoid.el: Remove window-system from commentary, suggest to use
8008 display-*-p instead.
8009
8010 * apropos.el (apropos-print): Use display-mouse-p instead of
8011 window-system.
8012
8013 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
8014
8015 * international/codepage.el (cp-decoding-vector-for-codepage):
8016 Fill up unsupported characters with their own codes. From Kenichi
8017 Handa.
8018
8019 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
8020
8021 * international/mule-diag.el (describe-char-after): Use
8022 display-graphic-p instead of window-system, so that this function
8023 works on MS-DOS.
8024
8025 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
8026
8027 * international/codepage.el (cp-make-coding-systems-for-codepage):
8028 Remove the eight-bit-graphic and eight-bit-control charsets from
8029 the list of charsets which we convert into `?'.
8030
8031 2000-05-25 Kenichi Handa <handa@etl.go.jp>
8032
8033 * international/mule-conf.el: Specify CHARSET-ID explicitely for
8034 private charsets.
8035 (mule-unicode-0100-24ff, japanese-jisx0213-1,
8036 japanese-jisx0213-2): New charsets.
8037
8038 * international/fontset.el: Setup default fontset for new charsets.
8039
8040 2000-05-24 Dave Love <fx@gnu.org>
8041
8042 * info.el (Info-find-node-2): Restructure [following "Vadim
8043 S. Solomin" <sovs@uic.nnov.ru>].
8044
8045 * icomplete.el: Fix header for Finder.
8046
8047 2000-05-24 Eric M. Ludlam <zappo@ultranet.com>
8048
8049 * rmailout.el (rmail-output-to-rmail-file): Added optional param
8050 STAY.
8051
8052 * rmail.el (rmail-automatic-folder-directives): New user variable.
8053 (rmail-show-message): Add call to `rmail-auto-file' during
8054 display.
8055 (rmail-auto-file): New function.
8056
8057 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
8058
8059 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
8060 account.
8061 (ediff-test-utility,ediff-diff-mandatory-option)
8062 (ediff-reset-diff-options): Utilities for proper initialization of
8063 ediff-diff-options and ediff-diff3-options on Windows.
8064
8065 * ediff-init.el (ediff-merge-filename-prefix): New customizable
8066 variable.
8067
8068 * ediff-mult.el (ediff-filegroup-action): Use
8069 ediff-merge-filename-prefix.
8070
8071 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
8072
8073 * viper-ex.el (ex-write): Set selective display to nil.
8074
8075 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
8076
8077 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
8078 aliases for hebrew-iso-8bit.
8079
8080 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
8081
8082 * woman.el: New version from Francis J. Wright
8083 <F.J.Wright@Maths.QMW.ac.uk>.
8084 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
8085 names in environment variables regardless of the path separator.
8086 (woman-topic-all-completions-1): Don't call file-name-directory-p
8087 on all files, since woman-file-regexp already filters out any
8088 directories.
8089
8090 2000-05-24 Kenichi Handa <handa@etl.go.jp>
8091
8092 * international/quail.el (quail-start-translation): Don't change
8093 modified-p of the current buffer.
8094 (quail-start-conversion): Likewise.
8095
8096 * international/kkc.el (kkc-region): Don't change modified-p of
8097 the current buffer.
8098
8099 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
8100 conform to RFC1468.
8101 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
8102
8103 2000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
8104
8105 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
8106 (speedbar-insert-button): Invisible text property fix.
8107 (speedbar-directory-plus): Renamed from speedbar-directory-+
8108 (speedbar-directory-minus): Renamed from speedbar-directory--
8109 (speedbar-page-plus): Renamed from speedbar-file-+
8110 (speedbar-page-minus): Renamed from speedbar-file--
8111 (speedbar-page): Renamed from speedbar-file-
8112 (speedbar-tag): Renamed from speedbar-tag-
8113 (speedbar-tag-plus): Renamed from speedbar-tag-+
8114 (speedbar-tag-minus): Renamed from speedbar-tag--
8115 (speedbar-expand-image-button-alist): Use above renames.
8116
8117 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
8118 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
8119 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
8120 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
8121 * sb-pg.xpm: Renamed from sb-file.xpm
8122 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
8123 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
8124
8125 2000-05-24 Kenichi Handa <handa@etl.go.jp>
8126
8127 * international/quail.el (quail-show-guidance-buf): Set
8128 current-input-method of the guidance buffer to the name of the
8129 curren input method.
8130
8131 2000-05-23 Stefan Monnier <monnier@cs.yale.edu>
8132
8133 * progmodes/compile.el (compile-internal): Style typo.
8134
8135 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
8136 quote vars and functions in the docstring.
8137
8138 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
8139
8140 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
8141 Don't quote lambdas.
8142
8143 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
8144
8145 2000-05-23 Gerd Moellmann <gerd@gnu.org>
8146
8147 * startup.el (command-line): Determine source file of compiled
8148 user init file differently. Warn if compiled user init file
8149 is older than its source file.
8150
8151 * ffap.el (ffap-url-regexp): Add `https'.
8152
8153 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
8154
8155 * files.el (make-backup-file-name-1): Replace slashes with `!'
8156 rather than `|' (which is not allowed on Windows). Replace the
8157 drive letters with a string "drive_X".
8158
8159 2000-05-23 Gerd Moellmann <gerd@gnu.org>
8160
8161 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
8162
8163 * files.el (interpreter-mode-alist): Add `bash2'.
8164
8165 2000-05-22 Dave Love <fx@gnu.org>
8166
8167 * loadhist.el (feature-symbols, file-provides, file-requires): Use
8168 mapc.
8169 (feature-file): Avoid calling symbol-name. Doc fix.
8170 (file-set-intersect, file-dependents): Use dolist, not mapcar.
8171 (loadhist-hook-functions): Add mouse-position-function.
8172 (unload-feature): Change uses of mapcar.
8173
8174 * files.el (parse-colon-path): Doc fix.
8175 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
8176 (set-auto-mode): Use mapc.
8177
8178 * complete.el (PC-look-for-include-file): Use :alnum: character
8179 class.
8180 (partial-completion-mode): Add autoload cookie.
8181
8182 2000-05-22 Sam Steingold <sds@gnu.org>
8183
8184 * info.el (Info-fontify-node): Fixed the call to
8185 `add-text-properties' (bug introduced on 2000-05-18).
8186
8187 2000-05-22 Dave Love <fx@gnu.org>
8188
8189 * bindings.el: Remove debug-ignored-errors set in other files.
8190
8191 * progmodes/etags.el: Add to debug-ignored-errors.
8192 (visit-tags-table-buffer): Clear out buffers holding old tables
8193 when making a new list.
8194 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
8195 mapc.
8196
8197 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
8198 quote keywords.
8199 (cmpl-string-case-type): Use character classes.
8200
8201 * comint.el:
8202 * textmodes/ispell.el:
8203 * imenu.el:
8204 * mail/mh-e.el:
8205 * progmodes/compile.el: Add to debug-ignored-errors.
8206
8207 * dabbrev.el: Add to debug-ignored-errors.
8208 (dabbrev-completion): Use mapc.
8209
8210 2000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
8211
8212 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
8213 (woman-mapcan, woman-parse-man.conf)
8214 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
8215 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
8216 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
8217 path syntax better.
8218 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
8219 (woman-manpath): Call woman-parse-man.conf.
8220 (woman-emulation): New defcustom, defaults to nroff.
8221 (woman-font-support): New defconst.
8222 (woman-use-symbol-font): New defcustom.
8223 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
8224 "Emulation".
8225 Many functions: Doc fix.
8226
8227 2000-05-22 Kenichi Handa <handa@etl.go.jp>
8228
8229 * international/quail.el (quail-simple-translation-keymap): Map
8230 128..255 to quail-self-insert-command.
8231 (quail-keyboard-layout-alist): Add definition for "pc102-de".
8232
8233 2000-05-22 Stefan Monnier <monnier@cs.yale.edu>
8234
8235 * help.el (help-manyarg-func-alist): Typo.
8236
8237 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
8238 intervals which makes it heaps simpler.
8239
8240 * newcomment.el (comment-region-internal): Go back to BEG after quoting
8241 the nested comment markers.
8242
8243 * subr.el (remove-hook): Don't turn the hook's value into a list.
8244
8245 2000-05-21 Dave Love <fx@gnu.org>
8246
8247 * edmacro.el (edmacro-parse-keys): Return vector if any elements
8248 are invalid characters.
8249
8250 * international/mule-util.el (detect-coding-with-priority): Use
8251 mapc. Remove redundant lambda.
8252
8253 * international/mule-diag.el (list-non-iso-charset-chars)
8254 (describe-fontset): Remove redundant lambda.
8255
8256 * emulation/crisp.el (brief-mode): New alias.
8257
8258 * emacs-lisp/ring.el (ring-elements): New function.
8259
8260 * emacs-lisp/easymenu.el (easy-menu-create-menu)
8261 (easy-menu-do-add-item): Use keywordp.
8262
8263 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
8264
8265 * replace.el: Doc and error message fixes.
8266 (replace-highlight): Use facep, not internal-find-face.
8267
8268 2000-05-20 Stefan Monnier <monnier@cs.yale.edu>
8269
8270 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
8271
8272 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
8273 (log-edit-insert-changelog): Drop `:' as well.
8274
8275 * log-view.el: Fix file description.
8276 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
8277 available.
8278 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
8279 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
8280
8281 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
8282 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
8283 Print a status message if the toggle is called interactively.
8284 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
8285 for global minor modes and use `defcustom' for them.
8286 Use add-minor-mode.
8287 (easy-mmode-define-derived-mode): Remove.
8288 (define-derived-mode): Fancier default docstring.
8289 (easy-mmode-define-navigation): Signal an error rather than (ding).
8290
8291 * newcomment.el (comment-styles): New `box-multi'.
8292 (comment-normalize-vars): Better default for comment-continue to
8293 avoid whitespace-only continuations.
8294 (comment-search-forward): Always move even in the no-syntax case.
8295 (comment-padright): Only obey N if it's only obeyed for padleft.
8296 (comment-make-extra-lines): Better handling of empty continuations.
8297 Use `=' for the filler if comment-start has only one character.
8298 (uncomment-region): Try handling the special `=' filler.
8299 (comment-region): Allow LINES even if MULTI is nil.
8300 (comment-box): Choose box style based on comment-style.
8301
8302 2000-05-20 Kenichi Handa <handa@etl.go.jp>
8303
8304 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
8305 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
8306
8307 2000-05-20 Kenichi HANDA <handa@etl.go.jp>
8308
8309 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
8310 and insert, not subst-char-in-region.
8311
8312 * international/mule-diag.el (list-character-sets-1): Handle
8313 charsets eight-bit-control and eight-bit-graphic.
8314 (list-iso-charset-chars): Likewise.
8315 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
8316 charactes as is. Use indent-to to align characters.
8317
8318 * international/mule-cmds.el (find-multibyte-characters): Never
8319 exclude charsets eight-bit-control and eight-bit-graphic.
8320
8321 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
8322
8323 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
8324 Don't quote lambdas.
8325
8326 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
8327
8328 2000-05-19 Gerd Moellmann <gerd@gnu.org>
8329
8330 * gud.el (gud-jdb-directories): Doc fix.
8331
8332 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
8333
8334 * newcomment.el: New file.
8335
8336 2000-05-19 Gerd Moellmann <gerd@gnu.org>
8337
8338 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
8339
8340 2000-05-18 Andreas Schwab <schwab@suse.de>
8341
8342 * dired.el (dired-between-files): Also skip lines beginning with
8343 `used'.
8344
8345 2000-05-18 Gerd Moellmann <gerd@gnu.org>
8346
8347 * msb.el (msb-menu-cond): Add choice `user'.
8348
8349 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8350
8351 * ps-print.el: Compatibility, customization and doc fix.
8352 (ps-printer-name-option): Replace defconst by defvar.
8353 (ps-postscript-code-directory): XEmacs compatibility.
8354 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
8355 fix.
8356 (ps-user-defined-prologue, ps-print-prologue-header)
8357 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
8358 compatibility and code fix.
8359 (ps-print-background-image, ps-print-background-text):
8360 Customization fix.
8361 (ps-line-number-start, ps-n-up-on): New vars.
8362
8363 2000-05-18 Espen Skoglund <esk@ira.uka.de>
8364
8365 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
8366 the indent-comment function to just return the appropriate indent.
8367
8368 2000-05-18 Eric M. Ludlam <zappo@ultranet.com>
8369
8370 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
8371 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
8372 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
8373
8374 2000-05-18 Dave Love <fx@gnu.org>
8375
8376 * info.el (Info-fontify-node): Add intangible property as well as
8377 invisible.
8378
8379 * calendar/appt.el (appt-make-list): Match all lines of entry.
8380 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
8381
8382 2000-05-18 Kenichi Handa <handa@etl.go.jp>
8383
8384 * international/mule-diag.el (describe-char-after): Call
8385 internal-char-font, not char-font. If internal-char-font returns
8386 nil, display "-- none --".
8387
8388 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
8389
8390 * image.el (image-type-available-p): Don't reference image-types
8391 if it isn't bound.
8392
8393 2000-05-17 Stefan Monnier <monnier@cs.yale.edu>
8394
8395 * autoarg.el (autoarg-mode): Typo in the :set argument.
8396
8397 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
8398
8399 * startup.el (command-line-1): Don't signal an error if the
8400 directory for auto-save-list files does not yet exist.
8401
8402 2000-05-17 Kenichi Handa <handa@etl.go.jp>
8403
8404 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
8405
8406 2000-05-16 Stefan Monnier <monnier@cs.yale.edu>
8407
8408 * subr.el (remove-hook): `setq' hook-value, not `set'.
8409
8410 2000-05-16 Sam Steingold <sds@gnu.org>
8411
8412 * info.el (debug-ignored-errors): More errors to ignore.
8413
8414 2000-05-16 Dave Love <fx@gnu.org>
8415
8416 * cus-edit.el: Don't require cl or easymenu.
8417 (custom-variable-prompt): Test standard-value property, not
8418 user-variable-p.
8419
8420 2000-05-16 Sam Steingold <sds@gnu.org>
8421
8422 * subr.el (add-hook): `setq' hook-value, not `set'.
8423
8424 2000-05-16 Gerd Moellmann <gerd@gnu.org>
8425
8426 * startup.el (command-line-1): Mention the FAQ in the startup
8427 message.
8428
8429 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
8430
8431 * progmodes/compile.el (compilation-parse-errors): Collect
8432 `nomessage' regexps last.
8433
8434 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
8435
8436 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
8437 to the function name.
8438
8439 2000-05-15 Dave Love <fx@gnu.org>
8440
8441 * speedbar.el (speedbar-recenter): Typo.
8442 (speedbar-expand-line): Make arg optional.
8443 (speedbar-mode): Avoid a compiler warning.
8444
8445 2000-05-15 Gerd Moellmann <gerd@gnu.org>
8446
8447 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
8448 user-specified option string is empty.
8449
8450 * mouse.el (mouse-yank-at-click): Doc fix.
8451
8452 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
8453
8454 * term/internal.el (IT-character-translations): More updates of
8455 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
8456 documents.
8457
8458 2000-05-15 Gerd Moellmann <gerd@gnu.org>
8459
8460 * env.el (getenv): New function, interactively callable.
8461 (setenv, getenv): Remove autoload cookies.
8462
8463 * loadup.el: Load `env'.
8464
8465 * progmodes/f90.el: Change author's mail address.
8466
8467 2000-05-14 Dave Love <fx@gnu.org>
8468
8469 * mail/rmail.el (rmail-show-message-hook): Customize and offer
8470 goto-addr as an option.
8471
8472 * help.el (help-xref-stack): Doc fix.
8473 (help-xref-following): New variable.
8474 (help-make-xrefs): Use it.
8475 (help-xref-go-back): Use position information from stack element.
8476 (help-follow): Make position in stack element a pair. Use
8477 help-xref-following.
8478
8479 * autoarg.el: New file.
8480
8481 * faces.el: Declare more functions obsolete.
8482
8483 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
8484 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
8485 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
8486 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
8487 Remove all the setup-...-environment functions.
8488
8489 2000-05-13 Eric M. Ludlam <zappo@ultranet.com>
8490
8491 * speedbar.el: Updated the commentary section. xemacs20p now uses
8492 >= when detecting. Require `defimage' safely.
8493 (speedbar-easymenu-definition-base): Add toggle for images.
8494 (speedbar-easymenu-definition-special): Add flush cache & expand.
8495 (speedbar-visiting-tag-hook): Set new defaults. Added options.
8496 (speedbar-reconfigure-keymaps-hook): New variable.
8497 (speedbar-frame-parameters): Updated documentation.
8498 (speedbar-use-imenu-flag): Updated custom tag
8499 (speedbar-dynamic-tags-function-list): New variable.
8500 (speedbar-tag-hierarchy-method): Updated doc & custom.
8501 (speedbar-indentation-width, speedbar-indentation-width) New
8502 variables.
8503 (speedbar-hide-button-brackets-flag): Customizable.
8504 (speedbar-vc-indicator): Doc update.
8505 (speedbar-ignored-path-expressions): Updated default value.
8506 (speedbar-supported-extension-expressions): Updated default value.
8507 (speedbar-syntax-table): Remove {} paren status.
8508 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
8509 as "+". Added overlay aliases.
8510 (speedbar-mode): Use `speedbar-mode-line-update' instead of
8511 `force-mode-line-update'.
8512 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
8513 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
8514 `mouse-set-point'
8515 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
8516 (speedbar-item-info-tag-helper): Revamped to handle a wider range
8517 of arbitrary text, and new helper functions.
8518 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
8519 filename finder.
8520 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
8521 (speedbar-directory-buttons): Update path search/expansion.
8522 (speedbar-make-tag-line): Pay attention to
8523 `speedbar-indentation-width'. Use more care w/ invisible
8524 properties.
8525 (speedbar-change-expand-button-char): Call
8526 `speedbar-insert-image-button-maybe'.
8527 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
8528 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
8529 (speedbar-trim-words-tag-hierarchy)
8530 (speedbar-simple-group-tag-hierarchy): New functions
8531 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
8532 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
8533 functions.
8534 (speedbar-mouse-set-point): New function
8535 (speedbar-power-click): Updated documentation.
8536 (speedbar-line-token, speedbar-goto-this-file): Handle more types
8537 of tag prefix text.
8538 (speedbar-expand-line, speedbar-contract-line): Make more robust
8539 to strange text.
8540 (speedbar-expand-line): Takes universal argument to flush the
8541 cache.
8542 (speedbar-flush-expand-line): New function.
8543 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
8544 Use new generator insertion method.
8545 (speedbar-fetch-dynamic-tags): New function.
8546 (speedbar-fetch-dynamic-imenu): Removed code now handled in
8547 `speedbar-fetch-dynamic-imenu'.
8548 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
8549 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
8550 "Revert Buffer" menu items.
8551 (speedbar-buffer-buttons-engine): Be smarter when creating a
8552 filename tag (for expansion purposes.).
8553 (speedbar-highlight-one-tag-line,
8554 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
8555 (speedbar-recenter): New functions.
8556 (defimage-speedbar): Image loading abstraction.
8557 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
8558 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
8559 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
8560 (speedbar-tag-type, speedbar-tag-mail): New images.
8561 (speedbar-expand-image-button-alist): New variable.
8562 (speedbar-insert-image-button-maybe): Insert an image over some
8563 buttons.
8564
8565 2000-05-13 Kenichi Handa <handa@etl.go.jp>
8566
8567 * international/mule-cmds.el (encode-coding-char): An ASCII
8568 character is always encodable.
8569
8570 * international/mule-conf.el: Add more information in descriptions
8571 of character sets.
8572
8573 * international/mule-diag.el (describe-char-after): New function.
8574 (describe-font-internal): Adjusted for the change of font-info.
8575 (describe-font): Likewise.
8576 (print-fontset): Rewritten for the new fontset implementation.
8577 (describe-fontset): Include fontset alias names in completion.
8578 (list-fontsets): Adjusted for the change of print-fontset.
8579
8580 * simple.el (what-cursor-position): If DETAIL is non-nil, call
8581 describe-char-after instead of displaying the detail in the echo
8582 area.
8583 (syntax-code-table): Format changed.
8584 (string-to-syntax): Adjusted for the above change.
8585
8586 2000-05-12 Stefan Monnier <monnier@cs.yale.edu>
8587
8588 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
8589
8590 2000-05-12 Dave Love <fx@gnu.org>
8591
8592 * calendar/todo-mode.el: Remove some compatibility stuff and CL
8593 dependence. Use line-{beginning,end}-position, not
8594 point-at{b,e}ol. Some doc fixes.
8595 (todo-position): New function. Fix callers of position to use it.
8596 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
8597
8598 2000-05-12 Gerd Moellmann <gerd@gnu.org>
8599
8600 * time.el (display-time-mail-icon): Use `:ascent center'.
8601
8602 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
8603 handling FTP security extensions.
8604
8605 2000-05-11 Dave Love <fx@gnu.org>
8606
8607 * calendar/todo-mode.el: New file.
8608
8609 2000-05-11 Gerd Moellmann <gerd@gnu.org>
8610
8611 * comint.el (comint-read-input-ring): Move reference to
8612 comint-input-ring-size outside of the save-excursion. It was
8613 causing the default value to be the only one ever seen.
8614
8615 * font-lock.el: Update copyright. Remove Simon Marshall's email
8616 address on request from him.
8617
8618 * subr.el (substitute-key-definition): Add comment describing
8619 the meaning of PREFIX.
8620
8621 2000-05-10 Stefan Monnier <monnier@cs.yale.edu>
8622
8623 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
8624
8625 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
8626 (add-minor-mode): Don't make the variable buffer-local and add a
8627 reference to define-minor-mode in the docstring.
8628
8629 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
8630 HEADER/FOOTER and fix bug with trailing empty directory.
8631 (cvs-append-to-ignore): Use vc-editable-p if available.
8632 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
8633 (vc-do-command): Tweak advice to handle the new VC.
8634
8635 * log-view.el (log-view-goto-rev): New function for the new VC.
8636 (log-view-minor-wrap): Use mark-active.
8637
8638 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
8639 (log-edit-changelog-full-paragraphs): New var.
8640 (log-edit-insert-changelog): Remove a lonely leading `* file'.
8641 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
8642 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
8643 (log-edit-changelog-ours-p, log-edit-changelog-entries)
8644 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
8645 Replace the `cvs' prefix with `log-edit'.
8646
8647 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
8648
8649 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
8650 (diff-font-lock-defaults): Explicitly turn off multiline.
8651 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
8652 (diff-ediff-patch): Fix call to ediff-patch-file.
8653 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
8654 Handle comments.
8655
8656 * frame.el (automatic-hscrolling): Typo.
8657
8658 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
8659
8660 2000-05-09 Sam Steingold <sds@goems.com>
8661
8662 * apropos.el (apropos-print): use `describe-face' instead of
8663 `customize-face-other-window'.
8664
8665 2000-05-09 Dave Love <fx@gnu.org>
8666
8667 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
8668
8669 * help.el (describe-variable): Have customize button pop the
8670 help-xref stack when invoked.
8671 (help-xref-symbol-regexp): Add `face'.
8672 (help-make-xrefs): Check for quoted face names and adapt regexp
8673 submatch numbers to cope.
8674 (help-xref-interned): Maybe insert face doc too. Separate
8675 sections with a line of hyphens.
8676
8677 * faces.el: Some doc fixes. Declare some functions obsolete.
8678 (describe-face): Add customize button. Return the help
8679 text. Fix prompt.
8680
8681 2000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
8682
8683 * term/internal.el (IT-character-translations): Fix last change.
8684
8685 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
8686
8687 * woman.el: New file
8688 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
8689
8690 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
8691
8692 * term/internal.el (IT-character-translations): Update ASCII
8693 simulations for greek-iso8859-7, add latin-iso8859-14 and
8694 latin-iso8859-15.
8695
8696 * international/mule-cmds.el (set-language-info-alist): Call
8697 define-prefix-command with 3 arguments, to make the map suitable
8698 for a menu.
8699
8700 2000-05-07 Dave Love <fx@gnu.org>
8701
8702 * time.el: Small doc fixes from Pavel Jan\e,Am\e(Bk ml.
8703
8704 2000-05-05 Dave Love <fx@gnu.org>
8705
8706 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
8707 list in doc string. Don't quote keyword symbols.
8708 * emacs-lisp/cl.el: Likewise
8709 * emacs-lisp/cl-seq.el: Likewise
8710
8711 2000-05-05 Gerd Moellmann <gerd@gnu.org>
8712
8713 * abbrev.el (abbrev-mode): Make ARG optional.
8714
8715 2000-05-04 Gerd Moellmann <gerd@gnu.org>
8716
8717 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
8718
8719 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
8720
8721 * subr.el (substitute-key-definition): Clarify documentation.
8722
8723 2000-05-04 Milan Zamazal <pdm@freesoft.cz>
8724
8725 * glasses.el (glasses-convert-to-unreadable): Use
8726 `glasses-separator' instead of the hard-wired "_".
8727 (glasses-mode): Call `glasses-make-unreadable' only in a single
8728 place.
8729
8730 2000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
8731
8732 * term/internal.el (cjk-codepages-alist): Add associations for
8733 Chinese and Korean codepages. Remove FIXME comment.
8734
8735 2000-05-03 Dave Love <fx@gnu.org>
8736
8737 * time.el (display-time-mail-face, display-time-use-mail-icon):
8738 New option.
8739 (display-time-mail-icon): New variable.
8740 (display-time-string-forms): Use the above. Fix the local-map.
8741
8742 2000-05-03 Gerd Moellmann <gerd@gnu.org>
8743
8744 * replace.el (query-replace-map): Add binding for `E'.
8745 (query-replace-help): Extend help text.
8746 (perform-replace): Allow editing the replacement string.
8747
8748 * make-mode.el (makefile-mode-abbrev-table): New variable.
8749 (makefile-mode): Set local abbrev table to
8750 makefile-mode-abbrev-table.
8751 (makefile-font-lock-keywords): Fontify includes and conditionals.
8752
8753 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
8754 set TOGGLE's value.
8755
8756 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
8757 mail-interactive-insert-alias.
8758 (mail-abbrev-complete-alias): New command.
8759 (mail-mode-map): Bind it to `M-TAB'.
8760
8761 2000-05-03 Kenichi Handa <handa@etl.go.jp>
8762
8763 * language/lao-util.el (lao-compose-region): New function.
8764
8765 2000-05-02 Gerd Moellmann <gerd@gnu.org>
8766
8767 * files.el (recover-session): Make directories as necessary
8768 if they don't exist yet.
8769
8770 * calendar/cal-french.el
8771 (french-calendar-multibyte-special-days-array)
8772 (french-calendar-special-days-array): Change French text.
8773 (calendar-french-date-string): Change output.
8774 (calendar-goto-french-date): Likewise.
8775
8776 2000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
8777
8778 * wid-edit.el (widget-default-active): Obey `:always-active'.
8779 (widget-documentation-string-value-create): Set `:always-active'.
8780
8781 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
8782
8783 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
8784 default prefix to `~/_emacs.d/auto-save.list/_s'.
8785 (normal-top-level): Create the directory for auto-save files, if
8786 it doesn't already exist (in the ms-dos case only).
8787
8788 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
8789
8790 * international/mule-cmds.el (set-language-environment): Don't
8791 concat an integer (dos-codepage), use format instead.
8792
8793 2000-05-02 Dave Love <fx@gnu.org>
8794
8795 * help.el (help-xref-on-pp): Check for constant symbols.
8796
8797 2000-04-29 Gerd Moellmann <gerd@gnu.org>
8798
8799 * startup.el (normal-top-level): Put a condition-case around
8800 the code loading subdirs.el.
8801
8802 2000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8803
8804 * ps-print.el: Upside-down and face background color printing,
8805 line number step, doc fix.
8806 (ps-print-version): New version number (5.2).
8807 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
8808 (ps-face-attribute-list, ps-plot-with-face): Code fix.
8809 (ps-spool-config): Var fix.
8810 (ps-printer-name-option): Const fix.
8811 (ps-print-upside-down, ps-use-face-background)
8812 (ps-line-number-step): New vars.
8813 (ps-window-system, ps-lp-system): New consts.
8814 (ps-face-background): New fun.
8815
8816 2000-04-28 Richard Stallman <rms@gnu.org>
8817
8818 * files.el (make-auto-save-file-name):
8819 Apply auto-save-file-name-transforms to visited file name
8820 before generating auto save file name.
8821 (auto-save-file-name-transforms): New variable.
8822
8823 * files.el (backup-enable-predicate):
8824 Correctly test for a file under a temporary directory.
8825
8826 2000-04-28 Gerd Moellmann <gerd@gnu.org>
8827
8828 * subr.el (add-minor-mode): Rewritten.
8829
8830 2000-04-28 Kenichi Handa <handa@etl.go.jp>
8831
8832 * mail/sendmail.el (sendmail-send-it): Set
8833 buffer-file-coding-system to the selected coding system for MIME
8834 header.
8835
8836 2000-04-27 Gerd Moellmann <gerd@gnu.org>
8837
8838 * dired.el (dired-move-to-filename-regexp): Allow format where
8839 YYYY is followed by two spaces.
8840
8841 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
8842 in the second character class of the regexp.
8843
8844 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
8845 mh-etc, too.
8846
8847 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
8848 nil.
8849
8850 * subr.el (add-minor-mode): Use `set' instead of `setq'.
8851
8852 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
8853 argument.
8854
8855 2000-04-27 Sen Nagata <sen@eccosys.com>
8856
8857 * emacs-lisp/crm.el (crm-completion-table): New variable.
8858 (crm-collection-fn, crm-test-completion)
8859 (completing-read-multiple): Use it.
8860
8861 2000-04-27 Dave Love <fx@gnu.org>
8862
8863 * help.el (locate-library): Use mapc.
8864 (help-manyarg-func-alist): Add call-process-region.
8865
8866 2000-04-26 Gerd Moellmann <gerd@gnu.org>
8867
8868 * subr.el (add-minor-mode): Make argument MAP optional.
8869
8870 * desktop.el (desktop-save): Save list of minor modes.
8871 (desktop-create-buffer): Restore minor modes.
8872 (desktop-minor-mode-table): New user-option.
8873
8874 * subr.el (add-minor-mode): New function.
8875
8876 * image.el (find-image): New function.
8877 (defimage): Rewritten to find image at load time.
8878
8879 * startup.el (normal-top-level-add-to-load-path): Handle
8880 case that the default directory is not in load-path.
8881
8882 * help.el: Old patch from Stefan Monnier.
8883 (help-xref-on-pp): New function.
8884 (describe-variable): Use it to display xrefs in a symbol's value.
8885
8886 2000-04-26 Stefan Monnier <monnier@cs.yale.edu>
8887
8888 * cus-edit.el (custom-face): Fix parenthesis.
8889
8890 2000-04-26 Kenichi Handa <handa@etl.go.jp>
8891
8892 * mail/rmail.el (rmail-expunge): When there are no deleted
8893 messages, do nothing.
8894
8895 2000-04-26 Dave Love <fx@gnu.org>
8896
8897 * international/mule-cmds.el (locale-translation-file-name):
8898 Defvar to nil.
8899 (set-locale-environment): Set it here (at runtime).
8900
8901 2000-04-25 Gerd Moellmann <gerd@gnu.org>
8902
8903 * replace.el (perform-replace): Add parameters START and END. Use
8904 them instead of the check for a region in Transient Mark mode.
8905 (query-replace-read-args): Return two more list elements for the
8906 start and end of the region in Transient Mark mode.
8907 (query-replace, query-replace-regexp, query-replace-regexp-eval)
8908 (map-query-replace-regexp, replace-string, replace-regexp): Add
8909 optional last arguments START and END and pass them to
8910 perform-replace.
8911
8912 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
8913 form with additional arguments for perform-replace.
8914
8915 * progmodes/etags.el (tags-query-replace): Add parameters START
8916 and END. Construct a form with additional arguments for
8917 perform-replace.
8918
8919 * simple.el (shell-command): Set default directory for "*Shell
8920 Command Output" buffer.
8921
8922 * language/european.el (iso-latin-4): Fix typo.
8923
8924 * emacs-lisp/crm.el: New file.
8925
8926 2000-04-24 Dave Love <fx@gnu.org>
8927
8928 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
8929 (Custom-reset-saved, Custom-reset-standard)
8930 (custom-group-value-create, custom-group-set, custom-group-save)
8931 (custom-group-reset-current, custom-group-reset-saved)
8932 (custom-group-reset-standard): Use mapc.
8933 (custom-buffer-create-internal): Disable undo when creating items.
8934 Use mapc.
8935 (custom-face): Avoid redundant lambda.
8936
8937 2000-04-24 Gerd Moellmann <gerd@gnu.org>
8938
8939 * startup.el (auto-save-list-file-prefix): Set default to
8940 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
8941
8942 2000-04-24 Sam Steingold <sds@gnu.org>
8943
8944 * time-stamp.el (time-stamp-string-preprocess): Always convert
8945 `field-result' to a string.
8946
8947 2000-04-24 Gerd Moellmann <gerd@gnu.org>
8948
8949 * frame.el (scrolling): New group.
8950 (automatic-hscrolling): New user-option.
8951
8952 * startup.el (command-line-x-option-alist): Add `-lsp' and
8953 `--line-spacing'.
8954
8955 2000-04-19 Dave Love <fx@gnu.org>
8956
8957 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
8958 (cl-mapc): Rename from mapc. Fix the funcall.
8959
8960 2000-04-19 Gerd Moellmann <gerd@gnu.org>
8961
8962 * simple.el (clone-indirect-buffer-other-window): New command.
8963 (clone-indirect-buffer): Add optional arg NORECROD.
8964 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
8965
8966 * help.el (resize-temp-buffer-window): Use count-screen-lines.
8967
8968 * window.el (count-screen-lines): New function.
8969 (shrink-window-if-larger-than-buffer): Use count-screen-lines
8970 instead of window-buffer-height.
8971
8972 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
8973 non-existing variable comint-input-sentinel.
8974 (inferior-lisp-args-to-list): Removed.
8975 (inferior-lisp): Use split-string instead of
8976 inferior-lisp-args-to-list.
8977
8978 * hexl.el (hexl-insert-hex-string): New command.
8979
8980 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
8981 instead of concat.
8982
8983 2000-04-18 Gerd Moellmann <gerd@gnu.org>
8984
8985 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
8986 at the start of an existing but empty folder.
8987
8988 2000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8989
8990 * ps-mule.el: Customization fix, doc fix.
8991 (ps-multibyte-buffer): Customization fix.
8992
8993 2000-04-17 Richard M. Stallman <rms@gnu.org>
8994
8995 * subr.el (read-passwd): Use read-char-exclusive.
8996
8997 2000-04-17 Gerd Moellmann <gerd@gnu.org>
8998
8999 * textmodes/texinfo.el (texinfo-insert-@email)
9000 (texinfo-insert-@emph, texinfo-insert-@quotation)
9001 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
9002 (texinfo-mode-map): Add key bindings for them.
9003
9004 * files.el (basic-save-buffer-2): Use a template with `$'
9005 instead of `#' for VMS.
9006
9007 * simple.el (clone-indirect-buffer): New function.
9008
9009 2000-04-16 Stephen Eglen <stephen@gnu.org>
9010
9011 * iswitchb.el (iswitchb-case): New function. If the user input
9012 contains any upper-case characters, the search is made
9013 case-sensitive.
9014
9015 2000-04-17 Stefan Monnier <monnier@cs.yale.edu>
9016
9017 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
9018 comment-end.
9019 (texinfo-font-lock-syntactic-keywords): New var.
9020 (texinfo-font-lock-keywords): Remove comment regexp.
9021 (texinfo-insert-block): New function.
9022 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
9023 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
9024 and font-lock-defaults. Use regexp-opt for outline-regexp.
9025 (texinfo-environments): New var.
9026 (texinfo-environment-regexp): Use regexp-opt and
9027 texinfo-environments.
9028
9029 * textmodes/ispell.el (ispell-menu-map-needed): Check that
9030 ispell-process is bound since this might be eval'd before ispell
9031 is loaded.
9032 (ispell-message): Use a tiny bit less magic and a bit more hard
9033 data to figure out what kind of sc-cite-regexp to use.
9034
9035 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
9036
9037 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
9038 (insert-cyclic-diary-entry): Unquote the lambda.
9039
9040 * gud.el (gud-jdb-build-source-files-list): Fix typo.
9041
9042 * files.el (backup-enable-predicate): Unquote the lambda.
9043
9044 * cus-edit.el (custom-face, face): Unquote the lambda.
9045
9046 2000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9047
9048 * ps-print.el: Check for line-beginning-position definition.
9049
9050 * ps-print.el: Fix counting lines in a region.
9051 (ps-print-version): New version number (5.1.5).
9052 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
9053 (ps-printing-region): Fun code fix.
9054
9055 2000-04-15 Gerd Moellmann <gerd@gnu.org>
9056
9057 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
9058 to file-directory-p.
9059
9060 2000-04-14 Gerd Moellmann <gerd@gnu.org>
9061
9062 * gud.el (gud-jdb-build-source-files-list): Check that directory
9063 exists before calling directory-files.
9064
9065 2000-04-13 Dave Love <fx@gnu.org>
9066
9067 * emacs-lisp/trace.el: Change maintainer. Use new backquote
9068 syntax.
9069
9070 * emacs-lisp/cl-specs.el: Remove when, unless.
9071
9072 * emacs-lisp/cl-extra.el: Don't quote keywords.
9073 (cl-old-mapc): New variable.
9074 (mapc): Use it.
9075 (cl-map-intervals): Use with-current-buffer. Don't check for
9076 next-property-change.
9077 (cl-map-overlays): Use with-current-buffer.
9078 (cl-expt): Remove.
9079 (copy-tree, remprop): Define unconditionally.
9080
9081 * emacs-lisp/cl-compat.el (keywordp): Remove.
9082
9083 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
9084 to use keywordp.
9085 (edebug-spec): Enable keywordp.
9086
9087 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
9088 string-lessp.
9089
9090 * cus-start.el: Use keywordp.
9091
9092 2000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
9093
9094 * diary-lib.el (include-other-diary-files): Fix the fix of
9095 2000-02-18 by doing a save-excursion.
9096
9097 2000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9098
9099 * ps-print.el: Customization fix, doc fix.
9100 (ps-print-version): New version number (5.1.4).
9101 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
9102 (ps-print-preprint): Adjust code.
9103 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
9104 (ps-print-prologue-header, ps-print-control-characters)
9105 (ps-spool-config): Customization fix.
9106
9107 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
9108
9109 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
9110 converted to the new menu-item format, names silightly changed,
9111 help strings added.
9112
9113 Support for spelling without async subprocesses:
9114
9115 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
9116 (ispell-session-buffer): New variables.
9117 (ispell-start-process, ispell-process-status,
9118 ispell-accept-output, ispell-send-string): New functions, for
9119 Ispell invocation when async subprocesses aren't supported.
9120 (ispell-word, ispell-pdict-save, ispell-command-loop,
9121 ispell-process-line, ispell-buffer-local-parsing): Replace calls
9122 to process-send-string with calls to ispell-send-string, and
9123 accept-process-output with ispell-accept-output.
9124 (ispell-init-process): Call ispell-process-status instead of
9125 process-status with.
9126 (ispell-init-process): Call ispell-start-process. Call
9127 ispell-accept-output and ispell-send-string. Don't call
9128 process-kill-without-query and kill-process if they are unbound.
9129 (ispell-async-processp): New function.
9130
9131 2000-04-12 Dave Love <fx@gnu.org>
9132
9133 * info.el: Add debug-ignored-errors.
9134 (Info-mode-menu): Add some items.
9135 (Info-directory): Add autoload cookie.
9136
9137 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
9138 Modify `truncate-lines'. Make `describe-language-environment'
9139 always visible and add help. Modify `describe-key' help. Invoke
9140 Info-directory from `info'. New entry `emacs-manual'.
9141
9142 2000-04-10 Gerd Moellmann <gerd@gnu.org>
9143
9144 * progmodes/ebrowse.el (ebrowse-tree-mode): Use
9145 propertized-buffer-identification.
9146 (ebrowse-update-member-buffer-mode-line): Likewise.
9147 (ebrowse--mode-strings): Removed.
9148 (ebrowse--mode-line-props): Removed.
9149
9150 * files.el (auto-mode-alist): Add `EBROWSE'.
9151
9152 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
9153 space before testing for end of buffer.
9154 (ebrowse-load): Removed.
9155 (ebrowse-revert-tree-buffer-from-file): Rewritten.
9156 (ebrowse-create-tree-buffer): Rewritten.
9157 (ebrowse-tree-mode): Read tree from buffer.
9158
9159 * progmodes/ebrowse-ffh.el: Removed.
9160
9161 2000-04-10 Kenichi Handa <handa@etl.go.jp>
9162
9163 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
9164
9165 2000-04-10 Gerd Moellmann <gerd@gnu.org>
9166
9167 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
9168 at the wrong place.
9169
9170 2000-04-09 Dave Love <fx@gnu.org>
9171
9172 * files.el (backup-enable-predicate): Use
9173 temporary-file-directory, small-temporary-file-directory.
9174 (make-backup-file-name-function, backup-directory-alist): New
9175 variables.
9176 (make-backup-file-name-1): New function.
9177 (make-backup-file-name): Use it.
9178 (find-backup-file-name): Likewise. Use format for clarity, not
9179 concat.
9180 (file-newest-backup): Use make-backup-file-name.
9181
9182 2000-04-09 Gerd Moellmann <gerd@gnu.org>
9183
9184 * progmodes/ebrowse-ffh.el: New file.
9185
9186 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn): Moved
9187 to ebrowse-ffh.el.
9188 (ebrowse-load): Add autoload.
9189
9190 * finder.el (finder-commentary): Add autoload cookie.
9191
9192 * mail/rfc2368.el: Correct author's email address.
9193
9194 * progmodes/ebrowse.el: New file.
9195
9196 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
9197 item help string.
9198 (easy-menu-do-add-item): Ditto.
9199 (easy-menu-define): Extend doc string.
9200
9201 * jit-lock.el (with-buffer-unmodified): Use
9202 restore-buffer-modified-p.
9203 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
9204 (jit-lock-function, jit-lock-stealth-fontify): Don't use
9205 with-buffer-unmodified.
9206
9207 2000-04-08 Dave Love <fx@gnu.org>
9208
9209 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
9210 unless, when.
9211
9212 2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
9213
9214 * viper-util.el (viper-put-on-search-overlay): New subroutine.
9215 (viper-flash-search-pattern): No operation when using Emacs
9216 doesn't support face.
9217 Use `viper-put-on-search-overlay'.
9218
9219 2000-04-04 Gerd Moellmann <gerd@gnu.org>
9220
9221 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
9222 like C-r.
9223
9224 * progmodes/make-mode.el: Some doc fixes.
9225 (makefile-mode-abbrev-table): New variable.
9226 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
9227 (makefile-font-lock-keywords): Fontify includes and conditionals.
9228 (toplevel): Require `dabbrev' and `add-log' when compiling.
9229
9230 * replace.el (perform-replace): Don't move forward one char
9231 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
9232 to do that because it leaves point 1 position after the last
9233 replacement, after everything has been replaced.
9234
9235 * jit-lock.el (with-buffer-unmodified): New macro.
9236 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
9237 modified state.
9238 (jit-lock-function-1): Extracted from jit-lock-function; not
9239 preserving buffer's modified state.
9240 (jit-lock-function, jit-lock-stealth-fontify): Call
9241 jit-lock-function-1.
9242
9243 * mail/rfc2368.el: Remove supernumerary copyright line.
9244
9245 2000-04-04 Milan Zamazal <pdm@freesoft.cz>
9246
9247 * glasses.el: Provide facilities for inserting space before left
9248 parentheses and uncapitalization of identifiers.
9249 (glasses-mode): Try to remove old overlays in all cases.
9250
9251 2000-04-03 Gerd Moellmann <gerd@gnu.org>
9252
9253 * progmodes/compile.el (compile-internal): Display the compilation
9254 buffer in a different frame, if it's already displayed there.
9255
9256 * mail/rfc2368.el: New file.
9257
9258 * simple.el (sendmail-user-agent-compose): Recognize a `body'
9259 header and insert its value as mail body.
9260
9261 * subr.el (member-ignore-case): New function.
9262
9263 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
9264 (dabbrev--find-expansion): Ignore buffers matching a regexp
9265 from dabbrev-ignored-regexps.
9266
9267 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
9268 to extensions handled by gzip.
9269
9270 2000-04-03 Richard M. Stallman <rms@gnu.org>
9271
9272 * files.el (insert-directory): List the total free space
9273 along with the used space.
9274
9275 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
9276 line is followed by one that matches CITATION-REGEXP, end the
9277 paragraph.
9278
9279 2000-04-03 Markus Rost <rost@delysid.gnu.org>
9280
9281 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
9282 (rmail-make-basic-summary-line): Use that option.
9283
9284 2000-04-03 Kenichi Handa <handa@etl.go.jp>
9285
9286 * international/mule-cmds.el (encoded-string-description):
9287 Rewritten. Try pretty description for ISO 2022 escape sequences
9288 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
9289 for hexadecimal format.
9290
9291 2000-04-01 Dave Love <fx@gnu.org>
9292
9293 * cpp.el: Change customization group to `c' from `C'.
9294
9295 * vcursor.el (vcursor-move): Use display-color-p.
9296
9297 * international/mule-util.el: Provide mule-utils.
9298 (string-to-sequence): Simplify and speed up.
9299
9300 * international/mule.el (make-coding-system): Purecopy doc-string.
9301
9302 * international/mule-cmds.el: Various menu changes.
9303 (describe-specified-language-support): Handle `Default'.
9304 (set-language-info): Purecopy `info'.
9305
9306 2000-03-31 Andrew Innes <andrewi@gnu.org>
9307
9308 * vc.el (vc-backend-diff): Return the correct status if we had to
9309 retry the rcsdiff command without the --brief option.
9310
9311 2000-03-31 Dave Love <fx@gnu.org>
9312
9313 * help.el (help-manyarg-func-alist): Correct several omissions.
9314
9315 * add-log.el: Don't require cl, fortran.
9316 (add-log-current-defun-function): Doc fix.
9317 (change-log-version-number-regexp-list): Remove SCCS part. Doc
9318 fix.
9319 (change-log-version-rcs): Function deleted.
9320 (change-log-version-number-search): Doc fix. Use
9321 vc-workfile-version. Avoid CL dolist.
9322 (add-change-log-entry): Just call add-log-current-defun to get
9323 defun. Simplify somewhat.
9324 (change-log-get-method-definition-1): Likewise.
9325 (add-log-current-defun): Return nil if calling
9326 add-log-current-defun-function does so. Move Fortran stuff to
9327 fortran.el. Return string without properties.
9328
9329 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
9330 and :alpha: char classes.
9331
9332 * mail/supercite.el: Defvar curline when compiling.
9333 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
9334 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
9335 rather than a-zA-Z0-9 to allow non-ASCII characters.
9336
9337 2000-03-31 Gerd Moellmann <gerd@gnu.org>
9338
9339 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
9340
9341 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
9342 Re-enable new code.
9343
9344 * lpr.el (print-region-1): Use -d to specify printer name for
9345 systems `usg-unix-v*, `dgux', `hpux', `irix'.
9346
9347 2000-03-31 Dave Love <fx@gnu.org>
9348
9349 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Look
9350 for function definition in symbol's function value slot first
9351 instead of first consulting byte-compile-function-environment.
9352
9353 2000-03-31 Kenichi Handa <handa@etl.go.jp>
9354
9355 * language/european.el ("Polish"): New language environment.
9356 (setup-polish-environment): New function.
9357
9358 2000-03-30 Gerd Moellmann <gerd@gnu.org>
9359
9360 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
9361 Disable new code.
9362
9363 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
9364 trying to `load' the symbol of an autoload instead of the file
9365 recorded in the autoload. Fix error messages.
9366
9367 2000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9368
9369 * ps-print.el: PostScript programming fix for ghostview, doc fix.
9370 (ps-print-version): New version number (5.1.3).
9371 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
9372 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
9373 (ps-generate-postscript-with-faces): Code fix.
9374 (ps-color-values): XEmacs compatibility.
9375 (ps-print-background-image, ps-print-background-text, ps-printer-name)
9376 (ps-default-fg, ps-default-bg): Adjust customization.
9377 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
9378 (ps-color-scale): Renaming old ps-color-value fun.
9379 (ps-print-headers): Replace ps-print-header group to avoid conflict
9380 with ps-print-header variable.
9381 (ps-print-miscellany): New group.
9382 (ps-format-color, ps-rgb-color): New funs.
9383 (ps-default-foreground): New var.
9384 (ps-printer-name-option): New const.
9385
9386 2000-03-30 Peter Breton <pbreton@ne.mediaone.net>
9387
9388 * net/net-utils.el:
9389 (network-connection-host, network-connection-service): New variables
9390 (network-connection-mode): New mode, derived from comint-mode
9391 (network-connection-mode-setup): New function, saves host and
9392 service information in local variables.
9393
9394 * lisp/locate.el:
9395 (locate-word-at-point): Added this function
9396 (locate): Default to using locate-word-at-point as input
9397 Run dired-mode-hook
9398
9399 2000-03-29 Dave Love <fx@gnu.org>
9400
9401 * calendar/appt.el: Doc fixes.
9402 (appt-check): Convert min-to-app to a string before passing to
9403 appt-disp-window-function or concat.
9404 (appt-delete-window): Remove test for frame-root-window.
9405 (appt-select-lowest-window, appt-convert-time): Simplify.
9406
9407 * emacs-lisp/bytecomp.el: Doc fixes.
9408 (byte-compile-file-form-autoload): Update
9409 byte-compile-function-environment.
9410
9411 2000-03-29 Andreas Schwab <schwab@suse.de>
9412
9413 * emacs-lisp/autoload.el: Also print defsubst doc string
9414 specially.
9415
9416 * dired.el (dired-insert-directory): If dired-free-space-program
9417 failed just delete its output.
9418
9419 2000-03-29 Dave Love <fx@gnu.org>
9420
9421 * international/iso-cvt.el: Move provide to end. Doc fixes.
9422 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
9423 (iso-iso2sgml, iso-sgml2iso): New functions.
9424 (iso-cvt-define-menu): Fix some entries and use backquote for
9425 clarity.
9426
9427 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
9428
9429 2000-03-28 Gerd Moellmann <gerd@gnu.org>
9430
9431 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
9432 ISO-DATE. If non-nil, return date in ISO 8601 format.
9433
9434 2000-03-26 Stefan Monnier <monnier@cs.yale.edu>
9435
9436 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
9437 if it ever becomes used.
9438 (log-edit-mode-hook): Default to vc-log-mode-hook.
9439 (log-edit-mode): Fix the docstring.
9440
9441 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
9442 the code.
9443
9444 2000-03-26 Dave Love <fx@gnu.org>
9445
9446 * net/browse-url.el (browse-url): Re-fix case of
9447 browse-url-browser-function being an alist.
9448 (browse-url): Add :link to defgroup.
9449
9450 * files.el: Doc fixes.
9451 (file-truename): Include `[' in wildcard characters.
9452 (automount-dir-prefix): Customize.
9453 (find-file-wildcards): Add :version.
9454 (find-file-noselect): Simplify a mapcar call.
9455
9456 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
9457 compatible with inf-lisp version.
9458 (eval-defun-1): Fix custom-declare-variable case.
9459
9460 2000-03-25 Stefan Monnier <monnier@cs.yale.edu>
9461
9462 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
9463
9464 2000-03-24 Gerd Moellmann <gerd@gnu.org>
9465
9466 * Makefile (COMPILE_FIRST): New macro.
9467 (compile-files): Compile files from COMPILE_FIRST first.
9468
9469 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new
9470 code.
9471
9472 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
9473 matching open parenthesis in column 0 to defun-prompt-regexp
9474 only if open-paren-in-column-0-is-defun-start is set.
9475
9476 * sun-curs.el: Require CL at compile-time only.
9477
9478 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
9479 instead of copy-list which is a function from CL.
9480 (msb--choose-menu, msb--mode-menu-cond)
9481 (msb--create-buffer-menu-2): Use dolist instead of mapc.
9482 (msb--init-file-alist): Use mapcar instead of mapcan.
9483 (msb--aggregate-alist): Use mapcar instead of mapcan. Fix
9484 `(' in column 0 in doc string.
9485 (msb--add-separators): Use mapcar instead of mapcan.
9486
9487 * cus-dep.el: Require CL at compile-time only.
9488
9489 2000-03-24 Stefan Monnier <monnier@cs.yale.edu>
9490
9491 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
9492 (byte-compile-warnings): New warning `noruntime'.
9493 (byte-compile-constants, byte-compile-variables): Fix docstring.
9494 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
9495 execute `eval-whenc-compile's body.
9496 (byte-compile-unresolved-functions): Fix docstring.
9497 (byte-compile-eval): New function.
9498 (byte-compile-callargs-warn): Check if the function will be available
9499 at runtime (via property `byte-compile-noruntime').
9500 (byte-compile-print-syms): New function.
9501 (byte-compile-warn-about-unresolved-functions): Also warn about
9502 `noruntime' functions (and use `byte-compile-print-syms').
9503 (byte-compile-file): Capitalize the message.
9504
9505 2000-03-24 Gerd Moellmann <gerd@gnu.org>
9506
9507 * mail/rmail.el (rmail-confirm-expunge): New user-option.
9508 (rmail-expunge): Ask for confirmation depending on the setting
9509 of rmail-confirm-expunge.
9510
9511 2000-03-23 Gerd Moellmann <gerd@gnu.org>
9512
9513 * Makefile (bootstrap-clean): If $(emacs) exists, build
9514 loaddefs.el first. A loaddefs.el that's not up-to-date might
9515 cause a bootstrap failure because things don't autoload as
9516 expected.
9517
9518 2000-03-23 Dave Love <fx@gnu.org>
9519
9520 * net/browse-url.el: Restore previous use of
9521 browse-url-maybe-new-window.
9522
9523 2000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9524
9525 * ps-print.el: Skip banner page fix.
9526 (ps-print-version): New version number (5.1.2).
9527 (ps-begin-file, ps-end-file, ps-generate): Code fix.
9528
9529 2000-03-23 Dave Pearson <davep@davep.org>
9530
9531 * net/quickurl.el Changed the type of parameter passed to the
9532 function defined by `quickurl-format-function'. Before only the
9533 text of the URL was passed. Now the whole URL structure is passed
9534 and the function is responsible for extracting the parts it
9535 requires. Changed the default of `quickurl-format-function'
9536 accordingly.
9537 (quickurl-insert): Changed the `funcall' of
9538 `quickurl-format-function' to match the above change.
9539 (quickurl-list-insert): Changed the `url' case so that it makes
9540 use of `quickurl-format-function', previous to this the format was
9541 hard wired.
9542
9543 2000-03-22 Gerd Moellmann <gerd@gnu.org>
9544
9545 * startup.el: Change some spellings for the X Window System.
9546
9547 2000-03-22 Stefan Monnier <monnier@cs.yale.edu>
9548
9549 * progmodes/make-mode.el (makefile-warn-suspicious-lines): clean
9550 up the code and the regexp and make sure the cursor is temporarily
9551 moved to the suspicious line while querying the user.
9552
9553 2000-03-22 Jason Rumney <jasonr@gnu.org>
9554
9555 * w32-fns.el (w32-charset-info-alist): Initialize.
9556
9557 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9558
9559 * ps-print.el: N-up last page fix.
9560 (ps-print-version): New version number (5.1.1).
9561 (ps-end-file, ps-end-job, ps-generate): Code fix.
9562
9563 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
9564
9565 * files.el (find-file-run-dired): Update docstring.
9566 (find-directory-functions): New hook.
9567 (find-file-noselect): Run find-directory-functions rather than
9568 calling dired directly.
9569
9570 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
9571
9572 * pcvs.el: Add a minimal leading commentary.
9573 (cvs-make-cvs-buffer): Change the header part by removing the startup
9574 message and adding a `Module' entry. Also replace the FOOTER and
9575 HEADER special fileinfos with the new support in ewoc for updating
9576 its own footer and header.
9577 (cvs-update-header): Update to use the header/footer of the ewoc.
9578 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
9579 (cvs-is-within-p): New function.
9580 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
9581 to only examine some subset of the buffers.
9582
9583 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
9584 `format' instead of our own ad-hoc functions.
9585 Remove HEADER and FOOTER cases, now handled in the EWOC.
9586 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
9587
9588 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
9589 output to avoid scaring the user.
9590 (cvs-parse-table): Catch message for non-up-to-date commits.
9591
9592 * pcvs-defs.el (cvs-startup-message): Remove.
9593 (cvs-global-menu): New autoloaded menu.
9594
9595 * pcvs-util.el (cvs-string-fill): Remove.
9596
9597 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
9598 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
9599 PP part of it and also make it work for footers and headers.
9600 (ewoc-create): Drop POS and BUFFER arguments.
9601 Use the DLL's dummy node to store the end-of-footer position.
9602 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
9603 (ewoc-refresh): Remove unused `header' variable.
9604 (ewoc-(get|set)-hf): New functions.
9605
9606 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
9607 log-view-*-(message|file) and use easy-mmode-define-navigation.
9608 (log-view-message-re): Match SCCS format as well.
9609 And match the revision line rather than the dashed separator line.
9610 (log-view-mode): Use the new define-derived-mode.
9611 (log-view-current-tag): Fill in with an actual implementation.
9612
9613 * cvs-status.el (cvs-status-(prev|next)): Rename from
9614 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
9615 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
9616 to let the output "breathe" a little more (more readable).
9617 (cvs-status-mode): Use the new define-derived-mode.
9618
9619 * smerge-mode.el (smerge-auto-leave): New function and variable.
9620 (smerge-basic-map): Rename from smerge-basic-keymap.
9621 Change the bindings for smerge-diff-*.
9622 (smerge-*-map): Use easy-mmode-defmap.
9623 (smerge-(next|prev)): Use easy-mmode-define-navigation.
9624 (smerge-keep-*): Use smerge-auto-leave.
9625
9626 2000-03-21 Jason Rumney <jasonr@gnu.org>
9627
9628 * cus-edit.el (custom-button-face): Use 3D look for w32.
9629 (custom-button-pressed-face): Likewise.
9630
9631 2000-03-21 Gerd Moellmann <gerd@gnu.org>
9632
9633 * progmodes/etags.el (tags-case-fold-search): New user-option.
9634 (tags-loop-eval): New function. Bind case-fold-search around eval
9635 depending on the value of tags-case-fold-search.
9636 (tags-loop-continue): Use tags-loop-eval.
9637 (find-tag-in-order): Bind case-fold-search depending on the value
9638 of tags-case-fold-search.
9639
9640 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
9641
9642 * diff-mode.el (diff-mode-*-map): use `easy-mmode-defmap'.
9643 (diff-end-of-hunk): Return the end position for use in
9644 `easy-mmode-define-navigation'.
9645 (diff-recenter): Remove.
9646 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
9647 of `easy-mmode-define-navigation'.
9648 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
9649 previous renaming) and fix to use new names.
9650 (diff-merge-strings): Use \n as separator: simpler, faster.
9651 (diff-mode): Use `define-derived-mode'.
9652
9653 * derived.el (define-derived-mode): Don't autoload anymore.
9654 Prefer the macro-only version provided by easy-mmode.el.
9655
9656 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
9657 `easy-mmode-define-derived-mode'.
9658 Use `combine-run-hooks'.
9659 (easy-mmode-define-navigation): New macro.
9660
9661 * subr.el (combine-run-hooks): New function.
9662
9663 2000-03-21 Kenichi HANDA <handa@etl.go.jp>
9664
9665 * term/x-win.el: Fontsets related initialization is simplified.
9666
9667 * international/mule-diag.el (describe-font): Don't refer to
9668 global-fontset-alist, instead call font-list.
9669 (describe-fontset, list-fontsets, mule-diag): Likewise.
9670 (print-fontset): Adjusted for the change of fontset
9671 implementation.
9672
9673 * international/fontset.el (x-charset-registries): Variable
9674 removed, instead the corresponding data is stored in the default
9675 fontset.
9676 (register-alternate-fontnames): Function removed.
9677 (resolved-ascii-font): Variable removed.
9678 (x-compose-font-name): Ignore the second argument REDOCE.
9679 (x-complement-fontset-spec): Complement only an ASCII font and
9680 element for those charsets than can use that ASCII font.
9681 (generate-fontset-menu): Don't refer to global-fontset-alist,
9682 instead call fontset-list.
9683 (uninstantiated-fontset-alist): Variable removed.
9684 (x-style-funcs-alist): Likewise.
9685 (fontset-default-styles): Likewise.
9686 (x-modify-font-name): Function removed.
9687 (create-fontset-from-fontset-spec): Ignore the argument
9688 STYLE-VARIANT.
9689 (create-fontset-from-ascii-font): Docsting adjusted for the above
9690 change.
9691 (instantiate-fontset, resolve-fontset-name): Functions removed.
9692 (fontset-list): Now implemented by C code.
9693
9694 * faces.el (read-face-font): Fix TABLE arg to completing-read.
9695 (describe-face): Include `font' attribute in the description.
9696
9697 2000-03-21 Kenichi Handa <handa@etl.go.jp>
9698
9699 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
9700
9701 2000-03-20 Gerd Moellmann <gerd@gnu.org>
9702
9703 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
9704 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
9705 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
9706
9707 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
9708 about behavior of set-buffer-modified-p wrt redisplay.
9709
9710 2000-03-19 Richard M. Stallman <rms@gnu.org>
9711
9712 * view.el (view-mode-disable): Kill local binding of view-read-only.
9713
9714 2000-03-18 Gerd Moellmann <gerd@gnu.org>
9715
9716 * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE
9717 is a string, convert it to a syntax cell using string-to-syntax.
9718
9719 * simple.el (syntax-code-table, syntax-flag-table): New variables.
9720 (string-to-syntax): New function.
9721
9722 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
9723 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
9724 try to use passive ftp mode.
9725
9726 2000-03-17 Gerd Moellmann <gerd@gnu.org>
9727
9728 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
9729
9730 * simple.el (append-to-buffer): Update point of windows after
9731 insertion.
9732
9733 * abbrev.el (inverse-add-abbrev): Identify word by first moving
9734 forward then moving backward. Reindent.
9735
9736 * frame.el (other-frame): Call x-focus-frame only if
9737 focus-follows-mouse is off.
9738
9739 2000-03-17 Dave Love <fx@gnu.org>
9740
9741 * pcvs-util.el (cvs-strings->string): Rename
9742 replace-regexps-in-string.
9743
9744 2000-03-17 Stefan Monnier <monnier@cs.yale.edu>
9745
9746 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
9747 regexp for labels cannot span several lines.
9748
9749 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
9750 `(setq :<key> ':<key>)' to the macro expansion.
9751
9752 2000-03-16 Dave Love <fx@gnu.org>
9753
9754 * progmodes/f90.el (f90): Put custom group under `languages', not
9755 `fortran'.
9756 (f90-mode-hook): Customize.
9757 (f90-mode): Set add-log-current-defun-function.
9758 (f90-current-defun): New function.
9759
9760 2000-03-16 Gerd Moellmann <gerd@gnu.org>
9761
9762 * cus-edit.el (custom-variable-tag-face): Handle case that
9763 default face's height is not a number.
9764 (custom-face-tag-face, custom-group-tag-face-1)
9765 (custom-group-tag-face): Ditto.
9766 (custom-group-tag-face-1): Add :group.
9767
9768 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
9769
9770 2000-03-15 Gerd Moellmann <gerd@gnu.org>
9771
9772 * pcvs-defs.el (toplevel): Remove autoload cookie for form
9773 requiring easymenu.
9774
9775 2000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9776
9777 * ps-print.el: PostScript user-defined prologue, PostScript error
9778 handler, doc fix.
9779 (ps-print-version): New version number (5.1).
9780 (ps-user-defined-prologue, ps-error-handler-message)
9781 (ps-print-prologue-0, ps-error-handler-alist): New vars.
9782 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
9783 (ps-insert-string): New function.
9784
9785 2000-03-15 Kenichi Handa <handa@etl.go.jp>
9786
9787 * international/ccl.el (ccl-compile-expression): Don't generate
9788 invalid self-assignment code.
9789
9790 2000-03-14 Dave Love <fx@gnu.org>
9791
9792 * subr.el (replace-regexp-in-string): Renamed from
9793 replace-regexps-in-string. Doc fix.
9794
9795 2000-03-12 Dave Love <fx@gnu.org>
9796
9797 * cus-edit.el: Doc fixes.
9798 (customize-set-variable, customize-save-variable): Rename args for
9799 doc.
9800 (custom-variable-tag-face, custom-face-tag-face)
9801 (custom-group-tag-face-1, custom-group-tag-face): Modify from
9802 style which user identify as hyperlink.
9803 (hook): Don't add undefined functions to the hook.
9804 (debug-ignored-errors): Transfer message from bindings.el.
9805
9806 2000-03-12 Gerd Moellmann <gerd@gnu.org>
9807
9808 * recentf.el (recentf-keep-non-readable-files-p): Remove
9809 double/nested definition.
9810
9811 2000-03-12 Dave Love <fx@gnu.org>
9812
9813 * facemenu.el (facemenu-get-face): Use display-color-p.
9814 * enriched.el (enriched-decode-foreground): Likewise.
9815 (enriched-decode-background): Likewise.
9816 * isearch.el (isearch-highlight): Likewise.
9817 * info-look.el (info-lookup): Likewise.
9818 * simple.el (completion-setup-function): Likewise.
9819
9820 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
9821 :options.
9822
9823 * bindings.el (mode-line-format): Fix line-number and
9824 column-number items. Add help-echo for the background.
9825 (mode-line-mule-info): Modify help-echo.
9826
9827 * avoid.el (mouse-avoidance-mode): Add autoload cookie to
9828 defcustom.
9829
9830 * files.el (load-file): Allow completion to .elc.
9831
9832 * man.el: Doc fixes.
9833 (Man-init-defvars): Use display-color-p to set fontification.
9834
9835 * play/hanoi.el (hanoi-internal): Don't use oddp.
9836
9837 2000-03-12 Gerd Moellmann <gerd@gnu.org>
9838
9839 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
9840
9841 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
9842
9843 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
9844
9845 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
9846 Fix comment.
9847
9848 2000-03-10 Stefan Monnier <monnier@cs.yale.edu>
9849
9850 * font-lock.el (font-lock-keywords): Fix the doc now that
9851 regexp-opt-depth is unnecessary.
9852 (save-buffer-state): Set an edebug spec.
9853 (font-lock-fontify-anchored-keywords): Properly handle the case when
9854 the matcher goes past the limit.
9855
9856 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
9857 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
9858
9859 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
9860 dll.el and cookie.el (from Elib) with heavy renaming and other
9861 massaging.
9862
9863 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
9864 Autoload the functions used.
9865 (easy-mmode-define-syntax): Fix CL typo.
9866 (easy-mmode-define-derived-mode): Improve the docstring generation.
9867
9868 2000-03-10 Gerd Moellmann <gerd@gnu.org>
9869
9870 * textmodes/texinfo.el (texinfo-version): Variable and function
9871 removed.
9872
9873 2000-03-09 Stefan Monnier <monnier@cs.yale.edu>
9874
9875 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
9876 allow more flexibility.
9877 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New
9878 fns.
9879 (easy-mmode-defmap, easy-mmode-defsyntax)
9880 (easy-mmode-define-derived-mode): New macros.
9881
9882 2000-03-09 Didier Verna <didier@xemacs.org>
9883
9884 * rect.el (replace-rectangle): New function.
9885
9886 2000-03-09 Dave Love <fx@gnu.org>
9887
9888 * progmodes/fortran.el (fortran-comment-line-start): Define as
9889 "C".
9890 (fortran-comment-line-start-skip): Don't match cpp stuff.
9891 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
9892 (fortran-mode-map): Remove over-eager custom-menu-create for now.
9893 (fortran-mode): Don't set fortran-comment-line-start-skip,
9894 fortran-comment-line-start here. Set comment-start,
9895 add-log-current-defun.
9896 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
9897 (fortran-current-defun): New function.
9898
9899 2000-03-09 Gerd Moellmann <gerd@gnu.org>
9900
9901 * emacs-lisp/re-builder.el: New file.
9902
9903 * mouse.el (mouse-drag-region): Don't run up-event handler
9904 if hscroll has changed.
9905
9906 * octave-mod.el (octave-font-lock-keywords): To font-lock the
9907 builtin operators, use `font-lock-builtin-face' for Emacs and
9908 `font-lock-preprocessor-face' otherwise.
9909
9910 * font-lock.el (lisp-font-lock-keywords-1): Highlight
9911 `(defun (setf foo)' differently.
9912
9913 2000-03-08 Stefan Monnier <monnier@cs.yale.edu>
9914
9915 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
9916 (regexp-opt): Update comment and adapt the code the new meaning of
9917 the `paren' argument of regex-opt-group for shy-groups.
9918 (regexp-opt-depth): Handle shy groups as well as backslashed
9919 backslashes.
9920 (regexp-opt-group): Turn the leading comment into a docstring.
9921 Allow `paren' to be a string (the string to use to open a group).
9922 Remove open-presuf and close-presuf. Instead of checking for `all
9923 one-char' and then later on check for `several one-char', handle
9924 both cases close together. Also apply a more generic algorithm
9925 for suffixes (the mirror image of the algorithm used for
9926 prefixes). Use shy-groups. Use nreverse rather than reverse.
9927 (regexp-opt-try-suffix): Removed.
9928
9929 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
9930 from comint-mode-map, so we can just inherit from it. Also, move
9931 the initialization into the `defvar' since there's no docstring
9932 anyway and it's fairly short.
9933 (inferior-scheme-mode): Define it as derived-mode: the code is
9934 shorter and this way we inherit from comint-mode-map rather than
9935 copying it.
9936
9937 * subr.el (replace-regexps-in-string): Properly handle the case
9938 where we match an empty string.
9939
9940 * comint.el (comint-exec-1): Add the current-dir to the exec-path
9941 when the command has a directory component (such as "./testml").
9942 Also fix a typo in the comment.
9943
9944 2000-03-08 Gerd Moellmann <gerd@gnu.org>
9945
9946 * Makefile (compile-files): Compile files one by one because
9947 that's the only way to ensure a clean compilation environment for
9948 each individual file.
9949
9950 * frame.el (other-frame): Call x-focus-frame.
9951
9952 2000-03-07 Dave Love <fx@gnu.org>
9953
9954 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
9955 :require to defcustom.
9956
9957 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads
9958 lists.
9959
9960 * files.el (auto-mode-alist): Add configure.in.
9961
9962 * progmodes/autoconf.el: New file.
9963
9964 2000-03-07 Gerd Moellmann <gerd@gnu.org>
9965
9966 * mail/mh-e.el: Change maintainer to `none'.
9967
9968 * recentf.el (recentf-keep-non-readable-files-p): Quote args
9969 to remove-hook and add-hook.
9970
9971 2000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
9972
9973 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
9974 it as the default.
9975 (mail-send): Test mail-send-nonascii also for the new `mime' value.
9976 (sendmail-send-it): Conditionally add MIME headers specifying the
9977 used character set.
9978
9979 2000-03-07 Dave Love <fx@gnu.org>
9980
9981 * winner.el: Fix keywords, autoload cookies. Split
9982 eval-when-compile form to avoid compilation failure.
9983
9984 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
9985
9986 * international/mule.el: Modify comment about coding system
9987 property `coding-category'.
9988 (make-coding-system): New argument EOL-TYPE. Pay attention to
9989 coding-category property of PROPERTIES.
9990
9991 * international/mule-conf.el (coding-category-utf-8,
9992 coding-category-utf-16-be, coding-category-utf-16-le): New coding
9993 categories. Include them in the argument for set-coding-priority.
9994
9995 * international/mule-cmds.el (reset-language-environment): Include
9996 coding-category-utf-8, coding-category-utf-16-be, and
9997 coding-category-utf-16-le in the argument for set-coding-priority.
9998 (reset-language-environment): Initialize coding-category-utf-8,
9999 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
10000
10001 2000-03-06 Karl Fogel <kfogel@red-bean.com>
10002
10003 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
10004 code abstracted out of `bookmark-jump-noselect'. Now tries info
10005 extensions as well as compression extensions.
10006 (bookmark-jump-noselect): Use above new func.
10007
10008 2000-03-03 Gerd Moellmann <gerd@gnu.org>
10009
10010 * strokes.el: Change maintainer's mail address.
10011
10012 2000-03-03 Kenichi Handa <handa@etl.go.jp>
10013
10014 * international/mule-diag.el (list-character-sets): Make help-echo
10015 string by substitute-command-keys.
10016 (list-character-sets): Likewise.
10017 (sort-listed-character-sets): Call help-setup-xref.
10018
10019 2000-03-02 Gerd Moellmann <gerd@gnu.org>
10020
10021 * time.el (display-time-mail-file): Add `none' to the list of
10022 choices.
10023
10024 2000-03-01 Dave Love <fx@gnu.org>
10025
10026 * help.el (help-xref-go-back): Don't try to set position.
10027
10028 * international/mule-diag.el (list-character-sets): Call
10029 help-setup-xref. Add help-echo to xrefs.
10030 (list-character-sets-1): Add help-echo to xrefs.
10031
10032 2000-03-02 Gerd Moellmann <gerd@gnu.org>
10033
10034 * frame.el (blink-cursor-mode): Switch cursor on when turning
10035 the mode off.
10036
10037 * add-log.el (add-log-current-defun): Add support for
10038 Autoconf mode.
10039
10040 * mail/rmail.el (rmail-quit-hook): New variable.
10041
10042 2000-03-01 Dave Love <fx@gnu.org>
10043
10044 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
10045
10046 * help.el (help-xref-button): Add help-echo arg.
10047 (describe-function-1, describe-variable, help-make-xrefs): Use it.
10048
10049 * faces.el (list-faces-display): Supply help-echo with
10050 help-make-xrefs.
10051
10052 * facemenu.el (list-text-properties-at): Set help-xref-stack to
10053 nil.
10054
10055 2000-03-01 Gerd Moellmann <gerd@gnu.org>
10056
10057 * image.el (defimage): Look for image files in load-path.
10058
10059 * frame.el (busy-cursor-delay-seconds): Change type to
10060 `number'.
10061
10062 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
10063
10064 * recentf.el (recentf): Added version tag to the defgroup of
10065 recentf.
10066
10067 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
10068
10069 * recentf.el (recentf-cleanup): Changed to remove excluded file
10070 too.
10071 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
10072 action to select/unselect a file.
10073 (recentf-edit-list): Code cleanup and improvement.
10074 (recentf-open-more-files-action): `recentf-open-more-files' button
10075 widget action to open a file.
10076 (recentf-open-more-files): No more use standard completion but
10077 widgets.
10078 (recentf-more-collection): Deleted.
10079 (recentf-more-history): Deleted.
10080 (recentf-setup-more-completion): Deleted.
10081
10082 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
10083
10084 * recentf.el (recentf-mode): No more needs that Emacs is running
10085 under a window-system.
10086
10087 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
10088
10089 * recentf.el (recentf-edit-list): New command to edit the recent
10090 list which allow the user to remove files.
10091 (recentf-edit-selected-items): New global variable, used by
10092 `recentf-edit-list' to hold the list of files to be removed from
10093 the recent list.
10094 (recentf-make-menu-items): Updated to display a "Edit list..."
10095 menu item. Minor code cleanup.
10096
10097 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
10098
10099 * recentf.el (recentf-open-more-files): New command to open files
10100 that are not displayed in the menu.
10101 (recentf-more-collection): New global variable holding the set of
10102 permissible completions used by `recentf-open-more-files'.
10103 (recentf-more-history): New global variable holding the history list
10104 used by `recentf-open-more-files' completion.
10105 (recentf-setup-more-completion): New function to setup completion for
10106 `recentf-open-more-files'.
10107 (recentf-make-menu-items): Updated to display a "More..." menu item.
10108
10109 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
10110
10111 * recentf.el (recentf-menu-action): Doc fixed.
10112
10113 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
10114
10115 * recentf.el (recentf-menu-filter): Doc updated.
10116 (recentf-update-menu-hook): Allow menu filters to force menu update.
10117 (recentf-make-menu-items): New menu filter handling.
10118 (recentf-make-menu-item): New helper function.
10119 (recentf-menu-elements): New menu handling function.
10120 (recentf-sort-ascending): Updated to new menu filter handling.
10121 (recentf-sort-descending): Updated to new menu filter handling.
10122 (recentf-sort-basenames-ascending): New menu filter function.
10123 (recentf-sort-basenames-descending): New menu filter function.
10124 (recentf-show-basenames): New menu filter function.
10125 (recentf-show-basenames-ascending): New menu filter function.
10126 (recentf-show-basenames-descending): New menu filter function.
10127
10128 2000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10129
10130 * diary-lib.el (list-diary-entries): Don't try to go forward at
10131 the end of the buffer.
10132
10133 2000-02-29 Kenichi Handa <handa@etl.go.jp>
10134
10135 * international/mule-diag.el (list-character-sets): Completely
10136 rewritten.
10137 (sort-listed-character-sets): New function.
10138 (list-character-sets-1): Completely rewritten.
10139 (list-character-sets-2): New function.
10140 (non-iso-charset-alist): New variable.
10141 (decode-codepage-char): New function.
10142 (charset-history): New variable.
10143 (read-charset) (list-block-of-chars)
10144 (list-iso-charset-chars)
10145 (list-non-iso-charset-chars)
10146 (list-charset-chars): New functions.
10147 (mule-diag): Call list-character-sets-2, not
10148 list-character-sets-2.
10149 (dump-charsets): Likewise.
10150
10151 2000-02-29 Gerd Moellmann <gerd@gnu.org>
10152
10153 * dired-x.el (dired-filename-at-point): Add `@' to valid
10154 file name characters.
10155 (dired-filename-at-point): Handle ange-ftp file names.
10156
10157 * frame.el (frame-notice-user-settings): Use assq-delete-all
10158 instead of assoc-delete-all.
10159 (frame-notice-user-settings): Ditto.
10160
10161 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
10162 Don't copy alist.
10163
10164 2000-02-28 Eli Barzilay <eli@cs.cornell.edu>
10165
10166 * calculator.el (calculator-use-menu): New option.
10167 (calculator-initial-bindings): Changed some bindings to work as
10168 macros.
10169 (calculator-forced-input): Removed.
10170 (calculator-restart-other-mode): New variable.
10171 (calculator-mode-map): Set up menu.
10172
10173 2000-02-28 Jari Aalto <jari.aalto@poboxes.com>
10174
10175 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
10176 tags.
10177
10178 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
10179
10180 * viper-cmd.el (viper-envelop-ESC-key): added the option to
10181 translate all ESC key sequences.
10182 (viper-goto-mark-subr): restore markers for files for which
10183 they were saved.
10184 * viper-init.el (viper-translate-all-ESC-keysequences): new variable.
10185 * viper-util.el (viper-set-replace-overlay-glyphs,
10186 viper-set-replace-overlay): always check if the replacement
10187 overlay is live.
10188 * viper.el (viper-vi-state-mode-list): added major modes.
10189 * ediff-wind.el: minor comment changes.
10190 * ediff.el: copyright notice date fix.
10191
10192 2000-02-27 Jason Rumney <jasonr@gnu.org>
10193
10194 * faces.el (face-font-family-alternatives): Add arial to helv.
10195 (mode-line, header-line, tool-bar): Same default as x for w32.
10196 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
10197 face-font-family-alternatives from working.
10198 * term/w32-win.el (mouse-set-font): Do not build fontset from
10199 chosen font.
10200
10201 2000-02-25 Sam Steingold <sds@goems.com>
10202
10203 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
10204 properly.
10205
10206 2000-02-25 Richard M. Stallman <rms@gnu.org>
10207
10208 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
10209
10210 2000-02-25 Gerd Moellmann <gerd@gnu.org>
10211
10212 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer
10213 writable.
10214
10215 * frame.el (busy-cursor-delay-seconds): New option.
10216
10217 2000-02-24 Gerd Moellmann <gerd@gnu.org>
10218
10219 * frame.el (show-cursor-in-non-selected-windows): New option.
10220
10221 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10222
10223 * diary-lib.el (include-other-diary-files): Undo the selective
10224 display in any included file and don't kill it.
10225
10226 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
10227
10228 * dired.el (dired-mode-map): Don't remove "Edit" from the menu
10229 bar. Menu items converted to (menu-item format, help strings
10230 added.
10231 [downcase, upcase]: Don't enable on MS-DOS.
10232 [symlink, symlinks]: Don't show if make-symbolic-link is not
10233 bound.
10234 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
10235
10236 2000-02-23 Dave Love <fx@gnu.org>
10237
10238 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
10239 (backward-kill-word): Revert addition of * to interactive spec --
10240 it's a feature.
10241
10242 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
10243 (backward-kill-sentence, kill-sentence): Likewise.
10244
10245 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
10246 scratch buffer name.
10247 (gud-format-command): Use int-to-string in ?l case. Simplify
10248 slightly.
10249
10250 * term/w32-win.el (internal-face-interactive): Update prompt for
10251 new read-face-name.
10252
10253 * mail/footnote.el (footnote): Add :version to defgroup.
10254 (footnote-section-tag-regexp): Customize.
10255 (footnote-start-tag, footnote-end-tag): New option.
10256 (footnote-latin-regexp): New variable.
10257 (Footnote-latin): New function.
10258 (footnote-style-alist): Add element for latin style.
10259 (footnote-style): Moved.
10260 (Footnote-goto-footnote): Use eq to test arg.
10261
10262 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
10263
10264 * emacs-lisp/byte-opt.el: Change old backquote syntax.
10265 (byte-compile-trueconstp): Include keywords.
10266 (byte-optimize-quote, byte-optimize-lapcode): Use
10267 byte-compile-const-symbol-p.
10268 (byte-optimize-char-before): New optimization.
10269
10270 * emacs-lisp/bytecomp.el: Change old backquote syntax.
10271 (byte-compile-const-symbol-p): New function.
10272 (byte-compile-constp, byte-compile-out-toplevel)
10273 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
10274 Use it.
10275
10276 * subr.el (define-key-after): Default AFTER to t. Doc fix.
10277
10278 2000-02-23 Kenichi Handa <handa@etl.go.jp>
10279
10280 * international/encoded-kb.el: Be sure to update minor-mode-alist
10281 and minor-mode-map-alist.
10282 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
10283 codes SS2 and SS3 correctly.
10284 (encoded-kbd-self-insert-ccl): New function.
10285 (encoded-kbd-setup-keymap): New function.
10286 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
10287 by calling encoded-kbd-setup-keymap.
10288
10289 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte
10290 characters.
10291 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t
10292 locally.
10293
10294 2000-02-22 Dave Love <fx@gnu.org>
10295
10296 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
10297 (lisp-mode-map, lisp-interaction-mode-map): Define all inside
10298 defvar.
10299 (lisp-mode-syntax-table): Set up for #|...|# comments.
10300 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
10301 classes. Match `defface'.
10302 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
10303 (eval-defun-1): Fix for defcustom.
10304 (lisp-indent-region): Doc fix.
10305
10306 * subr.el (when, unless, split-string): Doc fix.
10307 (read-passwd): Move call of clear-this-command-keys to the right
10308 place.
10309 (replace-regexps-in-string): New function.
10310
10311 2000-02-22 Gerd Moellmann <gerd@gnu.org>
10312
10313 * help.el (describe-variable): Set syntax table to
10314 emacs-lisp-mode-syntax-table when moving forward over the
10315 symbol's name.
10316
10317 2000-02-22 Dave Love <fx@gnu.org>
10318
10319 * xt-mouse.el: Doc fixes.
10320 (xterm-mouse-position-function): New function, replacing advice of
10321 mouse-position.
10322 (xterm-mouse-mode): Use it. Don't turn on under a window system.
10323
10324 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
10325
10326 2000-02-21 Gerd Moellmann <gerd@gnu.org>
10327
10328 * format.el (format-annotate-single-property-change): Handle
10329 properties.with dotted-list values.
10330 (format-proper-list-p): New function.
10331
10332 * enriched.el (enriched-face-ans): Handle '(foreground-color
10333 . COLOR) and (background-color . COLOR).
10334
10335 2000-02-20 Dave Love <fx@gnu.org>
10336
10337 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
10338 and assignments to it.
10339 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
10340 current local map.
10341 (make-flyspell-overlay): Use it.
10342 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
10343
10344 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
10345 (lm-get-header-re): Defun, not defsubst.
10346 (lm-get-package-name): Defun, not defsubst. Simplify.
10347 (lm-version): Doc fix. Simplify.
10348 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
10349 (lm-crack-address, lm-last-modified-date, lm-commentary)
10350 (lm-verify, lm-synopsis): Simplify.
10351 (lm-report-bug): Require emacsbug. Use compose-mail.
10352
10353 2000-02-20 Gerd Moellmann <gerd@gnu.org>
10354
10355 * dired.el (dired-mode): Call propertized-buffer-identification
10356 to set mode-line-buffer-identification to something having
10357 the right text properties.
10358
10359 * bindings.el (propertized-buffer-identification): New function.
10360
10361 2000-02-20 Dave Love <fx@gnu.org>
10362
10363 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
10364 check for t-mouse too.
10365
10366 * cus-start.el: Make echo-keystrokes `number'.
10367
10368 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
10369
10370 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
10371 Don't call ring-empty-p unless tags-location-ring is bound.
10372 From Noah Friedman <friedman@splode.com>.
10373
10374 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
10375
10376 * progmodes/hideshow.el (hs-flag-region): No longer use
10377 `intangible' overlay property.
10378
10379 (hs-toggle-hiding): New command.
10380 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
10381
10382 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
10383 Fix omission bug: Run `hs-minor-mode-hook' for both activation
10384 and deactivation.
10385
10386 2000-02-18 Gerd Moellmann <gerd@gnu.org>
10387
10388 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
10389
10390 2000-02-17 Gerd Moellmann <gerd@gnu.org>
10391
10392 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
10393
10394 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
10395 of `*' to handle `(* ... *)' comments.
10396
10397 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
10398
10399 * faces.el (list-faces-display): Use display-mouse-p instead of
10400 window-system.
10401
10402 * menu-bar.el (global-map): Menu-bar items converted to the new
10403 format (menu-item..., rearranged for better CUA compliance, and
10404 their names changed for better clarity. Help strings added.
10405
10406 * international/mule-cmds.el (mule-menu-keymap)
10407 (describe-language-environment-map, set-coding-system-map)
10408 (setup-language-environment-map): Convert to new (menu-item...
10409 form, add help strings. Change names of menu items for better
10410 clarity. "Mule" menu-bar item removed (it's now in the "Options"
10411 submenu).
10412
10413 2000-02-17 Gerd Moellmann <gerd@gnu.org>
10414
10415 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
10416 within the code.
10417
10418 2000-02-16 Dave Love <fx@gnu.org>
10419
10420 * faces.el: Don't require custom. Add more specific :groups to
10421 various deffaces.
10422 (set-face-attribute): Purecopy args.
10423 (read-face-name): Default to name at point and use it in prompt.
10424 Remove colon from arg in all callers.
10425 (list-faces-display): Hyperlink to face descriptions and customize
10426 buffers.
10427
10428 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
10429
10430 * wid-edit.el (widget-match-inline): An atom never matches a
10431 list.
10432
10433 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10434
10435 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
10436 at ':' characters by call to split-string.
10437
10438 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10439
10440 * textmodes/bibtex.el: Added RCS version identification.
10441
10442 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10443
10444 * textmodes/bibtex.el: Some temporary comments removed.
10445 (bibtex-field-name, bibtex-entry-type): Made the relationship
10446 explicit.
10447 (bibtex-field-const): Allow capital letters.
10448 (bibtex-start-of-string): Deleted because unused.
10449
10450 * textmodes/bibtex.el: Unified some nomenclature. We no longer
10451 use the term 'reference' to describe a bibtex entry as a whole.
10452 Further, reference keys are no longer called 'labels'.
10453 (bibtex-keys): Renamed to bibtex-reference-keys.
10454 (bibtex-reformat-previous-labels): Renamed to
10455 bibtex-reformat-previous-reference-keys.
10456 (bibtex-reference-type): Renamed to bibtex-entry-type.
10457 (bibtex-reference-head): Renamed to bibtex-entry-head.
10458 (bibtex-reference-maybe-empty-head): Renamed to
10459 bibtex-entry-maybe-empty-head.
10460 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
10461 (bibtex-search-reference): Renamed to bibtex-search-entry.
10462 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
10463 bibtex-enclosing-entry-maybe-empty-head.
10464 (bibtex-entry-field-alist, bibtex-entry-head,
10465 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
10466 bibtex-map-entries, bibtex-search-entry,
10467 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
10468 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
10469 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
10470 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
10471 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
10472 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
10473 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
10474
10475 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10476
10477 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
10478 comment.
10479 (bibtex-format-field-delimiters): New function, functionality
10480 extracted from bibtex-format-entry.
10481 (bibtex-autokey-get-yearfield-digits): New function, functionality
10482 extracted from bibtex-autokey-get-yearfield.
10483
10484 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
10485 entries in order to avoid stack overflow in the regexp matcher if
10486 field contents become large.
10487 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
10488 bibtex-field-string-part-not-braced,
10489 bibtex-field-string-part-no-inner-braces,
10490 bibtex-field-string-part-1-inner-brace,
10491 bibtex-field-string-part-2-inner-braces,
10492 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
10493 bibtex-field-string-quoted, bibtex-field-string,
10494 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
10495 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
10496 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
10497 as parsing is now performed by the following functions.
10498 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
10499 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
10500 bibtex-parse-field-string, bibtex-search-forward-field-string,
10501 bibtex-parse-association, bibtex-field-name-for-parsing,
10502 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
10503 bibtex-search-forward-field, bibtex-search-backward-field,
10504 bibtex-start-of-field, bibtex-end-of-field,
10505 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
10506 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
10507 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
10508 bibtex-parse-string, bibtex-search-forward-string,
10509 bibtex-search-backward-string, bibtex-start-of-string,
10510 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
10511 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
10512 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
10513 entries. Instead of reporting the results of the parsing by
10514 match-beginning or match-end, these functions return data structures
10515 that hold the corresponding positions.
10516 (bibtex-enclosing-field): Changed to also report field boundaries by
10517 return values rather than by match-beginning or match-end. The
10518 following functions have been adapted to use the new parsing
10519 functions.
10520 (bibtex-skip-to-valid-entry, bibtex-search-reference,
10521 bibtex-enclosing-field, bibtex-format-entry,
10522 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
10523 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
10524 bibtex-print-help-message, bibtex-end-of-entry,
10525 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
10526 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
10527 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
10528 method for parsing.
10529 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
10530 bibtex-map-entries, bibtex-flash-head,
10531 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
10532 bibtex-autokey-change, bibtex-autokey-get-namefield,
10533 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
10534 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
10535 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
10536 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
10537 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
10538 order to make the new binding of case-fold-search immediately
10539 visible.
10540
10541 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10542
10543 * textmodes/bibtex.el: Copyright notice is up to date.
10544 Added constant 'bibtex-maintainer-salutation.
10545
10546 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
10547 than make-temp-name, use match-string-no-properties and eliminate
10548 a quadratic behavior when building bibtex-strings.
10549
10550 * bibtex.el (bibtex-reference-key): Accept string entries whose
10551 reference key contains upper case letters.
10552
10553 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10554
10555 * bibtex.el (bibtex-reference-head): Allow entries to start with
10556 a new line.
10557
10558 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10559
10560 * bibtex.el: Hiding of entry bodies is not longer provided by
10561 bibtex.el directly. Instead the hideshow package can be used.
10562 Added a special bibtex entry to hs-special-modes-alist.
10563 (bibtex-hs-forward-sexp): Added for hideshow.el.
10564
10565 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10566
10567 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
10568 at ':' characters by call to split-string.
10569
10570 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10571
10572 * textmodes/bibtex.el: Added RCS version identification.
10573
10574 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10575
10576 * textmodes/bibtex.el: Some temporary comments removed.
10577 (bibtex-field-name, bibtex-entry-type): Made the relationship
10578 explicit.
10579 (bibtex-field-const): Allow capital letters.
10580 (bibtex-start-of-string): Deleted because unused.
10581
10582 * textmodes/bibtex.el: Unified some nomenclature. We no longer
10583 use the term 'reference' to describe a bibtex entry as a whole.
10584 Further, reference keys are no longer called 'labels'.
10585 (bibtex-keys): Renamed to bibtex-reference-keys.
10586 (bibtex-reformat-previous-labels): Renamed to
10587 bibtex-reformat-previous-reference-keys.
10588 (bibtex-reference-type): Renamed to bibtex-entry-type.
10589 (bibtex-reference-head): Renamed to bibtex-entry-head.
10590 (bibtex-reference-maybe-empty-head): Renamed to
10591 bibtex-entry-maybe-empty-head.
10592 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
10593 (bibtex-search-reference): Renamed to bibtex-search-entry.
10594 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
10595 bibtex-enclosing-entry-maybe-empty-head.
10596 (bibtex-entry-field-alist, bibtex-entry-head,
10597 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
10598 bibtex-map-entries, bibtex-search-entry,
10599 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
10600 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
10601 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
10602 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
10603 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
10604 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
10605 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
10606
10607 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10608
10609 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
10610 comment.
10611 (bibtex-format-field-delimiters): New function, functionality
10612 extracted from bibtex-format-entry.
10613 (bibtex-autokey-get-yearfield-digits): New function, functionality
10614 extracted from bibtex-autokey-get-yearfield.
10615
10616 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
10617 entries in order to avoid stack overflow in the regexp matcher if
10618 field contents become large.
10619 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
10620 bibtex-field-string-part-not-braced,
10621 bibtex-field-string-part-no-inner-braces,
10622 bibtex-field-string-part-1-inner-brace,
10623 bibtex-field-string-part-2-inner-braces,
10624 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
10625 bibtex-field-string-quoted, bibtex-field-string,
10626 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
10627 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
10628 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
10629 as parsing is now performed by the following functions.
10630 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
10631 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
10632 bibtex-parse-field-string, bibtex-search-forward-field-string,
10633 bibtex-parse-association, bibtex-field-name-for-parsing,
10634 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
10635 bibtex-search-forward-field, bibtex-search-backward-field,
10636 bibtex-start-of-field, bibtex-end-of-field,
10637 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
10638 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
10639 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
10640 bibtex-parse-string, bibtex-search-forward-string,
10641 bibtex-search-backward-string, bibtex-start-of-string,
10642 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
10643 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
10644 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
10645 entries. Instead of reporting the results of the parsing by
10646 match-beginning or match-end, these functions return data structures
10647 that hold the corresponding positions.
10648 (bibtex-enclosing-field): Changed to also report field boundaries by
10649 return values rather than by match-beginning or match-end. The
10650 following functions have been adapted to use the new parsing
10651 functions.
10652 (bibtex-skip-to-valid-entry, bibtex-search-reference,
10653 bibtex-enclosing-field, bibtex-format-entry,
10654 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
10655 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
10656 bibtex-print-help-message, bibtex-end-of-entry,
10657 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
10658 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
10659 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
10660 method for parsing.
10661 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
10662 bibtex-map-entries, bibtex-flash-head,
10663 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
10664 bibtex-autokey-change, bibtex-autokey-get-namefield,
10665 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
10666 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
10667 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
10668 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
10669 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
10670 order to make the new binding of case-fold-search immediately
10671 visible.
10672
10673 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10674
10675 * textmodes/bibtex.el: Copyright notice is up to date.
10676 Added constant 'bibtex-maintainer-salutation.
10677
10678 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
10679 than make-temp-name, use match-string-no-properties and eliminate
10680 a quadratic behavior when building bibtex-strings.
10681
10682 * bibtex.el (bibtex-reference-key): Accept string entries whose
10683 reference key contains upper case letters.
10684
10685 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10686
10687 * bibtex.el (bibtex-reference-head): Allow entries to start with
10688 a new line.
10689
10690 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10691
10692 * bibtex.el: Hiding of entry bodies is not longer provided by
10693 bibtex.el directly. Instead the hideshow package can be used.
10694 Added a special bibtex entry to hs-special-modes-alist.
10695 (bibtex-hs-forward-sexp): Added for hideshow.el.
10696
10697 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10698
10699 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
10700 proceedings entry type (for cross referencing). Thanks to Wagner
10701 Toledo Correa for the suggestion.
10702
10703 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
10704
10705 2000-02-14 Kenichi Handa <handa@etl.go.jp>
10706
10707 * international/characters.el: Setup case table for Vietnamese.
10708
10709 2000-02-12 Gerd Moellmann <gerd@gnu.org>
10710
10711 * uniquify.el (toplevel): Require CL at compile time.
10712 (uniquify-push): Removed.
10713
10714 * shadowfile.el (shadow-when): Removed.
10715
10716 * tempo.el (tempo-dolist, tempo-mapc): Removed.
10717 (tempo-process-and-insert-string): Use dolist instead of
10718 tempo-dolist.
10719
10720 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
10721 regexp for paragraph-start.
10722
10723 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
10724 commas as well.
10725
10726 2000-02-10 Dave Love <fx@gnu.org>
10727
10728 * wid-edit.el: (widgets) [defgroup]: Remove url link.
10729 (widget-color-choice-list, widget-color-history, widget-mouse-help):
10730 Deleted.
10731 (widget-specify-field, widget-specify-button): Don't use
10732 widget-mouse-help as help-echo property.
10733 (default): Use #'ignore for :validate and :mouse-down-action.
10734 (checkbox): Add help-echo.
10735 (widget-sexp-validate): Rewritten to clarify error messages.
10736 (character): Use char-valid-p in :match function.
10737 (widget-color-complete): Use facemenu-color-alist.
10738 (widget-color-action): Use facemenu-read-color.
10739
10740 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
10741 set up `caar' &c that we now have.
10742
10743 2000-02-09 Ray Blaak <blaak@gnu.org>
10744
10745 * delphi.el: Make resourcestring a declaration region, like const
10746 and var.
10747
10748 2000-02-09 Dave Love <fx@gnu.org>
10749
10750 * bindings.el (mode-line-input-method-map): New variable.
10751 (mode-line-mule-info): Use it; fix last change.
10752 (mode-line-mode-menu): Move definition.
10753 (mode-line-mouse-sensitive-p): Deleted.
10754 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
10755 (make-mode-line-mouse-sensitive): Deleted. Body moved to top
10756 level.
10757
10758 * startup.el (command-line-1): Don't call
10759 make-mode-line-mouse-sensitive.
10760
10761 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
10762
10763 * mail/rmail.el (rmail-retry-failure): Use
10764 rmail-beginning-of-message before rmail-toggle-header, because the
10765 former toggles headers.
10766
10767 2000-02-06 Stefan Monnier <monnier@cs.yale.edu>
10768
10769 * diff-mode.el (diff-kill-junk): New interactive function.
10770 (diff-reverse-direction): Use delete-and-extract-region.
10771 (diff-post-command-hook): Restrict the area so that the hook also works
10772 outside of any diff hunk. This is necessary for the minor-mode.
10773 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
10774 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
10775
10776 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
10777 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
10778 so that it can be used more easily in <foo>-mode-hook. Also make sure
10779 to avoid duplicate entries.
10780 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
10781 (font-lock-remove-keywords): Just as was done for `add', allow it to
10782 work even if font-lock-mode is nil. Also make sure we don't modify
10783 any pre-existing list by forcing a copy-sequence. Finally rename
10784 `major-mode' to `mode'.
10785 (font-lock-fontify-syntactic-anchored-keywords)
10786 (font-lock-fontify-anchored-keywords)
10787 (font-lock-fontify-keywords-region): Use line-end-position.
10788 Don't make `font-lock-multiline' local (it's now done in
10789 font-lock-set-defaults).
10790 (font-lock-set-defaults): Make `font-lock-multiline' local. Also
10791 move the `font-lock-fontified' creation to inside the `unless'.
10792
10793 2000-02-06 Andrew Innes <andrewi@gnu.org>
10794
10795 * term/w32-win.el (x-handle-args): Comment out call to message,
10796 which occurs before window system is initialized.
10797
10798 * makefile.nt: Add support for recompiling lisp code.
10799
10800 2000-02-04 Dave Love <fx@gnu.org>
10801
10802 * bindings.el (mode-line-mule-info): Fix/extend last change.
10803
10804 * completion.el: Replace completion-dolist with dolist.
10805
10806 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
10807 dotimes.
10808
10809 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
10810
10811 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
10812 environment names before they go into the section regexp.
10813
10814 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
10815 char class in regexp.
10816
10817 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
10818 `case-fold-search' to nil.
10819
10820 * progmodes/idlwave.el (idlwave-template): Respect
10821 `idlwave-abbrev-change-case'.
10822 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
10823 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
10824 idlwave-while): respect `idlwave-reserved-word-upcase'.
10825 (idlwave-rw-case): New function.
10826 (idlwave-statement-match): Fixed problem with assignment regexp.
10827 (idlwave-font-lock-keywords): Improved regexp for keyword
10828 parameters.
10829 (idlwave-surround): New argument LENGTH to support padding of
10830 operators longer than 1 char.
10831
10832 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
10833 idlwave-shell-expression-overlay. Implemented printing of
10834 expressions on higher levels of the calling stack.
10835 (idlwave-shell-display-level-in-calling-stack): Restore stack
10836 level.
10837 (idlwave-retrieve-expression-from-level): New function.
10838 (idlwave-shell-last-calling-stack): Variable removed.
10839 (idlwave-shell-reset): Argument action reversed (`visible' to
10840 `hidden'). Also remove stop-line overlay.
10841 (idlwave-shell-calling-stack-routine): New variable.
10842 (idlwave-shell-parse-stack-and-display): Messages now display
10843 negative level numbers.
10844 (idlwave-shell-mode): Set `modeline-format'.
10845 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
10846 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
10847 21.
10848 (idlwave-shell-print-expression-function): New option.
10849
10850 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
10851 idlwave-toolbar-remove-everywhere): Keybindings prefix is now
10852 `tool-bar' instead of `toolbar'.
10853
10854 2000-02-02 Dave Love <fx@gnu.org>
10855
10856 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
10857 emacs-lisp-mode-hook. Don't check for defalias being defined.
10858
10859 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
10860 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use
10861 the new builtins directly.
10862
10863 * whitespace.el (whitespace): Add :version to defgroup.
10864
10865 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
10866 Doc fix.
10867
10868 * thingatpt.el (sexp-at-point, symbol-at-point)
10869 (number-at-point, list-at-point): Add autoload cookie.
10870
10871 * recentf.el (recentf): Add :version to defgroup.
10872
10873 * quickurl.el (quickurl): Add :version to defgroup.
10874
10875 * elide-head.el (elide-head): Use point-marker more.
10876
10877 * bs.el (bs): Add :version to defgroup.
10878
10879 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
10880
10881 * progmodes/delphi.el (delphi): Add :version to defgroup.
10882
10883 2000-02-02 Gerd Moellmann <gerd@gnu.org>
10884
10885 * ange-ftp.el (ange-ftp-write-region): Handle case that
10886 succeeding process operation sets a different coding system.
10887
10888 * calculator.el: New file.
10889
10890 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
10891
10892 * frame.el (frames-on-display-list, framep-on-display): New
10893 functions.
10894 (display-mouse-p, display-popup-menus-p, display-graphic-p)
10895 (display-selections-p, display-screens, display-pixel-width)
10896 (display-pixel-height, display-mm-width, display-mm-height)
10897 (display-backing-store, display-save-under, display-planes)
10898 (display-color-cells, display-visual-class): New functions.
10899
10900 * term/tty-colors.el (tty-color-gray-shades): New function.
10901
10902 * faces.el (display-color-p): Use framep-on-display.
10903 (display-grayscale-p): New function.
10904
10905 2000-01-31 Dave Love <fx@gnu.org>
10906
10907 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
10908 (create-fontset-from-x-resource): Don't concat integers.
10909
10910 2000-01-31 Inge Frick <inge@nada.kth.se>
10911
10912 * view.el: Some changes in documentation. Removed some trailing
10913 whitespace. Changed some parameter names to agree with
10914 documentation.
10915 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
10916 window is not deleted. Modifies change 1998-04-26.
10917
10918 2000-01-31 Gerd Moellmann <gerd@gnu.org>
10919
10920 * windmove.el: New file.
10921
10922 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
10923 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
10924 progmodes/ebnf-yac.el: Update copyright and license info.
10925
10926 * jit-lock.el (jit-lock-function): Widen before calculating end
10927 position.
10928 (jit-lock-stealth-chunk-start): Rewritten.
10929
10930 * info.el (Info-title-face-alist): Removed.
10931 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
10932 faces.
10933 (Info-fontify-node): Use these faces.
10934
10935 2000-01-30 Gerd Moellmann <gerd@gnu.org>
10936
10937 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
10938 (cl-macro-list1): Recognize `&allow-other-keys' instead of
10939 `&allow-other-keywords'.
10940
10941 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
10942 the list of directories scanned heuristically.
10943
10944 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
10945 exist.
10946
10947 2000-01-30 Jason Rumney <jasonr@gnu.org>
10948
10949 * w32-fns.el: Define w32-tty-standard-colors.
10950
10951 * startup.el (command-line): Use w32-tty-standard-colors when in
10952 w32 console mode.
10953
10954 2000-01-30 Dave Love <fx@gnu.org>
10955
10956 * jka-compr.el (jka-compr-load): Fix up load-history.
10957
10958 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
10959
10960 * emacs-lisp/cl-macs.el: Revert previous change.
10961
10962 2000-01-29 Dave Love <fx@gnu.org>
10963
10964 * facemenu.el: Purecopy various strings.
10965
10966 * timezone.el (timezone-fix-time): Window against 69 for two-digit
10967 years. Deal with three-digit years.
10968
10969 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
10970 defconst, purecopy.
10971 (help-back-label): Purecopy it.
10972
10973 2000-01-18 Gerd Moellmann <gerd@gnu.org>
10974
10975 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
10976 variable. If non-nil, order the buffer list according to the
10977 currently selected frame.
10978 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
10979 non-nil, pass the selected frame to function buffer-list.
10980
10981 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10982
10983 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
10984
10985 2000-01-28 Dave Love <fx@gnu.org>
10986
10987 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
10988
10989 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
10990 Don't use lisp-indent-hook property.
10991 (cl-abs): Remove.
10992
10993 * subr.el: Move out indent and edebug specs for when and unless.
10994
10995 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
10996 when, unless.
10997
10998 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
10999 unless, when.
11000
11001 2000-01-28 Gerd Moellmann <gerd@gnu.org>
11002
11003 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
11004 `collecting' as synonym for `collect'.
11005
11006 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
11007 for the case it contains spaces.
11008
11009 * simple.el (what-cursor-position): Change formatting of
11010 messages.
11011
11012 * frame.el (delete-other-frames): New function.
11013 (toplevel): Bind it to C-x 5 1.
11014
11015 * sort.el (sort-numeric-base): New option.
11016 (sort-numeric-fields): If number starts with `0' or `0[xX[',
11017 interpret it as octal or hexadecimal. Use sort-numeric-base
11018 as default base.
11019
11020 * progmodes/glasses.el: New file.
11021
11022 2000-01-27 Gerd Moellmann <gerd@gnu.org>
11023
11024 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
11025 userids differently.
11026
11027 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
11028 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
11029 progmodes/ebnf-yac.el: New files.
11030
11031 2000-01-26 Dave Love <fx@gnu.org>
11032
11033 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
11034 on a function with an empty body. [From Eric Ludlam.]
11035
11036 2000-01-25 Andre Spiegel <spiegel@gnu.org>
11037
11038 * vc.el (vc-version-diff): Make sure file name is expanded.
11039
11040 2000-01-25 Gerd Moellmann <gerd@gnu.org>
11041
11042 * scroll-bar.el (scroll-bar-timer): Variable removed.
11043 (scroll-bar-toolkit-scroll): Don't use a timer.
11044
11045 2000-01-25 Kenichi Handa <handa@etl.go.jp>
11046
11047 * language/thai-util.el (thai-composition-function): Delete
11048 superfluous `a'.
11049
11050 2000-01-24 Dave Love <fx@gnu.org>
11051
11052 * fortran.el (fortran-mode): Use beginning-of-defun-function,
11053 end-of-defun-function.
11054
11055 * font-lock.el (turn-on-font-lock): Don't depend on window-system
11056 &c.
11057
11058 2000-01-22 Jason Rumney <jasonr@gnu.org>
11059
11060 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
11061 conflicts with new face support.
11062
11063 2000-01-22 Richard M. Stallman <rms@gnu.org>
11064
11065 * replace.el (query-replace): Rename last arg to DELIMITED.
11066 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
11067 (query-replace-regexp): Likewise.
11068
11069 2000-01-20 Richard M. Stallman <rms@gnu.org>
11070
11071 * subr.el (with-syntax-table): Use make-symbol, not gensym.
11072
11073 * emacs-lisp/lisp.el (beginning-of-defun-function):
11074 Variable renamed from beginning-of-defun.
11075 Do not call make-variable-buffer-local.
11076 (beginning-of-defun-raw): Use new variable name; doc fix.
11077 (beginning-of-defun): Doc fix.
11078 (end-of-defun-function): Variable renamed from end-of-defun.
11079 Do not call make-variable-buffer-local.
11080 (end-of-defun): Use new variable name; doc fix.
11081
11082 * subr.el (dolist, dotimes): Copied from cl-macs.el
11083 and made to work.
11084
11085 * mail/undigest.el (rmail-digest-end-regexps):
11086 Variable replaces rmail-digest-end-regexp.
11087 Allows multiple regexps for detecting the end line.
11088 (undigestify-rmail-message): Corresponding changes.
11089
11090 2000-01-19 Dave Love <fx@gnu.org>
11091
11092 * files.el (user-init-file): Don't declare here -- is primitive.
11093
11094 * startup.el (command-line): Check for compiled user-init-file and
11095 set to uncompiled version if necessary.
11096
11097 2000-01-18 Gerd Moellmann <gerd@gnu.org>
11098
11099 * mail/undigest.el (rmail-digest-end-regexp): New user option.
11100 (undigestify-rmail-message): Use it.
11101
11102 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
11103
11104 2000-01-17 Gerd Moellmann <gerd@gnu.org>
11105
11106 * tmm.el (tmm-goto-completions): Adapt to prompt being part
11107 of mini-buffer.
11108
11109 2000-01-14 Gerd Moellmann <gerd@gnu.org>
11110
11111 * emacs-lisp/copyright.el (copyright-update): Removed the
11112 requirement for a trailing space from `copyright-regexp', to
11113 support copyrights with owner specified on a separate line..
11114
11115 * align.el: New file.
11116
11117 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
11118
11119 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
11120
11121 2000-01-13 Dave Love <fx@gnu.org>
11122
11123 * ph.el: Removed. (Obsoleted by EUDC.)
11124
11125 2000-01-13 Gerd Moellmann <gerd@gnu.org>
11126
11127 * net/eudc.el (toplevel): Remove autoloaded code installing
11128 menu with easymenu, because that causes build problems.
11129
11130 * frame.el (frame-notice-user-settings): New variable.
11131 (frame-notice-user-settings): Don't modify frame parameters
11132 if called a second time.
11133
11134 2000-01-13 Richard M. Stallman <rms@gnu.org>
11135
11136 * frame.el (frame-notice-user-settings):
11137 Notice default-frame-parameters even for non-window frames.
11138
11139 2000-01-13 Gerd Moellmann <gerd@gnu.org>
11140
11141 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
11142 for Emacs.
11143 (eudc-bob-can-display-inline-images): Extend for Emacs.
11144 (eudc-bob-toggle-inline-display): Ditto.
11145 (eudc-bob-display-jpeg): Ditto.
11146
11147 2000-01-12 Gerd Moellmann <gerd@gnu.org>
11148
11149 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
11150 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
11151 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
11152
11153 * add-log.el (add-change-log-entry): Fix error trying an `(insert
11154 nil)'.
11155
11156 * subdirs.el: Add `net' directory.
11157
11158 * net: New directory.
11159
11160 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
11161 eval-last-sexp. Don't bind debug-on-error here.
11162 (eval-last-sexp): New function. Bind debug-on-error if
11163 eval-expression-debug-on-error is non-nil.
11164 (eval-defun-2, eval-defun): Likewise.
11165
11166 * simple.el (eval-expression): Don't bind debug-on-error if
11167 eval-expression-debug-on-error is nil. Detect changed
11168 debug-on-error, and propagate new value to global binding, if
11169 eval-expression-debug-on-error is non-nil,
11170 (eval-expression-debug-on-error): Change doc string.
11171
11172 2000-01-11 Richard M. Stallman <rms@gnu.org>
11173
11174 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
11175
11176 * emacs-lisp/lisp-mode.el (with-syntax-table):
11177 Set up lisp-indent-function property.
11178
11179 * subr.el (with-syntax-table): Moved from simple.el.
11180
11181 * simple.el (with-syntax-table): Moved to subr.el.
11182
11183 2000-01-11 Gerd Moellmann <gerd@gnu.org>
11184
11185 * tmm.el (tmm-shortcut): Delete region after prompt instead
11186 of erasing buffer.
11187
11188 * textmodes/fill.el (fill-common-string-prefix): New function.
11189 (fill-context-prefix): Use the longest common prefix of first
11190 and second line fill prefix, if there is one.
11191
11192 2000-01-11 Richard M. Stallman <rms@gnu.org>
11193
11194 * array.el (array-mode): Don't use make-variable-buffer-local.
11195 Use make-local-variable for `truncate-lines'.
11196
11197 2000-01-11 Jari Aalto <jari.aalto@poboxes.com>
11198
11199 * add-log.el (add-log-current-defun): Handle user-defined
11200 add-log-current-function returning nil,
11201
11202 * add-log.el (add-change-log-entry): Insert version number
11203 if having found a current function
11204
11205 * add-log.el (add-log-current-defun): Call
11206 `add-log-current-defun-function'. Try matches at level 0 and
11207 level 1. Strip whitespace from defun found.
11208
11209 2000-01-10 John Wiegley <johnw@gnu.org>
11210
11211 * allout.el (isearch-done/outline-provisions): Added `edit'
11212 argument to correspond with the current definition of
11213 `isearch-done'.
11214
11215 2000-01-10 Dave Love <fx@gnu.org>
11216
11217 * elide-head.el (elide-head): Use point-marker, not point.
11218
11219 2000-01-10 Gerd Moellmann <gerd@gnu.org>
11220
11221 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
11222 before and after the year 2000.
11223
11224 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
11225 Add ispell- prefix.
11226
11227 2000-01-10 Ken Stevens <k.stevens@ieee.org>
11228
11229 * ispell.el: Only define dictionaries in menus when they exist.
11230 (version18p): New variable.
11231 (version20p): New variable.
11232 (xemacsp): New variable.
11233 (ispell-choices-win-default-height): Fix for XEmacs visibility.
11234 (ispell-dictionary-alist1): Added Brasileiro dictionary.
11235 (ispell-dictionary-alist6): Russian command lines no longer accept
11236 run-together words.
11237 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
11238 (ispell-dictionary-alist): Add koi8-r to customize definition.
11239 (check-ispell-version): Added documentation string. Returns
11240 library path when called non-interactively.
11241 (ispell-menu-map-needed): Uses new variables.
11242 (ispell-library-path): New variable.
11243 (ispell-decode-string): XEmacs fix for bogus variable bindings.
11244 (ispell-word): Improved documentation string. Test for valid
11245 character mappings. Correctly check typed in word changes that can
11246 result in single words split into multiple words. Returns
11247 replacement word.
11248 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
11249 replace in recursive query replace mode. Help message for
11250 recursive edit mode.
11251 (ispell-show-choices): Protect against bad framepop bindings.
11252 (ispell-help): Fix to work with XEmacs.
11253 (ispell-highlight-spelling-error): Use new variables.
11254 (ispell-overlay-window): Fix to work with XEmacs.
11255 (ispell-parse-output): Passed and returns location information
11256 tracking spelling corrections. Doesn't recheck same word on
11257 current line.
11258 (ispell-init-process): Protect against bogus XEmacs variable binding.
11259 Fix call to single argument in sleep-for. Use new variables.
11260 (ispell-region): Passed and returns location information tracking
11261 spelling corrections. Doesn't check same word on current line.
11262 Improved documentation string. Doesn't resend a line already
11263 checked to the ispell process - fixes bug in LaTeX parsing.
11264 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
11265 (ispell-skip-region): No longer skips <TT> in SGML.
11266 (ispell-process-line): Tracks location information with spelling
11267 corrections. Added documentation string. Accounts for words
11268 already accepted on this line. Don't allow query-replace on line
11269 starting with math characters. Doesn't resend a line already sent
11270 to ispell process. Fixes alignment error bug.
11271
11272 2000-01-10 Richard M. Stallman <rms@gnu.org>
11273
11274 * dired-x.el (dired-guess-shell-alist-default):
11275 Suggest xloadimage, which is free, not xv, which isn't.
11276
11277 * ange-ftp.el (ange-ftp-file-name-nondirectory):
11278 Don't ever include the host name or user name in the value.
11279
11280 2000-01-09 Gerd Moellmann <gerd@gnu.org>
11281
11282 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
11283 of a real newline.
11284
11285 2000-01-09 Stephen Eglen <stephen@gnu.org>
11286
11287 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
11288 for .png files.
11289
11290 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
11291
11292 * cus-edit.el (custom-hook-convert-widget): Fix comment.
11293
11294 2000-01-09 Gerd Moellmann <gerd@gnu.org>
11295
11296 * progmodes/cperl-mode.el: Replace ^F with ^L.
11297
11298 * sendmail.el (toplevel): Provide `sendmail' when compiling
11299 before `require'ing rmail and mailalias to prevent infinite
11300 recursion.
11301
11302 2000-01-08 Dave Love <fx@gnu.org>
11303
11304 * emacs-lisp/backquote.el: Remove inappropriate customization
11305 (allowing custom.el to use backquote).
11306
11307 2000-01-07 Dave Love <fx@gnu.org>
11308
11309 * add-log.el (add-log-debugging): Deleted.
11310 (add-change-log-entry): Treat a backup FILE-NAME as its parent
11311 file. Remove debugging code.
11312 (change-log-get-method-definition, change-log-name): Add doc.
11313 (change-log-sortable-date-at): New function.
11314 (change-log-merge): New command.
11315
11316 * time.el (display-time-string-forms): Make the Mail string active.
11317 (display-time-update): Provide help-echo for load average.
11318
11319 * bindings.el (make-mode-line-mouse2-map): New function.
11320 (mode-line-modified): Use it and simplify.
11321 (mode-line-mule-info): Provide help-echo info.
11322 (minor-mode-alist): Activate the strings.
11323 (make-mode-line-mouse-sensitive): Simplify for
11324 mode-line-buffer-identification.
11325
11326 2000-01-07 Gerd Moellmann <gerd@gnu.org>
11327
11328 * play/pong.el: New file.
11329
11330 2000-01-06 Dave Love <fx@gnu.org>
11331
11332 * array.el: Assorted cleanups for compiler warnings, doc strings,
11333 `array-' prefix for symbols.
11334
11335 2000-01-05 Dave Love <fx@gnu.org>
11336
11337 * textmodes/outline.el (outline-mode-menu-bar-map): Add
11338 outline-headers-as-kill.
11339 (outline-mode): Define imenu-generic-expression.
11340 (outline-headers-as-kill): New command.
11341
11342 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
11343 from paragraph-start.
11344 (paragraph-indent-minor-mode): New command.
11345
11346 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
11347 M-C-e, M-C-h, C-j, C-xnd, TAB.
11348 (fortran-mode): Set beginning-of-defun, end-of-defun.
11349 (fortran-column-ruler): Simplify.
11350 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
11351 (fortran-with-subprogram-narrowing): Likewise.
11352 (fortran-indent-subprogram): Call mark-defun.
11353 (fortran-check-for-matching-do): Change narrowing.
11354
11355 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
11356 (cl-lucid-hash-tag): Delete.
11357 (cl-hash-table-p): Correct test for native table.
11358 (cl-hash-table-count): Use hash-table-count.
11359
11360 * browse-url.el (browse-url): Fix case of
11361 browse-url-browser-function being an alist.
11362
11363 2000-01-05 Carsten Dominik <cd@gnu.org>
11364
11365 * textmodes/reftex-vars.el (reftex-parse-file-extension)
11366 (reftex-index-phrase-file-extension): New options.
11367
11368 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
11369 Use new option `reftex-index-phrase-file-extension'.
11370
11371 * textmodes/reftex.el (reftex-access-parse-file): Use new option
11372 `reftex-parse-file-extension'.
11373
11374 2000-01-05 Dave Love <fx@gnu.org>
11375
11376 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
11377 (beginning-of-defun-raw): Use it.
11378 (end-of-defun): New variable.
11379 (end-of-defun): Use it.
11380 (check-parens): New command.
11381
11382 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
11383
11384 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
11385 (hs-show-block): Don't use `mapcar' when not accumulating.
11386
11387 Fix buglet in local variables initialization.
11388
11389 2000-01-05 Andreas Schwab <schwab@suse.de>
11390
11391 * hscroll.el (hscroll): Doc fix.
11392
11393 2000-01-05 Carsten Dominik <cd@gnu.org>
11394
11395 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
11396 idlw-toolbar.
11397
11398 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
11399 file idlw-rinfo.el.
11400 (idlwave-customize): load must read file idlw-shell.el.
11401 (idlwave-create-customize-menu): load must read file idlw-shell.el.
11402
11403 2000-01-05 Carsten Dominik <dominik@astro.uva.nl>
11404
11405 * progmodes/idlw-shell.el: Also provide idlwave-shell
11406 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
11407 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
11408
11409 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
11410 both reftex-dcr and reftex-vcr.
11411
11412 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
11413
11414 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11415
11416 * ps-print.el: PostScript code now is in separate files, doc fix.
11417 (ps-print-version): New version number (5.0.3).
11418 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
11419 local.
11420 (ps-spool-config): Initialization fix.
11421 (ps-print-prologue-1, ps-print-prologue-2)
11422 (ps-print-duplex-feature): PostScript code moved to separated file.
11423 (ps-background-image): Little code reformating.
11424 (ps-begin-file, ps-begin-job): Fix code.
11425 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
11426 (ps-prologue-file): New fun.
11427
11428 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11429
11430 * ps-vars.el: Eliminated.
11431
11432 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
11433 `;;;###autoload'.
11434
11435 * ps-print.el: ps-vars eliminated, doc fix.
11436 (ps-print-version): New version number (5.0.2).
11437 (ps-spool-config): Initialization fix.
11438 (ps-print-customize): New fun.
11439
11440 2000-01-04 Gerd Moellmann <gerd@gnu.org>
11441
11442 * autorevert.el (auto-revert-mode): Return value of
11443 auto-revert-mode.
11444
11445 2000-01-04 Dave Love <fx@gnu.org>
11446
11447 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
11448 menu items.
11449
11450 2000-01-03 Dave Love <fx@gnu.org>
11451
11452 * elide-head.el (elide-head) [defgroup]: Add :version.
11453
11454 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
11455 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
11456 `cl-hash-table-p', not `hash-table-p'.
11457 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
11458
11459 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
11460
11461 * faces.el (face-read-integer, read-face-attribute)
11462 (color-defined-p, color-values): unspecified-{f,b}g are now
11463 strings.
11464
11465 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
11466
11467 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
11468 at comment end, and re-insert them after filling.
11469
11470 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
11471
11472 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
11473 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
11474 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
11475
11476 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
11477
11478 * term/x-win.el (xw-defined-colors): Call color-supported-p,
11479 the new name of face-color-supported-p.
11480
11481 * term/w32-win.el (xw-defined-colors): Likewise.
11482
11483 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
11484
11485 * simple.el (completion-setup-function): Count completion-size
11486 from minibuffer-prompt-end, not from point-min.
11487
11488 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
11489
11490 * faces.el (read-face-attribute, defined-colors, color-defined-p):
11491 Pass the frame to tty-color-* functions.
11492 (display-color-p, frame-set-background-mode): Pass the frame to
11493 tty-display-color-p.
11494
11495 * term/tty-colors.el (tty-defined-color-alist): Renamed from
11496 tty-color-alist.
11497 (tty-color-alist, tty-modify-color-alist): New functions.
11498 (tty-color-define, tty-color-clear, tty-color-approximate)
11499 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
11500 an optional parameter FRAME.
11501
11502 2000-01-01 Gerd Moellmann <gerd@gnu.org>
11503
11504 * image.el (create-image, defimage): Don't assume image data is a
11505 string.
11506
11507 * image.el (defimage): Handle specifications containing :data
11508 instead of :file.
11509 (image-type-from-data): New function.
11510 (image-type-from-file-header): Use it.
11511 (create-image): Add parameter DATA-P.
11512
11513 See ChangeLog.8 for earlier changes.
11514
11515 ;; Local Variables:
11516 ;; coding: iso-2022-7bit
11517 ;; End: