Update copyright.
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
732b9cdd
GM
12001-01-09 Gerd Moellmann <gerd@gnu.org>
2
1dfca644
GM
3 * bindings.el (global-map): Bind <home> to beginning-of-line,
4 <end> to end-of-line, C-<home> to beginning-of-buffer, and
5 C-<end> to end-of-buffer.
6
732b9cdd
GM
7 * language/european.el: Add Dutch and Spanish language info
8 to be able to use the appropriate tutorials.
9
102001-01-09 Alex Schroeder <alex@gnu.org>
11
12 * ansi-color.el (ansi-color-process-output): Use markers instead
13 of positions for start and end of region.
14 (ansi-color-apply-on-region): Rewrote code to make it more robust.
15 Previously, occasional mistakes happend when fontifying many
16 chunks of output (eg. ls --color=yes /dev). This happened
17 whenever an overlay was created up to the end of the region, which
18 coincided with the process-mark. New text would then be added
19 within that overlay instead of after it.
20 (ansi-color-make-extent): Overlays are created with the property
21 `modification-hooks' set to '(ansi-color-freeze-overlay).
22 (ansi-color-freeze-overlay): New function. When inserting text at
23 the end of the overlay, the overlay will resize.
24
252000-01-09 Alex Schroeder <alex@gnu.org>
26
27 * ansi-color.el (ansi-color-process-output): Doc change.
28 (ansi-color-unfontify-region): Doc change. No longer installed
29 automatically in font-lock-unfontify-region-function.
30 (ansi-color-apply): Doc change.
31 (ansi-color-apply-on-region): Use extents or overlays instead of
32 text-properties.
33 (ansi-color-make-extent): New function.
34 (ansi-color-set-extent-face): New function.
35
362000-01-09 Alex Schroeder <alex@gnu.org>
37
38 * ansi-color.el (ansi-color-process): Removed, Emacs and XEmacs
39 both use ansi-color-process-output, now.
40 (ansi-color-process-output): Doesn't return string anymore. It is
41 installed in comint-output-filter-functions for both Emacs and
42 XEmacs, now.
43 (ansi-color-unfontify-region): Simplified code removing variables
44 pos and start-ansi.
45 (ansi-color-apply): Put text-property ansi-color before putting
46 text-property face because ansi-color-unfontify-region is called
47 immediately after the call to put-text-property.
48 (ansi-color-context-region): Doc change.
49 (ansi-color-filter-region): Simplified code.
50 (ansi-color-apply-on-region): Changed start to start-marker, using
51 a marker explicitly. Put text-property ansi-color before putting
52 text-property face because ansi-color-unfontify-region is called
53 immediately after the call to put-text-property.
54
552000-01-09 Alex Schroeder <alex@gnu.org>
56
57 * ansi-color.el (ansi-color-faces-vector): Doc change.
58 (ansi-color-for-comint-mode): Changed :type property to choice.
59 (ansi-color-last-context): Removed.
60 (ansi-color-process-output): Don't use ansi-color-last-context, as
61 the main functions will store their context now.
62 (ansi-color-context): Doc change.
63 (ansi-color-filter-apply): Rewrote it based on ansi-color-apply.
64 Uses ansi-color-context such that repeated calls will strip
65 partial escape sequences, too.
66 (ansi-color-apply): Simplified code. Colorize end of string if
67 face is not null. Store context in new (FACE STRING) format, such
68 that repeated calls will strip partial escape sequences, too.
69 Append faces to face property using ansi-color-apply-sequence such
70 that cumulative mode actually works.
71 (ansi-color-context-region): New variable.
72 (ansi-color-filter-region): Rewrote it based on
73 ansi-color-apply-on-region. Uses ansi-color-context-region such
74 that repeated calls will strip partial escape sequences, too.
75 (ansi-color-apply-on-region): Simplified code. Colorize end of
76 region if face is not null. Store context in new (FACE POS)
77 format, such that repeated calls will strip partial escape
78 sequences, too. Append faces to face property using
79 ansi-color-apply-sequence such that cumulative mode actually
80 works.
81 (ansi-color-apply-sequence): New function.
82 (ansi-color-get-face): When the default face is added to the list
83 of faces, all previous settings are discarded and the list of
84 faces is set to '(default).
85
862000-01-09 Alex Schroeder <alex@gnu.org>
87
88 * ansi-color.el (ansi-color-faces-vector): Use nil for the default
89 face, such that ansi-color-apply and ansi-color-apply-on-region
90 will do the right thing.
91 (ansi-color-apply): Do the right thing, ie. if ansi-color-get-face
92 returns nil, set the list of faces back to nil instead of
93 appending the result of ansi-color-get-face to the front of the
94 list.
95
962000-01-09 Alex Schroeder <alex@gnu.org>
97
98 * ansi-color.el (ansi-color-for-comint-mode): Doc change.
99 (ansi-color-process): Doc change.
100 (ansi-color-last-context): New buffer-local variable.
101 (ansi-color-process-output): New function. It is automatically
102 added to comint-output-filter-functions if this is XEmacs.
103 (ansi-color-unfontify-region): New optional parameter for XEmacs
104 compatibility. Check wether font-lock-syntactic-keywords is
105 boundp before removing the syntax table text property, as XEmacs
106 doesn't have it.
107 (ansi-color-filter-region): Doc change.
108 (ansi-color-apply-on-region): Doc change.
109 (ansi-color-make-face): New function. Compatibility layer for
110 XEmacs. Return temporary faces instead of cons cells for XEmacs.
111 (ansi-color-make-color-map): Use ansi-color-make-face.
112 (ansi-color-get-face): Avoid face text property '(nil) as results
113 in an errow for XEmacs.
114
1152000-01-09 Alex Schroeder <alex@gnu.org>
116
117 * ansi-color.el (ansi-color-unfontify-region): New function. Uses
118 text-property ansi-color in order to preserve fontification by
119 ansi-color. When the package is loaded, a lambda expression is
120 put onto font-lock-mode-hook. This lambda expression will check
121 font-lock-unfontify-region-function and replace
122 font-lock-default-unfontify-region with
123 ansi-color-unfontify-region.
124 (ansi-color-apply): Add text-property ansi-color in addition to
125 text-property face.
126 (ansi-color-apply-on-region): Add text-property ansi-color in
127 addition to text-property face.
128 (save-buffer-state): Copy of the macro that is also used by
129 lazy-lock and font-lock.
130
131 (ansi-color-for-comint-mode): New option.
132 (ansi-color-for-comint-mode-on): Set ansi-color-for-comint-mode.
133 (ansi-color-for-comint-mode-off): Ditto.
134 (ansi-color-for-comint-mode-filter): Ditto.
135 (ansi-color-process): New function. Uses
136 ansi-color-for-comint-mode to decide what to do. This function is
137 added to comint-preoutput-filter-functions when the package is
138 loaded.
139
140 (ansi-color-for-shell-mode-set): Removed.
141 (ansi-color-for-shell-mode): Removed.
142
1432000-01-09 Alex Schroeder <alex@gnu.org>
144
145 * ansi-color.el (ansi-color-for-shell-mode-set): New function with
146 the lambda expression from the ansi-color-for-shell-mode :set
147 property. Additionally, modify shell-mode-hook to enable or
148 disable font-lock-mode for future shell buffers.
149 (ansi-color-for-shell-mode): The :set property calls
150 ansi-color-for-shell-mode-set instead of a lambda expression.
151
1522000-01-09 Alex Schroeder <alex@gnu.org>
153
154 * ansi-color.el (ansi-color-for-shell-mode): Doc change.
155 (ansi-color-context): New variable.
156 (ansi-color-apply): Save context between calls.
157
fb55ff10
EZ
1582001-01-09 Eli Zaretskii <eliz@is.elta.co.il>
159
29910493
EZ
160 * isearch.el (isearch, isearch-lazy-highlight-face): New
161 definitions for face colors and attributes.
162
fb55ff10
EZ
163 * wid-edit.el (widget-choose): Call display-popup-menus-p instead
164 of display-mouse-p.
165
134d6265
KH
1662001-01-09 Kenichi Handa <handa@etl.go.jp>
167
168 * international/mule.el (make-coding-system): If the coding system
169 accepts extra latin codes, register such codes as safe for the
170 coding system.
171
78b8eee8
RS
1722001-01-08 Richard M. Stallman <rms@caffeine.ai.mit.edu>
173
984c9f75
RS
174 * emacs-lisp/bytecomp.el (byte-compile-log-1): In non-batch case,
175 don't mention the file name or the date here, because they are
176 logged at the start of the file.
177
1782001-01-08 Richard M. Stallman <rms@gnu.org>
179
78b8eee8
RS
180 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
181 Change screen-width to frame-width.
182
1460e5d4
EZ
1832001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
184
185 * info.el (Info-search): Print the default as part of the prompt.
186
56f24bc1
AS
1872001-01-08 Andre Spiegel <spiegel@gnu.org>
188
189 * vc.el (vc-default-latest-on-branch-p): New function, replaces
190 constant implementations in backends.
191
192 * vc-cvs.el (vc-cvs-latest-on-branch-p): Removed.
193 (vc-cvs-checkout): Renamed arg WRITABLE to EDITABLE.
194
195 * vc-rcs.el (vc-rcs-checkout, vc-rcs-cancel-version): Renamed arg
196 WRITABLE to EDITABLE.
197
198 * vc-sccs.el (vc-sccs-latest-on-branch-p): Removed.
199 (vc-sccs-checkout, vc-sccs-cancel-version): Renamed arg WRITABLE
200 to EDITABLE.
201
b7812d30
EZ
2022001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
203
204 * emacs-lisp/copyright.el (copyright-current-year): Now a defvar.
205 (copyright, copyright-update): Compute the current year at run
206 time.
207
7e56ea04
GM
2082001-01-08 Gerd Moellmann <gerd@gnu.org>
209
210 * isearch.el (isearch-old-signal-hook): Removed.
211 (isearch-mode): Add isearch-done to kbd-macro-termination-hook
212 instead of setting signal-hook-function.
213 (isearch-done): Remove isearch-done from kbd-macro-termination-hook.
214
a758f97d
GM
2152001-01-08 Kevin Gallagher <kevingal@onramp.net>
216
217 * emulation/edt.el: Update to version 4.0. Provide support for
218 EDT scroll margins at top and bottom of the window. Provide an
219 emulation of the EDT SUBS command (bound to GOLD-Enter, by
220 default). Enhance edt-quit, bound to GOLD-q by default, to warn
221 user when file-related buffer modifications exist. Provide
222 support for running EDT Emulation in XEmacs. Provide customize
223 access to some user updatable variables. Add Commentary section
224 to file header. Fixed a few minor bugs and cleaned up some code.
225
226 * emulation/edt-mapper.el: Update to version 4.0. Provide support
227 for detecting a keypress that generates an ASCII key sequence.
228 (Previously, only a keypress that generates a vector was
229 recognized.) Embed Window Manager name into name of the generated
230 EDT Emulation initialization file since the initialization file is
231 Window Manager specific. Add Commentary section to file header.
232
30db89f9
EZ
2332001-01-07 Eli Zaretskii <eliz@is.elta.co.il>
234
4deb3ba9
EZ
235 * mail/sendmail.el (mail-mode): Doc fix.
236
30db89f9
EZ
237 * info.el (Info-goto-emacs-command-node): Doc fix.
238 (Info-goto-emacs-key-command-node): Doc fix.
239
c3f2772b
EZ
2402001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
241
242 * ediff-ve.el (noninteractive): Don't load generic-sc on MS-DOS
243 systems without long file-name support.
244
0dac6924
AI
2452001-01-06 Andrew Innes <andrewi@gnu.org>
246
247 * makefile.w32-in (custom-deps): Set EMACSLOADPATH explicitly.
248
4e6ef391
EZ
2492001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
250
380866a2
EZ
251 * isearch.el (isearch-lazy-highlight-remove-overlays): Doc fix.
252 (isearch-lazy-highlight-update): Doc fix.
253
148b5960
EZ
254 * ffap.el (ffap-bindings): Doc fix.
255
4e6ef391
EZ
256 * dired-x.el (dired-virtual-guess-dir): Doc fix.
257
4cb1bcc2
DL
2582001-01-05 Dave Love <fx@gnu.org>
259
260 * emacs-lisp/cl-seq.el (remove, remq): Remove.
261
3828218c
GM
2622001-01-05 Gerd Moellmann <gerd@gnu.org>
263
f1ade7d3
GM
264 * mouse-drag.el (mouse-drag-safe-scroll): Bind
265 scroll-preserve-screen-position to nil.
266
1f4139d5
GM
267 * isearch.el (isearch-old-signal-hook): New variable.
268 (isearch-mode): Set signal-hook-function to isearch-done.
269 (isearch-done): Restore old signal-hook-function.
270
3828218c
GM
271 * info.el (Info-fontify-node): Mark one more char as intangible.
272
3970013f
KH
2732000-01-05 Kenichi Handa <handa@etl.go.jp>
274
3828218c 275 * composite.el (compose-last-chars): New argument COMPONENTS. If
3970013f
KH
276 it is non-nil, compose preceding characters by compose-region with
277 COMPONENTS.
278
279 * international/quail.el (quail-input-string-to-events): New function.
280 (quail-input-method): Convert input string to events here.
281 (quail-start-translation): Return input string, not event list.
282 (quail-start-conversion): Likewise.
283
f3b05e99
GM
2842001-01-04 Gerd Moellmann <gerd@gnu.org>
285
2f5ded21
GM
286 * tooltip.el (tooltip-cancel-delayed-tip)
287 (tooltip-start-delayed-tip): Renamed from tooltip-disable-timeout
288 and tooltip-add-timeout.
289 (tooltip-show): Set border color from faces's foreground.
290 (tooltip-show-help-function): If called with the same help string
291 as last time, do nothing.
292 (tooltip-help-tips): Don't set tooltip-help-message to nil.
293
0f2ac578
GM
294 * startup.el (fancy-splash-screens): Don't bind show-help-function
295 to nil.
296
f3b05e99
GM
297 * tooltip.el (tooltip-frame-parameters): Remove colors.
298 (tooltip): New face
299 (tooltip-set-param): New function.
300 (tooltip-show): Set up color frame parameters from face `tooltip'.
301 Display the tooltip text in face `tooltip'.
302
8416e94a
DL
3032001-01-04 Dave Love <fx@gnu.org>
304
305 * whitespace.el (whitespace-global-mode): Fix typo.
306
307 * hilit19.el, mail/rnewspost.el, mail/rnews.el: Moved to obsolete.
308
30db89f9
EZ
3092001-01-04 Eli Zaretskii <eliz@is.elta.co.il>
310
311 * help.el (help-for-help): Fix a typo in a doc string. From
312 kwzh@gnu.org (Karl Heuer).
313
b847eb8c
DL
3142001-01-03 Dave Love <fx@gnu.org>
315
316 * dired-x.el: Doc fixes. Maintainer change.
317 (dired-guess-shell-gnutar, dired-guess-shell-znew-switches): Fix
318 :type.
319 (dired-guess-shell-alist-default): Don't use xloadimage for PNG.
320 (dired-guess-shell-alist-user): Customize.
321 (dired-x-help-address): Set to bug-gnu-emacs.
322 (dired-x-maintainer, dired-x-file, dired-x-version): Deleted.
323 (dired-default-directory): Renamed from default-directory.
324
325 * hl-line.el (hl-line): Doc fix.
326
43c4b570
KF
3272001-01-03 Karl Fogel <kfogel@red-bean.com>
328
1bf6b1bf 329 * mail/mail-hist.el (mail-hist-text-too-long-p): Doc fix.
43c4b570 330
984c9f75 3312001-01-02 Richard M. Stallman <rms@gnu.org>
5297fb00
RS
332
333 * isearch.el (isearch-lazy-highlight-cleanup): Arg now says
334 to remove all the current alternative-match highlighting.
335 If nil, remove only what's outside the current window.
336 (isearch-lazy-highlight-remove-overlays): Take optional
337 region within which NOT to remove them.
338 (isearch-lazy-highlight-new-loop): Greatly simplified.
339 (isearch-lazy-highlight-update): Find all the other occurrences
340 visible in the window, in just one call.
341 (isearch-lazy-highlight-start): Now holds start of region to scan.
342 (isearch-lazy-highlight-end): Now holds end of region to scan.
343 (isearch-lazy-highlight-wrapped): Variable deleted.
344 (isearch-lazy-highlight-search): Function deleted.
345
13d6a61c
AI
3462000-01-02 Andrew Innes <andrewi@gnu.org>
347
348 * w32-fns.el (convert-standard-filename): Do length check on name
349 before aref.
350
064866e7
DL
3512001-01-02 Dave Love <fx@gnu.org>
352
b33e041b
DL
353 * progmodes/cperl-mode.el (cperl-invalid-face): Don't double-quote
354 value.
355 (cperl-init-faces): Allow cperl-invalid-face to be a normal face.
356
357 * ls-lisp.el (ls-lisp) <defgroup>: Add :version.
358
8166ffd5
DL
359 * net/browse-url.el (browse-url-filename-alist): Avoid backquote
360 read syntax.
361
064866e7
DL
362 * calendar/todo-mode.el (todo): Add :link, :version.
363 (todo-save-top-priorities): Remove autoload cookie.
364 (todo-add-category, todo-add-item-non-interactively)
365 (todo-insert-item, todo-mode, todo-cp, todo-show): Fix autoload
366 cookie.
367
6dde6abc
GM
3682001-01-02 Gerd Moellmann <gerd@gnu.org>
369
370 * comint.el (comint-input-history-ignore): New variable.
371 (comint-read-input-ring): Ignore entries matching
372 comint-input-history-ignore.
373
1a8a9daf
GM
3742001-01-02 Eric M. Ludlam <zappo@gnu.org>
375
376 * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): New Variable.
377 (lm-copyright-mark): New function.
378 (lm-crack-copyright): New function.
379 (lm-verify): Check that the file has a copyright.
380 Check that the file is copyright Free Software Foundation.
381
9c92eb53
KH
3822000-12-30 Kenichi Handa <handa@etl.go.jp>
383
384 * international/mule-diag.el (print-fontset): Indent font name by
385 24 columns, not 25.
386
49172314
GM
3872000-12-29 Gerd Moellmann <gerd@gnu.org>
388
762a68ec
GM
389 * textmodes/flyspell.el (mail-mode-flyspell-verify): Spell-check
390 in Subject line.
391
49172314
GM
392 * mail/mailabbrev.el (mail-abbrevs-enable, mail-abbrevs-disable):
393 Use mail-mode-hook instead of mail-setup-hook. Otherwise
394 continuing an interrupted message with C-u C-x m for instence,
395 winds up in Mail mode without abbrevs.
396
bd7a2e26
GM
3972000-12-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
398
399 * ps-print.el: Handle form feed better when ps-zebra-stripe-follow is
400 non-nil. Adding almost all customization variables on ps-setup. Doc
2f5ded21 401 fix.
bd7a2e26
GM
402 (ps-print-version): New version number (6.3.3).
403 (ps-end-with-control-d): Initialization fix.
404 (ps-lines-printed): New var.
405 (ps-skip-newline): New fun.
406 (ps-setup, ps-prologue-file, ps-begin-job, ps-begin-page)
407 (ps-next-line, ps-continue-line, ps-plot-region)
408 (ps-generate-postscript-with-faces, ps-end-job): Code fix.
409
2b3f28a4
KH
4102000-12-29 Kenichi Handa <handa@etl.go.jp>
411
412 * international/fontset.el (x-complement-fontset-spec): Resolve
413 ASCII font name so that the same family name is used for fonts
414 registered in x-font-name-charset-alist.
415 (create-fontset-from-fontset-spec): Adjusted for the above change.
416 The name of fontset alias should be a unresolved ASCII font name.
417
2ece9174
GM
4182000-12-28 Gerd Moellmann <gerd@gnu.org>
419
420 * simple.el (delete-key-deletes-forward-mode): Bind backspace
421 and delete in isearch-mode-map.
422
cbe3ad7a
RS
4232000-12-28 Richard M. Stallman <rms@gnu.org>
424
425 * dired-x.el (dired-guess-shell-alist-default):
426 Use xpdf instead of acroread.
427
a816f1c5
KH
4282000-12-28 Kenichi Handa <handa@etl.go.jp>
429
f086e73c
KH
430 * textmodes/artist.el (artist-butlast): Deleted.
431 (artist-ellipse-mirror-quadrant): Use butlast instead of
defac922 432 artist-butlast.
f086e73c 433
a816f1c5
KH
434 * subr.el (butlast, nbutlast): Moved from cl.el to here.
435
436 * emacs-lisp/cl.el (butlast, nbutlast): Moved to subr.el.
437
b202115b
EZ
4382000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
439
440 From Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>:
441
442 * ls-lisp.el: Better support for the Mac and MS-Windows.
443 (ls-lisp): New defgroup.
444 (ls-lisp-emulation, ls-lisp-ignore-case, ls-lisp-dirs-first)
445 (ls-lisp-verbosity, ls-lisp-use-insert-directory-program)
446 (ls-lisp-support-shell-wildcards): New defcustoms.
447 (ls-lisp-parse-symlink): New function.
448 (insert-directory): Code to convert switches to a list and set up
449 the wildcard argument copied from ls-lisp-insert-directory.
450 (ls-lisp-insert-directory): New argument TIME-INDEX. Add support
451 for -C and -R switches.
452 (ls-lisp-column-format): New function.
453 (ls-lisp-delete-matching, ls-lisp-handle-switches)
454 (ls-lisp-format-time): Add doc strings.
455 (ls-lisp-handle-switches): Handle -U, -S, -X, and -F switches.
456 Support ls-lisp-dirs-first.
457 (ls-lisp-classify, ls-lisp-extension): New functions.
458 (ls-lisp-format): Optionally support emulation of symlinks.
459 Support -i, -s, and -G switches.
460
6061fbf0
GM
4612000-12-27 Gerd Moellmann <gerd@gnu.org>
462
5e25feee
GM
463 * textmodes/texinfo.el (texinfo-mode): Set fill-column to 70.
464
6061fbf0
GM
465 * version.el (emacs-version): Print X scroll bar information.
466
467 * scroll-bar.el (toplevel): Check for x-toolkit-scroll-bars
468 instead of x-toolkit-scroll-bars-p.
469
470 * loadup.el (toplevel): Check for x-toolkit-scroll-bars instead
471 of x-toolkit-scroll-bars-p.
472
25050dab
EZ
4732000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
474
475 * ffap.el (ffap-bindings): Make interactive and add an autoload
476 cookie.
477 (ffap-bindings): Doc fix, to reflect the above change.
478
c1786874
KH
4792000-12-27 Kenichi Handa <handa@etl.go.jp>
480
481 * term.el (term-char-mode): Define all non-ascii self-inserting
482 characters to 'term-send-raw in term-raw-map.
483
7261ece3 4842000-12-25 Michael Kifer <kifer@cs.sunysb.edu>
6061fbf0
GM
485
486 * viper-init (viper-restore-cursor-type): Added condition-case
7261ece3
MK
487 guard.
488
6061fbf0 489 * ediff-init.el (ediff-quit-hook,ediff-suspend-hook): Changed
7261ece3 490 initialization; use add-hook.
6061fbf0 491 (ediff-file-remote-p): Use file-local-copy.
7261ece3 492
6061fbf0 493 * ediff-ptch.el (ediff-prompt-for-patch-buffer): Improved defaults.
7261ece3 494
6061fbf0
GM
495 * ediff.el (ediff-patch-buffer): Bug fix.
496 (ediff-revision): Allow selection of the file at the prompt.
7261ece3 497
83f40583
SM
4982000-12-23 Stefan Monnier <monnier@cs.yale.edu>
499
500 * subr.el (combine-run-hooks): Remove.
501
502 * emacs-lisp/edebug.el (define-minor-mode): Improve the spec
503 and remove the rogue second spec.
504
bdd6d4e8
GM
5052000-12-23 Gerd Moellmann <gerd@gnu.org>
506
507 * progmodes/compile.el (compilation-forget-errors): Fix indentation.
508
26736ce3
SM
5092000-12-22 Stefan Monnier <monnier@cs.yale.edu>
510
0e86b6b0
SM
511 * smerge-mode.el (smerge-basic-map): Use `=' rather than `d'.
512 Use minibuffer menu prompt for the `=' prefix.
513 (smerge-command-prefix): Change default to C-^.
6eabfb26 514 (smerge-mode): Don't assume font-lock doesn't move point.
0e86b6b0 515
26736ce3
SM
516 * skeleton.el (skeleton-internal-1): Make sure the first line of
517 the region is also re-indented.
d21584d6
SM
518 (skeleton-end-newline): New var.
519 (skeleton-end-hook): Use it.
26736ce3 520
95fa4fd7
MB
5212000-12-22 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
522
523 * comint.el (comint-password-prompt-regexp): Support CVS.
524
f060b834
GM
5252000-12-22 Gerd Moellmann <gerd@gnu.org>
526
856ff7a7
GM
527 * simple.el (delete-key-deletes-forward-mode): Simplify. Also
528 backspace key combinations, depending on
529 delete-key-deletes-forward.
530
531 * bindings.el ([C-backspace]): Bind C-backspace to kill-word.
532
f060b834
GM
533 * simple.el (delete-key-deletes-forward): Doc fix.
534
653558a1
GM
5352000-08-22 Emmanuel Briot <briot@gnat.com>
536
537 * xml.el (top level comment): Updated to reflect the fact that
26736ce3 538 white spaces are relevant in the XML file.
653558a1
GM
539 (xml-parse-file): Do not kill an existing Emacs buffer if the file
540 to parse was already edited. This allows for on-the-fly analysis
26736ce3 541 of XML files.
653558a1
GM
542 (xml-parse-tag): Check that the casing is the same in the start
543 tag and end tag, since XML is case-sensitive. Allows for spaces
544 in the end tag, after the name of the tag.
545 (xml-parse-attlist): Allow for the character '-' in the name of
546 attributes, as in the standard http-equiv attribute Do not save
26736ce3 547 the properties in the XML tree, since they are not relevant.
653558a1 548
3ad93d8d
SM
5492000-12-21 Stefan Monnier <monnier@cs.yale.edu>
550
551 * generic.el (generic-read-type): Undo last change, inline into
552 `generic-mode' and then remove.
553 (generic-mode): Inline generic-read-type.
554 (define-generic-mode): Push the symbol name rather than the symbol
555 onto generic-mode-list.
556
177f4e88
GM
5572000-12-21 Gerd Moellmann <gerd@gnu.org>
558
8e15274f
GM
559 * generic.el (generic-read-type): Build an alist for
560 completing-read as in 20.7.
561
562 * play/landmark.el (lm): Use interactive spec `P'.
563 (toplevel): Don't set debug-on-error.
564
177f4e88
GM
565 * server.el (server-switch-buffer): Choose a window on a visible
566 frame.
567
6ba384dc
GM
5682000-12-21 Dave Pearson <davep@davep.org>
569
570 * quickurl.el: Commentry change, I've moved my web site.
571
647a066c
GM
5722000-12-21 Vinicius Jose Latorre <vinicius@cpqd.com.br>
573
574 * ebnf2ps.el: Fix a problem with skip-chars-forward: it doesn't accept
575 ranges like \177-\237, but accepts the character sequence from \177 to
576 \237. Doc fix.
577 (ebnf-version): New version (3.4).
578 (ebnf-setup): Code fix.
579 (ebnf-range-regexp): New fun.
580 (ebnf-8-bit-chars): Const fix.
581
582 * ebnf-bnf.el: Fix the same problem as described on ebnf2ps.el log
583 entry. Doc fix.
584 (ebnf-bnf-lex): Code fix.
585 (ebnf-bnf-comment-chars): Const fix.
586
587 * ebnf-iso.el: Fix the same problem as described on ebnf2ps.el log
588 entry. Doc fix.
589 (ebnf-iso-comment-chars): Const fix.
590
591 * ebnf-otz.el: Doc fix.
592
593 * ebnf-yac.el: Fix the same problem as described on ebnf2ps.el log
594 entry. Doc fix.
595 (ebnf-yac-skip-code): Code fix.
596 (ebnf-yac-comment-chars): Const fix.
597
bc22fd18
EZ
5982000-12-21 Eli Zaretskii <eliz@is.elta.co.il>
599
600 * files.el (insert-directory-safely): New function.
834d23b2
EZ
601 (recover-file): Use it instead of insert-directory. From Markus
602 Rost <markus.rost@mathematik.uni-regensburg.de>
bc22fd18 603
587fc3f9
KH
6042000-12-21 Kenichi Handa <handa@etl.go.jp>
605
eeefcfde 606 * international/mule-cmds.el (select-safe-coding-system): Check
4d513a57 607 coding-category-list more rigidly. Improve help message.
eeefcfde 608
587fc3f9
KH
609 * dired.el (dired-move-to-filename-regexp): Fix previous change.
610
01860fb9
MB
6112000-12-21 Miles Bader <miles@gnu.org>
612
587fc3f9
KH
613 * mail/sendmail.el (mail-mode): Set `comment-start' to the yank
614 prefix.
01860fb9 615
3f9d67a6
KH
6162000-12-21 Kenichi Handa <handa@etl.go.jp>
617
9fd1c1f7
KH
618 * international/mule-diag.el (describe-char-after): Make *Help*
619 buffer inherit multibyteness of the current buffer.
620
3f9d67a6
KH
621 * international/mule.el (make-char): Docstring adjusted for the
622 change of make-char-internal.
623
c9669fac
SM
6242000-12-20 Stefan Monnier <monnier@cs.yale.edu>
625
626 * international/iso-cvt.el: Docstrings fix.
627
19594307
DL
6282000-12-20 Dave Love <fx@gnu.org>
629
630 * subr.el (eval-after-load): Doc fix.
631
b1a447b3
KH
6322000-12-20 Kenichi Handa <handa@etl.go.jp>
633
634 * jka-compr.el (jka-compr-partial-uncompress): Don't use `concat'
635 for numbers.
636
09877d5d
MB
6372000-12-20 Miles Bader <miles@gnu.org>
638
639 * international/quail.el (quail-help): Resize the help window
640 again after it has all its contents. Remove unneeded progn.
641
71d4497a
GM
6422000-12-19 Gerd Moellmann <gerd@gnu.org>
643
644 * pcmpl-linux.el: Fix copy/paste error.
645
741e56a0
AI
6462000-12-19 Andrew Innes <andrewi@gnu.org>
647
648 * simple.el (delete-key-deletes-forward-mode): Fix typo in
649 docstring.
650
cc24d91c
CD
6512000-12-19 Carsten Dominik <dominik@strw.leidenuniv.nl>
652
ba4c05aa
CD
653 * progmodes/idlw-rinfo.el: Fixed copyright notice.
654
655 * progmodes/idlw-toolbar.el: Fixed copyright notice.
656
657 * progmodes/idlw-shell.el: Fixed copyright notice.
658
659 * progmodes/idlwave.el: Fixed copyright notice.
660
71d4497a 661 * textmodes/reftex-dcr.el (reftex-view-crossref): Added SPACE and
cc24d91c
CD
662 TAB as key separators.
663
524c8caf
GM
6642000-12-19 Alex Schroeder <alex@gnu.org>
665
666 * sql.el (sql-sybase-options): New option.
667 (sql-sybase): Use it. Add sql-database to the list of parameters
668 provided for login. The options -w 2048 -n are not used any more.
669 (sql-postgres-options): Changed default from "--pset" to "-P".
670 (sql-mysql-options): Doc change.
671 (sql-stop): Doc change.
672
b5fa513d
KH
6732000-12-19 Kenichi Handa <handa@etl.go.jp>
674
675 * international/quail.el (quail-input-method): Always hide
676 the guidance buffer on exiting.
677
91c9e6ce
GM
6782000-12-18 Gerd Moellmann <gerd@gnu.org>
679
c6da4eb4
GM
680 * tooltip.el (tooltip-mode): Signal an error if x-show-tip
681 isn't fboundp.
682
3d2a0e0b
GM
683 * server.el (server-buffer-done): Bury the buffer before
684 killing it.
685
91c9e6ce
GM
686 * faces.el (face-spec-set): Interpret a nil in specs for
687 foreground and background colors as `unspecified', for
688 compatibility with 20.x.
689
40fa0008
DL
6902000-12-18 Dave Love <fx@gnu.org>
691
22adbe54
DL
692 * simple.el (mail-user-agent): Doc fix.
693 (input-mode-8-bit): Removed.
694
695 * international/mule.el (set-keyboard-coding-system): Doc fix.
696 (keyboard-coding-system): New option.
697
40fa0008
DL
698 * mail/sendmail.el (send-mail-function): Customize.
699
6f4745e2
EZ
7002000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
701
702 * international/codepage.el (cp866-decode-table): New table.
703
82b90229
GM
7042000-12-18 Gerd Moellmann <gerd@gnu.org>
705
706 * version.el (emacs-version): Remove `%a' from the time format
707 because the weekday doesn't fit well into each locale.
708
5a047002
MB
7092000-12-18 Miles Bader <miles@gnu.org>
710
7f49aa07
MB
711 * image-file.el (image-file-name-extensions): Add "pgm" and "ppm".
712
5a047002
MB
713 * textmodes/artist.el (artist-replace-chars, artist-replace-char):
714 Check that emacs-major-version is `=' to 20, not `>='.
715 (artist-replace-chars): Use `make-string' instead of a loop.
716
22ea2607
EZ
7172000-12-17 Stefan Monnier <monnier@cs.yale.edu>
718
719 * pcvs.el (cvs-diff-backup-extractor): Return full-path for file.
720 (cvs-execute-single-file): Don't change directory.
721 Patch from Per Cederqvist.
722
6c825f8e
EZ
7232000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
724
725 * textmodes/ispell.el (check-ispell-version): If
726 `ispell-program-name' is "aspell", pass it the -v switch instead
727 of -vv.
728
8ff06845
KH
7292000-12-16 Kenichi Handa <handa@etl.go.jp>
730
af4bb4c8
KH
731 * international/mule-diag.el (mule-diag): Insert information about
732 configure options, multibyte awareness, language env.
733
8ff06845
KH
734 * international/ja-dic-cnv.el (skkdic-get-candidate-list): Fix the
735 regexp to search for candidates.
736
b24e84ab
EZ
7372000-12-15 Eli Zaretskii <eliz@is.elta.co.il>
738
739 * info.el (Info-forward-node): If the node has an
740 Info-header-line, widen the buffer before searching for "next:"
741 and "up:" pointers, and set the search limit to stay in the
742 current node.
743
7981d89f
MB
7442000-12-16 Miles Bader <miles@gnu.org>
745
746 * simple.el (delete-trailing-whitespace): Remove extraneous let.
747
88ee7917
MB
7482000-12-15 Miles Bader <miles@gnu.org>
749
750 * comint.el (comint-send-string, comint-send-region): Also accept
751 a buffer, buffer-name, or nil for PROCESS, for compatibility with
752 process-send-string/region.
753
0c28d842
GM
7542000-12-15 Gerd Moellmann <gerd@gnu.org>
755
4ea7fdca
GM
756 * isearch.el (isearch-lazy-highlight-max): New user-option.
757 (isearch-lazy-highlight-update): Don't highlight more than
758 isearch-lazy-highlight-max matches.
759
0c28d842
GM
760 * mail/mh-utils.el (mh-find-path): Set read-mail-command.
761
984c9f75 7622000-12-15 Richard M. Stallman <rms@gnu.org>
3ffa545b 763
8062e53a
GM
764 * sort.el (sort-columns): Fix error message.
765
3ffa545b
GM
766 * dabbrev.el (dabbrev--last-case-pattern): Value is now
767 `upcase' or `downcase' or nil.
768 (dabbrev-expand): Don't do anything with dabbrev--last-case-pattern.
769 Pass new record-case-pattern arg to dabbrev--substitute-expansion.
770 (dabbrev--substitute-expansion): New arg record-case-pattern.
771 If it is non-nil, set dabbrev--last-case-pattern.
772 If ABBREV is " ", use dabbrev--last-case-pattern to change EXPANSION.
773
774 * dabbrev.el (dabbrev--find-expansion): Remove extra nreverse.
775
c2d7f289
MB
7762000-12-15 Miles Bader <miles@gnu.org>
777
b6348438
MB
778 * paths.el (Info-default-directory-list): Don't delete
779 configure-info-directory from the list of standard info
780 directories when appending it to the end -- their order is
781 important.
782
f9056dd9
MB
783 * faces.el (read-face-attribute): If there's no entry for the
784 user's input in VALID, just use it as-is (this will often result
785 in an error, but it may be OK for e.g. colors using hexadecimal
786 notation, and at least will yield a better error message).
787
c2d7f289
MB
788 * window.el (mode-line-window-height-fudge): Function removed.
789 (height-affecting-face-attributes, mode-line-window-height-fudge):
790 Variables removed.
791 * textmodes/ispell.el (ispell-overlay-window): Ensure that the new
792 window is really the right size. Use vertical-motion
793 rather than forward-line.
794 (ispell-help): Don't use ispell-mode-line-window-height-fudge.
795 (ispell-command-loop, ispell-show-choices): Use the variable
796 ispell-choices-win-default-height, rather than the function.
797 (ispell-choices-win-default-height): Function removed.
798 (ispell-mode-line-window-height-fudge): Function removed.
799
8f530b95
SM
8002000-12-14 Stefan Monnier <monnier@cs.yale.edu>
801
802 * add-log.el (add-change-log-entry): Only expand-file-name if non-nil.
803
6d435deb
EZ
8042000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
805
4dddb0b7
EZ
806 * paths.el (Info-default-directory-list): If
807 configure-info-directory is not one of the standard directories,
808 put it first in the list; otherwise put it last. Doc string
809 changed accordingly.
810
811 * info.el (Info-directory-list): Change doc string to reflect the
812 change in Info-default-directory-list.
813
6d435deb
EZ
814 * simple.el (delete-key-deletes-forward-mode): Treat ms-dos and
815 windows-nt as windowed environments, even under -nw.
816
817 * startup.el (command-line): Don't call x-backspace-delete-keys-p
818 if not fboundp. Switch delete-forward mode for the <delete> key
819 on all PC platforms, even under -nw.
820
821 * term/internal.el ([M-delete]): Remap to M-d.
822
9d7d9263
GM
8232000-12-14 Gerd Moellmann <gerd@gnu.org>
824
825 * emacs-lisp/lisp-mnt.el: Change maintainer to FSF.
826
7cf0153a
EZ
8272000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
828
829 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
830
5e5b3d41
GM
8312000-12-14 Gerd Moellmann <gerd@gnu.org>
832
5f368d29
GM
833 * startup.el (command-line): Call delete-key-deletes-forward-mode,
834 if appropriate.
835
836 * simple.el (delete-key-deletes-forward): New user-option.
837 (delete-key-deletes-forward-mode): New function.
838
9d7d9263 839 * bindings.el: Bind `delete' to backward-delete-char.
5f368d29 840
5e5b3d41
GM
841 * emacs-lisp/easymenu.el (easy-menu-current-active-maps): Test
842 if symbol is bound before getting its value.
843
844 * tooltip.el (tooltip-show): If an error is signaled in
845 x-show-tip, display that error, and display the help in the
846 echo area.
c2d7f289 847
191b83b6
KH
8482000-12-14 Kenichi Handa <handa@etl.go.jp>
849
850 * international/ja-dic-cnv.el (skkdic-set-okuri-nasi): Show
851 "... entries" messages for every 10000 entries, not 10.
852
6192b604
KF
8532000-12-13 Karl Fogel <kfogel@red-bean.com>
854
855 * bookmark.el: Provide a generic exit hook, as suggested by
856 Ovidiu Predescu <ovidiu@cup.hp.com>:
a924cf63
EZ
857 (bookmark-exit-hook): New var.
858 (bookmark-exit-hook-internal): New func, replaces
6192b604
KF
859 old raw lambda form in `kill-emacs-hook', and runs new
860 `bookmark-exit-hooks'. No longer tests for the bookmark feature,
861 as logically that feature must have been provided if this function
862 is running.
863 Removed ;;;###autoload before the `add-hook' call.
864
5edf6b55
SM
8652000-12-13 Stefan Monnier <monnier@cs.yale.edu>
866
867 * emacs-lisp/easymenu.el (easy-menu-define): Setup indentation.
868 (easy-menu-current-active-maps): New function.
869 (easy-menu-get-map): Use it.
870 Make a proper menu entry when creating a new keymap.
871
16b5e8e6
KH
8722000-12-13 Kenichi Handa <handa@etl.go.jp>
873
d49fc4eb
KH
874 * international/characters.el: Fix cases and syntaxes for
875 mule-unicode-0100-24ff.
876
3b53d876
KH
877 * dired.el (dired-move-to-filename-regexp): Fixed for the case
878 that a Japanese character is not appended after day and year.
879
16b5e8e6
KH
880 * info.el (Info-suffix-list): Change format for a command that
881 requires arguments.
882 (info-insert-file-contents): Adjusted for the above change.
883
1df1c518
AS
8842000-12-12 Andreas Schwab <schwab@suse.de>
885
886 * tar-mode.el (tar-extract): Base the name of the subfile buffer
887 on the name of the tar buffer. Verify that the existing buffer is
888 visiting the same subfile.
889
a7a07b98
DL
8902000-12-12 Dave Love <fx@gnu.org>
891
892 * subdirs.el: Add obsolete.
893
4fdbd809
GM
8942000-12-12 Gerd Moellmann <gerd@gnu.org>
895
bfdb75ee
GM
896 * mail/rmailsum.el (rmail-summary-expunge)
897 (rmail-summary-expunge-and-save): Use rmail-expunge-confirmed
898 instead of rmail-confirm-expunge.
899
4fdbd809
GM
900 * replace.el (perform-replace): Don't use an empty match adjacent
901 to a non-empty match when computing the next match before the
902 replacement is performed.
903
e9a59cad
GM
9042000-12-12 Milan Zamazal <pdm@freesoft.cz>
905
906 * progmodes/glasses.el: Use `define-minor-mode' for the minor mode
907 definition (patch by Stefan Monnier).
908 (glasses-mode): Use jit-lock instead of `after-change-functions'
909 (patch by Stefan Monnier).
910
c2def7a0
MB
9112000-12-12 Miles Bader <miles@gnu.org>
912
913 * info.el (Info-last-preorder): Don't barf on nodes without a prev.
914 (Info-scroll-down): Respect `Info-scroll-prefer-subnodes'.
915
591b63b4
AC
9162000-12-12 Andrew Choi <akochoi@i-cable.com>
917
918 * term/mac-win.el: Remove load for ls-lisp.
919
a924cf63 920 * loadup.el: Load ls-lisp for system-type `macos'.
591b63b4 921
5ff4ba3d
MB
9222000-12-12 Miles Bader <miles@gnu.org>
923
924 * simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter.
925 Respect field end too.
926 (just-one-space): Respect fields as `delete-horizontal-space'.
927 (newline-and-indent, reindent-then-newline-and-indent): Use
928 `delete-horizontal-space'.
929
d0c679bc
SM
9302000-12-11 Stefan Monnier <monnier@cs.yale.edu>
931
adf9c994
SM
932 * newcomment.el (comment-indent-new-line): Use delete-horizontal-space
933 (so as to obey the field property in the minibuffer).
934
4b0cd42d
SM
935 * obsolete/c-mode.el: Moved from lisp/progmodes.
936 * obsolete/auto-show.el: Moved from lisp.
937 * obsolete/ooutline.el: Moved from lisp/textmodes.
d0c679bc 938
89f85863
CD
9392000-12-11 Carsten Dominik <dominik@strw.leidenuniv.nl>
940
941 * progmodes/idlwave.el: Updated to IDLWAVE version 4.7. Too many
942 changes to list them here.
943
944 * progmodes/idlw-shell.el: Updated to IDLWAVE version 4.7. Too
945 many changes to list them here.
946
947 * progmodes/idlw-rinfo.el: Updated to IDLWAVE version 4.7. Too
948 many changes to list them here.
949
950 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version 4.7.
951
3e0d35ce
GM
9522000-12-11 Gerd Moellmann <gerd@gnu.org>
953
d990421f
GM
954 * simple.el (kill-new): Don't try to setcar kill-ring if it is
955 nil.
956
fda514f7
GM
957 * cus-edit.el (custom-save-variables, custom-save-faces):
958 Comment fix.
959
3e0d35ce
GM
960 * hscroll.el: Moved to `obsolete' subdir.
961
ff904dd6
MB
9622000-12-11 Miles Bader <miles@gnu.org>
963
964 * window.el (window-text-height): Function removed (now in C).
965
fb97d87f
SM
9662000-12-10 Stefan Monnier <monnier@cs.yale.edu>
967
968 * log-edit.el (log-edit-parent-buffer): New var.
969 (log-edit): Set it. Add BUFFER argument.
970 (log-edit-done): Use char-before.
971 Don't bother checking validity of vc-comment-ring.
972 Only bury the buffer if log-edit popped it up.
973
974 * pcvs.el: Update references to CVS-Edit (now Log-Edit).
975 (cvs-mode-diff-help): Remove.
976 (cvs-mode-commit): Use the new `log-edit' BUFFER argument.
802cf66c 977 (cvs-mode-marked): Set up the default for CMD manually.
fb97d87f
SM
978
979 * pcvs-defs.el (cvs-mode-diff-map): Use minibuffer menu prompt.
980 Remove binding for ? now made unnecessary.
981
7de77417
CD
9822000-12-10 Carsten Dominik <dominik@strw.leidenuniv.nl>
983
984 * textmodes/reftex.el (reftex-scanning-info-available-p): New
985 function
986 (reftex-TeX-master-file): Check for `tex-main-file' early enough.
987
988 * textmodes/reftex-global.el (reftex-create-tags-file): Fixed bug
989 when master file is not open.
990
4efa209f
SM
9912000-12-09 Stefan Monnier <monnier@cs.yale.edu>
992
993 * progmodes/ada-stmt.el: Update `maintainer'.
994
0a8052bd
GM
9952000-12-09 Stephen Gildea <gildea@alum.mit.edu>
996
997 * time-stamp.el (time-stamp-old-format-warn): Reorder custom
998 choices to match documentation string.
999
a12167c5
MB
10002000-12-09 Miles Bader <miles@gnu.org>
1001
2161605d
MB
1002 * minibuf-eldef.el: New file.
1003
a12167c5
MB
1004 * window.el (fit-window-to-buffer): Don't pass last argument to
1005 pos-visible-in-window-p, now that its meaning is inverted.
1006
9ea8de1b
EZ
10072000-12-08 Eli Zaretskii <eliz@is.elta.co.il>
1008
1009 * image.el (create-image): Doc fix; spotted by Per Cederqvist
1010 <ceder@lysator.liu.se>.
1011
5002ddbb
SM
10122000-12-08 Stefan Monnier <monnier@cs.yale.edu>
1013
b6114d80
SM
1014 * autoinsert.el (auto-insert-alist): Add missing final \n.
1015
ee8d23ee
SM
1016 * pcvs-defs.el (cvs-menu): Move. Make submenu for diff commands.
1017 (cvs-menu-map): Remove.
1018 * pcvs.el (cvs-menu): Use `cvs-menu' rather than `cvs-menu-map'.
1019 (cvs-mode-quit): Turn it back into a plain function.
1020
5002ddbb 1021 * textmodes/texnfo-upd.el (texinfo-chapter-level-regexp)
ee8d23ee 1022 (texinfo-filter): Remove (move to texinfo.el).
5002ddbb
SM
1023
1024 * textmodes/texinfo.el: Move the (require 'cl) to the front of the
1025 file where it's more visible.
1026 (texinfo-filter, texinfo-chapter-level-regexp): New variables
1027 moved from texnfo-upd.el (for AUCTeX's compatibility, originally).
1028 (texinfo-mode): Use texinfo-chapter-level-regexp for page-delimiter.
1029 (texinfo-inside-macro-p): Only catch `scan-error's.
1030 (texinfo-inside-env-p): Make better use of the match info.
1031 (texinfo-insert-quote): Collapse calls to `texinfo-inside-macro-p'.
1032 (texinfo-insert-@end): Slight re-organization.
1033 Also remove useless `looking-at' call.
1034
30cd075d
AI
10352000-12-08 Andrew Innes <andrewi@gnu.org>
1036
1037 * w32-fns.el: Add clipboard support from term/w32-win.el, so it is
1038 accessible in -nw mode.
1039
1040 * term/w32-win.el: Remove stuff about selection timeout, which is
1041 irrelevant on Windows. Move clipboard support to w32-fns.el, so
1042 it is accessible in -nw mode.
1043
01b91009
DL
10442000-12-08 Dave Love <fx@gnu.org>
1045
1046 * emacs-lisp/lisp-mode.el (lisp-mode): Set
1047 font-lock-keywords-case-fold-search.
1048
842b2a94
GM
10492000-12-08 Gerd Moellmann <gerd@gnu.org>
1050
1051 * textmodes/ispell.el (ispell): Doc fix.
1052
f9d5f611
KH
10532000-12-08 Kenichi Handa <handa@etl.go.jp>
1054
1055 * international/quail.el (quail-insert-decode-map): Check the
1056 frame width of a window displaying the current buffer, not that of
1057 the selected frame.
1058 (quail-help): Make sure that the help buffer has window before
1059 inserting text in it.
1060
e04d21aa
SS
10612000-12-07 Sam Steingold <sds@gnu.org>
1062
1063 * loadup.el: Load emacs-lisp/backquote instead of autoloading.
1064 Backquote is used in isearch.el, so autoloading saves nothing.
1065
fc3e23a4
EZ
10662000-12-07 Eli Zaretskii <eliz@is.elta.co.il>
1067
137cad7c
EZ
1068 * startup.el (normal-top-level-add-subdirs-to-load-path): Ignore
1069 the CVS and RCS subdirectories case-insensitively.
1070
fc3e23a4
EZ
1071 * dired.el (dired-insert-directory): If file-system-info is
1072 fboundp, call it instead of invoking dired-free-space-program.
1073
796ecd10
GM
10742000-12-07 Gerd Moellmann <gerd@gnu.org>
1075
0f5f7c3e
GM
1076 * server.el (server-visit-files): Push files on file-name-history.
1077
3764ba49
GM
1078 * progmodes/cc-langs.el: Update copyright.
1079
8e7931da
GM
1080 * progmodes/idlw-shell.el, progmodes/idlwave.el: Update copyright.
1081
ae0d7485 1082 * bindings.el (mode-line-mode-menu): Add glasses-mode.
e04d21aa 1083
796ecd10
GM
1084 * bindings.el (mode-line-mode-menu): Reverse the order
1085 of define-keys so that the menu appears in alphabetical order.
1086
ae0d7485
GM
10872000-12-07 Milan Zamazal <pdm@freesoft.cz>
1088
1089 * progmodes/glasses.el (glasses-mode): Update mode line at the end
1090 of the function.
1091
e2849090
DL
10922000-12-07 Dave Love <fx@gnu.org>
1093
1094 * jka-compr.el (jka-compr-compression-info-list): Fix :type.
1095
1096 * facemenu.el (facemenu-unlisted-faces): Fix value.
1097
5c7f629c
SM
10982000-12-07 Stefan Monnier <monnier@cs.yale.edu>
1099
1100 * font-lock.el (font-lock-default-fontify-region):
1101 Include the terminating \n (off-by-one error).
1102 (font-lock-set-defaults): Use dolist.
1103
1104 * derived.el (define-derived-mode): Don't use combine-run-hooks.
1105
73481ae3
KH
11062000-12-07 Kenichi Handa <handa@etl.go.jp>
1107
ffbaa122
KH
1108 * international/mule-cmds.el (describe-language-environment): Fix
1109 for the case that an input method title is not string but a list.
1110
73481ae3
KH
1111 * ps-bdf.el (bdf-read-font-info): Modify the kludgy code for fonts
1112 of wrong SIZE record.
1113
e2896b22
DL
11142000-12-06 Dave Love <fx@gnu.org>
1115
67292061
DL
1116 * newcomment.el (comment-region, comment-dwim): Doc fix.
1117
1118 * textmodes/texinfo.el: Require tex-mode when compiling.
1119 (texinfo-update-node): Doc fix.
1120 (texinfo-imenu-generic-expression): Add @anchor.
1121 (texinfo-font-lock-keywords): Add @uref.
1122 (texinfo-inside-macro-p): Don't use ignore-errors.
1123 (texinfo-insert-quote): Match more contexts.
1124
e76938e7
DL
1125 * international/mule.el (decode-char, encode-char): Doc fix.
1126 (auto-coding-alist): Customize.
1127
1128 * files.el (load-file): Fix change of 2000-03-12.
1129
e2896b22
DL
1130 * wid-edit.el (widget-text-keymap): Doc fix.
1131
6610f4b2
AI
11322000-12-06 Andrew Innes <andrewi@gnu.org>
1133
1134 * makefile.w32-in (lisp): Set to an absolute directory, namely
1135 $(CURDIR).
1136
9e3366e4
EZ
11372000-12-06 Eli Zaretskii <eliz@is.elta.co.il>
1138
1139 * emacs-lisp/autoload.el (update-file-autoloads): Use raw-text to
1140 read generated-autoload-file, and set buffer-file-coding-system to
1141 raw-text-unix after reading the file.
1142
1143 * international/mule-conf.el (file-coding-system-alist): Use
1144 raw-text for reading loaddefs.el and raw-text-unix for writing
1145 it.
1146
d94d636f
GM
11472000-12-06 Gerd Moellmann <gerd@gnu.org>
1148
384333ee
GM
1149 * replace.el (occur): Make line-number-width 1 smaller for the
1150 colon following the line number.
1151
347d0813
GM
1152 * startup.el (fancy-splash-text, command-line-1): Use
1153 `File' for the menu name instead of `Files'.
e04d21aa 1154
d4b72d58
GM
1155 * tmm.el: Update copyright.
1156
d94d636f
GM
1157 * cus-start.el: Add entry for even-window-heights.
1158
6e424019
MB
11592000-12-06 Miles Bader <miles@gnu.org>
1160
1161 * faces.el (frame-set-background-mode): Avoid stomping on
1162 locally modified faces.
1163
e6477b58
KH
11642000-12-06 Kenichi Handa <handa@etl.go.jp>
1165
1166 * international/fontset.el: Correct the font registries for
1167 japanese-jisx0213-1 and japanese-jisx0213-2.
1168
21999ab9
GM
11692000-12-05 Gerd Moellmann <gerd@gnu.org>
1170
57d6e381
GM
1171 * textmodes/reftex-toc.el (reftex-toc-menu): Fix typo.
1172
21999ab9
GM
1173 * iswitchb.el: Update customization commentary.
1174
7422819c
GM
11752000-12-05 Rob Riepel <riepel@Stanford.EDU>
1176
1177 * emulation/tpu-edt.el (tpu-help): Fixed previous screen logic.
1178 (tpu-search-highlight): Fixed comparison of overlay end positions.
1179 (tpu-trim-line-ends): Implemented trimming logic locally.
1180
1181 * emulation/tpu-extras.el (tpu-write-file-hook)
1182 (tpu-set-cursor-bound): Replaced picture-clean with
1183 tpu-trim-line-ends.
1184
73daff18
KH
11852000-12-05 Kenichi Handa <handa@etl.go.jp>
1186
1187 * language/chinese.el (chinese-iso-8bit): Change mime-charset name
1188 to cn-gb.
1189 (cn-gb, gb2312): New aliases for chinese-iso-8bit.
1190
6a4cd002
DL
11912000-12-04 Dave Love <fx@gnu.org>
1192
1193 * emacs-lisp/cl-indent.el: Remove erroneous spec for condition-case.
1194
6452929e
GM
11952000-12-04 Gerd Moellmann <gerd@gnu.org>
1196
e04d21aa 1197 * mail/rmailsum.el (rmail-summary-expunge)
6452929e
GM
1198 (rmail-summary-expunge-and-save): Ask for confirmation with
1199 rmail-expunge-confirmed.
1200
1201 * mail/rmail.el (rmail-expunge-confirmed): New function.
1202 (rmail-expunge): Use it.
1203
0c68ce6f
GM
1204 * progmodes/etags.el (tag-partial-file-name-match-p): New function.
1205 (etags-recognize-tags-table, find-tag-in-order): New
1206 functionality: interpret file names as tags.
e04d21aa 1207
7a53d8c8
EZ
12082000-12-04 Eli Zaretskii <eliz@is.elta.co.il>
1209
1210 * info.el (Info-scroll-prefer-subnodes): New defcustom.
1211 (Info-scroll-up): If Info-scroll-prefer-subnodes is nil, don't
1212 visit the first subnode until the bottom of the current node is
1213 visible.
1214
caa15ef7
GM
12152000-12-04 Gerd Moellmann <gerd@gnu.org>
1216
1217 * format.el (format-decode): Don't change buffer's undo list.
1218
e225faa7
KH
12192000-12-04 Kenichi Handa <handa@etl.go.jp>
1220
1221 * faces.el (face-font-registry-alternatives): Add entries for CJK
1222 fonts. Doc-string adjusted for the actual usage of this data.
1223
1224 * international/fontset.el: Change the font registries for CJK
1225 fonts in the default fontset. Don't append '*' to registries.
1226
8b262a65
SM
12272000-12-03 Stefan Monnier <monnier@cs.yale.edu>
1228
e04d21aa 1229 * emacs-lisp/easy-mmode.el (define-derived-mode)
8b262a65
SM
1230 (easy-mmode-derived-mode-p): Remove (moved to derived.el).
1231
1232 * derived.el (define-derived-mode): Revived, moved from easy-mmode.el.
1233 (derived-mode-p): New function.
1234 (derived-mode-make-docstring): Add `docstring' argument.
1235 Use it if available and complete it if necessary.
1236
33c4460b
AS
12372000-12-03 Andreas Schwab <schwab@suse.de>
1238
1239 * type-break.el (type-break): Don't make parent of itself.
1240
5c9b3fac
MB
12412000-12-03 Miles Bader <miles@gnu.org>
1242
1243 * simple.el (delete-trailing-whitespace): Don't delete newlines too.
1244
27ce741e
SM
12452000-12-02 Stefan Monnier <monnier@cs.yale.edu>
1246
07c16ec4
SM
1247 * textmodes/tex-mode.el (tex-start-shell): Obey shell-file-name.
1248 (tex-main-file, tex-file): Simplify.
1249 (tex-generate-zap-file-name): Use subst-char-in-string.
1250 (tex-strip-dots): Remove.
1251
c19cc275
SM
1252 * tmm.el (tmm-get-keymap): Eval the menu name in `menu-item'.
1253
27ce741e
SM
1254 * textmodes/ispell.el (check-ispell-version): Don't use match-beginning
1255 to check if the match succeeded.
1256
285991dc
GM
12572000-12-02 Gerd Moellmann <gerd@gnu.org>
1258
1259 * startup.el (use-fancy-splash-screens-p): New function.
1260 (command-line-1): Use it to determine whether or not to use
1261 a fancy splash screen.
1262
52dca1b2
AS
12632000-12-02 Andreas Schwab <schwab@suse.de>
1264
1265 * emacs-lisp/eldoc.el (eldoc): Don't make parent of itself.
1266
d3e7e7cf
EZ
12672000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
1268
2dce2360
EZ
1269 * international/mule.el (make-char): Fix last change.
1270
9768eaa7
EZ
1271 * textmode/texinfo.el (texinfo-open-quote, texinfo-close-quote):
1272 New defcustoms.
1273 (texinfo-insert-quote): Don't call tex-insert-quote, to avoid
1274 autoloading tex-mode; instead, do the same manually. Use
1275 texinfo-open-quote and texinfo-close-quote. Insert literal quote
1276 with numeric argument. Docstring fix.
1277 (toplevel): Require cl when compiling.
e04d21aa 1278
285991dc 1279 * international/mule.el (make-char): Doc fix.
d3e7e7cf 1280
0dd5e255
JR
12812000-12-02 Jason Rumney <jasonr@gnu.org>
1282
1283 * term/w32-win.el (x-select-enable-clipboard): Customize (as per
1284 the Emacs Lisp manual)
1285
fbb87147
EZ
12862000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
1287
5cbb3e93
EZ
1288 * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
1289
fbb87147
EZ
1290 * term/pc-win.el (x-select-enable-clipboard): Customize (as per
1291 the Emacs Lisp manual).
1292
1636ca09
GM
12932000-12-02 Gerd Moellmann <gerd@gnu.org>
1294
1295 * simple.el (next-line-add-newlines): Change default to nil.
1296
68875f0e
EZ
12972000-12-01 Eli Zaretskii <eliz@is.elta.co.il>
1298
1299 * files.el (revert-buffer, recover-file): Bind
1300 coding-system-for-read to emacs-mule-unix, not to no-conversion.
1301
fd9ac94c
GM
13022000-12-01 Gerd Moellmann <gerd@gnu.org>
1303
1304 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
1305
45450dd5
MB
13062000-12-01 Miles Bader <miles@gnu.org>
1307
1308 * window.el (fit-window-to-buffer): Handle non-nil `truncate-lines'.
1309
09df8881
KH
13102000-12-01 Kenichi Handa <handa@etl.go.jp>
1311
1312 * international/mule-diag.el (describe-char-after): Fix typo.
1313 (describe-character-set, non-iso-charset-alist): Fix typo.
1314
dea0a87d
MB
13152000-12-01 Miles Bader <miles@gnu.org>
1316
b170205b
MB
1317 * image-file.el (image-file-name-regexp): Automatically add
1318 upper-case variants of each filename extension in
1319 `image-file-name-extensions', since they seem to be common.
1320
e04d21aa 1321 * simple.el (minibuffer-contents)
dea0a87d
MB
1322 (minibuffer-contents-no-properties, delete-minibuffer-contents):
1323 New functions.
1324 * filecache.el (file-cache-directory-name)
1325 (file-cache-minibuffer-complete): Ignore the minibuffer prompt.
1326
2b69bc11 13272000-12-01 Milan Zamazal <Milan.Zamazal@qbizm.com>
e04d21aa 1328
dea0a87d
MB
1329 * filecache.el (file-cache-minibuffer-complete): Don't try to
1330 delete the minibuffer prompt.
1331
a8a1b05d
DL
13322000-11-30 Dave Love <fx@gnu.org>
1333
1334 * cus-start.el: Fix read-buffer-function type.
1335
693c4692
GM
13362000-11-30 Gerd Moellmann <gerd@gnu.org>
1337
1338 * md5.el: Removed. There's a built-in function, now.
1339
2c0b1898
GM
13402000-11-30 Markus Rost <rost@math.ohio-state.edu>
1341
1342 * mail/rmail.el (rmail-set-message-counters): Don't use "D"
1343 as dummy 0-th char of rmail-deleted-vector.
1344
63dfcf4b
EZ
13452000-11-30 Eli Zaretskii <eliz@is.elta.co.il>
1346
1347 * ps-print.el (ps-end-job): Bind case-fold-search only after
1348 switching to ps-spool-buffer.
1349
13502000-11-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1351
1352 * ps-print.el: Line number font customization. PostScript: Lines and
1353 PageCount are initialized on each page. Doc Fix.
1354 (ps-print-version): New version number (6.3.2).
1355 (ps-lpr-switches, ps-font-info-database, ps-font-size)
1356 (ps-header-font-size, ps-header-title-font-size, ps-left-header)
1357 (ps-right-header): Customization fix.
1358 (ps-setup, ps-select-font, ps-begin-file, ps-header-sheet, ps-end-job):
1359 Fix code.
1360 (ps-end-with-control-d, ps-line-number-font, ps-line-number-font-size):
1361 New vars.
1362
df3aedcf
GM
13632000-11-30 Gerd Moellmann <gerd@gnu.org>
1364
edfb795e
GM
1365 * bs.el: Fix typos and spelling errors.
1366 (bs-appearance) <defgroup>: Renamed from bs-appearence.
1367 (bs-configuration): Doc fix.
e04d21aa 1368
df3aedcf
GM
1369 * bs.el: Undo mistaken change of 2000-11-28. Update copyright.
1370
8b8a7f01
GM
13712000-11-30 Rob Riepel <riepel@Stanford.EDU>
1372
1373 * emulation/tpu-edt.el (tpu-version): New version.
1374 (tpu-search-overlay, tpu-replace-overlay): New initial range.
1375 (tpu-original-mode-line): Variable deleted.
1376 (tpu-mark-flag): New initial value.
1377 (tpu-set-mode-line): Don't redefine mode-line-format. Add
1378 tpu-mark-flag to minor-mode-alist.
1379 (tpu-update-mode-line): New mark flag logic.
1380 (tpu-get): Use find-file-wildcards.
1381 (tpu-search-highlight): Move overlay less, reset overlay properly.
1382 (tpu-unselect): Deactivate mark.
1383 (tpu-lm-replace): Reset overlay properly.
1384 (tpu-forward-line): Use forward-visible-line.
1385 (tpu-edt-on): Set transient mark mode. ispell autoloads deleted.
1386
1387 * emulation/tpu-extras.el (tpu-forward-line): Use
1388 forward-visible-line.
e04d21aa 1389
c069a9d3
GM
13902000-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
1391
1392 * cus-edit.el (custom-face-value-create): Always emphasize tag.
1393
b02cd40b
GM
13942000-11-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
1395
1396 * calendar/diary-lib.el (diary-entry-time): Anchor pattern correctly
1397 and skip whitespace and newlines.
e04d21aa 1398
b7a90344
SM
13992000-11-30 Stefan Monnier <monnier@cs.yale.edu>
1400
1401 * emacs-lisp/cl.el (third...tenth): Really undo change of 2000-08-05.
1402
be6bbb55
GM
14032000-11-29 Gerd Moellmann <gerd@gnu.org>
1404
0383ed60
GM
1405 * help.el (describe-function-1): Regexp-quote function name
1406 when used as part of a regexp.
1407
c7957947
GM
1408 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Use
1409 face-attribute instead of face-foreground and face-background.
1410 (tool-bar-add-item): Likewise, and handle unspecified colors.
1411
1412 * enriched.el (enriched-face-ans): Use face-attribute instead
1413 of face-foreground and face-background.
1414
1415 * faces.el (face-foreground, face-background, face-stipple):
1416 Return nil if attribute is unspecified, for backward
1417 compatibility.
1418
7423978d
GM
1419 * files.el (auto-mode-alist): Add an entry for antlr-mode.
1420
ef128c78
GM
1421 * play/5x5.el: Remove version info.
1422
a81fc510
GM
1423 * toolbar/tool-bar.el (tool-bar-mode): Doc fix.
1424
be6bbb55
GM
1425 * frame.el (blink-cursor-mode): Doc fix.
1426
f9396e03
GM
14272000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
1428
1429 * antlr-mode.el: New commands to run ANTLR from within Emacs and
1430 to create Makefile rules.
1431 (antlr-tool-command): New user option.
1432 (antlr-ask-about-save): New user option.
1433 (antlr-makefile-specification): New user option.
1434 (antlr-file-formats-alist): New variable.
1435 (antlr-special-file-formats): New variable.
1436 (antlr-unknown-file-formats): New user option.
1437 (antlr-help-unknown-file-text): New variable.
1438 (antlr-help-rules-intro): New variable.
1439 (antlr-mode-map): Add [C-c C-r] for `antlr-run-tool'.
1440 (antlr-mode-menu): Add entries.
1441 (antlr-file-dependencies): New function.
1442 (antlr-directory-dependencies): New function.
1443 (antlr-superclasses-glibs): New function.
1444 (antlr-run-tool): New command.
1445 (antlr-makefile-insert-variable): New function.
1446 (antlr-insert-makefile-rules): New function.
1447 (antlr-show-makefile-rules): New command.
1448
1449 * antlr-mode.el: More Emacs/XEmacs stuff.
1450 (antlr-no-action-keywords): New constant with value nil.
1451 (antlr-font-lock-keywords-alist): Use it. Old value would break
1452 syntax highlighting in Emacs-21.0.
1453 (antlr-default-directory): Emacs/XEmacs dependend function.
1454 (antlr-read-shell-command): Ditto.
1455 (antlr-with-displaying-help-buffer): Ditto.
1456
14572000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
1458
1459 * antlr-mode.el: imenu, parsing and highlighting changes.
1460 (antlr-imenu-create-index-function): Don't create extra submenus
1461 for definitions in different grammar classes. It is not necessary
1462 for the menu and would make command `imenu' awkward to use.
1463 (antlr-skip-file-prelude): With ANTLR-2.7+, you can specify named
1464 header actions and more than one.
1465 (antlr-font-lock-tokendef-face): Changed color.
1466 (antlr-font-lock-tokenref-face): Changed color.
1467 (antlr-font-lock-additional-keywords): Also highlight lowercase.
1468 (antlr-mode-syntax-table): New variable.
1469 (antlr-mode): Populate and use it instead `java-mode-syntax-table'.
1470 (antlr-with-syntax-table): Don't copy syntax table.
1471
14722000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
1473
1474 * antlr-mode.el: Minor changes: language setting.
1475 (antlr-language-alist): The value for file option "language" can
1476 be both an identifier and a string.
1477 Reported by Rajesh Radhakrishnan <radhakrs@email.uc.edu>.
1478 (antlr-language-limit-n-regexp): Change accordingly.
1479
14802000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
1481
1482 * antlr-mode.el: Minor changes: tabs, hiding.
1483 (antlr-tab-offset-alist): Set `indent-tabs-mode' to nil instead t.
1484 (antlr-action-visibility): Also allow value nil to also hide the
1485 braces. Renamed from `antlr-tiny-action-length'.
1486 Suggested by Jay@aol.com.
1487 (antlr-hide-actions): Change accordingly. Hide line if completely
1488 hidden action is on a line of its own.
e04d21aa 1489
6ad948eb
SM
14902000-11-29 Stefan Monnier <monnier@cs.yale.edu>
1491
1492 * subr.el (combine-run-hooks): Only run-hooks if there's a hook to run.
1493
1494 * sort.el (sort-columns): Don't concat strings with numbers.
1495
9c6a4107
DL
14962000-11-29 Dave Love <fx@gnu.org>
1497
1498 * cus-edit.el (face): Fix :format.
1499
1500 * mail/feedmail.el: Require smtpmail when compiling.
1501 (mail-do-fcc): Autoload.
1502 (feedmail) <defgroup>: Fix :link.
1503 (feedmail-nuke-body-in-fcc): Fix :type.
1504 (feedmail-send-it): Add autoload cookie.
1505
053b8d35
SM
15062000-11-29 Stefan Monnier <monnier@cs.yale.edu>
1507
1508 * newcomment.el (comment-indent): Save excursion around call to
1509 comment-indent-function.
1510
242c13e8
MB
15112000-11-29 Miles Bader <miles@gnu.org>
1512
1513 * subr.el (member-ignore-case): Return the tail of the list who's
1514 car matches, like `member', not the matching element itself.
1515
8f4b5f28
KH
15162000-11-29 Kenichi Handa <handa@etl.go.jp>
1517
1518 * xml.el (xml-parse-tag): Fix finding opening tag. A tag name
1519 should not contain `\n'.
1520
bebe4a2c
GM
15212000-11-28 Gerd Moellmann <gerd@gnu.org>
1522
fd9ac94c 1523 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
99879a40 1524
ba7e40eb
GM
1525 * hscroll.el: Add hints to `automatic-hscrolling' to doc strings.
1526
75ab0c79
GM
1527 * dired-aux.el (dired-do-create-files): Construct default file
1528 name for dired-mark-read-file-name so that when the user enters
1529 just RET, the target file will end up in the target directory.
1530
bebe4a2c
GM
1531 * abbrev.el (prepare-abbrev-list-buffer): Get the value of
1532 local-abbrev-table before changing buffers because it might
1533 have a buffer-local binding.
1534
fa6d1ca8
MB
15352000-11-28 Miles Bader <miles@gnu.org>
1536
1537 * simple.el (delete-horizontal-space): Handle fields more generally.
1538
8d2c2642
GM
15392000-11-28 Gerd Moellmann <gerd@gnu.org>
1540
1541 * simple.el (delete-horizontal-space): Handle minibuffer prompt.
1542
8b31236d
DL
15432000-11-28 Dave Love <fx@gnu.org>
1544
3cbd02d2
DL
1545 * progmodes/ps-mode.el (ps-mode): Set comment-start and
1546 comment-start-skip locally.
1547
8b31236d
DL
1548 * progmodes/fortran.el (fortran-mode): Don't set
1549 fortran-comment-line-start-skip. Set comment-start to
1550 fortran-comment-line-start.
1551 (fortran-fill-paragraph) <non-empty-comment>: Remove regexp group.
1552 (fortran-comment-line-start-skip): Simplify slightly.
1553
ae4bf56d
GM
15542000-11-28 Gerd Moellmann <gerd@gnu.org>
1555
17ef7534
GM
1556 * play/5x5.el: Remove RCS keyword.
1557
fd9ac94c 1558 * bs.el: Mistaken commit, undone 2000-11-30.
ae4bf56d 1559
665b27a6
GM
15602000-11-28 Milan Zamazal <pdm@freesoft.cz>
1561
1562 * textmodes/tildify.el (tildify-string-alist): Add
1563 `plain-tex-mode' here.
1564
fe3c2ae3
GM
15652000-11-28 Colin Walters <walters@cis.ohio-state.edu>
1566
1567 * chistory.el (Command-history-setup): Remove extraneous `keymap'
1568 reference.
1569
d970106b
MB
15702000-11-28 Miles Bader <miles@gnu.org>
1571
36b80a0d
MB
1572 * cus-face.el (custom-face-attributes): Add post-filter function
1573 for :box. Make pre-filter function for :box handle all cases.
1574
d970106b
MB
1575 * wid-edit.el (widget-choose): Make sure pop-up window is large
1576 enough to display all the choices, as there's no way to scroll it.
1577
5a2bae6c
KH
15782000-11-28 Kenichi Handa <handa@etl.go.jp>
1579
1580 * international/mule-conf.el: Make the coding system no-conversion
1581 safe for all characters.
1582
9e836e23
DL
15832000-11-27 Dave Love <fx@gnu.org>
1584
8b31236d
DL
1585 * net/ldap.el (ldap) <defgroup>: Add :version.
1586
9e836e23
DL
1587 * tooltip.el (tooltip-use-echo-area): Doc fix.
1588
1589 * cus-start.el <minibuffer-prompt-properties>: Add version.
1590 <read-buffer-function>: Add.
1591
1592 * apropos.el (apropos-print): Add help-echo to active text.
1593
1594 * term/x-win.el (x-select-enable-clipboard): Customize (per lispref).
1595
4a74d071
GM
15962000-11-27 Gerd Moellmann <gerd@gnu.org>
1597
1598 * mail/rmail.el (rmail-automatic-folder-directives): Add a custom
1599 type, group and version.
1600
76058c27
EZ
16012000-11-27 Eli Zaretskii <eliz@is.elta.co.il>
1602
4a74d071 1603 * select.el (x-get-selection): Docstring fix.
76058c27 1604
fd9ac94c 16052000-11-27 Dave Pearson <davep@hagbard.demon.co.uk>
26a8d08d 1606
fd9ac94c 1607 * play/5x5.el (5x5-play-solution): Bind hinhibit-quit to t.
26a8d08d 1608
49060c51
AI
16092000-11-27 Andrew Innes <andrewi@gnu.org>
1610
1611 * makefile.nt (.SUFFIXES): Add .SUFFIXES.
1612
1613 * makefile.w32-in (.SUFFIXES): Add .SUFFIXES.
1614
b2a8e429
MB
16152000-11-27 Miles Bader <miles@gnu.org>
1616
1617 * dired.el (dired-get-filename): Return filename verbatim if
1618 LOCALP is `verbatim'.
1619 * dired-aux.el (dired-add-entry): Call `dired-get-filename' with
1620 `verbatim' so that we don't inadvertently delete a non-existant
1621 directory name.
1622
5ac0366d
KH
16232000-11-27 Kenichi Handa <handa@etl.go.jp>
1624
1625 * international/characters.el: Specify cases and syntaxes for
1626 mule-unicode-0100-24ff.
1627
67f1cf4c
GM
16282000-11-27 Gerd Moellmann <gerd@gnu.org>
1629
1630 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Handle case
1631 that foreground and/or background colors of the face `tool-bar'
1632 are unspecified.
1633
46c56972
MB
16342000-11-27 Miles Bader <miles@gnu.org>
1635
e04d21aa 1636 * wid-edit.el (widget-field-buffer, widget-field-start)
ec725166
MB
1637 (widget-field-end): Handle widget field `pseudo-overlays'.
1638 (widget-field-value-delete): Delete WIDGET from `widget-field-new'
1639 if it's there instead of in `widget-field-list'.
1640
46c56972 1641 * help.el (help-manyarg-func-alist): Correct entry for `vconcat'.
a2e6f426
MB
1642 (help-make-xrefs): Delete extraneous newlines at the end of the
1643 docstring.
46c56972 1644
640a9cdd
JR
16452000-11-25 Jason Rumney <jasonr@gnu.org>
1646
1647 * startup.el (command-line): Call set-locale-environment after
1648 Window System init file is read, as it can result in a call to
1649 redraw-frame.
1650
0b3f96d4
EZ
16512000-11-25 Eli Zaretskii <eliz@is.elta.co.il>
1652
1653 * simple.el (shell-command): Mention the effect of the prefix
1654 argument in the doc string.
1655
8da6e2a1
MB
16562000-11-25 Miles Bader <miles@gnu.org>
1657
a658d039
MB
1658 * cus-face.el (custom-face-attributes): Add "None" choice to :stipple.
1659
8da6e2a1 1660 * wid-edit.el (widget-field-value-delete): Don't try to delete
a2e6f426 1661 overlay when it's the `pseudo-overlay' that exists at some points.
8da6e2a1 1662
d3416cca
JR
16632000-11-24 Jason Rumney <jasonr@gnu.org>
1664
1665 * international/mule-cmds.el (locale-language-names): Add "jp" as
1666 a non-standard alternative for Japanese.
1667
17e37f53
AS
16682000-11-24 Andre Spiegel <spiegel@gnu.org>
1669
1670 * vc-hooks.el: Require 'cl during compilation.
1671
9aa5f148
GM
16722000-11-24 Gerd Moellmann <gerd@gnu.org>
1673
ba193890
GM
1674 * faces.el (face-set-after-frame-default): Let face attributes
1675 specified for new frames override frame parameters.
1676
9aa5f148
GM
1677 * startup.el (command-line): Fix computation of the source file
1678 for user-init-file when user-init-file is a compiled file.
1679
51a1edab
MB
16802000-11-24 Miles Bader <miles@gnu.org>
1681
e04d21aa 1682 * cus-edit.el (custom-filter-face-spec, custom-pre-filter-face-spec)
51a1edab
MB
1683 (custom-post-filter-face-spec): New functions.
1684 (custom-face-set, custom-face-value-create): Filter the face spec
1685 before and after customization.
1686 (custom-face-set): If VALUE specifies a null face, pass a
1687 non-null-but-otherwise-ignored face-spec instead to `face-spec-set'.
1688 * cus-face.el (custom-face-attributes): Remove SET and GET
1689 functions. Add some IN-FILTER and OUT-FILTER functions in the few
1690 cases they're needed.
1691
1ed74431
MB
1692 * wid-edit.el (checkbox): Add a small `X' to the the :on-glyph, so
1693 that it's distinguishable from the :off-glyph on dark-background
1694 displays. Set its background color too.
1695
67ee1125
MB
1696 * cus-start.el (all): Restore entry for `mode-line-inverse-video',
1697 so that people can easily turn it off.
1698
7d027816 16992000-11-24 Michael Kifer <kifer@cs.sunysb.edu>
e04d21aa 1700
7d027816 1701 * ediff-diff.el: Moved variables around to have it compile under NT.
e04d21aa 1702
9aa5f148 1703 * ediff-help.el (ediff-use-long-help-message): Made it customizable.
e04d21aa 1704
9aa5f148 1705 * ediff-init.el (ediff-abbrev-jobname): Use capitalize.
e04d21aa 1706
9aa5f148 1707 * ediff-wind.el (ediff-skip-unsuitable-frames): Deleted the
7d027816 1708 redundant skip-small-frames test.
e04d21aa 1709
9aa5f148 1710 * viper-cmd.el (viper-change-state-to-vi): Disable overwrite mode.
7d027816 1711 (viper-downgrade-to-insert): protect against errors in hooks.
e04d21aa 1712
9aa5f148
GM
1713 * viper-init.el (viper-vi-state-hook,viper-insert-state-hook)
1714 (viper-replace-state-hook,viper-emacs-state-hook): Do cursor handling.
1715 (viper-restore-cursor-type,viper-set-insert-cursor-type): New
7d027816 1716 functions.
e04d21aa 1717
9aa5f148 1718 * viper-util.el (viper-memq-char): Bug fixes.
e04d21aa 1719
9aa5f148 1720 * viper.el (viper-mode): Fix cursor handling.
e04d21aa 1721
f07fa1b8
KH
17222000-11-24 Kenichi Handa <handa@etl.go.jp>
1723
1724 * international/mule-diag.el (list-iso-charset-chars): For
1725 two-byte charset, fix the `while' condition.
1726 (list-non-iso-charset-chars): Fix the `while' condition.
1727
ba8299ff
SM
17282000-11-23 Stefan Monnier <monnier@cs.yale.edu>
1729
79372165
SM
1730 * subr.el (add-hook, remove-hook): Don't call make-local-hook
1731 if the variable is make-variable-buffer-local.
1732
ba8299ff
SM
1733 * progmodes/ada-stmt.el (ada-template-map): Initialize
1734 and bind it to C-c t in ada-mode-map.
1735 (ada-stmt-mode-hook): New function extracted from old code.
1736 Only change the buffer-local side of skeleton-*.
1737 (ada-mode-hook): Use it.
1738
68a887fa
EZ
17392000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
1740
1741 * iswitchb.el (iswitchb-minibuf-depth): New variable.
1742 (iswitchb-read-buffer): Record in iswitchb-minibuf-depth the value
1743 we expect to be returned by minibuffer-depth once we prompt the
1744 user in the minibuffer.
1745 (iswitchb-entryfn-p): If minibuffer-depth returns the same value
1746 as recorded in iswitchb-minibuf-depth, return non-nil.
1747
3b345582
EZ
17482000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
1749
1750 * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode)
1751 (hscroll-window-maybe): Docstring fix.
1752
595dead2
DL
17532000-11-23 Dave Love <fx@gnu.org>
1754
1755 * rect.el (string-rectangle): Don't test delete-selection-mode.
1756
1e66b27a
GM
17572000-11-23 Gerd Moellmann <gerd@gnu.org>
1758
02790ce2
GM
1759 * avoid.el (mouse-avoidance-too-close-p): Return nil if mouse
1760 is in the tool bar.
1761
1e66b27a
GM
1762 * dired-aux.el (dired-add-entry): Don't call dired-get-filename
1763 with `no-dir'; we want the directory part to be able to remove
1764 it.
1765
a4caa65d
SM
17662000-11-22 Stefan Monnier <monnier@cs.yale.edu>
1767
1768 * textmodes/outline.el (outline-flag-region):
1769 Don't bind inhibit-read-only since we don't modify the buffer.
1770 (outline-isearch-open-invisible): Don't jump to overlay-start
1771 since we're trying to unhide text around point.
1772 (outline-discard-overlays): Use dolist.
1773
1774 * autoinsert.el (auto-insert-alist): Add `provide' to elisp skeleton.
1775
03e757c1
GM
17762000-11-22 Gerd Moellmann <gerd@gnu.org>
1777
e04d21aa 1778 * mail/rmail.el (rmail-confirm-expunge): Default to
03e757c1 1779 y-or-n-p.
e04d21aa 1780
1598a961
SM
17812000-11-22 Stefan Monnier <monnier@cs.yale.edu>
1782
1783 * textmodes/tex-mode.el (tex-font-lock-keywords-1):
1784 Fix ARG regexp to skip quoted braces.
1785 (tex-font-lock-keywords-2): Fix ARG regexp to skip quoted braces.
1786 Remove `bf' and `it' from `bold' and `italic' (they were wrong and
1787 are (correctly) handled separately).
1788 Remove `caption' and `footnote' from `citations': they contain text.
1789 Don't highlight `textmd', `texttt' and `textrm' with bold-italic.
1790 (latex-skeleton-end-hook): New function.
1791 (latex-mode): Use it.
1792 (tex-start-tex-marker): Remove.
1793 (tex-send-tex-command): Don't set tex-start-tex-marker.
1794 (tex-error-parse-syntax-table): New var.
1795 (tex-compilation-parse-errors): Use it.
1796 Ignore tex-start-tex-marker. Don't bother with marker-position.
1797 (tex-validate-buffer): Don't bother with marker-position.
1798
1799 * textmodes/flyspell.el (flyspell-prog-text-faces): New var.
bd7e01a3 1800 (flyspell-generic-progmode-verify): Use it.
1598a961 1801
eaae8106
SS
18022000-11-22 Sam Steingold <sds@gnu.org>
1803
03e757c1
GM
1804 * simple.el (delete-trailing-whitespace): New interactive
1805 function.
e04d21aa 1806
eaae8106 1807 * progmodes/ada-mode.el (ada-mode): Use it instead of
bd7e01a3 1808 `ada-remove-trailing-spaces'.
eaae8106 1809 (ada-remove-trailing-spaces): Removed.
e04d21aa 1810
eaae8106 1811 * textmodes/two-column.el (2C-merge): Recommend it in the doc.
e04d21aa 1812
1598a961
SM
1813 * textmodes/picture.el (picture-clean): Removed.
1814 (picture-mode-exit): Call it instead of `picture-clean'.
eaae8106 1815
a41d49e9
GM
18162000-11-22 Gerd Moellmann <gerd@gnu.org>
1817
e053c60f
GM
1818 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
1819
a41d49e9
GM
1820 * hi-lock.el (hi-lock-refontify): Don't call non-existent
1821 jit-lock-fontify-buffer; it should anyway be unneccessary to
4c4a541d 1822 do anything special when jit-lock is active.
a41d49e9
GM
1823 (hi-yellow, hi-pink, hi-green, hi-blue): Fix defface specs.
1824
197615f3
DL
18252000-11-22 Dave Love <fx@gnu.org>
1826
ddbfaa9f
DL
1827 * calendar/todo-mode.el (todo-top-priorities): Use
1828 todo-tmp-buffer-name. From Milan Zamazal <Milan.Zamazal@qbizm.com>.
1829
ddc3c695
DL
1830 * language/chinese.el, language/cyrillic.el:
1831 * language/devanagari.el, language/ethiopic.el, language/greek.el:
1832 * language/hebrew.el, language/indian.el, language/japanese.el:
1833 * language/korean.el, language/lao.el, language/misc-lang.el:
1834 * language/thai.el, language/tibetan.el, language/vietnamese.el:
1835 Use provide.
1836
fb9fa98d
DL
1837 * cus-edit.el (custom-buffer-create-internal): Save some consing.
1838 (custom-variable-set): Improve validation error mesage.
1839
197615f3
DL
1840 * rect.el (string-rectangle): Revert last change.
1841 (string-rectangle-line): New arg DELETE.
1842 (string-rectangle): Check delete-selection-mode.
1843
1844 * emacs-lisp/edebug.el (edebug-version)
1845 (edebug-maintainer-address): Deleted.
1846 (edebug-submit-bug-report): Just alias to report-emacs-bug.
1847 (edebug-read-function): Account for other `'#' read forms.
1848 (edebug-mode-menus): Make some items toggles.
1849 (edebug-outside-unread-command-event, unread-command-event):
1850 Remove these to avoid warnings.
1851
f4117c4d
GM
18522000-11-22 David Ponce <david@dponce.com>
1853
1854 * recentf.el (recentf-menu-items-for-commands)
1855 (recentf-make-menu-items, recentf-make-menu-item)
4c4a541d 1856 (recentf-filter-changer): Added :help and :active menu-item properties.
eaae8106 1857
f4117c4d
GM
1858 (recentf-build-dir-rules, recentf-dump-variable)
1859 (recentf-edit-list, recentf-open-files-item)
1860 (recentf-open-files): Replaced unnecessary `mapcar' with new
1861 built-in `mapc'.
eaae8106 1862
f8e2f3f2
MB
18632000-11-23 Miles Bader <miles@gnu.org>
1864
1865 * faces.el (menu): Make inverse-video on ttys too.
1866
4c4a541d
SM
18672000-11-22 Stefan Monnier <monnier@cs.yale.edu>
1868
1869 * simple.el (comment-line-break-function): Use the new name
1870 indent-new-comment-line -> comment-indent-new-line.
1871 (clone-indirect-buffer): Don't ignore NORECORD.
1872 (next-completion): Properly handle the case where items are adjacent.
1873
1874 * mouse.el (popup-menu): Stupid typo.
1875
980d836e
GM
18762000-11-22 Gerd Moellmann <gerd@gnu.org>
1877
60e8e0a5
GM
1878 * emacs-lisp/authors.el: Remove autoload cookies, add author,
1879 maintainer, keywords tags.
1880
980d836e
GM
1881 * rect.el (replace-rectangle): Don't call string-rectangle-line
1882 with too many arguments.
1883
e08b2069
AS
18842000-11-22 Andre Spiegel <spiegel@gnu.org>
1885
60e8e0a5 1886 * ediff-util.el (ediff-file-checked-out-p)
eaae8106 1887 (ediff-file-checked-in-p): Call vc-state instead of
e08b2069
AS
1888 vc-locking-user, which no longer exists.
1889
1890 * emulation/viper-util.el (viper-file-checked-in-p): Same as above.
1891
c6779d8d
DL
18922000-11-22 Dave Love <fx@gnu.org>
1893
1894 * md5.el (md5): Provide.
1895 (md5): Fix error call.
1896
e672fdce
MB
18972000-11-22 Miles Bader <miles@gnu.org>
1898
eaae8106 1899 * textmodes/refill.el (refill-adjust-ignorable-overlay)
d9fdcdb5
MB
1900 (refill-fill-paragraph-at): Remove debugging code.
1901
80e24c04
MB
1902 * calendar/calendar.el (generate-calendar-window): When we don't
1903 call `fit-window-to-buffer', make sure the top line is fully visible.
1904
3a17d6cc
MB
1905 * image-file.el (insert-image-file): Don't make `read-only'
1906 property rear-nonsticky.
1907
ae1a21c6
MB
1908 * isearch.el (isearch-original-minibuffer-message-timeout): New var.
1909 (isearch-mode): Set `minibuffer-message-timeout' to nil, after
1910 stashing away its original value.
1911 (isearch-edit-string): Temporarily restore `minibuffer-message-timeout'
1912 in the recursive edit.
1913 Bind `isearch-original-minibuffer-message-timeout' to protect it.
1914 (isearch-done): Restore `minibuffer-message-timeout'.
1915
e672fdce
MB
1916 * cus-start.el: Remove entry for `mode-line-inverse-video'.
1917
3ea79df8
SM
19182000-11-21 Stefan Monnier <monnier@cs.yale.edu>
1919
1920 * progmodes/ada-mode.el (ada-mode): `set '' -> `setq'.
1921
1922 * find-lisp.el (find-lisp-find-files-internal):
1923 Use dolist, when and file-name-as-directory.
1924
980d836e 1925 * emacs-lisp/edebug.el (edebug-form-spec prop): Use dolist.
3ea79df8
SM
1926 (define-derived-mode, define-minor-mode): Add specs.
1927
1928 * window.el: General comment and spacing fixes.
1929 (save-selected-window): Use backquotes.
1930 (window-safely-shrinkable-p): New function.
1931 (shrink-window-if-larger-than-buffer): Use it.
1932
1933 * subr.el (make-local-hook): Docstring fix.
1934
1935 * shell.el (shell-mode): Use define-derived-mode.
1936
1937 * newcomment.el (comment-indent): Insert comment before calling
1938 comment-indent-function. Don't insert in column 0.
1939 (comment-dwim): Indent before inserting comment.
1940
1941 * isearch.el (isearch-mode-map): Fix docstring. Init in defvar.
1942 (minibuffer-local-isearch-map): Init in defvar. Use inheritance.
1943 (isearch-clean-overlays, isearch-range-invisible, isearch-unread):
1944 Use mapc rather than map.
1945
1946 * files.el (find-buffer-visiting): Compare all attributes before
1947 declaring two files identical (rather than just their inode-no).
1948 (auto-mode-alist): Use \' rather than $.
1949
1950 * which-func.el: Update maintainer line.
1951
1952 * pcvs.el (uniquify-buffer-file-name): Remove advice.
1953 * uniquify.el (uniquify-list-buffers-directory-modes): New var.
1954 (uniquify-buffer-file-name): Use it.
1955
8f62f2b8
MB
19562000-11-22 Miles Bader <miles@gnu.org>
1957
1958 * cus-start.el: Add entry for `minibuffer-prompt-properties'.
1959 * simple.el (minibuffer-avoid-prompt): New function.
1960
fb279a6d
GM
19612000-11-21 Gerd Moellmann <gerd@gnu.org>
1962
1963 * Makefile.in (.SUFFIXES): Add .SUFFIXES.
1964
867092e9
MB
19652000-11-21 Miles Bader <miles@gnu.org>
1966
ef860850
MB
1967 * emacs-lisp/advice.el (ad-special-forms): Correct the conditional
1968 inclusion of `track-mouse'.
1969
867092e9
MB
1970 * textmodes/refill.el (refill-ignorable-overlay): New variable.
1971 (refill-adjust-ignorable-overlay): New function.
1972 (refill-fill-paragraph-at): Use `refill-ignorable-overlay' to fill
1973 only the paragraph's tail if possible.
1974 Update `refill-ignorable-overlay'.
1975 (refill-mode): Initialize/cleanup `refill-ignorable-overlay'.
1976
1977 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
1978 point inside the fill-prefix.
1979
1980 * textmodes/refill.el (refill-post-command-function): Don't reset
1981 refill-doit in the case where a self-insertion command doesn't
1982 case a refill. Use `refill-fill-paragraph-at', getting position
1983 from `refill-doit'.
1984 (refill-after-change-function): Set `refill-doit' to END.
1985 (refill-fill-paragraph-at): New function, mostly from old
1986 refill-fill-paragraph.
1987 (refill-fill-paragraph): Use `refill-fill-paragraph-at'.
1988 (refill-pre-command-function): New function.
1989 (refill-mode): Add it to `pre-command-hook'.
1990
ff9ab414
GM
19912000-11-20 Gerd Moellmann <gerd@gnu.org>
1992
29a01b72
GM
1993 * textmodes/artist.el (artist-mode): Fix autoload cookie.
1994
ff9ab414
GM
1995 * font-lock.el (java-keywords): Add MATCH-HIGHLIGHT part for
1996 javadoc tags.
eaae8106 1997
885b211b
AS
19982000-11-20 Andre Spiegel <spiegel@gnu.org>
1999
2000 * vc.el, vc-hooks.el: Undo prev change (moved functions back to
2001 vc.el).
2002
eaae8106 2003 * vc-rcs.el (vc-rcs-state): Before calling vc-workfile-unchanged-p,
885b211b 2004 require vc.
eaae8106
SS
2005
2006 * vc-cvs.el (vc-cvs-checkout): Fix bug that broke C-x v ~-style
885b211b 2007 checkouts.
eaae8106 2008
d1838556
DL
20092000-11-20 Dave Love <fx@gnu.org>
2010
2011 * Makefile.in (DONTCOMPILE): Omit bindings.el.
2012
2b69bc11 20132000-11-20 Eli Barzilay <eli@www.barzilay.org>
56c13ae6 2014
2b69bc11
GM
2015 * calculator.el (calculator-paste): Use `if' instead of `and'
2016 and `or'.
2017 (calculator-help): Don't use electric-describe-mode for XEmacs.
56c13ae6 2018
b95b34e5
GM
20192000-11-19 Gerd Moellmann <gerd@gnu.org>
2020
030de92f
GM
2021 * info.el (info-menu-5): Doc fix.
2022
b95b34e5
GM
2023 * textmodes/artist.el: New file.
2024
54970452
AS
20252000-11-19 Andre Spiegel <spiegel@gnu.org>
2026
eaae8106 2027 * vc-rcs.el (vc-rcs-state): Call vc-workfile-unchanged-p only here,
54970452
AS
2028 and differentiate according to checkout model.
2029 (vc-rcs-fetch-master-state): Don't call vc-workfile-unchanged-p,
2030 since this function is only concerned with master state.
2031
eaae8106 2032 * vc-hooks.el (vc-workfile-unchanged-p,
54970452
AS
2033 vc-default-workfile-unchanged-p): Moved here from vc.el.
2034
eaae8106 2035 * vc.el (vc-workfile-unchanged-p,
54970452
AS
2036 vc-default-workfile-unchanged-p): See above.
2037
e5a9dabf
MB
20382000-11-19 Miles Bader <miles@gnu.org>
2039
2040 * image-file.el (insert-image-file): Make `intangible' and
2041 `read-only' properties rear-nonsticky too.
2042
24127af0
GM
20432000-11-18 Gerd Moellmann <gerd@gnu.org>
2044
d392e9c5 2045 * ps-print.el: Update copyright notice.
eaae8106 2046
d392e9c5
GM
2047 * tooltip.el (tooltip-x-offset, tooltip-y-offset): New user-options.
2048 (tooltip-show): Use the offsets.
2049
24127af0 2050 * bindings.el (mode-line-modified): Fix a typo.
eaae8106 2051 (mode-line-toggle-modified, mode-line-widen)
24127af0
GM
2052 (mode-line-abbrev-mode, mode-line-auto-fill-mode): Fix typos.
2053
2b69bc11 20542000-11-17 Vinicius Jose Latorre <vinicius@cpqd.com.br>
08ea6f17 2055
2b69bc11
GM
2056 * ps-print.el (toplevel): Test for find-coding-system being
2057 fboundp before calling ps-x-find-coding-system.
08ea6f17 2058
66321b2f
SM
20592000-11-16 Stefan Monnier <monnier@cs.yale.edu>
2060
2061 * vc.el (vc-version-diff): Bind inhibit-read-only when inserting text.
2062 (vc-version-backup-file): Docstring fix.
2063
046110c6
GM
20642000-11-16 Gerd Moellmann <gerd@gnu.org>
2065
4104194e
GM
2066 * files.el (basic-save-buffer): Don't add a newline if
2067 find-file-literally is non-nil.
2068 (find-file-literally): Extend doc string.
2069
046110c6
GM
2070 * sort.el (sort-columns): If sort-fold-case it non-nil, invoke
2071 sort(1) with the `-f' argument.
2072
6505c16e
AS
20732000-11-16 Andre Spiegel <spiegel@gnu.org>
2074
fd063975
AS
2075 * vc.el: Updated backend documentation.
2076 (vc-default-check-headers): New function.
2077
3d02dd81 2078 * vc-{cvs,rcs,sccs}.el: Functions reordered.
eaae8106
SS
2079
2080 * vc.el (vc-revert-buffer): Ask for confirmation if file seems
8791d617 2081 up-to-date.
eaae8106 2082 (vc-do-command): In the asynchronous case, output messages only if
9dd94743 2083 the minibuffer is not active.
fd063975 2084
eaae8106 2085 * vc-cvs.el (vc-cvs-revert): Use `cvs unedit' only if
8791d617 2086 `vc-cvs-use-edit' is on.
eaae8106
SS
2087 (vc-cvs-checkout): When this is used for reverting the workfile,
2088 make a backup of the original contents and revert to that in case
8791d617 2089 of error.
eaae8106 2090 (vc-cvs-print-log, vc-cvs-diff): Use asynchronous mode only for
9dd94743 2091 remote repositories.
eaae8106 2092
6505c16e
AS
2093 * vc.el (vc-annotate): Changed handling of prefix arg; now asks
2094 for both version and ratio in the minibuffer.
fd063975 2095
eaae8106 2096 * vc-cvs.el (vc-cvs-annotate-command): New optional arg VERSION.
8791d617 2097 Use vc-do-command to perform the annotation, not call-process.
6505c16e 2098
a13f0660
KH
20992000-11-16 Kenichi Handa <handa@etl.go.jp>
2100
2101 * international/quail.el (quail-start-translation): Don't call
2102 `message' before reading key sequence.
2103
1389a414
MB
21042000-11-16 Miles Bader <miles@lsi.nec.co.jp>
2105
2106 * net/ange-ftp.el (ange-ftp-file-modtime): Don't use `caddr'.
2107
9256a532
KH
21082000-11-16 Kenichi Handa <handa@etl.go.jp>
2109
2110 * window.el (fit-window-to-buffer): Be sure to acquire at least
2111 one text line even if the buffer is empty.
2112
0e14fe9f
GM
21132000-11-16 Gerd Moellmann <gerd@gnu.org>
2114
eaae8106 2115 * net/ange-ftp.el (ange-ftp-file-writable-p)
0e14fe9f
GM
2116 (ange-ftp-file-readable-p, ange-ftp-file-executable-p): Bind
2117 ange-ftp-process-verbose to nil.
2118
da645c53
DL
21192000-11-15 Dave Love <fx@gnu.org>
2120
233d5cde
DL
2121 * wid-edit.el (widget-specify-field, widget-specify-button): If
2122 :help-echo is a function, set help-echo of overlay to
2123 widget-mouse-help.
2124 (widget-mouse-help): New function.
2125 (widget-echo-help): Rewritten for :help-echo functions only taking
2126 a widget arg.
2127
b12057b9
DL
2128 * net/eudc-bob.el (eudc-bob-can-display-inline-images): Use
2129 display-graphic-p.
2130 (eudc-bob-display-jpeg) <!eudc-xemacs-p>: Test create-image bound
2131 and that JPEG is available.
2132 (eudc-bob-toggle-inline-display): Avoid non-existent `imagep'.
2133
da645c53
DL
2134 * international/mule-cmds.el (locale-charset-language-names):
2135 Match @euro.
2136
6d133d1f
GM
21372000-11-15 Gerd Moellmann <gerd@gnu.org>
2138
2139 * faces.el (face-set-after-frame-default): If
0e14fe9f 2140 `inhibit-default-face-x-resources' is bound, don't intialize the
6d133d1f
GM
2141 default face from X resources.
2142
49ac2ac5
EZ
21432000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
2144
2145 * Makefile.in (custom-deps, finder-data, autoloads, recompile):
2146 Don't set EMACSLOADPATH.
2147
4fb0a34c
EZ
21482000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
2149
2150 * textmodes/texinfo.el (texinfo-insert-@uref): Renamed from
2151 texinfo-insert-@url.
2152 (texinfo-insert-@url): A defalias for texinfo-insert-@uref.
2153 (texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref.
2154
bb304a7a
SM
21552000-11-14 Stefan Monnier <monnier@cs.yale.edu>
2156
82bc80bf
SM
2157 * emacs-lisp/checkdoc.el (checkdoc-minor-mode) <defvar>: Remove.
2158 (checkdoc-minor-mode-map): New map, replaces checkdoc-minor-keymap.
2159 (checkdoc-minor-keymap): Backward compatibility.
2160 (checkdoc-minor-menu): Don't bother checking checkdoc-minor-keymap.
2161 (checkdoc-minor-mode) <defun>: Use easy-mmode-define-minor-mode.
2162 (checkdoc-this-string-valid-engine): Be a bit more strict
2163 to avoid matching substrings of `...' quoted vars/funs.
2164 (checkdoc-defun-info): Only look for `interactive' if alone.
2165 (debug-ignored-errors): Add "arg doesn't appear in docstring".
2166
e8c87124
SM
2167 * progmodes/compile.el (grep): `tag-default' can be nil.
2168
bb304a7a
SM
2169 * newcomment.el (comment-indent): Paren typo.
2170
8628686a
DL
21712000-11-14 Dave Love <fx@gnu.org>
2172
25c269ef
DL
2173 * calculator.el: New maintainer version.
2174
66321b2f 2175 * diff-mode.el (diff-imenu-generic-expression): Modify unidiff pattern.
25c269ef 2176
8628686a
DL
2177 * cmuscheme.el: Doc fixes.
2178 (cmuscheme) <defgroup>: Use `scheme' as parent.
2179 (cmuscheme-program-name): Remove. Change uses to
2180 scheme-program-name.
2181
2182 * xscheme.el (scheme-program-name): Don't define here.
2183
2184 * progmodes/scheme.el (scheme-program-name): New variable
2185 (originally in cmuscheme).
2186
88f0a1eb
MB
21872000-11-14 Miles Bader <miles@gnu.org>
2188
2189 * window.el (fit-window-to-buffer): Handle windows without mode-lines.
2190 Handle header-lines. Don't loop forever if we can't enlarge the
2191 window anymore. Simplify a bit.
2192
cd9a000c
KH
21932000-11-14 Kenichi Handa <handa@etl.go.jp>
2194
2195 * window.el (fit-window-to-buffer): Don't check
2196 window-text-height. Assure that the last line is fully visible.
2197
2198 * international/quail.el (quail-show-guidance-buf): Call
2199 fit-window-to-buffer to assure the enough height of the guidance
2200 buffer.
2201 (quail-update-guidance): Avoid making the guidance buffer shorter.
2202
d3fcda22
SM
22032000-11-14 Stefan Monnier <monnier@cs.yale.edu>
2204
bdbd9606
SM
2205 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Use `keep'
2206 rather than `prepend' and add an interesting comment.
2207 (tex-math-face, tex-font-lock-syntactic-face-function):
2208 New face and function to use it.
2209 (tex-define-common-keys, tex-mode-map): Use menu-item rather
2210 than `menu-enable' symbol property.
2211 (tex-mode-map): Bind {, (, [ and $ to skeleton-pair-insert-maybe.
2212 (tex-mode): Add some latex-mode commands for auto-selection.
2213 Use tex-font-lock-syntactic-face-function.
2214 (tex-insert-quote): Simplify.
2215 (tex-shell): New mode.
2216 (tex-start-shell): Use it.
2217 (tex-shell-proc, tex-shell-buf): New functions.
2218 (tex-send-command): Use it.
2219 (tex-main-file): Fix the meaning of the new arg REALFILE.
2220 (tex-send-tex-command): New function split from `tex-start-tex'.
2221 Set compilation-last-buffer and compilation-parsing-end.
2222
d3fcda22
SM
2223 * newcomment.el (comment-indent-default): Stick \s<\s< to the left
2224 when it follows non-comment text on the line.
2225
2226 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
2227 Set font-lock-defaults.
2228 (lisp-mode-shared-map): Init inside the defvar.
2229 (emacs-lisp-mode, lisp-mode, lisp-interaction-mode):
2230 Use define-derived-mode.
2231
bdab1d43
MB
22322000-11-14 Miles Bader <miles@lsi.nec.co.jp>
2233
2234 * faces.el (header-line): Use `:box nil' for color/gs displays too.
2235
936ae731
GM
22362000-11-14 Gerd Moellmann <gerd@gnu.org>
2237
2238 * emacs-lisp/byte-opt.el (byte-compile-unfold-lambda): Don't
2239 recursively optimize body because that can lead to infinite
2240 recursion; see comment there.
2241
1695ca2b
EZ
22422000-11-13 Eli Zaretskii <eliz@is.elta.co.il>
2243
2244 * faces.el (face-spec-set-match-display): Revert the change from
2245 2000-10-24. Add a FIXME for after v21.1.
2246
9d348294
MB
22472000-11-13 Miles Bader <miles@gnu.org>
2248
2249 * textmodes/fill.el (skip-line-prefix): New function.
2250 (fill-region-as-paragraph, fill-region): Return the fill-prefix.
2251 (fill-paragraph): Don't leave point inside the fill-prefix.
88f0a1eb
MB
2252 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
2253 point inside the fill-prefix.
9d348294 2254
b85fa13c
MB
22552000-11-13 Miles Bader <miles@lsi.nec.co.jp>
2256
2257 * calendar/calendar.el (generate-calendar-window): Use
2258 `fit-window-to-buffer'.
2259
a0b47716
SM
22602000-11-12 Stefan Monnier <monnier@cs.yale.edu>
2261
2262 * gud.el (gud-minor-mode): New var.
2263 (gud-symbol, gud-val): New functions.
2264 (gud-find-file): Copy gud-minor-mode to the new buffer.
2265 (gud-menu-map): Include entries for commands that are not always
2266 available, using :enable to (de)activate them.
2267 (gud-minor-mode-map): New map. Add it to minor-mode-map-alist.
2268 (gud-mode-map): New map.
eaae8106 2269 (gud-gdb-find-file, gud-sdb-find-file, gud-dbx-find-file)
a0b47716
SM
2270 (gud-xdb-find-file, gud-perldb-find-file, gud-pdb-find-file):
2271 Don't set up gud's menu (it's done by the minor-mode).
2272 (gud-minibuffer-local-map): New.
2273 Replace gdb-minibuffer-local-map and pdb-minibuffer-local-map.
2274 (gud-query-cmdline): New function.
2275 (gdb, sdb, dbx, xdb, perldb, pdb, jdb): Use it. Set gud-minor-mode.
2276 (gud-mode): Use define-derived-mode.
2277 Don't set up gud's menu (it's done by the minor-mode).
2278 (gud-chop-words): Remove.
2279 (gud-common-init): Use split-string instead.
2280 (gud-new-keymap, gud-make-debug-menu): Eradicate.
2281
2282 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
2283 Add keyword arg :name.
2284
2285 * diff-mode.el (diff-mode-menu): Add entry for applying hunk.
2286 (diff-count-matches, diff-split-hunk): New functions.
2287 (diff-mode-map): Bind C-c C-s to diff-split-hunk.
2288
2289 * pcvs-info.el (cvs-fi-conflict-face): New var.
2290
2291 * progmodes/sh-script.el (sh-mode-syntax-table) <defvar>:
2292 Make it into a simple syntax-table, shared among all submodes.
2293 (sh-heredoc-face): Re-introduce.
2294 (sh-font-lock-syntactic-face-function): New function.
2295 (sh-mode): Use it. Also use define-derived-mode.
2296 Remove old bogus setting of indent-region-function.
2297 (sh-set-shell): Don't set the syntax-table any more.
2298 (sh-mode-syntax-table) <defun>: Remove.
2299
f5ed37df
MB
23002000-11-12 Miles Bader <miles@gnu.org>
2301
2302 * textmodes/flyspell.el (flyspell-mode-on): Only output welcome
2303 message if interactive.
2304
0b074c2f
DL
23052000-11-12 Dave Love <fx@gnu.org>
2306
2307 * mail/feedmail.el: Fix header,
2308 (feedmail) <defgroup>: Add :link.
2309
2310 * view.el: Use local-map property, not keymap on mode-line string.
2311
2312 * scroll-all.el (scroll-all-mode): Customize variable. Add
2313 autoload cookie to function.
2314
2315 * lazy-lock.el: Remove compatibility code.
2316
2317 * finder.el (finder-known-keywords): Add `files', remove `vms'.
2318 (finder-help-echo): New variable.
2319 (finder-mouse-face-on-line): Add help-echo stuff.
2320 (finder-list-keywords, finder-list-matches): Use mapc.
2321
2322 * faces.el (face-font-registry-alternatives): Add :version.
2323
2324 * progmodes/etags.el (visit-tags-table-buffer): Beware of `t' in
2325 tags-table-list.
2326
a0b47716 2327 * net/browse-url.el (browse-url-browser-function): Update :version.
0b074c2f 2328
a0b47716 2329 * mail/sendmail.el (mail-font-lock-keywords): Use [:alpha:], not a-z.
0b074c2f
DL
2330 (mail-mode): Use [:alnum:] in some regexps.
2331
6d502396
DL
23322000-11-10 Dave Love <fx@gnu.org>
2333
2334 * ediff.el (ediff-regions-internal, ediff-documentation):
2335 * ediff-vers.el (rcs-ediff-view-revision): Put temp buffer into
2336 fundamental mode.
2337
2338 * ediff-util.el (ediff-status-info, ediff-debug-info): Put temp
2339 buffer into fundamental mode.
2340 (ediff-set-difference): Use copy-sequence if available.
2341
2342 * ediff-ptch.el (ediff-dispatch-file-patching-job): Check
2343 ediff-patch-map non-nil.
2344 (ediff-fixup-patch-map, ediff-fixup-patch-map)
2345 (ediff-fixup-patch-map, ediff-patch-file-internal): Put temp
2346 buffer into fundamental mode.
2347
2348 * ediff-merg.el (state-or-merge): Defvar when compiling.
2349
a82fe213
JR
23502000-11-10 Jason Rumney <jasonr@gnu.org>
2351
2352 * w32-fns.el (w32-add-charset-info): New function.
2353 (w32-charset-info-alist): Use it.
2354
52d89894
GM
23552000-11-10 Gerd Moellmann <gerd@gnu.org>
2356
2357 * faces.el (face-font-registry-alternatives): New user-option.
2358
178932de
SM
23592000-11-10 Stefan Monnier <monnier@cs.yale.edu>
2360
d7fa3319
SM
2361 * textmodes/texinfo.el (texinfo-block-default): New var.
2362 (texinfo-insert-block): Use it. Insert a newline if needed.
2363
178932de
SM
2364 * textmodes/fill.el (fill-indent-according-to-mode): New var.
2365 (fill-region-as-paragraph): Use it.
2366
2367 * textmodes/tex-mode.el (standard-latex-block-names): Add "math".
2368 (latex-mode): Tweak tex-*-(head|trail)er regexps.
2369 Tweak paragraph regexps to allow a leading [ \t]*.
2370 (tex-latex-block): Insert a newline if necessary.
2371 (latex-insert-item): Only insert a newline if necessary.
2372 (tex-guess-main-file): New function.
2373 (tex-main-file): Use it. Add arg `realfile'. Trim `.tex'.
2374 Set tex-main-file if TeX-master is provided.
2375 (tex-latex-indent-syntax-table): Map ( and ) to punctuation.
2376
bd02b8e0
GM
23772000-11-10 Gerd Moellmann <gerd@gnu.org>
2378
2379 * startup.el (command-line): Set the default tooltip-mode
2380 to t for graphical displays which implement x-show-tip.
2381
2382 * tooltip.el (tooltip-mode): Add a comment about startup.el
2383 setting the default value of this user-option.
2384
b29b03eb
SM
23852000-11-09 Stefan Monnier <monnier@cs.yale.edu>
2386
2387 * font-lock.el (font-lock-*-face) <defvar>: Move.
2388 (font-lock-defaults-alist): Mark obsolete.
2389 (font-lock-mode, font-lock-mode-hook) <defvar>: Remove.
2390 (font-lock-mode): Use define-minor-mode.
2391 (font-lock-support-mode): Tweak type to default to jit-lock-mode.
2392 (font-lock-turn-off-thing-lock): Be more explicit.
2393 (font-lock-apply-syntactic-highlight): Use string-to-syntax after eval.
2394 (font-lock-syntactic-face-function): New var.
2395 (font-lock-fontify-syntactically-region): Use it.
2396 (font-lock-doc-face): New.
2397
2398 * pcvs.el (cvs-enabledp): Ignore errors.
2399 (cvs-commit-filelist): Never query.
2400 (cvs-mode-insert): Always add a terminating / in the initial prompt.
2401 (cvs-mode-diff-backup): Use cvs-partition rather than delete-if-not.
2402 (cvs-do-removal): Use cvs-partition rather than delete-if.
2403 Use cvs-insert-strings, cvs-pop-to-buffer-same-frame and
2404 cvs-bury-buffer.
2405
2406 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
2407 Allow `next' to jump to after the end of the last match.
2408
778fbc46
GM
24092000-11-09 Gerd Moellmann <gerd@gnu.org>
2410
730c746c
GM
2411 * simple.el (byte-compiling-files-p): New function.
2412
2413 * textmodes/ispell.el (toplevel): Use byte-compiling-files-p
2414 if it is there.
2415
2416 * emacs-lisp/bytecomp.el (byte-compile-current-file): Bind it to
2417 nil again.
2418
778fbc46
GM
2419 * textmodes/ispell.el (ispell-library-path): Don't call
2420 check-ispell-version when byte-compiling because that starts
2421 an ispell process, and ispell might not be installed.
2422 (toplevel): Don't set up a menu when byte-compiling.
2423
2424 * emacs-lisp/bytecomp.el (byte-compile-current-file): Don't bind
2425 it, so that a boundp test can be used to determine if we're
2426 currently byte-compiling.
2427
5912c5bb
DL
24282000-11-09 Dave Love <fx@gnu.org>
2429
2430 * pcvs.el (uniquify-buffer-file-name): Wrap advice in
2431 eval-after-load.
2432
7bb054a5
GM
24332000-11-09 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2434
2435 * ps-print.el: Patch for variable initialization when spooling. Doc
2436 fix.
2437 (ps-output-list): Fun eliminated.
2438 (ps-begin-file, ps-begin-job): Code fix.
2439
9db2706e
DL
24402000-11-08 Dave Love <fx@gnu.org>
2441
2442 * ediff-wind.el (ediff-control-frame-parameters): Zero
2443 tool-bar-lines.
2444
f7eb32aa
GM
24452000-11-08 Gerd Moellmann <gerd@gnu.org>
2446
2447 * simple.el (shell-command, display-message-or-buffer)
2448 (shell-command-on-region): Mention resize-mini-windows in the doc
2449 string.
2450 (display-message-or-buffer): Take the value of resize-mini-windows
2451 into account.
2452
7b01b08c
GM
24532000-11-07 Gerd Moellmann <gerd@gnu.org>
2454
acad3c0b
GM
2455 * macros.el (insert-kbd-macro): Print semi-colons as `?\;'.
2456
7b01b08c
GM
2457 * dired.el (dired-between-files): Add `^. find' as an alternative
2458 to the regular expression, for find-dired.
2459
6f602bd0
SM
24602000-11-06 Stefan Monnier <monnier@cs.yale.edu>
2461
2462 * textmodes/texnfo-upd.el: Require texinfo.
2463 (defmacro, defgroup): Remove.
2464 (texinfo-section-to-generic-alist): Remove.
2465 Use texinfo-section-list instead (i.e. level is changed string->int).
2466 (texinfo-filter): New function.
2467 (texinfo-chapter-level-regexp, texinfo-subsubsection-level-regexp)
2468 (texinfo-subsection-level-regexp, texinfo-section-level-regexp):
2469 Use it. And use regexp-opt.
2470 (texinfo-find-higher-level-node, texinfo-hierarchic-level)
2471 (texinfo-update-menu-region-beginning)
2472 (texinfo-update-menu-higher-regexps, texinfo-update-menu-lower-regexps)
2473 (texinfo-update-the-node, texinfo-sequentially-update-the-node)
2474 (texinfo-update-menu-same-level-regexps): Update.
eaae8106 2475 (texinfo-update-node, texinfo-every-node-update)
6f602bd0
SM
2476 (texinfo-sequential-node-update): Remove autoload cookie.
2477
2478 * textmodes/texinfo.el (texinfo-section-list): Change majorheading.
2479 (texinfo-font-lock-syntactic-keywords): Use syntax-strings.
2480 (texinfo-chapter-level-regexp): Remove.
2481 (texinfo-mode): Hard code texinfo-chapter-level-regexp.
2482
bb216218
DL
24832000-11-06 Dave Love <fx@gnu.org>
2484
6f602bd0 2485 * autoinsert.el (auto-insert-alist) <latex-mode>: Use \documentclass.
b04f7626 2486
6f602bd0
SM
2487 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
2488 Match defun*.
bb216218 2489
ff8dd5d5
KH
24902000-11-06 Kenichi Handa <handa@etl.go.jp>
2491
2492 * composite.el (composition-function-table): Variable declaration
2493 moved to src/composite.c.
2494 (compose-chars-after): New optional arg object.
2495
e9da51a1
GM
24962000-11-06 Gerd Moellmann <gerd@gnu.org>
2497
e0c12c68
GM
2498 * bindings.el (mode-line-toggle-read-only)
2499 (mode-line-toggle-modified, mode-line-widen)
2500 (mode-line-abbrev-mode, mode-line-auto-fill-mode): New functions.
2501 (make-mode-line-mouse2-map): Rewritten.
2502 (mode-line-modified, mode-line-format, minor-mode-alist): Use new
2503 functions so that C-h k can show something with a doc string.
eaae8106 2504
e9da51a1
GM
2505 * startup.el (fancy-splash-delay): Set to 10 seconds.
2506 (fancy-splash-max-time): New user-option.
2507 (fancy-splash-stop-time): New variable.
2508 (fancy-splash-screens): Set it. Catch `stop-splashing'.
2509 (fancy-splash-screens-1): Throw `stop-splashing' when current
2510 time is greater than fancy-splash-stop-time.
2511
611dbdf0
SM
25122000-11-06 Stefan Monnier <monnier@cs.yale.edu>
2513
4d2806e2
SM
2514 * vc-hooks.el (vc-insert-file): Don't assume byte==char.
2515
611dbdf0
SM
2516 * pcvs.el (cvs-mode-marked): New arg `noquery'.
2517 Prompt user for a file rather than raising an error.
2518 (cvs-enabledp): Fix call to cvs-mode-marked.
2519 (cvs-insert-file): New function (extracted from cvs-mode-insert).
2520 (cvs-mode-insert): Use it. Change the init prompt' value.
2521 (cvs-mode-tree): Use cvs-status-cvstrees instead of cvs-status-trees.
2522
2523 * emacs-lisp/ewoc.el (ewoc-goto-prev, ewoc-goto-next):
2524 Don't pass default arg to ewoc-locate.
2525 (ewoc-collect): Return result in the right order.
2526
2527 * log-edit.el (log-edit-show-files): Use cvs-insert-strings.
2528
2529 * cvs-status.el (cvs-tree-merge): Use cvs-butlast (avoid CL).
2530 (cvs-status-get-tags): Fix regexp.
2531 (cvs-status-trees, cvs-status-cvstrees):
2532 Combine after change hooks and don't sit-for.
4d2806e2
SM
2533 (cvs-tree-use-jisx0208): Rename from cvs-tree-dstr-2byte-ready.
2534 (cvs-tree-char-*): Rename from cvs-tree-dstr-char-*.
611dbdf0
SM
2535 Use make-char rather than hard-coded cryptic data.
2536 (cvs-status-cvstrees): Convert the buffer to multibyte if necessary.
2537
2538 * pcvs-defs.el (cvs-menu): Add entries for tree and insert.
2539
2540 * pcvs-util.el (cvs-butlast, cvs-nbutlast): New (copied from CL).
2541 (cvs-insert-strings): New function.
2542
937b2877
MB
25432000-11-06 Miles Bader <miles@lsi.nec.co.jp>
2544
2545 * mwheel.el (mouse-wheel-scroll-amount): Renamed from
2546 `mwheel-scroll-amount'.
2547 (mouse-wheel-follow-mouse): Renamed from `mwheel-follow-mouse'.
2548 (mouse-wheel-mode): Use (featurep 'xemacs) instead of
2549 string-matching against the version string.
2550
c6c97763
KH
25512000-11-06 Kenichi Handa <handa@etl.go.jp>
2552
6eaec747
KH
2553 * language/thai.el ("Thai"): Set a lisp form that produces
2554 composed string in `sample-text' language info.
2555
2556 * language/tibetan.el ("Tibetan"): Set a lisp form that produces
2557 composed string in `sample-text' language info.
2558
2559 * international/mule-cmds.el (describe-language-environment): Eval
2560 `sample-text' data and insert the result.
2561
c6c97763
KH
2562 * international/mule-conf.el (compound-text): Define this coding
2563 system here. Make x-ctext and ctext aliases of it.
2564
2565 * language/european.el (compound-text, ctext): Moved to
2566 international/mule-conf.el.
2567
d1145f85
AI
25682000-11-05 Andrew Innes <andrewi@gnu.org>
2569
2570 * w32-fns.el (w32-version): New function.
2571
178a6a45
SM
25722000-11-05 Stefan Monnier <monnier@cs.yale.edu>
2573
2574 * progmodes/awk-mode.el: Update copyright.
2575 (awk-mode-abbrev-table): Remove.
2576 (awk-font-lock-keywords): Use regexp-opt.
2577 (awk-mode): Use define-derived-mode.
2578
2579 * emacs-lisp/regexp-opt.el (regexp-opt-group): Sort the strings
2580 when extracting a suffix.
2581
1ba90166
AS
25822000-11-04 Andre Spiegel <spiegel@gnu.org>
2583
2584 * vc-hooks.el (vc-insert-file): Rewritten. Don't bother about
2585 auto-save-mode.
2586
546790cb
JR
25872000-11-04 Jason Rumney <jasonr@gnu.org>
2588
2589 * language/european.el (decode-mac-roman): Test against r1 not r0.
2590
d247e32d
SM
25912000-11-03 Stefan Monnier <monnier@cs.yale.edu>
2592
fbf44f44
SM
2593 * progmodes/icon.el (icon-mode-map): Don't rebind \t.
2594 (icon-mode): Define indent-line-function.
2595 (icon-comment-indent): Simplify.
2596 (icon-font-lock-keywords-2): Use the `words' arg to regexp-opt.
2597
2598 * emacs-lisp/find-func.el (find-function-do-it): Quote the hook.
2599
2600 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
2601 Bind change-log-default-mode to defeat the caching done on it.
2602 Don't bother saving excursion any more.
2603
2604 * menu-bar.el (minibuffer maps): Use dolist rather than mapcar.
2605
2606 * frame.el (after-setting-font-hook): Rename hooks -> hook.
2607 (set-frame-font): Use the new name (and the old for compatibility).
2608
eaae8106
SS
2609 * toolbar/tool-bar.el (tool-bar-mode):
2610 * time.el (display-time-mode):
2611 * recentf.el (recentf-mode):
2612 * paren.el (show-paren-mode):
2613 * mwheel.el (mouse-wheel-mode):
2614 * msb.el (msb-mode):
2615 * jka-compr.el (auto-compression-mode):
2616 * image-file.el (auto-image-file-mode):
2617 * hl-line.el (hl-line-mode):
2618 * delsel.el (delete-selection-mode):
2619 * autoinsert.el (auto-insert-mode):
fbf44f44
SM
2620 * complete.el (partial-completion-mode): Drop unneeded positional args.
2621
eaae8106 2622 * info.el (Info-mode):
79372165 2623 * comint.el (comint-mode): Don't bother with make-local-hook.
fbf44f44 2624
d247e32d
SM
2625 * log-edit.el (log-edit-menu): New menu.
2626
4921558e
MB
26272000-11-03 Miles Bader <miles@gnu.org>
2628
2629 * wid-edit.el (widget-end-of-line): Reinstate, with a new
2630 definition, so that trailing spaces are handled properly.
2631 (widget-field-keymap, widget-text-keymap): Likewise C-e binding.
2632
1fc02b3c
GM
26332000-11-03 Gerd Moellmann <gerd@gnu.org>
2634
2635 * startup.el (fancy-splash-text, fancy-splash-text): Use a single
2636 tab character.
2637 (fancy-splash-screens): Set tab-width to 20.
2638
51d001f7
DL
26392000-11-03 Dave Love <fx@gnu.org>
2640
2641 * comint.el (comint-completion-addsuffix): Fix custom type.
2642
ba22aeff
SM
26432000-11-02 Stefan Monnier <monnier@cs.yale.edu>
2644
2645 * font-lock.el (font-lock-buffers): Remove.
2646 (font-lock-global-modes): Define with easy-mmode-define-global-mode.
2647 (font-lock-change-major-mode): Remove.
2648 (turn-on-font-lock-if-enabled): Only apply to the current buffer.
2649 (font-lock-default-fontify-region): Extend the multiline
2650 fontification to whole lines.
2651 (font-lock-fontify-anchored-keywords)
2652 (font-lock-fontify-keywords-region): If matching just one
2653 line (with \n) only mark the \n as multiline.
2654
2655 * emacs-lisp/easy-mmode.el (define-minor-mode): Remove :toggle arg.
2656 Correctly handle the case where several :group args are supplied.
2657 Allow :extra-args.
2658 (easy-mmode-define-global-mode): Allow :extra-args.
2659 Correctly handle the case where several :group args are supplied.
2660
9c887ada
MB
26612000-11-02 Miles Bader <miles@gnu.org>
2662
eaae8106 2663 * calendar/calendar.el (diary-face, calendar-today-face)
9c887ada
MB
2664 (holiday-face): Remove dependency on `window-system'.
2665
7f25090d
KR
26662000-11-02 Ken Raeburn <raeburn@gnu.org>
2667
2668 * Makefile.in (emacs): Set EMACSLOADPATH always.
2669 (update-authors, .el.elc, compile-files): Don't do it explicitly
2670 here.
9b911107 2671 (compile-files): Bomb out if compilation of a file fails.
7f25090d 2672
7dd6009c
DL
26732000-11-02 Dave Love <fx@gnu.org>
2674
2675 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup.
2676
94821e4f
EZ
26772000-11-02 Eli Zaretskii <eliz@is.elta.co.il>
2678
2679 * mail/emacsbug.el (report-emacs-bug): Fix whitespace and
2680 punctuation in the warning inserted into the *mail* buffer.
2681
1ac3fc42
GM
26822000-11-02 Gerd Moellmann <gerd@gnu.org>
2683
57731876
GM
2684 * emacs-lisp/authors.el (authors-public-domain-files): New variable.
2685 (authors-public-domain-p): New function.
2686 (authors-print): Use it.
2687
975f82c9
GM
2688 * help.el (view-emacs-news): Use ONEWS.* instead of NEWS.* files.
2689
1ac3fc42
GM
2690 * mail/mh-e.el, mail/mh-comp.el: Change maintainer.
2691
4b3eb10f
GM
26922000-11-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2693
975f82c9 2694 * ps-print.el: Extension for even/odd printing. Doc fix.
4b3eb10f
GM
2695 (ps-print-version): New version number (6.3.1).
2696 (ps-even-or-odd-pages): Customization fix.
2697 (ps-print-page-p, ps-begin-file, ps-begin-job, ps-page-number)
2698 (ps-header-sheet, ps-header-page, ps-end-job): Code fix.
2699 (ps-page-count): Var replaced by `ps-page-column'.
2700 (ps-page-column, ps-page-sheet, ps-page-printed): New vars.
2701 (ps-print-sheet-p): New fun.
2702
7da794df
MB
27032000-11-02 Miles Bader <miles@lsi.nec.co.jp>
2704
2705 * tooltip.el (tooltip-gud-tips-setup): New function.
2706 (tooltip-gud-tips-p): Add :set to call tooltip-gud-tips-setup.
2707 (tooltip-mode): Call tooltip-gud-tips-setup.
2708 (tooltip-gud-tips): Use `gud-basic-call' instead of
2709 process-send-string, so the prompt gets frobbed appropriately.
2710 Handle nil return value from `tooltip-gud-print-command'.
2711
0e40b809
EL
27122000-11-01 Eric M. Ludlam <zappo@ultranet.com>
2713
2714 * comint.el (comint-add-to-input-history): New function.
2715 (comint-send-input): Use `comint-add-to-input-history'.
2716
50ada0db
MB
27172000-11-02 Miles Bader <miles@lsi.nec.co.jp>
2718
973a3104
MB
2719 * info.el (info-menu-header): New face.
2720 (Info-fontify-menu-headers): New function.
2721 (Info-fontify-node, Info-insert-dir): Call `Info-fontify-menu-headers'.
2722
50ada0db
MB
2723 * info.el (Info-insert-dir): Don't include blank lines at
2724 beginning of additional dir files (one is added automatically).
2725
bff53411
SM
27262000-11-01 Stefan Monnier <monnier@cs.yale.edu>
2727
2728 * emacs-lisp/easy-mmode.el (define-minor-mode):
2729 Revert the latest changes.
2730 Allow the three positional arguments to be skipped and replaced
2731 by keyword arguments.
2732 Add a :toggle argument to determine whether a nil arg means toggle
2733 or means turn-on. The default is unchanged.
2734 Add a call to force-mode-line-update.
2735
6b8a0b2d
DL
27362000-11-01 Dave Love <fx@gnu.org>
2737
2738 * emacs-lisp/elp.el (elp-restore-function): Remove autoload
2739 cookie.
2740
5bf99100
MB
27412000-11-01 Miles Bader <miles@lsi.nec.co.jp>
2742
2743 * calendar/calendar.el (diary-face, holiday-face): Add
2744 dark-background variants.
2745
a4032611
SS
27462000-10-31 Sam Steingold <sds@gnu.org>
2747
2748 * textmodes/tex-mode.el (tex-file): Use `default-directory' when
2749 `tex-main-file' does not have directory in it.
2750
c286608e
SM
27512000-10-31 Stefan Monnier <monnier@cs.yale.edu>
2752
2753 * cus-edit.el (custom-mode-map): Switch back to a sparse keymap.
2754
4836835a
TTN
27552000-10-31 Thien-Thi Nguyen <ttn@gnu.org>
2756
2757 * ediff-init.el (ediff-prepare-buffer-hook): Expand docstring, no
2758 functional change.
2759
26dcb81b
GM
27602000-10-31 Gerd Moellmann <gerd@gnu.org>
2761
2762 * files.el (find-file-noselect): When we expand a wildcard, return
2763 a list of buffers, as we should do according to the doc string.
2764
49fc4500
KR
27652000-10-31 Ken Raeburn <raeburn@gnu.org>
2766
2767 * loadup.el (top level): Adjust load path if program name is
2768 "../src/bootstrap-emacs", in case it's not dumped and thus the
2769 load path adjustment hasn't already been done.
2770
ea0c615d
GM
27712000-10-31 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2772
2773 * ps-print.el: Fix bug on selected pages for printing. Use
2774 `color-values' for Emacs 21. Ensure fontification when jit-lock
2775 is on. Try to avoid warning messages when compiling. Doc Fix.
2776 (ps-print-version): New version number (6.3).
2777 (ps-color-device): Use `color-values' to determine if device
2778 supports color.
2779 (ps-color-values): Try to use `x-color-values' when using XEmacs.
2780 (ps-print-page-p): Changed from defsubst to defun.
2781 (ps-page-number): Changed from defmacro to defun.
2782 (ps-header-sheet, ps-header-page): Fix bug on selected pages for
2783 printing.
c286608e 2784 (ps-print-ensure-fontified): Ensure fontification when jit-lock is on.
ea0c615d
GM
2785 (ps-end-file, ps-dummy-page): Funs eliminated.
2786 (ps-print-color-scale): Changed default value.
2787 (ps-page-n-up, ps-print-page-p): New internal vars.
2788 (ps-print-preprint, ps-output, ps-begin-file, ps-begin-page)
2789 (ps-plot-region, ps-generate, ps-end-job): Code fix.
2790
9e20722f
GM
2791 * delim-col.el: Little programming improvement.
2792 (delimit-columns-str): New macro.
2793 (delimit-columns-region, delimit-columns-rectangle): Code fix.
2794
d7a0fd00
KH
27952000-10-31 Kenichi Handa <handa@etl.go.jp>
2796
c286608e
SM
2797 * term/mac-win.el (decode-mac-roman, encode-mac-roman, mac-roman):
2798 Moved to european.el.
d7a0fd00
KH
2799 (ccl-encode-mac-roman-font, fontset-mac): Modified for
2800 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
c286608e
SM
2801 (mac-roman-kbd-insert, mac-roman-kbd-mode): These functions deleted.
2802 (mac-roman-kbd-mode, mac-roman-kbd-mode-map): These variables deleted.
d7a0fd00 2803
234be340
DL
28042000-10-30 Dave Love <fx@gnu.org>
2805
2806 * progmodes/cc-menus.el (imenu-generic-expression)
2807 (imenu-progress-message): Only defvar when compiling.
2808
4edc4a39
DL
2809 * emacs-lisp/elp.el (elp-unload-hook): New function.
2810
2811 * loadhist.el (unload-feature): Call elp-restore-function,
2812 checking for symbols; don't use elp-restore-all.
2813 (loadhist-hook-functions): Doc fix.
2814
70c825df
SM
28152000-10-30 Stefan Monnier <monnier@cs.yale.edu>
2816
2817 * log-edit.el (log-edit-confirm): Fix the default.
2818
1d3baf74
GM
28192000-10-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2820
2821 * delim-col.el: Little fix: replace delimit-columns-align-columns by
2822 delimit-columns-format.
2823 (delimit-columns-region, delimit-columns-rectangle): Code fix.
4836835a 2824
1ec321a7
MB
28252000-10-30 Miles Bader <miles@lsi.nec.co.jp>
2826
2827 * comint.el (comint-replace-by-expanded-history): Don't use
2828 comint-get-old-input (we're not looking at *old* input).
2829 (comint-get-old-input-default): If using fields, signal an error
2830 when the point is not in an input field.
2831
70737ea9
KH
28322000-10-30 Kenichi Handa <handa@etl.go.jp>
2833
2834 * international/mule-conf.el: New charsets mule-unicode-2500-33ff
2835 and mule-unicode-e000-ffff.
2836
fa0cb51d 2837 * international/mule.el (decode-char, encode-char): New functions.
70737ea9
KH
2838 (make-coding-system): Accept a symbol of translation table as a
2839 value of property `safe-chars'.
2840
2841 * international/mule-cmds.el (encode-coding-char): Check property
2842 safe-chars instead of safe-charsets.
2843
2844 * international/fontset.el (fontset-default): Modified for
2845 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
2846 (x-font-name-charset-alist): Likewise.
2847 (ccl-encode-unicode-font): New CCL program. Record it in
2848 font-ccl-encoder-alist to be used for fonts "ISO10646-1".
2849
70c825df
SM
2850 * language/european.el (mac-roman-decoder, mac-roman-encoder):
2851 New translation tables.
70737ea9
KH
2852 (decode-mac-roman, encode-mac-roman): Definition of these CCL
2853 programs are modified and moved from mac-win.el.
2854 (mac-roman): Definition of this coding system is modified and
2855 moved from mac-win.el.
4836835a 2856
fda2ce24 28572000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
4836835a 2858
1d3baf74 2859 * ediff-wind.el (ediff-setup-control-frame): Enclose
fda2ce24 2860 face-attribute in condition-case to avoid errors in older emacsen.
70737ea9 2861
dd4d3cb6
MB
28622000-10-29 Miles Bader <miles@gnu.org>
2863
2864 * custom.el (custom-add-to-group): Allow multiple entries for a
2865 given value OPTION, as long as their widget types are different.
2866 * cus-edit.el (custom-face-value-create): If face name doesn't end
2867 with "face", add such here (similar to custom group widgets).
2868
2869 * comint.el (comint-highlight-prompt): Add :type.
2870
dace60cf
JW
28712000-10-28 John Wiegley <johnw@gnu.org>
2872
2873 * textmodes/flyspell.el (flyspell-maybe-correct-transposition):
2874 Changed this function to operate on a temporary buffer instead of
2875 the main buffer. This not only keeps flyspell from marking a
2876 buffer as changed that wasn't, but it solves the jumpy cursor
2877 problem when attempts are made to edit incorrect words.
2878 (flyspell-maybe-correct-doubling): Same change as for
2879 `flyspell-maybe-correct-transposition'.
2880
2881 * calendar/timeclock.el (timeclock-log): Doc fix.
2882 (timeclock-last-event): Doc fix.
2883 (timeclock-log): Kill the timelog buffer after appending a new
2884 event.
2885 (timeclock-find-discrep): Use a temp buffer to read in the
2886 timelog, instead of visiting the file.
2887 (timeclock-log-data): A new function, along with a host of helper
2888 functions, for the purpose of making timelog data accessible to
2889 programmers.
2890
2891 * eshell/esh-mode.el (window-height test): Make certain that
2892 `eshell-stringify-t' is non-nil.
2893 (eshell-password-prompt-regexp): Changed to a much simpler
2894 password regexp.
2895 (eshell-send-input): If `eshell-invoke-directly' returns t,
2896 directly invoke the parsed command using `eval'. This improves
2897 turn-around time on simple commands by a factor of three or
2898 greater, such as cd, ls, pwd, etc. -- which get used very often.
2899 It also conserves thousands of cons cells per call (since
2900 `eshell-do-eval' consumes memory like a Cookie Monster set loose
2901 in the Pacific Cookie Company).
2902
2903 * eshell/esh-test.el (eshell-test): Whitespace fix.
2904
2905 * eshell/em-ls.el (eshell-ls-insert-directory): Make
2906 `eshell-ls-initial-args' nil when inserting directory contents.
2907
2908 * eshell/em-script.el (eshell-script-initialize): Add names to
2909 `eshell-complex-commands, since `source' and `.' are complex.
2910
0467b076
EZ
2911 * eshell/esh-cmd.el (eshell-rewrite-for-command)
2912 (eshell-rewrite-while-command): Use `eshell-protect' instead of
dace60cf
JW
2913 `eshell-copy-handles'.
2914 (eshell-rewrite-if-command): Use `eshell-protect' to wrap the call
2915 bodies.
2916 (eshell-separate-commands): Whitespace fix.
2917 (eshell-complex-commands): Added a new list of names, for
2918 determining whether a given command is as simple as it looks.
2919 (eshell-invoke-directly): New function. Returns t if a command
2920 should be invoked directly (using `eval'), rather than indirectly
2921 using `eshell-do-eval'.
2922 (eshell-do-eval): Whitespace fix.
2923
2924 * eshell/em-unix.el (eshell-default-target-is-dot): New variable,
2925 which provides an emulation of the DOS shell behavior of assuming
2926 that cp/mv/ln should copy/move/link to the current directory.
2927 (eshell-remove-entries): Added a doc string.
2928 (eshell-shuffle-files): Removed the check for `target' being null.
2929 (eshell-mvcp-template, eshell-mvcpln-template): Renamed
2930 `eshell-mvcp-template' to `eshell-mvcpln-template', and extended
2931 it to do a smarter check of whether a destination was provided.
2932 (eshell/mv, eshell/cp): Enable `:preserve-args'.
2933 (eshell/ln): Enable `:preserve-args', and use
2934 `eshell-mvcpln-template' to implement the body of the function.
0467b076
EZ
2935 (eshell/cat, eshell/make, eshell-poor-mans-grep, eshell-grep)
2936 (eshell/du, eshell/diff, eshell/locate): Stringify the argument
dace60cf
JW
2937 list after flattening it. This makes it possible to cat files
2938 with numerical names.
2939 (eshell-unix-initialize): Added several names to
2940 `eshell-complex-commands.
2941 (eshell-unix-command-complex-p): Return t if a given command name
2942 may result in external processes being invoked.
2943
2944 * eshell/em-glob.el (eshell-glob-show-progress): Make this
2945 variable nil by default, since it slows down glob processing by a
2946 factor of two or more, and increases memory consumption.
2947
2948 * eshell/em-smart.el: Added a note about how memory consumptive
2949 smart display mode can be (at least this is true in Emacs 21).
2950 (eshell-smart-initialize): Whitespace fix.
2951 (eshell-refresh-windows): Use `if' instead of `when'.
2952 (eshell-smart-scroll-window): Calling `save-current-buffer' was
2953 not necessary.
2954 (eshell-currently-handling-window): Added a missing global
2955 variable.
2956
2957 * eshell/em-ls.el (eshell-do-ls): Code simplification.
2958 (eshell-ls-sort-entries, eshell-ls-entries, eshell-ls-dir):
2959 Whitespace fix.
2960 (eshell-ls-exclude-hidden): Added this variable in addition to
2961 `eshell-ls-exclude-regexp'. This one prevents files beginning
2962 with . from even being read, which can improve memory consumption
2963 quite a bit.
2964 (eshell-ls-dir): If `eshell-ls-exclude-hidden' is non-nil, do not
2965 read file entries beginning with a dot. In home directories with
2966 lots of hidden files, fully two-thirds of the time spent in ls is
2967 used to read directory entries that are immediately thrown away.
2968 (eshell-ls-initial-args): Added back this configuration variable,
2969 for specifying default initial arguments to every call to ls.
2970 Much faster than using an alias to do the same thing.
2971 (eshell-do-ls): Use `eshell-ls-initial-args', if set.
2972 (eshell-ls-dir): Whitespace change.
2973
2974 * eshell/em-dirs.el (eshell/pwd): Small code simplification.
2975
2976 * eshell/esh-util.el: Don't require `ange-ftp' if it's not
2977 available.
2978 (eshell-stringify-t): Added a customization variable, to indicate
2979 whether `t' should be rendered as a string at all. If not, one
2980 can still determine if the result of an expression is true using
2981 "file-exists-p FILE && echo true".
2982 (eshell-stringify): If `eshell-stringify-t' is nil, don't
2983 stringify t!
2984
2985 * eshell/esh-module.el: Whitespace fix.
2986
2987 * eshell/em-alias.el (eshell-alias-initialize): Added
2988 `eshell-command-aliased-p' to `eshell-complex-commands'.
2989 (eshell-command-aliased-p): New function that returns t if a
2990 command name names an aliased.
2991
657f9cb8 29922000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
4836835a 2993
0467b076 2994 * viper-cmd.el (viper-preserve-cursor-color): New test that avoids
70c825df 2995 redrawing the screen when changing cursor color.
0467b076
EZ
2996 (viper-insert-state-pre-command-sentinel)
2997 (viper-replace-state-pre-command-sentinel)
70c825df
SM
2998 (viper-replace-state-post-command-sentinel):
2999 Use viper-preserve-cursor-color.
657f9cb8
MK
3000 Many functions changed to use viper= instead of = when comparing
3001 characters.
0467b076 3002 * viper-util.el (viper-memq-char,viper=): New functions for
657f9cb8 3003 working with characters.
0467b076 3004 (viper-change-cursor-color): Fixed buglet.
657f9cb8
MK
3005 Many functions changed to use viper= instead of = when comparing
3006 characters.
0467b076 3007 * viper.el (viper-insert-state-mode-list): Added eshell.
4836835a 3008
0467b076 3009 * ediff-init.el (ediff-before-setup-hook): New hook.
657f9cb8 3010 Several typos fixed in various docstrings.
0467b076
EZ
3011 * ediff-merg.el (ediff-show-clashes-only): Docstring typo fixed.
3012 * ediff-nult.el (ediff-before-session-group-setup-hooks): New
657f9cb8 3013 hook.
0467b076
EZ
3014 (ediff-show-meta-buffer): Run ediff-before-session-group-setup-hooks.
3015 * ediff-util.el (ediff-setup): Run ediff-before-setup-hook.
3016 (ediff-other-buffer): Use selected buffers if in Buffer-menu buffer.
3017 (ediff-get-selected-buffers): New function.
3018 * ediff-vers.el (ediff-vc-internal,ediff-rcs-internal)
3019 (ediff-vc-merge-internal,ediff-rcs-merge-internal): Use
657f9cb8 3020 save-window-excursion.
0467b076 3021 * ediff-wind.el (ediff-skip-unsuitable-frames): More robust
657f9cb8 3022 termination check in while loop.
0467b076 3023 * ediff.el (ediff-get-default-file-name): Better defaults when in
657f9cb8 3024 dired buffer.
0467b076
EZ
3025 (ediff-files,ediff-merge-files,ediff-files3)
3026 (ediff-merge-files-with-ancestor): Use ediff-get-default-file-name.
4836835a 3027
4f490d99
DL
30282000-10-28 Dave Love <fx@gnu.org>
3029
3030 * info.el (Info-fontify-node): Add help-echo for menu items.
3031
45b84006
EZ
30322000-10-28 Eli Zaretskii <eliz@is.elta.co.il>
3033
5ebc02b3
EZ
3034 * startup.el (normal-top-level): If the value of $TERM indicates
3035 we are running from xterm or one of its work-alikes, default to a
3036 light background mode.
3037
45b84006
EZ
3038 Support for -fg, -bg, and -rv command-line arguments for TTYs:
3039 * faces.el (tty-handle-reverse-video): New function.
3040 (tty-create-frame-with-faces): Call it.
3041
3042 * frame.el (frame-notice-user-settings): Don't apply
3043 default-frame-alist and initial-frame-alist to MS-DOS frames.
3044 Call tty-handle-reverse-video, frame-set-background-mode, and
3045 face-set-after-frame-default for non-MS-DOS frames.
3046
3047 * startup.el (tty-long-option-alist): New variable.
3048 (tty-handle-args): New function.
3049 (command-line): Call tty-handle-args.
3050
3051 * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove;
3052 startup.el now does that for all character-terminal frames.
3053
eab6e8b9
MB
30542000-10-28 Miles Bader <miles@gnu.org>
3055
3056 * emacs-lisp/easy-mmode.el (define-minor-mode): Generate
3057 `turn-on-MODE' and `turn-off-MODE' functions unless the mode is
3058 global. If :global is followed by a non-nil but non-t value,
3059 make the mode buffer-local, but also generate a `global-MODE'
3060 version using `easy-mmode-define-global-mode'. Add
3061 :conditional-turn-on keyword argument.
3062
51a29efc
DL
30632000-10-28 Dave Love <fx@gnu.org>
3064
3065 * international/latin1-disp.el (latin1-char-displayable-p): Don't
3066 use window-system.
3067
d71d7114
EZ
30682000-10-27 Eli Zaretskii <eliz@is.elta.co.il>
3069
3070 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
3071 Don't call find-buffer-file-type-coding-system. Instead, just
3072 set eol-type to -unix if inhibit-eol-conversion is in effect, or
3073 if the file is on an untranslated filesystem.
3074 (add-untranslated-filesystem): Use "D" instead of "f" inside
3075 interactive.
3076
1f9cab4b
DL
30772000-10-27 Dave Love <fx@gnu.org>
3078
70c825df 3079 * textmodes/refill.el (refill-late-fill-paragraph-function): New var.
1f9cab4b
DL
3080 (refill-mode): Use it.
3081
70c825df
SM
30822000-10-27 Stefan Monnier <monnier@cs.yale.edu>
3083
3084 * international/quail.el (quail-activate): Don't make-local-hook.
3085
7432cf10
AS
30862000-10-27 Andre Spiegel <spiegel@gnu.org>
3087
4836835a 3088 * vc-hooks.el (vc-version-backup-file-name): Use file.~<rev>~ for
7432cf10 3089 manual backups and file.~<rev>.~ for automatic ones.
08a1fcb7
AS
3090 (vc-make-version-backup): Don't do it on MS-DOS without long file
3091 names.
4836835a 3092
7432cf10
AS
3093 * vc.el (vc-version-other-window): If an automatic backup of the
3094 desired version exists, rename it instead of copying it.
3095
4836835a
TTN
3096 * vc-cvs.el (vc-cvs-checkin): Check both status and error message
3097 after command. If there's an unexpected error, signal it instead
7432cf10 3098 of being silent.
e1483c38 3099 (vc-cvs-merge-news): Be prepared for no news at all.
4836835a 3100
05ea7ef2
MB
31012000-10-27 Miles Bader <miles@lsi.nec.co.jp>
3102
fd1035aa
MB
3103 * shell.el (shell): Add BUFFER argument.
3104 * comint.el (make-comint-in-buffer): New function.
3105 (make-comint): Use it.
3106
05ea7ef2
MB
3107 * faces.el (face-spec-choose): Change syntax so that the list of
3108 attribute-value pairs is now the cdr of each clause, not the cadr.
3109 Detect old-style entries, and handle them. Use pop.
3110
835a55fe
SM
31112000-10-26 Stefan Monnier <monnier@cs.yale.edu>
3112
f5ab1cdd
SM
3113 * cus-edit.el (custom-mode-map): Use a sparse map.
3114 (custom-mode): Don't bother with make-local-hook.
3115
3116 * wid-edit.el (widget-add-change): Don't bother with make-local-hook.
3117
835a55fe
SM
3118 * vc.el (vc-start-entry): Only erase the buffer if comment is set.
3119
c13b0ec8
GM
31202000-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3121
3122 * ps-print.el: Avoid compilation gripes.
3123 (ps-print-version): New version number (6.2.1).
4836835a 3124
e9f63196
DL
31252000-10-26 Dave Love <fx@gnu.org>
3126
0b95284b
DL
3127 * menu-bar.el: Modify some menu item help strings.
3128 (menu-bar-help-menu): Add link to MORE.STUFF.
3129
e9f63196
DL
3130 * cus-edit.el (custom-mode): Add `special' mode-class property.
3131
3132 * wid-browse.el (widget-browse-mode): Likewise.
3133
3134 * wid-edit.el (widget-specify-field): Revert to using local-map
3135 property, not keymap.
3136
e276a14a
MB
31372000-10-26 Miles Bader <miles@lsi.nec.co.jp>
3138
c1545d88
MB
3139 * wid-edit.el (widget-field-end): When checking for a `boundary'
3140 field, do so in the correct buffer.
3141
3c1b77ca
MB
3142 * simple.el (undo): Correctly distinguish between numeric and
3143 non-numeric prefix args in non-transient-mark-mode, as per the doc
3144 string. When in transient-mark-mode, treat all prefix-args as
3145 numeric.
3146
f5ab1cdd
SM
3147 * simple.el (previous-matching-history-element): Miscellaneous cleanup.
3148 Position point on match. Handle N == 0 correctly.
22626d9d
MB
3149
3150 * comint.el (comint-mode): Locally set `next-line-add-newlines' to nil.
3151 (comint-mode-map): Reverse order of `comint-write-output' and
3152 `comint-append-output-to-file'.
3153 (comint-append-output-to-file): Reinstate this function, for the
3154 benefit of the menu.
3155
d97151cb
SM
31562000-10-25 Stefan Monnier <monnier@cs.yale.edu>
3157
3158 * vc.el (vc-version-other-window): Bind `file'.
3159
ea7d6f5b
GM
31602000-10-25 Gerd Moellmann <gerd@gnu.org>
3161
f5ab1cdd 3162 * Makefile.in (update-authors): New target for maintenance purposes.
ea7d6f5b
GM
3163
3164 * emacs-lisp/authors.el (batch-update-authors): New function.
3165 (authors-fixed-entries): New defconst.
3166 (authors-add-fixed-entries): New function.
3167 (authors): Call it.: Don't process lispref/.
3168
17c25cea
JR
31692000-10-25 Jason Rumney <jasonr@gnu.org>
3170
3171 * cus-edit.el (custom-button-face, custom-button-pressed-face):
3172 Merge x w32 and mac definitions.
3173
4ecda532
GM
31742000-10-25 Gerd Moellmann <gerd@gnu.org>
3175
3176 * menu-bar.el (menu-bar-options-menu): Add a help string for
3177 `uniquify'.
3178
b6735035
GM
31792000-10-25 Stephen Gildea <gildea@alum.mit.edu>
3180
f5ab1cdd
SM
3181 * time-stamp.el (time-stamp-string-preprocess):
3182 Fix a wrong type argument error.
b6735035 3183
f4cbc7a0
MB
31842000-10-25 Miles Bader <miles@gnu.org>
3185
3186 * recentf.el (recentf-mode): Variable removed.
3187 (recentf-mode): Use `define-minor-mode'.
3188
3189 * mwheel.el (mouse-wheel-mode): New global minor mode.
3190 (mwheel-install): Use `mouse-wheel-mode'.
3191
f4b020f6
DL
31922000-10-25 Dave Love <fx@gnu.org>
3193
f5ab1cdd
SM
3194 * progmodes/cperl-mode.el (cperl-mode):
3195 Set normal-auto-fill-function correctly.
072cb6f9 3196
f4b020f6
DL
3197 * wid-edit.el (widget-field-keymap, widget-text-keymap): Don't
3198 inherit from global-map and don't nullify menu-bar and tool-bar
0b95284b 3199 bindings.
f4b020f6 3200
ebe2a441
MB
32012000-10-25 Miles Bader <miles@lsi.nec.co.jp>
3202
ff4dcd4b
MB
3203 * wid-edit.el (widget-field-at): New function.
3204 (widget-at, widget-field-activate): Use it.
3205 (widget-tabable-at): Use `widget-at'.
3206 (widget-specify-field): If the terminating character of the widget
3207 field (which is read-only) is a newline, put it into a special
3208 `boundary' field so that C-n/C-p act more naturally.
3209 (widget-field-end): Also don't subtract one if a special
3210 `boundary' field has been added after the widget field.
3211
ebe2a441
MB
3212 * comint.el (comint-output-filter, comint-send-input): Don't
3213 bother adding stickiness fields to overlays to fool the field
3214 code, since it should notice the overlay insertion-types now.
ff4dcd4b 3215
ebe2a441
MB
3216 * wid-edit.el (widget-beginning-of-line, widget-end-of-line):
3217 Replace with aliases of the normal emacs b-o-l/e-o-l functions.
3218 (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e.
3219
fe50b6ab
GM
32202000-10-24 Gerd Moellmann <gerd@gnu.org>
3221
53df4dda
GM
3222 * emacs-lisp/authors.el (authors-aliases): Add some more aliases.
3223 (authors): Set file coding system to iso-2022-7bit. Add
3224 file-local variables to output buffer.
3225
4836835a 3226 * files.el (after-find-file): Don't print any warnings if
fe50b6ab
GM
3227 WARN is nil.
3228
53df4dda
GM
32292000-10-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3230
3231 * ps-print.el (ps-generate): Fix odd/even pages printing bug.
3232
3233 * delim-col.el: Now there is a column formatting mechanism.
3234 Modified to customization mechanisms convention. Doc fix.
3235 (columns): New group for delim-col.
3236 (delimit-columns-before, delimit-columns-after)
3237 (delimit-columns-format, delimit-columns-extra, delimit-columns-start)
3238 (delimit-columns-end): New vars.
3239 (delimit-columns-customize, delimit-columns-format): New funs.
3240 (delimit-columns-region, delimit-columns-rectangle)
3241 (delimit-columns-rectangle-line): Modified to support column
3242 formatting.
4836835a 3243
a9839779
DL
32442000-10-24 Dave Love <fx@gnu.org>
3245
3246 * log-edit.el (log-edit): Add :version and a :group for vc.
3247
df0267b8
GM
32482000-10-24 Gerd Moellmann <gerd@gnu.org>
3249
9acc3873
GM
3250 * files.el (after-find-file): Don't print a message ``New file''
3251 if WARN is nil.
3252
63e1b552
GM
3253 * wid-edit.el (widget-field-keymap, widget-text-keymap): Define
3254 the tool-bar map as nil, as for the menu-bar. Otherwise, we'll
3255 get duplicate tool-bar entries because we'll see the global ones
3256 on more than one path through keymaps.
3257
1946f901
GM
3258 * emacs-lisp/lisp.el (defun-prompt-regexp): Doc fix.
3259
df0267b8
GM
3260 * progmodes/cmacexp.el: Change Francesco's email address.
3261
ae3b264b
KH
32622000-10-24 Kenichi Handa <handa@etl.go.jp>
3263
3264 * window.el (fit-window-to-buffer): Adjust point of the window
3265 buffer, not that of the current buffer.
3266
23afac01
EZ
32672000-10-24 Eli Zaretskii <eliz@is.elta.co.il>
3268
3269 * progmodes/cmacexp.el: Update the euthor's email address.
3270
22d1a4ed
MB
32712000-10-24 Miles Bader <miles@lsi.nec.co.jp>
3272
3273 * faces.el (face-spec-set-match-display): Add `graphic' display
3274 type (the inverse of `tty'). Use `display-graphic-p' instead of
3275 the window-system variable.
3276
f408aa48
KH
32772000-10-24 Kenichi Handa <handa@etl.go.jp>
3278
3279 * international/isearch-x.el (isearch-with-input-method): Call
3280 input-method-function with the first event in
3281 unread-command-events.
3282
94fe8a31
MB
32832000-10-24 Miles Bader <miles@lsi.nec.co.jp>
3284
3285 * faces.el (face-default-spec, face-user-default-spec): Make
3286 defsubsts.
3287
8f47302e
AC
32882000-10-24 Andrew Choi <akochoi@i-cable.com>
3289
3290 * international/mule-conf.el (mac-roman-lower, mac-roman-upper):
3291 New charsets.
3292
3293 * term/mac-win.el: Remove definitions of mac-roman-lower and
3294 mac-roman-upper, require dired, and define instead of set
3295 mac-ready-for-drag-n-drop to avoid compilation error.
3296
446c097e
AI
32972000-10-23 Andrew Innes <andrewi@gnu.org>
3298
3299 * files.el (make-backup-file-name-1) [windowsnt, ms-dos]: Remove
3300 superfluous calls to subst-char-in-string; instead apply
3301 expand-file-name after convert-standard-filename to ensure
3302 expected directory separators are used.
3303
379b70e7
EZ
33042000-10-23 Eli Zaretskii <eliz@is.elta.co.il>
3305
3306 * info.el (Info-file-list-for-emacs): Add an entry for Eshell.
3307
85c766e9
DL
33082000-10-23 Dave Love <fx@gnu.org>
3309
b7e03a67
DL
3310 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
3311 (tool-bar-add-item): Set foreground and background for XBM icons.
3312
3313 * international/latin1-disp.el (latin1-char-displayable-p): New
3314 function (from Handa).
3315 (latin1-display-check-font): Use it.
3316
0dcf8835
DL
3317 * imenu.el (imenu--create-keymap-2): Build menu with menu-item
3318 using :key-sequence, making it much more usable. Use nconc, not
3319 append.
3320 (imenu--create-keymap-1): Avoid append.
3321
85c766e9 3322 * textmodes/refill.el: Remove bits redundant with define-minor-mode.
4836835a 3323
cb3069bb
MB
33242000-10-23 Miles Bader <miles@lsi.nec.co.jp>
3325
3326 [the following changes fix a bug where `define-minor-mode' didn't
3327 correctly generate :require clauses for defcustoms in compiled files]
3328 * emacs-lisp/bytecomp.el (byte-compile-last-logged-file): New variable.
3329 (byte-compile-log-file, byte-compile-log-1): Don't set
3330 `byte-compile-current-file' to nil. Instead set
3331 `byte-compile-last-logged-file' to it. Test whether
3332 byte-compile-current-file equals byte-compile-last-logged-file
3333 instead of whether its nil.
3b6542ba 3334 (byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
cb3069bb 3335
6db6243b
SM
33362000-10-23 Stefan Monnier <monnier@cs.yale.edu>
3337
3338 * textmodes/refill.el: Fix var names in doc.
3339 (refill-mode): Don't bother with make-local-hook anymore.
3340
98490598
MB
33412000-10-23 Miles Bader <miles@lsi.nec.co.jp>
3342
e01cd227
MB
3343 * faces.el (face-user-default-spec, face-default-spec): New functions.
3344 (face-spec-choose, face-spec-set): Document nil-SPEC behavior.
4836835a 3345 (frame-set-background-mode, face-set-after-frame-default):
e01cd227
MB
3346 Use `face-user-default-spec'. Simplify code slightly.
3347
4836835a 3348 * woman.el (woman-italic-face, woman-bold-face)
e01cd227
MB
3349 (woman-unknown-face): Add dark-background variants.
3350 (woman-default-faces): Renamed from `woman-colour-faces'.
3351 Set using the stored defaults, rather than using hard-wired colors.
3352 (woman-monochrome-faces): Renamed from `woman-black-faces'.
3353 Just make the foreground `unspecified' rather than "black".
3354 (woman-menu): Rename menu entries accordingly.
3355
98490598
MB
3356 * faces.el (header-line): Make more reasonable on mono/grayscale
3357 displays.
3358
1a578e9b
AC
33592000-10-23 Andrew Choi <akochoi@i-cable.com>
3360
3361 * cus-edit.el (custom-button-face): Use 3D look for mac.
3362 (custom-button-pressed-face): Likewise.
3363
3364 * faces.el (set-face-attributes-from-resources): Handle mac frames
3365 in the same way as x and w32 frames.
3366 (face-valid-attribute-values): Likewise.
3367 (read-face-attribute): Likewise.
3368 (defined-colors): Likewise.
3369 (color-defined-p): Likewise.
3370 (color-values): Likewise.
3371 (display-grayscale-p): Likewise.
3372 (face-set-after-frame-default): Likewise.
3373 (mode-line): Same default face as for x and w32.
3374 (tool-bar): Likewise.
3375
3376 * frame.el: Remove call to frame-notice-user-settings at end of
3377 the file.
3378
3379 * info.el (Info-fontify-node): make underlines invisible for mac
3380 as for x, pc, and w32 frame types.
3381
3382 * term/mac-win.el: New file.
3383
aaaf7be7
DL
33842000-10-22 Dave Love <fx@gnu.org>
3385
3386 * textmodes/refill.el: New file.
3387
5392d654
AS
33882000-10-22 Andre Spiegel <spiegel@gnu.org>
3389
4836835a 3390 * vc-hooks.el (vc-version-backup-file-name): New optional args
5392d654 3391 MANUAL and REGEXP.
4836835a 3392 (vc-delete-automatic-version-backups, vc-make-version-backup):
5392d654
AS
3393 New functions.
3394 (vc-before-save): Use the latter.
3395 (vc-default-make-version-backups-p): Added `-p' suffix to avoid
3396 confusion.
3397
4836835a 3398 * vc-cvs.el (vc-cvs-make-version-backups-p): Added `-p' suffix as
5392d654
AS
3399 expected by vc[-hooks].el.
3400
3401 * vc.el (vc-checkout): Added `-p' suffix in call to
3402 vc-make-version-backups-p; use vc-make-version-backup to actually
3403 make the backup.
3404 (vc-version-other-window, vc-version-backup-file): Handle both
3405 automatic and manual backups.
3406 (vc-revert-file): Use vc-delete-automatic-version-backups to get rid
3407 of all of them.
3408
1e221c16
MB
34092000-10-22 Miles Bader <miles@gnu.org>
3410
7ff4fda5
MB
3411 * comint.el (comint-highlight-input, comint-highlight-prompt):
3412 Renamed, `-face' at end removed.
3413 (comint-send-input, comint-output-filter): Use renamed faces.
3414
3511cde8
MB
3415 * window.el (fit-window-to-buffer): Change defaulting of
3416 MAX-HEIGHT slightly.
3417
1e221c16
MB
3418 * faces.el (color-values, color-defined-p): Use `member', not
3419 `memq', because it works correctly for strings.
3420 (frame-set-background-mode): Actually, "unspecified-fg" and
3421 "unspecified-bg" *are* strings. Use `member', not `memq', and
3422 `equal', not `eq', when a string value is possible.
3423
b6ef4898
EZ
34242000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
3425
3426 * info.el (Info-file-list-for-emacs): Add an entry for Speedbar.
3427
34939e2c
SM
34282000-10-21 Stefan Monnier <monnier@cs.yale.edu>
3429
3430 * progmodes/sh-script.el (sh-mode-map): Remove bindings for
3431 sh-electric-rparen, sh-electric-less and sh-electric-hash.
3432 (sh-st-punc, sh-here-doc-syntax): Use string-to-syntax.
3433 (sh-font-lock-heredoc, sh-font-lock-paren): New funs.
3434 (sh-font-lock-syntactic-keywords): Use them.
3435 (sh-heredoc-face, sh-st-face, sh-special-syntax): Remove.
3436 (sh-mkword-regexp, sh-electric-rparen-needed-here): Remove.
3437 (sh-mode): Don't override font-lock-unfontify-region-function.
3438 Use a copy of sh-font-lock-syntactic-keywords.
3439 (sh-set-shell): Don't set sh-electric-rparen-needed-here.
3440 Don't call sh-scan-buffer since font-lock does it on the fly.
3441 (sh-get-indent-info): Use `face' rather than `syntax-table'
3442 text-property to detect here-documents.
3443 Replace sh-special-syntax with sh-st-punc.
3444 (sh-prev-line): Use `face' rather than `syntax-table'
3445 text-property to skip over here-documents.
3446 (sh-font-lock-unfontify-region-function, sh-check-paren-in-case)
3447 (sh-set-char-syntax, sh-electric-rparen, sh-electric-hash)
3448 (sh-electric-less, sh-set-here-doc-region)
4836835a 3449 (sh-remove-our-text-properties, sh-search-word, sh-scan-case)
34939e2c
SM
3450 (sh-scan-buffer, sh-rescan-buffer): Remove.
3451
f3d3c491
AI
34522000-10-21 Andrew Innes <andrewi@gnu.org>
3453
3454 * w32-fns.el (make-auto-save-file-name): Don't apply conversion to
3455 remote (ange-ftp) file names.
3456
b86c791c
MB
34572000-10-21 Miles Bader <miles@gnu.org>
3458
d9c30bdf
MB
3459 * window.el (fit-window-to-buffer): New function.
3460 (shrink-window-if-larger-than-buffer): Use it.
1e221c16
MB
3461 (window-text-height): Don't expect minibuffers to have mode-lines.
3462
d9c30bdf 3463 * help.el (resize-temp-buffer-window): Use `fit-window-to-buffer'.
feb5013d
MB
3464 * international/quail.el (quail-update-guidance): Use
3465 `fit-window-to-buffer' instead of `set-window-text-height'.
d9c30bdf 3466
617fee5a
MB
3467 * international/quail.el (quail-show-guidance-buf): Make sure
3468 guidance window really has enough room.
3469 (quail-update-guidance): If quail-guidance-win is already shown,
3470 make sure its height is OK.
3471
b86c791c
MB
3472 * window.el (window-text-height, set-window-text-height):
3473 New functions.
3474 (shrink-window-if-larger-than-buffer): Use `window-text-height'
3475 instead of `window-height' & `mode-line-window-height-fudge'.
3476 (mode-line-window-height-fudge): Add FACE parameter.
3477 * help.el (resize-temp-buffer-window): Use `set-window-text-height'
3478 instead of `enlarge-window' & `mode-line-window-height-fudge'.
3479
e34850d1
MB
34802000-10-20 Miles Bader <miles@gnu.org>
3481
3482 * window.el (height-affecting-face-attributes): Use `defconst'.
3483
3484 * textmodes/ispell.el (ispell-mode-line-window-height-fudge):
3485 New function, conditionally aliased to `mode-line-window-height-fudge'.
3486 (ispell-help): Use it.
3487 (ispell-choices-win-default-height): Don't include mode-line fudge.
3488 (ispell-choices-win-default-height): New function.
3489 (ispell-show-choices, ispell-command-loop): Use function
3490 `ispell-choices-win-default-height' instead of variable.
3491
a8b883c2
MB
34922000-10-20 Miles Bader <miles@lsi.nec.co.jp>
3493
8c6e4a58
MB
3494 * window.el (mode-line-window-height-fudge): New variable.
3495 (height-affecting-face-attributes): New variable.
3496 (mode-line-window-height-fudge): New function.
3497 (shrink-window-if-larger-than-buffer): Use it.
3498 * help.el (resize-temp-buffer-window): Likewise.
3499
a8b883c2
MB
3500 * info.el (Info-fontify-node): Add support for @subsubsection
3501 titles, which use `Info-title-4-face'.
3502 (Info-title-4-face): New face.
3503 (Info-title-3-face): Inherit from Info-title-4-face instead of
3504 variable-pitch.
3505
e64c3a75
JR
35062000-10-19 Jason Rumney <jasonr@gnu.org>
3507
3508 * dired.el (dired-insert-directory): Do not let errors signalled by
3509 attempt to run dired-free-space-program prevent dired from working.
3510
c70fe852
SM
35112000-10-19 Stefan Monnier <monnier@cs.yale.edu>
3512
3513 * diff-mode.el (diff-find-file-name): Fix regex subgroup number.
3514
877cf6b4
GM
35152000-10-19 Gerd Moellmann <gerd@gnu.org>
3516
5de037e0
GM
3517 * dirtrack.el (dirtrack): Fix call to run-hooks.
3518
6deb9af9
GM
3519 * cmuscheme.el (cmuscheme-program-name): Renamed from
3520 scheme-program-name because xscheme.el contains a defcustom with
3521 the same name. As a consequence, customizing group `cmuscheme'
3522 loaded `xscheme' which redefined run-scheme.
3523 (run-scheme): Use cmuscheme-program-name.
3524
877cf6b4
GM
3525 * ps-print.el (ps-print-emacs-type): Move into the
3526 eval-and-compile.
3527
e597d8fb 3528 * play/doctor.el (doctor-death): Update the Samaritans'
c70fe852 3529 anonymous address, and add a website for Befrienders International.
4836835a 3530
3e9cb08f
GM
35312000-10-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3532
c70fe852
SM
3533 * ps-print.el: Even/odd pages fix. Fix little bug on XEmacs.
3534 Avoid compilation gripes. Doc fix.
3e9cb08f
GM
3535 (ps-print-version): New version number (6.2).
3536 (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
3537 (ps-x-color-name, ps-x-color-specifier-p, ps-x-copy-coding-system)
3538 (ps-x-device-class, ps-x-extent-end-position, ps-x-extent-face)
3539 (ps-x-extent-priority, ps-x-extent-start-position)
3540 (ps-x-face-font-instance, ps-x-find-coding-system)
3541 (ps-x-font-instance-properties, ps-x-make-color-instance)
3542 (ps-x-map-extents): Alias for functions without the prefix `ps-x-', to
3543 avoid compilation gripes without defining functions.
3544 (ps-e-find-composition): Alias for function find-composition, to have a
3545 suitable function depending on Emacs version.
3546 (ps-color-device, ps-color-values, ps-face-foreground-name)
3547 (ps-face-background-name, ps-face-bold-p, ps-face-italic-p, ps-mapper)
3548 (ps-extent-sorter, ps-xemacs-face-kind-p, ps-xemacs-color-name)
3549 (ps-print-ensure-fontified): Function definitions surrounded by
3550 `eval-and-compile' to avoid compilation gripes.
3551 (ps-font-lock-face-attributes): `font-lock-face-attributes' evaluated
3552 by symbol-value to avoid compilation gripes.
3553 (ps-end-file, ps-header-sheet, ps-plot-region): Even/odd pages fix.
3554 (ps-generate-postscript-with-faces): Fix little bug on XEmacs.
3555
d8abcd91
MB
35562000-10-19 Miles Bader <miles@lsi.nec.co.jp>
3557
13ab33c4
MB
3558 * startup.el (normal-top-level): Call `frame-set-background-mode'
3559 after `frame-notice-user-settings' because the latter doesn't call
3560 the former on a tty.
3561
d8abcd91
MB
3562 * faces.el (frame-set-background-mode): `unspecified' &c are
3563 symbols, not strings.
3564
e8bce0a9
EZ
35652000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
3566
c70fe852
SM
3567 * term/tty-colors.el (color-name-rgb-alist): Add a comment explaining
3568 why some "light*" colors are deliberately absent from the alist.
e8bce0a9 3569
c70fe852
SM
3570 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face):
3571 Change colors for tty's, as suggested by Miles Bader.
e8bce0a9 3572
773272d8
KH
35732000-10-19 Kenichi Handa <handa@etl.go.jp>
3574
c70fe852 3575 * international/fontset.el: Use registry "MuleTibetan-2" for Tibetan.
773272d8
KH
3576 (ccl-encode-mule-unicode-0100-24ff): New CCL program. Register it
3577 for ISO10646-1 fonts.
3578 (x-font-name-charset-alist): Add an entry for "iso10646-1".
3579
772139c0
EZ
35802000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
3581
3582 * faces.el (frame-set-background-mode): If a tty frame defines a
3583 background color, use that to compute the background mode, instead
3584 of always defaulting to "dark".
3585
d134a19f
MB
35862000-10-19 Miles Bader <miles@lsi.nec.co.jp>
3587
8bb84cb2
MB
3588 * comint.el (comint-write-output): New function.
3589 (comint-mode-map): Add it to the menu.
e40a778f 3590 Bind `C-c C-s' to comint-write-output.
d134a19f 3591
dada41e1
GM
35922000-10-18 Gerd Moellmann <gerd@gnu.org>
3593
3594 * startup.el (fancy-splash-screens): Set buffer-undo-list to t.
3595 Use fancy-splash-delay.
3596
9b5360aa
GM
35972000-10-18 Alex Schroeder <alex@gnu.org>
3598
3599 * progmodes/sql.el (sql-sybase-options): New option.
3600 (sql-sybase): Use it. Add sql-database to the list of parameters
3601 provided for login. The options -w 2048 -n are not used any more.
3602
9035a35a
GM
3603 * comint.el (comint-read-input-ring): Bugfix such that the first
3604 and the last entry of the input ring file are not lost.
3605
3556c6dd
GM
36062000-10-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3607
3608 * ps-print.el: Internal variable changes to defcustom,
3609 make-local-hook changes to defvar. Doc fix.
3610 (ps-print-version): New version number (6.1).
3611 (ps-setup, ps-do-despool): Code fix.
3612 (ps-printer-name): Customization fix.
3613 (ps-printer-name-option): Now is a defcustom instead of an
3614 internal variable.
3615 (ps-print-hook, ps-print-begin-sheet-hook, ps-print-begin-page-hook)
3616 (ps-print-begin-column-hook): Now are defvar instead of
3617 make-local-hook.
4836835a 3618
4e217e50
MB
36192000-10-18 Miles Bader <miles@gnu.org>
3620
3621 * comint.el (comint-delete-output): Renamed from `comint-kill-output'.
3622 (comint-kill-output): Changed into an alias for `comint-delete-output',
3623 and made obsolete.
3624 (comint-mode-map): Rename references to comint-kill-output.
3625
34460354
EZ
36262000-10-18 Eli Zaretskii <eliz@is.elta.co.il>
3627
3628 * diff-mode.el (diff-header-face, diff-file-header-face)
3629 (diff-changed-face): Add bold and italic attributes to tty faces.
3630 (diff-function-face): New face.
3631 (diff-font-lock-keywords): Use it.
3632
17ea3cdb
MB
36332000-10-18 Miles Bader <miles@lsi.nec.co.jp>
3634
3635 * comint.el (comint-output-filter): Fixup comint-last-input-end too.
3636 Remove commented-out call to force-mode-line-update.
3637 (comint-kill-output): Use `forward-line 0' instead of
3638 beginning-of-line to make sure we get past the prompt.
3639
9244f2c7
SM
36402000-10-17 Stefan Monnier <monnier@cs.yale.edu>
3641
3642 * diff-mode.el (diff-header-face, diff-file-header-face):
3643 Add specific setting for dark background.
3644 (diff-context-face): Renamed from diff-comment-face.
3645 Set explicitly rather than inheriting from font-lock-comment-face.
3646
1592c1ef
EZ
36472000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
3648
3649 * startup.el (command-line): Move the code which sets the default
3650 TTY colors to before before-init-hook.
3651
f86292a9
GM
36522000-10-17 Gerd Moellmann <gerd@gnu.org>
3653
3654 * jit-lock.el (jit-lock-stealth-time): Doc fix.
3655
f7f2e883
EZ
36562000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
3657
e854cc22
EZ
3658 * files.el (auto-mode-alist): Add .dif and .pat as diff-mode
3659 extensions, for MS-DOS.
3660
f7f2e883
EZ
3661 * diff-mode.el (diff-header-face, diff-file-header-face)
3662 (diff-changed-face): Define tty-specific colors.
3663
c7b4f0f9
GM
36642000-10-17 Gerd Moellmann <gerd@gnu.org>
3665
3666 * startup.el (fancy-splash-text): Realign the text.
3667
12a72271
EZ
36682000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
3669
3670 * font-lock.el (font-lock-comment-face): Define a separate default
3671 for dark-background tty's.
3672
61dfccfd
MB
36732000-10-17 Miles Bader <miles@gnu.org>
3674
3675 * help.el (resize-temp-buffer-window): Add hack to avoid last line
3676 being obscured by whizzy mode-lines on graphics displays.
3677
333cd59e
EZ
36782000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
3679
3680 * info.el (Info-title-1-face, Info-title-2-face)
3681 (Info-title-3-face): Define colors for tty's.
dada41e1 3682 (info-header-node): Remove unneeded tty-specific definition.
333cd59e 3683
dbf1fcc1
EZ
36842000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
3685
3686 * term/pc-win.el (msdos-handle-reverse-video): Don't remove
3687 reverse from the frame parameters, and don't invert foreground and
3688 background colors.
3689
ac629823
MB
36902000-10-16 Miles Bader <miles@gnu.org>
3691
3692 * info.el (Info-set-mode-line): Use `%b' instead of hardwired
3693 string "*Info*". Call propertized-buffer-identification to spruce
3694 up the result.
3695
76eebffc
GM
36962000-10-16 Gerd Moellmann <gerd@gnu.org>
3697
3a6b59d9
GM
3698 * help.el: Provide `help' for the sake of define-minor-mode
3699 which generates defcustoms with requires.
3700
6569c3d3
GM
3701 * jit-lock.el (jit-lock-after-change): If we're in text that
3702 matches a multi-line font-lock pattern, make sure the whole text
3703 will be redisplayed.
3704
c2e0a611
GM
3705 * emacs-lisp/authors.el (authors-add): Don't add an entry if
3706 author's name is unknown.
3707
76eebffc
GM
3708 * eshell/esh-var.el, eshell/esh-util.el, eshell/esh-test.el,
3709 * eshell/esh-proc.el, eshell/esh-opt.el, eshell/esh-mode.el,
3710 * eshell/esh-maint.el, eshell/esh-io.el, eshell/esh-ext.el,
3711 * eshell/esh-cmd.el, eshell/esh-arg.el, eshell/em-xtra.el,
3712 * eshell/em-unix.el, eshell/em-term.el, eshell/em-smart.el,
3713 * eshell/em-script.el, eshell/em-rebind.el, eshell/em-prompt.el,
3714 * eshell/em-pred.el, eshell/em-ls.el, eshell/em-hist.el,
3715 * eshell/em-glob.el, shell/em-dirs.el, eshell/em-cmpl.el,
3716 * eshell/em-basic.el, eshell/em-banner.el, eshell/em-alias.el:
3717 Add author information.
3718
cf1e7b12
MB
37192000-10-16 Miles Bader <miles@lsi.nec.co.jp>
3720
3721 * toolbar/up_arrow.xpm, toolbar/right_arrow.xpm:
3722 * toolbar/left_arrow.xpm, toolbar/home.xpm: Re-convert from
3723 full-color version (using the Gimp) to eliminate dithering artifacts.
3724
5586f3eb
SM
37252000-10-15 Stefan Monnier <monnier@cs.yale.edu>
3726
3727 * font-lock.el (font-lock-syntactic-keywords): Fix docstring.
3728
3729 * simple.el (syntax-flag-table, string-to-syntax): Remove.
3730
ad64a888
DL
37312000-10-15 Dave Love <fx@gnu.org>
3732
3733 * progmodes/sh-script.el: Require skeleton and comint when
3734 compiling.
3735
3736 * pcomplete.el (pcomplete) <defgroup>: Add :version.
3737
3738 * whitespace.el: Doc fixes.
3739 (top-level): Don't add hooks here.
3740 (whitespace-running-emacs): Deleted.
3741 (timer): Don't require.
3742 (whitespace): Add back :version conditional on xemacs test.
3743 (whitespace-spacetab-regexp, whitespace-indent-regexp)
3744 (whitespace-ateol-regexp, whitespace-modes): Fix custom type.
3745 (whitespace-force-mode-line-update, whitespace-refresh-rescan-list)
3746 (whitespace-tickle-timer, whitespace-rescan-files-in-buffers):
3747 Avoid specific xemacs test.
3748 (whitespace-global-mode): New option.
3749 (whitespace-global-mode): New command.
3750 (whitespace-unload-hook): New function.
3751
3752 * info.el (Info-mouse-follow-nearest-node): Use mouse-set-point.
4836835a 3753 (Info-fontify-node, Info-goto-node, Info-mode-menu)
ad64a888
DL
3754 (Info-fontify-node): `Goto' goes to `Go to'.
3755 (Info-fontify-node): Add help-echo to xref links.
3756
1ef49fc6
EZ
37572000-10-15 Eli Zaretskii <eliz@is.elta.co.il>
3758
3759 * eshell/em-unix.el (eshell-du-prefer-over-ange): Doc fix.
3760
8b7707e1
SM
37612000-10-15 Stefan Monnier <monnier@cs.yale.edu>
3762
b3b7f42f
SM
3763 * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
3764 Use plist-get and allow :inherit.
3765
3766 * emacs-lisp/cl-macs.el (cl-do-arglist):
3767 Use plist-get and plist-member instead of memq.
3768
3c7fafc7
SM
3769 * emacs-lisp/ewoc.el (ewoc-location): New function.
3770 (ewoc-enter-after, ewoc-enter-before): Document return value.
3771 * pcvs.el (cvs-make-cvs-buffer, cvs-run-process):
3772 Don't need make-local-hook any more.
3773 (cvs-addto-collection): Return the new tin.
3774 (cvs-mode-insert): Jump to the new line.
3775
8b7707e1
SM
3776 * jit-lock.el (jit-lock-fontify-buffer): Remove.
3777
3778 * arc-mode.el (archive-zoo-summarize): Fix from gnu.emacs.bug.
3779
3780 * font-lock.el (font-lock-syntactically-fontified): New var.
3781 (font-lock-fontify-syntactic-keywords-region): Use it.
3782 (font-lock-mode): Fix docstring. Don't need make-local-hook anymore.
3783
3784 * diff-mode.el (diff-find-file-name): Fix regexp.
3785
3786 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
3787 (cl-builtin-clrhash, cl-builtin-maphash): Add for byte-compatibility.
3788
3789 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix.
3790 (sh-mode-syntax-table): Add punctuation syntax for < and >.
3791 (sh-mode): Don't make all vars local here.
3792 (sh-kw): Reformat.
3793 (sh-set-shell): Use dolist. Don't set indent-region-function.
3794 (sh-mode-syntax-table): Use pop.
3795 (sh-remember-variable): Use push.
3796 (sh-help-string-for-variable): Use memq.
3797 (sh-safe-backward-sexp): Remove.
3798 (sh-safe-forward-sexp): Add ARG.
3799 (sh-get-indent-info, sh-prev-stmt): Use it.
3800 (sh-prev-line): Simplify by using forward-comment.
3801 (sh-this-is-a-continuation): Simplify.
3802 (sh-learn-buffer-indent): Use dolist.
3803 (sh-do-nothing): Remove.
3804 (sh-set-char-syntax, sh-set-here-doc-region):
3805 Use inhibit-modification-hooks.
3806 (sh-name-style): Use mapcar and push.
3807 (sh-load-style): Use dolist.
3808 (sh-save-styles-to-buffer): Use with-current-buffer and pp.
3809 (sh-case, sh-while-getopts): Use propertize directly rather
3810 than sh-electric-rparen.
3811
38122000-10-14 Stefan Monnier <monnier@cs.yale.edu>
3813
3814 * textmodes/tex-mode.el: Require CL when compiling.
3815 (tex-mode-syntax-table): Init immediately.
3816 (tex-mode-map): Bind M-RET to latex-insert-item.
3817 (latex-mode): Set indent-line-function to latex-indent.
3818 (tex-common-initialization): Don't setup the syntax-table any more.
3819 (latex-insert-item): New skeleton.
3820 (tex-next-unmatched-end): Fix copy/paste braino.
4836835a 3821 (latex-syntax-after, latex-skip-close-parens, latex-down-list)
8b7707e1 3822 (latex-indent, latex-find-indent): New functions.
4836835a 3823 (tex-indent-allhanging, tex-indent-arg, tex-latex-indent-syntax-table)
8b7707e1
SM
3824 (tex-indent-item, tex-indent-item-re, tex-indent-basic): New vars.
3825 (tex-compilation-parse-errors): Use with-syntax-table.
3826
86b7fcbb
MB
38272000-10-15 Miles Bader <miles@gnu.org>
3828
3829 * font-lock.el (font-lock-comment-face): Change dark-background,
3830 color, non-tty, default to `chocolate1'.
3831
57a24508
JW
38322000-10-13 John Wiegley <johnw@gnu.org>
3833
3834 * eshell/esh-util.el (require): Added a missing `require' form,
3835 needed when compiling (for an ange-ftp macro definition).
3836
40ad3db4
DL
38372000-10-13 Dave Love <fx@gnu.org>
3838
3839 * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch.
3840
db460189
GM
38412000-10-13 Gerd Moellmann <gerd@gnu.org>
3842
b41c9501
GM
3843 * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc
3844 fix.
3845
4836835a 3846 * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace
db460189
GM
3847 transparent -colors 8).
3848
3b5e21df
GM
38492000-10-13 Stephen Gildea <gildea@alum.mit.edu>
3850
3851 * time-stamp.el (time-stamp): Fixed bug in new multi-line code
3852 that breaks with old list format timestamps.
3853 (time-stamp-warn-inactive, time-stamp-old-format-warn)
3854 (time-stamp-count, time-stamp-conversion-warn): Improved doc
3855 strings.
3856
16908a3f
JW
38572000-10-13 John Wiegley <johnw@gnu.org>
3858
d7103dda
JW
3859 * align.el, pcomplete.el, calendar/timeclock.el,
3860 eshell/esh-module.el, eshell/eshell.el: Removed URL reference.
3861
dace60cf 3862 * calendar/timeclock.el (timeclock-find-discrep): A fix to some
16908a3f
JW
3863 faulty math, where holiday hours were being computing as seconds.
3864
b6b70cda
JW
38652000-10-13 John Wiegley <johnw@gnu.org>
3866
3867 * desktop.el (desktop-buffer-modes-to-save): Added a global for
3868 specifying what "other" kinds of buffers should be saved. This
3869 used to be hard-coded.
3870 (desktop-buffer-misc-functions): A global for specifying how
3871 auxiliary data should be determined for special buffer types.
3872 (desktop-save-buffer-p): Use `desktop-buffer-modes-to-save',
3873 instead of hard-coding the special buffer types.
3874 (desktop-save): Run `desktop-buffer-misc-functions' to gather
3875 auxiliary data, instead of hard-coding for Info buffers and dired.
3876 (desktop-buffer-info-misc-data): Aux function for determining Info
3877 buffer auxiliary info.
3878 (desktop-buffer-dired-misc-data): Likewise, but for dired buffers.
3879 (desktop-buffer-info): Changed this function to use the info
3880 gathered above.
3881 (desktop-create-buffer): Be a little more careful about what
3882 `minor-mode' means before calling it. This is important for some
3883 buffer types.
3884
8c6b1d83
JW
38852000-10-13 John Wiegley <johnw@gnu.org>
3886
3887 * eshell/esh-util.el: Added a global form which declares an
3888 autoload for `parse-time-string', if that function is not already
3889 defined, and if parse-time.el is available on the user's system.
3890
3891 * eshell/em-ls.el (eshell-ls-applicable): Extended this function
3892 to be aware of ange-ftp user info.
3893 (eshell-do-ls): Bind `ange-cache'. Also, use
3894 `eshell-file-attributes'.
3895 (eshell-ls-annotate): Use `eshell-file-attributes'.
3896 (eshell-ls-file): Made the user-id printing code a bit smarter.
3897
3898 * eshell/esh-util.el (eshell-ange-ls-uids): Added variable, to
3899 allow identification of alias user ids in remote directories.
3900 It's manual, but there's no other way to know when the current
3901 user on the local machine, is also the owning user on the remote
3902 machine.
3903 (fboundp): Bind `ange-cache'.
3904 (eshell-directory-files-and-attributes): Re-organized the logic a
3905 bit to use `eshell-file-attributes' instead of `file-attributes'.
3906 The former is more sensitive to directories that are read via FTP,
3907 and knows how to use ange-ftp to determine full attribute
3908 information, instead of just the name and last modtime.
3909 (eshell-current-ange-uids): Return the current user id when in a
3910 remote directory.
3911 (eshell-parse-ange-ls): Parse a full directory listing that has
3912 been returned by ange-ftp.
3913 (eshell-file-attributes): This beefed up version of
3914 `file-attributes' is only special if the user is currently in a
3915 remote directory, in which case it does a lot of work to find out
3916 what the real attributes of a file are, as they appear on the
3917 remote machine. This makes usage of remote directories (i.e.,
3918 ange-ftp pathnames) much more useful. You can now use Eshell as a
3919 full-fledged FTP client, with much more manipulation ability than
3920 most other clients.
3921
3922 * eshell/em-unix.el (eshell-du-prefer-over-ange): Added a new
3923 variable, which means that Eshell's du should always be preferred
3924 in remote directories.
3925 (eshell-shuffle-files): Use `eshell-file-attributes', rather than
3926 just `file-attributes'.
3927 (eshell-mvcp-template): Bind `ange-cache', to improve performance
3928 when reading remote directories. This is an Eshell-specific
3929 variable (not part of ange-ftp).
3930 (eshell/ln): Bind `ange-cache'.
3931 (eshell/du): Added some extra logic for determining when to use
3932 Eshell's du (which is slow), and when to use the external version
3933 (which may or may not exist).
3934
3935 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof): Call
3936 `eshell-interactive-process', rather than using
3937 `get-buffer-process', since backgrounded processes don't count in
3938 the context of this function's logic.
3939
3940 * eshell/esh-arg.el (eshell-parse-double-quote): Moved a call to
3941 `forward-char', so that null strings are parsed correctly.
3942
87730e84 39432000-09-13 John Wiegley <johnw@gnu.org>
8c6b1d83
JW
3944
3945 * eshell/em-pred.el (eshell-pred-file-type,
3946 eshell-pred-file-links, eshell-pred-file-size): Use
3947 `eshell-file-attributes'. This is more correct over ange-ftp.
3948
3949 * eshell/em-glob.el (eshell-extended-glob): Bind `ange-cache', so
3950 that remote file globbing is more efficient.
3951
3952 * eshell/em-ls.el (eshell-ls-dir): Use `expand-file-name' when
3953 gathering the files and attributes within a directory.
3954
3955 * eshell/em-unix.el (eshell/cat): If any of the files passed on
3956 the command line is a special file (not a regular file, directory
3957 or symlink), always attempt to call the external version of cat.
3958
87730e84 39592000-09-13 John Wiegley <johnw@gnu.org>
8c6b1d83
JW
3960
3961 * eshell/esh-mode.el (eshell-find-tag): Corrections to the
3962 Eshell-friendly version of find-tag.
3963
1c7e37a9
MB
39642000-10-13 Miles Bader <miles@lsi.nec.co.jp>
3965
4836835a 3966 * image-file.el (image-file-name-extensions)
1c7e37a9
MB
3967 (image-file-name-regexps): Add autoload cookies.
3968
11a7f341
KH
39692000-10-13 Kenichi Handa <handa@etl.go.jp>
3970
3971 * international/mule-cmds.el (select-safe-coding-system): If FROM
3972 is string, show it in *Warning* buffer.
3973
8ddddcb0
EZ
39742000-10-13 Eli Zaretskii <eliz@is.elta.co.il>
3975
3976 * startup.el (normal-top-level): Use display-popup-menus-p instead
3977 of window-system.
3978 (command-line): Use display-graphic-p instead of window-system.
3979 (command-line-1): Use display-popup-menus-p and display-mouse-p
3980 instead of window-system.
3981
72200f89
SS
39822000-10-12 Sam Steingold <sds@gnu.org>
3983
3984 * tooltip.el (tooltip-use-echo-area): New user variable.
3985 (tooltip-show): Use it to choose between `x-show-tip' and `message'.
3986
8661c643
DL
39872000-10-12 Dave Love <fx@gnu.org>
3988
d0b40dc1
DL
3989 * recentf.el: Maintainer's checkdoc fixes.
3990
a622451f
DL
3991 * startup.el (normal-top-level-add-subdirs-to-load-path): Use
3992 character class, not ASCII when matching file names.
3993 (fancy-splash-head): Add trailing slash to URL.
3994 (command-line): Don't require XPM support for toolbar.
3995
8661c643
DL
3996 * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix.
3997 (cperl-invalid-face): Revert last change.
3998 (cperl-init-faces): Quote cperl-invalid-face.
3999
ef2ed8ab
KH
40002000-10-12 Kenichi Handa <handa@etl.go.jp>
4001
4002 * startup.el (fancy-splash-text): Remove superfluous quote.
4003
b0da379e
GM
40042000-10-12 Gerd Moellmann <gerd@gnu.org>
4005
dbeb499b
GM
4006 * startup.el (fancy-splash-screens): Don't add a pre-command hook.
4007 (fancy-splash-pre-command, fancy-splash-pending-command): Removed.
4008 (command-line-1): Don't use fancy-splash-pending-command.
4009 (fancy-splash-screens-1): Goto point-min after inserting text.
4010
d861718a
GM
4011 * calendar/diary-lib.el (diary-cyclic): Doc fix from Ed Reingold.
4012
b0da379e
GM
4013 * progmodes/scheme.el (scheme-mode-map): Use lisp-mode-shared-map
4014 instead of shared-lisp-mode-map.
4015
4fb2ad98
MB
40162000-10-12 Miles Bader <miles@lsi.nec.co.jp>
4017
1cb4393e
MB
4018 * faces.el (header-line): Change tty-variant to use underlining.
4019
4fb2ad98
MB
4020 * isearch.el (isearch-set-lazy-highlight-faces-at): New function.
4021 (isearch-highlight): Restore lazy-isearch face properties at old
4022 position, and suppress them at new position.
4023 (isearch-dehighlight): Restore lazy-isearch face properties.
4024 (isearch-lazy-highlight-update): Add lazy-isearch overlays even
4025 over the real isearch overlay, but in that case, don't give it a
4026 face property. Use `push'.
4027
eb991b25
KH
40282000-10-12 Kenichi Handa <handa@etl.go.jp>
4029
4030 * man.el (Man-getpage-in-background): Fix previous change.
4031 Decode the process output only when we are in multibyte mode.
4032
a818c1c0
DL
40332000-10-11 Dave Love <fx@gnu.org>
4034
c990f53a
DL
4035 * info.el (Info-mode-menu): Fix some help.
4036 (info-tool-bar-map): Add entry for Info-last.
4037
a818c1c0
DL
4038 * toolbar/cancel.xpm, toolbar/jump_to.xpm, toolbar/right_arrow.xpm:
4039 * toolbar/close.xpm, toolbar/left_arrow.xpm, toolbar/save.xpm:
4040 * toolbar/copy.xpm, toolbar/mail.xpm, toolbar/saveas.xpm:
4041 * toolbar/cut.xpm, toolbar/mail_compose.xpm:
4042 * toolbar/search-replace.xpm, toolbar/exit.xpm:
4043 * toolbar/mail_send.xpm, toolbar/search.xpm, toolbar/fld_open.xpm:
4044 * toolbar/new.xpm, toolbar/spell.xpm, toolbar/help.xpm:
4045 * toolbar/open.xpm, toolbar/undo.xpm, toolbar/home.xpm:
4046 * toolbar/paste.xpm, toolbar/up_arrow.xpm, toolbar/index.xpm:
4047 * toolbar/preferences.xpm, toolbar/info.xpm, toolbar/print.xpm:
4048 Reduce colour requirements to 25 overall. (Probably wants
4049 revisiting from the originals to reduce further.)
4050
c1b096cb
EZ
40512000-10-11 Eli Zaretskii <eliz@is.elta.co.il>
4052
4053 * hexl.el (hexlify-buffer): Bind coding-system-for-write to
4054 buffer-file-coding-system, instead of raw-text.
4055 (dehexlify-buffer): Bind coding-system-for-read to
4056 buffer-file-coding-system, instead of raw-text.
4057
5c8b7eaf
SS
40582000-10-11 Sam Steingold <sds@gnu.org>
4059
4060 * progmodes/cperl-mode.el (cperl-invalid-face): double-quote
4061 `underline' - fixes the bug introduced on 2000-09-21.
4062
2cfbdb7a
DL
40632000-10-11 Dave Love <fx@gnu.org>
4064
4065 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode): Avoid
4066 compiler warnings.
4067 (scheme-mode): Doc fix.
4068 (scheme-font-lock-keywords-1): Match `define-syntax'.
4069
40702000-10-11 Miles Bader <miles@lsi.nec.co.jp>
4b33f290
MB
4071
4072 * faces.el (frame-set-background-mode): Pay attention to saved
f161d539
MB
4073 face specs as well as default ones. Only do anything if the
4074 bg-mode or display-type has actually changed. Use `dolist'.
0c846ea2 4075 (region): Make dark-background `region' face less in-your-face.
4b33f290 4076
690ec649
SS
40772000-10-10 Sam Steingold <sds@gnu.org>
4078
4079 * chistory.el, ielm.el, ledit.el:
4080 * progmodes/inf-lisp.el, progmodes/scheme.el:
4081 Use `lisp-mode-shared-map' instead of `shared-lisp-mode-map'.
4082
3b95d6bb
SM
40832000-10-10 Stefan Monnier <monnier@cs.yale.edu>
4084
4085 * textmodes/texinfo.el: Update copyright and fix typo.
4086
4087 * desktop.el (desktop-modes-not-to-save): New var.
4088 (desktop-save-buffer-p): Use it.
4089 Also, obey desktop-buffers-not-to-save even for non-file buffers.
4090 (desktop-buffer-file): Use pop-to-buffer if switch-to-buffer fails.
4091
d646c828
DL
40922000-10-10 Dave Love <fx@gnu.org>
4093
4094 * toolbar/tool-bar.el (tool-bar-add-item)
4095 (tool-bar-add-item-from-menu): Don't favour XPM icons on mono
4096 display.
4097
d646c828
DL
4098 * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm:
4099 * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm:
4100 * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm:
4101 * toolbar/index.pbm, toolbar/info.pbm, toolbar/jump_to.pbm:
4102 * toolbar/left_arrow.pbm, toolbar/mail.pbm, toolbar/mail_compose.pbm:
4103 * toolbar/mail_send.pbm, toolbar/new.pbm, toolbar/open.pbm:
4104 * toolbar/paste.pbm, toolbar/preferences.pbm, toolbar/print.pbm:
4105 * toolbar/right_arrow.pbm, toolbar/save.pbm, toolbar/saveas.pbm:
4106 * toolbar/search-replace.pbm, toolbar/search.pbm, toolbar/spell.pbm:
4107 * toolbar/undo.pbm, toolbar/up_arrow.pbm: New files straight from
4108 the .xpms; probably need retouching.
4109
862a7e28
MB
41102000-10-10 Miles Bader <miles@lsi.nec.co.jp>
4111
4112 * subr.el (add-to-list): Add optional argument APPEND.
4113 * battery.el (display-battery): Use `add-to-list'.
4114
46e33aee
TTN
41152000-10-09 Thien-Thi Nguyen <ttn@gnu.org>
4116
930baf47
TTN
4117 * play/zone.el (zone-timer, zone-wc-tbl): Rework
4118 these vars as symbol properties.
2cfbdb7a
DL
4119 (zone, zone-when-idle, zone-leave-me-alone)
4120 (zone-pgm-whack-chars): Use new symbol properties.
930baf47 4121
5a430f9c
TTN
4122 * battery.el (display-battery): Doc spelling fix.
4123
46e33aee
TTN
4124 * vc.el (with-vc-file, edit-vc-file): Specify `indent-function'
4125 property.
4126
adf7d3a8
DL
41272000-10-09 Dave Love <fx@gnu.org>
4128
4129 * toolbar/tool-bar.el (tool-bar-mode): Check whether tool-bar-map
4130 has been initialized before calling tool-bar-setup.
c2156508 4131 (tool-bar-add-item-from-menu): Add autoload cookie.
adf7d3a8 4132
06a8c9f8
EZ
41332000-10-09 Eli Zaretskii <eliz@is.elta.co.il>
4134
e4ca8f8c
EZ
4135 * menu-bar.el (send-mail-item-name): New function.
4136 (menu-bar-tools-menu) <compose-mail>: Use it to display the value
4137 of mail-user-agent in the menu. Don't display the "Send Mail"
4138 item if mail-user-agent is nil or its value is ignore.
4139 (menu-bar-tools-menu) <rmail>: Don't display the "Read Mail" item
4140 if read-mail-command is nil or its value is ignore.
4141
06a8c9f8
EZ
4142 * mouse.el ([header-line mouse-1]): Bind to mouse-select-window.
4143
7dbc9c8a
MB
41442000-10-09 Miles Bader <miles@gnu.org>
4145
29e0814b
MB
4146 * toolbar/up_arrow.xpm: Flip to put highlight in correct place.
4147 Correct image size.
4148 * toolbar/left_arrow.xpm: Correct image size.
4149
7dbc9c8a
MB
4150 * jka-compr.el: Don't call `jka-compr-install' when loading (it
4151 will be done by the definition of `auto-compression-mode' if
4152 necessary. Move code to uninstall existing file-name handler
4153 before definition of `auto-compression-mode'.
4154
4155 * image-file.el (auto-image-file-mode): Move to the end of the
4156 file, because `define-minor-mode' actually calls the mode-function
4157 if the associated variable is non-nil, which requires that all
4158 needed functions be already defined.
4159
65b61266
MB
4160 * mouse.el (popup-menu): Balance parens.
4161
d6b8c85b
SM
41622000-10-08 Stefan Monnier <monnier@cs.yale.edu>
4163
4164 * mouse.el (popup-menu): Move the command call outside the loop
4165 so that popup-menu returns whatever the command returns.
4166
4167 * progmodes/etags.el: Docstring fixes. Maintainer line updated.
4168 (initialize-new-tags-table): Use run-hook-with-args-until-success.
4169 (find-tag): Use pop-to-buffer if switch-to-buffer failed.
4170 (tags-table-format-functions): Renamed from tags-table-format-hooks.
4171
4172 * vc.el (vc-version-diff): diff-switches can be a list.
4173 Use relative filenames for prettier output.
4174
46e33aee 4175 * pcvs.el (cvs-append-to-ignore, cvs-vc-command-advice)
d6b8c85b
SM
4176 (vc-post-command-functions): Remove old-VC compatibility code.
4177
4178 * newcomment.el (comment-indent-default): Autoload.
4179
4180 * font-lock.el (font-lock-defaults): Make buffer-local.
4181 (font-lock-turn-on-thing-lock): Use jit-lock-refontify.
4182 (font-lock-choose-keywords):
4183 Ignore LEVEL unless KEYWORDS is a list of syms.
4184 (c-keywords, c++-keywords, objc-keywords, java-keywords):
4185 Don't wrap regexp-opt things in \(...\) unnecessarily.
4186
4187 * jit-lock.el: Don't require font-lock any more.
4188 (jit-lock-functions): Make buffer-local.
4189 (jit-lock-saved-fontify-buffer-function): Remove.
4190 (jit-lock-mode): Remove autoload cookie.
4191 Remove font-lock specific code.
4192 (jit-lock-unregister): Don't bother handling complex hooks any more.
4193 (jit-lock-refontify): New function.
4194 (jit-lock-fontify-buffer): Use it.
4195 (jit-lock-function-1): Replaced by jit-lock-fontify-now.
4196 (jit-lock-fontify-now): Renamed from jit-lock-function-1.
4197 Add optional args START and END.
4198 Never call font-lock-fontify-region directly.
4199 (jit-lock-function, jit-lock-stealth-fontify): Use it.
4200
4201 * emacs-lisp/regexp-opt.el (regexp-opt): Add \<...\> if PAREN=`words'.
4202
a30ed6ac
DL
42032000-10-08 Dave Love <fx@gnu.org>
4204
4e7c7ca9
DL
4205 * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
4206
4207 * progmodes/icon.el (icon-mode-map): Add name to menu-bar keymap.
4208
4209 * play/studly.el (studlify-region, studlify-word): Add autoload
4210 cookie.
4211
4212 * play/morse.el (morse-region, unmorse-region): Add autoload
4213 cookie.
4214
4215 * play/spook.el (spook-phrases-file): Use expand-file-name, not
4216 concat.
4217
4218 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Don't
4219 insist on symbols starting with word syntax.
4220 (lisp-mode-shared-map): Renamed from shared-lisp-mode-map.
4221 (eval-defun-1): Doc fix.
4222 (indent-sexp): Use nconc to build up indent-stack.
4223
4224 * mail/sendmail.el: Byte-compile-dynamic since it gets loaded by
4225 Gnus with little use.
4226 (mail-setup-hook): Add mail-abbrevs-setup to options.
4227
968f7c4a
DL
4228 * recentf.el: Doc fixes.
4229
4230 * vcursor.el (vcursor-cs-binding): Remove compatibility code.
4231 Clean up remainder.
4232
4233 * timezone.el (timezone-parse-date): Doc fix. Fix regexps for (5)
4234 without timezone and (8) with timezone to enforce some whitespace.
4235 Simplify code somewhat.
4236
4237 * options.el (list-options): Doc that you should use customize.
4238
4239 * iswitchb.el (iswitchb-mode): Add :require.
4240
a30ed6ac
DL
4241 * info.el (Info-goto-node, Info-menu): Doc fix.
4242 (Info-mode-menu): Bind beginning-of-buffer, Info-edit
4243 (info-tool-bar-map): New variable.
4244 (Info-mode): Use it.
4245 (Info-edit-map): Define all in defvar.
4246 (speedbar-attached-frame): Avoid compiler warning.
4247
4248 * toolbar/tool-bar.el (tool-bar-map): Define it empty.
4249 (global-map): Bind [tool-bar] to a filtered map.
4250 (tool-bar-add-item): Remove MAP arg. Allow PBM icons.
4251 (tool-bar-add-item-from-menu): Use tool-bar-map, not tb-map.
4252 Allow PBM icons.
4253 (tool-bar-setup): Adjust calls of tool-bar-add-item.
4254
4255 * toolbar/index.xpm, toolbar/jump_to.xpm, toolbar/attach.xpm:
4256 * toolbar/up_arrow.xpm, toolbar/left_arrow.xpm, toolbar/home.xpm:
4257 * toolbar/right_arrow.xpm: New files. Renamed from tigert's
4258 icons, except up_arrow, which is left-arrow rotated.
4259
4260 * imenu.el (imenu-add-to-menubar): Fix last change.
4261
4e953aff
PB
42622000-10-08 Peter Breton <pbreton@ne.mediaone.net>
4263
4264 * generic-x.el (rul-generic-mode): Remove eval-when-compile
4265 statements. Suggested by Stefan Monnier <monnier@cs.yale.edu>.
4266
739e92a7
EZ
42672000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
4268
d20faceb
EZ
4269 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Fix
4270 typos in doc strings.
4271
a640322e
EZ
4272 * font-lock.el (font-lock-mode, global-font-lock-mode): Mention in
4273 the doc strings how to customize Font Lock faces.
4274
739e92a7
EZ
4275 * mouse.el (mouse-drag-mode-line-1): Fix an off-by-one error in
4276 computing growth when dragging the header line.
4277
8be7408c
EZ
42782000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
4279
4280 * simple.el (kill-line): Doc fix.
4281
6fee86a3
MB
42822000-10-08 Miles Bader <miles@gnu.org>
4283
445a653e
MB
4284 * faces.el (secondary-selection): Make foreground visible on tty.
4285
6fee86a3
MB
4286 * jka-compr.el (auto-compression-mode): Move to the end of the
4287 file, because `define-minor-mode' actually calls the mode-function
4288 if the associated variable is non-nil, which requires that all
4289 needed functions be already defined.
4290 (with-auto-compression-mode): Add autoload cookie.
4291
a115794c
EZ
42922000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
4293
4294 * files.el (find-backup-file-name) [ms-dos]: If support for long
4295 file names is not available, behave as if version-control were set
4296 to never.
4297
b12e6de3
DL
42982000-10-07 Dave Love <fx@gnu.org>
4299
4300 * net/browse-url.el (browse-url-gnome-moz-arguments): New option.
4301 (browse-url-gnome-moz): New function.
4302 (browse-url-browser-function): Use it.
4303 Suggested by Colin Walters <walters@cis.ohio-state.edu>.
4304
20b1d079
SM
43052000-10-07 Stefan Monnier <monnier@cs.yale.edu>
4306
4307 * indent.el (tab-always-indent): New var.
4308 (indent-for-tab-command): Use it.
39250ec3 4309
9ee45b2c 4310 * files.el (set-auto-mode): Ignore unknown -*- mode -*- rather than
a115794c 4311 raise an error. This way it can still default to a sane value.
9ee45b2c 4312
8c6b1d83
JW
43132000-10-06 Stefan Monnier <monnier@cs.yale.edu>
4314
39250ec3
SM
4315 * startup.el (fancy-splash-screens): Use local rather than global map.
4316 Don't use `update-menu-bindings' any more.
4317 Get rid of assumptions about keymap representation.
4318
a23ccdf2
DL
43192000-10-06 Dave Love <fx@gnu.org>
4320
814299a7 4321 * textmodes/fill.el (sentence-end-double-space)
742c1822
DL
4322 (sentence-end-without-period): Doc fix.
4323 (adaptive-fill-regexp): Purecopy.
4324 (unjustify-current-line): Use line-end-position.
4325 (fill-individual-paragraphs-prefix): Use line-beginning-position.
4326
4327 * net/eudc-vars.el (eudc): Add :version, :link.
4328
39250ec3 4329 * international/mule-conf.el (file-coding-system-alist): Use \', not $.
742c1822
DL
4330
4331 * emacs-lisp/find-func.el (find-function-regexp): Remove spurion.
4332 Fix for define-minor-mode.
4333 (function-at-point): Alias to function-called-at-point.
4334
4335 * custom.el (custom-declare-variable, custom-set-variables): Use mapc.
4336
4337 * simple.el (backward-word): Doc fix.
4338
a23ccdf2
DL
4339 * image-file.el (image-file-name-regexp): image-file-regexps ->
4340 image-file-name-regexps.
742c1822 4341 (image-file-name-extensions): Add pbm.
a23ccdf2 4342
39250ec3
SM
43432000-10-06 Stefan Monnier <monnier@cs.yale.edu>
4344
4345 * smerge-mode.el (smerge-diff): Setup the buffer's default-directory
4346 and add filename to the names so that diff-mode can jump to source.
4347
4348 * font-lock.el (font-lock-defaults-alist): Remove the TeX entries.
814299a7 4349 (tex-font-lock-keywords, tex-font-lock-keywords-2)
39250ec3
SM
4350 (tex-font-lock-keywords-1): Remove.
4351 (font-lock-turn-on-thing-lock): Use jit-lock-register.
4352 (font-lock-turn-off-thing-lock): Use jit-lock-unregister.
9ee45b2c
SM
4353 (font-lock-default-fontify-region):
4354 Expand beg..end correctly when just following a multiline region.
39250ec3
SM
4355 (font-lock-fontify-anchored-keywords):
4356 Include the anchor text as part of the multiline.
4357
8d5dfacd
GM
43582000-10-06 Gerd Moellmann <gerd@gnu.org>
4359
4360 * loadup.el (toplevel): Load `loaddefs' before `help' because the
4361 latter needs the autoloaded define-minor-mode macro during the
4362 bootstrap.
4363
4364 * startup.el (command-line): For now, activate tool-bar-mode only
4365 if XPM images are supported.
4366
4367 * mouse.el (mouse-drag-header-line): Don't allow resizing a
4368 window by dragging a header-line at the top of the frame; that's
4c19fbce 4369 confusing because the header-line doesn't move.
8d5dfacd
GM
4370 (mouse-drag-mode-line-1): Use event-* and posn-* functions instead
4371 of treating the event as a list. Some cleanup.
4372
f69aad2b 43732000-10-06 Miles Bader <miles@gnu.org>
8fb051f9 4374
f69aad2b
MB
4375 * simple.el (display-message-or-buffer): New function.
4376 (shell-command-on-region): Use `display-message-or-buffer'.
06933804 4377
09cb7646
MB
4378 * emacs-lisp/easy-mmode.el (define-derived-mode): Tweak generated
4379 docstring parts.
4380
814299a7 4381 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
8fb051f9
MB
4382 (smbclient-prompt-regexp): Add usage note to doc string.
4383 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Removed.
4384 (ftp-mode, smbclient-mode): Don't set `font-lock-defaults'.
4385 Use add-hook for adding the comint filter function, and only do so
4386 if it's not already in the global hook list.
4387 (ftp-mode, smbclient-mode, nslookup-mode): Remove redundant calls
4388 to `make-local-variable'.
4389 (nslookup-font-lock-keywords): Remove prompt entry.
4390 (nslookup): Don't set the process-filter.
4391 (finger): Exit the loop correctly when the regexps list runs out.
4392 (ftp, smbclient, smbclient-list-shares):
4393 Set the real major mode immediately, not after execing.
4394 Use `pop-to-buffer' instead of `switch-to-buffer-other-window'.
4395
4396 * comint.el (comint-watch-for-password-prompt): Use STRING as a prompt.
4397
4c19fbce
SM
43982000-10-05 Stefan Monnier <monnier@cs.yale.edu>
4399
4400 * progmodes/compile.el (compile-collect-regexps): Use dolist and push.
4401
4402 * which-func.el (which-func-format): Remove spurious space.
4403 (which-func-mode): Don't make it permanent-local.
4404 (which-func-ff-hook): Allow which-func-maxout to be nil.
4405 (which-func-update): Simplify a bit. Only run if which-func-mode is t.
4406 (which-func-mode): Simplify.
4407 Use post-command-idle-hook rather than post-command-hook.
4408 Go through all buffers and update their state.
4409 (which-function): Also try add-log-current-defun-function.
4410
4411 * vc.el (with-vc-properties): Use conses rather than length-2 lists.
4412 (vc-checkout, vc-finish-steal, vc-checkin, vc-revert-file):
4413 Update call to with-vc-properties accordingly.
4414 (vc-comment-search-reverse, vc-comment-search-forward): Docstring fix.
4415 (vc-revert-buffer): More careful about window selection and deletion.
4416 (vc-switch-backend): Slight reorg to avoid calling `registered' twice.
4417
4418 * pcvs.el (cvs-ediff-exit-hook): Expect delete-window to fail.
4419 (cvs-retrieve-revision): Reuse a pre-existing buffer.
4420 (cvs-dired-action): Change the default to quickdir.
4421
4422 * newcomment.el (comment-indent): Delegate to indent-according-to-mode
4423 if comment-indent-function returns nil.
4424 (comment-indent-default): New function.
4425 (comment-indent-function): Use it and document the new semantics.
4426
4427 * image-file.el: Docstring fixes.
4428
4429 * help.el (help-xref-on-pp): Use match-string.
4430 (describe-variable): New arg BUFFER.
4431 Store the current buffer in the help-xref-stack.
4432 (temp-buffer-resize-mode): Use define-minor-mode.
4433
4434 * jit-lock.el (jit-lock-mode): Use jit-lock-defer-contextually
4435 consistently with its docstring.
4436 Set jit-lock-first-unfontify-pos in an idempotent way.
4437 (jit-lock-register): Autoload and add arg CONTEXTUAL.
4438
542c6552
GM
44392000-10-05 Alex Schroeder <alex@gnu.org>
4440
4441 * sql.el (sql-mysql-options): New variable.
4442 (sql-mysql): Use it.
4443
a3489ece
MB
44442000-10-05 Miles Bader <miles@lsi.nec.co.jp>
4445
77f6105c
MB
4446 * image.el (image): New group.
4447
814299a7 4448 * smerge-mode.el (smerge-mine-face, smerge-other-face)
a3489ece
MB
4449 (smerge-base-face, smerge-markers-face): Add dark-background variants.
4450
3478046b
PB
44512000-10-04 Peter Breton <pbreton@ne.mediaone.net>
4452
4453 * net/net-utils.el (nslookup-font-lock-keywords)
814299a7 4454 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
3478046b
PB
4455 Ignore the value of wqindow-system; always define keywords
4456
22aca186
KH
44572000-10-05 Kenichi Handa <handa@etl.go.jp>
4458
4459 * startup.el (fancy-splash-screens): Remove the code for
4460 debugging; `(trace-to-stderr "EXITTT\n")'.
4461
55d5d717
MB
44622000-10-05 Miles Bader <miles@gnu.org>
4463
4464 * diff-mode.el (diff-goto-source): Update call to
4465 `diff-hunk-status-msg' to reflect new REV variable.
4466
41fa7178
SM
44672000-10-04 Stefan Monnier <monnier@cs.yale.edu>
4468
4469 * progmodes/icon.el (icon-mode):
4470 Don't gratuitously override the default for comment-column.
4471
4472 * vc-hooks.el (vc-mode-line): Fix interactive spec.
4473
4474 * jit-lock.el (with-buffer-unmodified): Use unwind-protect.
4475 (jit-lock-mode): Make sure font-lock-keywords-only is bound before use.
4476 (jit-lock-functions): New var.
4477 (jit-lock-function-1): Use it if non-nil.
4478 Don't switch the syntax-table. Don't set parse-sexp-lookup-properties.
4479 Set the `fontified' property before doing the fontification to avoid
4480 repeatedly going through the same error.
4481 Don't turn errors into messages.
4482 (jit-lock-register, jit-lock-unregister): New functions.
4483
4484 * dired.el (dired-mark-pop-up): Turn comment into docstring.
4485 Use with-current-buffer.
4486
4487 * dired-aux.el (dired-do-create-files, dired-kill-tree):
4488 Turn comment into docstring.
4489
4490 * apropos.el (apropos-mode): Use define-derived-mode.
4491
3dc78168
GM
44922000-10-04 Gerd Moellmann <gerd@gnu.org>
4493
4494 * startup.el (fancy-splash-pending-command): New variable.
4495 (fancy-splash-pre-command): New function.
4496 (fancy-splash-screens): Rewritten.
4497 (command-line-1): If fancy-splash-pending-command is set, call it
4498 interactively.
4499
dae9dc56
DL
45002000-10-04 Dave Love <fx@gnu.org>
4501
4502 * toolbar/tool-bar.el (tool-bar-setup): New function.
4503 (tool-bar-mode): Use it.
4504
4505 * subr.el (substitute-key-definition): Doc fix.
4506 (play-sound-file): New command.
4507
3388f0a5
AS
45082000-10-04 Andre Spiegel <spiegel@gnu.org>
4509
814299a7 4510 * vc-hooks.el (vc-before-save, vc-default-make-version-backups,
3388f0a5
AS
4511 vc-version-backup-file-name): New functions.
4512
4513 * files.el (basic-save-buffer): Call vc-before-save before saving.
814299a7
MB
4514
4515 * vc-cvs.el (vc-cvs-make-version-backups): Return t if
3388f0a5
AS
4516 vc-cvs-stay-local-p.
4517
4518 * vc.el (vc-revert-buffer): Handle empty diff properly.
4519 (vc-version-backup-file): New function.
4520 (vc-checkout): Create a version backup if necessary.
4521 (vc-checkin): If a version backup file exists, delete it.
4522 (vc-version-diff): Diff locally using version backups, if available.
4523 (vc-revert-file): If there's a version backup, revert locally.
4524 (vc-transfer-file): Use version backup for base version, if
4525 available. If not, ask for confirmation whether to get it from the
4526 server. Update mode line before check-in.
4527
ebd4825d
DL
45282000-10-04 Dave Love <fx@gnu.org>
4529
4530 * toolbar/tool-bar.el (tool-bar-setup): New function.
4531 (tool-bar-mode): Use it.
4532
1b24f4b7
PB
45332000-10-04 Peter Breton <pbreton@ne.mediaone.net>
4534
3dc78168 4535 * net/net-utils.el (nslookup-font-lock-keywords)
814299a7 4536 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
8b7187d8
PB
4537 Only set if window-system is non-nil
4538 (net-utils-run-program): Returns buffer.
4539 (network-connection-reconnect): Added this function.
4540
814299a7
MB
4541 * generic.el:
4542 Incorporates extensive cleanup and docfixes by
9a7f629d
PB
4543 Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu).
4544 Uses cl compile-time macros.
3dc78168
GM
4545 (generic-mode-name, generic-comment-list)
4546 (generic-keywords-list, generic-font-lock-expressions)
4547 (generic-mode-function-list, generic-mode-syntax-table):
9a7f629d
PB
4548 Removed variables.
4549 (generic-mode-alist): Renamed to generic-mode-list.
4550 (generic-find-file-regexp): Default changed to "^#".
4551 (generic-read-type): Uses completing read on generic-mode-list.
4552 (generic-mode-sanity-check): removed this function.
4553 (generic-add-to-auto-mode): Removed this function
3dc78168 4554 (generic-mode-internal): Bind mode-specific definitions
9a7f629d
PB
4555 into function instead of putting them in alist.
4556 (generic-mode-set-comments): Reworked extensively.
4557 (generic-mode-find-file-hook): Simplified regexp searching
814299a7 4558 (generic-make-keywords-list): Omit extra pair of parens
9a7f629d 4559
814299a7 4560 * find-lisp.el (find-lisp-find-files-internal):
1b24f4b7
PB
4561 Make sure directory name ends with "/".
4562
814299a7 4563 * generic-x.el (apache-conf-generic-mode):
1b24f4b7
PB
4564 Regexp now allows leading whitespace.
4565 (rc-generic-mode): Added eval-when-compile
4566 around generic-make-keywords-list.
4567 Deleted duplicate regexp
4568 (rul-generic-mode): Added eval-when-compile
4569 around generic-make-keywords-list.
4570 (etc-fstab-generic-mode): New generic mode.
4571 (rul-generic-mode): Removed one eval-when-compile
814299a7 4572 which caused a max-specpdl-size exceeded error.
1b24f4b7 4573
a7bf5cf3
MB
45742000-10-04 Miles Bader <miles@gnu.org>
4575
4576 * simple.el (minibuffer-temporary-goal-position): New variable.
4577 (next-history-element): Try to keep the position of point in the
4578 input string constant.
4579
4580 * dired-aux.el (dired-mark-read-file-name): Add optional arg DEFAULT.
4581 (dired-do-create-files): If there's only one file, pass it in as
4582 the DEFAULT arg to dired-mark-read-file-name.
4583
ce1087a9
SM
45842000-10-03 Stefan Monnier <monnier@cs.yale.edu>
4585
4586 * diff-mode.el (diff-font-lock-keywords): Minor regex fix.
4587 (diff-goto-source): Be smarter when choosing REVERSE or not.
4588
4589 * textmodes/texinfo.el (texinfo-heading-face): Forgot the var def.
4590 (texinfo-mode-menu): Add an explicit shortcut for update all.
4591
0e41e1d6
AS
45922000-10-03 Andre Spiegel <spiegel@gnu.org>
4593
814299a7 4594 * vc.el (vc-transfer-file, vc-default-receive-file): Rewritten to
858f7cb4
AS
4595 factorize backend-specific code cleanly (this was essentially
4596 conceived by Stefan Monnier).
4597 (vc-unregister): Function removed.
814299a7 4598 (vc-revert-file): New function.
858f7cb4
AS
4599 (vc-revert-buffer): Delegate some of the work to it.
4600
0e41e1d6
AS
4601 * vc-rcs.el (vc-rcs-fetch-master-state): Parse and remember
4602 default branch unconditionally.
4603 (vc-rcs-set-default-branch): New function.
4604 (vc-rcs-cancel-version, vc-rcs-checkin, vc-rcs-checkout): Use it.
4605 (vc-rcs-checkin): If an appropriate default branch has been set,
4606 force creation of that branch.
858f7cb4
AS
4607 (vc-rcs-receive-file): Rewritten to contain only backend-specific
4608 code (as suggested by Stefan Monnier).
0e41e1d6 4609
01c86c56
GM
46102000-10-02 Gerd Moellmann <gerd@gnu.org>
4611
45c477b4
GM
4612 * isearch.el (isearch-lazy-highlight-update): Don't put a lazy
4613 highlighting overlay with a different face over the overlay
4614 isearch uses to highlight the current match because that can lead
4615 to bad face combinations.
4616
01c86c56
GM
4617 * loadup.el (toplevel): Load faces before isearch.
4618
4619 * isearch.el (isearch-faces): New custom group.
4620 (isearch): New defface; was already tested for in the code.
4621 (isearch-lazy-highlight-face): Changed to defface from defcustom.
4622 (isearch-highlight): Always use face `isearch'.
4623
944425c0
DL
46242000-10-02 Dave Love <fx@gnu.org>
4625
4626 * emacs-lisp/byte-opt.el (byte-optimize-lapcode): Don't bind
4627 unused vars. Treat byte-constant2 like byte-constant. Fix bogus
4628 comparison of opcode with operand.
4629
2a099bcc
MB
46302000-10-03 Miles Bader <miles@gnu.org>
4631
4632 * play/yow.el (yow): Don't display multi-line quotations in a *Help*
4633 buffer, since the echo area will now grow to accommodate them.
4634
4300ecb8
AS
46352000-10-02 Andre Spiegel <spiegel@gnu.org>
4636
4637 * vc-hooks.el (vc-registered): If FILE used to be registered under
4638 a certain backend, try that one first.
4639
814299a7 4640 * vc.el (vc-responsible-backend): Undo the previous change in the
4300ecb8
AS
4641 argument list. Handle multiple backends correctly.
4642 (vc-find-new-backend): Function removed.
4643 (vc-register): Use vc-responsible-backend, as before.
4644 (vc-next-action-on-file): Do use vc-registered, not vc-backend.
4645
64e6cc18
GM
46462000-10-02 Gerd Moellmann <gerd@gnu.org>
4647
4648 * startup.el (fancy-splash-head): Change message below the
4649 logo.
4650
00df919e
MB
46512000-10-02 Miles Bader <miles@lsi.nec.co.jp>
4652
4653 * diff-mode.el (diff-goto-source): Emit a status message.
4654 (diff-test-hunk, diff-apply-hunk): Remove unneeded `let'.
4eaa6852 4655 (diff-test-hunk): Fix doc string.
00df919e
MB
4656 (diff-apply-hunk): Only advance if `diff-advance-after-apply-hunk'.
4657 (diff-advance-after-apply-hunk): New variable.
4eaa6852 4658 (diff-apply-hunk): Don't return a value.
00df919e 4659
ceec5a0c
SM
46602000-10-01 Stefan Monnier <monnier@cs.yale.edu>
4661
4662 * vc.el (vc-editable-p): Minor optimization.
4663 (edit-vc-file, vc-next-action-on-file): Don't use find-file.
4664 (vc-find-new-backend): New function split from vc-responsible-backend.
4665 (vc-register): Use it.
4666 (vc-responsible-backend): Remove REGISTER arg and add BACKENDS arg.
4667 (vc-unregister): Drop BACKEND arg (it doesn't work anyway).
4668 (vc-default-unregister, vc-revert-buffer): Docstring fix.
4669 (vc-clear-headers): Don't use find-file.
4670 (vc-revert-buffer): Use `and' again (must have been a braino).
4671 (vc-switch-backend): Only prompt if requested.
4672 Short circuit if nothing is to be done.
4673 Don't use vc-resynch-buffer which could lose unsaved editing.
4674 (vc-default-receive-file): Update call to vc-unregister.
4675 (with-vc-file, vc-next-action-on-file):
4676 Use vc-backend rather than vc-registered.
4677 (vc-next-action-on-file): Use intern-soft.
4678 Deal with read-only *vc-diff* buffer.
4679 (vc-transfer-file): Docstring fix.
4680
4681 * vc-rcs.el (vc-rcs-unregister): Keep a backup of the master file.
4682 (vc-rcs-receive-file): Avoid with-vc-properties.
4683 Update call to vc-unregister.
4684 Use constant `RCS' rather than (dynamically bound) var `backend'.
4685
4ad5da8f
AS
46862000-10-01 Andre Spiegel <spiegel@gnu.org>
4687
814299a7 4688 * vc.el (vc-next-action-on-file): Update mode line only if file
4ad5da8f
AS
4689 is visited.
4690 (vc-start-entry): New argument initial-contents. Don't visit the file
4691 if it isn't already visited. Brought documentation up-to-date.
814299a7
MB
4692 (vc-next-action, vc-register): Updated calls to vc-start-entry.
4693 (vc-checkin): New optional arg initial-contents, which is passed to
4ad5da8f
AS
4694 vc-start-entry.
4695 (vc-finish-logentry): Make sure to bury log buffer only if there
4696 really is one. Call `vc-resynch-buffer' on log-file, not
4697 buffer-file-name.
4698 (vc-default-comment-history, vc-default-wash-log): New functions.
4699 (vc-index-of): Removed.
4700 (vc-transfer-file): Make do without the above.
4701 (vc-default-receive-file): Call comment-history unconditionally. Pass
4702 the resulting string to vc-checkin, instead of inserting it into the
4703 comment ring.
4704
4705 * vc-rcs.el (vc-rcs-receive-file): Call comment-history
4706 unconditionally. Use the comments as initial contents of the log
814299a7 4707 entry buffer. Document the trick to force branch creation with no
4ad5da8f
AS
4708 changes.
4709
aa0c3dca
MB
47102000-10-01 Miles Bader <miles@gnu.org>
4711
4712 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Call
4713 `recenter' with an arg to prevent redrawing the display.
4714
d5f5a2c5
SM
47152000-09-30 Stefan Monnier <monnier@cs.yale.edu>
4716
4717 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Prettier.
4718
4719 * emacs-lisp/lisp.el (lisp-complete-symbol): Only jump 2 not 3 levels.
4720
814299a7 4721 * progmodes/c-mode.el (c-mode):
d5f5a2c5
SM
4722 Don't gratuitously override the default for comment-column.
4723
4724 * textmodes/tex-mode.el (latex-metasection-list): New var.
4725 (latex-imenu-create-index): Use it.
4726 Move the regexp construction outside loops (and use push).
814299a7 4727 (tex-font-lock-keywords-1, tex-font-lock-keywords-2)
d5f5a2c5
SM
4728 (tex-font-lock-keywords): Moved from font-lock.el.
4729 (tex-comment-indent): Remove.
4730 (tex-common-initialization): Don't set comment-indent-function.
4731 (latex-block-default): New var.
4732 (tex-latex-block): Use it to provide a default choice.
4733 Add any unknown choice to latex-block-names.
4734 Insert [...] after {...}.
4735 (tex-last-unended-begin): Simplify regexp.
4736 (tex-goto-last-unclosed-latex-block, latex-backward-sexp-1)
4737 (latex-forward-sexp-1, latex-forward-sexp): New functions.
4738 (latex-mode): Set forward-sexp-function.
4739
4740 * textmodes/texinfo.el (texinfo-font-lock-syntactic-keywords):
4741 Add regexp for @ignore ... @end ignore.
4742 (texinfo-heading-face): New face.
4743 (texinfo-font-lock-keywords): Use it.
4744 (texinfo-mode-menu): New menu.
4745 (texinfo-inside-macro-p, texinfo-inside-env-p, texinfo-insert-quote):
4746 New functions.
4747 (texinfo-mode-map): Bind " to insert-quote and M-RET to insert-@item.
814299a7 4748 (texinfo-section-types-regexp, texinfo-section-level-regexp)
d5f5a2c5
SM
4749 (texinfo-subsection-level-regexp, texinfo-subsubsection-level-regexp):
4750 Remove declaration.
4751 (texinfo-show-structure): Use outline-regexp and texinfo-section-list.
4752
4753 * delsel.el (delete-selection-mode): Use define-minor-mode.
4754
4755 * emacs-lisp/regexp-opt.el (regexp-opt-group): Put more parenthesis.
4756
47572000-09-29 Stefan Monnier <monnier@cs.yale.edu>
4758
4759 * dired.el (dired-map-over-marks): Use modern backquotes and docstring.
4760
8a5506f2
GM
47612000-09-30 Gerd Moellmann <gerd@gnu.org>
4762
068127d6
GM
4763 * replace.el (keep-lines-read-args): New function.
4764 (keep-lines, flush-lines, how-many): Use keep-lines-read-args to
4765 read arguments interactively. Add parameters RSTART and REND.
4766 Operate on the active region in Transient Mark mode.
4767
d777bb8f
GM
4768 * files.el (auto-mode-alist): Add pattern for `#*mail*...'.
4769
8a5506f2
GM
4770 * emacs-lisp/authors.el (authors-obsolete-file-p): New function.
4771 (authors-obsolete-files-regexps): New variable.
4772 (authors-add): Don't record changes in obsolete files.
4773
3fa87bfc
SM
47742000-09-29 Stefan Monnier <monnier@cs.yale.edu>
4775
4776 * autoinsert.el (auto-insert-mode): Use define-minor-mode.
4777
4778 * newcomment.el (comment-indent-function): Use 0 for ;;; and %%%.
4779 (comment-indent): Make sure there's a space between code and comment.
4780 Shift comments left to avoid going past fill-column.
4781
f02149ce
GM
47822000-09-29 Gerd Moellmann <gerd@gnu.org>
4783
4784 * startup.el (startup-echo-area-message): New function.
4785 (display-startup-echo-area-message): Use it.
4786 (fancy-splash-screens): Rewritten to use keymaps and a timer.
4787 (fancy-splash-default-action): New function.
4788 (fancy-splash-screens-1): New function.
4789 (fancy-splash-head): Put a help-echo and a keymap under the image.
4790
a3ef6569
SM
47912000-09-29 Stefan Monnier <monnier@cs.yale.edu>
4792
4793 * diff-mode.el (diff-add-log-file-name): Remove.
4794 (diff-mode): Use add-log-buffer-file-name-function.
4795
4796 * add-log.el (find-change-log): New arg BUFFER-FILE.
4797 (add-log-file-name): Obey add-log-file-name-function.
4798 (add-log-buffer-file-name-function): New var.
4799 (add-change-log-entry): Use it.
4800
75e5b373
MB
48012000-09-29 Miles Bader <miles@gnu.org>
4802
4803 * image-file.el (image-file-name-extensions): New variable.
4804 (image-file-name-regexps): Renamed from `image-file-regexps'.
4805 New default value is nil. Call `auto-image-file-mode'.
4806 (image-file-name-regexp): New function.
4807 (auto-image-file-mode): New minor mode.
4808 (insert-image-file): Don't make conditional on the image-file
4809 handler being enabled.
4810 (image-file-handler): Make the call here conditional instead.
4811 (set-image-file-handler-enabled, enable-image-file-handler)
4812 (disable-image-file-handler): Functions removed.
4813
4814 * emacs-lisp/authors.el (authors-print): Rephrase many-files
4815 string.
4816
de6e1f7c
GM
48172000-09-29 Gerd Moellmann <gerd@gnu.org>
4818
4819 * textmodes/tex-mode.el (latex-outline-regexp): Don't use `list*';
4820 it's a function from CL.
4821 (latex-imenu-create-index): Replace eval-when-compile with progn
4822 because latex-section-alist is not bound while compiling.
4823
d8c201f5
SM
48242000-09-28 Stefan Monnier <monnier@cs.yale.edu>
4825
4826 * textmodes/outline.el (outline-minor-mode): Use define-minor-mode.
4827 (outline-mode): Use define-derived-mode.
4828
814299a7 4829 * progmodes/perl-mode.el (perl-mode):
d8c201f5
SM
4830 * progmodes/awk-mode.el (awk-mode):
4831 * progmodes/asm-mode.el (asm-mode):
4832 Don't gratuitously override the default for comment-column.
4833
4834 * emacs-lisp/lisp.el (lisp-complete-symbol):
4835 Distinguish the let-binding case from the funcall case.
4836 (forward-sexp-function): New variable.
4837 (forward-sexp): Use it.
4838
4839 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Autoload.
4840 (easy-mmode-defmap): Remove the now useless autoload.
4841
4842 * time.el (display-time-mode): Use define-minor-mode.
4843
4844 * subr.el (add-minor-mode): Don't eval NAME.
4845 Don't depend on the presence of TOGGLE-FUN for any special behavior.
4846 Use if rather than cond.
4847
4848 * simple.el (read-expression-map): Define more properly.
4849 (comment-indent-hook): Remove.
4850 (string-to-syntax): Bug fix.
4851
4852 * pcvs.el (cvs-ediff-exit-hook): Kill buffer before window.
4853 (cvs-ediff-diff): Fix typo.
4854 (cvs-revert-if-needed): Don't bother preserving read-only.
4855
4856 * paren.el (show-paren-mode): Use define-minor-mode.
4857
4858 * jka-compr.el (auto-compression-mode): Use define-minor-mode.
4859 (toggle-auto-compression): Remove.
4860 (jka-compr-build-file-regexp): Remove useless grouping.
4861
4862 * diff-mode.el (diff-mode-map, diff-minor-mode-prefix):
4863 Avoid user-reserved bindings.
4864 (diff-mode, diff-minor-mode): Drop make-local-hook (done by add-hook).
4865 (diff-header-face): Revert to grey85.
4866
4867 * cvs-status.el (cvs-status-entry-leader-re): Minor fix.
4868
4869 * complete.el (partial-completion-mode) <defcustom>: Remove.
4870 (partial-completion-mode): Use define-minor-mode.
4871 (PC-do-completion): Understand `completion-auto-help = delay'
4872 to mean to popup the completion buffer only the second time.
814299a7 4873 (PC-include-file-all-completions, PC-include-file-all-completions)
d8c201f5
SM
4874 (PC-include-file-all-completions): Don't quote lambda.
4875
4876 * comint.el (comint-mode-hook): Docstring fix.
4877 (comint-mode): Use define-derived-mode.
4878 (comint-mode-map): Remove obsolete comment.
4879 (make-comint): Minor stylistic change.
4880 (comint-insert-clicked-input): Be more careful to find the overlay.
4881 Use this-command-keys rather than hardcoding mouse-2.
4882
4883 * font-lock.el: Replace confusing (,@ with ,
4884 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
4885 Don't use regexp-opt-depth. Spice up the regexp for args.
4886 Don't distinguish between cmds that can take an opt arg or not.
4887 Use `append' and `prepend' rather than `keep'.
4888
4889 * textmodes/tex-mode.el (latex-imenu-indent-string): Add a space.
4890 (latex-outline-regexp): New var.
4891 (latex-outline-level): New fun.
4892 (latex-section-alist): New var.
4893 (latex-imenu-create-index): Use it. Use `push' as well.
4894 (tex-shell-map): Initialize it properly.
4895 (tex-mode): Minor stylistic change.
4896 (plain-tex-mode): Use define-derived-mode.
4897 (latex-mode): Use define-derived-mode.
4898 Construct the paragraph regexps in a more readable way.
4899 Set the buffer-local outline-{level,regexp} vars.
4900 (slitex-mode): Derive from latex-mode.
4901 (tex-common-initialization): Don't kill-all-vars anymore.
4902 Add setting for comment-add and font-lock-defaults.
4903 (tex-start-shell): Use with-current-buffer and don't re-init keymap.
4904 (tex-main-file): New fun. Obey TeX-master as well and remove `.tex'.
4905 (tex-start-tex): New arg DIR (and send a chdir command for it).
4906 Also display the shell buffer and save it in tex-last-buffer-texed.
4907 (tex-region): Use expand-file-name rather than concat.
4908 Remove code made useless by changes in tex-start-tex.
4909 (tex-file): Use tex-main-file and adapt to new tex-start-tex.
4910
4911 * map-ynp.el (map-y-or-n-p): Fix missing backquotes.
4912
ff398532
DL
49132000-09-28 Dave Love <fx@gnu.org>
4914
4915 * eshell/eshell.el (eshell) <defgroup>: Add :version.
4916
f9415d5b
GM
49172000-09-28 Gerd Moellmann <gerd@gnu.org>
4918
4919 * emacs-lisp/authors.el (authors-add): Use `nconc' instead of
4920 `append'.
4921
fa003899
SM
49222000-09-28 Stefan Monnier <monnier@cs.yale.edu>
4923
4924 * info.el (Info-extract-pointer): Undo last change.
4925 Instead, fix the position of the `bound' arg to re-search-backward.
4926
49272000-09-27 Stefan Monnier <monnier@cs.yale.edu>
4928
4929 * info.el (Info-extract-pointer):
4930 Widen more carefully, to avoid finding pointers in other nodes.
4931 (Info-index): Use push.
4932
f9415d5b 49332000-09-27 Gerd Moellmann <gerd@gnu.org>
6f22f1ad
GM
4934
4935 * frame.el (set-frame-font): Remove call to obsolete function
4936 frame-update-faces.
4937 (set-foreground-color, set-background-color): Likewise for
4938 frame-update-face-colors.
4939
5538b8ba
MB
49402000-09-27 Miles Bader <miles@gnu.org>
4941
4942 * image-file.el: New file.
4943
60536eea
GM
49442000-09-27 Gerd Moellmann <gerd@gnu.org>
4945
5b551d58
GM
4946 * frame.el (frame-notice-user-settings): Don't call
4947 frame-update-faces, which is a no-op now.
814299a7 4948
60536eea
GM
4949 * ediff-wind.el (ediff-control-frame-parameters): Add zero
4950 tool-bar-lines.
4951
36f1966f
DL
49522000-09-27 Dave Love <fx@gnu.org>
4953
4954 * mouse.el: Fix last change.
4955
c5785b73
MB
49562000-09-27 Miles Bader <miles@lsi.nec.co.jp>
4957
4958 * toolbar/tool-bar.el (tool-bar-help): Use `mouse-pixel-position'.
4959
672172d9
KH
49602000-09-22 Kenichi Handa <handa@etl.go.jp>
4961
4962 * international/quail.el (quail-help): The output message is
4963 improved.
4964
4653b4ea
DL
49652000-09-26 Dave Love <fx@gnu.org>
4966
4967 * mouse.el (popup-menu): If POSITION is nil, set it using
4968 mouse-position.
4969
63900fcf
SS
49702000-09-25 Sam Steingold <sds@gnu.org>
4971
4972 * net/browse-url.el (browse-url-file-url): Check for null maps.
4973
cd3b81be
GM
49742000-09-26 Gerd Moellmann <gerd@gnu.org>
4975
876512ab 4976 * frame.el (frame-notice-user-settings): Don't add a
fa003899 4977 tool-bar-lines frame parameter to default-frame-alist in batch mode.
814299a7 4978
fa003899
SM
4979 * frame.el (frame-notice-user-settings):
4980 Make tool-bar-mode and default-frame-alist consistent.
77072ab1 4981
cd3b81be
GM
4982 * toolbar/tool-bar.el (tool-bar-help): New function.
4983
d8b4516f
GM
49842000-09-25 Gerd Moellmann <gerd@gnu.org>
4985
6567e9b5
GM
4986 * bytecomp.el (byte-compile-defvar-or-defconst): Only cons onto
4987 current-load-list in top-level forms. Else this leaks a cons cell
4988 every time a defun is called.
63900fcf 4989
d8b4516f 4990 * mail/mail-utils.el (rmail-dont-reply-to): Fix last change.
63900fcf 4991
a461758e
DL
49922000-09-25 Dave Love <fx@gnu.org>
4993
7df6adc3
DL
4994 * startup.el (fancy-splash-head): Check XPM is available.
4995
a461758e
DL
4996 * autoinsert.el (auto-insert): Doc fix.
4997 (auto-insert-alist): Following GNU notices, don't say `copyright
4998 _by_'. Use line-beginning-position.
4999 (auto-insert): Check buffer-file-name is non-nil before use.
5000
b11af2dd
GM
50012000-09-25 Gerd Moellmann <gerd@gnu.org>
5002
5003 * textmodes/texinfo.el (texinfo-mode): Prevent filling lines
5004 starting with `@def' or `@multitable', in addition to ones
5005 specified by the user in auto-fill-inhibit-regexp.
5006
5f9f981b
GM
50072000-09-25 Markus Rost <rost@math.ohio-state.edu>
5008
5009 * mail/mail-utils.el (rmail-dont-reply-to): Avoid infinite loop if
5010 rmail-dont-reply-to-names matches the empty string.
63900fcf 5011
8ff16b4e
GM
50122000-09-25 Gerd Moellmann <gerd@gnu.org>
5013
63900fcf 5014 * startup.el (command-line-1, fancy-splash-text): Change the
8ff16b4e
GM
5015 text to sound more friendly.
5016
9b4a7800
TTN
50172000-09-23 Thien-Thi Nguyen <ttn@gnu.org>
5018
5019 * progmodes/hideshow.el: Update author email address.
5020 Generally, sync w/ maintainer version 5.22.
9b4a7800
TTN
5021 (hs-hide-all-non-comment-function): New var.
5022 (hs-hide-hook, hs-show-hook, hs-minor-mode): Update docstrings.
5023 (hs-hide-all): Use `hs-hide-all-non-comment-function'.
5024 (hs-show-region): Delete this command.
5025 (hs-minor-mode-map): Change bindings to leave "C-c LETTER" alone.
5026
4c7c1f3f
DL
50272000-09-22 Dave Love <fx@gnu.org>
5028
5029 * hl-line.el (hl-line-overlay): Don't make it buffer-local.
5030 (hl-line-highlight): Specify buffer when moving overlay.
5031
5032 * progmodes/fortran.el (fortran-mode): Locally set
5033 normal-auto-fill-function.
5034 (fortran-auto-fill-mode): Just alias to auto-fill-mode.
5035 (fortran-mode-map): Adjust auto-fill menu entry.
5036
13f93dee
GM
50372000-09-22 Gerd Moellmann <gerd@gnu.org>
5038
36eb0a91
GM
5039 * vc-rcs.el (toplevel): Require `vc' when compiling.
5040
fa003899 5041 * startup.el (fancy-splash-head): Use splash.pbm instead of splash.xbm.
13f93dee 5042
36a03bf9
AS
50432000-09-22 Andre Spiegel <spiegel@gnu.org>
5044
9b4a7800 5045 * vc.el (vc-switch-backend): Signal an error if the file is not
36a03bf9
AS
5046 registered under the new backend.
5047
9b4a7800 5048 * vc-rcs.el (vc-rcs-checkin): Fix bug that prevented check-in
36a03bf9
AS
5049 without explicit revision number.
5050
6e4e8a3b
SM
50512000-09-21 Stefan Monnier <monnier@cs.yale.edu>
5052
5053 * diff-mode.el (diff-file-header-face): Reset to its previous value.
5054 (diff-hunk-text): Correctly use offsets rather than buffer-positions.
5055 (diff-xor): New function.
5056 (diff-find-source-location): Use it. Fix a stupid name clash.
5057 (diff-hunk-status-msg): New function.
5058 (diff-apply-hunk): Drop args OTHER-FILE, DRY-RUN, POPUP and NOERROR.
5059 (diff-test-hunk): Use diff-find-source-location.
5060 (diff-goto-source): Favor the `reverse'.
5061 (diff-hunk-text): Properly handle one-sided context diffs.
5062 (diff-apply-hunk): When done, advance to the next hunk.
5063
1b24b888
GM
50642000-09-21 Gerd Moellmann <gerd@gnu.org>
5065
623a0aae
GM
5066 * startup.el (command-line): If frame was created with a non-zero
5067 tool-bar-lines parameter, switch tool-bar-mode on.
9b4a7800 5068
1b24b888
GM
5069 * add-log.el (change-log-date-face, change-log-name-face)
5070 (change-log-email-face, change-log-file-face)
5071 (change-log-list-face, change-log-conditionals-face)
fa003899
SM
5072 (change-log-function-face, change-log-acknowledgement-face):
5073 New faces, inheriting from font-lock faces.
1b24b888 5074 (change-log-font-lock-keywords): Use them.
9b4a7800 5075
93b3a1c8
DL
50762000-09-21 Dave Love <fx@gnu.org>
5077
80585273
DL
5078 * progmodes/cperl-mode.el (top-level): Clean up
5079 `eval-when-compile's and assorted defvars.
5080 (cperl-invalid-face): Don't double-quote value. Change custom
5081 type.
5082 (cperl-mode): Set normal-auto-fill-function and don't zap
5083 auto-fill-function.
5084 (cperl-imenu--function-name-regexp-perl): Renamed from
5085 imenu-example--function-name-regexp-perl.
5086 (cperl-imenu--create-perl-index): Renamed from
5087 imenu-example--create-perl-index.
5088 (cperl-xsub-scan): Don't require cl.
5089
93b3a1c8
DL
5090 * msb.el (msb-mode-map): Use substitute-key-definition.
5091 (msb-mode): Use msb-mode-map.
5092
43ccb598
AS
50932000-09-21 Andre Spiegel <spiegel@gnu.org>
5094
5095 * vc.el (vc-index-of, vc-transfer-file, vc-default-receive-file):
5096 New functions.
fa003899 5097 (vc-next-action-on-file): Call vc-transfer-file at appropriate places.
43ccb598
AS
5098 (vc-switch-backend): New function.
5099 (vc-prefix-map): Bind `vc-switch-backend' to `b'.
5100 (vc-register): Fix prompt.
5101 (vc-unregister, vc-default-unregister): New functions.
5102 (vc-version-diff): Handle empty buffer in sentinel.
5103
5104 * vc-rcs.el (vc-rcs-workfile-is-newer): New function.
5105 (vc-rcs-state-heuristic): Use it to guess the state of files with
5106 non-strict locking.
5107 (vc-rcs-find-most-recent-rev): Handle the case when a branch has
5108 been set with -b, but not created yet.
5109 (vc-rcs-fetch-master-state): With non-strict locking, compare file
5110 contents in order to find the state.
5111 (vc-rcs-checkin): Allow creation of branches with no changes.
fa003899
SM
5112 (vc-rcs-unregister, vc-rcs-receive-file)
5113 (vc-rcs-set-non-strict-locking): New functions.
43ccb598 5114
9b4a7800 5115 * vc-hooks.el (vc-name): Force correct computation of the value
43ccb598 5116 in case it is missing.
9b4a7800 5117
95fadcca
GM
51182000-09-21 Gerd Moellmann <gerd@gnu.org>
5119
5120 * startup.el (fancy-splash-tail): Use a different foreground
5121 color on a dark frame background.
5122
470f23e1
MB
51232000-09-21 Miles Bader <miles@lsi.nec.co.jp>
5124
5125 * info.el: Use the correct capitalization when making Info-mode
5126 and Info-edit-mode `special' modes.
5127
281096ed
SM
51282000-09-20 Stefan Monnier <monnier@cs.yale.edu>
5129
5130 * diff-mode.el (diff-add-log-file-name, diff-current-defun): New funs.
5131 (diff-mode): Add support for add-log.el.
5132 (diff-hunk-text): Use char offsets rather than line offsets.
5133 (diff-find-source-location): Replace LINE with line-offset (nil
5134 if not found) and always set POS to a meaningful position.
5135 Adapt to the new char-offsets.
5136 (diff-apply-hunk): Drop support for the unused `select' POPUP.
5137 Adapt to the new diff-find-source-location.
5138 (diff-goto-source): Adapt to the new diff-find-source-location.
5139
5140 * add-log.el (add-log-file-name): New function (split out of
5141 add-change-log-entry).
5142 (add-change-log-entry): Use it.
5143 Call add-log-file-name-function with the changelog file name if
5144 the current buffer is not associated with any file.
5145 Avoid find-file if the selected window is dedicated.
5146
5147 * diff-mode.el (diff-find-source-location):
5148 Move code from diff-apply-hunk. Return buffer rather than file.
5149 (diff-apply-hunk): Use the new result from diff-find-source-location.
5150 (diff-goto-source): Use the new diff-find-source-location.
5151
c29d77c4
DL
51522000-09-20 Dave Love <fx@gnu.org>
5153
5154 * iswitchb.el: Some doc fixes.
5155 (iswitchb-mode-map): Define completely initially. Inherit
5156 minibuffer-local-map.
5157 (iswitchb-completion-help) <!iswitchb-xemacs>: Use
5158 fundamental-mode.
5159 (iswitchb-global-map): New variable.
5160 (iswitchb-summaries-to-end): Amalgamate regexps.
5161 (iswitchb-mode): New.
5162 (iswitchb-mode-hook): New variable.
5163 (iswitchb) <defgroup>: Add URL link. Use group `completion', not
5164 `extensions'.
5165
49939379
GM
51662000-09-20 Gerd Moellmann <gerd@gnu.org>
5167
d05c87ac
GM
5168 * ehelp.el (electric-help): New defgroup.
5169 (electric-help-shrink-window): New user-option.
5170 (with-electric-help): Use it.
5171
1ec082d4
GM
5172 * window.el (shrink-window-if-larger-than-buffer): If face
5173 `mode-line' has a :box, and we're on a graphical frame, add 1
5174 to the needed window height.
5175
f46c275e
GM
5176 * frame.el (frame-notice-user-settings): Add a last parameter nil
5177 to a call to `append', because the last list passed to `append' is
5178 not copied, and so subsequent calls to assq-delete-all will modify
5179 default-frame-alist.
5180
b7e11c5b
GM
5181 * startup.el (fancy-splash-image): Change :type.
5182 (fancy-splash-head): Use an XBM image if appropriate.
5183 (command-line-1): Show splash screens in more cases.
5184
26ff68aa
GM
5185 * startup.el (fancy-splash-text): Don't quote faces.
5186
8320414c
GM
5187 * dired.el (dired-font-lock-keywords): Undo last change.
5188 (dired-readin): Bind indent-tabs-mode to nil.
5189
49939379
GM
5190 * startup.el (fancy-splash-head): If frame's background mode
5191 is `dark', change the black background of the image to gray.
5192 (fancy-splash-screens): Display startup echo area message.
5193 (display-startup-echo-area-message): New function.
5194
c3b27206
MB
51952000-09-20 Miles Bader <miles@lsi.nec.co.jp>
5196
55a3d2a1
MB
5197 * faces.el (mode-line, tool-bar): Merge entries for `x' and `w32'.
5198
5199 * info.el (info-header-node): Tweak for color ttys.
5200
37a99821
MB
5201 * faces.el (face-valid-attribute-values): Make sure directories we
5202 search for stipples both exist and are readable before trying to
5203 search them.
5204
0415d0d0
MB
5205 * diff-mode.el (diff-apply-hunk): Jump to the correct line offset
5206 in the dry-run case.
5207
523b128c
MB
5208 * jka-compr.el (with-auto-compression-mode): New macro.
5209
c3b27206
MB
5210 * cus-edit.el (custom-face-tag-face, custom-group-tag-face-1)
5211 (custom-group-tag-face, custom-variable-tag-face): Use relative
5212 :height and inherit from `variable-pitch' face instead of
5213 hardwiring :family.
5214 * hi-lock.el (hi-black-hb): Likewise.
5215
ddba99ad
MB
5216 Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
5217 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Like in
5218 toolbar-add-item, if image doesn't have a mask add a `:mask
5219 heuristic'.
5220
7e99fbde
SM
52212000-09-19 Stefan Monnier <monnier@cs.yale.edu>
5222
5223 * diff-mode.el: Docstring fixes.
5224 (diff-header-face, diff-comment-face): New faces.
5225 (diff-font-lock-keywords): Highlight a bit differently.
5226 (diff-find-source-location): Don't return SPAN any more.
5227 (diff-hunk-text): Don't bother erasing the temp buffer.
5228 (diff-find-text): Drop argument LINE.
5229 (diff-apply-hunk): Update calls to diff-find-text.
5230 (diff-goto-source): Use pop-to-buffer again and don't raise an error.
5231
5232 * calendar/calendar.el: Docstring fixes.
5233 (calendar-make-alist): Don't quote lambda.
5234 (calendar-star-date): Use make-local-variable.
5235
fb275c02
DL
52362000-09-19 Dave Love <fx@gnu.org>
5237
7e99fbde
SM
5238 * toolbar/tool-bar.el: Renamed from toolbar.el.
5239 Change `toolbar' to `tool-bar' generally in symbols.
5240 Make some items invisible in `special' major modes.
5241 (tool-bar-add-item-from-menu): Renamed from toolbar-like-menu-item.
5242 Add arg PROPS.
532cb34d 5243
7e99fbde
SM
5244 * startup.el (fancy-splash-screen) <defgroup>: Fix syntax.
5245 Add :version here.
fb275c02
DL
5246 (fancy-splash-delay, fancy-splash-image): Remove :version here.
5247
8f4ca9a5
GM
52482000-09-19 Gerd Moellmann <gerd@gnu.org>
5249
8b7707e1 5250 * progmodes/sh-script.el (sh-search-word): Remove call to `debug'.
da1608d9 5251
8b7707e1 5252 * files.el (find-file-suppress-same-file-warnings): New user-option.
8fb3df59
GM
5253 (find-file-noselect): Use it.
5254
8b7707e1 5255 * startup.el (fancy-splash-delay, fancy-splash-image): Add :version.
a01bb1db
GM
5256 (fancy-splash-screen): Defgroup.
5257
8f4ca9a5
GM
5258 * add-log.el (change-log-font-lock-keywords): Match names
5259 more exactly for the case that font-lock-constant-face is
5260 underlined.
5261
ba9eeda1 52622000-09-19 Richard M. Stallman <rms@gnu.org>
9b4a7800 5263
8b7707e1 5264 * progmodes/sh-script.el (sh-search-word): Rewritten for speed.
ba9eeda1 5265
289eaef9
AS
52662000-09-19 Andre Spiegel <spiegel@gnu.org>
5267
5268 * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
5269
ce9ded5d
GM
52702000-09-19 Gerd Moellmann <gerd@gnu.org>
5271
c113de23
GM
5272 * gnus/: Update to emacs-21-branch of the Gnus CVS repository.
5273 * gnus/binhex.el, gnus/flow-fill.el, gnus/format-spec.el
5274 * gnus/gnus-ml.el, gnus/gnus-mlspl.el, gnus/ietf-drums.el,
5275 * gnus/imap.el, gnus/mail-parse.el, gnus/mail-prsvr.el,
5276 * gnus/mail-source.el, gnus/mailcap.el, gnus/mm-bodies.el,
5277 * gnus/mm-decode.el, gnus/mm-encode.el, gnus/mm-partial.el,
5278 * gnus/mm-util.el, gnus/mm-uu.el, gnus/mm-view.el,
5279 * gnus/mml.el, gnus/nnimap.el, gnus/nnslashdot.el,
5280 * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
5281 * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
5282 * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
8f4ca9a5 5283 * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
c113de23 5284
ce9ded5d
GM
5285 * startup.el (fancy-splash-text): New variable.
5286 (fancy-splash-delay, fancy-splash-image): New user-options.
5287 (fancy-splash-insert, fancy-splash-head, fancy-splash-tail)
5288 (fancy-splash-screens): New functions.
5289 (command-line-1): If display has a `display' frame parameter, has
5290 colors, and we have XPM support, show more fancy splash screens.
9b4a7800 5291
b9b1c3a9
DL
52922000-09-19 Dave Love <fx@gnu.org>
5293
5294 * map-ynp.el (map-y-or-n-p): Check use-dialog-box. Don't lose
5295 with null `help'. Use modern backquote syntax.
5296
1af25534
GM
52972000-09-19 Gerd Moellmann <gerd@gnu.org>
5298
afd3c8cd
GM
5299 * font-lock.el (font-lock-mode): Change message telling the user
5300 that ``the buffer is too big''.
5301
1af25534
GM
5302 * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
5303 for instance for the case that tab-width is 2.
5304
05b1f851
GM
53052000-09-18 Gerd Moellmann <gerd@gnu.org>
5306
5307 * toolbar/toolbar.el (toolbar-like-menu-item): Like in
5308 toolbar-add-item, if image doesn't have a mask add a `:mask
5309 heuristic'.
5310
8ec8f673
MB
53112000-09-18 Miles Bader <miles@lsi.nec.co.jp>
5312
2b612b1f
MB
5313 * diff-mode.el (diff-hunk-text): Add new optional arg LINE-OFFSET,
5314 and return a cons if it's non-nil.
5315 (diff-apply-hunk): Try to jump to the line in the source text
5316 corresponding to the position of point in the in the hunk.
5317
9b4a7800 5318 * info.el (Info-title-3-face, Info-title-2-face)
8ec8f673
MB
5319 (Info-title-1-face): Use face inheritance and relative sizes
5320 instead of hard-wiring things.
5321
5322 * faces.el (secondary-selection): Make dark-background variant sane.
5323
5eedab4d
AI
53242000-09-16 Andrew Innes <andrewi@gnu.org>
5325
5eedab4d
AI
5326 * makefile.w32-in (compile-files-CMD): No need to make .elc files
5327 read-only, since they aren't under VC now.
5328
6a142f26
DL
53292000-09-17 Dave Love <fx@gnu.org>
5330
e07436e1
DL
5331 * tmm.el: Replace mapcar with mapc in several places.
5332
5333 * loadhist.el (unload-feature): Maybe call elp-restore-list and
5334 ad-unadvise.
5335
7d354dd5
DL
5336 * international/latin1-disp.el: New file.
5337
6a142f26
DL
5338 * calendar/cal-move.el (scroll-calendar-left)
5339 (scroll-calendar-right): Make arg optional (for active mode line).
5340
5341 * calendar/calendar.el (calendar-mode-line-format): Make fields
5342 mouse-sensitive.
5343 (calendar-read-date, calendar-read-date, calendar-window-list):
5344 Unquote lambda.
5345 (calendar-month-name): Use aref, not sref.
5346
5347 * view.el (minor-mode-alist): Propertize the string.
5348
5349 * international/characters.el (standard-case-table): Add entries
5350 for Greek.
5351
50ac70af
MB
53522000-09-18 Miles Bader <miles@gnu.org>
5353
53c9ab4f
MB
5354 * info.el (info-node, info-xref): Add dark-background variants.
5355
a114b1ca
MB
5356 * faces.el (header-line): Change defaults to be less confusing
5357 when mixed with mode-lines.
5358
50ac70af
MB
5359 * info.el (Info-fontify-node): Make a few cleanups.
5360 Add extra `help-echo' and `local-map' props to node xrefs.
5361 Use header-specific faces for node-names & xrefs.
5362 (Info-use-header-line): New variable.
53c9ab4f 5363 (info-header-xref, info-header-node): New faces.
50ac70af
MB
5364 (Info-setup-header-line): New function.
5365 (Info-select-node): Call Info-setup-header-line when enabled.
5366 (Info-extract-pointer): Work even if the header line is hidden.
5367 (Info-header-line): New variable.
5368
729927ff
SM
53692000-09-16 Stefan Monnier <monnier@cs.yale.edu>
5370
5371 * vms-patch.el (print-region-function): Don't quote lambda.
5372
5373 * tempo.el (tempo-expand-if-complete): Quote paren in docstring.
5374
5375 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Cleanup the regexp.
5376 (lm-get-header-re): Allow spaces between the header and the colon.
5377 (lm-header): Allow $ in non-RCS headers.
5378 (lm-header-multiline): Put the strings back into order.
5379 Stop at an empty line. Don't require two space chars if the
5380 line is clearly not another header line.
5381
5382 * emacs-lisp/lmenu.el (popup-menu, popup-menu-internal)
5383 (popup-menu-popup): Remove.
5384
7a98d821
GM
53852000-09-15 Gerd Moellmann <gerd@gnu.org>
5386
7f8f1edc
GM
5387 * toolbar/toolbar.el (toolbar-add-item): Use the same image
5388 specification if or if not tool-bar item contains an `:enabled'
5389 property.
5390
7a98d821
GM
5391 * menu-bar.el (menu-bar-files-menu): Disable ``Save'' if
5392 current buffer has no file name.
5393
a7bc704b
DL
53942000-09-15 Dave Love <fx@gnu.org>
5395
5396 * strokes.el: Sync with maintainer's current version with changes
5397 for Emacs, but avoid runtime cl and levents.
5398 (toplevel): Change autoloads and compilation requires.
5399 (strokes-version, strokes-bug-address, strokes-lift): Values
5400 changed.
5401 (strokes-xpm-header, strokes-insinuated): New variable.
5402 (strokes): Add :link.
5403 (strokes-mode): Customized.
5404 (strokes-while-inhibiting-garbage-collector): New macro.
5405 (strokes-remassoc): Avoid remove-if.
5406 (strokes-fix-button2-command): Don't use ad-do-it.
5407 (strokes-insinuate): New function.
5408 (strokes-button-press-event-p, strokes-button-release-event-p):
5409 New functions, used instead of non-`strokes-' versions..
5410 (strokes-mouse-event-p): Rewritten.
5411 (strokes-event-closest-point): Avoid event-point.
5412 (strokes-get-grid-position): Avoid cdadr, caadr
5413 (strokes-read-stroke, strokes-read-complex-stroke): Avoid levents
5414 functions.
5415 (strokes-help): Use with-output-to-temp-buffer.
5416 (strokes-window-configuration-changed-p): New function.
5417 (strokes-update-window-configuration): Use buffer-live-p,
5418 strokes-window-configuration-changed-p.
5419 (strokes-mode): Use strokes-insinuate. Alter mouse bindings.
5420 (strokes-char-face): New face.
5421 (strokes-char-table, strokes-base64-chars): New variable.
5422 (strokes-xpm-for-stroke, strokes-list-strokes)
5423 (strokes-xpm-char-on-p, strokes-xpm-char-bit-p)
5424 (strokes-xpm-encode-length-as-string, strokes-xpm-decode-char)
5425 (strokes-xpm-to-compressed-string, strokes-decode-buffer)
5426 (strokes-encode-buffer, strokes-xpm-for-compressed-string)
5427 (strokes-compose-complex-stroke, strokes-alphabetic-lessp): New
5428 functions.
5429
47e351a3
GM
54302000-09-15 Gerd Moellmann <gerd@gnu.org>
5431
ebb8f116
GM
5432 * toolbar/toolbar.el (toolbar-add-item): Use image-mask-p.
5433
47e351a3
GM
5434 * image.el (create-image): Doc fix.
5435
5436 * toolbar/toolbar.el (toolbar-add-item): Use `:mask heuristic'
5437 instead of `:heuristic-mask t'.
5438
fe83b953
AI
54392000-09-14 Andrew Innes <andrewi@gnu.org>
5440
5441 * makefile.w32-in: Revert to Unix line endings.
5442
52481729
AI
54432000-09-14 Andrew Innes <andrewi@gnu.org>
5444
3021e816
AI
5445 * makefile.w32-in: Add bootstrap support. Also copy lisp source
5446 when installing.
5447
52481729
AI
5448 * makefile.nt (DONTCOMPILE): Fix typo.
5449
5450 * shell.el (shell-write-history-on-exit): New function.
5451 (shell-dumb-shell-regexp): New custom variable.
5452 (shell-mode): Make shell-write-history-on-exit the process
5453 sentinel if shell name matches shell-dumb-shell-regexp.
5454
5455 * w32-fns.el: Comment out before-init-hook function which resets
5456 source-directory based; this breaks bootstrap.
5457
f8034e41
DL
54582000-09-14 Dave Love <fx@gnu.org>
5459
5460 * toolbar/cancel.xpm, toolbar/close.xpm, toolbar/copy.xpm,
5461 toolbar/cut.xpm, toolbar/exit.xpm, toolbar/fld_open.xpm,
5462 toolbar/help.xpm, toolbar/info.xpm, toolbar/mail.xpm,
5463 toolbar/mail_compose.xpm, toolbar/new.xpm, toolbar/open.xpm,
5464 toolbar/paste.xpm, toolbar/preferences.xpm, toolbar/print.xpm,
5465 toolbar/save.xpm, toolbar/saveas.xpm, toolbar/search-replace.xpm,
5466 toolbar/search.xpm, toolbar/spell.xpm, toolbar/undo.xpm: New.
5467 From Tuomas Kuosmanen <tigert@gimp.org>. (Gnome icons fetched
5468 from <URL:http://tigert.gimp.org/gnome/gnome-stock/>.)
5469
5470 * toolbar/toolbar.el: New.
5471
5472 * subdirs.el: Add toolbar.
5473
b9ce5694
GM
54742000-09-14 Gerd Moellmann <gerd@gnu.org>
5475
5476 * indent.el (indent-for-tab-command): Doc fix.
5477
986b7dee
GM
54782000-09-14 Alex Schroeder <alex@gnu.org>
5479
5480 * ansi-color.el (ansi-colors): Doc change.
5481 (ansi-color-get-face): Simplified regexp.
5482 (ansi-color-faces-vector): Added more faces, doc change.
5483 (ansi-color-names-vector): Doc change.
5484 (ansi-color-regexp): Simplified regexp.
5485 (ansi-color-parameter-regexp): New regexp.
5486 (ansi-color-filter-apply): Doc change.
5487 (ansi-color-filter-region): Doc change.
5488 (ansi-color-apply): Use ansi-color-regexp and ansi-color-get-face,
5489 deal with zero length parameters.
5490 (ansi-color-apply-on-region): Doc change.
5491 (ansi-color-map): Doc change.
5492 (ansi-color-map-update): Removed debugging message.
5493 (ansi-color-get-face-1): Added condition-case to trap
5494 args-out-of-range errors.
5495 (ansi-color-get-face): Doc change.
5496 (ansi-color-make-face): Removed.
5497 (ansi-color-for-shell-mode): New option.
9b4a7800 5498
076ff911
KH
54992000-09-13 Kenichi Handa <handa@etl.go.jp>
5500
5501 * international/quail.el (quail-start-translation): Translate KEY
5502 if necessary even if it doesn't have any mapping in the current
5503 input method.
5504 (quail-start-conversion): Likewise.
5505 (quail-help): The output message is improved.
5506
bdf08678
MB
55072000-09-13 Miles Bader <miles@gnu.org>
5508
5509 * comint.el (comint-output-filter): Revert to using
5510 `insert-before-markers'. Add bletcherous hack to undo damage
5511 caused by `insert-before-markers'. Put `front-sticky' property on
5512 overlays created here so that the field code understands how the
5513 overlay works. Use a let when making comint-last-prompt-overlay,
5514 so that the code is easier to read.
5515
ffb8db8d
DL
55162000-09-13 Dave Love <fx@gnu.org>
5517
5518 * wid-edit.el (widget-default-format-handler): DTRT when
5519 doc-property is a function.
5520
5dd05f61
GM
55212000-09-12 Francesco Potorti` <pot@gnu.org>
5522
5523 * mail/sendmail.el (mail-mode-fill-paragraph): Do not get the
5524 filed name if it's not there.
5525
35177617
DL
55262000-09-12 Dave Love <fx@gnu.org>
5527
9023837e
DL
5528 * simple.el (read-mail-command): Doc fix.
5529 (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
5530
35177617
DL
5531 * vc.el (vc-dired-listing-switches): Fix :version.
5532
5533 * vc-hooks.el: Doc fixes.
5534
5535 * subr.el (add-minor-mode): Use toggle-fun arg.
5536
5537 * speedbar.el: Add :version to several defcustoms.
5538
5539 * imenu.el (imenu--truncate-items, imenu--cleanup)
5540 (imenu--generic-function): Avoid mapcar.
5541 (imenu--replace-spaces): Function removed.
5542 (imenu--completion-buffer): Use subst-char-in-string.
5543 (imenu-add-to-menubar): Use keymap inheritance.
5544
1afaae94
MB
55452000-09-12 Miles Bader <miles@gnu.org>
5546
5547 * diff-mode.el (diff-hunk-text): Use `with-temp-buffer'.
5548 (diff-mode-map): Bind `diff-test-hunk'.
5549 (diff-apply-hunk): Use `select-window' instead of `pop-to-buffer'.
5550
55512000-09-11 Gerd Moellmann <gerd@gnu.org>
71246c2c
GM
5552
5553 * bytecomp.el (byte-compile-defvar): Undo last change
5554 because it breaks '(make-variable-buffer-local (defvar ...)'
5555 which is used at least in dired.
5556
63c36c3c
KH
55572000-09-12 Kenichi Handa <handa@etl.go.jp>
5558
5559 * international/quail.el (quail-define-package): Docstring
5560 modified.
5561
1ad24be1
KH
55622000-09-12 Kenichi Handa <handa@etl.go.jp>
5563
362a8065
KH
5564 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Add
5565 extra docstrings for "chinese-ccdospy", "chinese-ecdict",
5566 "chinese-etzy", "chinese-sw", and "chinese-ziranma". Modify the
5567 docstring of "chinese-py".
5568
1ad24be1
KH
5569 * international/quail.el (quail-translation-docstring): New
5570 variable.
5571 (quail-show-keyboard-layout): Docstring modified.
5572 (quail-select-current): Likewise.
5573 (quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
5574 infinite recursive call.
5575 (quail-help): Check quail-translation-docstring. Format of the
5576 output changed.
5577 (quail-help-insert-keymap-description): Adjusted for the above
5578 change.
5579
cc0f95a4
GM
55802000-09-11 Gerd Moellmann <gerd@gnu.org>
5581
5582 * bytecomp.el (byte-compile-defvar): Only cons onto
5583 current-load-list in top-level forms. Else this leaks a cons cell
5584 every time a defun is called.
5585
7530b6da
MB
55862000-09-11 Miles Bader <miles@lsi.nec.co.jp>
5587
5588 * diff-mode.el (diff-apply-hunk): Function basically rewritten.
5589 Now understands non-unified diffs. Some functionality moved into
5590 `diff-hunk-text' and `diff-find-text'. Add OTHER-FILE, DRY-RUN,
5591 POPUP, and NOERROR arguments. If DRY-RUN is true, don't actually
5592 modify anything. Only reposition point in the patched file if the
5593 patch succeeds. Only pop up another window if POPUP is true.
5594 Emit a message describing what happened if successful, and at what
5595 line-offset. Automatically detect reversed hunks and do something
5596 appropriate.
5597 (diff-hunk-text, diff-find-text): New functions.
5598 (diff-filter-lines): Function removed.
5599 (diff-test-hunk): New function.
5600 (diff-goto-source): Rewritten in terms of diff-apply-hunk.
5601
6b124390
DL
56022000-09-10 Dave Love <fx@gnu.org>
5603
5604 * textmodes/tildify.el: Minor doc/commentary fixes.
5605 (tildify) <defgroup>: Add :version.
5606
5607 * faces.el (face-x-resources): Make custom type more specific.
5608 (frame-background-mode): Use mapc.
5609 (region) <defcustom>: Add :version.
5610
7f8b6551
SM
56112000-09-08 Stefan Monnier <monnier@cs.yale.edu>
5612
9b4a7800
TTN
5613 * vc-sccs.el (vc-sccs-register):
5614 * vc-rcs.el (vc-rcs-register):
7f8b6551
SM
5615 * vc-cvs.el (vc-cvs-register): Don't clear file's properties.
5616 * vc.el (vc-register): Clear file's properties.
5617
c454aac1
GM
56182000-09-08 Gerd Moellmann <gerd@gnu.org>
5619
5620 * faces.el (face-spec-set): Only face-spec-reset-face when
5621 ATTRS is non-nil.
5622
bb934822
EZ
56232000-09-08 Eli Zaretskii <eliz@is.elta.co.il>
5624
5625 * help.el (help-insert-xref-button): Fix a typo in doc string.
5626
03419440
EZ
56272000-09-07 Eli Zaretskii <eliz@is.elta.co.il>
5628
7f8b6551
SM
5629 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
5630 Fix doc strings of chinese-py-b5, chinese-py, and chinese-tonepy input
43b11fee
EZ
5631 methods.
5632
03419440
EZ
5633 * menu-bar.el (read-mail-item-name): New function.
5634 (menu-bar-tools-menu): Use it to compute and display the package
5635 used to read email.
5636 (menu-bar-tools-menu): Fix typo in GUD's help string.
5637
dbcee71a
DL
56382000-09-07 Dave Love <fx@gnu.org>
5639
19e713d8
DL
5640 * diff-mode.el (diff-mouse-goto-source): New function.
5641
a7cafade 5642 * vc-sccs.el: Doc fixes.
7f8b6551 5643 (vc-sccs-register-switches, vc-sccs-master-templates): Add :version.
a7cafade
DL
5644
5645 * vc-rcs.el: Doc fixes.
7f8b6551
SM
5646 (vc-rcs-register-switches, vc-rcs-checkin-switches)
5647 (vc-rcs-checkout-switches, vc-rcs-header)
a7cafade
DL
5648 (vc-rcs-master-templates): Add or change :version.
5649
7f8b6551 5650 * vc-cvs.el: Doc fixes.
a7cafade
DL
5651 (vc-cvs-register-switches, vc-cvs-header, vc-cvs-use-edit)
5652 (vc-cvs-stay-local): Add :version.
5653
dbcee71a
DL
5654 * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
5655
ed254191
KH
56562000-09-07 Kenichi Handa <handa@etl.go.jp>
5657
5658 * international/quail.el (quail-help): Fix previous change.
5659
ab0ee409
GM
56602000-09-07 Gerd Moellmann <gerd@gnu.org>
5661
f46f845b 5662 * faces.el (color-values): Doc fix.
9b4a7800 5663
ab0ee409
GM
5664 * faces.el (frame-set-background-mode): Use frame-parameter
5665 instead of frame-parameters.
5666
5667 * frame.el (filtered-frame-list): Reduce consing.
9b4a7800 5668 (frames-on-display-list): Call frame-parameter instead of
ab0ee409 5669 frame-parameters.
9b4a7800 5670
f7246ac7
KH
56712000-09-07 Kenichi Handa <handa@etl.go.jp>
5672
5673 * language/devan-util.el (devanagari-to-indian-region): In the
5674 loop, change the following char, not preceding char.
5675
96889af2
GM
56762000-09-07 Gerd Moellmann <gerd@gnu.org>
5677
1091dd67
GM
5678 * menu-bar.el (menu-bar-update-buffers): Call frame-parameter
5679 instead of frame-parameters.
5680
9b4a7800 5681 * faces.el (set-face-attribute): Simplify by calling
0da3ecef
GM
5682 internal-set-lisp-face-attribute with FRAME being 0.
5683
5684 * vc.el: Remove `Id' version control keyword.
96889af2 5685
0fddd0dc
KH
56862000-09-07 Kenichi Handa <handa@etl.go.jp>
5687
5688 * help.el (help-make-xrefs): Adjusted for the change of
5689 help-xref-mule-regexp.
5690 (help-insert-xref-button): New function.
5691
5692 * international/mule-cmds.el (help-xref-mule-regexp-template):
5693 Include the pattern for character set.
5694 (leim): New group.
5695
5696 * international/quail.el: Don't require face.
5697 (quail): New group.
7f8b6551 5698 (quail-other-command): Dummy command to make quail-help work better.
0fddd0dc
KH
5699 (quail-keyboard-layout-alist): Add Keyboard type "jp106".
5700 (quail-keyboard-layout-substitution): New variable.
5701 (quail-update-keyboard-layout): New function.
5702 (quail-keyboard-layout-type): New customizable variable.
5703 (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
5704 (quail-keyboard-translate): Pay attention to
5705 quail-keyboard-layout-substitution.
5706 (quail-insert-kbd-layout): New function.
5707 (quail-show-keyboard-layout): New function.
5708 (quail-get-translation): If the definition is a vector of length
7f8b6551 5709 1, and the element is a string of length 1, return the character
0fddd0dc
KH
5710 in that string.
5711 (quail-update-current-translations): Fix the case of
5712 relative-index out of range.
5713 (quail-build-decode-map, quail-insert-decode-map): New Functions.
5714 (quail-help): Show keyboard layout by quail-insert-kbd-layout.
7f8b6551 5715 Show key sequences for all available characters.
0fddd0dc
KH
5716 (quail-help-insert-keymap-description): Don't show such verbose
5717 key bindings as quail-self-insert-command.
5718
5719 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
5720 Format changed, and each element now have extra documentations.
5721 (tit-process-header): Delete invalid characters from TIT-PROMPT.
5722 Adjusted for the change of quail-cxterm-package-ext-info.
5723
8ddceaf1
GM
57242000-09-06 Gerd Moellmann <gerd@gnu.org>
5725
5726 * vc-hooks.el (toplevel): Don't require `vc' during compilation;
5727 requiring it leads to a recursive loading of vc.el and vc-hooks.el
5728 during bootstrap.
5729
099bd78a
SM
57302000-09-05 Stefan Monnier <monnier@cs.yale.edu>
5731
5732 * vc.el: (toplevel): Don't require `dired' at run-time.
5733 (vc-dired-resynch-file): Remove autoload cookie.
5734
57352000-09-05 Andre Spiegel <spiegel@gnu.org>
5736
5737 * vc.el: Made several backend functions optional.
5738 (vc-default-responsible-p): New function.
5739 (vc-merge): Use RET for first version to trigger merge-news, not
5740 prefix arg.
5741 (vc-annotate): Handle backends that do not support annotation.
5742 (vc-default-merge-news): Removed. The existence of a merge-news
5743 implementation is now checked on caller sites.
5744
9b4a7800 5745 * vc-hooks.el (vc-default-mode-line-string): Removed CVS special
099bd78a
SM
5746 case.
5747
9b4a7800 5748 * vc-cvs.el (vc-cvs-mode-line-string): New function, handles the
099bd78a
SM
5749 special case that has been removed from the default in vc-hooks.el.
5750
57512000-09-05 Stefan Monnier <monnier@cs.yale.edu>
5752
5753 * vc.el (vc-log-edit): Properly handle the case where FILE is nil.
5754
57552000-09-05 Andre Spiegel <spiegel@gnu.org>
5756
5757 * vc-hooks.el: Require vc during compilation.
5758 (vc-file-setprop): Use `vc-touched-properties' if bound by the new
5759 macro `with-vc-properties' in vc.el.
5760 (vc-file-getprop): Doc fix.
5761 (vc-after-save): Call `vc-dired-resynch-file' only if vc is loaded.
9b4a7800 5762
099bd78a
SM
5763 * vc.el: Require dired-aux during compilation.
5764 (vc-name-assoc-file): Moved to vc-sccs.el.
5765 (with-vc-properties): New macro.
9b4a7800 5766 (vc-checkin, vc-checkout, vc-revert, vc-cancel-version,
099bd78a
SM
5767 vc-finish-steal): Use it.
5768 (vc-cancel-version): Moved RCS-specific code to vc-rcs.el. The call
5769 to the backend-specific function is now supposed to do the checkout,
5770 too.
5771 (vc-log-edit): Handle FILE being nil and added a FIXME for log-edit.
5772
9b4a7800 5773 * vc-cvs.el (vc-cvs-checkin, vc-cvs-checkout): Don't bother to
099bd78a
SM
5774 set file properties; that gets done in the generic code now.
5775
5776 * vc-rcs.el (vc-rcs-uncheck): Renamed to `vc-rcs-cancel-version'.
5777 Changed parameter list, added code from vc.el that does the
5778 checkout, possibly with a double-take.
5779
5780 * vc-sccs.el (vc-sccs-name-assoc-file): Moved here from vc.el.
5781 (vc-sccs-add-triple, vc-sccs-rename-file, vc-sccs-lookup-triple): Use
5782 the above under the new name.
5783 (vc-sccs-uncheck): Renamed to `vc-sccs-cancel-version'. Changed
5784 parameter list, added checkout command.
5785 (vc-sccs-checkin, vc-sccs-checkout): Don't bother to set file
5786 properties; that gets done in the generic code now.
5787
57882000-09-05 Stefan Monnier <monnier@cs.yale.edu>
5789
5790 * vc.el: Docstring fixes (courtesy of checkdoc).
5791
57922000-09-05 Stefan Monnier <monnier@cs.yale.edu>
5793
5794 * vc.el (vc-checkout-writable-buffer-hook)
5795 (vc-checkout-writable-buffer): Remove.
5796 (vc-start-entry): Always call vc-log-edit, never vc-log-mode.
5797 (vc-log-mode): Make it into a clean derived major mode.
5798 (vc-log-edit): Mark buffer unmodified (as vc-log-mode did) and use
5799 vc-log-mode if log-edit is not available.
5800 (vc-dired-mode-map): Don't set-keymap-parent yet.
5801 (vc-dired-mode): Do set-keymap-parent here.
5802 (vc-dired-buffers-for-dir): Nop if dired is not loaded.
5803
08ba3862
GM
58042000-09-05 Gerd Moellmann <gerd@gnu.org>
5805
5806 * faces.el (set-face-attribute, face-spec-reset-face)
5807 (face-spec-set): Avoid consing by removing calls to `apply'.
5808
5809 * frame.el (frame-parameter): Move to C code.
5810
3b4429b4
DL
58112000-09-05 Dave Love <fx@gnu.org>
5812
5813 * help.el (help-manyarg-func-alist): Add ml-prefix-argument-loop,
5814 insert-before-markers-and-inherit. Now checked systematically!
5815
877055f6
GM
58162000-09-05 Alex Schroeder <alex@gnu.org>
5817
5818 * sql.el (sql-postgres): Use sql-postgres-options.
5819 (sql-postgres-options): New variable.
5820
58212000-09-05 Alex Schroeder <alex@gnu.org>
5822
5823 * sql.el (sql-mode-menu): Work around missing variable mark-active
5824 in XEmacs.
5825 (sql-mode): Added call to easy-menu-add for XEmacs compatibility.
5826 (sql-interactive-mode): Added call to easy-menu-add for XEmacs
5827 compatibility.
5828
7a004b71
GM
58292000-09-04 Gerd Moellmann <gerd@gnu.org>
5830
54baed30 5831 * vc.el (vc-dired-resynch-file): Add autoload cookie.
9b4a7800 5832
7a004b71
GM
5833 * vc.el (toplevel): Require `dired' at run-time for dired-mode-map.
5834
5835 * Makefile.in (DONTCOMPILE): Fix typo in file name.
5836
58372000-09-04 Andre Spiegel <spiegel@gnu.org>
5838
5839 * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we
5840 don't support anything else under SCCS yet.
5841
5842 * vc-hooks.el: Minor doc fixes.
5843
58442000-09-04 Andre Spiegel <spiegel@gnu.org>
5845
5846 * vc.el (vc-next-action-on-file): Do not visit the file if it's
5847 not necessary. If verbose in state `needs-patch', do the same as
5848 under `up-to-date'. When NOT verbose and `needs-patch', check out
5849 latest version instead of `merge-news'.
5850 (vc-next-action-dired): Don't mess with default-directory here; it
5851 breaks other parts of dired. It is the job of the
099bd78a 5852 backend-specific functions to adjust it temporarily if they need it.
7a004b71
GM
5853 (vc-next-action): Remove a special CVS case.
5854 (vc-clear-headers): New optional arg FILE.
5855 (vc-checkin, vc-checkout): Set properties vc-state and
5856 vc-checkout-time properly.
099bd78a 5857 (vc-finish-steal): Call steal-lock, not steal, which doesn't exist.
7a004b71
GM
5858 (vc-print-log): Use new backend function `show-log-entry'.
5859 (vc-cancel-version): Do the checks in a different order. Added a
5860 FIXME concerning RCS-only code.
5861
5862 * vc-rcs.el (vc-rcs-show-log-entry): New function.
5863 (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties.
5864
5865 * vc-cvs.el (vc-cvs-show-log-entry): New function.
5866
9b4a7800 5867 * vc-hooks.el (vc-default-mode-line-string): Show state
7a004b71
GM
5868 `needs-patch' as a `-' too.
5869
58702000-09-04 Andre Spiegel <spiegel@gnu.org>
5871
5872 * vc.el (vc-responsible-backend): New optional arg REGISTER.
5873 (vc-default-could-register): New function.
5874 (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions.
5875 (vc-resynch-buffer): Call vc-dired-resynch-file.
5876 (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use
5877 vc-resynch-buffer instead of vc-resynch-window.
5878 (vc-next-action-dired): Don't redisplay here, that gets done as a
5879 result of the individual file operations.
5880 (vc-retrieve-snapshot): Corrected prompt order.
5881
5882 * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file.
9b4a7800 5883
7a004b71
GM
5884 * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp
5885 as well.
5886 (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p. Handle
5887 hostname regexps. Updated all callers.
5888 (vc-cvs-responsible-p): Handle directories as well.
5889 (vc-cvs-could-register): New function.
5890 (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file
5891 properties up-to-date.
9b4a7800 5892
7a004b71
GM
5893 * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the
5894 user whether to create one.
5895
58962000-09-04 Andre Spiegel <spiegel@gnu.org>
5897
5898 * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to
5899 check out a non-existing file.
5900
5901 * vc-cvs.el (vc-cvs-checkout): Do the right thing when the
5902 workfile does not exist.
5903
5904 * vc.el (vc-version-diff): Use `require' to check for existence of
5905 diff-mode.
5906
59072000-09-04 Andre Spiegel <spiegel@gnu.org>
5908
5909 * vc-cvs.el (vc-cvs-registered): Use new function
5910 vc-cvs-parse-entry to do the actual work.
5911
59122000-09-04 Andre Spiegel <spiegel@gnu.org>
5913
5914 * vc-hooks.el (vc-find-backend-function): If function doesn't
5915 exist, return nil instead of error.
5916 (vc-call-backend): Doc fix.
5917
5918 * vc.el (vc-do-command): Doc fix.
5919 (vc-finish-logentry): When checking in from vc-dired, choose the
5920 right backend for logentry check.
5921 (vc-dired-mode-map): Inherit from dired-mode-map.
5922 (vc-dired-mode): Local value of dired-move-to-filename-regexp
5923 simplified.
5924 (vc-dired-state-info): Removed, updated caller.
5925 (vc-default-dired-state-info): Use parentheses instead of hyphens.
5926 (vc-dired-hook): Use vc-BACKEND-dir-state, if available.
5927 (vc-dired-listing-switches): New variable.
5928 (vc-directory): Use it, instead of dired-listing-switches.
5929
5930 * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too.
5931 (vc-cvs-dir-state): New function.
7f8b6551 5932 (vc-cvs-dir-state-heuristic): New function, subroutine of the above.
7a004b71
GM
5933 (vc-cvs-parse-entry): New function, also to be used in
5934 vc-cvs-registered.
9b4a7800 5935
7a004b71
GM
59362000-09-04 Stefan Monnier <monnier@cs.yale.edu>
5937
5938 * vc.el (vc-revert-buffer): Hide the frame for dedicated windows
5939 *or* single-window-frames.
5940
59412000-09-04 Andre Spiegel <spiegel@gnu.org>
5942
5943 * vc.el (vc-update-changelog): Split into generic part and default
5944 implementation. Doc string adapted.
5945 (vc-default-update-changelog): New function. Call the `rcs2log'
5946 script in exec-directory, to fix a long-standing nuisance.
5947
5948 * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that
5949 simply signals an error.
9b4a7800 5950
7a004b71
GM
59512000-09-04 Stefan Monnier <monnier@cs.yale.edu>
5952
5953 * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the
5954 control-flow more clear and to avoid running `cvs' twice.
5955
5956 * vc.el (vc-next-action-on-file): Doc fix.
5957 (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode.
5958 (vc-print-log): Eval `file' before constructing the continuation.
5959
59602000-09-04 Andre Spiegel <spiegel@gnu.org>
5961
5962 * vc.el (vc-next-action-on-file): Corrected several messages.
5963 (vc-merge): Add prefix arg `merge-news'; handle it.
5964
5965 * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this
5966 is not reached. It is.
5967 (vc-cvs-merge): Set state to 'edited after merge.
5968 (vc-cvs-merge-news): Set workfile version to nil if not known.
5969 (vc-cvs-latest-on-branch-p): Recommented. Candidate for removal.
5970
5971 * vc-*.el (vc-*-checkout): Switch off coding systems for checkout
5972 via stdout. (Merge from main line.)
9b4a7800 5973
7a004b71
GM
59742000-09-04 Stefan Monnier <monnier@cs.yale.edu>
5975
5976 * vc.el (vc-finish-logentry): Thinko in the "same comment"
5977 detection.
5978
59792000-09-04 Stefan Monnier <monnier@cs.yale.edu>
5980
5981 * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them
5982 against kill-all-local-variables.
5983 (vc-log-edit): Don't save vc-parent-buffer any more.
5984 (vc-last-comment-match): Initialize to an empty string.
5985 (vc-post-command-functions): New hook.
5986 (vc-do-command): Run it.
5987 (vc-next-action-on-file): Remove unnecessary pop-to-buffer.
5988 (vc-finish-logentry): Only add the comment to the ring if it's
5989 different from the last comment entered.
5990 (vc-new-comment-index): New function.
5991 (vc-previous-comment): Use it. Make the minibuffer message
5992 slightly less terse.
5993 (vc-comment-search-reverse): Make it work forward as well. Don't
5994 set vc-comment-ring-index if no match is found. Use
5995 vc-new-comment-index.
5996 (vc-comment-search-forward): Use vc-comment-search-reverse.
5997 (vc-dired-mode-map): Don't inherit from dired-mode-map since
5998 define-derived-mode will do it for us. Bind `v' to a keymap that
5999 inherits from vc-prefix-map so that we can bind `vt' without
6000 binding C-x v t.
6001 (vc-retrieve-snapshot): Parenthesis typo.
6002
6003 * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0
6004 to 1. Make sure to switch to *vc* before looking for an error
6005 message. Use vc-parse-buffer.
6006
60072000-09-04 Andre Spiegel <spiegel@gnu.org>
6008
6009 * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR
6010 and NAME.
6011 (vc-retrieve-snapshot): Split into two parts.
6012 (vc-default-retrieve-snapshot): New function.
6013
6014 * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME.
6015 (vc-cvs-retrieve-snapshot): New function (untested).
6016 (vc-cvs-stay-local): Default to t.
6017 (vc-cvs-remote-p): New function and property.
6018 (vc-cvs-state): Stay local only if the above is t.
6019 (vc-handle-cvs): Removed.
6020 (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be
6021 done via vc-handled-backends now.
6022 (vc-cvs-header): Escape Id.
6023
60242000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6025
6026 * vc.el (vc-do-command): Remove unused commands.
6027 (vc-version-diff): Make sure default-directory ends with a slash.
6028 Move the window commands into a vc-exec-after.
6029 (vc-print-log): Move more of the code into the `vc-exec-after'.
6030
60312000-09-04 Andre Spiegel <spiegel@gnu.org>
6032
6033 * vc.el (vc-exec-after): Fix disassembly of previous sentinel.
6034 (vc-print-log): Search current revision from beginning of buffer.
6035 (vc-revert-buffer): Clear echo area after the diff is finished.
6036 (vc-prefix-map): Removed definition of "t" for terse display in vc
6037 dired.
6038 (vc-dired-mode-map): Inherit from dired-mode-map. Added
6039 definition of "vt" for terse display.
6040 (vc-dired-mode): Fix dired-move-to-filename-regexp.
6041
60422000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6043
6044 * vc.el (vc-exec-after): Avoid caddr.
6045
60462000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6047
6048 * vc.el (vc-exec-after): New function.
6049 (vc-do-command): Use it to add a termination message for async
6050 procs.
6051 (vc-checkout): Try to handle a missing-backend situation.
6052 (vc-version-diff): Use vc-exec-after to fix the behavior for diffs
6053 of a directory with a backend using async diffs.
6054 (vc-print-log): Use vc-exec-after and use log-view-goto-rev if
6055 present.
6056
6057 * vc-sccs.el (vc-sccs-state-heuristic): Use
6058 file-ownership-preserved-p.
6059
6060 * vc-rcs.el (vc-rcs-state-heuristic): Use
6061 file-ownership-preserved-p.
6062 (vc-rcs-checkout): Remove the error-handling for missing-rcs.
6063
60642000-09-04 Andre Spiegel <spiegel@gnu.org>
6065
6066 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to
6067 vc-do-command.
6068
6069 * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert
6070 when there are no changes.
6071
60722000-09-04 Andre Spiegel <spiegel@gnu.org>
6073
6074 * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p.
6075
6076 * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p.
6077
60782000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6079
6080 * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el.
6081
6082 * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move
6083 the `fset' outside of the defvar so that it works even if
6084 vc-prefix-map was already defined.
6085 (vc-setup-buffer): New function, split out of vc-do-command.
6086 (vc-do-command): Allow BUFFER to be t to mean `just use the
6087 current buffer without any fuss'.
6088 (vc-version-diff): Change the `diff' backend operation to just put
6089 the diff in the current buffer without erasing it. Always use
6090 *vc-diff* even for directory-diffs. Use vc-setup-buffer. Protect
6091 shrink-window-if-larger-than-buffer.
6092 (vc-print-log): Change the `print-log' backend operation to just
6093 put the log in the current buffer without erasing it. Protect
6094 shrink-window-if-larger-than-buffer.
6095 (vc-update-change-log): Fix setd typo.
6096
6097 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis.
6098 (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer.
6099
6100 * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer.
6101 (vc-rcs-diff): Insert in the current buffer and remove unused arg
6102 CMP.
6103
6104 * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use
6105 with-temp-file. Use the new BUFFER=t argument to vc-do-command.
6106 (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer.
6107
61082000-09-04 Andre Spiegel <spiegel@gnu.org>
6109
6110 * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is
6111 not possible, use vc-BACKEND-workfile-unchanged-p.
6112 (vc-default-workfile-unchanged-p): New function. Delegates to a
6113 full vc-BACKEND-diff.
6114
6115 * vc-hooks.el (vc-simple-command): Removed.
6116
6117 * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command
6118 instead of vc-simple-command.
6119 (vc-rcs-fetch-master-state): Removed check for unlocked-changes to
6120 avoid doing a diff when opening a file.
6121 (vc-rcs-state): Added check for unlocked-changes.
6122 (vc-rcs-header): Escape Id.
6123 (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION.
6124 (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific
6125 version.
6126
6127 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten.
6128 (vc-sccs-diff): Remove optional arg CMP.
6129 (vc-sccs-state): Call vc-workfile-unchanged-p, not the
6130 SCCS-specific function.
6131
6132 * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of
6133 vc-simple-command.
6134
61352000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6136
6137 * vc.el (vc-editable-p): Renamed from vc-writable-p.
6138 (with-vc-file, vc-merge): Use vc-editable-p.
6139 (vc-do-command): Remove unused var vc-file and fix the
6140 doubly-defined `status' var. Add a user message when starting an
6141 async command.
6142 (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry)
6143 (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file):
6144 Use with-current-buffer.
6145 (vc-buffer-sync): Use unless.
6146 (vc-next-action-on-file): If the file is 'edited by read-only,
6147 make it read-write instead of trying to commit.
6148 (vc-version-diff, vc-update-change-log): Use `setq
6149 default-directory' rather than `cd'.
6150 (vc-log-edit): Don't forget to set default-directory in the
6151 buffer.
6152
6153 * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis.
6154 (vc-sccs-state-heuristic): Use file-writable-p instead of
6155 comparing userids.
6156 (vc-sccs-checkout): Use `unless'.
6157
6158 * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead
6159 of comparing userids.
6160 (vc-rcs-fetch-master-state): Handle the case where rcs is missing.
6161 Simplify the logic by eliminating unreachable code.
6162 (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and
6163 just do a recursive call if we need to retry.
6164 (vc-rcs-checkout): Handle the case where rcs is missing by making
6165 the buffer read-write if requested and re-signalling the error.
6166
6167 * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP.
6168
61692000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6170
6171 * vc-hooks.el (vc-handled-backends): Docstring change.
6172 (vc-ignore-vc-files): Mark obsolete.
6173 (vc-registered): Check vc-ignore-vc-files.
6174 (vc-find-file-hook, vc-file-not-found-hook): Don't check
6175 vc-ignore-vc-files.
6176
6177 * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs.
6178
61792000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6180
6181 * vc.el (vc-checkout): Don't do anything special for ange-ftp
6182 files since ange-ftp already has vc-registered return nil.
6183
6184 * vc-sccs.el (vc-sccs-state): Use with-temp-buffer.
6185 (vc-sccs-workfile-version): Use with-temp-buffer and new
6186 vc-parse-buffer and don't bother setting the property.
6187 (vc-sccs-add-triple): Use with-current-buffer and
6188 find-file-noselect.
6189 (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if.
6190
6191 * vc-rcs.el (vc-rcs-find-most-recent-rev): New function. The code
6192 derives from the old vc-parse-buffer but uses the revision number
6193 rather than the date (much easier to compare robustly).
6194 (vc-rcs-fetch-master-state): Use `with-temp-buffer'. Adapt to the
6195 new vc-parse-buffer (and vc-rcs-find-most-recent-rev). Find the
6196 locking-user more directly. Check strict locking and set
6197 checkout-model appropriately.
6198 (vc-rcs-parse-locks): Remove.
6199 (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the
6200 new vc-parse-buffer (and vc-rcs-find-most-recent-rev).
6201 (vc-rcs-system-release): Use with-current-buffer and
6202 vc-parse-buffer.
6203 (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer.
6204
6205 * vc-hooks.el (vc-parse-buffer): Lobotomize the monster.
6206 (vc-simple-command): Docstring fix.
6207 (vc-registered): Align the way the file-handler is called with the
6208 way the function itself works.
6209 (vc-file-owner): Remove.
6210
6211 * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer. Reorder
6212 extraction of fields and call to file-attributes because of a
6213 temporary bug in rcp.el.
6214 (vc-cvs-fetch-status): Use with-current-buffer.
6215
62162000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6217
6218 * vc.el (vc-do-command): Use file-relative-name.
6219 (vc-responsible-backend): Use vc-backend if possible.
6220 (vc-create-snapshot): Improve the `interactive' spec. Add support
6221 for branches and dispatch to backend-specific `create-snapshot'.
6222 (vc-default-create-snapshot): New function, containing the bulk of
6223 the old vc-create-snapshot.
6224 (vc-retrieve-snapshot): Improve the interactive spec.
6225
6226 * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el.
6227 (vc-backend-hook-functions): Remove.
6228 (vc-find-backend-function): Don't try to load vc-X-hooks anymore.
6229 (vc-backend): Reintroduce the test for `file = nil' now that I
6230 know why it was there (and added a comment to better remember).
6231
6232 * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in
6233 code from vc-sccs-hooks.el.
6234 (vc-sccs-release, vc-sccs-system-release): Remove. Don't require
6235 'vc anymore.
6236 (vc-sccs-responsible-p): Use expand-file-name instead of concat
6237 and file-directory-p instead of file-exists-p.
6238 (vc-sccs-check-headers): Simplify the regexp.
6239
6240 * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code
6241 from vc-rcs-hooks.el. Don't require 'vc anymore.
6242 (vc-rcs-responsible-p): Use expand-file-name instead of concat and
6243 file-directory-p instead of file-exists-p.
6244
6245 * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code
6246 from vc-cvs-hooks.el.
6247 (proto vc-cvs-registered): Require 'vc-cvs instead of
6248 'vc-cvs-hooks. Don't require 'vc anymore.
6249 (vc-cvs-responsible-p): Use expand-file-name instead of concat and
6250 file-directory-p instead of file-exists-p.
6251 (vc-cvs-create-snapshot): New function, replacing
6252 vc-cvs-assign-name.
6253 (vc-cvs-assign-name): Remove.
6254
62552000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6256
6257 * vc-cvs.el (vc-cvs-header): New var.
6258
6259 * vc-rcs.el (vc-rcs-exists): Remove.
6260 (vc-rcs-header): New var.
6261
6262 * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use
6263 `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'.
6264 (vc-sccs-header): New var.
6265
6266 * vc.el (vc-do-command): Get rid of the `last' argument.
6267 (vc-header-alist): Remove, replaced by vc-X-header.
6268 (vc-insert-headers): Use vc-X-header instead of vc-header-alist.
6269 (vc-dired-hook): Use expand-file-name instead of concat.
6270 (vc-directory): Use file-name-as-directory.
6271 (vc-snapshot-precondition, vc-create-snapshot)
6272 (vc-retrieve-snapshot): Allow the command to operate on any
6273 directory.
6274
6275 * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either
6276 just removing the 'WORKFILE argument or by removing the 'MASTER
6277 argument and replacing `file' with (vc-name file).
6278
62792000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6280
6281 * vc.el: Update Copyright and add a crude list of backend funs.
6282 (vc-writable-p): New function.
6283 (with-vc-file): Use vc-writable-p.
7f8b6551 6284 (vc-next-action-on-file): Update call to vc-steal-lock and cleanup.
7a004b71
GM
6285 (vc-register): Avoid vc-name.
6286 (vc-locking-user): Remove.
6287 (vc-steal-lock): Make the `owner' arg non-optional.
6288 (vc-merge): Use vc-writable-p instead of vc-locking-user and
6289 vc-checkout-model.
6290 (vc-default-dired-state-info): Use vc-state instead of
6291 vc-locking-user and return special strings for special states.
6292 (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user
6293 and get rid of one of the special CVS cases.
6294 (vc-cancel-version): prettify error message with \\[...].
6295 (vc-rename-master): New function.
6296 (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn
6297 use vc-rename-master) instead of vc-BACKEND-record-rename. Make
6298 the CVS special case generic.
6299 (vc-default-record-rename): Remove.
6300 (vc-file-tree-walk-internal): Only call FUNC for files that are
6301 under control of some VC backend and replace `concat' with
6302 expand-file-name.
6303 (vc-file-tree-walk): Update docstring.
6304 (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot)
6305 (vc-retrieve-snapshot): Update call to vc-file-tree-walk.
6306
6307 * vc-sccs.el (vc-sccs-rename-file): Renamed from
6308 vc-sccs-record-rename. Use `find-file-noselect' rather than
6309 `find-file' and call `vc-rename-master' to do the actual move.
6310 (vc-sccs-diff): Remove unused `backend' variable.
6311
6312 * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version
6313 to delay loading of vc-sccs until it is really used.
6314 (vc-sccs-master-templates): Preload.
6315 (vc-sccs-state): Update call to vc-sccs-parse-locks.
6316 (vc-sccs-project-dir): Remove (merged into
6317 vc-sccs-search-project-dir).
6318 (vc-sccs-search-project-dir): Rewrite using file name handling ops
6319 rather than `concat', make sure it is preloaded and don't bother
6320 to check that the file actually exists.
6321 (vc-sccs-parse-locks): Remove unused `file' argument, remove
6322 `locks' argument (use buffer's content instead) and eliminate n^2
6323 behavior.
6324
6325 * vc-rcs.el: Update Copyright.
6326 (vc-rcs-rename-file): New function.
6327 (vc-rcs-diff): Remove unused `backend' variable.
6328
6329 * vc-hooks.el: Update Copyright.
6330 (vc-backend): Don't accept a nil argument any more.
6331 (vc-up-to-date-p): Turn into a defsubst.
6332 (vc-possible-master): New function.
6333 (vc-check-master-templates): Use `vc-possible-master' and allow
6334 funs in vc-X-master-templates to return a non-existent file.
6335
6336 * vc-cvs.el: Update Copyright.
6337 (vc-cvs-diff): Remove unused `backend' variable.
7f8b6551 6338 (vc-cvs-checkout): Only toggle read-only if the buffer is setup right.
7a004b71
GM
6339
6340 * vc-cvs-hooks.el: Preload a proto vc-cvs-registered.
6341
63422000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6343
6344 * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version
6345 since it can be called from vc-rcs.el.
6346 (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior.
6347
63482000-09-04 Andre Spiegel <spiegel@gnu.org>
6349
6350 * vc.el (vc-version-diff): Expand file name read from the
6351 minibuffer. Handle the case when a previous version number can't
6352 be guessed. Give suitable messages when there were no differences
6353 found.
6354 (vc-clear-headers): Call backend-specific implementation, if one
6355 exists.
6356 (vc-cancel-version): Made error checks generic. When done, clear
6357 headers generically, too.
6358
6359 * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here
6360 from vc-clear-headers in vc.el.
6361
6362 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer
6363 correctly.
6364 (vc-rcs-latest-on-branch-p): Made second argument VERSION
6365 optional. Handle the case when it's not there.
6366
63672000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6368
6369 * vc.el (vc-locking-user): Moved from vc-hooks.el.
6370
63712000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6372
6373 * vc-hooks.el (vc-loadup): Remove.
6374 (vc-find-backend-function): Use `require'. Also, handle the case
6375 where vc-BACKEND-hooks.el doesn't exist.
6376 (vc-call-backend): Cleanup.
6377
63782000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6379
6380 * vc-rcs-hooks.el (vc-rcs-templates-grabbed,
6381 vc-rcs-grab-templates)
6382 (vc-rcs-registered): Remove. The default function works as well.
6383 * vc-sccs-hooks.el (vc-sccs-templates-grabbed,
6384 vc-sccs-grab-templates)
6385 (vc-sccs-registered): Remove. The default function works as well.
6386
6387 * vc.el (vc-version-diff): Left out a vc- in call to
6388 vc-call-backend.
6389 (vc-default-dired-state-info, vc-default-record-rename)
6390 (vc-default-merge-news): Update for the new backend argument.
6391
6392 * vc-hooks.el (vc-find-backend-function): Return a cons cell if
6393 using the default function.
6394 (vc-call-backend): If calling the default function, pass it the
6395 backend as first argument. Update the docstring accordingly.
6396 (vc-default-state-heuristic, vc-default-mode-line-string): Update
6397 for the new backend argument.
6398 (vc-make-backend-sym): Renamed from vc-make-backend-function.
6399 (vc-find-backend-function): Use the new name.
6400 (vc-default-registered): New function.
6401
64022000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6403
6404 * vc.el (vc-merge): Use vc-find-backend-function.
6405
6406 * vc-hooks.el (vc-backend-functions): Remove.
6407 (vc-loadup): Don't setup 'vc-functions.
6408 (vc-find-backend-function): New function.
6409 (vc-call-backend): Use above fun and populate 'vc-functions
6410 lazily.
6411 (vc-backend-defines): Remove.
6412
64132000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6414
6415 * vc.el (vc-register): Put a FIXME note for a newly found bug.
6416 Call vc-call-backend without the leading vc-.
6417 (vc-responsible-backend, vc-finish-logentry, vc-annotate)
6418 (vc-check-headers): Call vc-call-backend without the leading vc-.
7f8b6551 6419 (vc-annotate-time-span): Replace confusing use of `cond' with `or'.
7a004b71
GM
6420 (vc-annotate-display): Replace confusing use of `cond' with `or'.
6421 Call vc-call-backend without the leading vc-.
6422
6423 * vc-cvs.el (tail): Provide vc-cvs.
6424 * vc-sccs.el (tail): Provide vc-sccs.
6425 * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check.
6426
6427 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions)
6428 (vc-make-backend-function, vc-call): Pass names without leading
7f8b6551 6429 `vc-' to vc-call-backend so we can blindly prefix them with vc-BACKEND.
7a004b71
GM
6430 (vc-loadup): Don't load vc-X-hooks if vc-X is requested.
6431 (vc-call-backend): Always try to load vc-X-hooks.
6432 (vc-registered): Remove vc- in call to vc-call-backend.
6433
64342000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6435
6436 * vc.el (vc-process-filter): New function.
6437 (vc-do-command): Setup `vc-process-filter' for the async process.
6438 (vc-maybe-resolve-conflicts): New function to reduce
6439 code-duplication. Additionally, it puts the buffer in
6440 `smerge-mode' if applicable.
6441 (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after
6442 calling `merge-news'.
7f8b6551 6443 (vc-merge): Use `vc-maybe-resolve-conflicts' after calling `merge'.
7a004b71
GM
6444 (vc-log-edit): New function. Replacement for `vc-log-mode' by
6445 interfacing to log-edit.el.
6446 (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if
6447 log-edit is available.
6448 (vc-resolve-conflicts): Delegate to `smerge-ediff' if available.
6449
64502000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6451
6452 * vc.el (vc-register): Remove `vc-buffer-backend' setup.
6453 (vc-log-mode-map): New name for vc-log-entry-mode and merge the
6454 defvar and the initialization.
6455 (vc-log-mode): Minor docstring fix and use vc-log-mode-map.
6456
6457 * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove.
6458 (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling.
6459
7f8b6551 6460 * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a FIXME.
7a004b71
GM
6461
64622000-09-04 Andre Spiegel <spiegel@gnu.org>
6463
6464 * vc.el (vc-file-clear-masterprops): Removed.
6465 (vc-checkin, vc-revert-buffer): Removed calls to the above.
6466 (vc-version-diff): Use buffer-size without argument.
6467 (vc-register): Heed vc-initial-comment.
6468
6469 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for
6470 default branch.
6471
6472 * vc-rcs.el (vc-rcs-register): Parse command output to find master
6473 file name and workfile version.
6474 (vc-rcs-checkout): Removed call to vc-file-clear-masterprops.
6475
6476 * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to
6477 vc-file-clear-masterprops.
6478
6479 * vc-sccs.el (vc-sccs-checkout): Removed call to
6480 vc-file-clear-masterprops. If writable, set vc-state to 'edited
6481 rather than user login name.
6482
6483
64842000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6485
6486 * vc.el (vc-workfile-unchanged-p): Remove unused argument
6487 `want-differences-if-changed' and simplify.
6488 (vc-next-action-on-file) [needs-merge]: Resynch the buffer.
6489 (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status
6490 output (which is invalid for async vc-diff) to decide whether to
6491 do the revert silently or not.
6492
64932000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6494
6495 * vc-hooks.el (vc-loadup): Load files quietly.
6496 (vc-call-backend): Oops, brain fart.
6497
64982000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6499
6500 * vc-cvs.el (vc-cvs-state): Typo.
7f8b6551 6501 (vc-cvs-merge-news): Return the status code rather than the error msg.
7a004b71
GM
6502
65032000-09-04 Andre Spiegel <spiegel@gnu.org>
6504
6505 * vc.el (with-vc-file, vc-next-action, vc-version-diff)
6506 (vc-dired-mark-locked): Replaced usage of vc-locking-user with
6507 vc-state or vc-up-to-date-p.
6508 (vc-merge): Use vc-backend-defines to check whether merging is
6509 possible. Set state to 'edited after successful merge.
6510
6511 * vc-hooks.el (vc-locking-user): If locked by the calling user,
6512 return that name. Redocumented.
6513
65142000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6515
6516 * vc.el (vc-recompute-state, vc-next-action-on-file): Update to
6517 new `vc-state' semantics.
6518 (vc-finish-steal): Set 'vc-state to 'edited rather than setting
6519 'vc-locking-user to the current user.
6520 (vc-merge): Inline vc-backend-merge. Comment out code that I
6521 don't understand and hence can't adapt to the new `vc-state' and
6522 `vc-locking-user' semantics.
6523 (vc-backend-merge): Remove.
6524
6525 * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state
6526 rather than 'vc-locking-user.
6527
6528 * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'.
6529
6530 * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit.
6531 (vc-state): Don't use 'reserved any more. Just use the same
6532 convention as the one used for vc-<backend>-state where the
6533 locking user (as a string) is returned.
6534 (vc-locking-user): Update, based on the above convention. The
6535 'vc-locking-user property has disappeared.
7f8b6551 6536 (vc-mode-line, vc-default-mode-line-string): Adapt to new `vc-state'.
7a004b71
GM
6537
6538 * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state
6539 with a heuristic one.
6540 (vc-cvs-merge-news): Just use 'edited for the case with conflicts.
6541 (vc-cvs-checkin): Do a trivial parse to set the state in case of
6542 error. That allows us to get to 'needs-merge even in the
6543 stay-local case. There's still no way to detect 'needs-patch in
6544 such a setup (or to force an update for that matter).
6545 (vc-cvs-logentry-check): Remove, the default works as well.
6546
65472000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6548
7f8b6551 6549 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs asynchronously.
7a004b71
GM
6550
6551 * vc.el (vc-do-command): kill-all-local-variables, to reset any
6552 major-mode in which the buffer might have been put earlier. Use
6553 `remove' and `when'. Allow `okstatus' to be `async' and use
6554 `start-process' in this case.
6555 (vc-version-diff): Handle the case where the diff looks empty
6556 because of the use of an async process.
6557
65582000-09-04 Andre Spiegel <spiegel@gnu.org>
6559
6560 * vc.el (vc-next-action-on-file): Removed optional parameter
6561 `simple'. Recompute state unconditionally.
6562 (vc-default-toggle-read-only): Removed.
6563
6564 * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only.
6565 (vc-toggle-read-only): Undid prev change.
6566
6567 * vc-cvs.el (vc-cvs-stay-local): Renamed from
6568 vc-cvs-simple-toggle. Redocumented.
6569 (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic.
6570 (vc-cvs-toggle-read-only): Removed.
6571
65722000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6573
7f8b6551 6574 * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): Remove.
7a004b71
GM
6575 (vc-prefix-map): Move from vc-hooks.el and make autoloaded.
6576 (vc-release-greater-or-equal-p): Move to vc-rcs.el.
6577 (vc-file-clear-masterprops): Braindead "fix". It was a nop and
6578 still is. So maybe it should be removed.
6579 (vc-head-version, vc-find-binary): Remove.
6580 (vc-recompute-state): Move from vc-hooks.el.
6581 (vc-next-action-on-file): Add a `simple' argument to allow
6582 avoiding the `recompute' step (use for vc-cvs-simple-toggle).
7f8b6551
SM
6583 (vc-default-toggle-read-only, vc-default-record-rename): New funs.
6584 (vc-next-action, vc-dired-hook): Use vc-state instead of vc-cvs-status.
7a004b71
GM
6585 (vc-dired-mode-map): Properly defvar it.
6586 (vc-print-log): Call log-view-mode if available.
6587 (small-temporary-file-directory): defvar instead of use boundp.
6588 (vc-merge-news): Moved to vc-cvs.el.
6589 (vc-default-merge-news): New function.
6590
6591 * vc-sccs.el: Require 'vc and 'vc-sccs-hooks.
6592 (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks.
6593 (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the
6594 unknown `vc-latest-version' function. It should probably refer to
6595 vc-workfile-version or somesuch, but it's very unclear to me and I
6596 don't have SCCS to test things.
6597
6598 * vc-sccs-hooks.el: Provide 'vc-sccs-hooks.
6599 (vc-sccs-state-heuristic): Fix typo.
6600 (vc-sccs-workfile-unchanged-p): Add missing argument.
6601
6602 * vc-rcs.el: Require vc and vc-rcs-hooks.
6603 (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks.
6604 (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p).
6605 (vc-release-greater-or-equal-p): Move from vc.
6606 (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part,
6607 vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates.
6608 (vc-rcs-checkout): Add a missing `new-version' argument in the
7f8b6551 6609 call to vc-rcs-latest-on-branch-p. Hopefully that was the right one.
7a004b71
GM
6610
6611 * vc-rcs-hooks.el: Provide 'vc-rcs-hooks.
6612 (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el.
6613 (vc-rcs-latest-on-branch-p): Use the `version' argument rather
6614 than the apparently unbound `workfile-version'.
6615
6616 * vc-hooks.el (vc-master-templates): Def the obsolete var.
6617 (vc-file-prop-obarray): Use `make-vector'.
6618 (vc-backend-functions): Add new hookable functions
6619 vc-toggle-read-only, vc-record-rename and vc-merge-news.
6620 (vc-loadup): If neither backend nor default functions exist, use
6621 the backend function rather than nil.
6622 (vc-call-backend): If the function if not bound yet, try to load
6623 the non-hook file to see if it provides it.
6624 (vc-call): New macro plus use it wherever possible.
6625 (vc-backend-subdirectory-name): Use neither `vc-default-back-end'
6626 nor `vc-find-binary' since it's only called from
7f8b6551 6627 vc-mistrust-permission which is only used once the backend is known.
7a004b71
GM
6628 (vc-checkout-model): Fix parenthesis.
6629 (vc-recompute-state, vc-prefix-map): Move to vc.el.
6630
7f8b6551 6631 * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler warnings).
7a004b71
GM
6632 (vc-cvs-release, vc-cvs-system-release): Remove.
6633 (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables.
6634 (vc-cvs-dired-state-info): Use `cvs-state' and slightly different
6635 status symbols.
6636 (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el.
6637 (vc-cvs-toggle-read-only): First cut at a function to allow a
6638 cvs-status-free vc-toggle-read-only.
6639 (vc-cvs-merge-news): Move from cvs-merge-news in vc.el.
6640 (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of
6641 vc-cvs-status. Also set vc-state rather than vc-locking-user.
6642 (vc-cvs-checkout): Modify access rights directly if the user
6643 requested not to use `cvs edit'. And refresh the mode line.
6644
6645 * vc-cvs-hooks.el: Provide 'vc-cvs-hooks.
6646 (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el.
6647
66482000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6649
6650 * vc-cvs.el (vc-cvs-checkout): Docstring fix. Added a `(if
6651 workfile' that got lost when the code was extracted from vc.el.
6652 And merged the tail with the rest of the code (not possible in the
6653 old vc.el where the tail was shared among all backends). And
6654 explicitly set the state to 'edited if `writable' is set.
6655
6656 * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name.
6657 (vc-cvs-state): Be careful to return the value from
6658 vc-cvs-parse-state.
6659 (vc-cvs-parse-status): Use expand-file-name. Don't set 'vc-state
6660 property but return it instead. Also be careful to handle a nil
6661 or "" `rev' when workfile is non-nil (it was handled properly when
6662 workfile was nil).
6663
6664 * vc.el: Removed those pesky unnecessary `(function' quotes.
6665 (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize
6666 directly in the defvar.
6667 (vc-do-command): Bind inhibit-read-only so as to properly handle
6668 the case where the destination buffer has been made read-only.
6669 (vc-diff): Delegate to vc-version-diff in all cases.
7f8b6551 6670 (vc-version-diff): Setup the *vc-diff* buffer as was done in vc-diff.
7a004b71
GM
6671 (vc-annotate-mode-variables): Removed (code moved partly to
6672 defvars and partly to vc-annotate-add-menu).
6673 (vc-annotate-mode): Turned into a derived-mode.
6674 (vc-annotate-add-menu): Moved in code in
6675 vc-annotate-mode-variables.
6676 (vc-update-change-log): Use make-temp-file if available.
6677
66782000-09-04 Martin Lorentzson <martinl@delysid.gnu.org>
6679
6680 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to
6681 `vc-checkout-model' updated to `vc-cvs-update-model'.
6682
66832000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6684
6685 * vc.el (vc-next-action-on-file): Added handling of state
6686 `unlocked-changes'.
6687 (vc-checkout-carefully): Is now practically obsolete, unless the
6688 above is too slow to be enabled unconditionally.
6689 (vc-update-change-log): Fixed typo.
6690
6691 * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'.
6692
7f8b6551
SM
6693 * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten.
6694 Now handles state `unlocked-changes'.
6695 (vc-sccs-workfile-unchanged-p): New function, to support the above.
7a004b71
GM
6696
6697 * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'.
6698
6699 * vc-rcs-hooks.el (vc-rcs-state): Fixed typo.
6700 (vc-rcs-fetch-master-state): Bug fixes. Recognize state
6701 `unlocked-changes'.
6702 (vc-rcs-workfile-unchanged-p): Renamed from
6703 `vc-rcs-workfile-unchanged'. This is not a real backend-specific
6704 function yet, but supposed to become one soon.
6705
6706 * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to
6707 `vc-steal-lock'.
6708 (vc-call-backend): Changed error message.
6709 (vc-state): Added description of state `unlocked-changes'.
6710
67112000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6712
6713 * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to
6714 always return t in CVS-controlled directories.
6715
6716 * vc.el (vc-responsible-backend): New function.
6717 (vc-register): Largely rewritten.
6718 (vc-admin): Removed (implementation moved into vc-register).
6719 (vc-checkin): Redocumented.
6720 (vc-finish-logentry): If no backend defined yet (because we are in
6721 the process of registering), use the responsible backend.
6722
6723 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
6724 Updated function lists.
6725 (vc-call-backend): Fixed typo.
6726
7f8b6551
SM
6727 * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p):
6728 New functions.
6729 (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'.
6730 Removed query option. Redocumented.
7a004b71
GM
6731
67322000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6733
6734 * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'.
6735
6736 * vc.el: Updated callers of `vc-checkout-required' to use
6737 `vc-checkout-model'.
6738
67392000-09-04 Martin Lorentzson <martinl@gnu.org>
6740
6741 * vc-rcs.el (vc-rcs-backend-release-p): function added. other
6742 stuff updated to reference this function instead of the old
6743 `vc-backend-release-p'.
6744
67452000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6746
6747 * vc-sccs-hooks.el (vc-uses-locking): Renamed to
6748 vc-checkout-model. Return appropriate values. Updated callers.
6749
67502000-09-04 Martin Lorentzson <martinl@gnu.org>
6751
7f8b6551 6752 * vc.el (vc-backend-release, vc-backend-release-p): Moved to vc-rcs.el.
7a004b71
GM
6753 (vc-backend-revert): Function moved into `vc-revert';
6754 `vc-next-action' must be updated to accomodate this change.
6755 (vc-backend-steal): Function moved into `vc-finish-steal'.
6756 (vc-backend-logentry-check): Function moved into
6757 `vc-finish-logentry'.
6758 (vc-backend-printlog): Function moved into `vc-print-log'.
6759 (vc-backend-uncheck): Function moved into `vc-cancel-version'.
6760 (vc-backend-assign-name): Function moved into
6761 `vc-create-snapshot'.
6762
67632000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6764
6765 * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking):
7f8b6551
SM
6766 Rename to vc-checkout-model. Return appropriate values.
6767 Update callers.
7a004b71 6768
7f8b6551 6769 * vc-hooks.el (vc-backend-hook-functions): Rename vc-uses-locking
7a004b71 6770 to vc-checkout-model.
7f8b6551
SM
6771 (vc-checkout-required): Rename to vc-checkout-model.
6772 Re-implement and re-comment.
7a004b71
GM
6773 (vc-after-save): Use vc-checkout-model.
6774
67752000-09-04 Martin Lorentzson <martinl@gnu.org>
6776
7f8b6551
SM
6777 * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff):
6778 Update to use the vc-BACKEND-diff functions instead.
6779 `vc-diff' is now working.
7a004b71 6780
7f8b6551 6781 * vc-rcs.el (vc-rcs-logentry-check): New function.
7a004b71 6782
7f8b6551 6783 * vc-cvs.el (vc-cvs-logentry-check): New function.
7a004b71
GM
6784
6785 * vc-sccs.el (vc-sccs-diff): Function changed name from
6786 `vc-backend-diff'. This makes `vc-diff' work.
6787
7f8b6551 6788 * vc-hooks.el (vc-backend-functions): Add `vc-diff' to the list
7a004b71 6789 of functions possibly implemented in a vc-BACKEND library.
7f8b6551 6790 (vc-checkout-required): Fix bug that caused an error to be
7a004b71
GM
6791 signaled during `vc-after-save'.
6792
7f8b6551
SM
6793 * vc.el: Fix typo.
6794 This checkin is made with our new VC code base for the very first time.
6795 A simple `(vc-checkin (buffer-file-name))' was used to perform it.
7a004b71
GM
6796
6797 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to
6798 `vc-checkout-required' updated to `vc-cvs-uses-locking'.
6799
6800 * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required'
6801 updated to `vc-uses-locking'.
7f8b6551 6802 (vc-checkout-required): Call to backend function.
7a004b71
GM
6803 `vc-checkout-required' updated to `vc-uses-locking' instead.
6804
6805 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to
6806 `vc-checkout-required' updated to `vc-rcs-uses-locking'.
6807
7f8b6551 6808 * vc.el (vc-checkin): Merge with `vc-backend-checkin' and update
7a004b71 6809 to match the split into various backends.
7f8b6551 6810 (vc-backend-checkin): Remove. Merge with `vc-checkin'.
7a004b71
GM
6811 (vc-retrieve-snapshot): Bug fix.
6812
68132000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6814
6815 * vc-sccs.el (vc-sccs-release): Doc fix.
6816
68172000-09-04 Martin Lorentzson <martinl@gnu.org>
6818
6819 * vc.el (vc-next-action-on-file): Bug found and fixed.
6820 (vc-checkout, vc-version-other-window, vc-retrieve-snapshot)
6821 (vc-cancel-version): Handle of vc-BACKEND-checkout updated.
6822
6823 * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version)
6824 (vc-rcs-checkout): Name space cleaned up. No more revision number
6825 crunching function names that are not prefixed with vc-rcs.
6826 (vc-rcs-checkout-model): Function added. References to
6827 `vc-checkout-model' replaced.
6828
68292000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6830
6831 * vc.el (vc-next-action-on-file): Rewritten for the new state model.
6832 (vc-backend-merge-news): Renamed to `vc-merge-news'. (Specific parts
6833 still need to be split, and implemented for RCS).
6834
68352000-09-04 Martin Lorentzson <martinl@gnu.org>
6836
6837 * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed.
6838
6839 * vc-sccs.el (vc-sccs-admin): Added the query-only option as
6840 required by the vc.el file.
6841
6842 * vc-rcs.el (vc-rcs-admin): Added the query-only option as
6843 required by the vc.el file.
6844 (vc-rcs-exists): Function added.
6845
6846 * vc-cvs.el (vc-cvs-admin): Added the query-only option as
6847 required by the vc.el file.
6848
6849 * vc.el (vc-admin): Updated to handle selection of appropriate
6850 backend. Current implementation is crufty and need re-thinking.
6851
6852 * vc-hooks.el (vc-parse-buffer): Bug found and fixed.
6853
68542000-09-04 Martin Lorentzson <martinl@gnu.org>
6855
6856 * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle
6857 beginning of annotate buffers correctly.
6858
6859 * vc.el (vc-annotate-get-backend, vc-annotate-display-default)
6860 (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate
6861 functionality updated quite a lot to support multiple backends.
6862 Variables `vc-annotate-mode', `vc-annotate-buffers',
6863 `vc-annotate-backend' added.
6864
6865 * vc-hooks.el (vc-backend-functions): `vc-annotate-command',
6866 `vc-annotate-difference' added to supported backend functions.
6867
68682000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6869
6870 * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout):
6871 Use with-temp-file instead of /bin/sh. Merged from mainline
6872
68732000-09-04 Martin Lorentzson <martinl@gnu.org>
6874
6875 * vc-sccs-hooks.el (vc-sccs-registered): Updated.
6876
6877 * vc-rcs-hooks.el (vc-rcs-registered): Updated.
6878
6879 * vc-cvs-hooks.el (vc-cvs-registered): Updated.
6880
68812000-09-04 Martin Lorentzson <martinl@gnu.org>
6882
6883 * vc-hooks.el: vc-state-heuristic added to
6884 vc-backend-hook-functions.
6885
6886 * vc-sccs-hooks.el (vc-sccs-registered): Bug fix.
6887
6888 * vc-rcs-hooks.el (vc-rcs-registered): Bug fix.
6889
7f8b6551
SM
6890 * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Rename
6891 `vc-uses-locking' to `vc-checkout-required'. Rename the `locked'
7a004b71
GM
6892 state to `reserved'.
6893
6894 * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to
6895 `vc-checkout-required'. Rename the `locked' state to `reserved'.
6896
68972000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6898
7f8b6551 6899 * vc-rcs-hooks.el: Implement new state model. Hardly anything
7a004b71
GM
6900 untouched.
6901
7f8b6551 6902 * vc-rcs.el (vc-rcs-latest-on-branch-p): Move to vc-rcs-hooks.el.
7a004b71 6903
7f8b6551 6904 * vc.el (vc-update-change-log): Use small-temporary-file-directory,
7a004b71
GM
6905 if defined. (Merged from main line, slightly adapted.)
6906
6907 * vc-cvs.el (vc-cvs-annotate-difference): Handle possible
6908 millenium problem (merged from mainline).
6909
69102000-09-04 Martin Lorentzson <martinl@gnu.org>
6911
6912 * vc-cvs.el: Split the annotate feature into a BACKEND-specific
6913 part and moved the non-BACKEND stuff to vc.el.
6914
6915 * vc.el: Split the annotate feature into a BACKEND specific part
6916 and moved it from the vc-cvs.el file to this one.
6917
69182000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6919
7f8b6551
SM
6920 * vc-hooks.el: Implement new state model.
6921 (vc-state, vc-state-heuristic, vc-default-state-heuristic): New funs.
6922 (vc-locking-user): Simplify. Now only needed if the file is
7a004b71 6923 locked by somebody else.
7f8b6551 6924 (vc-lock-from-permissions): Remove. Functionality is in
7a004b71
GM
6925 vc-sccs-hooks.el and vc-rcs-hooks.el now.
6926 (vc-mode-line-string): New name for former vc-status. Adapted.
7f8b6551 6927 (vc-mode-line): Adapt to use the above. Remove optional parameter.
7a004b71 6928
7f8b6551
SM
6929 * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New funs.
6930 Various simplifications and adaptations all over the place.
7a004b71 6931
7f8b6551
SM
6932 * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New funs.
6933 Simplify and adapt the rest.
7a004b71 6934
7f8b6551 6935 * vc.el (vc-resynch-window): Add TODO comment: check for
7a004b71 6936 interaction with view mode according to recent RCS change.
7f8b6551 6937 (vc-backend-merge-news): Merge "CMUP" patch from mainline.
7a004b71
GM
6938
69392000-09-04 Martin Lorentzson <martinl@gnu.org>
6940
7f8b6551 6941 * vc.el: Convert the remaining function comments to docstrings.
7a004b71
GM
6942
69432000-09-04 Martin Lorentzson <martinl@gnu.org>
6944
6945 * vc.el (vc-backend-release, vc-release-greater-or-equal)
6946 (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part)
6947 (vc-minor-part, vc-previous-version): Functions that operate and
6948 compare revision numbers got proper documentation. Comments added
6949 about their possible removal.
6950
69512000-09-04 Martin Lorentzson <martinl@gnu.org>
6952
6953 * vc.el (vc-latest-on-branch-p): Function removed and replaced in
6954 the vc-backend.el files.
6955
6956 * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added.
6957
6958 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p)
6959 (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part)
6960 (vc-rcs-previous-version): Functions added.
6961
6962 * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added.
6963
6964 * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed.
6965
69662000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6967
6968 * vc-hooks.el (vc-master-templates): Is really obsolete.
7f8b6551 6969 Comment out the definition for now. What is the right procedure
7a004b71
GM
6970 to get rid of it?
6971 (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely
6972 rewritten.
7f8b6551 6973 (vc-default-registered): Remove.
7a004b71
GM
6974 (vc-check-master-templates): New function; does mostly what the
6975 above did before.
6976 (vc-locking-user): Don't rely on the backend to set the property.
6977
6978 * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values.
7f8b6551 6979 Rewrite documentation.
7a004b71
GM
6980 (vc-rcs-templates-grabbed): New variable.
6981 (vc-rcs-grab-templates): New function.
7f8b6551 6982 (vc-rcs-registered): Rewrite to use above mechanism.
7a004b71
GM
6983
6984 * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values.
7f8b6551 6985 Rewrite documentation.
7a004b71
GM
6986 (vc-sccs-templates-grabbed): New variable.
6987 (vc-sccs-grab-templates): New function.
7f8b6551
SM
6988 (vc-sccs-registered): Rewrite to use above mechanism.
6989 (vc-sccs-search-project-dir): Rename from vc-search-sccs-project-dir.
6990 Don't throw the result, simply return it.
7a004b71 6991
7f8b6551
SM
6992 * vc-cvs-hooks.el (vc-cvs-master-templates): Remove.
6993 (vc-cvs-find-master): Remove. Code is now in vc-cvs-registered.
6994 (vc-cvs-registered): Does the check itself now. Simplify.
7a004b71 6995
7f8b6551 6996 * vc-cvs.el (vc-cvs-revert): Merge and adapt "unedit" patch
7a004b71
GM
6997 from main line.
6998
69992000-09-04 Martin Lorentzson <martinl@gnu.org>
7000
7f8b6551 7001 * vc-cvs.el (vc-cvs-diff): New function.
7a004b71 7002
7f8b6551 7003 * vc-sccs.el (vc-sccs-diff): New function.
7a004b71 7004
7f8b6551
SM
7005 * vc-rcs.el (vc-rcs-diff): New function.
7006 (vc-rcs-checkout): Bug (typo) found and fixed.
7007 (vc-rcs-register-switches): New variable.
7a004b71
GM
7008
7009 * vc.el (vc-backend-diff): Function removed and placed in the
7010 backend files.
7011
70122000-09-04 Martin Lorentzson <martinl@gnu.org>
7013
7014 * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added.
7015
7016 * vc.el (vc-backend-checkout): Function removed and replaced in
7017 the vc-backend.el files.
7018
7019 * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'.
7020
7021 * vc.el (vc-backend-admin): Removed and replaced in the
7022 vc-backend.el files.
7023
7024 * vc.el (Martin): Removed all the annotate functionality since it
7025 is CVS backend specific.
7026
70272000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7028
7029 * spec.txt: Added specification of vc-state.
7030
7031 * vc-sccs-hooks.el (vc-sccs-master-properties):
7f8b6551 7032 Remove handling of vc-latest-version and
7a004b71
GM
7033 vc-your-latest-version. What used to be vc-latest-version, is now
7034 returned as vc-workfile-version.
7f8b6551 7035 (vc-sccs-workfile-version): Adapt.
7a004b71
GM
7036
70372000-09-04 Dave Love <fx@gnu.org>
7038
7039 * vc.el: [Merged from mainline.]
7040 (vc-dired-mode): Make the dired-move-to-filename-regexp
7041 regexp match the date, to avoid treating date as file size.
7042 Add YYYY S option to WESTERN/
7043
70442000-09-04 Dave Love <fx@gnu.org>
7045
7046 * vc.el: Require `compile' when compiling.
7047 (vc-logentry-check-hook): New option.
7048 (vc-steal-lock): Use compose-mail.
7049 (vc-dired-mode-map): Defvar when compiling.
7050 (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to
7051 vc-sccs.el and renamed. Callers changed.
7052 (vc-backend-checkout, vc-backend-logentry-check)
7053 (vc-backend-merge-news): Doc fix.
7054 (vc-default-logentry-check): New function.
7055 (vc-backend-checkin, vc-backend-revert, vc-backend-steal)
7056 (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name)
7057 (vc-backend-merge): Doc fix. Use backend functions.
7058 (vc-check-headers): Use backend functions.
7059
7060 * vc-cvs.el: Require vc when compiling.
7061 (vc-cvs-register-switches): Doc fix.
7062 (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type.
7063 (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge)
7064 (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin):
7065 New functions (code from vc.el).
7066 (vc-annotate-display-default): Fix interactive spec.
7067 (vc-annotate-time-span): Doc fix.
7068
7069 * vc-rcs.el: Require vc when compiling.
7070 (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge)
7071 (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert)
7072 (vc-rcs-checkin): New functions (code from vc.el).
7073 (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout):
7074 Doc fix.
7075 (vc-rcs-release): Deleted. (Duplicated vc-rcs-system-release).
7076
7077 * vc-sccs.el: Require vc when compiling.
7078 (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge)
7079 (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck)
7080 (vc-sccs-revert)
7081 (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code
7082 from vc.el).
7083 (vc-sccs-add-triple, vc-sccs-record-rename)
7084 (vc-sccs-lookup-triple): Moved from vc.el and renamed.
7085 (vc-sccs-admin): Doc fix.
7086
70872000-09-04 Martin Lorentzson <martinl@gnu.org>
7088
7089 * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part)
7090 (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release)
7091 (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions
7092 from vc.el.
7093
7094 * vc-sccs.el (vc-admin-sccs): Added from vc.el
7095
7096 * vc-cvs.el: Moved the annotate functionality from vc.el.
7097 (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el.
7098
70992000-09-04 Dave Love <fx@gnu.org>
7100
7101 * vc.el (vc-backend-release): Call vc-system-release.
7102
7103 * vc-sccs.el (vc-sccs-system-release):
7104 Renamed from vc-sccs-backend-release.
7105
7106 * vc-rcs.el (vc-rcs-system-release):
7107 Renamed from vc-rcs-backend-release.
7108
7109 * vc-cvs.el (vc-cvs-system-release):
7110 Renamed from vc-cvs-backend-release.
7111
71122000-09-04 Dave Love <fx@gnu.org>
7113
7114 * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to
7115 backend files.
7116 (vc-backend-release): Dispatch to backend functions.
7117 (vc-backend-release-p): Don't mention CVS, RCS. [The SCCS case
7118 probably needs attention.]
7119
7120 * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el.
7121 (vc-sccs-backend-release): New function.
7122
7123 * vc-cvs.el (vc-cvs-release): Moved from vc.el.
7124 (vc-cvs-backend-release): New function.
7125
7126 * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge):
7127 Doc fix.
7128 (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed.
7129 (vc-default-dired-state-info): New function.
7130 (vc-dired-state-info): Dispatch to backends.
7131 (vc-dired-hook): Doc fix. Simplify, pending removal of CVS specifics.
7132
7133 * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved
7134 from vc.el and renamed.
7135
71362000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7137
7138 * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p)
7139 (vc-version-other-window, vc-backend-assign-name): Removed
7140 references to vc-latest-version; sometimes changed into
7141 vc-workfile-version.
7142
7143 * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to
7144 vc-rcs-master-workfile-version.
7145 (vc-rcs-workfile-version): Use the above. Don't call
7146 vc-latest-version (that was unreachable code, anyway).
7147 (vc-rcs-fetch-master-properties): Doc fix.
7148
7149 * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed.
7150 (vc-backend-hook-functions): Removed them from this list, too.
7151 (vc-fetch-properties): Removed.
7152 (vc-workfile-version): Doc fix.
7153
7154 * vc-rcs-hooks.el (vc-rcs-consult-headers): New function.
7155 (vc-rcs-workfile-version, vc-rcs-locking-user)
7156 (vc-rcs-uses-locking): Use it.
7157
7158 * vc-hooks.el (vc-consult-rcs-headers):
7159 Moved into vc-rcs-hooks.el, under the name
7160 vc-rcs-consult-headers.
7161
7162 * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS
7163 headers.
7164 (vc-cvs-find-master): Use this name only; correct different
7165 versions of the name.
7166
7167 * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user):
7168 New functions.
7169 (vc-sccs-locking-user): Use the latter.
7170
7171 * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user):
7172 New functions.
7173
7174 * vc-hooks.el (vc-master-locks, vc-master-locking-user):
7175 Moved into both
7176 vc-rcs-hooks.el and vc-sccs-hooks.el. These properties and access
7177 functions are implementation details of those two backends.
7178
71792000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7180
7181 * vc-rcs-hooks.el (vc-rcs-fetch-master-properties)
7182 (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks.
7183
7184 * vc-sccs-hooks.el (vc-sccs-fetch-master-properties)
7185 (vc-sccs-parse-locks): SCCS-specific code moved here from
7186 vc-hooks.
7187
7188 * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific
7189 code moved here from vc-hooks.
7190
7191 * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split
7192 into back-end specific parts and removed. Callers not updated
7193 yet; because I guess these callers will disappear into back-end
7194 specific files anyway.
7195
71962000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7197
7198 * vc.el (with-vc-file, vc-next-action-on-file, vc-merge)
7199 (vc-backend-checkout): Changed calls to `vc-checkout-model' to
7200 `vc-uses-locking'.
7201
7202 * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking.
7203 Store yes/no in the property, and return t/nil. Updated all
7204 callers.
7205
7206 * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to
7207 vc-sccs-uses-locking. Don't set property.
7208 (vc-sccs-locking-user): Don't set property.
7209
7210 * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to
7211 vc-cvs-uses-locking. Don't set property here; leave that to
7212 vc-hooks.
7213 (vc-cvs-locking-user): Reflect above change. Streamlined.
7214
7215 * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to
7216 vc-rcs-uses-locking.
7217 (vc-rcs-locking-user): Reflect above change.
7218
72192000-09-04 Dave Love <fx@gnu.org>
7220
7221 * vc-sccs-hooks.el (vc-sccs-checkout-model): New function.
7222
7223 * vc-rcs-hooks.el (vc-rcs-checkout-model): New function.
7224
7225 * vc-hooks.el (vc-checkout-model): Punt to backends.
7226
7227 * vc-cvs-hooks.el (vc-cvs-checkout-model): New function.
7228
7229 * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status.
7230
7231 * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user):
7232 New functions.
7233
7234 * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user):
7235 New functions.
7236
7237 * vc-cvs-hooks.el (vc-handle-cvs): Doc fix.
7238 (vc-cvs-workfile-version, vc-cvs-locking-user): New functions.
7239
7240 * vc-hooks.el (vc-default-locking-user): New function.
7241 (vc-locking-user, vc-workfile-version): Punt to backends.
7242
72432000-09-04 Dave Love <fx@gnu.org>
7244
7245 * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff)
7246 (vc-master-workfile-version): Moved from vc-hooks.
7247
7248 * vc-rcs-hooks.el: Fix duplicate code in last change.
7249
7250 * vc-rcs-hooks.el: Require vc-hooks when compiling.
7251 (vc-rcs-master-templates): Improve :type.
7252 (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff,
7253 vc-master-workfile-version): Moved from vc-hooks.
7254
7255 * vc-sccs-hooks.el: Require vc-hooks when compiling.
7256 (vc-sccs-master-templates): Improve :type.
7257 (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file.
7258
7259 * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed.
7260
7261 * vc-cvs-hooks.el: Require vc-hooks when compiling.
7262 (vc-cvs-master-templates): Improve :type. Use
7263 vc-cvs-find-cvs-master.
7264 (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here
7265 from vc-hooks.
7266 (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master.
7267
7268 * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status):
7269 Moved to vc-cvs-hooks.
7270
7271 * vc-hooks.el: Add doc strings in various places. Simplify the
7272 minor mode setup.
7273 (vc-handled-backends): New user variable.
7274 (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor
7275 simplification.
7276
72772000-09-04 Dave Love <fx@gnu.org>
7278
7279 * vc.el: Some doc fixes for autoloaded and interactive functions.
7280 Fix compilation warnings from ediff stuff.
7281 (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix.
7282
7283 * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version.
7284
7285 * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version.
7286
7287 * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version.
7288
72892000-09-04 Dave Love <fx@gnu.org>
7290
7291 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
7292 New variable.
7293 (vc-make-backend-function, vc-loadup, vc-call-backend)
7294 (vc-backend-defines): New functions.
7295
7296 * vc-hooks.el: Various doc fixes.
7297 (vc-default-back-end, vc-follow-symlinks): Custom fix.
7298 (vc-match-substring): Function removed. Callers changed to use
7299 match-string.
7300 (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook):
7301 Simplify.
7302
73032000-09-04 Dave Love <fx@gnu.org>
7304
7305 * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom
7306 type.
7307 (vc-sccs-project-dir, vc-search-sccs-project-dir)
7308 (vc-sccs-registered): Doc fix.
7309
7310 * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type.
7311 (vc-cvs-registered): Doc fix.
7312
7313 * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type.
7314 (vc-rcs-registered): Doc fix.
7315
73162000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7317
7318 * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file.
7319
7320 * vc-hooks.el: vc-registered has been renamed
7321 vc-default-registered. Some functions have been moved to the
7322 backend specific files. they all support the
7323 vc-BACKEND-registered functions.
7324
73252000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7326
7327 * vc-hooks.el: This is 1998-11-11T18:47:32Z!kwzh@gnu.org from the emacs sources
7328
7329 * vc.el: This is 1999-03-13T05:04:24Z!kwzh@gnu.org from the emacs sources
7330
a033ea13
DL
73312000-09-04 Dave Love <fx@gnu.org>
7332
179fc9ef
DL
7333 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run
7334 menu-bar-update-hook.
7335
7336 * help.el (help-manyarg-func-alist): Add
7337 find-operation-coding-system.
7338
a033ea13
DL
7339 * wid-edit.el (widget-sexp-validate): Fix garbled code.
7340
7341 * custom.el (custom-set-variables): Print message about errors in
7342 setting.
7343
f8803e97
AI
73442000-09-03 Andrew Innes <andrewi@gnu.org>
7345
7346 * makefile.w32-in: Change to DOS line endings.
7347
59836110
EZ
73482000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
7349
7350 * mouse.el (mouse-popup-menubar): Supply the prompt string for
7351 minor-mode keymaps, if they don't have one.
7352
5514ba5c
EZ
73532000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
7354
7355 * eshell/esh-module.el (eval-when-compile): Don't lose if
7356 esh-module.el's file name is truncated to DOS 8+3 limits.
7357
79cf8e80
JW
73582000-09-01 John Wiegley <johnw@gnu.org>
7359
7360 * pcomplete.el (pcomplete-dirs-or-entries): Added a missing
7361 predicate, which caused entries in the completion list to be
7362 doubled.
7363
73642000-08-30 John Wiegley <johnw@gnu.org>
7365
7366 * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct
7367 sending to subprocesses. Also, hook pre-command-hook if
7368 `eshell-send-direct-to-subprocesses' is non-nil.
7369 (eshell-send-direct-to-subprocesses): New config variable. If t,
7370 subprocess input is send immediately.
7371 (eshell-toggle-direct-send): New function.
7372 (eshell-self-insert-command): New function.
7373 (eshell-intercept-commands): New function.
7374 (eshell-send-input): If direct subprocess sending is enabled,
7375 don't echo any input to the Eshell buffer. Let the subprocess
7376 handle that. This requires "stty echo" in bash, for example.
7377
73782000-08-28 John Wiegley <johnw@gnu.org>
7379
7380 * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added
7381 completion function for Eshell's implementation of `unset'.
7382
778911b9
EZ
73832000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
7384
7385 * info.el (Info-directory-list): Doc fix.
7386
05d07b49
PB
73872000-08-31 Peter Breton <pbreton@ne.mediaone.net>
7388
9b4a7800 7389 * filecache.el (file-cache-add-directory-using-find): Don't quote
05d07b49
PB
7390 wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
7391
9941d4c7
KH
73922000-08-31 Kenichi Handa <handa@etl.go.jp>
7393
7394 * help.el (help-make-xrefs): Don't make hyperlinks for incorrect
7395 coding systems.
7396
af9ba8ad
AI
73972000-08-30 Andrew Innes <andrewi@gnu.org>
7398
7399 * timer.el (run-with-idle-timer): Undo last change, so that timer
7400 is not activated immediately if Emacs is already idle. Some
7401 existing code relies on this behaviour.
7402
caccd8f2
MB
74032000-08-30 Miles Bader <miles@gnu.org>
7404
7405 * frame.el (set-frame-font): Do completion of font-name for
7406 interactive use.
7407
b64c0a1c
KH
74082000-08-30 Kenichi Handa <handa@etl.go.jp>
7409
7410 * international/quail.el (quail-start-translation): Bind locally
7411 last-command-event, last-command, and this-command.
7412 (quail-start-conversion): Likewise.
75cf0095 7413 (quail-self-insert-command): Fix docstring.
b64c0a1c 7414
fd5f61d3
GM
74152000-08-29 Gerd Moellmann <gerd@gnu.org>
7416
7417 * progmodes/executable.el
7418 (executable-make-buffer-file-executable-if-script-p): Check that
7419 buffer contains at least 2 characters.
7420
5b671d04
EZ
74212000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
7422
7423 * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix.
7424
485d9513
DL
74252000-08-29 Dave Love <fx@gnu.org>
7426
a39fb83d
DL
7427 * diff-mode.el (diff-mode) <defgroup>: Add :version.
7428 (diff-mode-shared-map): Bind mouse-2.
7429 (diff-imenu-generic-expression): New variable.
7430 (diff-mode): Use it.
7431
485d9513
DL
7432 * mouse.el (mouse-major-mode-menu): Use local-key-binding.
7433 (mouse-popup-menubar): Add minor mode menus.
7434 (popup-menu): Check for lookup-key returning number.
7435
ba3478d9
MB
74362000-08-29 Miles Bader <miles@gnu.org>
7437
7438 * comint.el (comint-send-input): Create overlays using the proper
7439 front/read-advance arguments.
9b4a7800 7440
c3d6d211
GM
74412000-08-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7442
7443 * ps-print.el: Even/odd pages printing. Doc fix.
7444 (ps-print-version): New version number (6.0).
7445 (ps-setup, ps-print-page-p, ps-background-text, ps-background-image)
7446 (ps-background, ps-begin-file, ps-begin-job): Code fix.
7447 (ps-print-duplex-feature): Variable eliminated.
7448 (ps-even-or-odd-pages): New variable.
7449
ba087cd7 7450 * progmodes/ebnf2ps.el: Doc fix.
87d0f685
GM
7451 (ebnf-version): New version (3.3).
7452 (ebnf-user-arrow): Change variable customization to sexp.
7453 (ebnf-user-arrow): Function eliminated.
7454 (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix.
9b4a7800 7455
d313265f
KH
74562000-08-29 Kenichi Handa <handa@etl.go.jp>
7457
cba62b78 7458 * help.el (help-xref-mule-regexp): New variable.
d313265f
KH
7459 (help-make-xrefs): Handle help-xref-mule-regexp.
7460
7461 * international/mule-cmds.el (help-xref-mule-regexp-template): New
7462 variable.
7463 (describe-input-method): Temporarily activate the specfied input
7464 method to display the information.
7465 (describe-language-environment): Hyperlinks to mule related items.
7466
7467 * international/mule-diag.el (charset-multibyte-form-string): New
7468 function.
7469 (list-character-sets-1): Use charset-multibyte-form-string.
7470 (describe-character-set): New function.
7471 (describe-coding-system): Hyperlinks to safe character sets.
7472
7473 * international/quail.el (quail-help): New arg PACKAGE.
7474 Hyperlinks to mule related items.
7475 (quail-help-insert-keymap-description): Use
7476 substitute-command-keys instead of describe-bindings.
7477 (quail-translation-help): Hyperlinks to mule related items.
7478
b4bd214e
JW
74792000-08-28 John Wiegley <johnw@gnu.org>
7480
ca7aae91
JW
7481 * eshell/esh-util.el (eshell-flatten-list): It's not too wise to
7482 have a defsubst call itself. Made `eshell-flatten-list' back into
7483 a function again.
7484
b4bd214e
JW
7485 * eshell/em-smart.el (eshell-smart-redisplay): Added a safety
7486 catch, in case re-centering point at bottom messes up the display.
7487 This happens frequently in Emacs 21, due I believe to variable
7488 line heights.
7489
7490 * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order
7491 to call `find-tag-interactive'.
7492
7493 * eshell/em-dirs.el (eshell/cd): Use buffered printing to display
7494 the list of remember directories.
7495
d44e146b
JW
74962000-08-28 John Wiegley <johnw@gnu.org>
7497
7498 * align.el: Test align-region-separate to see if it's a symbol.
7499
546c0888 75002000-08-28 John Wiegley <johnw@gnu.org>
d44e146b
JW
7501
7502 * eshell/esh-util.el (eshell-flatten-list): Made this function
7503 into a defsubst form. It gets used very frequently, although
7504 calls don't occur all that often.
7505
7506 * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
7507 examining it.
7508
7509 * eshell/esh-cmd.el (eshell-rewrite-while-command):
7510 (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
7511 `eshell-protect'.
7512 (eshell-copy-handles): Created a new macro for duplicating the
7513 current set of open handles. This is needed by the looping
7514 functions.
7515 (eshell-do-eval): Fixed while and if, so that the eshell-test-body
7516 is not incorrectly stomped on.
7517
7518 * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
7519 declaration for pcomplete-use-paring.
7520 (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
7521 value of eshell-cmpl-use-paring.
7522 * pcomplete.el (pcomplete-use-paring): New config variable, to
7523 indicate whether paring should be used.
7524 (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
7525 completion alternatives that have already been used.
7526
7527 * eshell/esh-mode.el (eshell-repeat-argument): Added function,
7528 bound to C-c C-y, which will repeat the previous N arguments
7529 (based on prefix argument).
7530 (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
7531
7532 * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
7533 if there is no *Help* buffer. This is for XEmacs, which renames
7534 its help buffers uniquely. TODO: Find out what the current buffer
7535 name to delete is.
7536
7537 * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
7538 first entry that correlates to a passwd/group number. Later
7539 entries (used for group/user name aliasing to multiple IDs) are
7540 ignored.
7541
9b4a7800
TTN
7542 * eshell/em-xtra.el (eshell/expr):
7543 * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
7544 (eshell-grep, eshell/diff, eshell/locate):
d44e146b
JW
7545 * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
7546 argument list, before passing it to the system command.
7547
7548 * eshell/esh-mode.el (eshell-find-tag): Added a special version of
7549 `find-tag' for use at final position in Eshell buffers (which
7550 otherwise triggers an error on Emacs 21).
7551 (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
7552 buffer, if it is currently bound to `find-tag'.
7553
7554 * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
7555 in the list of matched Makefile names.
7556 (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
7557 directory, prefer its contents to Makefile.
7558
7559 * eshell/em-dirs.el (eshell/cd): cd commands that look up
7560 directory parts (like "cd old new", or "cd =regexp"), are now case
7561 sensitive on non-Windows/DOS platforms.
7562
7563 * eshell/esh-mode.el (eshell-parse-command-input): When a user
7564 types RET after an open delimiter (like "), display a message
7565 indicating that Eshell is waiting for the closing delimiter.
7566
7567 * eshell/esh-var.el (eshell/unset): Added a command for unsetting
7568 environment variables.
7569
7570 * eshell/em-unix.el (eshell/diff): Added logic to fail more
7571 gracefully if the user enters incorrect arguments.
7572
7573 * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
7574 Eshell buffers.
7575
9b4a7800
TTN
7576 * eshell/esh-var.el (eshell-interpolate-variable):
7577 * eshell/esh-mode.el (eshell-move-argument):
d44e146b
JW
7578 * eshell/em-unix.el (eshell-du-sum-directory):
7579 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
7580 * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
7581 (not (= ...)).
7582
7583 * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
7584 to ensure the `preserve' flag gets propagated when doing recursive
7585 directory copies.
7586
546c0888 75872000-08-28 Stefan Monnier <monnier@cs.yale.edu>
d44e146b
JW
7588
7589 * eshell/em-hist.el (eshell-put-history, eshell-get-history):
7590 Don't convert \n into \0177 in memory.
7591 (eshell-read-history, eshell-write-history): Convert \n to \0177,
7592 and back again, when reading and writing.
9b4a7800 7593
546c0888 75942000-08-28 Eli Zaretskii <eliz@is.elta.co.il>
d44e146b
JW
7595
7596 * eshell/esh-util.el (eshell-processp): Added to relieve constant
7597 testing of `fboundp' on `processp'.
7598
7599 * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
7600 (eshell/jobs): Don't call process-list if it is not bound.
7601 (eshell-gather-process-output): Support systems where async
7602 subprocesses aren't supported.
7603 (eshell-scratch-buffer, eshell-last-sync-output-start): New
7604 variables.
7605
7606 * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
7607 eshell-do-eval returns t.
7608 (eshell-do-pipelines-synchronously): New defmacro.
7609 (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
7610 when async subprocesses aren't supported.
7611 (eshell-do-eval): Use eshell-processp. Don't throw eshell-defer
7612 if async subprocesses aren't supported.
7613 (eshell-resume-command): Don't assume STATUS is a string.
7614
7615 * eshell/em-unix.el (eshell/rm): Use eshell-processp.
7616
7617 * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
7618 (eshell-close-target, eshell-get-target): Use eshell-processp.
7619 (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
7620 fix.
7621 (eshell-get-target, eshell-create-handles): Doc fix.
7622
546c0888 76232000-08-28 Miles Bader <miles@lsi.nec.co.jp>
d44e146b 7624
546c0888 7625 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the
d44e146b
JW
7626 criterion to include commands that output something, as long as it
7627 leaves both the command and the end-of-buffer visible when the
7628 command has exited.
7629 (eshell-review-quick-commands): Adjust the help doc string
7630 accordingly.
7631
2a371c3b
PB
76322000-08-28 Peter Breton <pbreton@ne.mediaone.net>
7633
8348e1f9 7634 * locate.el (locate): Cleaned up locate command's interactive prompting
1ec321a7 7635 Thanks to Fran\e,Ag\e(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions.
8348e1f9 7636
9b4a7800 7637 * filecache.el (file-cache-case-fold-search): New variable
2a371c3b
PB
7638 (file-cache-assoc-function): New variable
7639 (file-cache-minibuffer-complete): Use file-cache-assoc-function.
7640 Use file-cache-case-fold-search variable
7641 (file-cache-add-file): Use file-cache-assoc-function
7642 (file-cache-delete-file): likewise
7643 (file-cache-directory-name): likewise
7644 (file-cache-debug-read-from-minibuffer): likewise
7645
95931eb1
GM
76462000-08-28 Gerd Moellmann <gerd@gnu.org>
7647
7648 * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
7649 (abbrev-table-name): New function.
7650 (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
7651 If non-nil list local abbrev, only.
7652
bb17930d
GM
76532000-08-28 Stanislav Shalunov <shalunov@internet2.edu>
7654
546c0888
EZ
7655 * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*"
7656 from Gnus support code, and use special article copy buffer
bb17930d
GM
7657 `(gnus-original-article-buffer)' instead. This allows to get rid
7658 of article-hide-headers usage (which breaks in the latest Gnus
7659 version). Thanks to Detlev Zundel.
7660
41a68aef
KH
76612000-08-28 Kenichi Handa <handa@etl.go.jp>
7662
7663 * international/quail.el (quail-use-package): Hide "... loaded"
7664 message.
7665 (quail-start-translation, quail-start-conversion): Likewise.
7666
7667 * international/kkc.el (kkc-region): Hide "... loaded" message.
7668
28bb2cef
DL
76692000-08-27 Dave Love <fx@gnu.org>
7670
7671 * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
7672
11a1118d
MB
76732000-08-27 Miles Bader <miles@gnu.org>
7674
7675 * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
7676
0f85d477
KH
76772000-08-27 Kenichi Handa <handa@etl.go.jp>
7678
7679 * international/ja-dic-cnv.el (skkdic-convert): Insert (require
7680 'ja-dic-cnv), not (require 'skkdic-cnv).
7681
2d73e8d3
MB
76822000-08-26 Miles Bader <miles@gnu.org>
7683
a0e5a5a4
MB
7684 * faces.el (face-x-resources): Add entry for :inherit.
7685 * cus-face.el (custom-face-attributes): Add support for :inherit
7686 attribute. Add support for relative face heights.
7687 (custom-face-attributes-get): Treat `nil' as being a default value
7688 for :inherit (as well as `unspecified').
7689
19feb949
MB
7690 * faces.el (set-face-attribute): Update doc string.
7691 (face-attribute-name-alist): Add :inherit.
7692 (face-valid-attribute-values): Handle :inherit.
7693 (face-read-string): Rephrase prompt to be less confusing.
7694 Assume that DEFAULT is a string, since we must return a string.
7695 (face-read-integer): Use `format' to turn DEFAULT into an
7696 acceptable default for face-read-string. Match NEW-VALUE against
7697 the string "unspecified", not the symbol `unspecified', since
7698 that's what face-read-string returns.
7699 (read-face-attribute): Lookup a name for old-value in valid, and
7700 use it as a default if we find one. Treat all values from
7701 face-read-string as strings. If the default is used, don't do any
7702 more processing on the value, just use the old value directly.
7703 (read-face-and-attribute, modify-face): Tweak prompt.
7704 (read-face-name): Don't assume prompt ends with a space.
7705
2d73e8d3
MB
7706 * faces.el (describe-face): Add support for :inherit attribute.
7707
a1a2e38f
KH
77082000-08-25 Kenichi Handa <handa@etl.go.jp>
7709
e84fa7c5
KH
7710 * terminal.el (terminal-emulator): Fix args to `concat'. Now
7711 concat doesn't accept interger.
7712
a1a2e38f
KH
7713 * international/kkc.el: Remove SKK from Keywords. Require
7714 ja-dic-utl instead of skkdic-utl.
7715
7716 * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
7717 Provide ja-dic-cnv instead of skkdic-cnv.
7718 (ja-dic-filename): Renamed from skkdic-filename. Referers changed
7719 (iso-2022-7bit-short): Add safe-charsets property.
7720 (skkdic-convert-postfix): Search Japanese chou-on character in
7721 addition to Hiragana character.
7722 (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
7723 (skkdic-convert): Change file names from skkdic.el to ja-dic.el
7724 (batch-skkdic-convert): Likewise.
7725
7726 * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
7727 Provide ja-dic-utl instead of skkdic-utl.
7728 (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
7729
f6499c03
DL
77302000-08-24 Dave Love <fx@gnu.org>
7731
1c2c3f16
DL
7732 * disp-table.el (standard-display-default): Make the test of `l'
7733 useful.
7734
f6499c03
DL
7735 * language/european.el ("Latin-8", "Latin-9"): Add input methods,
7736 mod sample text.
7737
7738 * international/iso-ascii.el: Make pilcrow convenient string
7739 consistent with section.
7740 (iso-ascii-display): Set up multibyte characters as well as
7741 unibyte.
7742
c543db81
KH
77432000-08-24 Kenichi Handa <handa@etl.go.jp>
7744
7745 * international/mule-cmds.el (reset-language-environment): Set
7746 default-process-coding-system to '(undecided . iso-latin-1), which
7747 makes process I/O almost consistent with file I/O. Call this
7748 function when mule-cmds.el[c] is loaded.
7749
746d9caf
AI
77502000-08-22 Andrew Innes <andrewi@gnu.org>
7751
7752 * makefile.w32-in: New file.
7753
5484005d
MB
77542000-08-22 Miles Bader <miles@lsi.nec.co.jp>
7755
7756 * comint.el (comint-output-filter): Compare end of
7757 comint-last-output-overlay with the start of the newly inserted
7758 text, not the end, when deciding whether to extend it.
9b4a7800 7759 Set saved-point's insertion type to advance after insertion.
5484005d
MB
7760
7761 * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
7762 since this is now done independently of font-lock mode.
7763
7a912f63
GM
77642000-08-21 Gerd Moellmann <gerd@gnu.org>
7765
7766 * server.el (server-kill-new-buffers): New user option.
7767 (server-existing-buffer): New buffer-local variable.
7768 (server-visit-files): When using an existing buffer, set
7769 server-existing-buffer to t.
7770 (server-buffer-done): If server-kill-new-buffers is t, kill the
7771 buffer, unless it was already present before visiting it with
7772 Emacs server.
9b4a7800 7773
240301df
EZ
77742000-08-21 Eli Zaretskii <eliz@is.elta.co.il>
7775
7776 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
7777 even if the display doesn't support colors: some displays will
7778 support bold/underline faces.
7779
cbcef616
GM
77802000-08-21 Gerd Moellmann <gerd@gnu.org>
7781
6917e6bb
GM
7782 * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
7783
cbcef616
GM
7784 * startup.el (command-line): If user's init file had an error,
7785 add explanatory text to *Messages*.
7786
6922b018
KH
77872000-08-21 Kenichi Handa <handa@etl.go.jp>
7788
7789 * man.el (Man-getpage-in-background): Decode the process output by
7790 the system locale coding system.
7791
e50c4203
DL
77922000-08-20 Dave Love <fx@gnu.org>
7793
96ab6351
DL
7794 * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
7795 Don't test x-popup-menu.
7796 (function) <complete-function>: Complete only fbound symbols.
7797 <validate, value>: New.
7798 (variable) <complete-function>: Complete only bound symbols.
7799 (coding-system): Add :base-only, :complete-function, :validate,
7800 :value, :prompt-match.
7801 (widget-coding-system-prompt-value): Use read-coding-system and
7802 act on :base-only.
7803 (editable-field): Add :help-echo.
7804 (widget-push-button-gui, widget-push-button-cache)
7805 (widget-gui-action, widget-editable-list-gui): COmment out, along
7806 with uses.
7807 (widget-at): Make arg optional.
7808 (widget-echo-help): Adjust for current help-echo calling sequence.
7809 (widget-specify-field, widget-specify-button)
7810 (widget-specify-insert, widget-get-sibling, widget-image-find)
7811 (widget-convert, widget-insert, widget-leave-text)
7812 (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
7813 (widget-setup, widget-field-find, widget-before-change)
7814 (widget-after-change, widget-default-complete)
7815 (widget-default-create, widget-default-delete)
7816 (widget-push-button-value-create, editable-field)
7817 (widget-field-prompt-value, widget-field-validate)
7818 (widget-choice-value-create, widget-choice-action)
7819 (widget-choice-validate, widget-checklist-add-item)
7820 (widget-radio-add-item, widget-radio-chosen)
7821 (widget-radio-value-inline, widget-editable-list-value-create)
7822 (widget-editable-list-entry-create)
7823 (widget-documentation-link-add)
7824 (widget-documentation-string-value-create)
7825 (widget-regexp-validate, widget-file-complete)
7826 (widget-sexp-validate, widget-plist-convert-widget)
7827 (widget-plist-convert-widget, widget-alist-convert-widget)
7828 (widget-alist-convert-widget, widget-color-complete): Simplify,
7829 particularly to avoid bindings which aren't optimized out.
7830
e50c4203
DL
7831 * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
7832 Doc fix.
7833 (down-list, backward-up-list, up-list, kill-sexp)
7834 (backward-kill-sexp, mark-sexp): Make arg optional.
7835 (lisp-complete-symbol): Add optional arg PREDICATE.
7836
7837 * cus-start.el: Add display-buffer-reuse-frames,
7838 file-coding-system-alist.
7839
511bd4eb
GM
78402000-08-20 Gerd Moellmann <gerd@gnu.org>
7841
7842 * startup.el (command-line): Clear realized faces after
7843 modifying TTY color mappings.
7844
a9de7d29
MB
78452000-08-20 Miles Bader <miles@gnu.org>
7846
7847 * faces.el (face-attr-match-p): Don't return true if ATTRS are
7848 merely a subset of FACE's attributes.
7849
8a8023d9
MB
78502000-08-19 Miles Bader <miles@gnu.org>
7851
7852 * comint.el (comint-output-filter): Save the point with a marker,
7853 not just a buffer position.
7854
7855 * international/mule.el (set-buffer-process-coding-system): Make
7856 interactive prompt less confusing.
7857
1433385f
GM
78582000-08-19 Gerd Moellmann <gerd@gnu.org>
7859
7860 * hilit-chg.el: General cleanup of doc strings, comments and
7861 code formatting.
7862
136b4eda
MB
78632000-08-19 Miles Bader <miles@gnu.org>
7864
7865 * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
7866 Compiler macro removed; beginning-of-line is no longer always
7867 equivalent to forward-line, in the presence of fields.
7868
7869 * comint.el (comint-output-filter): Remove ad-hoc saving of
7870 restriction, and just use save-restriction, now that it works
7871 correctly. Don't adjust comint-last-input-start to account for
7872 our insertion; it shouldn't have moved because we don't use
7873 insert-before-markers anymore. Comment out call to
7874 `force-mode-line-update'; why is it here?
7875
7876 * gud.el (gud-basic-call): Temporarily widen gud comint buffer
7877 while checking for prompt to delete. Use `forward-line 0'
7878 instead of beginning-of-line.
7879 (gud-filter): Temporarily widen gud comint buffer while
7880 examining output.
7881
cdd0f857
SM
78822000-08-18 Stefan Monnier <monnier@cs.yale.edu>
7883
ebf96bfa
SM
7884 * progmodes/sh-script.el: Big bag of typos.
7885
cdd0f857
SM
7886 * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
7887 check since ispell-process is not bound when ispell is not yet loaded.
7888
9bb7a286
DL
78892000-08-18 Dave Love <fx@gnu.org>
7890
7891 * image.el (find-image): Copy `spec' before using plist-put.
7892
74ec6045
GM
78932000-08-18 Gerd Moellmann <gerd@gnu.org>
7894
7895 * textmodes/ispell.el (ispell-dictionary-alist-6): Add
7896 `portugues'.
7897
7898 * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
7899 backward-kill-sexp, analogous to kill-sexp.
7900
7901 * progmodes/icon.el (icon-indent-line)
7902 (icon-is-continuation-line): Handle comments specially.
7903
79042000-08-17 Ken Stevens <k.stevens@ieee.org>
7905
7906 * ispell.el: Set to standard author/maintainer/keyword fields.
7907 Fine tuning to menu map appearance and operation, and added help.
7908 Remove `start' and `end' error messages when compiling.
7909 (ispell-choices-win-default-height): Fixed comment string.
7910 (ispell-dictionary-alist-1): Fixed regexp in castellano and
7911 castellano8 dictionaries.
7912 (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
7913 (ispell-dictionary-alist-4): Fixed regexp in francais-tex
7914 dictionary, added italiano dictionary.
7915 (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
7916 word character
7917 (ispell-tex-skip-alists): Added psfig support.
7918 (ispell-skip-html): Renamed from ispell-skip-sgml.
7919 (ispell-begin-skip-region-regexp, ispell-skip-region)
7920 (ispell-minor-check): Improved html skipping support to skip across
7921 code, and recognize `&' commands without propper `;' syntax;
7922 (ispell-process-line): Fix alignment error when manually
7923 correcting spelling.
7924 (ispell): Fix comment string.
7925 (ispell-add-per-file-word-list): Always put word list on new line.
7926
3787e12e
GM
79272000-08-17 Gerd Moellmann <gerd@gnu.org>
7928
a7b28523
GM
7929 * format.el (format-encode-run-method): Fix error message to say
7930 `encode' instead of `decode'. Use save-window-excursion around
7931 shell-command-on-region as in format-decode-run-method because
7932 shell-command-on-region can display a buffer with error output.
7933 (format-decode): Don't record undo information for the decoding.
7934 (format-annotate-function): Add parameter FORMAT-COUNT. Make
7935 that number part of the temporary buffer name so that more than
7936 one decoding using a temporary buffer can happen safely.
7937
7938 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
7939 of `A-z' in the regexp.
7940
7941 * hilit-chg.el: Fix typos in commentary.
7942
3787e12e
GM
7943 * help.el (view-emacs-news): Rewritten for new naming scheme
7944 for old NEWS files.
7945
7946 * startup.el (command-line): Pop to *Messages* in case an error
7947 is signaled while loading user-init-file.
7948
d2473540
AS
79492000-08-17 Andreas Schwab <schwab@suse.de>
7950
7951 * files.el (insert-directory): Don't lose original file name,
7952 undoing an undocumented change.
7953
c0bbaf57
GM
79542000-08-17 Alex Schroeder <alex@gnu.org>
7955
7956 * sql.el (sql-magic-go): Use comint-bol.
7957 (sql-copy-column): Use comint-line-beginning-position.
7958 (comint-line-beginning-position): Define a replacement for
7959 comint-line-beginning-position if it is not fboundp.
7960
79612000-08-17 Alex Schroeder <alex@gnu.org>
7962
7963 * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
7964 it didn't have any effect anyway.
7965
79662000-08-17 Alex Schroeder <alex@gnu.org>
7967
7968 * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
7969 --pset and pager=off instead of sending \\o|cat at the beginning
7970 of the session.
7971
9d245da5
MB
79722000-08-17 Miles Bader <miles@gnu.org>
7973
7974 * progmodes/octave-inf.el: Add compatibility definition of
7975 comint-line-beginning-position.
7976
abfdbd2e
KH
79772000-08-17 Kenichi Handa <handa@etl.go.jp>
7978
7979 * startup.el (normal-top-level): Look in each dir in load-path for
7980 a leim-list.el file too. This assures of loading leim-list.el
7981 that is created at Emacs installation time even if a user have his
7982 own leim-list.el.
7983
a0b8c939
MB
79842000-08-17 Miles Bader <miles@gnu.org>
7985
7986 * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
7987 foreground color to black if the background is dark.
7988
7382bcae
SM
79892000-08-16 Stefan Monnier <monnier@cs.yale.edu>
7990
7991 * loadhist.el (unload-feature): Typo.
7992
9b4a7800 7993 * finder.el (finder-compile-keywords):
7382bcae
SM
7994 * cus-dep.el (custom-make-dependencies): Add local-variable settings
7995 to the generated file.
7996
7997 * mail/mh-e.el (mh-make-local-vars):
7998 Replace make-variable-buffer-local with make-local-variable.
7999
cdd0f857 8000 * play/landmark.el:
7382bcae 8001 * options.el (Edit-options-{set,toggle,t,nil}):
9b4a7800
TTN
8002 * mail/mailabbrev.el (mail-abbrevs-mode):
8003 * textmodes/tex-mode.el (tex-expand-files):
7382bcae
SM
8004 * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
8005
8006 * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
8007
8008 * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
8009 (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
8010 Allow going past the last element.
9b4a7800 8011 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
7382bcae
SM
8012 (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
8013 (cvs-mouse-toggle-mark): Don't move point.
8014 (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
8015
8016 * progmodes/compile.el (grep): Provide a default set of files.
8017 (next-error): Docstring fix.
8018 (compilation-find-file): Avoid find-file (fails in a dedicated window).
8019
8020 * emacs-lisp/easy-mmode.el (define-minor-mode):
8021 Use `symbol-value' to keep the byte-compiler quiet.
8022
8023 * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
8024 (diff-find-source-location): New fun, extracted from diff-goto-source.
8025 (diff-goto-source): Use it.
8026 (diff-next-complex-hunk, diff-filter-lines): New function.
8027 (diff-apply-hunk): New command.
8028
8029 * smerge-mode.el (smerge-mode-menu): Doc fix.
8030
8031 * msb.el (msb-mode): Define it in terms of define-minor-mode.
8032
4f00b8c1
DL
80332000-08-16 Dave Love <fx@gnu.org>
8034
2b5198bb
DL
8035 * windmove.el (windmove) <defgroup>: Add :version.
8036
8037 * net/goto-addr.el: Don't require browse-url. Require thingatpt.
8038 (goto-address-fontify-p, goto-address-highlight-p)
8039 (goto-address-url-face, goto-address-url-mouse-face)
8040 (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
8041 (goto-address-url-regexp): Use thing-at-point-url-regexp.
8042 (goto-address-fontify, goto-address-at-mouse): Simplify,
8043 (goto-address-at-point): browse-url-url-at-point,
8044 goto-address-find-address-at-point can return nil.
8045 (goto-address-find-address-at-point): Return nil on failure.
8046
8047 * align.el (align) <defgroup>: Add :version.
8048
8049 * calculator.el (calculator): Add :version.
8050 (calculator): Use two lines for calculator window if `modeline'
8051 face is boxed.
8052
4f00b8c1
DL
8053 * play/5x5.el: Doc fixes.
8054 (5x5) <defgroup>: Add :version.
8055
8056 * play/fortune.el (fortune) <defgroup>: Add :version.
8057 (fortune-append): Fix error message.
8058 (fortune-from-region): Doc fix.
8059
8060 * play/pong.el (pong): Doc fix.
8061
8062 * play/morse.el: Keywords, commentary, autoloads.
8063
69db7ee7
EZ
80642000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
8065
8066 * desktop.el (desktop-save): Don't look at symbol-value of a
8067 member of minor-mode-alist, unless it is boundp.
8068
10e1dad9
SS
80692000-08-16 Sam Steingold <sds@gnu.org>
8070
a0b8c939 8071 * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
10e1dad9
SS
8072 `while'; use `with-current-buffer' instead of `save-excursion'.
8073 Removed unnecessary kludges now that "*Buffer List*" is excluded.
8074
9d7bcb2e
KH
80752000-08-16 Kenichi Handa <handa@etl.go.jp>
8076
8077 * international/ccl.el (declare-ccl-program): Docstring modified.
8078 (ccl-execute-with-args): Likewise.
8079
04231ab8
MB
80802000-08-16 Miles Bader <miles@gnu.org>
8081
9d245da5 8082 * progmodes/sql.el: Add compatibility definition of
04231ab8
MB
8083 comint-line-beginning-position.
8084
f68446ef
GM
80852000-08-15 Gerd Moellmann <gerd@gnu.org>
8086
dc28878c
GM
8087 * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
8088 'buffer-menu' property.
8089 (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
8090 fails.
8091 (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
8092 buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
8093 wasn't killed.
10e1dad9 8094
58ed0d3b
GM
8095 * buff-menu.el (list-buffers-noselect): Don't display the
8096 *Buffer List* buffer.
8097
32dc52f7
GM
8098 * font-lock.el: Require jit-lock to prevent a very late
8099 `Loading jit-lock' message.
8100
f68446ef 8101 * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
10e1dad9 8102 * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
f68446ef
GM
8103 mail address.
8104
90ac90a2
MB
81052000-08-15 Miles Bader <miles@gnu.org>
8106
8107 * textmodes/ispell.el (ispell-graphic-p): New constant.
8108 (ispell-choices-win-default-height, ispell-help): Use
8109 `ispell-graphic-p' instead of `xemacsp'.
8110
b0a0e263
DL
81112000-08-15 Dave Love <fx@gnu.org>
8112
c1e757e3
DL
8113 * simple.el: Autoload widget-convert when compiling.
8114 (mail-user-agent): Doc fix.
8115
8116 * help.el (function-called-at-point, variable-at-point): Use
8117 with-syntax-table.
8118 (help-manyarg-func-alist): Add insert-and-inherit.
8119
8120 * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
8121
8122 * delsel.el (delsel-unload-hook): New function.
8123
8124 * find-file.el: Doc fixes. Move provide to end.
8125 (ff) <defgroup>: Add :link.
8126 (ff-goto-click): Deleted.
8127 (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
8128 Use mouse-set-point.
8129
8130 * textmodes/tildify.el: Doc fixes.
8131 (tildify) <defgroup>: Add:version.
8132
8133 * progmodes/glasses.el (glasses) <defgroup>: Add :version.
8134 (glasses-custom-set): Use set-default, not set.
8135 (minor-mode-alist): Propertize the lighter.
8136 (glasses-mode): Provide optional arg.
8137
5f847612
DL
8138 * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
8139 (global-cwarn-mode): Don't make it a user option. Unquote lambda.
8140 (cwarn-font-lock-feature-keywords-alist): Don't make it a user
8141 option. Provide :type.
8142 (cwarn-configuration): Provide :type.
8143 (cwarn-mode): Doc fix.
8144
8145 * add-log.el (change-log-merge): Doc fix.
8146 (change-log-redate): New command.
8147
b0a0e263
DL
8148 * net/browse-url.el (browse-url-filename-alist): Add a clause for
8149 Doze and Dog.
8150 (browse-url): Use dolist, not mapcar.
8151 (browse-url-at-point): Check for null url.
8152 (browse-url-event-buffer, browse-url-event-point): Functions
8153 deleted.
8154 (browse-url-at-mouse, browse-url-netscape): Simplify.
8155
8156 * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
8157 modes.
8158 (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
8159 Fix previous change to mapcan.
8160 (msb--init-file-alist, msb--add-separators)
8161 (msb--make-keymap-menu): Simplify.
8162 (msb--choose-file-menu): Use copy-sequence.
8163 (msb-mode-map): Add title to keymap.
8164 (msb-unload-hook): New function.
8165
8166 * bs.el: Fix indentation.
8167 (bs) <defgroup>: Add :links.
2b5198bb
DL
8168 (bs-show): Doc fix.
8169 (bs-apply-sort-faces): Don't use window-system.
8170 (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
b0a0e263 8171
70f1b78e
EZ
81722000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
8173
8174 * calendar/timeclock.el (timeclock-file): Run .timelog through
8175 convert-standard-filename.
8176
956777b3
GM
81772000-08-14 Gerd Moellmann <gerd@gnu.org>
8178
3215096c
GM
8179 * emacs-lisp/authors.el: New file.
8180
956777b3
GM
8181 * paren.el (show-paren-priority): New user option.
8182 (show-paren-function): Set overlay priorities to
8183 show-paren-priority.
10e1dad9 8184
0cde1424
MB
81852000-08-14 Miles Bader <miles@gnu.org>
8186
8187 * comint.el (comint-bol): Use `forward-line 0' instead of calling
8188 beginning-of-line with inhibit-field-text-motion bound.
8189
90cbf47e
GM
81902000-08-14 Gerd Moellmann <gerd@gnu.org>
8191
8192 * calendar/timeclock.el: New file.
8193
81942000-08-14 David Ponce <david@dponce.com>
8195
8196 * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
8197 `widget-button-click'. so that one can use left mouse button to
8198 click on dialog buttons.
8199
82002000-08-14 Emmanuel Briot <briot@gnat.com>
8201
8202 * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
814299a7 8203 identifiers, since XML is case sensitive
10e1dad9 8204
79e8dca7 82052000-08-12 Miles Bader <miles@gnu.org>
10e1dad9 8206
660394d1
MB
8207 * comint.el (comint-output-filter): Don't bother frobbing
8208 window-start, it doesn't seem to be necessary.
79e8dca7
MB
8209
8210 * comint.el (comint-send-string, comint-send-region): Make into
8211 real functions. Snapshot the prompt before sending.
8212
218c2cc7
EZ
82132000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
8214
8215 * info.el (Info-find-emacs-command-nodes): Rewrite to use
8216 technique similar to Info-index, instead of relying on specific
8217 names of relevant Index nodes.
8218 (Info-goto-emacs-command-node): Bind Info-history to nil when
8219 going to the first node found by Info-find-emacs-command-nodes.
8220
51e066d2 82212000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
968280cc
EZ
8222
8223 * menu-bar.el (menu-bar-help-menu): Add a :help string.
8224
867102f2
MB
82252000-08-10 Miles Bader <miles@gnu.org>
8226
8227 * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
8228
af718538
EZ
82292000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
8230
8231 * info.el (Info-file-list-for-emacs): More elements for the
8232 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
8233 and woman manuals.
8234
c51bacd6
MB
82352000-08-10 Miles Bader <miles@lsi.nec.co.jp>
8236
8237 * comint.el (comint-send-input): Make the newline boundary overlay
8238 rear-nonsticky. Use `insert' instead of `insert-before-markers'.
8239 (comint-output-filter): Use `insert' instead of
8240 `insert-before-markers'. Extend comint-last-output-overlay when
8241 necessary since we can't rely on insert-before-markers to do it.
8242 * gud.el (gud-filter): Use `with-current-buffer' instead of
8243 save-excursion when inserting the output, so that point gets
8244 updated correctly; the old method relied on a rather dodgy
8245 side-effect of comint-output-filter to avoid the effect of
8246 save-excursion.
8247
98532b12
EZ
82482000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
8249
8250 * files.el (recover-file): Call insert-directory instead of
8251 invoking `ls' directly.
8252
3db4b719
MB
82532000-08-10 Miles Bader <miles@gnu.org>
8254
8255 * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
8256 (comint-last-prompt-overlay): New variables.
8257 (comint-output-filter): Implement prompt highlighting.
8258 (comint-snapshot-last-prompt): New function.
8259 (comint-send-input): Snapshot the last prompt.
8260 Use comint-highlight-input-face.
8261 (comint-highlight-input-face): Renamed from `comint-highlight-face'.
8262 Use defface instead of defcustom.
8263 (send-invisible, comint-send-eof): Snapshot the last prompt.
8264 (comint-delchar-or-maybe-eof): Use comint-send-eof.
8265 (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
8266
96190aa1
SM
82672000-08-09 Stefan Monnier <monnier@cs.yale.edu>
8268
5cda4b07
SM
8269 * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
8270 (regexp-opt-group): Use a list of chars for `letters'.
8271 (regexp-opt-charset): `chars' is now a list of chars.
8272 Use a char-table rather than a vector so it works for multibyte chars.
8273
96190aa1
SM
8274 * pcvs.el (cvs-menu): Don't move point. Use popup-menu.
8275 Set cvs-minor-current-files to the selected fileinfo.
8276 (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
8277 (cvs-mode-insert): Manually macroexpand `ignore-errors'.
8278
7d093d56
EZ
82792000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
8280
8281 * files.el (insert-directory): Don't call access-file on
8282 directories on DOS and Windows.
8283
b24c5811
KH
82842000-08-09 Kenichi Handa <handa@etl.go.jp>
8285
8286 * international/ccl.el (ccl-embed-data): Make ccl-program-vector
8287 longer if necessary.
8288 (ccl-embed-code): Call ccl-embed-data to store CODE in
8289 ccl-program-vector.
8290
0a6fd67e
MB
82912000-08-09 Miles Bader <miles@gnu.org>
8292
8293 * comint.el (comint-output-filter): Properly handle the case where
8294 the text surrounded by comint-last-output-overlay was deleted.
8295
9f6d1a6c
GM
82962000-08-08 Gerd Moellmann <gerd@gnu.org>
8297
25ad1371
GM
8298 * info.el (Info-insert-dir): Use Info-additional-directory-list if
8299 non-nil.
8300 (Info-file-list-for-emacs): Remove "info" from the list because
8301 that leads to trying to use the documentation from file `info'
8302 in various situations where it isn't appropriate, for instance
8303 C-h C-k C-h i.
8304
8305 * ffap.el (ffap-read-file-or-url-internal): Handle case that
8306 DIR and/or STRING are nil.
8307
8308 * progmodes/compile.el (compilation-setup): Make variable
8309 compilation-error-screen-columns buffer-local, as some comment
8310 in the code suggests it should be.
8311
8312 * files.el (auto-mode-interpreter-regexp): New variable.
8313 (set-auto-mode): Use it.
8314
8315 * indent.el (indent-for-tab-command): Doc fix.
8316
8317 * mouse-sel.el (mouse-sel-mode): Doc fix.
8318
9f6d1a6c
GM
8319 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
8320 labels.
8321
8322 * help.el (print-help-return-message): When
8323 display-buffer-reuse-frames is set, let the help window been quit,
8324 instead of deleting it, which might delete a reused frame.
8325
3d819a75
EZ
83262000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
8327
8328 * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
8329 rename a directory to a name that differs only by its letter case.
8330
c5a52529
KH
83312000-08-08 Kenichi Handa <handa@etl.go.jp>
8332
8333 * international/quail.el (quail-define-rules): Handle Quail decode
8334 map correctly. Add code for supporting annotations.
8335 (quail-install-decode-map): New function.
8336 (quail-defrule-internal): New optional arguments decode-map and
8337 props.
8338 (quail-advice): New function.
8339
5e9e032a
SS
83402000-08-07 Sam Steingold <sds@gnu.org>
8341
8342 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
8343 `defconst', `define-condition', `with-slots'.
8344 * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
8345
46645f4b
MB
83462000-08-03 Miles Bader <miles@gnu.org>
8347
8348 * comint.el (comint-use-prompt-regexp-instead-of-fields):
8349 New variable.
8350 (comint-prompt-regexp, comint-get-old-input): Document dependence on
8351 comint-use-prompt-regexp-instead-of-fields.
8352 (comint-send-input): Add `input' field property to stuff we send to
8353 the process, if comint-use-prompt-regexp-instead-of-fields is nil.
8354 (comint-output-filter): Add `output' field property to process
8355 output, if comint-use-prompt-regexp-instead-of-fields is nil.
8356 (comint-replace-by-expanded-history)
8357 (comint-get-old-input-default, comint-show-output)
8358 (comint-backward-matching-input, comint-forward-matching-input)
8359 (comint-next-prompt, comint-previous-prompt): Use field
8360 properties if comint-use-prompt-regexp-instead-of-fields is nil.
8361 (comint-line-beginning-position): New function.
8362 (comint-bol): Use comint-line-beginning-position. Make ARG optional.
8363 (comint-replace-by-expanded-history-before-point): Use
8364 comint-line-beginning-position and line-end-position.
8365 (comint-last-output-overlay): New variable.
8366 (comint-mode): Make `comint-last-output-overlay' buffer-local.
8367
8368 * shell.el (shell-prompt-pattern): Doc change.
8369 (shell-backward-command): Use line-beginning-position.
8370
8371 * gud.el (gud-gdb-complete-command): Use
8372 comint-line-beginning-position.
8373
8374 * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
8375 comint-bol doesn't actually go to the beginning of the line.
8376
8377 * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
8378 if comint-use-prompt-regexp-instead-of-fields is non-nil.
8379 (try-expand-line-all-buffers): Likewise.
8380
8381 * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
8382 explicitly matching comint-prompt-regexp.
8383 (sql-copy-column): Use comint-line-beginning-position instead of
8384 explicitly matching comint-prompt-regexp.
8385
8386 * progmodes/octave-inf.el (inferior-octave-complete): Use
8387 comint-line-beginning-position.
8388
8389 * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
8390
8391 * progmodes/idlw-shell.el (idlwave-shell-send-command): When
8392 looking for a prompt, use `forward-line 0' instead of
8393 `beginning-of-line', to avoid getting caught by an input field.
8394
ff3d9573
GM
83952000-08-07 Gerd Moellmann <gerd@gnu.org>
8396
8397 * files.el (shell-quote-wildcard-pattern): Make sure to return
8398 PATTERN, in the Unix case.
8399
e0d8827b
EZ
84002000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
8401
8402 * play/zone.el (zone): Discard any pending input before running
8403 the randomly-chosen pgm.
8404
24d55b8f
KH
84052000-08-07 Kenichi Handa <handa@etl.go.jp>
8406
8407 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
8408 checking the existence of any multibyte characters.
8409
3d05e1ee
GM
84102000-08-06 Gerd Moellmann <gerd@gnu.org>
8411
6c4a4368
GM
8412 * help.el (describe-mode): Test minor-mode symbol for being
8413 bound before testing its value for being nil.
8414
3d05e1ee
GM
8415 * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
8416 `first', `second', and `third'.
8417
8418 * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
8419 (second): Make it an alias for `cadr'.
8420
6968a481
EZ
84212000-08-06 Eli Zaretskii <eliz@is.elta.co.il>
8422
8423 * bs.el (bs-apply-sort-faces): Don't use window-system, since all
8424 types of display support faces now.
8425
e49aa397
GM
84262000-08-05 Gerd Moellmann <gerd@gnu.org>
8427
8428 * pcvs.el (require): Require `cl' during compilation, only.
8429
8430 * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
8431 (toplevel): Remove `remq' and `remove' from autoloads.
8432 (cl-fake-autoloads): New variable. If set, arrange for an error
8433 when CL functions etc. are autoloaded.
8434
588aca27
EZ
84352000-08-04 Eli Zaretskii <eliz@is.elta.co.il>
8436
2e78d4ab
EZ
8437 * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
8438
85628348
EZ
8439 * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
8440 popped up, but the user clicks outside the menu, return an empty
8441 regexp (that causes unhighlight-regexp to have no effect).
8442
74f0e552
EZ
8443 * menu-bar.el (menu-bar-games-menu): Add Zone.
8444
588aca27
EZ
8445 * hi-lock.el (toplevel): Require font-lock.
8446
f4988be7
GM
84472000-08-03 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8448
ba087cd7 8449 * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward.
f4988be7
GM
8450 (ebnf-8-bit-chars): New var for bug fix.
8451 (ebnf-string): Bug fix.
8452
027b73ac
SS
84532000-08-03 Sam Steingold <sds@gnu.org>
8454
8455 * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
8456 instead of `buffer-string'.
8457 (require 'cl): Always, not just when compiling.
8458 `ignore-errors' in `interactive', `list*', `defun*' &c make this
8459 necessary.
8460
2f1fa038
EZ
84612000-08-03 Eli Zaretskii <eliz@is.elta.co.il>
8462
8463 * international/mule-cmds.el (select-safe-coding-system): Make
8464 the message text about selecting a safe coding system more clear.
8465
ead53494
GM
84662000-08-02 Gerd Moellmann <gerd@gnu.org>
8467
abb2db1c
GM
8468 * hi-lock.el: New file.
8469
8470 * play/zone.el: New file.
8471
ead53494
GM
8472 * replace.el (occur): Set tab-width in the *Occur* buffer to the
8473 value of tab-width in the original buffer. Choose a line number
8474 format that's a multiple of the original buffer's tab width, so
8475 that lines appear right.
8476
8477 * textmodes/ispell.el (ispell): New function, replacing an alias.
8478 Spell-check active region if in transient-mark-mode and mark
8479 is active; otherwise spell-check buffer.
8480
84812000-08-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8482
8483 * ps-mule.el: Fix a customization problem on
8484 ps-mule-font-info-database-default.
8485
f4a2b0a4
EZ
84862000-08-02 Eli Zaretskii <eliz@is.elta.co.il>
8487
8488 * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
8489 display-mouse-p instead of window-system.
8490 (ebrowse-member-mode-map): Ditto.
8491
b685181e
GM
84922000-08-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8493
ba087cd7
EZ
8494 * progmodes/ebnf2ps.el: Update ps-print functions call.
8495 Indentation fix. Doc fix.
b685181e
GM
8496 (ebnf-version): New version number (3.2).
8497 (ebnf-format-color, ebnf-begin-job): Code fix.
027b73ac 8498
3b5fab87
EZ
84992000-08-01 Eli Zaretskii <eliz@is.elta.co.il>
8500
032ebb29
EZ
8501 * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
8502 font lock support on window-system.
8503 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
8504
3b5fab87
EZ
8505 * textmodes/ispell.el (ispell-highlight-spelling-error): Use
8506 display-color-p, if fboundp, instead of window-system.
8507
7e2605e7
EZ
85082000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
8509
8510 * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
8511 instead of window-system.
8512
8513 * wid-edit.el (widget-choose): Use display-mouse-p instead of
8514 window-system.
8515 (widget-choice-mouse-down-action): Use display-popup-menus-p
8516 instead of window-system.
8517
8518 * strokes.el (strokes-file): Run the file name through
8519 convert-standard-filename.
8520 (strokes-mode): Call display-mouse-p instead of looking at
8521 window-system. Change the error message accordingly.
8522
8523 * progmodes/cpp.el (toplevel): Support faces on tty's.
8524
8525 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
8526 (lm-plot-square, lm-init-display): Don't use window-system.
8527
8528 * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
8529 (gomoku-plot-square, gomoku-init-display): Don't use window-system.
8530
8531 * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
8532 instead of looking at window-system.
8533
26119624
GM
85342000-07-30 Gerd Moellmann <gerd@gnu.org>
8535
8536 * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
8537 of testing if iswitchb-prepost-hooks is bound, because the
8538 latter will always be true when invoking a recursive minibuffer
8539 from an active Iswitchb buffer.
8540
c90596f3
EZ
85412000-07-30 Eli Zaretskii <eliz@is.elta.co.il>
8542
8543 * files.el (shell-quote-wildcard-pattern): New function.
8544 (insert-directory): Call it. Only prepend "\" to command on Unix
8545 and GNU/Linux systems.
8546
18925e78
GM
85472000-07-30 Gerd Moellmann <gerd@gnu.org>
8548
8549 * eshell/esh-groups.el: Change custom :link file names
8550 from `eshell.info' to `eshell'.
8551
85522000-07-30 Francis Wright <fjw@maths.qmw.ac.uk>
8553
8554 * dired.el (dired-build-subdir-alist): Expand subdirectory names
8555 correctly in recursive ange-ftp listings.
8556
85572000-07-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8558
8559 * ps-print.el: Fix bug 1: if ps-font-size-internal,
8560 ps-header-font-size-internal and
8561 ps-header-title-font-size-internal variables are not set,
8562 ps-nb-pages and ps-line-lengths-internal crashes. Fix bug 2: if
8563 face text property is (foreground-color . COLOR) or
8564 `(background-color . COLOR)', ps-print crashes. Doc fix.
8565 (ps-print-version): New version number (5.2.4).
8566 (ps-plot-region): Code fix.
8567 (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
8568 (ps-face-attribute-list, ps-face-attributes, ps-face-background):
8569 Bug fix 2.
8570
85712000-07-30 Milan Zamazal <pdm@freesoft.cz>
8572
8573 * glasses.el (glasses-make-readable): Fix uncapitalization of
8574 identifiers like `myXMLDocument'.
8575
aeb4c63e
KF
85762000-07-28 Karl Fogel <kfogel@red-bean.com>
8577
18925e78
GM
8578 * mail/mail-hist.el (mail-hist-previous-input)
8579 (mail-hist-next-input): Do the obvious code factorization.
8580 (mail-hist-retrieve-and-insert): New func, contains common
aeb4c63e
KF
8581 code of above two.
8582 If inserting a message body, leave point at top.
8583
9d453139
SS
85842000-07-28 Sam Steingold <sds@gnu.org>
8585
8586 * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
18925e78
GM
8587 Use `<=', not `<' to compare times!
8588 (ange-ftp-ls): Remove.
9d453139 8589
b548072f
GM
85902000-07-27 Gerd Moellmann <gerd@gnu.org>
8591
27848c01
GM
8592 * play/cookie1.el: Add explanation of how to make cookie.el
8593 compatible with strfile(1) to comment.
8594
8595 * subr.el (remove, remq): New functions.
8596
3ab82477
GM
8597 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
8598 escape `*' in regexps.
8599 (midnight-find): Reverse order of arguments in the funcall of
8600 TEST.
8601
8602 * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
8603 and `.class'.
8604
b548072f
GM
8605 * play/meese.el: Add Commentary section.
8606
27848c01
GM
86072000-07-27 Alex Schroeder <alex@gnu.org>
8608
8609 * sql.el (sql-ms): Added autoload cookie.
8610 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
8611 (sql-oracle): Ditto.
8612 (sql-help): Doc change.
8613
8614 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
8615 types and exceptions.
8616
86172000-07-27 Alex Schroeder <alex@gnu.org>
8618
8619 * sql.el (sql-placeholder-history): New variable.
8620 (sql-query-placeholders-and-send): New function that will query
8621 the user and replace placeholders with user input.
8622 (sql-oracle): If running on NT, set comint-input-sender to
8623 sql-query-placeholders-and-send.
8624
8625 (sql-stop): If in the SQLi buffer, insert stop notification, else
8626 present it as a message.
8627
86282000-07-27 Alex Schroeder <alex@gnu.org>
8629
8630 * sql.el (sql-input-ring-separator): Doc change.
8631 (sql-input-ring-file-name): Doc change.
8632 (sql-interactive-mode): Use `sql-input-ring-separator' and
8633 `sql-input-ring-file-name' to set the comint-mode equivalents
8634 without making them local variables.
8635 (sql-stop): Don't bind `sql-input-ring-separator' and
8636 `sql-input-ring-file-name' dynamically to their comint-mode
8637 equivalents.
8638
91ae8751
KH
86392000-07-27 Kenichi Handa <handa@etl.go.jp>
8640
8641 * international/mule.el (register-char-codings): New function.
8642 (make-coding-system): Handle `safe-chars' specification in the arg
8643 PROPERTY.
8644
8645 * international/mule-cmds.el
8646 (find-coding-systems-region-subset-p): This function deleted.
8647 (sort-coding-systems-predicate): New variable.
8648 (sort-coding-systems): New function.
8649 (find-coding-systems-region): Use
8650 find-coding-systems-region-internal.
8651 (find-coding-systems-string): Use find-coding-systems-region.
8652 (find-coding-systems-for-charsets): Check
8653 char-coding-system-table.
8654 (select-safe-coding-system-accept-default-p): New variable.
8655 (select-safe-coding-system): Mostly rewritten. New argument
8656 ACCEPT-DEFAULT-P.
8657 (select-message-coding-system): Call select-safe-coding-system
8658 with ACCEPT-DEFAULT-P arg.
8659 (reset-language-environment): Reset default-sendmail-coding-system
8660 to the default value iso-latin-1.
8661 (set-language-environment): Don't set the obsolete variable
8662 charset-origin-alist.
8663
8664 * international/codepage.el (cp-coding-system-for-codepage-1):
8665 Give `safe-chars' property to make-coding-system.
8666
8667 * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
8668 calling select-message-coding-system twice.
8669
8670 * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
8671 instead of `safe-charsets'.
8672 (cyrillic-alternativnyj): Likewise.
8673 (ccl-encode-alternativnyj): Don't check the charset
8674 cyrillic-iso8859-5.
8675
90cf4474
KH
86762000-07-27 Kenichi Handa <handa@etl.go.jp>
8677
8678 * composite.el (compose-chars-after): Preserve match data.
8679
a1f84f6d
SS
86802000-07-26 Sam Steingold <sds@gnu.org>
8681
8682 * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
8683 (ange-ftp-real-file-newer-than-file-p): New function.
8684 (ange-ftp-verify-visited-file-modtime): Use `float-time'.
8685 (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
8686
8687 * tooltip.el (tooltip-float-time): Removed (use `float-time').
8688 * midnight.el (midnight-float-time): Ditto.
8689
e092928e
AS
86902000-07-26 Andreas Schwab <schwab@suse.de>
8691
8692 * files.el (normal-backup-enable-predicate): Correct
8693 interpretation of the return value of compare-strings.
8694
7465ebef
GM
86952000-07-26 Gerd Moellmann <gerd@gnu.org>
8696
3353ef5a
GM
8697 * isearch.el (isearch-resume): New function.
8698 (isearch-done): Add something to command-history to resume
8699 the search.
8700 (isearch-yank-line, isearch-yank-word): Use
8701 buffer-substring-no-properties instead of buffer-substring.
8702
7465ebef
GM
8703 * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
8704 of flyspell-mouse-map.
8705
8706 * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
8707 duplicate definition.
8708 (makefile-mode): Remove duplicate setting of local-abbrev-table.
8709
8710 * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
8711 (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
8712
5044b74a
SS
87132000-07-25 Sam Steingold <sds@gnu.org>
8714
25759a92
SS
8715 * net/ange-ftp.el: Get modtime over the net.
8716 (ange-ftp-file-modtime): New function.
a95cb10a
GM
8717 (ange-ftp-write-region, ange-ftp-insert-file-contents)
8718 (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
25759a92
SS
8719 Use it.
8720 (ange-ftp-dot-to-slash): New function.
8721 (ange-ftp-fix-name-for-vms): Use it.
8722
5044b74a
SS
8723 * midnight.el (midnight-buffer-display-time): Use
8724 `with-current-buffer'.
8725
5dcfb3f4
GM
87262000-07-25 Gerd Moellmann <gerd@gnu.org>
8727
8728 * find-dired.el: Update copyright notice.
8729 (find-dired): Offer to kill a running `find'.
8730
8731 * enriched.el (enriched-face-ans): For a `foreground-color'
8732 property, return '(("x-color" COLOR))' so that COLOR will be
8733 output as a parameter of the x-color annotation. Likewise for the
8734 `background-color' property. In the case of normal face
8735 properties, don't return annotations for unspecified foreground
8736 and background face attributes.
8737
8c662166
KH
87382000-07-25 Kenichi Handa <handa@etl.go.jp>
8739
8740 * language/japan-util.el (japanese-katakana-region): Fix handling
8741 HANKAKU argument.
8742
c28da489
MB
87432000-07-25 Miles Bader <miles@gnu.org>
8744
8745 * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
8746 constrain-to-field. Pass nil ESCAPE-FROM-EDGE argument to
8747 constrain-to-field.
8748
ad349719
AI
87492000-07-24 Andrew Innes <andrewi@gnu.org>
8750
8751 * timer.el (timer-activate-when-idle): Add optional parameter
8752 DONT-WAIT. Update docstring.
8753 (run-with-idle-timer): Specify extra parameter to
8754 timer-activate-when-idle, so that timer will be activated
8755 immediately if Emacs is already idle.
8756
8757 * w32-fns.el (w32-using-nt): Fix docstring.
8758
c95162f5
DL
87592000-07-24 Dave Love <fx@gnu.org>
8760
8761 * mouse.el (popup-menu): Set last-command-event.
8762 (mouse-major-mode-menu-prefix): Declare.
8763
e3c31fd5
GM
87642000-07-24 Gerd Moellmann <gerd@gnu.org>
8765
8766 * textmodes/flyspell.el: Update to author's version 1.5d.
8767
8768 * progmodes/hideshow.el: Update copyright notice.
8769
8770 * vcursor.el: Set maintainer to FSF, since author cannot
8771 be reached.
8772
7636d2a3
EZ
87732000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
8774
fbe0a958
EZ
8775 * info.el (Info-goto-emacs-key-command-node): Leave a space after
8776 the prompt.
8777
7636d2a3
EZ
8778 * mouse.el (popup-menu): Run the keymap through indirect-function,
8779 in case it was defined with define-prefix-key. If the menu is a
8780 list of keymaps, look up the binding of user's choice in each one
8781 of the keymaps.
8782 (mouse-popup-menubar): If the global and local menu-bar keymaps
8783 don't have a prompt string, create one and insert it into the
8784 keymap. Don't barf if current-local-map returns nil.
8785
e024b101
GM
87862000-07-24 Francis Wright <fjw@maths.qmw.ac.uk>
8787
8788 * dired.el (dired-sort-R-check): Added to allow recursive listing
8789 to be undone.
8790 (dired-sort-other): Use it.
8791
7972fcfc
GM
87922000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8793
e024b101 8794 * Release of cc-mode 5.27
7972fcfc
GM
8795
87962000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8797
8798 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
8799 c-beginning-of-statement-1 that caused a bad case of recursion
8800 which could consume a lot of CPU in large classes in languages
8801 that have in-expression classes (i.e. Java and Pike).
8802
8803 * cc-engine.el (c-guess-basic-syntax): Check for in-expression
8804 statements before top level constructs (i.e. case 6 is moved
8805 before case 5 and is now case 4) to catch in-expression
8806 classes in top level expressions correctly.
8807
88082000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8809
8810 * cc-engine.el (c-guess-basic-syntax): Less naive handling of
8811 objc-method-intro. Case 4 removed and case 5I added.
8812
8813 * cc-langs.el (c-append-paragraph-start): New variable used by
8814 c-common-init to get paragraph-start correct.
8815 * cc-langs.el (c-common-init): Use c-append-paragraph-start to
8816 initialize paragraph-start to make it correct both with and
8817 without the javadoc special case.
8818
8819 * cc-mode.el (java-mode): Use c-append-paragraph-start to
8820 initialize paragraph-start for javadoc markup.
8821
8822 * cc-vars.el (c-style-variables-are-local-p): Incompatible
8823 change by defaulting this to t. It's motivated by the
8824 confusing behavior that otherwise arise from the style system
8825 when editing both java and non-java files at the same time
8826 (see the comments about style setting in c-common-init).
8827
88282000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8829
8830 * cc-cmds.el (c-indent-new-comment-line): Added a kludge
8831 similar to the one in c-fill-paragraph to check the fill
8832 prefix from the adaptive fill function for sanity.
8833
88342000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8835
8836 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
8837 defun block.
8838
88392000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8840
5044b74a 8841 * cc-mode.texi Documented the change of cpp-macro.
7972fcfc
GM
8842
88432000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8844
8845 * cc-align.el (c-lineup-multi-inher): Handle lines with
8846 leading comma nicely. Extended to handle member initializers
8847 too.
8848
e024b101 8849 * cc-engine.el: (c-beginning-of-inheritance-list,
7972fcfc
GM
8850 c-guess-basic-syntax): Fixed recognition of inheritance lists
8851 when the lines begins with a comma.
8852
5044b74a 8853 * cc-mode.texi: Updated doc for c-lineup-multi-inher.
7972fcfc
GM
8854
8855 * cc-vars.el (c-offsets-alist): Changed default for
8856 member-init-cont to c-lineup-multi-inher since it now handles
8857 member initializers and indents better for leading commas.
8858
88592000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8860
8861 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
8862 handling that caused class open lines to be recognized as
8863 statement-conts in some cases.
8864
8865 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
8866 guessed by the adaptive fill function unless point is on the
8867 first line of a block comment.
8868
8869 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
8870 when the buffer ends with a macro continuation char.
8871
8872 * cc-engine.el (c-guess-basic-syntax): Added support for
8873 function definitions as statements in Pike. The first
8874 statement in a lambda block is now labeled defun-block-intro
8875 instead of statement-block-intro.
8876
8877 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
8878 so that the class surrounding point is selected, not the one
8879 innermost in the state.
8880
8881 * cc-engine.el (c-guess-basic-syntax): Fixed bug in
8882 recognition of switch labels having hanging multiline
8883 statements.
8884
8885 * cc-engine.el (c-beginning-of-member-init-list): Broke out
8886 some code in c-guess-basic-syntax to a separate function.
8887 * cc-engine.el (c-just-after-func-arglist-p): Fixed
8888 recognition of member inits with multiple line arglists.
8889 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
8890 member-init-cont when the commas are in funny places.
8891
88922000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8893
8894 * cc-defs.el (c-auto-newline): Removed this macro since it's
8895 not used anymore.
8896
8897 * cc-engine.el (c-looking-at-bos): New helper function.
8898 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
8899 inexpr and toplevel classes apart in Pike.
8900
8901 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
8902 of case 9A.
8903
8904 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
8905 constant, since "class" can introduce an in-expression class
8906 in Pike nowadays.
8907
89082000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8909
8910 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
8911 indentation on cpp-macro lines.
8912
8913 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
8914 a syntax modifier like comment-intro, to make it possible to
8915 get syntactic indentation for preprocessor directives. It's
8916 incompatible wrt to lineup functions on cpp-macro, but it has
8917 no observable effect in the 99.9% common case where cpp-macro
8918 is set to -1000.
8919
89202000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8921
8922 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
8923 member-init-cont when the preceding arglist is several lines.
8924
89252000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8926
8927 * cc-styles.el (c-style-alist): The basic offset for the BSD
8928 style corrected to 8.
8929
89302000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8931
8932 * cc-styles.el (c-style-alist): Adjusted the indentation of
8933 brace list openers in the gnu style.
8934
89352000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8936
8937 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
8938
8939 * cc-cmds.el (c-electric-brace, c-electric-slash,
8940 c-electric-star, c-electric-semi&comma, c-electric-colon,
8941 c-electric-lt-gt, c-electric-paren): Don't reindent old lines
8942 when c-syntactic-indentation is nil.
8943
8944 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
8945 we were left at comments preceding the first statement when
8946 reaching the beginning of the buffer.
8947
8948 * cc-vars.el (c-syntactic-indentation): New variable to turn
8949 off all syntactic indentation.
8950
89512000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8952
8953 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
8954 between the text and the block comment ender when it hangs,
8955 depending on how many there are before the fill.
8956
89572000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8958
8959 * cc-engine.el (c-beginning-of-closest-statement): New helper
8960 function to go back to the closest preceding statement start,
8961 which could be inside a conditional statement.
8962 * cc-engine.el (c-guess-basic-syntax): Use
8963 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
8964
8965 * cc-engine.el (c-guess-basic-syntax): Better handling of
8966 arglist-intro, arglist-cont-nonempty and arglist-close when
8967 the arglist is nested inside parens. Cases 7A, 7C and 7F
8968 changed.
8969
8970 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
8971 up-to-date with javadoc 1.2.
8972
89732000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8974
8975 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
8976 multiline Pike type decls.
8977
89782000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8979
8980 * cc-cmds.el (c-indent-new-comment-line): Always break
8981 multiline comments in multiline mode, regardless of
8982 comment-multi-line.
8983
89842000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8985
8986 * cc-engine.el (c-guess-basic-syntax): Fixed bug with
8987 fully::qualified::names in C++ member init lists. Preamble in
8988 case 5D changed.
8989
89902000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8991
8992 * cc-langs.el (c-common-init): Handling of obsolete variables
8993 moved to c-initialize-cc-mode. More compatible style override
8994 when using global style variables.
8995 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
8996 variables moved here.
8997
e024b101 8998 * cc-mode.texi: Documented the special behavior of
7972fcfc
GM
8999 c-special-indent-hook as a style variable. Don't talk about
9000 doing (c-make-styles-buffer-local t) in a mode hook, since
9001 that's already too late to work right.
5044b74a 9002
7972fcfc
GM
9003 * cc-styles.el (c-make-styles-buffer-local): Flag style
9004 variable localness in c-style-variables-are-local-p to make
9005 the compatibility measure in c-common-init work well.
9006
9007 * cc-styles.el (c-set-style-1): c-special-indent-hook can no
9008 longer contain set-from-style.
9009 * cc-styles.el (c-initialize-builtin-style): Don't check for
9010 set-from-style on c-special-indent-hook.
9011 * cc-styles.el (c-copy-tree): Obsolete. The standard function
9012 copy-alist is sufficient now.
9013
9014 * cc-styles.el (c-set-style, c-set-style-1,
9015 c-get-style-variables): Fixes to variable initialization so
9016 that duplicate entries in styles have the same effect
9017 regardless of DONT-OVERRIDE.
9018
9019 * cc-styles.el (c-set-style-2): Fixed bug where the
9020 initialization of inheriting styles failed when the
9021 dont-override flag is set.
9022
9023 * cc-vars.el (c-special-indent-hook): Don't use set-from-style
9024 on this.
9025
90262000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
9027
9028 * cc-defs.el (c-forward-comment): Removed the workaround
9029 introduced in 5.38 since it had worse side-effects. If a line
9030 contains the string "//\"", it regarded the // as a comment
9031 start since the \ temporarily doesn't have escape syntax.
9032
90332000-07-17 Emmanuel Briot <briot@act-europe.fr>
9034
9035 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
9036 ada-xref.el before ada-prj.el, so that the Project menu is created
9037 when ada-prj tries to add to it.
9038 (ada-activate-keys-for-case): Suppress the characters that are not
9039 part of the Ada syntax. Better compatibility with else-mode
9040 (ada-adjust-case-interactive): When auto-casing is not active,
9041 correctly insert newlines (used to insert only ^M). Prevent the
9042 syntax table from being changed in case of an error
814299a7 9043 (or '_' becomes part of a word and some commands are confused).
7972fcfc
GM
9044 Do nothing if ada-auto-case is nil.
9045 (ada-after-keyword-p): Ignore keywords that are also attributes
9046 (ada-batch-reformat): Update usage comment
9047 (ada-call-from-contextual-menu): New function
9048 (ada-case-read-exceptions): Reinitialize the casing exception list
9049 first to nil first, so that the casing exception file can be
9050 shared.
9051 (ada-check-defun-name): Handles "configure" keyword for gnatdist
9052 files.
9053 (ada-compile-goto-error): Fix regexp used to detect a file:line
9054 anywhere in the error message
9055 (ada-contextual-menu-last-point): New variable
9056 (ada-create-keymap): If the variable delete-key-deletes-forward is
9057 t on XEmacs, it means that DEL should delete one character
9058 forward.
9059 (ada-create-menu): Use :included instead of :visible for XEmacs.
9060 New submenu "Options".
9061 (ada-end-stmt-re): Correctly indent "select ... then abort"
9062 statements.
9063 (ada-fill-comment-paragraph): Correctly delete all leading '--'
9064 even if they don't match ada-fill-comment-prefix Fix handling of
9065 paragraphs on the first or last line of a file.
9066 (ada-format-paramlist): Fix handling of default parameter values.
9067 (ada-get-body-name): New function.
9068 (ada-get-current-indent): Optimized by searchling directly for an
9069 existing generic part or a statement outside of it. Handle
9070 ada-indent-align-comments when indenting comments Replaced some
9071 regexps by testing directly the next character. This results in a
9072 huge speedup on some files. New indentation scheme for renames
9073 statements. Stop looking for the 'while' or 'for' associated with
9074 a 'loop' at the first semicolon encountered. A "return" can also
9075 match an anonymous access subprogram declaration.
9076 (ada-get-indent-noindent): Ignore strings and comments when
9077 looking for the keywords "record" and "private".
9078 (ada-goto-matching-decl-start): When matching "if", make sure we
9079 are not in fact seeing "end if". Ignore "when" statements except
9080 when initial keyword was "begin". Fix handling of nested
9081 procedures. Add a recursive call to this function to skip over
9082 other 'end' statmts. Fix indentation for "when .. => begin"
9083 (ada-in-open-paren-p): Fix indentation for complex boolean
9084 expressions, where 'and then', 'or else' and parenthesis
9085 statements are mixed up.
9086 (ada-in-paramlist-p): Skip comments while searching for the
9087 beginning Fix handling of operator declarations.
9088 (ada-indent-align-comments): New variable
9089 (ada-indent-current): Change the syntax table only in the
9090 protected section, so that we are sure it is restored correctly.
9091 (ada-indent-on-previous-lines): Use ada-use-indent and
9092 ada-with-indent Correctly indent "select ... then"
9093 (ada-indent-region): Slight speedup.
9094 (ada-indent-renames): New variable.
9095 (ada-last-which-function-subprog, ada-last-which-function-line):
9096 New variables
9097 (ada-looking-at-semi-private): Correctly indent the 'private'
9098 keyword when it is the first word in a package declaration.
9099 (ada-loose-case-word): Stop searching if at the end of the buffer.
9100 (ada-loose-case-word, ada-capitalize-word): Recase the whole word
9101 even if point is not initially at the end of the word.
9102 (ada-matching-decl-start-re): Add "when".
9103 (ada-mode): Add support for abbrev-mode, outline-mode and
9104 which-func-mode Override the old find-file.el entry in
9105 ff-special-constructs since it is using the obsolete
9106 ada-spec-suffix variable
9107 (ada-no-auto-case): New function
9108 (ada-scan-paramlist): When parsing the argument type, accept
9109 spaces (as in "X 'Class", generated by Rational Rose).
9110 (ada-other-file-name): No longer loads the other file.
9111 (ada-popup-menu): Save and restore the current buffer and cursor
9112 position before and after displaying the menu.
9113 (ada-search-ignore-complex-boolean): New function.
9114 (ada-uncomment-region): Emacs21 already knows how to delete
9115 comments not starting in the first column.
9116 (ada-use-indent): New variable
9117 (ada-which-function): New function.
9118 (ada-with-indent): New variable
9119 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
9120 can be batch-compiled from the command line.
9121
9122 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
9123 Add to the menu when the file is loaded, not in ada-mode-hook.
9124 Add -toolbar to the default ddd command Switches moved from
9125 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
9126 ada-prj-default-comp-opt
9127 (ada-add-ada-menu): Remove the map and name parameters Add the Ada
9128 Reference Manual to the menu
9129 (ada-check-current): rewritten as a call to ada-compile-current
9130 (ada-compile): Removed.
9131 (ada-compile-application, ada-compile-current, ada-check-current):
9132 Set the compilation-search-path so that compile.el automatically
9133 finds the sources in src_dir. Automatic scrollong of the
9134 compilation buffer. C-uC-cC-c asks for confirmation before
9135 compiling
9136 (ada-compile-current): New parameter, prj-field
9137 (ada-complete-identifier): Load the .ali file before doing
9138 processing
9139 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
9140 conform to gnatmake's behavior.
9141 (ada-find-file-in-dir): New function
9142 (ada-find-references): Set the environment variables for gnatfind
9143 (ada-find-src-file-in-dir): New function.
9144 (ada-first-non-nil): Removed
9145 (ada-gdb-application): Add support for jdb, the java debugger.
9146 (ada-get-ada-file-name): Load the original-file first if not done
9147 yet.
9148 (ada-get-all-references): Handles the new ali syntax (parent types
9149 are found between <>).
9150 (ada-initialize-runtime-library): New function
9151 (ada-mode-hook): Always load a project file when a file is opened,
9152 so that the casing exceptions are correctly read.
9153 (ada-operator-re): Add all missing operators ("abs", "rem", "**").
9154 (ada-parse-prj-file): Use find-file-noselect instead of find-file
9155 to open the project file, since the latter does not work with
9156 speedbar Get default values before loading the prj file, or the
9157 default executable file name is wrong. Use the absolute value of
9158 src_dir to initialize ada-search-directories and
9159 compilation-search-path,... Add the standard runtime library to
9160 the search path for find-file.
9161 (ada-prj-default-debugger): Was missing an opening '{'
9162 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
9163 variables.
9164 (ada-prj-default-gnatmake-opt): New variable
9165 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
9166 buffers, the project file is the default one Save the windows
9167 configuration before displaying the menu.
9168 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
9169 (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
9170 ...) regexp-quote identifiers names to support operators +,
9171 -,... in regexps.
9172 (ada-remote): New function.
9173 (ada-run-application): Erase the output buffer before starting the
9174 run Support remote execution of the application. Use
9175 call-process, or the arguments are incorrectly parsed
9176 (ada-set-default-project-file): Reread the content of the active
9177 project file, not the one from the current buffer When a project
9178 file is set as the default project, all directories are
9179 automatically associated with it.
9180 (ada-set-environment): New function
9181 (ada-treat-cmd-string): New special variable ${current}
9182 (ada-treat-cmd-string): Revised. The substitution is now done for
9183 any ${...} substring
9184 (ada-xref-current): If no body was found, compiles the spec
9185 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the
9186 compiler to get rid of command line length limitations.
9187 (ada-xref-get-project-field): New function
9188 (ada-xref-project-files): New variable
9189 (ada-xref-runtime-library-specs-path)
9190 (ada-xref-runtime-library-ali-path): New variables
9191 (ada-xref-set-default-prj-values): Default run command now does a
9192 cd to the build directory. New field: main_unit Provide a default
9193 file name even if the current buffer has no prj file.
9194
9195 * ada-prj.el:
9196 Rewritten to show a tabbed-dialog.
9197 (ada-prj-add-ada-menu): Remove the map and name parameters.
9198 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
9199 New function
9200 (ada-prj-load-directory, ada-prj-subdirs-of): New functions
9201 (ada-prj-load-from-file): New function
9202 (ada-prj-save): Always save fields that depend on the current buffer
9203 (ada-prj-show-value): New function
5044b74a 9204
7972fcfc
GM
9205 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
9206 Ada mode. This will allow us to display the Ada menu in any buffer
9207 we want (for project items).
9208 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
9209 number of spaces in the header.
5044b74a 9210
8730a8da
DL
92112000-07-24 Dave Love <fx@gnu.org>
9212
9213 * ediff-init.el (ediff-region-help-echo): Bind face-help.
9214
db3ca487
NF
92152000-07-23 Noah Friedman <friedman@splode.com>
9216
ad953485
NF
9217 * type-break.el (type-break): perform autosave.
9218 Suggested by Stephen Gildea <gildea@intouchsys.com>.
9219 (type-break-do-query): Cancel query schedule while performing
9220 actual query, to avoid possibility of a second query being made
9221 while first one is already in progress.
9222 (type-break-time-stamp-format): New variable.
9223 (type-break-time-stamp): New function.
9224 (type-break-time-warning): Use it.
9225 (type-break-keystroke-warning): Use it.
9226 (type-break-noninteractive-query): Use it.
9227
03a9c6d0
NF
9228 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
9229 cookie.
9230 Use add-minor-mode to set minor-mode-alist, if available.
9231 (eldoc-echo-area-use-multiline-p): New user option.
9232 (eldoc-echo-area-multiline-supported-p): New variable.
9233 (eldoc-docstring-format-sym-doc): Use them.
9234 (eldoc-mode): If not using idle timers, append to local post and
9235 pre command hooks. Suggested by David Byers <davby@ida.liu.se>.
9236 (eldoc-display-message-no-interference-p): Don't interfere with
9237 edebug.
9238 Add autoload cookie for eldoc-mode minor-mode-alist initialization.
9239 (eldoc-function-arglist): New function.
9240 (eldoc-function-argstring): Use it.
9241
db3ca487
NF
9242 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
9243 auto save directory exists before calling directory-files.
9244
f7ad1899
DL
92452000-07-23 Dave Love <fx@gnu.org>
9246
9247 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
9248 ^o, ^u.
9249
43e764c9
DL
92502000-07-21 Dave Love <fx@gnu.org>
9251
475de6f4
DL
9252 * ediff-init.el (ediff-region-help-echo): Modify to use overlay
9253 now passed to the function. It now works properly.
9254
43e764c9
DL
9255 * smerge-mode.el (smerge-mode-menu): Fill it out.
9256
e8bea4c0
GM
92572000-07-20 Gerd Moellmann <gerd@gnu.org>
9258
9259 * info-look.el (info-lookup): If *info* is shown in another frame
9260 on the same display, select that frame, instead of switching to
9261 the Info buffer in another window of the selected frame.
9262
9263 * simple.el (universal-argument-map): Bind numeric keypad keys
9264 kp-0 to kp-9 and kp-subtract.
9265 (digit-argument): Handle these keys.
9266
bc75b4fd
DL
92672000-07-20 Dave Love <fx@gnu.org>
9268
9269 * net/goto-addr.el (goto-address-fontify): Don't bother with
9270 buffer-modified and read-only stuff -- irrelevant with overlays.
9271 Put an extra property on the overlays and use it to clean up in
9272 case goto-address is re-run.
9273
8b7bc628
RS
92742000-07-19 Richard M. Stallman <rms@gnu.org>
9275
18e21ce8
RS
9276 * timer.el (run-with-idle-timer): Doc fix.
9277
db3ca487 9278 * mail/mail-utils.el (mail-strip-quoted-names):
8b7bc628
RS
9279 Handle case where <...> appears inside "...".
9280 Use replace-match to edit the string more simply.
9281 (rmail-dont-reply-to): Cope with an unmatched ".
9282
50575ec2
DL
92832000-07-19 Dave Love <fx@gnu.org>
9284
9285 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
9286 implementation.
9287
9288 * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
9289 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
9290 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
9291
4279296d
GM
92922000-07-19 Gerd Moellmann <gerd@gnu.org>
9293
47db06aa
GM
9294 * textmodes/refer.el: Correct maintainer's email address.
9295
9296 * progmodes/hideif.el: Correct author's email address.
9297 Fix typo in comment.
9298
9299 * xml.el: New file.
9300
4279296d
GM
9301 * mail/mailheader.el: Correct author's mail address.
9302
9303 * gnus/parse-time.el: Correct author's mail address.
9304
47db06aa 93052000-07-19 Colin Walters <walters@cis.ohio-state.edu>
db3ca487
NF
9306
9307 * comint.el (comint-highlight-input, comint-highlight-face):
47db06aa
GM
9308 New user options.
9309 (comint-input-ring-file-name): Change custom type.
9310 (comint-mode-map): Bind mouse-2.
9311 (comint-insert-clicked-input): New function.
9312 (comint-send-input): Handle input highlighting.
9313
21ad0f7b
SM
93142000-07-18 Stefan Monnier <monnier@cs.yale.edu>
9315
9316 * mouse.el (popup-menu): New function.
9317 (mouse-major-mode-menu): Use it.
9318
3b33a005
DL
93192000-07-18 Dave Love <fx@gnu.org>
9320
9321 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
9322 improvements.
9323
dc1cac59
GM
93242000-07-18 Gerd Moellmann <gerd@gnu.org>
9325
21ad0f7b 9326 * faces.el (face-font-selection-order)
dc1cac59 9327 (face-font-family-alternatives): Add custom type.
db3ca487 9328
f8276b77
DL
93292000-07-18 Dave Love <fx@gnu.org>
9330
9331 * cus-edit.el (custom-variable-reset-saved)
9332 (custom-variable-reset-standard): Remove unused bindings.
9333
9334 * rect.el (open-rectangle-line): Remove unused let.
9335
9336 * hl-line.el (hl-line-highlight): Check hl-line-mode.
9337
3d6cd763
GM
93382000-07-18 Gerd Moellmann <gerd@gnu.org>
9339
9340 * cdl.el: Fix `Maintainer' keyword.
9341
9342 * play/pong.el: Add author's email address.
9343
34342a07
SS
93442000-07-17 Sam Steingold <sds@gnu.org>
9345
9346 * files.el (insert-directory): Call `split-string' instead of
9347 re-implementing it.
9348
088831a6
GM
93492000-07-18 Gerd Moellmann <gerd@gnu.org>
9350
9351 * mail/vms-pmail.el: Change maintainer to FSF.
9352
9353 * net/goto-addr.el: Change maintainer to FSF.
9354
088831a6 9355 * info.el (Info-title-face-alist): Removed.
db3ca487 9356
c152047f
GM
93572000-07-18 David Ponce <david@dponce.com>
9358
9359 * recentf.el (recentf-open-files): New command that works like
9360 `recentf-open-more-files', but shows the whole list of files (not just
9361 those omitted from the menu). Useful if you don't use a menu-bar!
9362 (recentf-open-more-files) Modified to use `recentf-open-files'.
9363
9364 (recentf-open-files, recentf-open-more-files)
9365 (recentf-edit-list): Dialogs use `recentf-dialog-mode'
e04d21aa 9366
c152047f
GM
9367 (recentf-dialog-mode): New mode for dialogs. You can now just type
9368 "q" to cancel the dialogs.
9369
93702000-07-18 David Ponce <david@dponce.com>
9371
9372 * recentf.el: This is a major update of recentf.el. It adds new
9373 features to better organize the recentf menu and "More..." buffer.
9374
9375 Using new provided menu filtering functions you can now organize the
9376 recent files list:
9377
9378 - by major modes
9379 - by directories
9380 - by user defined rules
9381
9382 Finally, with the new `recentf-filter-changer' customizable filter you
9383 can define a ring of filters and dynamically (via the menu) cycle on
9384 each menu organization in the ring (a la msb).
9385
68be2869
EZ
93862000-07-18 Eli Zaretskii <eliz@is.elta.co.il>
9387
9388 * eshell/eshell.el (eshell): Replace links to eshell.info with
9389 links to eshell, to avoid problems on systems where the manual is
9390 installed as `eshell'.
9391 * eshell/esh-cmd.el (eshell-cmd): Ditto.
9392 * eshell/em-smart.el (eshell-smart): Ditto.
9393 * eshell/em-banner.el (eshell-banner): Ditto.
21ad0f7b 9394 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
68be2869
EZ
9395
9396 * eshell/em-unix.el (eshell-shuffle-files): Don't disable
9397 same-file check in the MS-DOS version (it does support inodes).
9398
9399 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
9400
21ad0f7b
SM
9401 * eshell/eshell.el (eshell-directory-name):
9402 Run default directory name through convert-standard-filename.
68be2869 9403
269b4dcb
KH
94042000-07-18 Kenichi Handa <handa@etl.go.jp>
9405
21ad0f7b
SM
9406 * international/mule-cmds.el (select-safe-coding-system):
9407 Fix typo in the comment.
240a16cf 9408
21ad0f7b
SM
9409 * language/european.el (compound-text):
9410 Force katakana-jisx0201 to be designated to G1.
aa96c820 9411
21ad0f7b
SM
9412 * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
9413 Don't translate some national variant characters of latin-jisx0201.
aa96c820 9414 (x-ctext): Force katakana-jisx0201 to be designated to G1.
a99c9d06 9415
269b4dcb
KH
9416 * international/kkc.el (kkc-after-update-conversion-functions):
9417 New variable.
9418 (kkc-update-conversion): Run functions in it at the tail.
9419
68be2869 94202000-07-16 John Wiegley <johnw@gnu.org>
6feeb380 9421
21ad0f7b
SM
9422 * lisp/align.el (align-newline-and-indent):
9423 Adding new function. for auto-aligning blocks of code on RET.
6feeb380
JW
9424 (align-region): Fixed badly formatted minibuffer message.
9425
7a3fd467
KH
94262000-07-17 Kenichi Handa <handa@etl.go.jp>
9427
21ad0f7b 9428 * international/kkc.el (kkc-show-conversion-list-count): Customize it.
7a3fd467
KH
9429 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show
9430 the conversion list at first if appropriate.
9431 (kkc-next): Don't update kkc-next-count here.
9432 (kkc-prev): Don't update kkc-prev-count here.
9433 (kkc-show-conversion-list-update): Fix setting up of conversion
9434 list message.
9435
a45423d8
SM
94362000-07-16 Stefan Monnier <monnier@cs.yale.edu>
9437
088831a6 9438 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
a45423d8 9439
91a38db1
DL
94402000-07-16 Dave Love <fx@gnu.org>
9441
9442 * cus-edit.el (custom-buffer-create-internal): Use a help-echo
9443 function to be more specific.
9444
9445 * wid-edit.el (widget-specify-field, widget-specify-button): Allow
9446 non-string help-echo.
9447 (widget-types-convert-widget): Defsubst it.
9448 (widget-echo-help): Try to cope with a help-echo function of two
9449 possible sorts.
9450
3fddcdc3
JR
94512000-07-15 Jason Rumney <jasonr@gnu.org>
9452
9453 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
9454 Declare as obsolete.
9455
9456 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
9457
bd23a692
GM
94582000-07-14 Gerd Moellmann <gerd@gnu.org>
9459
9460 * hilit-chg.el: Fix typo.
9461
d4af987a
DL
94622000-07-14 Dave Love <fx@gnu.org>
9463
9464 * info.el (Info-mode-menu): Fix use of :help, :enable.
9465
3a4f3f86
SM
94662000-07-14 Stefan Monnier <monnier@cs.yale.edu>
9467
9468 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
9469
cf6936a4
DL
94702000-07-13 Dave Love <fx@gnu.org>
9471
4d6d04b5
DL
9472 * emacs-lisp/easymenu.el: Doc fixes.
9473 (easy-menu-remove): Defalias to ignore.
9474
cf6936a4
DL
9475 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
9476 Call throw correctly.
9477
56437999
GM
94782000-07-13 Gerd Moellmann <gerd@gnu.org>
9479
9480 * faces.el (frame-background-mode): Doc fix.
9481
9482 * simple.el (eval-expression-print-length): Change custom type to
9483 allow entering nil as value.
9484
d04a3972
DL
94852000-07-13 Dave Love <fx@gnu.org>
9486
3a4f3f86
SM
9487 * progmodes/fortran.el (fortran-imenu-generic-expression):
9488 Change definition layout.
a8189dfe
DL
9489 (fortran-mode-menu): Reinstate customize entries.
9490
d04a3972
DL
9491 * cus-edit.el (custom-group-menu-create, customize-menu-create):
9492 Use :filter, per old XEmacs code.
9493
4bf4fb05
GM
94942000-07-12 Gerd Moellmann <gerd@gnu.org>
9495
9496 * term.el (term-send-raw-meta): Strip modifiers from the keyboard
9497 event when deciding what to send to the terminal.
9498
37328bcd
DL
94992000-07-12 Dave Love <fx@gnu.org>
9500
9501 * cus-start.el: Add optional version as 4th element of specs and
9502 use it for several things new in v21. Remove load-path. Fix type
9503 of line-number-display-limit.
9504
89492072
DL
95052000-07-11 Dave Love <fx@gnu.org>
9506
3a4f3f86
SM
9507 * progmodes/fortran.el: Don't require easymenu.
9508 Use repeat counts in various regexps.
315aa1de
DL
9509 (fortran-mode-syntax-table): Defvar directly.
9510 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
3a4f3f86
SM
9511 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
9512 Use defvar, not defconst.
9513 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'.
315aa1de
DL
9514 (fortran-mode): Set fortran-comment-line-start-skip,
9515 fortran-comment-line-start-skip, dabbrev-case-fold-search.
9516 (fortran-comment-indent): Use defsubst.
3a4f3f86
SM
9517 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
9518 Use fortran-comment-indent, not fortran-comment-indent-function.
315aa1de
DL
9519 (fortran-comment-region, fortran-electric-line-number): Simplify.
9520 (fortran-auto-fill): New function.
9521 (fortran-do-auto-fill): Deleted.
3a4f3f86
SM
9522 (fortran-find-comment-start-skip):
9523 Check for non-null comment-start-skip.
9524 (fortran-auto-fill-mode, fortran-fill-statement):
9525 Use fortran-auto-fill.
315aa1de 9526 (fortran-fill): Use fortran-auto-fill. Check for null
3a4f3f86 9527 comment-start-skip. Simplify final clause and use end-of-line finally.
315aa1de 9528
89492072
DL
9529 * widget.el (widget-plist-member): New alias.
9530
d55ead18
EZ
95312000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
9532
9533 * eshell/esh-module.el (toplevel): Reference
9534 byte-compile-current-file only if it is bound.
9535
e82a2a05
GM
95362000-07-10 Gerd Moellmann <gerd@gnu.org>
9537
9538 * dired.el: Don't require `dired-aux'.
9539
1fc7fb2b
MB
95402000-07-10 Miles Bader <miles@lsi.nec.co.jp>
9541
9542 * dired-aux.el (dired-show-file-type): New function.
9543 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
9544 (dired-show-file-type): Add autoload.
9545
ab49ce15
KH
95462000-07-10 Kenichi Handa <handa@etl.go.jp>
9547
9548 * international/mule-diag.el (describe-font): Adjusted for the
3a4f3f86 9549 change of fontset-info.
ab49ce15
KH
9550 (print-fontset): Likewise.
9551
f45aab65
SM
95522000-07-09 Stefan Monnier <monnier@cs.yale.edu>
9553
9554 * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
9555
2f72fd2f
GM
95562000-07-07 Gerd Moellmann <gerd@gnu.org>
9557
e82a2a05 9558 * bindings.el: Bind `[delete]' to delete-char.
965522f5 9559
2f72fd2f
GM
9560 * dired.el (dired-find-alternate-file): New function.
9561 (dired-mode-map): Bind `a' to dired-find-alternate-file.
9562 (toplevel): Require dired-aux when compiling.
9563 (dired-buffers): Move defvar within file to avoid compiler warning.
9564
9565 * info.el (Info-last-search): Variable removed.
9566 (Info-search-history): New variable.
9567 (Info-search): New Info-search-history.
9568
9569 * battery.el, info-look.el: Change author's mail address.
9570
965522f5 95712000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
34342a07 9572
965522f5
GM
9573 * mail/rmail.el (rmail-clear-headers): Don't throw an error
9574 if rmail-ignored-headers is nil.
9575 (rmail-retry-failure): Bind rmail-ignored-headers and
9576 rmail-displayed-headers to nil.
9577
dd8888a1
GM
95782000-07-06 Gerd Moellmann <gerd@gnu.org>
9579
e5c81191
GM
9580 * lpr.el (lpr-page-header-switches): Add `-h' switch.
9581 (print-region-1): Don't hard code `-h' here.
9582
dd8888a1
GM
9583 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
9584
e5c81191
GM
95852000-07-01 Francesco Potorti` <pot@gnu.org>
9586
9587 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
9588 exim can use "your message" instead of "the message".
34342a07 9589
f45aab65
SM
95902000-07-06 Stefan Monnier <monnier@cs.yale.edu>
9591
9592 * facemenu.el: Docstrings fixes.
9593 (facemenu-get-face): Don't use internal-find-face.
9594 (facemenu-iterate): Rename arg to match the docstring.
9595
9596 * newcomment.el (uncomment-region): Be more careful when skipping
9597 backwards over `=' not to bump into BOBP.
9598
d396e521 95992000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
34342a07 9600
dd8888a1
GM
9601 * ediff-diff.el (ediff-wordify): Use syntax table.
9602 * ediff-init.el (ediff-has-face-support-p): Use
d396e521 9603 ediff-color-display-p.
dd8888a1 9604 (ediff-color-display-p): Use display-color-p, changed to defun
d396e521
MK
9605 from defsubst.
9606 Got rid of special cases for NeXT and OS/2.
dd8888a1 9607 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
d396e521 9608 face.
34342a07 9609
5e2dfaa4
SM
96102000-07-05 Stefan Monnier <monnier@cs.yale.edu>
9611
9612 * emacs-lisp/lucid.el: Require CL.
9613 (copy-tree, remprop): Remove, it's provided by CL.
9614 (map-keymap): Define in terms of cl-map-keymap.
9615 (extent-property, set-extent-end-glyph): New functions.
9616
9617 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
9618
d5c5cddd
GM
96192000-07-05 Gerd Moellmann <gerd@gnu.org>
9620
485266d0
GM
9621 * Makefile.in (DONTCOMPILE): Add comment that the name may
9622 not be changed without changing the make-dist script.
9623
5e2dfaa4 9624 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
d5c5cddd 9625 (cl-mapc): Use mapc instead of cl-old-mapc.
34342a07 9626
e2c46326
AI
96272000-07-05 Andrew Innes <andrewi@gnu.org>
9628
9629 * makefile.nt: Add support for `bootstrap' and related targets.
9630
a027a91b
SM
96312000-07-05 Stefan Monnier <monnier@cs.yale.edu>
9632
9633 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
9634 (easy-menu-do-define): Use `menu-item' format.
9635 Handle case where easy-menu-create-menu returns a symbol.
9636 Manually call the potential top-level filter in the function binding.
9637 (easy-menu-filter-return): New arg NAME.
9638 Convert to a keymap if MENU is an XEmacs menu.
9639 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item.
9640 (easy-menu-converted-items-table, easy-menu-convert-item):
9641 New var and fun to memoize easy-menu-convert-item-1.
9642 (easy-menu-do-add-item): Use it.
9643 (easy-menu-create-menu): Use easy-menu-convert-item.
9644 Wrap easy-menu-filter-return around any :filter specification.
9645 Don't convert the menu if a filter was specified.
9646 Tell easy-menu-make-symbol not to check for MENU being an expression.
9647 (easy-menu-make-symbol): New arg NOEXP.
9648
5e03eb84
GM
96492000-07-05 Gerd Moellmann <gerd@gnu.org>
9650
9651 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
9652 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
9653 (eval-defun): If called with prefix arg, instrument code for
9654 Edebug.
9655
9656 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
9657 similar to that of eval-defun.
9658
fca68a95
DL
96592000-07-04 Dave Love <fx@gnu.org>
9660
7ccbba4c
DL
9661 * hl-line.el (hl-line-overlay): Make it permanent-local.
9662
fca68a95
DL
9663 * calendar/todo-mode.el: Replaced with a working version, based on
9664 1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
9665
96662000-07-03 Miles Bader <miles@lsi.nec.co.jp>
78e7e8a0
MB
9667
9668 * paths.el (prune-directory-list): New function.
9669 (Info-default-directory-list): Rewritten to more methodically
9670 enumerate a big list of possible info directories (based on the
9671 list used by the standalone info reader).
fca68a95 9672
78e7e8a0 9673 * info.el (info-initialize): Use prune-directory-list to remove
3a4f3f86 9674 non-existent directories from Info-directory-list.
78e7e8a0 9675
78e7e8a0
MB
9676 * paths.el (Info-default-directory-list): Try a list of possible
9677 info-directories instead of a single one. Add the possible
9678 info directory "/usr/share/info".
9679
9680 * woman.el (woman-man.conf-path): Explicitly include the debian
9681 man-db config file "/etc/manpath.config".
9682 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
9683 are present in `manpath.config'.
9684 (woman-manpath): Include "/usr/share/man".
9685
67c9a1d2
GM
96862000-07-03 Gerd Moellmann <gerd@gnu.org>
9687
6753393b
GM
9688 * frame.el (blink-cursor-mode): Don't hide cursor initially.
9689
9690 * startup.el (command-line): Initialize blink-cursor based
9691 on window-system.
9692
e4f98ad3
GM
9693 * frame.el (blink-cursor): Default to nil if not running under
9694 a window-system.
9695
2f516940
GM
9696 * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
9697 (face-x-resources): Remove duplicate entry for :font.
9698
67c9a1d2
GM
9699 * textmodes/refer.el (refer-find-entry-internal): Use some-window
9700 instead of cycling through windows with next-window.
9701
9702 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
9703 of cycling through windows with next-window.
9704
9705 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
9706 of cycling through windows with next-window.
9707
9708 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
9709 (edebug-get-displayed-buffer-points): Use walk-windows/some-window
9710 instead of cycling through windows with next-window.
9711
9712 * calendar/appt.el (appt-select-lowest-window): Use walk-windows
9713 instead of cycling through windows with next-window.
9714
9715 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
9716 of cycling through windows with next-window.
9717
9718 * terminal.el (te-process-output): Use walk-windows instead of
9719 cycling through windows with next-window.
9720
9721 * server.el (server-switch-buffer): Use some-window instead of
9722 cycling through windows with next-window.
9723
9724 * window.el (some-window): New function.
9725 (walk-windows): Remove reference to walk-windows-start.
831a6cb0 9726
3a4f3f86 9727 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
831a6cb0 9728
8b7bc628 97292000-07-03 Richard Stallman <rms@gnu.org>
67c9a1d2
GM
9730
9731 * window.el (walk-windows): Guarantee termination by keeping a list
9732 of all the windows already handled.
9733
d0d57043
EZ
97342000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
9735
9736 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
9737 window-system.
9738
9739 * man.el (Man-notify-when-ready): Don't use window-system. If
9740 Man-notify-method is newframe, and the display is not
9741 multi-frame, select the frame created for the man page.
9742 (Man-init-defvars): Doc fix.
9743
d5483ab1
GM
97442000-06-28 Gerd Moellmann <gerd@gnu.org>
9745
af5c25e1
GM
9746 * faces.el (region): Change background color for light background.
9747
9748 * ediff-wind.el (ediff-setup-control-frame): Remove :box
9749 attribute from mode-line face of Ediff control frame.
9750
d5483ab1
GM
9751 * replace.el (query-replace-map): Bind `e' like `E'.
9752
9d47450f
EZ
97532000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
9754
3a4f3f86
SM
9755 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
9756 Change name to "Select All".
496b7491 9757
9d47450f
EZ
9758 * dos-fns.el (convert-standard-filename): Fix last change.
9759
0b431deb
GM
97602000-06-27 Gerd Moellmann <gerd@gnu.org>
9761
4fa9f636
GM
9762 * help.el (describe-variable): Don't insert a second `'s' in front
9763 of the string `value is shown below'. Since the syntax-table is
9764 set to emacs-lisp-mode-syntax-table, forward-sexp skips over
9765 an existing `'s', so that this won't be deleted.
9766
0b431deb
GM
9767 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
9768 * pcmpl-unix.el: New files.
9769
32cad0aa
SM
97702000-06-26 Stefan Monnier <monnier@cs.yale.edu>
9771
9772 * wid-edit.el (widget-member): Use the new plist-member.
9773
2c69ced2
GM
97742000-06-26 Gerd Moellmann <gerd@gnu.org>
9775
44c0f771
GM
9776 * replace.el (perform-replace): Undo change of 2000-04-04.
9777 Instead, move backward 1 character at the end of the loop when
9778 necessary.
34342a07 9779
1d36487c
GM
9780 * faces.el (fringe): Change face for different backgrounds.
9781
9782 * eshell/esh-module.el (toplevel): Load defgroup's differently;
9783 patch from John.
9784
2c69ced2
GM
9785 * eshell/*.el: Change spelling of the Free Software Foundation.
9786
9787 * eshell/esh-toggle.el: Removed.
9788
9789 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
9790
9791 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
9792 interactively.
9793
97942000-06-26 Alex Schroeder <alex@gnu.org>
9795
9796 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
9797 `define-key'; instead of checking `(emacs-version)' check for
9798 `set-keymap-parent' and `set-keymap-name' directly. Add entries
9799 for `;' and `o' which might be electric.
9800
9801 (sql-electric-stuff): New user option.
9802 (sql-magic-go): New function which uses `sql-electric-stuff'.
9803 (sql-magic-semicolon): New function which uses
9804 `sql-electric-stuff'.
9805
9806 (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
9807 is not fboundp.
9808
9809 (sql-oracle-options): New variable.
9810 (sql-oracle): Use it.
9811
9812 (sql-imenu-generic-expression): Doc change.
9813 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
9814 is used.
9815
9816 (sql-informix): Added command line parameter "-" to force
9817 sql-informix-program to use stdout.
9818
db1306d8
EZ
98192000-06-25 Eli Zaretskii <eliz@is.elta.co.il>
9820
3a4f3f86 9821 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
db1306d8
EZ
9822 (cp864-decode-table): Doc fix.
9823 (cp720-decode-table): New variable, supports the Arabic OEM
9824 codepage used by Windows.
9825 (cp737-decode-table): New, Greek OEM codepage used by Windows.
9826
c69e5fcd
DL
98272000-06-23 Dave Love <fx@gnu.org>
9828
9829 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
9830 (font-lock-fontify-anchored-keywords): Use
9831 line-beginning-position.
9832 (global-font-lock-mode): Use mapc.
9833
30ad8f23
SM
98342000-06-23 Stefan Monnier <monnier@cs.yale.edu>
9835
9836 * eshell/esh-module.el: Require CL when compiling.
9837
26b4dc84
GM
98382000-06-23 Gerd Moellmann <gerd@gnu.org>
9839
78c56e70
GM
9840 * comint.el (comint-substitute-in-file-name): Call replace-match
9841 with second and third arg t.
9842
34342a07 9843 * cus-edit.el (custom-button-face, custom-button-pressed-face):
f6478c66
GM
9844 Specify foreground color.
9845
9846 * faces.el (tool-bar, mode-line, header-line): Specify foreground
9847 color.
9848
affbf647
GM
9849 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
9850
9851 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
9852 cddr instead of cdddr.
9853
25fffb31
GM
9854 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
9855 instead of copy-list.
9856
9857 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
9858 of copy-list.
9859
26b4dc84
GM
9860 * subdirs.el: Add eshell subdirectory.
9861
9862 * eshell: New subdirectory containing the Eshell package.
9863
9864 * pcomplete.el: New file.
9865
78c56e70
GM
98662000-06-23 Paul Eggert <eggert@twinsun.com>
9867
ea055732
GM
9868 * mail/mailpost.el (post-mail-send-it): Make sure file has
9869 proper permissions from birth.
9870
9871 * files.el (basic-save-buffer-2): When temporarily setting
9872 file modes, set them to current modes plus 0200, not to 0777.
9873
78c56e70
GM
9874 * emerge.el (emerge-make-temp-file): Make sure file has proper
9875 permissions from birth.
9876
a3a7ff33
EZ
98772000-06-22 Eli Zaretskii <eliz@is.elta.co.il>
9878
9879 * files.el (make-backup-file-name-1): On DOS/Windows, run the
9880 backup file name through convert-standard-filename.
9881
9882 * dos-fns.el (convert-standard-filename): Convert leading
9883 directories as well. When long file names are supported, convert
9884 characters that are invalid in Windows file names.
9885
1fd9b7fe
GM
98862000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9887
9888 * ps-print.el: Fix bug: if ^L is the very first buffer character,
9889 ps-print crashes. New feature: page selection for printing. Create
9890 raw-text-unix coding system for XEmacs. Doc fix.
9891 (ps-print-version): New version number (5.2.3).
9892 (ps-plot-region): Bug fix.
9893 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
9894 (ps-header-sheet, ps-generate, ps-end-job): Code fix.
9895 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
9896 funs.
9897 (ps-selected-pages, ps-last-selected-pages, ps-first-page)
9898 (ps-last-page): New vars.
9899
16ed8416
GM
99002000-06-21 Gerd Moellmann <gerd@gnu.org>
9901
9902 * progmodes/sh-script.el (sh-while-getopts): Fix handling of
9903 empty option string.
9904
4fbee715
EZ
99052000-06-21 Eli Zaretskii <eliz@is.elta.co.il>
9906
9907 * man.el (man): Doc fix.
9908
eaecfc94
KH
99092000-06-21 Kenichi Handa <handa@etl.go.jp>
9910
9911 * international/mule-cmds.el (set-language-info-alist): Docstring
9912 fixed.
9913
4a27bdfb
GM
99142000-06-20 Gerd Moellmann <gerd@gnu.org>
9915
9916 * version.el (emacs-version): Use ISO date format.
9917
9918 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
9919 instead of `M-backspace'.
9920
9921 * simple.el (turn-off-auto-fill): New function.
9922
8972fe79
SM
99232000-06-20 Stefan Monnier <monnier@cs.yale.edu>
9924
9925 * jit-lock.el (with-buffer-prepared-for-jit-lock):
9926 Renamed from with-buffer-prepared-for-font-lock and use
9927 inhibit-modification-hooks rather than setting *-change-functions.
9928 Update all functions to use the new name.
9929 (jit-lock-first-unfontify-pos): New semantics (and doc).
9930 (jit-lock-mode): Make non-interactive.
9931 Don't automatically turn on font-lock.
9932 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
9933 Always use jit-lock-after-change.
9934 Remove and restore font-lock-after-change-function.
9935 (turn-on-jit-lock, jit-lock-after-fontify-buffer)
9936 (jit-lock-after-unfontify-buffer): Remove.
9937 (jit-lock-stealth-fontify):
9938 Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
9939 (jit-lock-after-change): Set the `fontified' text-prop to nil.
9940
5d80cc9c
SS
99412000-06-20 Sam Steingold <sds@gnu.org>
9942
9943 * emacs-lisp/cl-indent.el (toplevel): Indent
9944 `print-unreadable-object' properly. Untabify.
9945
f54e4d13
CD
99462000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
9947
9948 * textmodes/reftex.el (reftex-find-citation-regexp-format):
9949 Support for bibentry.
9950 (reftex-compile-variables): Fixed problem with end of section-re.
9951
9952 * texmodes/reftex-dcr.el (reftex-view-crossref,
8972fe79
SM
9953 reftex-view-crossref-from-bibtex):
9954 Deal with changed `reftex-find-citation-regexp-format'.
f54e4d13
CD
9955 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
9956 Replaced `remprop' with `put'.
8972fe79
SM
9957 (reftex-view-crossref, reftex-view-crossref-when-idle):
9958 Support for bibentry.
f54e4d13 9959
8972fe79
SM
9960 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
9961 New entry for bibentry package.
f54e4d13 9962
8972fe79
SM
9963 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
9964 Regexp also matches "\nobibliography".
f54e4d13 9965
8972fe79
SM
9966 * textmodes/reftex-global.el (reftex-renumber-simple-labels):
9967 Call `reftex-ensure-write-access' before doing anything.
f54e4d13
CD
9968 (reftex-ensure-write-access): New function.
9969
f54e4d13
CD
99702000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
9971
9972 * progmodes/idlwave.el: File re-installed (update to version 4.2)
9973
9974 * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
9975
9976 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
9977
9978 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
9979
9980
560c43f4
DL
99812000-06-20 Dave Love <fx@gnu.org>
9982
9983 * faces.el (frame-background-mode): Use set-default, not set, in
9984 setter.
9985 (frame-update-faces, frame-update-face-colors): Define with
9986 defalias.
9987
9988 * enriched.el (enriched-decode-foreground)
9989 (enriched-decode-background): Don't use internal-find-face.
9990
9991 * apropos.el: Doc fixes.
9992
9993 * cus-edit.el (customize-changed-options): Check arg.
9994 (customize-version-lessp): Don't require decimal point.
9995
9996 * custom.el (defcustom, defgroup): Doc fix.
9997
9998 * newcomment.el (comment) <defgroup>: Add :version.
9999 (comment-multi-line): Doc fix.
10000
10001 * emulation/mlsupport.el (define-hooked-local-abbrev,
10002 define-hooked-global-abbrev): Fix, using define-abbrev.
10003
cdf0357b
GM
100042000-06-19 Gerd Moellmann <gerd@gnu.org>
10005
10006 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
10007 the whole buffer.
10008
10013d74
DL
100092000-06-19 Dave Love <fx@gnu.org>
10010
10011 * menu-bar.el (menu-bar-options-save): New function.
10012 (menu-bar-options-menu): Use it.
10013 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
10014 Simplify.
10015
6922f208
AS
100162000-06-19 Andreas Schwab <schwab@suse.de>
10017
10018 * progmodes/etags.el (tags-query-replace): Put new parameters
10019 START and END at the end, for backward compatibility.
10020
10d7bf84
KH
100212000-06-19 Kenichi Handa <handa@etl.go.jp>
10022
10023 * international/codepage.el:
10024 (cp-coding-system-for-codepage-1): Delete special codes for
10025 generating xxx-dos coding system because now a CCL based coding
10026 system can handle EOL conversion by default.
10027
10028 * international/mule.el (make-coding-system): Generate subsidiary
10029 coding systems for EOL handling variants even for a CCL based
10030 coding system.
10031
8f3c9a3d
KH
100322000-06-19 Kenichi Handa <handa@etl.go.jp>
10033
10034 * international/isearch-x.el (isearch-minibuffer-input-method)
10035 (isearch-minibuffer-input-method-function): These variables
10036 deleted.
10037 (isearch-with-input-method): Don't use the above variables.
10038 (isearch-process-search-multibyte-characters): Likewise. Call
10039 read-string with the arg INHERIT-INPUT-METHOD t.
10040
c2acf685
SM
100412000-06-17 Stefan Monnier <monnier@cs.yale.edu>
10042
13f0d185
SM
10043 * font-lock.el (font-lock-after-fontify-buffer)
10044 (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
10045
10046 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
10047 Use consistent make-local-variable style for font-lock-fontified.
10048 (jit-lock-fontify-buffer):
10049 Don't bother checking for font-lock-mode and jit-lock-mode.
10050
c2acf685
SM
10051 * time.el: Remove trailing ^M that prevent CVS-merging.
10052
a9021acd
GM
100532000-06-16 Gerd Moellmann <gerd@gnu.org>
10054
10055 * Makefile.in (distclean): New target.
5d80cc9c 10056
0df68e9f
SM
100572000-06-16 Stefan Monnier <monnier@cs.yale.edu>
10058
10059 * Makefile.in (srcdir): Define for update-subdirs.
10060
6344985d
GM
100612000-06-16 Gerd Moellmann <gerd@gnu.org>
10062
10063 * find-lisp.el: New file.
10064
63239267
AI
100652000-06-16 Andrew Innes <andrewi@gnu.org>
10066
10067 * time.el (display-time-mail-function): New variable, to allow
10068 external packages to indicate when new mail is available.
10069 (display-time-update): Use it.
10070
1699f991
KH
100712000-06-16 Kenichi Handa <handa@etl.go.jp>
10072
a3b37893
KH
10073 * international/mule.el (mule-version): Change version name to
10074 SAKAKI. AOI has already been used by Meadow.
10075
1699f991
KH
10076 * international/quail.el (quail-show-guidance-buf): To find the
10077 bottom window (but minibuffer), pay attention to the height of
10078 minibuffer.
10079
228b083e
EZ
100802000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
10081
7d5c8691
EZ
10082 * arc-mode.el (archive-mode-map): Use the new menu-item format for
10083 menu-bar menus. Add help strings. Don't remove the Edit menu
10084 from the menu bar, as the menu bar has enough space now.
10085
261f3289
EZ
10086 * Makefile.in (SHELL): Make sure /bin/sh is used.
10087
228b083e
EZ
10088 * woman.el (woman-man-buffer): Fix bold and underlined CJK
10089 characters, which use series of two ^H characters instead of one.
10090
e27e8d71
GM
100912000-06-15 Gerd Moellmann <gerd@gnu.org>
10092
5d80cc9c 10093 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
451ec4e3 10094 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
5d80cc9c 10095 functions.
451ec4e3
GM
10096 (Info-find-node-2): Try a case-sensitive search first, then
10097 do a case-insensitive search.
10098
10099 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
10100 tutorials.
10101
b675095c
GM
10102 * complete.el (PC-env-vars-alist): New variable.
10103 (PC-complete-as-file-name): New function.
10104 (partial-completion-mode): Initialize PC-env-vars-alist from
10105 process-environment.
10106 (PC-do-completion): Handle completion of env vars.
10107
10108 * info.el (Info-set-mode-line): Show file name in mode line,
10109 use `*Info*' instead of `Info:'.
10110
e27e8d71
GM
10111 * startup.el (command-line-1): Change copyright messages to year
10112 2000.
10113
28223a7e
DL
101142000-06-15 Dave Love <fx@gnu.org>
10115
10116 * net/goto-addr.el (goto-address-fontify): Use keymap property,
10117 not local-map.
10118
32684631
KH
101192000-06-15 Kenichi Handa <handa@etl.go.jp>
10120
10121 * international/mule.el (set-buffer-file-coding-system): Almost
10122 rewritten to handle `undecided' as no-op.
10123
9f817ea4
GM
101242000-06-14 Gerd Moellmann <gerd@gnu.org>
10125
e27e8d71 10126 * Makefile.in: New file.
dce6b995
GM
10127
10128 * Makefile: Removed.
10129
9f817ea4
GM
10130 * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
10131 (goto-address-highlight-keymap): Bind C-c RET.
10132
2de33f94
KH
101332000-06-14 Kenichi Handa <handa@etl.go.jp>
10134
bbf1e8a5
KH
10135 * mail/sendmail.el (sendmail-send-it): The temporary buffer
10136 inherits buffer-file-coding-system of the current buffer.
725a6897 10137
02891cc3
KH
10138 * tar-mode.el (tar-extract): For goto-char, use (point-min), not
10139 0. Give correct argument to set-auto-coding-function.
10140 (tar-expunge): For goto-char, use (point-min), not 0.
10141 (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
10142 (tar-subfile-save-buffer): Likewize.
10143
2de33f94
KH
10144 * international/mule.el
10145 (after-insert-file-set-buffer-file-coding-system): Call
10146 set-buffer-file-coding-system with the arg FORCE t.
10147
1681ead6
GM
101482000-06-13 Gerd Moellmann <gerd@gnu.org>
10149
10150 * mail/sendmail.el (mail-specify-envelope-from): Initialize to
10151 nil. Contemporary sendmails issue an X-Authentication-Warning if
b675095c 10152 the sender is set with `-f'.
1681ead6 10153
fdf4b680
DL
101542000-06-13 Dave Love <fx@gnu.org>
10155
9c50afce
DL
10156 * help.el (describe-function-1): Kluge around cases of functions
10157 fset to subrs whose doc doesn't match their symbol-name.
10158
0ad550ba 10159 * image.el (insert-image): Default STRING to a space.
f290ca08 10160
fdf4b680 10161 * info.el Doc fixes.
5d80cc9c 10162 (Info-build-node-completions): Match Ref tags.
fdf4b680 10163
9b6610db
EZ
101642000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
10165
a704139d
EZ
10166 * frame.el (display-multi-frame-p, display-multi-font-p): New
10167 defaliases for display-graphic-p.
10168
9b6610db
EZ
10169 * hl-line.el: Fixed a typo in commentary.
10170
7a5ea398
KH
101712000-06-13 Kenichi Handa <handa@etl.go.jp>
10172
10173 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
10174 fixed.
10175
0dc91c57
DL
101762000-06-12 Dave Love <fx@gnu.org>
10177
10178 * image.el (insert-image): Save a little consing.
10179
0bd5914b
KH
101802000-06-12 Kenichi Handa <handa@etl.go.jp>
10181
10182 * language/tibet-util.el: Convert all tibetan-1-column characters
10183 to the corresponding tibetan characters.
10184 (tibetan-add-components): Delete code for the special treatment of
10185 'a chung.
10186
10187 * language/tibetan.el (tibetan-composable-pattern): Fix previous
10188 change.
10189 (tibetan-vowel-transcription-alist): More rules added.
10190 (tibetan-composite-vowel-alist): New variable.
10191 (tibetan-precomposition-rule-alist): More rules added.
10192
6dc7d3d5
SM
101932000-06-12 Stefan Monnier <monnier@cs.yale.edu>
10194
9c04c393
SM
10195 * startup.el (command-line): Only call menu-bar-mode if interactive.
10196
10197 * thingatpt.el (toplevel symbol-properties):
10198 * textmodes/makeinfo.el (makeinfo-compile):
10199 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
5d80cc9c 10200 * progmodes/hideif.el (hif-compress-define-list)
9c04c393 10201 (hide-ifdef-use-define-alist):
5d80cc9c 10202 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
9c04c393
SM
10203 (ange-ftp-vms-add-file-entry):
10204 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
10205 * man.el (Man-build-man-command):
10206 * mail/rnewspost.el (news-reply-header-hook):
10207 * info.el (Info-insert-dir):
10208 * emulation/mlconvert.el (backward-word, forward-word, setq):
10209 * emacs-lisp/gulp.el (gulp-send-requests):
5d80cc9c
SS
10210 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
10211 (byte-optimize-inline-handler, byte-optimize-form-code-walker)
9c04c393
SM
10212 (byte-optimize-apply, end of file):
10213 * emacs-lisp/advice.el (ad-advice-class-completion-table)
10214 (ad-make-freeze-definition):
10215 * startup.el (command-line, command-line-1): Don't quote lambdas.
10216
6dc7d3d5
SM
10217 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
10218 (cvs-cleanup-removed): New function.
10219 (cvs-cleanup-functions): New var.
10220 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
10221 some flexibility in specifying additional entries to auto-cleanup.
10222 (cvs-quickdir): New function.
10223 (cvs-mode-insert): Use cvs-fileinfo-from-entries.
10224 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
10225 (cvs-mode-find-file): Check that we are on a filename or dirname
10226 when invoked through a mouse-click.
10227 (cvs-full-path): Remove.
10228 (cvs-dired-action): Re-introduced.
10229 (cvs-dired-noselect): Use it.
10230 (vc-post-command-functions): use this new hook if available.
10231
10232 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
10233 (cvs-status-map): Don't inherit from cvs-mode-map anymore.
10234 (cvs-filename-map, cvs-dirname-map): Remove.
10235 (cvs-default-action): Remove.
10236 (cvs-add-face): Use `keymap' rather than `local-map' property, and only
10237 if the arg is really a keymap.
10238 (cvs-fileinfo-pp): Don't use any special map for file and dir names.
10239 Don't hardcode the mapping from state (aka type) to face, but check
10240 the var cvs-fi-<type>-face instead.
10241 (cvs-fileinfo-from-entries): New function.
10242
10243 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
10244 Docstring fix.
10245 (cvs-find-file-and-jump): Change default to be safer.
10246 (cvs-mode-diff-map): Define it as a function as well.
10247 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
10248 Bind mouse-2 in this global map rather than with text-properties.
10249
10250 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
10251 file to resolve the ambiguity between C(conflict) and C(need-merge).
10252
5050a2ef
KH
102532000-06-12 Kenichi Handa <handa@etl.go.jp>
10254
10255 * international/mule.el (set-buffer-file-coding-system): If
10256 CODING-SYSTEM is nil, set buffer-file-coding-system to nil
10257 unconditionally.
10258
35a7ac84
DL
102592000-06-12 Dave Love <fx@gnu.org>
10260
10261 * wid-edit.el (widget-specify-button): Really suppress the face if
10262 required.
10263
db8eeecd
GM
102642000-06-11 Gerd Moellmann <gerd@gnu.org>
10265
10266 * term/x-win.el (x-colors): Add colors from recent rgb.txt.
10267
70223ca4
SM
102682000-06-11 Stefan Monnier <monnier@cs.yale.edu>
10269
10270 * imenu.el (imenu-generic-expression): Docstring fix.
10271
10272 * composite.el (composition-function-table): Move the `put'
10273 below the autoload cookie so we can load the file before loaddefs.
10274
10275 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
10276
10277 * emacs-lisp/autoload.el (make-autoload): Use `cond'.
10278 Handle easy-mmode-define-global-mode.
10279 For complex macros like define-minor-mode that can generate
10280 several autoload entries, try to autoload entries in the
10281 macroexpanded code.
10282
10283 * emacs-lisp/easy-mmode.el (define-minor-mode):
10284 If KEYMAP is a symbol, just use it.
10285 Use byte-compile-current-file and load-file-name to infer the
10286 proper :require to pass to defcustom.
10287 Wrap the hook var into `progn' so as not to autoload it.
10288 Add a :autoload-end cookie.
10289 Be more careful about the evaluation of KEYMAP.
10290 (easy-mmode-define-global-mode): Add a :autoload-end cookie.
10291 (define-derived-mode): Move define-abbrev-table outside of defvar.
10292
102932000-06-10 Stefan Monnier <monnier@cs.yale.edu>
10294
10295 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
10296 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
10297 (backup-compiled-files): Ignore errors during `tar'.
10298 (bootstrap): Make autoloads before elc files.
10299
9c53b34e
KH
103002000-06-10 Kenichi Handa <handa@etl.go.jp>
10301
10302 * international/mule.el (set-buffer-file-coding-system): If one of
5d80cc9c 10303 undecided-XXX is specified, change only EOL conversion.
9c53b34e
KH
10304
10305 * international/mule-conf.el (unix): New alias for the coding
10306 system undecided-unix.
10307
22ddd299
DL
103082000-06-09 Dave Love <fx@gnu.org>
10309
5ee42746
DL
10310 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
10311
70223ca4 10312 * progmodes/executable.el: Byte compile dynamic.
22ddd299
DL
10313 (executable-insert): Change custom type.
10314 (executable-find): Add autoload cookie.
cc7e1d18
DL
10315 (executable-make-buffer-file-executable-if-script-p): New
10316 function. After Noah Friedman.
22ddd299
DL
10317
10318 * files.el (after-save-hook): Customize, with
cc7e1d18 10319 executable-make-buffer-file-executable-if-script-p as an option.
22ddd299 10320
41ea3794
KH
103212000-06-09 Kenichi Handa <handa@etl.go.jp>
10322
f89437e3
KH
10323 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
10324 "tib24p-mule.bdf" for Tibetan.
10325
7a4ee259
KH
10326 * composite.el (decompose-composite-char): Declare it as obsolete.
10327
ff6a65c2
KH
10328 * man.el (Man-fontify-manpage): Pay attention to underline and
10329 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
41ea3794 10330
f83fe4b4
GM
103312000-06-08 Gerd Moellmann <gerd@gnu.org>
10332
10333 * thingatpt.el (forward-thing): Use functionp instead of fboundp.
10334 Set maintainer to FSF since author isn't reachable.
10335
e56d7900
DL
103362000-06-08 Dave Love <fx@gnu.org>
10337
10338 * international/mule-cmds.el (select-safe-coding-system): If
10339 DEFAULT-CODING-SYSTEM is not specified, also check the most
10340 preferred coding-system if buffer-file-coding-system is
10341 `undecided'. From Handa.
10342
d3981b49
KH
103432000-06-08 Kenichi Handa <handa@etl.go.jp>
10344
10345 * international/mule.el
10346 (after-insert-file-set-buffer-file-coding-system): If the buffer
10347 size is greater than INSERTED, judget that we are not visiting.
10348
bff71087
RV
103492000-06-07 Rajesh Vaidheeswarran <rv@gnu.org>
10350
10351 * whitespace.el (defgroup whitespace): Comment out `:version'.
10352 XEmacs 20.4 has problems defining the group with this present.
10353 We'll have this commented out till get resolve the problem.
10354
fd9ac94c 103552000-06-07 John Wiegley <johnw@gnu.org>
e04d21aa 10356
fd9ac94c
GM
10357 * align.el (align-dq-string-modes, align-sq-string-modes)
10358 (align-open-comment-modes): Add pyhton-mode.
10359 (align-rules-list): Use get-text-property instead of
10360 text-properties-at.
10361 (align-rules-list): Add python-assignment.
10362 (align-rules-list): Change perl-comma-delimiter to
10363 basic-comma-delimiter. Use if for Perl modes and python-mode.
10364 (align-rules-list): Add python-chain-logic and
10365 basic-line-continuation.
45f485a6
GM
10366
103672000-06-07 Jari Aalto <jari.aalto@poboxes.com>
10368
10369 * apropos.el (apropos-mode-hook): New user variable.
10370 (apropos-mode): Run apropos-mode-hook.
bff71087 10371
45f485a6
GM
103722000-06-07 David Ponce <david@dponce.com>
10373
10374 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
10375 commands. Require `wid-edit' at run-time.
10376
103772000-06-07 David Ponce <david@dponce.com>
10378
10379 * recentf.el: Added some "Commentary".
10380 (recentf-open-more-files, recentf-edit-list): Minor changes to
10381 move the point at the top of the file list. This behaviour is
10382 consistent with the menu one when the list contains a lot of
10383 files.
10384 (recentf-cleanup): Now displays the number of items removed from
10385 the list.
10386 (recentf-relative-filter) New menu filter to show filenames
10387 relative to `default-directory'.
bff71087 10388
45f485a6
GM
103892000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10390
10391 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size
10392 with/without giving an error if PostScript printer doesn't have this
10393 kind of page size. Zebra Stripe continues or restarts on next page.
10394 Manual/automatic paper feeding. Switch or not the header.
10395 (ps-print-version): New version number (5.2.2).
10396 (ps-windows-system): Include emx as a Windows system.
10397 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
10398 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
10399 (ps-background-text): Code fix.
10400 (ps-error-handler-message, ps-user-defined-prologue)
10401 (ps-print-prologue-header, ps-printer-name)
10402 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
10403 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
10404 (ps-use-face-background): Customization fix.
10405 (ps-n-up-database): Data fix.
10406 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
10407 (ps-switch-header): New vars.
10408 (ps-xemacs-color-name, ps-face-foreground-name)
10409 (ps-face-background-name, ps-boolean-constant): New funs.
10410
c14dcd22
DL
104112000-06-07 Dave Love <fx@gnu.org>
10412
10413 * allout.el: New version from Manheimer.
10414
e4044bb0
KH
104152000-06-07 Kenichi Handa <handa@etl.go.jp>
10416
10417 * textmodes/fill.el (fill-find-break-point): Check the validity of
10418 charset.
10419
59cfe8b9
KF
104202000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
10421
10422 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
10423 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
10424 Call display-color-p and display-mouse-p instead of looking at
10425 window-system.
10426
bb2337f5
DL
104272000-06-06 Dave Love <fx@gnu.org>
10428
10429 * image.el (find-image): Doc fix. Return nil if image not found.
10430 (put-image, insert-image): Make STRING arg optional.
10431
8e624fa2
KH
104322000-06-06 Kenichi Handa <handa@etl.go.jp>
10433
10434 * language/vietnamese.el: Remove eval-when-compile.
10435 (viet-viscii-nonascii-translation-table): Define it as a
10436 translation table made from viet-viscii-decode-table.
10437 (viet-viscii-encode-table): Define it as a translation table made
10438 from the reverse map of above.
10439 (viet-vscii-nonascii-translation-table): Define it as a
10440 translation table made from viet-vscii-decode-table.
10441 (viet-vscii-encode-table): Define it as a translation table made
10442 from the reverse map of above.
10443 (ccl-decode-viscii): Use translate-character.
10444 (ccl-encode-viscii, ccl-encode-viscii-font)
10445 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
10446 Likewize.
bff71087 10447
8e624fa2
KH
10448 * language/cyrillic.el: Remove eval-when-compile.
10449 (cyrillic-koi8-r-nonascii-translation-table): Define it as a
10450 translation table made from cyrillic-koi8-r-decode-table.
10451 (cyrillic-koi8-r-encode-table): Define it as a translation table
10452 made from the reverse map of above.
10453 (ccl-decode-koi8): Use translate-character.
10454 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
10455 (cyrillic-alternativnyj-nonascii-translation-table): Define it as
10456 a translation table made from cyrillic-alternativnyj-decode-table.
10457 (cyrillic-alternativnyj-encode-table): Define it as a translation
10458 table made from the reverse map of above.
10459 (ccl-decode-alternativnyj): Use translate-character.
10460 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
10461 Likewize
10462
10463 * international/mule-diag.el (non-iso-charset-alist): Specify
10464 translation table symbol instead of translation table itself.
10465 (list-block-of-chars): CHARSET may be a translation table symbol.
10466
10467 * international/mule.el (make-coding-system): If CODING-SYSTEM
10468 already exists, override it.
10469
10470 * international/fontset.el: Use family `proportional' for Tibetan
10471 fonts.
10472
10473 * international/ccl.el (ccl-compile-translate-character): Don't
10474 check if Rrr has property translation-table.
10475 (ccl-compile-map-multiple): Modified to avoid compiler warning.
10476
1969fae2
GM
104772000-06-05 Gerd Moellmann <gerd@gnu.org>
10478
10479 * info.el: Bind case-fold-search to t when searching in case
10480 a user sets it to nil in a hook.
10481
d5b037c5
SM
104822000-06-05 Stefan Monnier <monnier@cs.yale.edu>
10483
d3d02e65
SM
10484 * autoarg.el (autoarg-mode, autoarg-kp-mode):
10485 * hl-line.el (hl-line-mode): Use the new :global key argument.
10486
10487 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
10488 (tar-clip-time-string): Prepend a space.
10489 (tar-grind-file-mode): Construct a string rather than modifying one.
10490 (tar-header-block-summarize): Fix docstring.
10491 Use `format' rather than an error-prone set of copy-loops.
10492
10493 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
10494 (diff-goto-source, diff-unified->context, diff-context->unified)
10495 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
10496 understand the format output by the `-p' argument to diff.
10497
bff71087 10498 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
d3d02e65
SM
10499 (sh-re-done): Use defconst.
10500 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
10501 (sh-help-string-for-variable, sh-guess-basic-offset):
10502 Don't quote lambdas.
10503 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
10504 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
10505
f7c4478f
SM
10506 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
10507 (mh-letter-mode): Derive from text-mode.
10508 This implicitly means that it now calls kill-all-local-variables.
10509 Also remove the Emacs-18 compatibility code.
10510
a8add29d
SM
10511 * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
10512 Make use of symbol-property doc-string-elt.
10513 Use memq rather than a sequence of eq.
10514 (doc-string-elt): Fix the wrong or missing previously unused values.
10515 (autoload-print-form): New function extracted from
10516 generate-file-autoloads to allow recursion when handling progn
10517 so that defvar's and defun's docstrings are properly printed.
10518 (generate-file-autoloads): Use it.
10519
d5b037c5
SM
10520 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
10521 Use find-file-hooks in the minor-mode function.
10522 Be careful not to loop indefinitely in the post-command-hook function.
10523
560ef11a 105242000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
bff71087 10525
1969fae2 10526 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
560ef11a 10527 tty's.
1969fae2 10528 * ediff-diff.el (ediff-exec-process): Use --binary for fine
d5b037c5 10529 differences whenever appropriate.
1969fae2
GM
10530 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
10531 * viper.el (find-file, find-file-other-window): Get viper to do
bff71087
RV
10532 wildcards.
10533
b5bbbb76
SM
105342000-06-04 Stefan Monnier <monnier@cs.yale.edu>
10535
d5b037c5
SM
10536 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
10537 (jit-lock-fontify-buffer): New function for JIT refontification.
10538 (jit-lock-mode): Fix docstring.
10539 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
10540 Remove jit-lock-after-change from the _local_ hook.
10541 (jit-lock-function-1): Fix docstring.
10542
10543 * info.el (Info-on-current-buffer): Initialize info.
10544
10545 * newcomment.el (comment-indent): Ignore comment-indent-hook.
10546
10547 * progmodes/tcl.el (tcl-indent-for-comment):
10548 Ignore comment-indent-hook.
10549
10550 * emacs-lisp/easy-mmode.el: Require CL during compilation.
10551 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
b5bbbb76
SM
10552 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
10553 and improve to use the lighter to guess the capitalization.
10554 (define-minor-mode): Inline code from easy-mmode-define-toggle.
10555 Add keyword arguments to specify global-ness or the custom group.
10556 Add local-map and help-echo properties to the lighter.
10557 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
d5b037c5 10558 (easy-mmode-define-global-mode): New macro.
b5bbbb76 10559
bfa6c260
DL
105602000-06-02 Dave Love <fx@gnu.org>
10561
10562 * wid-edit.el: byte-compile-dynamic since we typically don't use
10563 all the widgets. Don't require cl or widget. Remove
10564 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
10565 (widget-read-event): Removed. Callers changed to use read-event.
10566 (widget-button-release-event-p): Renamed from
10567 button-release-event-p.
10568 (widget-field-add-space, widget-field-use-before-change):
10569 Uncustomize.
10570 (widget-specify-field): Use keymap property, not local-map.
10571 (widget-specify-button): Obey :suppress-face.
10572 (widget-specify-insert): Use modern backquote syntax.
10573 (widget-image-directory): Renamed from widget-glyph-directory.
10574 (widget-image-enable): Renamed from widget-glyph-enable.
10575 (widget-image-find): Replaces widget-glyph-find.
10576 (widget-button-pressed-face): Move defvar.
10577 (widget-image-insert): Replaces widget-glyph-insert.
10578 (widget-convert): Use keywordp.
10579 (widget-leave-text, widget-children-value-delete): Use mapc.
10580 (widget-keymap): Remove XEmacs stuff.
b5bbbb76 10581 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
bfa6c260
DL
10582 (widget-button-click): Don't set point at the click, but re-centre
10583 if we scroll out of window. Rewritten for images v. glyphs &c.
10584 (widget-tabable-at): Use POS arg, not point.
10585 (widget-beginning-of-line, widget-end-of-line)
10586 (widget-item-value-create, widget-sublist, widget-princ-to-string)
10587 (widget-sexp-prompt-value, widget-echo-help): Simplify.
10588 (widget-default-create): Use widget-image-insert; some rewriting.
10589 (widget-visibility-value-create)
10590 (widget-push-button-value-create, widget-toggle-value-create): Use
10591 widget-image-insert.
10592 (checkbox): Create on and off images dynamically.
10593 (documentation-link): Change :help-echo.
10594 (widget-documentation-link-echo-help): Remove.
10595
3837de12
SM
105962000-06-02 Stefan Monnier <monnier@cs.yale.edu>
10597
10598 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
10599
10600 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
10601 (easy-mmode-define-toggle, define-minor-mode): Use it.
10602 (easy-mmode-define-keymap): Docstring fix.
10603 (define-derived-mode): Default PARENT to fundamental-mode.
10604 Add the derived-mode-parent symbol-property.
10605 (easy-mmode-derived-mode-p): New function.
10606
90aa4ea8
DL
106072000-06-02 Dave Love <fx@gnu.org>
10608
37193ee6
DL
10609 * files.el (convert-standard-filename): Doc fix.
10610 (normal-backup-enable-predicate): New function.
10611 (backup-enable-predicate): Use it to replace the lambda form.
10612
10613 * calendar/todo-mode.el: [This needs more work on the outline
10614 stuff.] Doc fixes.
10615 (todo) <defgroup>: Add :version.
10616 (todo-add-category): Don't use pushnew.
10617 (todo-cmd-raise): Fix typo.
10618 (todo-top-priorities): Change temp buffer name.
10619 (todo-category-alist): Avoid redundant lambda.
3837de12
SM
10620 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
10621 Use outline-next-heading.
37193ee6 10622
90aa4ea8
DL
10623 * autoarg.el: Rewritten to use define-minor-mode.
10624 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
10625 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
10626
2e54623a
KH
106272000-06-02 Kenichi Handa <handa@etl.go.jp>
10628
10629 * isearch.el (isearch-other-meta-char): Fix previous change.
10630
c5def0db
SM
106312000-06-01 Stefan Monnier <monnier@cs.yale.edu>
10632
3837de12
SM
10633 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
10634 (log-edit-done): Only add the comment to the ring if it's different
10635 from the last comment entered.
10636
c5def0db
SM
10637 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
10638
2330c9d4
DL
106392000-06-01 Dave Love <fx@gnu.org>
10640
10641 * hl-line.el: Rewritten using define-minor-mode.
10642
10643 * help.el (describe-function-1): Distinguish special form from
10644 builtin function. Sanity-check presence of arglist for builtins.
10645
6e5dfc31
KH
106462000-06-01 Kenichi Handa <handa@etl.go.jp>
10647
4dc1225b
KH
10648 * international/characters.el: Fix syntax/category setting of
10649 Tibetan characters.
10650
10651 * language/tibet-util.el (tibetan-add-components): Fixes for new
10652 encoding of Tibetan characters.
10653 (tibetan-decompose-precomposition-alist): New variable.
10654 (tibetan-decompose-region): Convert precomposed characters to
10655 non-precomposed characters.
10656 (tibetan-decompose-string): Likewise.
10657 (tibetan-composition-function): Fix args to
10658 thibetan-compose-string.
10659
10660 * language/tibetan.el (tibetan-composable-pattern): More
10661 characters included.
10662 (tibetan-consonant-transcription-alist): Rule for "R" added.
10663 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
10664 "+R" added.
10665 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
10666
eadef5e6
KH
10667 * language/lao-util.el (lao-composition-function): Fix args to
10668 compose-string.
10669
10670 * language/thai-util.el (thai-composition-function): Fix args to
10671 compose-string.
10672
6e5dfc31 10673 * isearch.el (isearch-update): Set disable-point-adjustment to t
6389e4ab
KH
10674 to prevent the point moving to the end of a composition when a
10675 part of a composition is searched.
6e5dfc31
KH
10676 (isearch-other-meta-char): If the key invoking this command can be
10677 mapped by function-key-map to a printing char, call
10678 isearch-process-search-char directly.
10679
2598a293
SM
106802000-06-01 Stefan Monnier <monnier@cs.yale.edu>
10681
10682 * emacs-lisp/bytecomp.el:
10683 * frame.el:
10684 * international/mule-cmds.el:
10685 * international/mule-util.el:
10686 * international/mule.el:
10687 * mouse.el:
10688 * subr.el:
10689 * faces.el: Update calls to make-obsolete with a WHEN argument.
10690
10691 * byte-run.el (make-obsolete, make-obsolete-variable):
10692 Add an optional WHEN argument and change the format of the
bff71087 10693 symbol-property information.
2598a293
SM
10694 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
10695 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
10696 new obsolete-symbol-property format and print WHEN if it is provided.
10697
28d8dff1
DL
106982000-05-31 Dave Love <fx@gnu.org>
10699
10700 * loadhist.el (loadhist-hook-functions): Remove
10701 before-change-function, after-change-function.
10702 (unload-feature): Deal with symbols which are both bound and
10703 fbound.
10704
10705 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
10706 before-change-function, after-change-function.
10707
10708 * simple.el (newline): Don't bind before-change-function,
10709 after-change-function.
10710
7f565d87
RV
107112000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
10712
10713 * whitespace.el (whitespace-rescan-timer-time): Update interval
10714 set to 600 seconds (10 minutes) instead of 60 seconds since
10715 a large number of whitespace buffers causes emacs to `freeze'
10716 for a considerable amount of time.
10717
bff71087 10718 * whitespace.el: Updated email address
7f565d87 10719
a8d693d8
DL
107202000-05-31 Dave Love <fx@gnu.org>
10721
10722 * add-log.el (change-log-font-lock-keywords) <function>: Add
10723 pattern for function of change.
10724 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
10725 acknowledgements patterns.
10726
a50192e7
KH
107272000-05-31 Kenichi Handa <handa@etl.go.jp>
10728
10729 * isearch.el (isearch-printing-char): If keyboard coding system is
10730 being used, call isearch-process-search-multibyte-characters.
10731
10732 * international/isearch-x.el: Mostly rewritten.
10733
10734 * international/quail.el (quail-start-conversion): Don't include
10735 unhandled events in the returned events, but set them in
10736 unread-command-events. Exit if all inputs are deleted.
10737
7e492772
JR
107382000-05-30 Jason Rumney <jasonr@gnu.org>
10739
10740 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
10741
10742 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
10743 Reenable code to create initial fontsets.
10744 Use set-fontset-font in place of put-charset-property.
10745
10fc3187
GM
107462000-05-30 Gerd Moellmann <gerd@gnu.org>
10747
79148ea7
GM
10748 * progmodes/perl-mode.el (perl-indent-line): When looking for a
10749 label, ensure that the first colon isn't followed by another.
10750
10751 * paths.el (Info-default-directory-list): Doc fix.
10752
086d5b87
GM
10753 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
10754 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
10755 send a query containing USER only, not USER@HOST.
10756
10fc3187
GM
10757 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
10758 and rmail-msgend to compute the restriction at the end, instead of
10759 computing it.
10760
49e70dec
GM
107612000-05-29 Gerd Moellmann <gerd@gnu.org>
10762
66254a13
GM
10763 * dabbrev.el (dabbrev-expand): Don't display messages in the
10764 echo area if the minibuffer window is active.
10765
49e70dec
GM
10766 * jit-lock.el (jit-lock-mode): Add after change function to
10767 local hook.
10768
107692000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
10770
10771 * antlr-mode.el: New commands: hide/unhide actions,
10772 upcase/downcase literals.
10773 (antlr-tiny-action-length): New user option.
10774 (antlr-hide-actions): New command. Suggested by
10775 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
7f565d87 10776 (antlr-mode-map): New binding [C-c C-v].
49e70dec
GM
10777 (antlr-mode-menu): New entries.
10778 (antlr-downcase-literals): New command.
10779 (antlr-upcase-literals): Ditto.
10780
10781 * antlr-mode.el: Minor changes: indendation, mode-name.
10782 (antlr-indent-line): Indent cpp directive at column 0.
10783 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
10784
10785 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
10786 (antlr-font-lock-additional-keywords): Workaround for intentional
10787 bug in XEmacs version of font-lock.
10788 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
10789 be used by a smarter version of `buffers-menu-grouping-function'.
10790
107912000-05-29 Gerd Moellmann <gerd@gnu.org>
10792
10793 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
10794 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
10795
49f93684
KH
107962000-05-29 Kenichi Handa <handa@etl.go.jp>
10797
10798 * international/encoded-kb.el
10799 (encoded-kbd-iso2022-designation-map): Pay attention to that
10800 charset-iso-final-char return -1 for eight-bit-control and
10801 eight-bit-graphic.
10802
5b1ae051
EZ
108032000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
10804
10805 * speedbar.el (speedbar-use-images, speedbar-update-flag)
10806 (speedbar-easymenu-definition-base): Use display-graphic-p where
10807 available, instead of window-system.
10808
a205e32a
EZ
108092000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
10810
10811 * international/codepage.el (cp-coding-system-for-codepage-1): Add
10812 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
10813 coding systems.
10814
dd854dc2
DL
108152000-05-26 Dave Love <fx@gnu.org>
10816
c88a85d5
DL
10817 * disp-table.el (standard-display-underline): Don't use
10818 internal-find-face.
10819
dd854dc2
DL
10820 * mail/reporter.el: Maintainer change. Doc fixes.
10821 (reporter-version): Deleted.
10822
10823 * emacs-lisp/elp.el: Maintainer change.
10824 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
10825
dc29aa6c
SM
108262000-05-26 Stefan Monnier <monnier@cs.yale.edu>
10827
10828 * add-log.el (add-change-log-entry): Merge the current entry with the
10829 previous one if the previous one is empty.
10830
ed62683d
DL
108312000-05-26 Dave Love <fx@gnu.org>
10832
4370a375
DL
10833 * loadhist.el (unload-feature): Fix interactive spec [from
10834 lijnzaad@ebi.ac.uk].
10835
ed62683d
DL
10836 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
10837 subr-arity to check primitives.
10838 (byte-compile-flush-pending, byte-compile-file-form-progn)
10839 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
10840 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
10841 mapcar.
10842
ba9f8f95
KH
108432000-05-26 Kenichi Handa <handa@etl.go.jp>
10844
0f3e0672
KH
10845 * international/fontset.el: Set family names of non-latin charsets
10846 in default fontset to "*".
10847
cebefb44
KH
10848 * international/mule-diag.el (print-fontset): Combine family part
10849 and registry part of the fontname by "-*-" instead of "-".
10850
ba9f8f95
KH
10851 * international/mule-cmds.el (encode-coding-char): Make strings
10852 multibyte before calling encode-coding-string.
10853
931d0724
SM
108542000-05-25 Stefan Monnier <monnier@cs.yale.edu>
10855
10856 * derived.el: Fix keywords.
8ccce2b0 10857 (define-derived-mode): Only define if needed.
931d0724
SM
10858
10859 * simple.el (fill-comment, comment-column, comment-start)
10860 (comment-start-skip, comment-end, comment-indent-function)
10861 (block-comment-start, block-comment-end, indent-for-comment)
10862 (set-comment-column, kill-comment, comment-padding, comment-region)
10863 (comment-multi-line, indent-new-comment-line): Remove.
10864
10865 * bindings.el (esc-map): Change ; to comment-dwim and use the new
10866 function names for comment operations.
10867
10868 * newcomment.el: Add abundant autoload cookies.
10869 (comment-style): Don't depend on runtime data at compile-time.
10870 (comment-indent-hook): Remove.
10871 (comment-indent): Check if comment-indent-hook is bound.
10872 (comment-region): Docstring fix.
10873
6fc596cf
DL
108742000-05-25 Dave Love <fx@gnu.org>
10875
10876 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
10877 byte-code-function-p.
10878
10879 * mail/rmailsum.el: Add provide.
10880
10881 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
10882
10883 * smerge-mode.el (smerge-diff-switches): Don't use list* in
10884 defcustom.
10885
7997f1ca 108862000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
7f565d87 10887
7997f1ca
MK
10888 * ediff-diff.el (ediff-exec-process): delete --binary option from
10889 non-buffer ediff jobs.
7f565d87 10890
e7a903e8
EZ
108912000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
10892
10893 * hilit-chg.el (highlight-changes-mode): Ask about color or
10894 grayscale support, not about window-system.
10895
10896 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
10897 window-system.
10898 (ffap-highlight): Always default to t.
10899
10900 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
10901 display-popup-menus-p instead of looking at window-system.
10902
10903 * disp-table.el (standard-display-g1, standard-display-graphic):
10904 Only refuse to use string glyphs on X and MS-Windows.
10905
10906 * avoid.el: Remove window-system from commentary, suggest to use
10907 display-*-p instead.
10908
10909 * apropos.el (apropos-print): Use display-mouse-p instead of
10910 window-system.
10911
14028d57
EZ
109122000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
10913
10914 * international/codepage.el (cp-decoding-vector-for-codepage):
10915 Fill up unsupported characters with their own codes. From Kenichi
10916 Handa.
10917
1a4f9cc1
EZ
109182000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
10919
10920 * international/mule-diag.el (describe-char-after): Use
10921 display-graphic-p instead of window-system, so that this function
10922 works on MS-DOS.
10923
89f6ca4e
EZ
109242000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
10925
10926 * international/codepage.el (cp-make-coding-systems-for-codepage):
10927 Remove the eight-bit-graphic and eight-bit-control charsets from
10928 the list of charsets which we convert into `?'.
10929
eacfd7fe
KH
109302000-05-25 Kenichi Handa <handa@etl.go.jp>
10931
10932 * international/mule-conf.el: Specify CHARSET-ID explicitely for
10933 private charsets.
10934 (mule-unicode-0100-24ff, japanese-jisx0213-1,
10935 japanese-jisx0213-2): New charsets.
10936
10937 * international/fontset.el: Setup default fontset for new charsets.
10938
deadf7e3
DL
109392000-05-24 Dave Love <fx@gnu.org>
10940
10941 * info.el (Info-find-node-2): Restructure [following "Vadim
10942 S. Solomin" <sovs@uic.nnov.ru>].
10943
10944 * icomplete.el: Fix header for Finder.
10945
109462000-05-24 Eric M. Ludlam <zappo@ultranet.com>
10947
10948 * rmailout.el (rmail-output-to-rmail-file): Added optional param
10949 STAY.
10950
10951 * rmail.el (rmail-automatic-folder-directives): New user variable.
10952 (rmail-show-message): Add call to `rmail-auto-file' during
10953 display.
10954 (rmail-auto-file): New function.
10955
6de3983f 109562000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
7f565d87 10957
fc6a6a4e 10958 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
6de3983f 10959 account.
fc6a6a4e
GM
10960 (ediff-test-utility,ediff-diff-mandatory-option)
10961 (ediff-reset-diff-options): Utilities for proper initialization of
6de3983f 10962 ediff-diff-options and ediff-diff3-options on Windows.
7f565d87 10963
fc6a6a4e 10964 * ediff-init.el (ediff-merge-filename-prefix): New customizable
6de3983f 10965 variable.
7f565d87 10966
fc6a6a4e 10967 * ediff-mult.el (ediff-filegroup-action): Use
6de3983f
MK
10968 ediff-merge-filename-prefix.
10969
fc290d1d
MK
109702000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
10971
fc6a6a4e 10972 * viper-ex.el (ex-write): Set selective display to nil.
7f565d87 10973
273182b8
EZ
109742000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
10975
10976 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
10977 aliases for hebrew-iso-8bit.
10978
f471ea57
EZ
109792000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
10980
10981 * woman.el: New version from Francis J. Wright
10982 <F.J.Wright@Maths.QMW.ac.uk>.
10983 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
10984 names in environment variables regardless of the path separator.
10985 (woman-topic-all-completions-1): Don't call file-name-directory-p
10986 on all files, since woman-file-regexp already filters out any
10987 directories.
10988
01162f24
KH
109892000-05-24 Kenichi Handa <handa@etl.go.jp>
10990
48e3df76
KH
10991 * international/quail.el (quail-start-translation): Don't change
10992 modified-p of the current buffer.
10993 (quail-start-conversion): Likewise.
10994
10995 * international/kkc.el (kkc-region): Don't change modified-p of
10996 the current buffer.
10997
747d90ea
KH
10998 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
10999 conform to RFC1468.
11000 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
01162f24 11001
17a223ff
EL
110022000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
11003
11004 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
11005 (speedbar-insert-button): Invisible text property fix.
11006 (speedbar-directory-plus): Renamed from speedbar-directory-+
11007 (speedbar-directory-minus): Renamed from speedbar-directory--
11008 (speedbar-page-plus): Renamed from speedbar-file-+
11009 (speedbar-page-minus): Renamed from speedbar-file--
11010 (speedbar-page): Renamed from speedbar-file-
11011 (speedbar-tag): Renamed from speedbar-tag-
11012 (speedbar-tag-plus): Renamed from speedbar-tag-+
11013 (speedbar-tag-minus): Renamed from speedbar-tag--
11014 (speedbar-expand-image-button-alist): Use above renames.
11015
11016 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
11017 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
11018 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
11019 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
11020 * sb-pg.xpm: Renamed from sb-file.xpm
11021 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
11022 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
7f565d87 11023
e6b6fc18
KH
110242000-05-24 Kenichi Handa <handa@etl.go.jp>
11025
11026 * international/quail.el (quail-show-guidance-buf): Set
11027 current-input-method of the guidance buffer to the name of the
11028 curren input method.
11029
a1a336eb
SM
110302000-05-23 Stefan Monnier <monnier@cs.yale.edu>
11031
11032 * progmodes/compile.el (compile-internal): Style typo.
11033
11034 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
11035 quote vars and functions in the docstring.
11036
11037 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
11038
11039 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
11040 Don't quote lambdas.
11041
11042 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
11043
9695b783
GM
110442000-05-23 Gerd Moellmann <gerd@gnu.org>
11045
716e3b88
GM
11046 * startup.el (command-line): Determine source file of compiled
11047 user init file differently. Warn if compiled user init file
11048 is older than its source file.
11049
9695b783 11050 * ffap.el (ffap-url-regexp): Add `https'.
7f565d87 11051
41ac433f
EZ
110522000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
11053
11054 * files.el (make-backup-file-name-1): Replace slashes with `!'
11055 rather than `|' (which is not allowed on Windows). Replace the
11056 drive letters with a string "drive_X".
11057
46600ab1
GM
110582000-05-23 Gerd Moellmann <gerd@gnu.org>
11059
11060 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
11061
11062 * files.el (interpreter-mode-alist): Add `bash2'.
11063
79a64d87
DL
110642000-05-22 Dave Love <fx@gnu.org>
11065
11066 * loadhist.el (feature-symbols, file-provides, file-requires): Use
11067 mapc.
11068 (feature-file): Avoid calling symbol-name. Doc fix.
11069 (file-set-intersect, file-dependents): Use dolist, not mapcar.
11070 (loadhist-hook-functions): Add mouse-position-function.
11071 (unload-feature): Change uses of mapcar.
11072
11073 * files.el (parse-colon-path): Doc fix.
11074 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
11075 (set-auto-mode): Use mapc.
11076
11077 * complete.el (PC-look-for-include-file): Use :alnum: character
11078 class.
11079 (partial-completion-mode): Add autoload cookie.
11080
0e8c11d8
SS
110812000-05-22 Sam Steingold <sds@gnu.org>
11082
ce75fd23 11083 * info.el (Info-fontify-node): Fixed the call to
0e8c11d8
SS
11084 `add-text-properties' (bug introduced on 2000-05-18).
11085
d8d0fa6c
DL
110862000-05-22 Dave Love <fx@gnu.org>
11087
11088 * bindings.el: Remove debug-ignored-errors set in other files.
11089
11090 * progmodes/etags.el: Add to debug-ignored-errors.
11091 (visit-tags-table-buffer): Clear out buffers holding old tables
11092 when making a new list.
11093 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
11094 mapc.
11095
11096 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
11097 quote keywords.
11098 (cmpl-string-case-type): Use character classes.
11099
0e8c11d8
SS
11100 * comint.el:
11101 * textmodes/ispell.el:
11102 * imenu.el:
d8d0fa6c
DL
11103 * mail/mh-e.el:
11104 * progmodes/compile.el: Add to debug-ignored-errors.
11105
11106 * dabbrev.el: Add to debug-ignored-errors.
11107 (dabbrev-completion): Use mapc.
11108
1edbbf8a
EZ
111092000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
11110
11111 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
11112 (woman-mapcan, woman-parse-man.conf)
11113 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
11114 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
11115 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
11116 path syntax better.
11117 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
11118 (woman-manpath): Call woman-parse-man.conf.
11119 (woman-emulation): New defcustom, defaults to nroff.
11120 (woman-font-support): New defconst.
11121 (woman-use-symbol-font): New defcustom.
11122 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
11123 "Emulation".
11124 Many functions: Doc fix.
11125
5bd2148c
KH
111262000-05-22 Kenichi Handa <handa@etl.go.jp>
11127
11128 * international/quail.el (quail-simple-translation-keymap): Map
11129 128..255 to quail-self-insert-command.
11130 (quail-keyboard-layout-alist): Add definition for "pc102-de".
11131
4125ec7e
SM
111322000-05-22 Stefan Monnier <monnier@cs.yale.edu>
11133
a1a336eb
SM
11134 * help.el (help-manyarg-func-alist): Typo.
11135
40aeecad
SM
11136 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
11137 intervals which makes it heaps simpler.
11138
4125ec7e
SM
11139 * newcomment.el (comment-region-internal): Go back to BEG after quoting
11140 the nested comment markers.
e4da9c1c
SM
11141
11142 * subr.el (remove-hook): Don't turn the hook's value into a list.
11143
cb7216a7
DL
111442000-05-21 Dave Love <fx@gnu.org>
11145
ac266581
DL
11146 * edmacro.el (edmacro-parse-keys): Return vector if any elements
11147 are invalid characters.
11148
cb7216a7
DL
11149 * international/mule-util.el (detect-coding-with-priority): Use
11150 mapc. Remove redundant lambda.
11151
11152 * international/mule-diag.el (list-non-iso-charset-chars)
11153 (describe-fontset): Remove redundant lambda.
11154
11155 * emulation/crisp.el (brief-mode): New alias.
11156
11157 * emacs-lisp/ring.el (ring-elements): New function.
11158
11159 * emacs-lisp/easymenu.el (easy-menu-create-menu)
11160 (easy-menu-do-add-item): Use keywordp.
11161
11162 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
11163
11164 * replace.el: Doc and error message fixes.
11165 (replace-highlight): Use facep, not internal-find-face.
11166
9b0d1d6e
SM
111672000-05-20 Stefan Monnier <monnier@cs.yale.edu>
11168
b2d2cf58
SM
11169 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
11170
ffe7dc64
SM
11171 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
11172 (log-edit-insert-changelog): Drop `:' as well.
11173
11174 * log-view.el: Fix file description.
11175 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
11176 available.
11177 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
11178 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
11179
c8c21615
SM
11180 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
11181 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
11182 Print a status message if the toggle is called interactively.
11183 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
11184 for global minor modes and use `defcustom' for them.
11185 Use add-minor-mode.
11186 (easy-mmode-define-derived-mode): Remove.
11187 (define-derived-mode): Fancier default docstring.
11188 (easy-mmode-define-navigation): Signal an error rather than (ding).
11189
9b0d1d6e
SM
11190 * newcomment.el (comment-styles): New `box-multi'.
11191 (comment-normalize-vars): Better default for comment-continue to
11192 avoid whitespace-only continuations.
11193 (comment-search-forward): Always move even in the no-syntax case.
11194 (comment-padright): Only obey N if it's only obeyed for padleft.
11195 (comment-make-extra-lines): Better handling of empty continuations.
11196 Use `=' for the filler if comment-start has only one character.
11197 (uncomment-region): Try handling the special `=' filler.
11198 (comment-region): Allow LINES even if MULTI is nil.
11199 (comment-box): Choose box style based on comment-style.
11200
f5ee6d0f
KH
112012000-05-20 Kenichi Handa <handa@etl.go.jp>
11202
9b0d1d6e 11203 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
f5ee6d0f
KH
11204 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
11205
c9671f81
KH
112062000-05-20 Kenichi HANDA <handa@etl.go.jp>
11207
11208 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
11209 and insert, not subst-char-in-region.
11210
11211 * international/mule-diag.el (list-character-sets-1): Handle
11212 charsets eight-bit-control and eight-bit-graphic.
11213 (list-iso-charset-chars): Likewise.
11214 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
11215 charactes as is. Use indent-to to align characters.
11216
11217 * international/mule-cmds.el (find-multibyte-characters): Never
11218 exclude charsets eight-bit-control and eight-bit-graphic.
11219
1426aa5c
SM
112202000-05-19 Stefan Monnier <monnier@cs.yale.edu>
11221
11222 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
11223 Don't quote lambdas.
11224
11225 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
11226
2b63d473
GM
112272000-05-19 Gerd Moellmann <gerd@gnu.org>
11228
11229 * gud.el (gud-jdb-directories): Doc fix.
11230
f1355756
SM
112312000-05-19 Stefan Monnier <monnier@cs.yale.edu>
11232
11233 * newcomment.el: New file.
11234
5f64c9e0
GM
112352000-05-19 Gerd Moellmann <gerd@gnu.org>
11236
2b63d473 11237 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
5f64c9e0 11238
db7314bd
AS
112392000-05-18 Andreas Schwab <schwab@suse.de>
11240
11241 * dired.el (dired-between-files): Also skip lines beginning with
11242 `used'.
11243
25bb0401
GM
112442000-05-18 Gerd Moellmann <gerd@gnu.org>
11245
11246 * msb.el (msb-menu-cond): Add choice `user'.
11247
a199a865 112482000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
0e8c11d8 11249
a199a865
GM
11250 * ps-print.el: Compatibility, customization and doc fix.
11251 (ps-printer-name-option): Replace defconst by defvar.
11252 (ps-postscript-code-directory): XEmacs compatibility.
11253 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
11254 fix.
11255 (ps-user-defined-prologue, ps-print-prologue-header)
11256 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
11257 compatibility and code fix.
11258 (ps-print-background-image, ps-print-background-text):
11259 Customization fix.
11260 (ps-line-number-start, ps-n-up-on): New vars.
11261
25bb0401
GM
112622000-05-18 Espen Skoglund <esk@ira.uka.de>
11263
11264 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
11265 the indent-comment function to just return the appropriate indent.
11266
68e6c83a
EL
112672000-05-18 Eric M. Ludlam <zappo@ultranet.com>
11268
11269 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
11270 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
11271 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
11272
dae6cb9f
DL
112732000-05-18 Dave Love <fx@gnu.org>
11274
11275 * info.el (Info-fontify-node): Add intangible property as well as
11276 invisible.
11277
11278 * calendar/appt.el (appt-make-list): Match all lines of entry.
11279 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
11280
813086ea
KH
112812000-05-18 Kenichi Handa <handa@etl.go.jp>
11282
11283 * international/mule-diag.el (describe-char-after): Call
11284 internal-char-font, not char-font. If internal-char-font returns
11285 nil, display "-- none --".
11286
24978190
EZ
112872000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
11288
11289 * image.el (image-type-available-p): Don't reference image-types
11290 if it isn't bound.
11291
2fca2d5d
SM
112922000-05-17 Stefan Monnier <monnier@cs.yale.edu>
11293
11294 * autoarg.el (autoarg-mode): Typo in the :set argument.
11295
cfc75d05
EZ
112962000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
11297
11298 * startup.el (command-line-1): Don't signal an error if the
11299 directory for auto-save-list files does not yet exist.
11300
c4e30387
KH
113012000-05-17 Kenichi Handa <handa@etl.go.jp>
11302
11303 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
11304
dd6b8ea7
SM
113052000-05-16 Stefan Monnier <monnier@cs.yale.edu>
11306
11307 * subr.el (remove-hook): `setq' hook-value, not `set'.
11308
399c88ad
SS
113092000-05-16 Sam Steingold <sds@gnu.org>
11310
a199a865 11311 * info.el (debug-ignored-errors): More errors to ignore.
399c88ad 11312
01651f07
DL
113132000-05-16 Dave Love <fx@gnu.org>
11314
11315 * cus-edit.el: Don't require cl or easymenu.
11316 (custom-variable-prompt): Test standard-value property, not
11317 user-variable-p.
11318
2248c40d
SS
113192000-05-16 Sam Steingold <sds@gnu.org>
11320
11321 * subr.el (add-hook): `setq' hook-value, not `set'.
11322
b15f3b77
GM
113232000-05-16 Gerd Moellmann <gerd@gnu.org>
11324
11325 * startup.el (command-line-1): Mention the FAQ in the startup
11326 message.
11327
11328 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
11329
11330 * progmodes/compile.el (compilation-parse-errors): Collect
11331 `nomessage' regexps last.
11332
11333 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
11334
11335 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
11336 to the function name.
11337
f9bbcfac
EL
113382000-05-15 Dave Love <fx@gnu.org>
11339
11340 * speedbar.el (speedbar-recenter): Typo.
11341 (speedbar-expand-line): Make arg optional.
11342 (speedbar-mode): Avoid a compiler warning.
11343
119b42eb
GM
113442000-05-15 Gerd Moellmann <gerd@gnu.org>
11345
11346 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
11347 user-specified option string is empty.
11348
11349 * mouse.el (mouse-yank-at-click): Doc fix.
11350
f685bea9
EZ
113512000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
11352
11353 * term/internal.el (IT-character-translations): More updates of
11354 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
11355 documents.
11356
a1b8d58b
GM
113572000-05-15 Gerd Moellmann <gerd@gnu.org>
11358
11359 * env.el (getenv): New function, interactively callable.
11360 (setenv, getenv): Remove autoload cookies.
11361
11362 * loadup.el: Load `env'.
11363
11364 * progmodes/f90.el: Change author's mail address.
11365
c9bba7ed
DL
113662000-05-14 Dave Love <fx@gnu.org>
11367
e5c83697
DL
11368 * mail/rmail.el (rmail-show-message-hook): Customize and offer
11369 goto-addr as an option.
11370
11371 * help.el (help-xref-stack): Doc fix.
11372 (help-xref-following): New variable.
11373 (help-make-xrefs): Use it.
11374 (help-xref-go-back): Use position information from stack element.
11375 (help-follow): Make position in stack element a pair. Use
11376 help-xref-following.
399c88ad 11377
e5c83697
DL
11378 * autoarg.el: New file.
11379
11380 * faces.el: Declare more functions obsolete.
11381
c9bba7ed
DL
11382 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
11383 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
11384 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
11385 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
11386 Remove all the setup-...-environment functions.
11387
b6389bfb
EL
113882000-05-13 Eric M. Ludlam <zappo@ultranet.com>
11389
a1b8d58b
GM
11390 * speedbar.el: Updated the commentary section. xemacs20p now uses
11391 >= when detecting. Require `defimage' safely.
b6389bfb
EL
11392 (speedbar-easymenu-definition-base): Add toggle for images.
11393 (speedbar-easymenu-definition-special): Add flush cache & expand.
11394 (speedbar-visiting-tag-hook): Set new defaults. Added options.
11395 (speedbar-reconfigure-keymaps-hook): New variable.
11396 (speedbar-frame-parameters): Updated documentation.
11397 (speedbar-use-imenu-flag): Updated custom tag
11398 (speedbar-dynamic-tags-function-list): New variable.
11399 (speedbar-tag-hierarchy-method): Updated doc & custom.
a1b8d58b
GM
11400 (speedbar-indentation-width, speedbar-indentation-width) New
11401 variables.
11402 (speedbar-hide-button-brackets-flag): Customizable.
b6389bfb
EL
11403 (speedbar-vc-indicator): Doc update.
11404 (speedbar-ignored-path-expressions): Updated default value.
11405 (speedbar-supported-extension-expressions): Updated default value.
11406 (speedbar-syntax-table): Remove {} paren status.
a1b8d58b
GM
11407 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
11408 as "+". Added overlay aliases.
11409 (speedbar-mode): Use `speedbar-mode-line-update' instead of
11410 `force-mode-line-update'.
11411 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
11412 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
11413 `mouse-set-point'
b6389bfb 11414 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
a1b8d58b
GM
11415 (speedbar-item-info-tag-helper): Revamped to handle a wider range
11416 of arbitrary text, and new helper functions.
11417 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
11418 filename finder.
b6389bfb
EL
11419 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
11420 (speedbar-directory-buttons): Update path search/expansion.
11421 (speedbar-make-tag-line): Pay attention to
a1b8d58b
GM
11422 `speedbar-indentation-width'. Use more care w/ invisible
11423 properties.
b6389bfb
EL
11424 (speedbar-change-expand-button-char): Call
11425 `speedbar-insert-image-button-maybe'.
11426 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
a1b8d58b
GM
11427 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
11428 (speedbar-trim-words-tag-hierarchy)
11429 (speedbar-simple-group-tag-hierarchy): New functions
b6389bfb 11430 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
a1b8d58b
GM
11431 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
11432 functions.
b6389bfb
EL
11433 (speedbar-mouse-set-point): New function
11434 (speedbar-power-click): Updated documentation.
a1b8d58b
GM
11435 (speedbar-line-token, speedbar-goto-this-file): Handle more types
11436 of tag prefix text.
11437 (speedbar-expand-line, speedbar-contract-line): Make more robust
11438 to strange text.
11439 (speedbar-expand-line): Takes universal argument to flush the
11440 cache.
b6389bfb
EL
11441 (speedbar-flush-expand-line): New function.
11442 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
11443 Use new generator insertion method.
11444 (speedbar-fetch-dynamic-tags): New function.
11445 (speedbar-fetch-dynamic-imenu): Removed code now handled in
11446 `speedbar-fetch-dynamic-imenu'.
11447 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
11448 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
11449 "Revert Buffer" menu items.
11450 (speedbar-buffer-buttons-engine): Be smarter when creating a
11451 filename tag (for expansion purposes.).
a1b8d58b
GM
11452 (speedbar-highlight-one-tag-line,
11453 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
11454 (speedbar-recenter): New functions.
b6389bfb 11455 (defimage-speedbar): Image loading abstraction.
a1b8d58b
GM
11456 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
11457 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
11458 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
11459 (speedbar-tag-type, speedbar-tag-mail): New images.
b6389bfb
EL
11460 (speedbar-expand-image-button-alist): New variable.
11461 (speedbar-insert-image-button-maybe): Insert an image over some
11462 buttons.
11463
43fe9244
KH
114642000-05-13 Kenichi Handa <handa@etl.go.jp>
11465
11466 * international/mule-cmds.el (encode-coding-char): An ASCII
11467 character is always encodable.
11468
11469 * international/mule-conf.el: Add more information in descriptions
11470 of character sets.
11471
813086ea 11472 * international/mule-diag.el (describe-char-after): New function.
43fe9244
KH
11473 (describe-font-internal): Adjusted for the change of font-info.
11474 (describe-font): Likewise.
11475 (print-fontset): Rewritten for the new fontset implementation.
11476 (describe-fontset): Include fontset alias names in completion.
11477 (list-fontsets): Adjusted for the change of print-fontset.
11478
11479 * simple.el (what-cursor-position): If DETAIL is non-nil, call
11480 describe-char-after instead of displaying the detail in the echo
11481 area.
813086ea
KH
11482 (syntax-code-table): Format changed.
11483 (string-to-syntax): Adjusted for the above change.
0e8c11d8 11484
e8564f57
SM
114852000-05-12 Stefan Monnier <monnier@cs.yale.edu>
11486
11487 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
11488
9278c60d
DL
114892000-05-12 Dave Love <fx@gnu.org>
11490
11491 * calendar/todo-mode.el: Remove some compatibility stuff and CL
11492 dependence. Use line-{beginning,end}-position, not
11493 point-at{b,e}ol. Some doc fixes.
11494 (todo-position): New function. Fix callers of position to use it.
11495 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
11496
be0505fe
GM
114972000-05-12 Gerd Moellmann <gerd@gnu.org>
11498
11499 * time.el (display-time-mail-icon): Use `:ascent center'.
11500
a8a3541c
GM
11501 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
11502 handling FTP security extensions.
399c88ad 11503
44d5f148
DL
115042000-05-11 Dave Love <fx@gnu.org>
11505
33d0c179 11506 * calendar/todo-mode.el: New file.
44d5f148 11507
da4496b6
GM
115082000-05-11 Gerd Moellmann <gerd@gnu.org>
11509
cdc4401d
GM
11510 * comint.el (comint-read-input-ring): Move reference to
11511 comint-input-ring-size outside of the save-excursion. It was
11512 causing the default value to be the only one ever seen.
399c88ad 11513
0279f991
GM
11514 * font-lock.el: Update copyright. Remove Simon Marshall's email
11515 address on request from him.
11516
da4496b6
GM
11517 * subr.el (substitute-key-definition): Add comment describing
11518 the meaning of PREFIX.
11519
ac5cb26d
SM
115202000-05-10 Stefan Monnier <monnier@cs.yale.edu>
11521
11522 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
11523
11524 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
11525 (add-minor-mode): Don't make the variable buffer-local and add a
11526 reference to define-minor-mode in the docstring.
11527
11528 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
11529 HEADER/FOOTER and fix bug with trailing empty directory.
11530 (cvs-append-to-ignore): Use vc-editable-p if available.
11531 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
11532 (vc-do-command): Tweak advice to handle the new VC.
11533
11534 * log-view.el (log-view-goto-rev): New function for the new VC.
11535 (log-view-minor-wrap): Use mark-active.
11536
11537 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
11538 (log-edit-changelog-full-paragraphs): New var.
11539 (log-edit-insert-changelog): Remove a lonely leading `* file'.
11540 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
11541 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
11542 (log-edit-changelog-ours-p, log-edit-changelog-entries)
11543 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
11544 Replace the `cvs' prefix with `log-edit'.
11545
11546 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
11547
11548 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
11549 (diff-font-lock-defaults): Explicitly turn off multiline.
11550 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
11551 (diff-ediff-patch): Fix call to ediff-patch-file.
11552 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
11553 Handle comments.
11554
11555 * frame.el (automatic-hscrolling): Typo.
11556
11557 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
11558
21c34da3
DL
115592000-05-09 Sam Steingold <sds@goems.com>
11560
11561 * apropos.el (apropos-print): use `describe-face' instead of
11562 `customize-face-other-window'.
11563
950cf06f
DL
115642000-05-09 Dave Love <fx@gnu.org>
11565
11566 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
11567
11568 * help.el (describe-variable): Have customize button pop the
11569 help-xref stack when invoked.
11570 (help-xref-symbol-regexp): Add `face'.
11571 (help-make-xrefs): Check for quoted face names and adapt regexp
11572 submatch numbers to cope.
11573 (help-xref-interned): Maybe insert face doc too. Separate
11574 sections with a line of hyphens.
11575
0623e40f 11576 * faces.el: Some doc fixes. Declare some functions obsolete.
950cf06f
DL
11577 (describe-face): Add customize button. Return the help
11578 text. Fix prompt.
11579
82e2ca9d
EZ
115802000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
11581
11582 * term/internal.el (IT-character-translations): Fix last change.
11583
10c00b5c
EZ
115842000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
11585
11586 * woman.el: New file
11587 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
11588
9deed82f
EZ
115892000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
11590
001ad319
EZ
11591 * term/internal.el (IT-character-translations): Update ASCII
11592 simulations for greek-iso8859-7, add latin-iso8859-14 and
11593 latin-iso8859-15.
11594
9deed82f
EZ
11595 * international/mule-cmds.el (set-language-info-alist): Call
11596 define-prefix-command with 3 arguments, to make the map suitable
11597 for a menu.
11598
4f37b78a
DL
115992000-05-07 Dave Love <fx@gnu.org>
11600
1ec321a7 11601 * time.el: Small doc fixes from Pavel Jan\e,Am\e(Bk ml.
4f37b78a 11602
64a4c526
DL
116032000-05-05 Dave Love <fx@gnu.org>
11604
11605 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
11606 list in doc string. Don't quote keyword symbols.
11607 * emacs-lisp/cl.el: Likewise
11608 * emacs-lisp/cl-seq.el: Likewise
11609
056565f7
GM
116102000-05-05 Gerd Moellmann <gerd@gnu.org>
11611
11612 * abbrev.el (abbrev-mode): Make ARG optional.
11613
4656b314
GM
116142000-05-04 Gerd Moellmann <gerd@gnu.org>
11615
ec82fb2f
GM
11616 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
11617
11618 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
11619
4656b314
GM
11620 * subr.el (substitute-key-definition): Clarify documentation.
11621
116222000-05-04 Milan Zamazal <pdm@freesoft.cz>
11623
11624 * glasses.el (glasses-convert-to-unreadable): Use
11625 `glasses-separator' instead of the hard-wired "_".
11626 (glasses-mode): Call `glasses-make-unreadable' only in a single
11627 place.
11628
7b081c78
EZ
116292000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
11630
11631 * term/internal.el (cjk-codepages-alist): Add associations for
11632 Chinese and Korean codepages. Remove FIXME comment.
11633
baa5536e
DL
116342000-05-03 Dave Love <fx@gnu.org>
11635
11636 * time.el (display-time-mail-face, display-time-use-mail-icon):
11637 New option.
11638 (display-time-mail-icon): New variable.
11639 (display-time-string-forms): Use the above. Fix the local-map.
11640
cbf18892
GM
116412000-05-03 Gerd Moellmann <gerd@gnu.org>
11642
4ff40dd0
GM
11643 * replace.el (query-replace-map): Add binding for `E'.
11644 (query-replace-help): Extend help text.
11645 (perform-replace): Allow editing the replacement string.
11646
11647 * make-mode.el (makefile-mode-abbrev-table): New variable.
11648 (makefile-mode): Set local abbrev table to
11649 makefile-mode-abbrev-table.
11650 (makefile-font-lock-keywords): Fontify includes and conditionals.
399c88ad 11651
cbf18892
GM
11652 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
11653 set TOGGLE's value.
11654
4ff40dd0
GM
11655 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
11656 mail-interactive-insert-alias.
11657 (mail-abbrev-complete-alias): New command.
11658 (mail-mode-map): Bind it to `M-TAB'.
399c88ad 11659
ffec4d9f
KH
116602000-05-03 Kenichi Handa <handa@etl.go.jp>
11661
11662 * language/lao-util.el (lao-compose-region): New function.
11663
1b0672c3
GM
116642000-05-02 Gerd Moellmann <gerd@gnu.org>
11665
576da55d
GM
11666 * files.el (recover-session): Make directories as necessary
11667 if they don't exist yet.
11668
399c88ad
SS
11669 * calendar/cal-french.el
11670 (french-calendar-multibyte-special-days-array)
1b0672c3
GM
11671 (french-calendar-special-days-array): Change French text.
11672 (calendar-french-date-string): Change output.
11673 (calendar-goto-french-date): Likewise.
11674
116752000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
11676
11677 * wid-edit.el (widget-default-active): Obey `:always-active'.
11678 (widget-documentation-string-value-create): Set `:always-active'.
11679
4b33deaa
EZ
116802000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
11681
11682 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
11683 default prefix to `~/_emacs.d/auto-save.list/_s'.
11684 (normal-top-level): Create the directory for auto-save files, if
11685 it doesn't already exist (in the ms-dos case only).
11686
5c922ea7
EZ
116872000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
11688
11689 * international/mule-cmds.el (set-language-environment): Don't
11690 concat an integer (dos-codepage), use format instead.
11691
820ad5e7
DL
116922000-05-02 Dave Love <fx@gnu.org>
11693
11694 * help.el (help-xref-on-pp): Check for constant symbols.
11695
57cb56f5
GM
116962000-04-29 Gerd Moellmann <gerd@gnu.org>
11697
11698 * startup.el (normal-top-level): Put a condition-case around
11699 the code loading subdirs.el.
11700
117012000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
399c88ad 11702
57cb56f5
GM
11703 * ps-print.el: Upside-down and face background color printing,
11704 line number step, doc fix.
11705 (ps-print-version): New version number (5.2).
11706 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
11707 (ps-face-attribute-list, ps-plot-with-face): Code fix.
11708 (ps-spool-config): Var fix.
11709 (ps-printer-name-option): Const fix.
11710 (ps-print-upside-down, ps-use-face-background)
11711 (ps-line-number-step): New vars.
11712 (ps-window-system, ps-lp-system): New consts.
11713 (ps-face-background): New fun.
11714
084cec2f
GM
117152000-04-28 Richard Stallman <rms@gnu.org>
11716
11717 * files.el (make-auto-save-file-name):
11718 Apply auto-save-file-name-transforms to visited file name
11719 before generating auto save file name.
11720 (auto-save-file-name-transforms): New variable.
11721
399c88ad 11722 * files.el (backup-enable-predicate):
084cec2f
GM
11723 Correctly test for a file under a temporary directory.
11724
c94f4677
GM
117252000-04-28 Gerd Moellmann <gerd@gnu.org>
11726
11727 * subr.el (add-minor-mode): Rewritten.
11728
7b211df5
KH
117292000-04-28 Kenichi Handa <handa@etl.go.jp>
11730
11731 * mail/sendmail.el (sendmail-send-it): Set
11732 buffer-file-coding-system to the selected coding system for MIME
11733 header.
11734
c76e04a8 117352000-04-27 Gerd Moellmann <gerd@gnu.org>
e3e36d74 11736
c76e04a8
GM
11737 * dired.el (dired-move-to-filename-regexp): Allow format where
11738 YYYY is followed by two spaces.
e3e36d74 11739
c76e04a8
GM
11740 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
11741 in the second character class of the regexp.
11742
11743 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
11744 mh-etc, too.
353964e3 11745
c76e04a8
GM
11746 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
11747 nil.
399c88ad 11748
353964e3
GM
11749 * subr.el (add-minor-mode): Use `set' instead of `setq'.
11750
11751 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
11752 argument.
11753
c76e04a8 117542000-04-27 Sen Nagata <sen@eccosys.com>
399c88ad 11755
c76e04a8
GM
11756 * emacs-lisp/crm.el (crm-completion-table): New variable.
11757 (crm-collection-fn, crm-test-completion)
11758 (completing-read-multiple): Use it.
11759
117602000-04-27 Dave Love <fx@gnu.org>
11761
11762 * help.el (locate-library): Use mapc.
11763 (help-manyarg-func-alist): Add call-process-region.
11764
7464346d
GM
117652000-04-26 Gerd Moellmann <gerd@gnu.org>
11766
b35bd33d
GM
11767 * subr.el (add-minor-mode): Make argument MAP optional.
11768
7464346d
GM
11769 * desktop.el (desktop-save): Save list of minor modes.
11770 (desktop-create-buffer): Restore minor modes.
11771 (desktop-minor-mode-table): New user-option.
11772
11773 * subr.el (add-minor-mode): New function.
11774
11775 * image.el (find-image): New function.
11776 (defimage): Rewritten to find image at load time.
11777
11778 * startup.el (normal-top-level-add-to-load-path): Handle
11779 case that the default directory is not in load-path.
11780
11781 * help.el: Old patch from Stefan Monnier.
11782 (help-xref-on-pp): New function.
11783 (describe-variable): Use it to display xrefs in a symbol's value.
11784
23c0fb21
SM
117852000-04-26 Stefan Monnier <monnier@cs.yale.edu>
11786
11787 * cus-edit.el (custom-face): Fix parenthesis.
11788
fad95037
KH
117892000-04-26 Kenichi Handa <handa@etl.go.jp>
11790
f03392a1
KH
11791 * mail/rmail.el (rmail-expunge): When there are no deleted
11792 messages, do nothing.
fad95037 11793
0d7c5bb9
DL
117942000-04-26 Dave Love <fx@gnu.org>
11795
11796 * international/mule-cmds.el (locale-translation-file-name):
11797 Defvar to nil.
11798 (set-locale-environment): Set it here (at runtime).
11799
612839b6
GM
118002000-04-25 Gerd Moellmann <gerd@gnu.org>
11801
11802 * replace.el (perform-replace): Add parameters START and END. Use
11803 them instead of the check for a region in Transient Mark mode.
11804 (query-replace-read-args): Return two more list elements for the
11805 start and end of the region in Transient Mark mode.
11806 (query-replace, query-replace-regexp, query-replace-regexp-eval)
11807 (map-query-replace-regexp, replace-string, replace-regexp): Add
11808 optional last arguments START and END and pass them to
11809 perform-replace.
11810
11811 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
11812 form with additional arguments for perform-replace.
11813
11814 * progmodes/etags.el (tags-query-replace): Add parameters START
11815 and END. Construct a form with additional arguments for
11816 perform-replace.
11817
11818 * simple.el (shell-command): Set default directory for "*Shell
11819 Command Output" buffer.
11820
11821 * language/european.el (iso-latin-4): Fix typo.
11822
11823 * emacs-lisp/crm.el: New file.
11824
2917cc05
DL
118252000-04-24 Dave Love <fx@gnu.org>
11826
11827 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
11828 (Custom-reset-saved, Custom-reset-standard)
11829 (custom-group-value-create, custom-group-set, custom-group-save)
11830 (custom-group-reset-current, custom-group-reset-saved)
11831 (custom-group-reset-standard): Use mapc.
11832 (custom-buffer-create-internal): Disable undo when creating items.
11833 Use mapc.
11834 (custom-face): Avoid redundant lambda.
11835
abfcc168
GM
118362000-04-24 Gerd Moellmann <gerd@gnu.org>
11837
11838 * startup.el (auto-save-list-file-prefix): Set default to
11839 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
11840
fa78f71b
SS
118412000-04-24 Sam Steingold <sds@gnu.org>
11842
11843 * time-stamp.el (time-stamp-string-preprocess): Always convert
11844 `field-result' to a string.
11845
cc181e95
GM
118462000-04-24 Gerd Moellmann <gerd@gnu.org>
11847
11848 * frame.el (scrolling): New group.
11849 (automatic-hscrolling): New user-option.
11850
11851 * startup.el (command-line-x-option-alist): Add `-lsp' and
11852 `--line-spacing'.
11853
6142fdcb
DL
118542000-04-19 Dave Love <fx@gnu.org>
11855
11856 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
11857 (cl-mapc): Rename from mapc. Fix the funcall.
11858
5e3dac3f
GM
118592000-04-19 Gerd Moellmann <gerd@gnu.org>
11860
1c459486
GM
11861 * simple.el (clone-indirect-buffer-other-window): New command.
11862 (clone-indirect-buffer): Add optional arg NORECROD.
11863 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
11864
271b4185
GM
11865 * help.el (resize-temp-buffer-window): Use count-screen-lines.
11866
11867 * window.el (count-screen-lines): New function.
11868 (shrink-window-if-larger-than-buffer): Use count-screen-lines
11869 instead of window-buffer-height.
11870
11871 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
11872 non-existing variable comint-input-sentinel.
11873 (inferior-lisp-args-to-list): Removed.
11874 (inferior-lisp): Use split-string instead of
11875 inferior-lisp-args-to-list.
11876
11877 * hexl.el (hexl-insert-hex-string): New command.
11878
5e3dac3f
GM
11879 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
11880 instead of concat.
11881
f6d3257b
GM
118822000-04-18 Gerd Moellmann <gerd@gnu.org>
11883
11884 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
11885 at the start of an existing but empty folder.
11886
118872000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11888
11889 * ps-mule.el: Customization fix, doc fix.
11890 (ps-multibyte-buffer): Customization fix.
11891
8b7bc628 118922000-04-17 Richard M. Stallman <rms@gnu.org>
e61482c0
RS
11893
11894 * subr.el (read-passwd): Use read-char-exclusive.
11895
0daee095
GM
118962000-04-17 Gerd Moellmann <gerd@gnu.org>
11897
11898 * textmodes/texinfo.el (texinfo-insert-@email)
11899 (texinfo-insert-@emph, texinfo-insert-@quotation)
11900 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
11901 (texinfo-mode-map): Add key bindings for them.
11902
11903 * files.el (basic-save-buffer-2): Use a template with `$'
11904 instead of `#' for VMS.
11905
11906 * simple.el (clone-indirect-buffer): New function.
11907
e10f64e7
GM
119082000-04-16 Stephen Eglen <stephen@gnu.org>
11909
11910 * iswitchb.el (iswitchb-case): New function. If the user input
11911 contains any upper-case characters, the search is made
11912 case-sensitive.
11913
e3721db1
SM
119142000-04-17 Stefan Monnier <monnier@cs.yale.edu>
11915
e10f64e7
GM
11916 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
11917 comment-end.
e3721db1
SM
11918 (texinfo-font-lock-syntactic-keywords): New var.
11919 (texinfo-font-lock-keywords): Remove comment regexp.
11920 (texinfo-insert-block): New function.
11921 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
e10f64e7
GM
11922 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
11923 and font-lock-defaults. Use regexp-opt for outline-regexp.
e3721db1 11924 (texinfo-environments): New var.
e10f64e7
GM
11925 (texinfo-environment-regexp): Use regexp-opt and
11926 texinfo-environments.
e3721db1 11927
e10f64e7
GM
11928 * textmodes/ispell.el (ispell-menu-map-needed): Check that
11929 ispell-process is bound since this might be eval'd before ispell
11930 is loaded.
11931 (ispell-message): Use a tiny bit less magic and a bit more hard
11932 data to figure out what kind of sc-cite-regexp to use.
e3721db1
SM
11933
11934 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
11935
11936 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
11937 (insert-cyclic-diary-entry): Unquote the lambda.
11938
11939 * gud.el (gud-jdb-build-source-files-list): Fix typo.
11940
11941 * files.el (backup-enable-predicate): Unquote the lambda.
11942
11943 * cus-edit.el (custom-face, face): Unquote the lambda.
11944
712dc9e0
GM
119452000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11946
11947 * ps-print.el: Check for line-beginning-position definition.
fa78f71b 11948
712dc9e0
GM
11949 * ps-print.el: Fix counting lines in a region.
11950 (ps-print-version): New version number (5.1.5).
11951 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
11952 (ps-printing-region): Fun code fix.
11953
ffc50f2a
GM
119542000-04-15 Gerd Moellmann <gerd@gnu.org>
11955
11956 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
11957 to file-directory-p.
11958
a2522dca
GM
119592000-04-14 Gerd Moellmann <gerd@gnu.org>
11960
11961 * gud.el (gud-jdb-build-source-files-list): Check that directory
11962 exists before calling directory-files.
11963
6e883610
DL
119642000-04-13 Dave Love <fx@gnu.org>
11965
11966 * emacs-lisp/trace.el: Change maintainer. Use new backquote
11967 syntax.
11968
11969 * emacs-lisp/cl-specs.el: Remove when, unless.
11970
11971 * emacs-lisp/cl-extra.el: Don't quote keywords.
11972 (cl-old-mapc): New variable.
11973 (mapc): Use it.
11974 (cl-map-intervals): Use with-current-buffer. Don't check for
11975 next-property-change.
11976 (cl-map-overlays): Use with-current-buffer.
11977 (cl-expt): Remove.
11978 (copy-tree, remprop): Define unconditionally.
11979
11980 * emacs-lisp/cl-compat.el (keywordp): Remove.
11981
11982 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
11983 to use keywordp.
11984 (edebug-spec): Enable keywordp.
11985
11986 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
11987 string-lessp.
11988
11989 * cus-start.el: Use keywordp.
11990
198e3c7a
GM
119912000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
11992
11993 * diary-lib.el (include-other-diary-files): Fix the fix of
11994 2000-02-18 by doing a save-excursion.
11995
119962000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11997
11998 * ps-print.el: Customization fix, doc fix.
11999 (ps-print-version): New version number (5.1.4).
12000 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
12001 (ps-print-preprint): Adjust code.
12002 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
12003 (ps-print-prologue-header, ps-print-control-characters)
12004 (ps-spool-config): Customization fix.
fa78f71b 12005
8eba343c
EZ
120062000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
12007
12008 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
12009 converted to the new menu-item format, names silightly changed,
12010 help strings added.
12011
12012 Support for spelling without async subprocesses:
12013
12014 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
12015 (ispell-session-buffer): New variables.
12016 (ispell-start-process, ispell-process-status,
12017 ispell-accept-output, ispell-send-string): New functions, for
12018 Ispell invocation when async subprocesses aren't supported.
12019 (ispell-word, ispell-pdict-save, ispell-command-loop,
12020 ispell-process-line, ispell-buffer-local-parsing): Replace calls
12021 to process-send-string with calls to ispell-send-string, and
12022 accept-process-output with ispell-accept-output.
12023 (ispell-init-process): Call ispell-process-status instead of
12024 process-status with.
12025 (ispell-init-process): Call ispell-start-process. Call
12026 ispell-accept-output and ispell-send-string. Don't call
12027 process-kill-without-query and kill-process if they are unbound.
12028 (ispell-async-processp): New function.
12029
3d30065d
DL
120302000-04-12 Dave Love <fx@gnu.org>
12031
12032 * info.el: Add debug-ignored-errors.
12033 (Info-mode-menu): Add some items.
12034 (Info-directory): Add autoload cookie.
12035
12036 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
12037 Modify `truncate-lines'. Make `describe-language-environment'
12038 always visible and add help. Modify `describe-key' help. Invoke
12039 Info-directory from `info'. New entry `emacs-manual'.
12040
1a1b1895
GM
120412000-04-10 Gerd Moellmann <gerd@gnu.org>
12042
8b2affc5
GM
12043 * progmodes/ebrowse.el (ebrowse-tree-mode): Use
12044 propertized-buffer-identification.
12045 (ebrowse-update-member-buffer-mode-line): Likewise.
12046 (ebrowse--mode-strings): Removed.
12047 (ebrowse--mode-line-props): Removed.
12048
1a1b1895
GM
12049 * files.el (auto-mode-alist): Add `EBROWSE'.
12050
12051 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
12052 space before testing for end of buffer.
12053 (ebrowse-load): Removed.
12054 (ebrowse-revert-tree-buffer-from-file): Rewritten.
12055 (ebrowse-create-tree-buffer): Rewritten.
12056 (ebrowse-tree-mode): Read tree from buffer.
12057
12058 * progmodes/ebrowse-ffh.el: Removed.
12059
223f3c91
KH
120602000-04-10 Kenichi Handa <handa@etl.go.jp>
12061
12062 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
12063
25fbf2c4
GM
120642000-04-10 Gerd Moellmann <gerd@gnu.org>
12065
12066 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
12067 at the wrong place.
12068
92c13173
DL
120692000-04-09 Dave Love <fx@gnu.org>
12070
12071 * files.el (backup-enable-predicate): Use
12072 temporary-file-directory, small-temporary-file-directory.
12073 (make-backup-file-name-function, backup-directory-alist): New
12074 variables.
12075 (make-backup-file-name-1): New function.
12076 (make-backup-file-name): Use it.
12077 (find-backup-file-name): Likewise. Use format for clarity, not
12078 concat.
12079 (file-newest-backup): Use make-backup-file-name.
12080
be0dbdab
GM
120812000-04-09 Gerd Moellmann <gerd@gnu.org>
12082
c45be9ac 12083 * progmodes/ebrowse-ffh.el: New file.
fa78f71b 12084
c45be9ac
GM
12085 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn): Moved
12086 to ebrowse-ffh.el.
12087 (ebrowse-load): Add autoload.
12088
12089 * finder.el (finder-commentary): Add autoload cookie.
12090
be0dbdab
GM
12091 * mail/rfc2368.el: Correct author's email address.
12092
12093 * progmodes/ebrowse.el: New file.
12094
12095 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
12096 item help string.
12097 (easy-menu-do-add-item): Ditto.
12098 (easy-menu-define): Extend doc string.
12099
12100 * jit-lock.el (with-buffer-unmodified): Use
12101 restore-buffer-modified-p.
12102 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
12103 (jit-lock-function, jit-lock-stealth-fontify): Don't use
12104 with-buffer-unmodified.
12105
3f923efe
DL
121062000-04-08 Dave Love <fx@gnu.org>
12107
12108 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
12109 unless, when.
12110
d35bee0e
MK
121112000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
12112
12113 * viper-util.el (viper-put-on-search-overlay): New subroutine.
12114 (viper-flash-search-pattern): No operation when using Emacs
fa78f71b 12115 doesn't support face.
d35bee0e 12116 Use `viper-put-on-search-overlay'.
fa78f71b 12117
c407c570
GM
121182000-04-04 Gerd Moellmann <gerd@gnu.org>
12119
12120 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
12121 like C-r.
12122
12123 * progmodes/make-mode.el: Some doc fixes.
12124 (makefile-mode-abbrev-table): New variable.
12125 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
12126 (makefile-font-lock-keywords): Fontify includes and conditionals.
12127 (toplevel): Require `dabbrev' and `add-log' when compiling.
12128
12129 * replace.el (perform-replace): Don't move forward one char
12130 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
12131 to do that because it leaves point 1 position after the last
12132 replacement, after everything has been replaced.
12133
12134 * jit-lock.el (with-buffer-unmodified): New macro.
12135 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
12136 modified state.
12137 (jit-lock-function-1): Extracted from jit-lock-function; not
12138 preserving buffer's modified state.
12139 (jit-lock-function, jit-lock-stealth-fontify): Call
12140 jit-lock-function-1.
12141
12142 * mail/rfc2368.el: Remove supernumerary copyright line.
12143
685e5ed2
GM
121442000-04-04 Milan Zamazal <pdm@freesoft.cz>
12145
12146 * glasses.el: Provide facilities for inserting space before left
12147 parentheses and uncapitalization of identifiers.
12148 (glasses-mode): Try to remove old overlays in all cases.
12149
0166aed1
GM
121502000-04-03 Gerd Moellmann <gerd@gnu.org>
12151
62f20204
GM
12152 * progmodes/compile.el (compile-internal): Display the compilation
12153 buffer in a different frame, if it's already displayed there.
12154
6460c400
GM
12155 * mail/rfc2368.el: New file.
12156
c0510d27
GM
12157 * simple.el (sendmail-user-agent-compose): Recognize a `body'
12158 header and insert its value as mail body.
12159
12160 * subr.el (member-ignore-case): New function.
12161
12162 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
12163 (dabbrev--find-expansion): Ignore buffers matching a regexp
12164 from dabbrev-ignored-regexps.
12165
0166aed1
GM
12166 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
12167 to extensions handled by gzip.
12168
c0510d27
GM
121692000-04-03 Richard M. Stallman <rms@gnu.org>
12170
12171 * files.el (insert-directory): List the total free space
12172 along with the used space.
fa78f71b 12173
c0510d27
GM
12174 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
12175 line is followed by one that matches CITATION-REGEXP, end the
12176 paragraph.
12177
121782000-04-03 Markus Rost <rost@delysid.gnu.org>
12179
12180 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
12181 (rmail-make-basic-summary-line): Use that option.
fa78f71b 12182
14c04384
KH
121832000-04-03 Kenichi Handa <handa@etl.go.jp>
12184
12185 * international/mule-cmds.el (encoded-string-description):
12186 Rewritten. Try pretty description for ISO 2022 escape sequences
3a100fd6
KH
12187 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
12188 for hexadecimal format.
14c04384 12189
ccf5869a
DL
121902000-04-01 Dave Love <fx@gnu.org>
12191
12192 * cpp.el: Change customization group to `c' from `C'.
12193
12194 * vcursor.el (vcursor-move): Use display-color-p.
12195
12196 * international/mule-util.el: Provide mule-utils.
12197 (string-to-sequence): Simplify and speed up.
12198
12199 * international/mule.el (make-coding-system): Purecopy doc-string.
12200
12201 * international/mule-cmds.el: Various menu changes.
12202 (describe-specified-language-support): Handle `Default'.
12203 (set-language-info): Purecopy `info'.
12204
610d841e
GM
122052000-03-31 Andrew Innes <andrewi@gnu.org>
12206
12207 * vc.el (vc-backend-diff): Return the correct status if we had to
12208 retry the rcsdiff command without the --brief option.
fa78f71b 12209
7f9de034
DL
122102000-03-31 Dave Love <fx@gnu.org>
12211
2de47765
DL
12212 * help.el (help-manyarg-func-alist): Correct several omissions.
12213
72838819
DL
12214 * add-log.el: Don't require cl, fortran.
12215 (add-log-current-defun-function): Doc fix.
12216 (change-log-version-number-regexp-list): Remove SCCS part. Doc
12217 fix.
12218 (change-log-version-rcs): Function deleted.
12219 (change-log-version-number-search): Doc fix. Use
12220 vc-workfile-version. Avoid CL dolist.
12221 (add-change-log-entry): Just call add-log-current-defun to get
12222 defun. Simplify somewhat.
12223 (change-log-get-method-definition-1): Likewise.
12224 (add-log-current-defun): Return nil if calling
12225 add-log-current-defun-function does so. Move Fortran stuff to
12226 fortran.el. Return string without properties.
12227
7f9de034
DL
12228 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
12229 and :alpha: char classes.
12230
12231 * mail/supercite.el: Defvar curline when compiling.
12232 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
12233 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
12234 rather than a-zA-Z0-9 to allow non-ASCII characters.
12235
aa110c0c
GM
122362000-03-31 Gerd Moellmann <gerd@gnu.org>
12237
12238 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
12239
12240 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
12241 Re-enable new code.
12242
12243 * lpr.el (print-region-1): Use -d to specify printer name for
12244 systems `usg-unix-v*, `dgux', `hpux', `irix'.
12245
122462000-03-31 Dave Love <fx@gnu.org>
fa78f71b 12247
aa110c0c
GM
12248 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Look
12249 for function definition in symbol's function value slot first
12250 instead of first consulting byte-compile-function-environment.
fa78f71b 12251
6733d074
KH
122522000-03-31 Kenichi Handa <handa@etl.go.jp>
12253
12254 * language/european.el ("Polish"): New language environment.
12255 (setup-polish-environment): New function.
12256
63fcfa04
GM
122572000-03-30 Gerd Moellmann <gerd@gnu.org>
12258
12259 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
12260 Disable new code.
12261
12262 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
12263 trying to `load' the symbol of an autoload instead of the file
12264 recorded in the autoload. Fix error messages.
12265
7438c86b
GM
122662000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12267
12268 * ps-print.el: PostScript programming fix for ghostview, doc fix.
12269 (ps-print-version): New version number (5.1.3).
12270 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
12271 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
12272 (ps-generate-postscript-with-faces): Code fix.
12273 (ps-color-values): XEmacs compatibility.
12274 (ps-print-background-image, ps-print-background-text, ps-printer-name)
12275 (ps-default-fg, ps-default-bg): Adjust customization.
12276 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
12277 (ps-color-scale): Renaming old ps-color-value fun.
12278 (ps-print-headers): Replace ps-print-header group to avoid conflict
12279 with ps-print-header variable.
12280 (ps-print-miscellany): New group.
12281 (ps-format-color, ps-rgb-color): New funs.
12282 (ps-default-foreground): New var.
12283 (ps-printer-name-option): New const.
fa78f71b 12284
326855a0
PB
122852000-03-30 Peter Breton <pbreton@ne.mediaone.net>
12286
1f56ba73
PB
12287 * net/net-utils.el:
12288 (network-connection-host, network-connection-service): New variables
12289 (network-connection-mode): New mode, derived from comint-mode
12290 (network-connection-mode-setup): New function, saves host and
fa78f71b 12291 service information in local variables.
1f56ba73 12292
326855a0
PB
12293 * lisp/locate.el:
12294 (locate-word-at-point): Added this function
12295 (locate): Default to using locate-word-at-point as input
12296 Run dired-mode-hook
12297
141384bd
DL
122982000-03-29 Dave Love <fx@gnu.org>
12299
12300 * calendar/appt.el: Doc fixes.
12301 (appt-check): Convert min-to-app to a string before passing to
12302 appt-disp-window-function or concat.
12303 (appt-delete-window): Remove test for frame-root-window.
12304 (appt-select-lowest-window, appt-convert-time): Simplify.
12305
12306 * emacs-lisp/bytecomp.el: Doc fixes.
12307 (byte-compile-file-form-autoload): Update
12308 byte-compile-function-environment.
12309
c5aa0fc2
AS
123102000-03-29 Andreas Schwab <schwab@suse.de>
12311
12312 * emacs-lisp/autoload.el: Also print defsubst doc string
12313 specially.
12314
12315 * dired.el (dired-insert-directory): If dired-free-space-program
12316 failed just delete its output.
12317
f1d6fe69
DL
123182000-03-29 Dave Love <fx@gnu.org>
12319
12320 * international/iso-cvt.el: Move provide to end. Doc fixes.
12321 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
12322 (iso-iso2sgml, iso-sgml2iso): New functions.
12323 (iso-cvt-define-menu): Fix some entries and use backquote for
12324 clarity.
12325
12326 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
12327
b61f1215
GM
123282000-03-28 Gerd Moellmann <gerd@gnu.org>
12329
12330 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
12331 ISO-DATE. If non-nil, return date in ISO 8601 format.
12332
ea4b0ca3
SM
123332000-03-26 Stefan Monnier <monnier@cs.yale.edu>
12334
3831af62
SM
12335 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
12336 if it ever becomes used.
12337 (log-edit-mode-hook): Default to vc-log-mode-hook.
12338 (log-edit-mode): Fix the docstring.
12339
ea4b0ca3
SM
12340 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
12341 the code.
12342
08f8b1cc
DL
123432000-03-26 Dave Love <fx@gnu.org>
12344
082527fe
DL
12345 * net/browse-url.el (browse-url): Re-fix case of
12346 browse-url-browser-function being an alist.
12347 (browse-url): Add :link to defgroup.
12348
08f8b1cc
DL
12349 * files.el: Doc fixes.
12350 (file-truename): Include `[' in wildcard characters.
12351 (automount-dir-prefix): Customize.
12352 (find-file-wildcards): Add :version.
12353 (find-file-noselect): Simplify a mapcar call.
12354
12355 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
12356 compatible with inf-lisp version.
12357 (eval-defun-1): Fix custom-declare-variable case.
12358
ea4b0ca3
SM
123592000-03-25 Stefan Monnier <monnier@cs.yale.edu>
12360
12361 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
12362
9a0dd3dc
GM
123632000-03-24 Gerd Moellmann <gerd@gnu.org>
12364
b68c375f
GM
12365 * Makefile (COMPILE_FIRST): New macro.
12366 (compile-files): Compile files from COMPILE_FIRST first.
12367
12368 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new
12369 code.
12370
9a0dd3dc
GM
12371 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
12372 matching open parenthesis in column 0 to defun-prompt-regexp
12373 only if open-paren-in-column-0-is-defun-start is set.
12374
12375 * sun-curs.el: Require CL at compile-time only.
12376
12377 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
12378 instead of copy-list which is a function from CL.
12379 (msb--choose-menu, msb--mode-menu-cond)
12380 (msb--create-buffer-menu-2): Use dolist instead of mapc.
12381 (msb--init-file-alist): Use mapcar instead of mapcan.
12382 (msb--aggregate-alist): Use mapcar instead of mapcan. Fix
12383 `(' in column 0 in doc string.
12384 (msb--add-separators): Use mapcar instead of mapcan.
12385
12386 * cus-dep.el: Require CL at compile-time only.
12387
c7dcadb5
SM
123882000-03-24 Stefan Monnier <monnier@cs.yale.edu>
12389
12390 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
12391 (byte-compile-warnings): New warning `noruntime'.
12392 (byte-compile-constants, byte-compile-variables): Fix docstring.
12393 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
12394 execute `eval-whenc-compile's body.
12395 (byte-compile-unresolved-functions): Fix docstring.
12396 (byte-compile-eval): New function.
12397 (byte-compile-callargs-warn): Check if the function will be available
12398 at runtime (via property `byte-compile-noruntime').
12399 (byte-compile-print-syms): New function.
12400 (byte-compile-warn-about-unresolved-functions): Also warn about
12401 `noruntime' functions (and use `byte-compile-print-syms').
12402 (byte-compile-file): Capitalize the message.
12403
3b55acc9
GM
124042000-03-24 Gerd Moellmann <gerd@gnu.org>
12405
12406 * mail/rmail.el (rmail-confirm-expunge): New user-option.
12407 (rmail-expunge): Ask for confirmation depending on the setting
12408 of rmail-confirm-expunge.
12409
124102000-03-23 Gerd Moellmann <gerd@gnu.org>
12411
12412 * Makefile (bootstrap-clean): If $(emacs) exists, build
12413 loaddefs.el first. A loaddefs.el that's not up-to-date might
12414 cause a bootstrap failure because things don't autoload as
12415 expected.
12416
02c76af4
DL
124172000-03-23 Dave Love <fx@gnu.org>
12418
12419 * net/browse-url.el: Restore previous use of
12420 browse-url-maybe-new-window.
12421
1a3199d9
GM
124222000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12423
12424 * ps-print.el: Skip banner page fix.
12425 (ps-print-version): New version number (5.1.2).
12426 (ps-begin-file, ps-end-file, ps-generate): Code fix.
fa78f71b 12427
1a3199d9
GM
124282000-03-23 Dave Pearson <davep@davep.org>
12429
12430 * net/quickurl.el Changed the type of parameter passed to the
12431 function defined by `quickurl-format-function'. Before only the
12432 text of the URL was passed. Now the whole URL structure is passed
12433 and the function is responsible for extracting the parts it
12434 requires. Changed the default of `quickurl-format-function'
12435 accordingly.
12436 (quickurl-insert): Changed the `funcall' of
12437 `quickurl-format-function' to match the above change.
12438 (quickurl-list-insert): Changed the `url' case so that it makes
12439 use of `quickurl-format-function', previous to this the format was
12440 hard wired.
fa78f71b 12441
72db3ab5
GM
124422000-03-22 Gerd Moellmann <gerd@gnu.org>
12443
12444 * startup.el: Change some spellings for the X Window System.
12445
68049bfa
SM
124462000-03-22 Stefan Monnier <monnier@cs.yale.edu>
12447
12448 * progmodes/make-mode.el (makefile-warn-suspicious-lines): clean
12449 up the code and the regexp and make sure the cursor is temporarily
12450 moved to the suspicious line while querying the user.
12451
ff4df011
JR
124522000-03-22 Jason Rumney <jasonr@gnu.org>
12453
12454 * w32-fns.el (w32-charset-info-alist): Initialize.
12455
ee1c5b21
GM
124562000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12457
12458 * ps-print.el: N-up last page fix.
12459 (ps-print-version): New version number (5.1.1).
12460 (ps-end-file, ps-end-job, ps-generate): Code fix.
fa78f71b 12461
d2cbfba0
SM
124622000-03-21 Stefan Monnier <monnier@cs.yale.edu>
12463
bfb857d8
SM
12464 * files.el (find-file-run-dired): Update docstring.
12465 (find-directory-functions): New hook.
12466 (find-file-noselect): Run find-directory-functions rather than
12467 calling dired directly.
12468
12469 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
12470
cb3430a1
SM
12471 * pcvs.el: Add a minimal leading commentary.
12472 (cvs-make-cvs-buffer): Change the header part by removing the startup
12473 message and adding a `Module' entry. Also replace the FOOTER and
12474 HEADER special fileinfos with the new support in ewoc for updating
12475 its own footer and header.
12476 (cvs-update-header): Update to use the header/footer of the ewoc.
12477 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
12478 (cvs-is-within-p): New function.
12479 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
12480 to only examine some subset of the buffers.
12481
12482 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
12483 `format' instead of our own ad-hoc functions.
12484 Remove HEADER and FOOTER cases, now handled in the EWOC.
12485 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
12486
12487 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
12488 output to avoid scaring the user.
12489 (cvs-parse-table): Catch message for non-up-to-date commits.
12490
12491 * pcvs-defs.el (cvs-startup-message): Remove.
12492 (cvs-global-menu): New autoloaded menu.
12493
12494 * pcvs-util.el (cvs-string-fill): Remove.
12495
12496 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
12497 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
12498 PP part of it and also make it work for footers and headers.
12499 (ewoc-create): Drop POS and BUFFER arguments.
12500 Use the DLL's dummy node to store the end-of-footer position.
12501 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
12502 (ewoc-refresh): Remove unused `header' variable.
12503 (ewoc-(get|set)-hf): New functions.
12504
d2cbfba0
SM
12505 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
12506 log-view-*-(message|file) and use easy-mmode-define-navigation.
12507 (log-view-message-re): Match SCCS format as well.
12508 And match the revision line rather than the dashed separator line.
12509 (log-view-mode): Use the new define-derived-mode.
12510 (log-view-current-tag): Fill in with an actual implementation.
12511
12512 * cvs-status.el (cvs-status-(prev|next)): Rename from
12513 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
12514 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
12515 to let the output "breathe" a little more (more readable).
12516 (cvs-status-mode): Use the new define-derived-mode.
12517
12518 * smerge-mode.el (smerge-auto-leave): New function and variable.
12519 (smerge-basic-map): Rename from smerge-basic-keymap.
12520 Change the bindings for smerge-diff-*.
12521 (smerge-*-map): Use easy-mmode-defmap.
12522 (smerge-(next|prev)): Use easy-mmode-define-navigation.
12523 (smerge-keep-*): Use smerge-auto-leave.
12524
51663132
JR
125252000-03-21 Jason Rumney <jasonr@gnu.org>
12526
12527 * cus-edit.el (custom-button-face): Use 3D look for w32.
12528 (custom-button-pressed-face): Likewise.
12529
3f6e4b8b
GM
125302000-03-21 Gerd Moellmann <gerd@gnu.org>
12531
12532 * progmodes/etags.el (tags-case-fold-search): New user-option.
12533 (tags-loop-eval): New function. Bind case-fold-search around eval
12534 depending on the value of tags-case-fold-search.
12535 (tags-loop-continue): Use tags-loop-eval.
12536 (find-tag-in-order): Bind case-fold-search depending on the value
12537 of tags-case-fold-search.
12538
c7ea3acc
SM
125392000-03-21 Stefan Monnier <monnier@cs.yale.edu>
12540
0ae39f53
SM
12541 * diff-mode.el (diff-mode-*-map): use `easy-mmode-defmap'.
12542 (diff-end-of-hunk): Return the end position for use in
12543 `easy-mmode-define-navigation'.
12544 (diff-recenter): Remove.
12545 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
12546 of `easy-mmode-define-navigation'.
12547 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
12548 previous renaming) and fix to use new names.
12549 (diff-merge-strings): Use \n as separator: simpler, faster.
12550 (diff-mode): Use `define-derived-mode'.
12551
c7ea3acc
SM
12552 * derived.el (define-derived-mode): Don't autoload anymore.
12553 Prefer the macro-only version provided by easy-mmode.el.
12554
12555 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
12556 `easy-mmode-define-derived-mode'.
12557 Use `combine-run-hooks'.
12558 (easy-mmode-define-navigation): New macro.
12559
12560 * subr.el (combine-run-hooks): New function.
12561
6c4bfdc0
KH
125622000-03-21 Kenichi HANDA <handa@etl.go.jp>
12563
12564 * term/x-win.el: Fontsets related initialization is simplified.
12565
12566 * international/mule-diag.el (describe-font): Don't refer to
12567 global-fontset-alist, instead call font-list.
12568 (describe-fontset, list-fontsets, mule-diag): Likewise.
12569 (print-fontset): Adjusted for the change of fontset
12570 implementation.
12571
12572 * international/fontset.el (x-charset-registries): Variable
12573 removed, instead the corresponding data is stored in the default
12574 fontset.
12575 (register-alternate-fontnames): Function removed.
12576 (resolved-ascii-font): Variable removed.
12577 (x-compose-font-name): Ignore the second argument REDOCE.
12578 (x-complement-fontset-spec): Complement only an ASCII font and
12579 element for those charsets than can use that ASCII font.
12580 (generate-fontset-menu): Don't refer to global-fontset-alist,
12581 instead call fontset-list.
12582 (uninstantiated-fontset-alist): Variable removed.
12583 (x-style-funcs-alist): Likewise.
12584 (fontset-default-styles): Likewise.
12585 (x-modify-font-name): Function removed.
12586 (create-fontset-from-fontset-spec): Ignore the argument
12587 STYLE-VARIANT.
12588 (create-fontset-from-ascii-font): Docsting adjusted for the above
12589 change.
12590 (instantiate-fontset, resolve-fontset-name): Functions removed.
12591 (fontset-list): Now implemented by C code.
fa78f71b 12592
6c4bfdc0
KH
12593 * faces.el (read-face-font): Fix TABLE arg to completing-read.
12594 (describe-face): Include `font' attribute in the description.
12595
9111d4b5
KH
125962000-03-21 Kenichi Handa <handa@etl.go.jp>
12597
12598 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
12599
b33dd3b0
GM
126002000-03-20 Gerd Moellmann <gerd@gnu.org>
12601
a25bbe00
GM
12602 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
12603 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
12604 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
fa78f71b 12605
b33dd3b0
GM
12606 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
12607 about behavior of set-buffer-modified-p wrt redisplay.
12608
8b7bc628 126092000-03-19 Richard M. Stallman <rms@gnu.org>
e53ae11c
RS
12610
12611 * view.el (view-mode-disable): Kill local binding of view-read-only.
12612
d7b511c4
GM
126132000-03-18 Gerd Moellmann <gerd@gnu.org>
12614
12615 * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE
12616 is a string, convert it to a syntax cell using string-to-syntax.
12617
12618 * simple.el (syntax-code-table, syntax-flag-table): New variables.
12619 (string-to-syntax): New function.
12620
12621 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
12622 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
b33dd3b0 12623 try to use passive ftp mode.
d7b511c4 12624
998ecc60
GM
126252000-03-17 Gerd Moellmann <gerd@gnu.org>
12626
b33dd3b0 12627 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
998ecc60
GM
12628
12629 * simple.el (append-to-buffer): Update point of windows after
12630 insertion.
12631
12632 * abbrev.el (inverse-add-abbrev): Identify word by first moving
12633 forward then moving backward. Reindent.
12634
12635 * frame.el (other-frame): Call x-focus-frame only if
12636 focus-follows-mouse is off.
12637
235d6821
DL
126382000-03-17 Dave Love <fx@gnu.org>
12639
12640 * pcvs-util.el (cvs-strings->string): Rename
12641 replace-regexps-in-string.
12642
a29a2cd1
SM
126432000-03-17 Stefan Monnier <monnier@cs.yale.edu>
12644
af595444
SM
12645 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
12646 regexp for labels cannot span several lines.
12647
12648 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
998ecc60 12649 `(setq :<key> ':<key>)' to the macro expansion.
a29a2cd1 12650
a9be2843
DL
126512000-03-16 Dave Love <fx@gnu.org>
12652
12653 * progmodes/f90.el (f90): Put custom group under `languages', not
12654 `fortran'.
12655 (f90-mode-hook): Customize.
12656 (f90-mode): Set add-log-current-defun-function.
12657 (f90-current-defun): New function.
12658
d0ab3e9d
GM
126592000-03-16 Gerd Moellmann <gerd@gnu.org>
12660
16b20ed9
GM
12661 * cus-edit.el (custom-variable-tag-face): Handle case that
12662 default face's height is not a number.
12663 (custom-face-tag-face, custom-group-tag-face-1)
12664 (custom-group-tag-face): Ditto.
12665 (custom-group-tag-face-1): Add :group.
fa78f71b 12666
d0ab3e9d
GM
12667 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
12668
ae8ab422
GM
126692000-03-15 Gerd Moellmann <gerd@gnu.org>
12670
12671 * pcvs-defs.el (toplevel): Remove autoload cookie for form
12672 requiring easymenu.
12673
81c7ca69
GM
126742000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12675
12676 * ps-print.el: PostScript user-defined prologue, PostScript error
12677 handler, doc fix.
12678 (ps-print-version): New version number (5.1).
12679 (ps-user-defined-prologue, ps-error-handler-message)
12680 (ps-print-prologue-0, ps-error-handler-alist): New vars.
12681 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
12682 (ps-insert-string): New function.
fa78f71b 12683
dcf1003d
KH
126842000-03-15 Kenichi Handa <handa@etl.go.jp>
12685
12686 * international/ccl.el (ccl-compile-expression): Don't generate
12687 invalid self-assignment code.
12688
73825616
DL
126892000-03-14 Dave Love <fx@gnu.org>
12690
12691 * subr.el (replace-regexp-in-string): Renamed from
12692 replace-regexps-in-string. Doc fix.
12693
031020ac
DL
126942000-03-12 Dave Love <fx@gnu.org>
12695
12696 * cus-edit.el: Doc fixes.
12697 (customize-set-variable, customize-save-variable): Rename args for
12698 doc.
12699 (custom-variable-tag-face, custom-face-tag-face)
12700 (custom-group-tag-face-1, custom-group-tag-face): Modify from
12701 style which user identify as hyperlink.
12702 (hook): Don't add undefined functions to the hook.
12703 (debug-ignored-errors): Transfer message from bindings.el.
12704
9b2f3c38
GM
127052000-03-12 Gerd Moellmann <gerd@gnu.org>
12706
12707 * recentf.el (recentf-keep-non-readable-files-p): Remove
12708 double/nested definition.
12709
0d6e23cf
DL
127102000-03-12 Dave Love <fx@gnu.org>
12711
12712 * facemenu.el (facemenu-get-face): Use display-color-p.
12713 * enriched.el (enriched-decode-foreground): Likewise.
12714 (enriched-decode-background): Likewise.
12715 * isearch.el (isearch-highlight): Likewise.
12716 * info-look.el (info-lookup): Likewise.
12717 * simple.el (completion-setup-function): Likewise.
12718
12719 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
12720 :options.
12721
12722 * bindings.el (mode-line-format): Fix line-number and
12723 column-number items. Add help-echo for the background.
12724 (mode-line-mule-info): Modify help-echo.
12725
1598a961 12726 * avoid.el (mouse-avoidance-mode): Add autoload cookie to defcustom.
0d6e23cf
DL
12727
12728 * files.el (load-file): Allow completion to .elc.
12729
12730 * man.el: Doc fixes.
12731 (Man-init-defvars): Use display-color-p to set fontification.
12732
12733 * play/hanoi.el (hanoi-internal): Don't use oddp.
12734
e1cff360
GM
127352000-03-12 Gerd Moellmann <gerd@gnu.org>
12736
12737 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
12738
12739 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
12740
5e5dff44
GM
127412000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
12742
12743 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
12744 Fix comment.
12745
5b467bf4
SM
127462000-03-10 Stefan Monnier <monnier@cs.yale.edu>
12747
83fef604
SM
12748 * font-lock.el (font-lock-keywords): Fix the doc now that
12749 regexp-opt-depth is unnecessary.
12750 (save-buffer-state): Set an edebug spec.
12751 (font-lock-fontify-anchored-keywords): Properly handle the case when
12752 the matcher goes past the limit.
12753
5b467bf4
SM
12754 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
12755 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
12756
83fef604
SM
12757 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
12758 dll.el and cookie.el (from Elib) with heavy renaming and other
12759 massaging.
5b467bf4
SM
12760
12761 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
12762 Autoload the functions used.
12763 (easy-mmode-define-syntax): Fix CL typo.
12764 (easy-mmode-define-derived-mode): Improve the docstring generation.
12765
d407456c
GM
127662000-03-10 Gerd Moellmann <gerd@gnu.org>
12767
12768 * textmodes/texinfo.el (texinfo-version): Variable and function
12769 removed.
12770
5a7a545c
SM
127712000-03-09 Stefan Monnier <monnier@cs.yale.edu>
12772
0d6e23cf
DL
12773 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
12774 allow more flexibility.
12775 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New
12776 fns.
12777 (easy-mmode-defmap, easy-mmode-defsyntax)
12778 (easy-mmode-define-derived-mode): New macros.
5a7a545c 12779
d407456c 127802000-03-09 Didier Verna <didier@xemacs.org>
445b0666
DL
12781
12782 * rect.el (replace-rectangle): New function.
12783
127842000-03-09 Dave Love <fx@gnu.org>
12785
12786 * progmodes/fortran.el (fortran-comment-line-start): Define as
12787 "C".
12788 (fortran-comment-line-start-skip): Don't match cpp stuff.
12789 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
12790 (fortran-mode-map): Remove over-eager custom-menu-create for now.
12791 (fortran-mode): Don't set fortran-comment-line-start-skip,
12792 fortran-comment-line-start here. Set comment-start,
12793 add-log-current-defun.
12794 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
12795 (fortran-current-defun): New function.
12796
80460654
GM
127972000-03-09 Gerd Moellmann <gerd@gnu.org>
12798
d1221ea9
GM
12799 * emacs-lisp/re-builder.el: New file.
12800
1853aa6b
GM
12801 * mouse.el (mouse-drag-region): Don't run up-event handler
12802 if hscroll has changed.
12803
80460654
GM
12804 * octave-mod.el (octave-font-lock-keywords): To font-lock the
12805 builtin operators, use `font-lock-builtin-face' for Emacs and
12806 `font-lock-preprocessor-face' otherwise.
fa78f71b
SS
12807
12808 * font-lock.el (lisp-font-lock-keywords-1): Highlight
80460654
GM
12809 `(defun (setf foo)' differently.
12810
c0056275
SM
128112000-03-08 Stefan Monnier <monnier@cs.yale.edu>
12812
12813 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
80460654
GM
12814 (regexp-opt): Update comment and adapt the code the new meaning of
12815 the `paren' argument of regex-opt-group for shy-groups.
12816 (regexp-opt-depth): Handle shy groups as well as backslashed
12817 backslashes.
c0056275
SM
12818 (regexp-opt-group): Turn the leading comment into a docstring.
12819 Allow `paren' to be a string (the string to use to open a group).
80460654
GM
12820 Remove open-presuf and close-presuf. Instead of checking for `all
12821 one-char' and then later on check for `several one-char', handle
12822 both cases close together. Also apply a more generic algorithm
12823 for suffixes (the mirror image of the algorithm used for
12824 prefixes). Use shy-groups. Use nreverse rather than reverse.
c0056275
SM
12825 (regexp-opt-try-suffix): Removed.
12826
12827 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
80460654
GM
12828 from comint-mode-map, so we can just inherit from it. Also, move
12829 the initialization into the `defvar' since there's no docstring
12830 anyway and it's fairly short.
12831 (inferior-scheme-mode): Define it as derived-mode: the code is
12832 shorter and this way we inherit from comint-mode-map rather than
12833 copying it.
c0056275 12834
80460654
GM
12835 * subr.el (replace-regexps-in-string): Properly handle the case
12836 where we match an empty string.
c0056275 12837
80460654
GM
12838 * comint.el (comint-exec-1): Add the current-dir to the exec-path
12839 when the command has a directory component (such as "./testml").
c0056275
SM
12840 Also fix a typo in the comment.
12841
5e91ff9e
GM
128422000-03-08 Gerd Moellmann <gerd@gnu.org>
12843
feab4fba
GM
12844 * Makefile (compile-files): Compile files one by one because
12845 that's the only way to ensure a clean compilation environment for
12846 each individual file.
12847
5e91ff9e
GM
12848 * frame.el (other-frame): Call x-focus-frame.
12849
76162e12
DL
128502000-03-07 Dave Love <fx@gnu.org>
12851
f64ce788
DL
12852 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
12853 :require to defcustom.
12854
76162e12
DL
12855 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads
12856 lists.
12857
12858 * files.el (auto-mode-alist): Add configure.in.
12859
12860 * progmodes/autoconf.el: New file.
12861
f7daf1e1
GM
128622000-03-07 Gerd Moellmann <gerd@gnu.org>
12863
12864 * mail/mh-e.el: Change maintainer to `none'.
12865
12866 * recentf.el (recentf-keep-non-readable-files-p): Quote args
12867 to remove-hook and add-hook.
12868
128692000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
12870
12871 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
12872 it as the default.
12873 (mail-send): Test mail-send-nonascii also for the new `mime' value.
12874 (sendmail-send-it): Conditionally add MIME headers specifying the
12875 used character set.
fa78f71b 12876
63f6b2c4
DL
128772000-03-07 Dave Love <fx@gnu.org>
12878
12879 * winner.el: Fix keywords, autoload cookies. Split
12880 eval-when-compile form to avoid compilation failure.
12881
8330e2f9
KH
128822000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
12883
12884 * international/mule.el: Modify comment about coding system
12885 property `coding-category'.
12886 (make-coding-system): New argument EOL-TYPE. Pay attention to
12887 coding-category property of PROPERTIES.
12888
12889 * international/mule-conf.el (coding-category-utf-8,
12890 coding-category-utf-16-be, coding-category-utf-16-le): New coding
12891 categories. Include them in the argument for set-coding-priority.
12892
12893 * international/mule-cmds.el (reset-language-environment): Include
12894 coding-category-utf-8, coding-category-utf-16-be, and
12895 coding-category-utf-16-le in the argument for set-coding-priority.
12896 (reset-language-environment): Initialize coding-category-utf-8,
12897 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
12898
18bb0684
GM
128992000-03-06 Karl Fogel <kfogel@red-bean.com>
12900
12901 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
12902 code abstracted out of `bookmark-jump-noselect'. Now tries info
12903 extensions as well as compression extensions.
12904 (bookmark-jump-noselect): Use above new func.
fa78f71b 12905
71a6ba55
GM
129062000-03-03 Gerd Moellmann <gerd@gnu.org>
12907
12908 * strokes.el: Change maintainer's mail address.
12909
0d56cdff
KH
129102000-03-03 Kenichi Handa <handa@etl.go.jp>
12911
12912 * international/mule-diag.el (list-character-sets): Make help-echo
12913 string by substitute-command-keys.
12914 (list-character-sets): Likewise.
12915 (sort-listed-character-sets): Call help-setup-xref.
12916
900fa1f1
GM
129172000-03-02 Gerd Moellmann <gerd@gnu.org>
12918
12919 * time.el (display-time-mail-file): Add `none' to the list of
12920 choices.
12921
54d04320
DL
129222000-03-01 Dave Love <fx@gnu.org>
12923
43f3fa09
DL
12924 * help.el (help-xref-go-back): Don't try to set position.
12925
54d04320
DL
12926 * international/mule-diag.el (list-character-sets): Call
12927 help-setup-xref. Add help-echo to xrefs.
12928 (list-character-sets-1): Add help-echo to xrefs.
12929
d054101f
GM
129302000-03-02 Gerd Moellmann <gerd@gnu.org>
12931
12932 * frame.el (blink-cursor-mode): Switch cursor on when turning
12933 the mode off.
12934
12935 * add-log.el (add-log-current-defun): Add support for
12936 Autoconf mode.
12937
12938 * mail/rmail.el (rmail-quit-hook): New variable.
12939
d77dae5c
DL
129402000-03-01 Dave Love <fx@gnu.org>
12941
e5f597f0
DL
12942 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
12943
d77dae5c
DL
12944 * help.el (help-xref-button): Add help-echo arg.
12945 (describe-function-1, describe-variable, help-make-xrefs): Use it.
12946
12947 * faces.el (list-faces-display): Supply help-echo with
12948 help-make-xrefs.
12949
12950 * facemenu.el (list-text-properties-at): Set help-xref-stack to
12951 nil.
12952
72d19d75
GM
129532000-03-01 Gerd Moellmann <gerd@gnu.org>
12954
2df636f4
GM
12955 * image.el (defimage): Look for image files in load-path.
12956
fa78f71b 12957 * frame.el (busy-cursor-delay-seconds): Change type to
72d19d75
GM
12958 `number'.
12959
2df636f4
GM
129602000-03-01 David Ponce <david.ponce@wanadoo.fr>
12961
12962 * recentf.el (recentf): Added version tag to the defgroup of
12963 recentf.
12964
129652000-03-01 David Ponce <david.ponce@wanadoo.fr>
12966
12967 * recentf.el (recentf-cleanup): Changed to remove excluded file
12968 too.
12969 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
12970 action to select/unselect a file.
12971 (recentf-edit-list): Code cleanup and improvement.
12972 (recentf-open-more-files-action): `recentf-open-more-files' button
12973 widget action to open a file.
12974 (recentf-open-more-files): No more use standard completion but
12975 widgets.
12976 (recentf-more-collection): Deleted.
12977 (recentf-more-history): Deleted.
12978 (recentf-setup-more-completion): Deleted.
12979
129802000-03-01 David Ponce <david.ponce@wanadoo.fr>
12981
12982 * recentf.el (recentf-mode): No more needs that Emacs is running
12983 under a window-system.
12984
129851999-03-01 David Ponce <david.ponce@wanadoo.fr>
12986
12987 * recentf.el (recentf-edit-list): New command to edit the recent
12988 list which allow the user to remove files.
12989 (recentf-edit-selected-items): New global variable, used by
12990 `recentf-edit-list' to hold the list of files to be removed from
12991 the recent list.
12992 (recentf-make-menu-items): Updated to display a "Edit list..."
12993 menu item. Minor code cleanup.
12994
129951999-03-01 David Ponce <david.ponce@wanadoo.fr>
12996
12997 * recentf.el (recentf-open-more-files): New command to open files
12998 that are not displayed in the menu.
12999 (recentf-more-collection): New global variable holding the set of
13000 permissible completions used by `recentf-open-more-files'.
13001 (recentf-more-history): New global variable holding the history list
13002 used by `recentf-open-more-files' completion.
13003 (recentf-setup-more-completion): New function to setup completion for
13004 `recentf-open-more-files'.
13005 (recentf-make-menu-items): Updated to display a "More..." menu item.
13006
130071999-03-01 David Ponce <david.ponce@wanadoo.fr>
13008
13009 * recentf.el (recentf-menu-action): Doc fixed.
13010
130111999-03-01 David Ponce <david.ponce@wanadoo.fr>
13012
13013 * recentf.el (recentf-menu-filter): Doc updated.
13014 (recentf-update-menu-hook): Allow menu filters to force menu update.
13015 (recentf-make-menu-items): New menu filter handling.
13016 (recentf-make-menu-item): New helper function.
13017 (recentf-menu-elements): New menu handling function.
13018 (recentf-sort-ascending): Updated to new menu filter handling.
13019 (recentf-sort-descending): Updated to new menu filter handling.
13020 (recentf-sort-basenames-ascending): New menu filter function.
13021 (recentf-sort-basenames-descending): New menu filter function.
13022 (recentf-show-basenames): New menu filter function.
13023 (recentf-show-basenames-ascending): New menu filter function.
13024 (recentf-show-basenames-descending): New menu filter function.
13025
72d19d75
GM
130262000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
13027
13028 * diary-lib.el (list-diary-entries): Don't try to go forward at
13029 the end of the buffer.
13030
1ac1c836
KH
130312000-02-29 Kenichi Handa <handa@etl.go.jp>
13032
13033 * international/mule-diag.el (list-character-sets): Completely
13034 rewritten.
13035 (sort-listed-character-sets): New function.
13036 (list-character-sets-1): Completely rewritten.
13037 (list-character-sets-2): New function.
13038 (non-iso-charset-alist): New variable.
13039 (decode-codepage-char): New function.
13040 (charset-history): New variable.
13041 (read-charset) (list-block-of-chars)
13042 (list-iso-charset-chars)
13043 (list-non-iso-charset-chars)
13044 (list-charset-chars): New functions.
13045 (mule-diag): Call list-character-sets-2, not
13046 list-character-sets-2.
13047 (dump-charsets): Likewise.
13048
ed4d0512
GM
130492000-02-29 Gerd Moellmann <gerd@gnu.org>
13050
72d19d75
GM
13051 * dired-x.el (dired-filename-at-point): Add `@' to valid
13052 file name characters.
13053 (dired-filename-at-point): Handle ange-ftp file names.
13054
ed4d0512
GM
13055 * frame.el (frame-notice-user-settings): Use assq-delete-all
13056 instead of assoc-delete-all.
13057 (frame-notice-user-settings): Ditto.
13058
13059 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
13060 Don't copy alist.
13061
32038c7a
GM
130622000-02-28 Eli Barzilay <eli@cs.cornell.edu>
13063
13064 * calculator.el (calculator-use-menu): New option.
13065 (calculator-initial-bindings): Changed some bindings to work as
13066 macros.
13067 (calculator-forced-input): Removed.
13068 (calculator-restart-other-mode): New variable.
13069 (calculator-mode-map): Set up menu.
fa78f71b 13070
32038c7a
GM
130712000-02-28 Jari Aalto <jari.aalto@poboxes.com>
13072
13073 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
13074 tags.
fa78f71b 13075
55d7ff38 130762000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
fa78f71b 13077
55d7ff38
MK
13078 * viper-cmd.el (viper-envelop-ESC-key): added the option to
13079 translate all ESC key sequences.
13080 (viper-goto-mark-subr): restore markers for files for which
13081 they were saved.
13082 * viper-init.el (viper-translate-all-ESC-keysequences): new variable.
13083 * viper-util.el (viper-set-replace-overlay-glyphs,
13084 viper-set-replace-overlay): always check if the replacement
13085 overlay is live.
13086 * viper.el (viper-vi-state-mode-list): added major modes.
13087 * ediff-wind.el: minor comment changes.
13088 * ediff.el: copyright notice date fix.
fa78f71b 13089
387023ee
JR
130902000-02-27 Jason Rumney <jasonr@gnu.org>
13091
13092 * faces.el (face-font-family-alternatives): Add arial to helv.
13093 (mode-line, header-line, tool-bar): Same default as x for w32.
13094 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
13095 face-font-family-alternatives from working.
13096 * term/w32-win.el (mouse-set-font): Do not build fontset from
13097 chosen font.
13098
f43d79c1
GM
130992000-02-25 Sam Steingold <sds@goems.com>
13100
5d80cc9c 13101 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
f43d79c1 13102 properly.
fa78f71b 13103
8b7bc628 131042000-02-25 Richard M. Stallman <rms@gnu.org>
f43d79c1
GM
13105
13106 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
13107
4eb8436f
GM
131082000-02-25 Gerd Moellmann <gerd@gnu.org>
13109
13110 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer
13111 writable.
13112
449c3c52 13113 * frame.el (busy-cursor-delay-seconds): New option.
f5b58615 13114
42088c12
GM
131152000-02-24 Gerd Moellmann <gerd@gnu.org>
13116
13117 * frame.el (show-cursor-in-non-selected-windows): New option.
13118
c60ea02e
GM
131192000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
13120
13121 * diary-lib.el (include-other-diary-files): Undo the selective
13122 display in any included file and don't kill it.
13123
d066de8e
EZ
131242000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
13125
13126 * dired.el (dired-mode-map): Don't remove "Edit" from the menu
13127 bar. Menu items converted to (menu-item format, help strings
13128 added.
13129 [downcase, upcase]: Don't enable on MS-DOS.
13130 [symlink, symlinks]: Don't show if make-symbolic-link is not
13131 bound.
13132 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
13133
b6906b38
DL
131342000-02-23 Dave Love <fx@gnu.org>
13135
275cf1b2
DL
13136 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
13137 (backward-kill-word): Revert addition of * to interactive spec --
13138 it's a feature.
13139
13140 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
13141 (backward-kill-sentence, kill-sentence): Likewise.
13142
99d48056
DL
13143 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
13144 scratch buffer name.
13145 (gud-format-command): Use int-to-string in ?l case. Simplify
13146 slightly.
13147
13148 * term/w32-win.el (internal-face-interactive): Update prompt for
13149 new read-face-name.
13150
13151 * mail/footnote.el (footnote): Add :version to defgroup.
13152 (footnote-section-tag-regexp): Customize.
13153 (footnote-start-tag, footnote-end-tag): New option.
13154 (footnote-latin-regexp): New variable.
13155 (Footnote-latin): New function.
13156 (footnote-style-alist): Add element for latin style.
13157 (footnote-style): Moved.
13158 (Footnote-goto-footnote): Use eq to test arg.
13159
13160 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
13161
b6906b38
DL
13162 * emacs-lisp/byte-opt.el: Change old backquote syntax.
13163 (byte-compile-trueconstp): Include keywords.
13164 (byte-optimize-quote, byte-optimize-lapcode): Use
13165 byte-compile-const-symbol-p.
13166 (byte-optimize-char-before): New optimization.
13167
13168 * emacs-lisp/bytecomp.el: Change old backquote syntax.
13169 (byte-compile-const-symbol-p): New function.
13170 (byte-compile-constp, byte-compile-out-toplevel)
13171 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
13172 Use it.
13173
13174 * subr.el (define-key-after): Default AFTER to t. Doc fix.
13175
214f877f
KH
131762000-02-23 Kenichi Handa <handa@etl.go.jp>
13177
c709bcf1
KH
13178 * international/encoded-kb.el: Be sure to update minor-mode-alist
13179 and minor-mode-map-alist.
13180 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
13181 codes SS2 and SS3 correctly.
13182 (encoded-kbd-self-insert-ccl): New function.
13183 (encoded-kbd-setup-keymap): New function.
13184 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
13185 by calling encoded-kbd-setup-keymap.
13186
214f877f
KH
13187 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte
13188 characters.
13189 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t
13190 locally.
13191
b021ef18
DL
131922000-02-22 Dave Love <fx@gnu.org>
13193
13194 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
13195 (lisp-mode-map, lisp-interaction-mode-map): Define all inside
13196 defvar.
13197 (lisp-mode-syntax-table): Set up for #|...|# comments.
13198 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
13199 classes. Match `defface'.
13200 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
13201 (eval-defun-1): Fix for defcustom.
13202 (lisp-indent-region): Doc fix.
13203
13204 * subr.el (when, unless, split-string): Doc fix.
13205 (read-passwd): Move call of clear-this-command-keys to the right
13206 place.
13207 (replace-regexps-in-string): New function.
13208
14cc00ad
GM
132092000-02-22 Gerd Moellmann <gerd@gnu.org>
13210
13211 * help.el (describe-variable): Set syntax table to
13212 emacs-lisp-mode-syntax-table when moving forward over the
13213 symbol's name.
13214
47da5efa
DL
132152000-02-22 Dave Love <fx@gnu.org>
13216
13217 * xt-mouse.el: Doc fixes.
13218 (xterm-mouse-position-function): New function, replacing advice of
13219 mouse-position.
13220 (xterm-mouse-mode): Use it. Don't turn on under a window system.
13221
13222 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
13223
f0a6c717
GM
132242000-02-21 Gerd Moellmann <gerd@gnu.org>
13225
13226 * format.el (format-annotate-single-property-change): Handle
13227 properties.with dotted-list values.
13228 (format-proper-list-p): New function.
13229
13230 * enriched.el (enriched-face-ans): Handle '(foreground-color
13231 . COLOR) and (background-color . COLOR).
13232
2be80b63
DL
132332000-02-20 Dave Love <fx@gnu.org>
13234
13235 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
13236 and assignments to it.
13237 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
13238 current local map.
13239 (make-flyspell-overlay): Use it.
13240 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
13241
13242 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
13243 (lm-get-header-re): Defun, not defsubst.
13244 (lm-get-package-name): Defun, not defsubst. Simplify.
13245 (lm-version): Doc fix. Simplify.
13246 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
13247 (lm-crack-address, lm-last-modified-date, lm-commentary)
13248 (lm-verify, lm-synopsis): Simplify.
13249 (lm-report-bug): Require emacsbug. Use compose-mail.
13250
329eed9f
GM
132512000-02-20 Gerd Moellmann <gerd@gnu.org>
13252
13253 * dired.el (dired-mode): Call propertized-buffer-identification
13254 to set mode-line-buffer-identification to something having
13255 the right text properties.
13256
13257 * bindings.el (propertized-buffer-identification): New function.
13258
be5bb146
DL
132592000-02-20 Dave Love <fx@gnu.org>
13260
13261 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
13262 check for t-mouse too.
13263
13264 * cus-start.el: Make echo-keystrokes `number'.
13265
1d4311c3
EZ
132662000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
13267
13268 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
13269 Don't call ring-empty-p unless tags-location-ring is bound.
13270 From Noah Friedman <friedman@splode.com>.
13271
a23c5037
TTN
132722000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
13273
13274 * progmodes/hideshow.el (hs-flag-region): No longer use
13275 `intangible' overlay property.
13276
13277 (hs-toggle-hiding): New command.
13278 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
13279
13280 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
13281 Fix omission bug: Run `hs-minor-mode-hook' for both activation
13282 and deactivation.
13283
b6a22bf8
GM
132842000-02-18 Gerd Moellmann <gerd@gnu.org>
13285
13286 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
13287
d621caf7
GM
132882000-02-17 Gerd Moellmann <gerd@gnu.org>
13289
3c0ed7ce
GM
13290 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
13291
d621caf7
GM
13292 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
13293 of `*' to handle `(* ... *)' comments.
13294
538d88fb
EZ
132952000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
13296
53c80cf6 13297 * faces.el (list-faces-display): Use display-mouse-p instead of
f24fef2f 13298 window-system.
53c80cf6 13299
538d88fb
EZ
13300 * menu-bar.el (global-map): Menu-bar items converted to the new
13301 format (menu-item..., rearranged for better CUA compliance, and
13302 their names changed for better clarity. Help strings added.
13303
13304 * international/mule-cmds.el (mule-menu-keymap)
13305 (describe-language-environment-map, set-coding-system-map)
13306 (setup-language-environment-map): Convert to new (menu-item...
13307 form, add help strings. Change names of menu items for better
13308 clarity. "Mule" menu-bar item removed (it's now in the "Options"
13309 submenu).
13310
8389e1e2 133112000-02-17 Gerd Moellmann <gerd@gnu.org>
84fe35f0 13312
a23c5037 13313 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
8389e1e2 13314 within the code.
a23c5037 13315
8389e1e2 133162000-02-16 Dave Love <fx@gnu.org>
a23c5037 13317
84fe35f0
DL
13318 * faces.el: Don't require custom. Add more specific :groups to
13319 various deffaces.
13320 (set-face-attribute): Purecopy args.
13321 (read-face-name): Default to name at point and use it in prompt.
13322 Remove colon from arg in all callers.
13323 (list-faces-display): Hyperlink to face descriptions and customize
13324 buffers.
13325
b2aeee30
DL
133262000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
13327
13328 * wid-edit.el (widget-match-inline): An atom never matches a
13329 list.
13330
99e95407
GM
133312000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13332
82d2c7c5
DL
13333 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
13334 at ':' characters by call to split-string.
99e95407
GM
13335
133362000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13337
82d2c7c5 13338 * textmodes/bibtex.el: Added RCS version identification.
99e95407
GM
13339
133402000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13341
82d2c7c5
DL
13342 * textmodes/bibtex.el: Some temporary comments removed.
13343 (bibtex-field-name, bibtex-entry-type): Made the relationship
13344 explicit.
13345 (bibtex-field-const): Allow capital letters.
13346 (bibtex-start-of-string): Deleted because unused.
13347
13348 * textmodes/bibtex.el: Unified some nomenclature. We no longer
13349 use the term 'reference' to describe a bibtex entry as a whole.
13350 Further, reference keys are no longer called 'labels'.
13351 (bibtex-keys): Renamed to bibtex-reference-keys.
13352 (bibtex-reformat-previous-labels): Renamed to
13353 bibtex-reformat-previous-reference-keys.
13354 (bibtex-reference-type): Renamed to bibtex-entry-type.
13355 (bibtex-reference-head): Renamed to bibtex-entry-head.
13356 (bibtex-reference-maybe-empty-head): Renamed to
13357 bibtex-entry-maybe-empty-head.
13358 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
13359 (bibtex-search-reference): Renamed to bibtex-search-entry.
13360 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
13361 bibtex-enclosing-entry-maybe-empty-head.
13362 (bibtex-entry-field-alist, bibtex-entry-head,
13363 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
13364 bibtex-map-entries, bibtex-search-entry,
13365 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
13366 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
13367 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
13368 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
13369 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
13370 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
13371 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
99e95407
GM
13372
133732000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13374
82d2c7c5
DL
13375 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
13376 comment.
13377 (bibtex-format-field-delimiters): New function, functionality
13378 extracted from bibtex-format-entry.
13379 (bibtex-autokey-get-yearfield-digits): New function, functionality
13380 extracted from bibtex-autokey-get-yearfield.
13381
13382 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
13383 entries in order to avoid stack overflow in the regexp matcher if
13384 field contents become large.
13385 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
13386 bibtex-field-string-part-not-braced,
13387 bibtex-field-string-part-no-inner-braces,
13388 bibtex-field-string-part-1-inner-brace,
13389 bibtex-field-string-part-2-inner-braces,
13390 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
13391 bibtex-field-string-quoted, bibtex-field-string,
13392 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
13393 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
13394 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
13395 as parsing is now performed by the following functions.
13396 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
13397 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
13398 bibtex-parse-field-string, bibtex-search-forward-field-string,
13399 bibtex-parse-association, bibtex-field-name-for-parsing,
13400 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
13401 bibtex-search-forward-field, bibtex-search-backward-field,
13402 bibtex-start-of-field, bibtex-end-of-field,
13403 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
13404 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
13405 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
13406 bibtex-parse-string, bibtex-search-forward-string,
13407 bibtex-search-backward-string, bibtex-start-of-string,
13408 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
13409 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
13410 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
13411 entries. Instead of reporting the results of the parsing by
13412 match-beginning or match-end, these functions return data structures
13413 that hold the corresponding positions.
13414 (bibtex-enclosing-field): Changed to also report field boundaries by
13415 return values rather than by match-beginning or match-end. The
13416 following functions have been adapted to use the new parsing
13417 functions.
13418 (bibtex-skip-to-valid-entry, bibtex-search-reference,
13419 bibtex-enclosing-field, bibtex-format-entry,
13420 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
13421 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
13422 bibtex-print-help-message, bibtex-end-of-entry,
13423 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
13424 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
13425 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
13426 method for parsing.
13427 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
13428 bibtex-map-entries, bibtex-flash-head,
13429 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
13430 bibtex-autokey-change, bibtex-autokey-get-namefield,
13431 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
13432 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
13433 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
13434 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
13435 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
13436 order to make the new binding of case-fold-search immediately
13437 visible.
99e95407
GM
13438
134392000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13440
82d2c7c5
DL
13441 * textmodes/bibtex.el: Copyright notice is up to date.
13442 Added constant 'bibtex-maintainer-salutation.
99e95407 13443
82d2c7c5
DL
13444 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
13445 than make-temp-name, use match-string-no-properties and eliminate
13446 a quadratic behavior when building bibtex-strings.
99e95407 13447
82d2c7c5
DL
13448 * bibtex.el (bibtex-reference-key): Accept string entries whose
13449 reference key contains upper case letters.
99e95407
GM
13450
134512000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13452
82d2c7c5
DL
13453 * bibtex.el (bibtex-reference-head): Allow entries to start with
13454 a new line.
99e95407
GM
13455
134562000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13457
82d2c7c5
DL
13458 * bibtex.el: Hiding of entry bodies is not longer provided by
13459 bibtex.el directly. Instead the hideshow package can be used.
13460 Added a special bibtex entry to hs-special-modes-alist.
13461 (bibtex-hs-forward-sexp): Added for hideshow.el.
8389e1e2
GM
13462
134632000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13464
f24fef2f
SM
13465 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
13466 at ':' characters by call to split-string.
8389e1e2
GM
13467
134682000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13469
f24fef2f 13470 * textmodes/bibtex.el: Added RCS version identification.
8389e1e2
GM
13471
134722000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13473
f24fef2f
SM
13474 * textmodes/bibtex.el: Some temporary comments removed.
13475 (bibtex-field-name, bibtex-entry-type): Made the relationship
13476 explicit.
13477 (bibtex-field-const): Allow capital letters.
13478 (bibtex-start-of-string): Deleted because unused.
fa78f71b 13479
f24fef2f
SM
13480 * textmodes/bibtex.el: Unified some nomenclature. We no longer
13481 use the term 'reference' to describe a bibtex entry as a whole.
13482 Further, reference keys are no longer called 'labels'.
13483 (bibtex-keys): Renamed to bibtex-reference-keys.
13484 (bibtex-reformat-previous-labels): Renamed to
13485 bibtex-reformat-previous-reference-keys.
13486 (bibtex-reference-type): Renamed to bibtex-entry-type.
13487 (bibtex-reference-head): Renamed to bibtex-entry-head.
13488 (bibtex-reference-maybe-empty-head): Renamed to
13489 bibtex-entry-maybe-empty-head.
13490 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
13491 (bibtex-search-reference): Renamed to bibtex-search-entry.
13492 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
13493 bibtex-enclosing-entry-maybe-empty-head.
13494 (bibtex-entry-field-alist, bibtex-entry-head,
13495 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
13496 bibtex-map-entries, bibtex-search-entry,
13497 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
13498 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
13499 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
13500 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
13501 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
13502 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
13503 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
8389e1e2
GM
13504
135052000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13506
f24fef2f
SM
13507 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
13508 comment.
13509 (bibtex-format-field-delimiters): New function, functionality
13510 extracted from bibtex-format-entry.
13511 (bibtex-autokey-get-yearfield-digits): New function, functionality
13512 extracted from bibtex-autokey-get-yearfield.
fa78f71b 13513
f24fef2f
SM
13514 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
13515 entries in order to avoid stack overflow in the regexp matcher if
13516 field contents become large.
13517 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
13518 bibtex-field-string-part-not-braced,
13519 bibtex-field-string-part-no-inner-braces,
13520 bibtex-field-string-part-1-inner-brace,
13521 bibtex-field-string-part-2-inner-braces,
13522 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
13523 bibtex-field-string-quoted, bibtex-field-string,
13524 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
13525 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
13526 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
13527 as parsing is now performed by the following functions.
13528 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
13529 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
13530 bibtex-parse-field-string, bibtex-search-forward-field-string,
13531 bibtex-parse-association, bibtex-field-name-for-parsing,
13532 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
13533 bibtex-search-forward-field, bibtex-search-backward-field,
13534 bibtex-start-of-field, bibtex-end-of-field,
13535 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
13536 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
13537 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
13538 bibtex-parse-string, bibtex-search-forward-string,
13539 bibtex-search-backward-string, bibtex-start-of-string,
13540 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
13541 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
13542 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
13543 entries. Instead of reporting the results of the parsing by
13544 match-beginning or match-end, these functions return data structures
13545 that hold the corresponding positions.
13546 (bibtex-enclosing-field): Changed to also report field boundaries by
13547 return values rather than by match-beginning or match-end. The
13548 following functions have been adapted to use the new parsing
13549 functions.
13550 (bibtex-skip-to-valid-entry, bibtex-search-reference,
13551 bibtex-enclosing-field, bibtex-format-entry,
13552 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
13553 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
13554 bibtex-print-help-message, bibtex-end-of-entry,
13555 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
13556 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
13557 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
13558 method for parsing.
13559 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
13560 bibtex-map-entries, bibtex-flash-head,
13561 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
13562 bibtex-autokey-change, bibtex-autokey-get-namefield,
13563 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
13564 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
13565 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
13566 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
13567 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
13568 order to make the new binding of case-fold-search immediately
13569 visible.
8389e1e2
GM
13570
135712000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13572
f24fef2f
SM
13573 * textmodes/bibtex.el: Copyright notice is up to date.
13574 Added constant 'bibtex-maintainer-salutation.
fa78f71b 13575
f24fef2f
SM
13576 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
13577 than make-temp-name, use match-string-no-properties and eliminate
13578 a quadratic behavior when building bibtex-strings.
fa78f71b 13579
f24fef2f
SM
13580 * bibtex.el (bibtex-reference-key): Accept string entries whose
13581 reference key contains upper case letters.
8389e1e2
GM
13582
135832000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13584
f24fef2f
SM
13585 * bibtex.el (bibtex-reference-head): Allow entries to start with
13586 a new line.
8389e1e2
GM
13587
135882000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13589
f24fef2f
SM
13590 * bibtex.el: Hiding of entry bodies is not longer provided by
13591 bibtex.el directly. Instead the hideshow package can be used.
13592 Added a special bibtex entry to hs-special-modes-alist.
13593 (bibtex-hs-forward-sexp): Added for hideshow.el.
99e95407
GM
13594
135952000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13596
82d2c7c5 13597 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
99e95407
GM
13598 proceedings entry type (for cross referencing). Thanks to Wagner
13599 Toledo Correa for the suggestion.
13600
82d2c7c5 13601 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
99e95407 13602
eae61d8f
KH
136032000-02-14 Kenichi Handa <handa@etl.go.jp>
13604
13605 * international/characters.el: Setup case table for Vietnamese.
13606
fb07a302
GM
136072000-02-12 Gerd Moellmann <gerd@gnu.org>
13608
13609 * uniquify.el (toplevel): Require CL at compile time.
13610 (uniquify-push): Removed.
13611
13612 * shadowfile.el (shadow-when): Removed.
13613
13614 * tempo.el (tempo-dolist, tempo-mapc): Removed.
13615 (tempo-process-and-insert-string): Use dolist instead of
13616 tempo-dolist.
13617
13618 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
13619 regexp for paragraph-start.
13620
13621 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
13622 commas as well.
13623
a0eddf92
DL
136242000-02-10 Dave Love <fx@gnu.org>
13625
13626 * wid-edit.el: (widgets) [defgroup]: Remove url link.
13627 (widget-color-choice-list, widget-color-history, widget-mouse-help):
13628 Deleted.
13629 (widget-specify-field, widget-specify-button): Don't use
13630 widget-mouse-help as help-echo property.
13631 (default): Use #'ignore for :validate and :mouse-down-action.
13632 (checkbox): Add help-echo.
13633 (widget-sexp-validate): Rewritten to clarify error messages.
13634 (character): Use char-valid-p in :match function.
13635 (widget-color-complete): Use facemenu-color-alist.
13636 (widget-color-action): Use facemenu-read-color.
13637
13638 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
13639 set up `caar' &c that we now have.
13640
82d2c7c5
DL
136412000-02-09 Ray Blaak <blaak@gnu.org>
13642
13643 * delphi.el: Make resourcestring a declaration region, like const
13644 and var.
13645
6cbc1482
DL
136462000-02-09 Dave Love <fx@gnu.org>
13647
13648 * bindings.el (mode-line-input-method-map): New variable.
13649 (mode-line-mule-info): Use it; fix last change.
13650 (mode-line-mode-menu): Move definition.
13651 (mode-line-mouse-sensitive-p): Deleted.
13652 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
13653 (make-mode-line-mouse-sensitive): Deleted. Body moved to top
13654 level.
13655
13656 * startup.el (command-line-1): Don't call
13657 make-mode-line-mouse-sensitive.
13658
f7136ee8
GM
136592000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
13660
13661 * mail/rmail.el (rmail-retry-failure): Use
13662 rmail-beginning-of-message before rmail-toggle-header, because the
13663 former toggles headers.
13664
6e1d0d15
SM
136652000-02-06 Stefan Monnier <monnier@cs.yale.edu>
13666
fef8c55b
SM
13667 * diff-mode.el (diff-kill-junk): New interactive function.
13668 (diff-reverse-direction): Use delete-and-extract-region.
13669 (diff-post-command-hook): Restrict the area so that the hook also works
13670 outside of any diff hunk. This is necessary for the minor-mode.
13671 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
13672 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
13673
6e1d0d15
SM
13674 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
13675 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
13676 so that it can be used more easily in <foo>-mode-hook. Also make sure
13677 to avoid duplicate entries.
13678 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
13679 (font-lock-remove-keywords): Just as was done for `add', allow it to
13680 work even if font-lock-mode is nil. Also make sure we don't modify
13681 any pre-existing list by forcing a copy-sequence. Finally rename
13682 `major-mode' to `mode'.
13683 (font-lock-fontify-syntactic-anchored-keywords)
13684 (font-lock-fontify-anchored-keywords)
13685 (font-lock-fontify-keywords-region): Use line-end-position.
13686 Don't make `font-lock-multiline' local (it's now done in
13687 font-lock-set-defaults).
13688 (font-lock-set-defaults): Make `font-lock-multiline' local. Also
13689 move the `font-lock-fontified' creation to inside the `unless'.
13690
a75dfea0
AI
136912000-02-06 Andrew Innes <andrewi@gnu.org>
13692
13693 * term/w32-win.el (x-handle-args): Comment out call to message,
13694 which occurs before window system is initialized.
13695
13696 * makefile.nt: Add support for recompiling lisp code.
13697
b85e9462
DL
136982000-02-04 Dave Love <fx@gnu.org>
13699
9ff33afb
DL
13700 * bindings.el (mode-line-mule-info): Fix/extend last change.
13701
b85e9462
DL
13702 * completion.el: Replace completion-dolist with dolist.
13703
13704 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
13705 dotimes.
13706
44dff075
CD
137072000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
13708
13709 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
13710 environment names before they go into the section regexp.
13711
13712 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
13713 char class in regexp.
13714
13715 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
13716 `case-fold-search' to nil.
13717
13718 * progmodes/idlwave.el (idlwave-template): Respect
13719 `idlwave-abbrev-change-case'.
13720 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
13721 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
13722 idlwave-while): respect `idlwave-reserved-word-upcase'.
13723 (idlwave-rw-case): New function.
13724 (idlwave-statement-match): Fixed problem with assignment regexp.
13725 (idlwave-font-lock-keywords): Improved regexp for keyword
13726 parameters.
a23c5037 13727 (idlwave-surround): New argument LENGTH to support padding of
44dff075
CD
13728 operators longer than 1 char.
13729
13730 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
13731 idlwave-shell-expression-overlay. Implemented printing of
13732 expressions on higher levels of the calling stack.
13733 (idlwave-shell-display-level-in-calling-stack): Restore stack
13734 level.
13735 (idlwave-retrieve-expression-from-level): New function.
13736 (idlwave-shell-last-calling-stack): Variable removed.
13737 (idlwave-shell-reset): Argument action reversed (`visible' to
13738 `hidden'). Also remove stop-line overlay.
13739 (idlwave-shell-calling-stack-routine): New variable.
13740 (idlwave-shell-parse-stack-and-display): Messages now display
13741 negative level numbers.
13742 (idlwave-shell-mode): Set `modeline-format'.
13743 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
13744 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
13745 21.
13746 (idlwave-shell-print-expression-function): New option.
a23c5037 13747
44dff075
CD
13748 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
13749 idlwave-toolbar-remove-everywhere): Keybindings prefix is now
13750 `tool-bar' instead of `toolbar'.
13751
f26c34fd
DL
137522000-02-02 Dave Love <fx@gnu.org>
13753
13754 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
13755 emacs-lisp-mode-hook. Don't check for defalias being defined.
13756
13757 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
13758 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use
13759 the new builtins directly.
13760
13761 * whitespace.el (whitespace): Add :version to defgroup.
13762
13763 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
13764 Doc fix.
13765
13766 * thingatpt.el (sexp-at-point, symbol-at-point)
13767 (number-at-point, list-at-point): Add autoload cookie.
13768
13769 * recentf.el (recentf): Add :version to defgroup.
13770
13771 * quickurl.el (quickurl): Add :version to defgroup.
13772
13773 * elide-head.el (elide-head): Use point-marker more.
13774
13775 * bs.el (bs): Add :version to defgroup.
13776
13777 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
13778
13779 * progmodes/delphi.el (delphi): Add :version to defgroup.
13780
d240a249
GM
137812000-02-02 Gerd Moellmann <gerd@gnu.org>
13782
13783 * ange-ftp.el (ange-ftp-write-region): Handle case that
13784 succeeding process operation sets a different coding system.
13785
13786 * calculator.el: New file.
13787
d5179a01
EZ
137882000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
13789
13790 * frame.el (frames-on-display-list, framep-on-display): New
13791 functions.
13792 (display-mouse-p, display-popup-menus-p, display-graphic-p)
13793 (display-selections-p, display-screens, display-pixel-width)
13794 (display-pixel-height, display-mm-width, display-mm-height)
13795 (display-backing-store, display-save-under, display-planes)
13796 (display-color-cells, display-visual-class): New functions.
13797
13798 * term/tty-colors.el (tty-color-gray-shades): New function.
13799
13800 * faces.el (display-color-p): Use framep-on-display.
13801 (display-grayscale-p): New function.
13802
968e00f0
DL
138032000-01-31 Dave Love <fx@gnu.org>
13804
13805 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
13806 (create-fontset-from-x-resource): Don't concat integers.
13807
2cb750ba
GM
138082000-01-31 Inge Frick <inge@nada.kth.se>
13809
13810 * view.el: Some changes in documentation. Removed some trailing
13811 whitespace. Changed some parameter names to agree with
13812 documentation.
13813 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
13814 window is not deleted. Modifies change 1998-04-26.
a23c5037 13815
74e9213b
GM
138162000-01-31 Gerd Moellmann <gerd@gnu.org>
13817
47569935
GM
13818 * windmove.el: New file.
13819
74e9213b
GM
13820 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
13821 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
2cb750ba 13822 progmodes/ebnf-yac.el: Update copyright and license info.
a23c5037 13823
74e9213b
GM
13824 * jit-lock.el (jit-lock-function): Widen before calculating end
13825 position.
13826 (jit-lock-stealth-chunk-start): Rewritten.
13827
13828 * info.el (Info-title-face-alist): Removed.
13829 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
13830 faces.
13831 (Info-fontify-node): Use these faces.
13832
994c5afe
GM
138332000-01-30 Gerd Moellmann <gerd@gnu.org>
13834
13835 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
13836 (cl-macro-list1): Recognize `&allow-other-keys' instead of
13837 `&allow-other-keywords'.
13838
13839 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
13840 the list of directories scanned heuristically.
13841
13842 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
13843 exist.
13844
f00276e3
JR
138452000-01-30 Jason Rumney <jasonr@gnu.org>
13846
13847 * w32-fns.el: Define w32-tty-standard-colors.
13848
13849 * startup.el (command-line): Use w32-tty-standard-colors when in
13850 w32 console mode.
13851
cc4dfff0
DL
138522000-01-30 Dave Love <fx@gnu.org>
13853
e645e77b
DL
13854 * jka-compr.el (jka-compr-load): Fix up load-history.
13855
cc4dfff0
DL
13856 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
13857
13858 * emacs-lisp/cl-macs.el: Revert previous change.
13859
16215eb0
DL
138602000-01-29 Dave Love <fx@gnu.org>
13861
13862 * facemenu.el: Purecopy various strings.
13863
13864 * timezone.el (timezone-fix-time): Window against 69 for two-digit
13865 years. Deal with three-digit years.
13866
13867 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
13868 defconst, purecopy.
13869 (help-back-label): Purecopy it.
13870
bbd9b566
GM
138712000-01-18 Gerd Moellmann <gerd@gnu.org>
13872
13873 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
13874 variable. If non-nil, order the buffer list according to the
13875 currently selected frame.
13876 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
13877 non-nil, pass the selected frame to function buffer-list.
a23c5037 13878
887448e1
GM
138792000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13880
13881 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
13882
7df85084
DL
138832000-01-28 Dave Love <fx@gnu.org>
13884
142e109c
DL
13885 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
13886
7df85084
DL
13887 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
13888 Don't use lisp-indent-hook property.
13889 (cl-abs): Remove.
13890
13891 * subr.el: Move out indent and edebug specs for when and unless.
13892
13893 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
13894 when, unless.
13895
13896 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
13897 unless, when.
13898
3b43c01c
GM
138992000-01-28 Gerd Moellmann <gerd@gnu.org>
13900
d060bc9f
GM
13901 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
13902 `collecting' as synonym for `collect'.
13903
13904 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
13905 for the case it contains spaces.
13906
13907 * simple.el (what-cursor-position): Change formatting of
13908 messages.
13909
b02786f9
GM
13910 * frame.el (delete-other-frames): New function.
13911 (toplevel): Bind it to C-x 5 1.
13912
efd68b8a
GM
13913 * sort.el (sort-numeric-base): New option.
13914 (sort-numeric-fields): If number starts with `0' or `0[xX[',
13915 interpret it as octal or hexadecimal. Use sort-numeric-base
13916 as default base.
13917
3b43c01c
GM
13918 * progmodes/glasses.el: New file.
13919
984ae001
GM
139202000-01-27 Gerd Moellmann <gerd@gnu.org>
13921
a0b796e3
GM
13922 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
13923 userids differently.
13924
984ae001
GM
13925 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
13926 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
13927 progmodes/ebnf-yac.el: New files.
13928
6c67ddee
DL
139292000-01-26 Dave Love <fx@gnu.org>
13930
13931 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
13932 on a function with an empty body. [From Eric Ludlam.]
13933
4e6473c8
GM
139342000-01-25 Andre Spiegel <spiegel@gnu.org>
13935
13936 * vc.el (vc-version-diff): Make sure file name is expanded.
13937
e12489f9
GM
139382000-01-25 Gerd Moellmann <gerd@gnu.org>
13939
13940 * scroll-bar.el (scroll-bar-timer): Variable removed.
13941 (scroll-bar-toolkit-scroll): Don't use a timer.
13942
8dbe2b07
KH
139432000-01-25 Kenichi Handa <handa@etl.go.jp>
13944
13945 * language/thai-util.el (thai-composition-function): Delete
13946 superfluous `a'.
13947
26ef1c87
DL
139482000-01-24 Dave Love <fx@gnu.org>
13949
13950 * fortran.el (fortran-mode): Use beginning-of-defun-function,
13951 end-of-defun-function.
13952
13953 * font-lock.el (turn-on-font-lock): Don't depend on window-system
13954 &c.
13955
7ed4e9a7
JR
139562000-01-22 Jason Rumney <jasonr@gnu.org>
13957
13958 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
13959 conflicts with new face support.
13960
8b7bc628 139612000-01-22 Richard M. Stallman <rms@gnu.org>
d2ce3151
RS
13962
13963 * replace.el (query-replace): Rename last arg to DELIMITED.
13964 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
13965 (query-replace-regexp): Likewise.
13966
8b7bc628 139672000-01-20 Richard M. Stallman <rms@gnu.org>
2d5e9b54 13968
02b14400
RS
13969 * subr.el (with-syntax-table): Use make-symbol, not gensym.
13970
5bb6f079
RS
13971 * emacs-lisp/lisp.el (beginning-of-defun-function):
13972 Variable renamed from beginning-of-defun.
13973 Do not call make-variable-buffer-local.
13974 (beginning-of-defun-raw): Use new variable name; doc fix.
13975 (beginning-of-defun): Doc fix.
13976 (end-of-defun-function): Variable renamed from end-of-defun.
13977 Do not call make-variable-buffer-local.
13978 (end-of-defun): Use new variable name; doc fix.
13979
02b14400
RS
13980 * subr.el (dolist, dotimes): Copied from cl-macs.el
13981 and made to work.
2d5e9b54 13982
a23c5037 13983 * mail/undigest.el (rmail-digest-end-regexps):
2d5e9b54
RS
13984 Variable replaces rmail-digest-end-regexp.
13985 Allows multiple regexps for detecting the end line.
13986 (undigestify-rmail-message): Corresponding changes.
13987
60af03f1
DL
139882000-01-19 Dave Love <fx@gnu.org>
13989
fe5d99e1
DL
13990 * files.el (user-init-file): Don't declare here -- is primitive.
13991
60af03f1
DL
13992 * startup.el (command-line): Check for compiled user-init-file and
13993 set to uncompiled version if necessary.
13994
72dbbc7d
GM
139952000-01-18 Gerd Moellmann <gerd@gnu.org>
13996
6a1950ec
GM
13997 * mail/undigest.el (rmail-digest-end-regexp): New user option.
13998 (undigestify-rmail-message): Use it.
13999
72dbbc7d
GM
14000 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
14001
fbe91bbd
GM
140022000-01-17 Gerd Moellmann <gerd@gnu.org>
14003
14004 * tmm.el (tmm-goto-completions): Adapt to prompt being part
14005 of mini-buffer.
14006
33a6685b
GM
140072000-01-14 Gerd Moellmann <gerd@gnu.org>
14008
b3303df7
GM
14009 * emacs-lisp/copyright.el (copyright-update): Removed the
14010 requirement for a trailing space from `copyright-regexp', to
14011 support copyrights with owner specified on a separate line..
a23c5037 14012
3c4c8064
GM
14013 * align.el: New file.
14014
33a6685b
GM
14015 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
14016
14017 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
14018
044a4975
DL
140192000-01-13 Dave Love <fx@gnu.org>
14020
14021 * ph.el: Removed. (Obsoleted by EUDC.)
14022
0a352cd7
GM
140232000-01-13 Gerd Moellmann <gerd@gnu.org>
14024
14025 * net/eudc.el (toplevel): Remove autoloaded code installing
14026 menu with easymenu, because that causes build problems.
14027
14028 * frame.el (frame-notice-user-settings): New variable.
14029 (frame-notice-user-settings): Don't modify frame parameters
14030 if called a second time.
14031
8b7bc628 140322000-01-13 Richard M. Stallman <rms@gnu.org>
0a352cd7
GM
14033
14034 * frame.el (frame-notice-user-settings):
14035 Notice default-frame-parameters even for non-window frames.
14036
feb450e0
GM
140372000-01-13 Gerd Moellmann <gerd@gnu.org>
14038
14039 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
14040 for Emacs.
14041 (eudc-bob-can-display-inline-images): Extend for Emacs.
14042 (eudc-bob-toggle-inline-display): Ditto.
14043 (eudc-bob-display-jpeg): Ditto.
14044
99c6d63b
GM
140452000-01-12 Gerd Moellmann <gerd@gnu.org>
14046
7970b229
GM
14047 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
14048 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
14049 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
a23c5037 14050
e4936aa9
GM
14051 * add-log.el (add-change-log-entry): Fix error trying an `(insert
14052 nil)'.
14053
14054 * subdirs.el: Add `net' directory.
14055
133c9e59
GM
14056 * net: New directory.
14057
99c6d63b
GM
14058 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
14059 eval-last-sexp. Don't bind debug-on-error here.
14060 (eval-last-sexp): New function. Bind debug-on-error if
14061 eval-expression-debug-on-error is non-nil.
14062 (eval-defun-2, eval-defun): Likewise.
14063
14064 * simple.el (eval-expression): Don't bind debug-on-error if
14065 eval-expression-debug-on-error is nil. Detect changed
14066 debug-on-error, and propagate new value to global binding, if
14067 eval-expression-debug-on-error is non-nil,
14068 (eval-expression-debug-on-error): Change doc string.
a23c5037 14069
8b7bc628 140702000-01-11 Richard M. Stallman <rms@gnu.org>
83c8f461
RS
14071
14072 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
14073
14074 * emacs-lisp/lisp-mode.el (with-syntax-table):
14075 Set up lisp-indent-function property.
14076
14077 * subr.el (with-syntax-table): Moved from simple.el.
14078
14079 * simple.el (with-syntax-table): Moved to subr.el.
14080
7e3c74fa
GM
140812000-01-11 Gerd Moellmann <gerd@gnu.org>
14082
1fab1775
GM
14083 * tmm.el (tmm-shortcut): Delete region after prompt instead
14084 of erasing buffer.
14085
7e3c74fa 14086 * textmodes/fill.el (fill-common-string-prefix): New function.
133c9e59
GM
14087 (fill-context-prefix): Use the longest common prefix of first
14088 and second line fill prefix, if there is one.
7e3c74fa 14089
8b7bc628 140902000-01-11 Richard M. Stallman <rms@gnu.org>
782bd3ec
RS
14091
14092 * array.el (array-mode): Don't use make-variable-buffer-local.
14093 Use make-local-variable for `truncate-lines'.
14094
aa705642 140952000-01-11 Jari Aalto <jari.aalto@poboxes.com>
57df2446 14096
aa705642
GM
14097 * add-log.el (add-log-current-defun): Handle user-defined
14098 add-log-current-function returning nil,
a23c5037 14099
57df2446 14100 * add-log.el (add-change-log-entry): Insert version number
aa705642 14101 if having found a current function
c1356086
GM
14102
14103 * add-log.el (add-log-current-defun): Call
14104 `add-log-current-defun-function'. Try matches at level 0 and
14105 level 1. Strip whitespace from defun found.
a23c5037 14106
1d8c59e9
RS
141072000-01-10 John Wiegley <johnw@gnu.org>
14108
14109 * allout.el (isearch-done/outline-provisions): Added `edit'
14110 argument to correspond with the current definition of
14111 `isearch-done'.
14112
8cf87e9b
DL
141132000-01-10 Dave Love <fx@gnu.org>
14114
14115 * elide-head.el (elide-head): Use point-marker, not point.
14116
9050446c
GM
141172000-01-10 Gerd Moellmann <gerd@gnu.org>
14118
8321b22a
GM
14119 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
14120 before and after the year 2000.
a23c5037 14121
9050446c
GM
14122 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
14123 Add ispell- prefix.
14124
141252000-01-10 Ken Stevens <k.stevens@ieee.org>
14126
14127 * ispell.el: Only define dictionaries in menus when they exist.
14128 (version18p): New variable.
14129 (version20p): New variable.
14130 (xemacsp): New variable.
14131 (ispell-choices-win-default-height): Fix for XEmacs visibility.
14132 (ispell-dictionary-alist1): Added Brasileiro dictionary.
14133 (ispell-dictionary-alist6): Russian command lines no longer accept
f24fef2f 14134 run-together words.
9050446c
GM
14135 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
14136 (ispell-dictionary-alist): Add koi8-r to customize definition.
14137 (check-ispell-version): Added documentation string. Returns
f24fef2f 14138 library path when called non-interactively.
9050446c
GM
14139 (ispell-menu-map-needed): Uses new variables.
14140 (ispell-library-path): New variable.
14141 (ispell-decode-string): XEmacs fix for bogus variable bindings.
14142 (ispell-word): Improved documentation string. Test for valid
14143 character mappings. Correctly check typed in word changes that can
14144 result in single words split into multiple words. Returns
14145 replacement word.
14146 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
14147 replace in recursive query replace mode. Help message for
14148 recursive edit mode.
14149 (ispell-show-choices): Protect against bad framepop bindings.
14150 (ispell-help): Fix to work with XEmacs.
14151 (ispell-highlight-spelling-error): Use new variables.
14152 (ispell-overlay-window): Fix to work with XEmacs.
14153 (ispell-parse-output): Passed and returns location information
14154 tracking spelling corrections. Doesn't recheck same word on
14155 current line.
14156 (ispell-init-process): Protect against bogus XEmacs variable binding.
14157 Fix call to single argument in sleep-for. Use new variables.
14158 (ispell-region): Passed and returns location information tracking
14159 spelling corrections. Doesn't check same word on current line.
14160 Improved documentation string. Doesn't resend a line already
14161 checked to the ispell process - fixes bug in LaTeX parsing.
14162 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
14163 (ispell-skip-region): No longer skips <TT> in SGML.
14164 (ispell-process-line): Tracks location information with spelling
14165 corrections. Added documentation string. Accounts for words
14166 already accepted on this line. Don't allow query-replace on line
14167 starting with math characters. Doesn't resend a line already sent
14168 to ispell process. Fixes alignment error bug.
a23c5037 14169
8b7bc628 141702000-01-10 Richard M. Stallman <rms@gnu.org>
6d0c28f4 14171
a23c5037 14172 * dired-x.el (dired-guess-shell-alist-default):
8f3efb4e
RS
14173 Suggest xloadimage, which is free, not xv, which isn't.
14174
a23c5037 14175 * ange-ftp.el (ange-ftp-file-name-nondirectory):
6d0c28f4
RS
14176 Don't ever include the host name or user name in the value.
14177
9ed79f5d
GM
141782000-01-09 Gerd Moellmann <gerd@gnu.org>
14179
14180 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
14181 of a real newline.
14182
b950abb1
GM
141832000-01-09 Stephen Eglen <stephen@gnu.org>
14184
a23c5037 14185 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
b950abb1
GM
14186 for .png files.
14187
3c708e98
GM
141882000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
14189
14190 * cus-edit.el (custom-hook-convert-widget): Fix comment.
14191
bf61662d
GM
141922000-01-09 Gerd Moellmann <gerd@gnu.org>
14193
f1d851ae
GM
14194 * progmodes/cperl-mode.el: Replace ^F with ^L.
14195
bf61662d 14196 * sendmail.el (toplevel): Provide `sendmail' when compiling
a23c5037 14197 before `require'ing rmail and mailalias to prevent infinite
bf61662d
GM
14198 recursion.
14199
c65d14ee
DL
142002000-01-08 Dave Love <fx@gnu.org>
14201
8cf87e9b
DL
14202 * emacs-lisp/backquote.el: Remove inappropriate customization
14203 (allowing custom.el to use backquote).
c65d14ee 14204
83de2ebc
DL
142052000-01-07 Dave Love <fx@gnu.org>
14206
14207 * add-log.el (add-log-debugging): Deleted.
14208 (add-change-log-entry): Treat a backup FILE-NAME as its parent
14209 file. Remove debugging code.
14210 (change-log-get-method-definition, change-log-name): Add doc.
14211 (change-log-sortable-date-at): New function.
14212 (change-log-merge): New command.
14213
14214 * time.el (display-time-string-forms): Make the Mail string active.
14215 (display-time-update): Provide help-echo for load average.
14216
14217 * bindings.el (make-mode-line-mouse2-map): New function.
14218 (mode-line-modified): Use it and simplify.
14219 (mode-line-mule-info): Provide help-echo info.
14220 (minor-mode-alist): Activate the strings.
14221 (make-mode-line-mouse-sensitive): Simplify for
14222 mode-line-buffer-identification.
14223
c1475eae
GM
142242000-01-07 Gerd Moellmann <gerd@gnu.org>
14225
14226 * play/pong.el: New file.
14227
83de2ebc
DL
142282000-01-06 Dave Love <fx@gnu.org>
14229
14230 * array.el: Assorted cleanups for compiler warnings, doc strings,
14231 `array-' prefix for symbols.
14232
142332000-01-05 Dave Love <fx@gnu.org>
14234
14235 * textmodes/outline.el (outline-mode-menu-bar-map): Add
14236 outline-headers-as-kill.
14237 (outline-mode): Define imenu-generic-expression.
14238 (outline-headers-as-kill): New command.
14239
14240 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
14241 from paragraph-start.
14242 (paragraph-indent-minor-mode): New command.
14243
14244 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
14245 M-C-e, M-C-h, C-j, C-xnd, TAB.
14246 (fortran-mode): Set beginning-of-defun, end-of-defun.
14247 (fortran-column-ruler): Simplify.
14248 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
14249 (fortran-with-subprogram-narrowing): Likewise.
14250 (fortran-indent-subprogram): Call mark-defun.
14251 (fortran-check-for-matching-do): Change narrowing.
14252
14253 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
14254 (cl-lucid-hash-tag): Delete.
14255 (cl-hash-table-p): Correct test for native table.
14256 (cl-hash-table-count): Use hash-table-count.
14257
14258 * browse-url.el (browse-url): Fix case of
14259 browse-url-browser-function being an alist.
14260
676ac023
CD
142612000-01-05 Carsten Dominik <cd@gnu.org>
14262
c1475eae
GM
14263 * textmodes/reftex-vars.el (reftex-parse-file-extension)
14264 (reftex-index-phrase-file-extension): New options.
676ac023
CD
14265
14266 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
c1475eae 14267 Use new option `reftex-index-phrase-file-extension'.
676ac023
CD
14268
14269 * textmodes/reftex.el (reftex-access-parse-file): Use new option
c1475eae 14270 `reftex-parse-file-extension'.
eb483e17 14271
88807984
DL
142722000-01-05 Dave Love <fx@gnu.org>
14273
83de2ebc 14274 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
88807984
DL
14275 (beginning-of-defun-raw): Use it.
14276 (end-of-defun): New variable.
14277 (end-of-defun): Use it.
14278 (check-parens): New command.
14279
1362aeb4
TTN
142802000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
14281
c1475eae
GM
14282 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
14283 (hs-show-block): Don't use `mapcar' when not accumulating.
1362aeb4 14284
7ddafb95
TTN
14285 Fix buglet in local variables initialization.
14286
7334aa99
AS
142872000-01-05 Andreas Schwab <schwab@suse.de>
14288
14289 * hscroll.el (hscroll): Doc fix.
14290
b12e24cd
CD
142912000-01-05 Carsten Dominik <cd@gnu.org>
14292
14293 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
14294 idlw-toolbar.
14295
14296 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
14297 file idlw-rinfo.el.
1362aeb4
TTN
14298 (idlwave-customize): load must read file idlw-shell.el.
14299 (idlwave-create-customize-menu): load must read file idlw-shell.el.
b12e24cd 14300
d6226972
CD
143012000-01-05 Carsten Dominik <dominik@astro.uva.nl>
14302
14303 * progmodes/idlw-shell.el: Also provide idlwave-shell
14304 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
14305 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
14306
14307 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
14308 both reftex-dcr and reftex-vcr.
1362aeb4 14309
d6226972
CD
14310 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
14311
6ddb893f 143122000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
894ee0a2
KH
14313
14314 * ps-print.el: PostScript code now is in separate files, doc fix.
14315 (ps-print-version): New version number (5.0.3).
14316 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
14317 local.
14318 (ps-spool-config): Initialization fix.
c1475eae
GM
14319 (ps-print-prologue-1, ps-print-prologue-2)
14320 (ps-print-duplex-feature): PostScript code moved to separated file.
894ee0a2
KH
14321 (ps-background-image): Little code reformating.
14322 (ps-begin-file, ps-begin-job): Fix code.
88807984 14323 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
894ee0a2
KH
14324 (ps-prologue-file): New fun.
14325
ae833aae
KH
143262000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14327
c1475eae 14328 * ps-vars.el: Eliminated.
ae833aae
KH
14329
14330 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
14331 `;;;###autoload'.
14332
14333 * ps-print.el: ps-vars eliminated, doc fix.
14334 (ps-print-version): New version number (5.0.2).
14335 (ps-spool-config): Initialization fix.
14336 (ps-print-customize): New fun.
14337
560a7bd2
GM
143382000-01-04 Gerd Moellmann <gerd@gnu.org>
14339
14340 * autorevert.el (auto-revert-mode): Return value of
14341 auto-revert-mode.
14342
f45dd0f4
DL
143432000-01-04 Dave Love <fx@gnu.org>
14344
fae2ac05
DL
14345 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
14346 menu items.
f45dd0f4 14347
61255981
DL
143482000-01-03 Dave Love <fx@gnu.org>
14349
88807984 14350 * elide-head.el (elide-head) [defgroup]: Add :version.
c282ca4d 14351
83de2ebc 14352 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
61255981
DL
14353 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
14354 `cl-hash-table-p', not `hash-table-p'.
14355 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
14356
c182a70f
EZ
143572000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14358
14359 * faces.el (face-read-integer, read-face-attribute)
14360 (color-defined-p, color-values): unspecified-{f,b}g are now
14361 strings.
14362
047f434a
GM
143632000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
14364
14365 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
14366 at comment end, and re-insert them after filling.
14367
bab531e2
EZ
143682000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14369
14370 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
f7002084
EZ
14371 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
14372 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
bab531e2 14373
d684c676
EZ
143742000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14375
14376 * term/x-win.el (xw-defined-colors): Call color-supported-p,
14377 the new name of face-color-supported-p.
14378
14379 * term/w32-win.el (xw-defined-colors): Likewise.
14380
0aad4805
EZ
143812000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14382
14383 * simple.el (completion-setup-function): Count completion-size
14384 from minibuffer-prompt-end, not from point-min.
14385
5fe1d139
EZ
143862000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
14387
14388 * faces.el (read-face-attribute, defined-colors, color-defined-p):
14389 Pass the frame to tty-color-* functions.
14390 (display-color-p, frame-set-background-mode): Pass the frame to
14391 tty-display-color-p.
14392
14393 * term/tty-colors.el (tty-defined-color-alist): Renamed from
14394 tty-color-alist.
14395 (tty-color-alist, tty-modify-color-alist): New functions.
14396 (tty-color-define, tty-color-clear, tty-color-approximate)
14397 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
14398 an optional parameter FRAME.
14399
162dec01
GM
144002000-01-01 Gerd Moellmann <gerd@gnu.org>
14401
27189709
GM
14402 * image.el (create-image, defimage): Don't assume image data is a
14403 string.
14404
162dec01
GM
14405 * image.el (defimage): Handle specifications containing :data
14406 instead of :file.
14407 (image-type-from-data): New function.
14408 (image-type-from-file-header): Use it.
14409 (create-image): Add parameter DATA-P.
1362aeb4 14410
bea56df7 14411See ChangeLog.8 for earlier changes.
25a6fab1
KH
14412
14413;; Local Variables:
e64c3a75 14414;; coding: iso-2022-7bit
25a6fab1 14415;; End: